-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathjson2dcp.java
632 lines (543 loc) · 27.7 KB
/
json2dcp.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
package dev.fpga.rapidwright;
import com.google.gson.stream.JsonReader;
import com.xilinx.rapidwright.design.*;
import com.xilinx.rapidwright.device.PartNameTools;
import com.xilinx.rapidwright.device.*;
import com.google.gson.*;
import com.xilinx.rapidwright.edif.*;
import com.xilinx.rapidwright.util.RapidWright;
import org.python.antlr.ast.Str;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
public class json2dcp {
static class NextpnrNet {
public NextpnrNet(String name) {
this.name = name;
this.params = new HashMap<>();
this.attrs = new HashMap<>();
this.driver = null;
this.users = new ArrayList<>();
this.rwNet = null;
}
public String name;
public HashMap<String, String> params;
public HashMap<String, String> attrs;
public NextpnrCellPort driver;
public ArrayList<NextpnrCellPort> users;
public Net rwNet;
}
enum PortDirection {
PORT_IN,
PORT_OUT,
PORT_INOUT
}
public static PortDirection parsePortDir(String s) {
if (s.equals("input"))
return PortDirection.PORT_IN;
else if (s.equals("output"))
return PortDirection.PORT_OUT;
else if (s.equals("inout"))
return PortDirection.PORT_INOUT;
else
throw new RuntimeException("bad port direction " + s);
}
static class NextpnrCellPort {
public NextpnrCellPort(NextpnrCell cell, String name, PortDirection type) {
this.cell = cell;
this.name = name;
this.type = type;
this.net = null;
}
public NextpnrCell cell;
public String name;
public PortDirection type;
public NextpnrNet net;
}
static class NextpnrCell {
public NextpnrCell(String name, String type) {
this.name = name;
this.type = type;
this.ports = new HashMap<>();
this.params = new HashMap<>();
this.attrs = new HashMap<>();
this.rwCell = null;
}
public String name, type;
public HashMap<String, NextpnrCellPort> ports;
public HashMap<String, String> params;
public HashMap<String, String> attrs;
public Cell rwCell;
}
static class NextpnrDesign {
// json index --> net
public HashMap<Integer, NextpnrNet> nets;
// name --> cell
public HashMap<String, NextpnrCell> cells;
public Design rwd;
public NextpnrDesign() {
nets = new HashMap<>();
cells = new HashMap<>();
rwd = null;
}
String parseParam(JsonElement val) {
JsonPrimitive prim = val.getAsJsonPrimitive();
if (prim.isNumber()) {
int p = prim.getAsInt();
int size = 1;
if (p < 0) {
size = 32;
} else {
while (p >= (1L << size))
++size;
}
return "32'h" + Integer.toHexString(p);
} else {
String s = prim.getAsString();
int state = 0;
for (char c : s.toCharArray()) {
if (state == 0) {
if (c == ' ') {
state = 1;
} else if (c != '0' && c != '1' && c != 'x') {
state = 2;
}
} else if (state == 1) {
if (c != ' ')
state = 2;
}
}
if (state == 0) {
s = s.replace('x', '0');
BigInteger bi = new BigInteger(s, 2);
return s.length() + "'h" + bi.toString(16);
} else if (state == 1) {
return s.substring(0, s.length() - 1);
} else {
return s;
}
}
}
void Import(JsonObject des) {
JsonObject top = des.getAsJsonObject("modules").getAsJsonObject(des.getAsJsonObject("modules").keySet().toArray()[0].toString());
JsonObject netJson = top.getAsJsonObject("netnames");
for(Map.Entry<String, JsonElement> entry : netJson.entrySet()) {
NextpnrNet net = new NextpnrNet(entry.getKey());
JsonObject data = entry.getValue().getAsJsonObject();
int index = data.getAsJsonArray("bits").get(0).getAsInt();
if (data.has("attributes")) {
JsonObject attrs = data.getAsJsonObject("attributes");
for (Map.Entry<String, JsonElement> attr : attrs.entrySet())
net.attrs.put(attr.getKey(), attr.getValue().getAsString());
}
nets.put(index, net);
}
JsonObject cellJson = top.getAsJsonObject("cells");
for(Map.Entry<String, JsonElement> entry : cellJson.entrySet()) {
JsonObject data = entry.getValue().getAsJsonObject();
NextpnrCell cell = new NextpnrCell(entry.getKey(), data.get("type").getAsString());
JsonObject pdirs = data.getAsJsonObject("port_directions");
for (Map.Entry<String, JsonElement> pdir : pdirs.entrySet())
cell.ports.put(pdir.getKey(), new NextpnrCellPort(cell, pdir.getKey(), parsePortDir(pdir.getValue().getAsString())));
JsonObject pconns = data.getAsJsonObject("connections");
for (Map.Entry<String, JsonElement> pc : pconns.entrySet()) {
NextpnrCellPort port = cell.ports.get(pc.getKey());
JsonArray conn = pc.getValue().getAsJsonArray();
if (conn.size() > 0) {
NextpnrNet net = nets.get(conn.get(0).getAsInt());
port.net = net;
if (port.type == PortDirection.PORT_OUT) {
net.driver = port;
} else {
net.users.add(port);
}
}
}
JsonObject attrs = data.getAsJsonObject("attributes");
for (Map.Entry<String, JsonElement> attr : attrs.entrySet())
cell.attrs.put(attr.getKey(), attr.getValue().getAsString());
// FIXME: parse numerical params correctly
JsonObject params = data.getAsJsonObject("parameters");
for (Map.Entry<String, JsonElement> param : params.entrySet())
cell.params.put(param.getKey(), parseParam(param.getValue()));
cells.put(entry.getKey(), cell);
}
}
}
public static String escape_name(String name) {
return name.replace("\\", "__").replace("/", "_").replace("$subnet$", "/");
}
public static String fixup_init(String orig, int bits) {
// Vivado seems *very* fussy here
String hex = orig.split("'h")[1];
int digits = Math.max(bits / 4, 1);
while (hex.length() < digits)
hex = "0" + hex;
return bits + "'h" + hex;
}
public static void connect_log_and_phys(Net net, Cell cell, String logical_pin) {
// Similar to RapidWright's net.connect; but handles some special cases correctly
if (cell.getName().contains("/") || net.getLogicalNet() == null) {
var phys_pins = cell.getAllPhysicalPinMappings(logical_pin);
for (String belpin : phys_pins) {
if (cell.getBEL().getPin(belpin).getConnectedSitePinName() != null) {
String pin = cell.getBEL().getPin(belpin).getConnectedSitePinName();
net.addPin(new SitePinInst(cell.getBEL().getPin(belpin).isOutput(), pin, cell.getSiteInst()));
}
}
} else if (cell.getPhysicalPinMapping(logical_pin) == null || cell.getBEL().getPin(cell.getPhysicalPinMapping(logical_pin)).getConnectedSitePinName() == null || logical_pin.endsWith("]") ||
cell.getType().equals("RAMB36E2") || cell.getType().equals("IBUFCTRL") || cell.getType().equals("OUTBUF") || cell.getType().equals("INBUF")) {
// Create logical connection only
EDIFPortInst epi;
if (logical_pin.endsWith("]")) {
int open_pos = logical_pin.lastIndexOf('[');
String log_bus = logical_pin.substring(0, open_pos);
int port_index = Integer.parseInt(logical_pin.substring(open_pos + 1, logical_pin.length() - 1));
int bus_width = cell.getEDIFCellInst().getPort(log_bus).getWidth();
epi = net.getLogicalNet().createPortInst(log_bus, (bus_width - 1) - port_index, cell.getEDIFCellInst());
//System.out.println(net.getName() + " -L-> " + epi.getName());
} else {
epi = net.getLogicalNet().createPortInst(logical_pin, cell.getEDIFCellInst());
}
// If there is a physical pin connect it too
var phys_pins = cell.getAllPhysicalPinMappings(logical_pin);
for (String belpin : phys_pins) {
if (cell.getBEL().getPin(belpin).getConnectedSitePinName() != null) {
String pin = cell.getBEL().getPin(belpin).getConnectedSitePinName();
net.addPin(new SitePinInst(epi.getDirection() == EDIFDirection.OUTPUT, pin, cell.getSiteInst()));
}
}
} else {
net.connect(cell, logical_pin);
}
}
public static Cell create_cell_custom(Design d, NextpnrCell nc) {
Unisim unitype = Unisim.valueOf(nc.attrs.get("X_ORIG_TYPE"));
String legal_name = nc.name.replace("/", "__");
String fullname = legal_name.replace("$subcell$", "/");
String basename = legal_name.split("\\$subcell\\$")[0];
if (d.getTopEDIFCell().getCellInst(basename) == null) {
String macrotype = nc.attrs.get("X_ORIG_MACRO_PRIM");
if (d.getNetlist().getCell(macrotype) == null)
d.getNetlist().getHDIPrimitivesLibrary().addCell(Design.getUnisimCell(Unisim.valueOf(macrotype)));
Design.getUnisimCell(Unisim.valueOf(macrotype)).createCellInst(basename, d.getTopEDIFCell());
}
String[] bel = nc.attrs.get("NEXTPNR_BEL").split("/");
Cell c = d.createAndPlaceCell(null, fullname, unitype, d.getDevice().getSite(bel[0]), d.getDevice().getSite(bel[0]).getBEL(bel[1]));
c.setBELFixed(true);
c.setSiteFixed(true);
return c;
}
public static void main(String[] args) throws FileNotFoundException {
if (args.length < 3) {
System.err.println("Usage: json2dcp <device> <design.json> <design.dcp>");
System.err.println(" e.g json2dcp xczu2cg-sbva484-1-e top_routed.json top_routed.dcp");
System.exit(1);
}
NextpnrDesign ndes = new NextpnrDesign();
ndes.Import(new JsonParser().parse(new FileReader(args[1])).getAsJsonObject());
Design des = new Design("top", args[0]);
HashMap<String, String> siteToPin = new HashMap<>();
for (PackagePin p : des.getDevice().getActivePackage().getPackagePinMap().values())
if (p != null && p.getSite() != null)
siteToPin.put(p.getSite().getName(), p.getName());
for (NextpnrCell nc : ndes.cells.values()) {
if (!nc.attrs.containsKey("X_ORIG_TYPE"))
continue;
if (nc.type.equals("IOB_PAD")) {
nc.rwCell = null;
} else {
String origType = nc.attrs.get("X_ORIG_TYPE");
Unisim unitype = Unisim.valueOf(origType);
if (unitype == Unisim.FDRE_1)
unitype= Unisim.FDRE;
else if (unitype == Unisim.FDSE_1)
unitype = Unisim.FDSE;
else if (unitype == Unisim.FDPE_1)
unitype = Unisim.FDPE;
else if (unitype == Unisim.FDCE_1)
unitype = Unisim.FDCE;
if (nc.name.contains("$subcell$")) {
nc.rwCell = create_cell_custom(des, nc);
} else {
nc.rwCell = des.createAndPlaceCell(nc.name.replace("/", "__"), unitype, nc.attrs.get("NEXTPNR_BEL"));
}
Map<String, String> map = nc.rwCell.getPinMappingsP2L();
Object[] pins = map.keySet().toArray();
if (unitype != Unisim.PS8) {
for (Object p : pins)
nc.rwCell.removePinMapping(p.toString());
for (NextpnrCellPort p : nc.ports.values()) {
if (!nc.attrs.containsKey("X_ORIG_PORT_" + p.name))
continue;
String[] orig_ports = nc.attrs.get("X_ORIG_PORT_" + p.name).split(" ");
for (String orig : orig_ports)
if (!orig.trim().isEmpty()) {
nc.rwCell.addPinMapping(p.name, orig.trim());
}
}
}
for (Map.Entry<String, String> param : nc.params.entrySet()) {
String value = param.getValue();
if (param.getKey().equals("INIT")) {
switch(unitype) {
case LUT1:
value = fixup_init(value, 1<<1);
break;
case LUT2:
value = fixup_init(value, 1<<2);
break;
case LUT3:
value = fixup_init(value, 1<<3);
break;
case LUT4:
value = fixup_init(value, 1<<4);
break;
case LUT5:
value = fixup_init(value, 1<<5);
break;
case LUT6:
value = fixup_init(value, 1<<6);
break;
case FDRE:
case FDSE:
case FDCE:
case FDPE:
value = "1'b" + value.substring(value.length() - 1);
break;
}
} else if (unitype == Unisim.RAMB18E2 || unitype == Unisim.RAMB36E2) {
if (param.getKey().equals("INIT_A") || param.getKey().equals("INIT_B") || param.getKey().startsWith("SRVAL_")) {
value = fixup_init(value, unitype == Unisim.RAMB36E2 ? 36 : 18);
} else if (param.getKey().startsWith("INIT_") || param.getKey().startsWith("INITP_")) {
value = fixup_init(value, 256);
}
}
if (param.getKey().startsWith("IS_") && param.getKey().endsWith("_INVERTED")) {
value = fixup_init(value, 1).replace("h", "b");
}
nc.rwCell.addProperty(param.getKey(), value);
//System.out.println(param.getKey() + " = " + param.getValue());
}
if (nc.rwCell.getType().equals("RAMD64E")) {
// FIXME: move to nextpnr
nc.rwCell.addProperty("RAM_ADDRESS_MASK", "2'b11");
nc.rwCell.addProperty("RAM_ADDRESS_SPACE", "2'b11");
}
if (nc.type.startsWith("IOB_"))
nc.rwCell.setSiteFixed(true);
}
}
EDIFCell top = des.getNetlist().getTopCell();
EDIFNet edif_gnd = EDIFTools.getStaticNet(NetType.GND, top, des.getNetlist());
EDIFNet edif_vcc = EDIFTools.getStaticNet(NetType.VCC, top, des.getNetlist());
for (NextpnrNet nn : ndes.nets.values()) {
//System.out.println("create net " + nn.name);
Net n;
if (nn.name.equals("$PACKER_VCC_NET")) {
n = new Net("GLOBAL_LOGIC1", edif_vcc);
des.addNet(n);
} else if (nn.name.equals("$PACKER_GND_NET")) {
n = new Net("GLOBAL_LOGIC0", edif_gnd);
des.addNet(n);
} else if (nn.name.contains("$subnet$")) {
n = new Net(escape_name(nn.name), (EDIFNet)null);
des.addNet(n);
} else {
n = new Net(escape_name(nn.name), new EDIFNet(escape_name(nn.name), des.getTopEDIFCell()));
des.addNet(n);
}
nn.rwNet = n;
if (nn.driver != null && nn.driver.cell.rwCell != null) {
if (!nn.driver.cell.attrs.containsKey("X_ORIG_PORT_" + nn.driver.name))
continue;
//System.out.println("connect " + n.getName() + " <- " + nn.driver.cell.name + "." + nn.driver.name);
connect_log_and_phys(n, nn.driver.cell.rwCell, nn.driver.cell.attrs.get("X_ORIG_PORT_" + nn.driver.name));
}
for (NextpnrCellPort usr : nn.users) {
if (usr.cell.rwCell != null) {
if (usr.cell.attrs.containsKey("X_ORIG_PORT_" + usr.name)) {
String[] orig_ports = usr.cell.attrs.get("X_ORIG_PORT_" + usr.name).split(" ");
for (String orig : orig_ports) {
connect_log_and_phys(n, usr.cell.rwCell, orig);
//n.connect(usr.cell.rwCell, orig);
}
} else {
// Special case where no logical pin exists, mostly where we tie A6 high for a fractured LUT
BELPin belPin = usr.cell.rwCell.getBEL().getPin(usr.name);
if (belPin != null && belPin.getConnectedSitePinName() != null) {
n.createPin(false, belPin.getConnectedSitePinName(), usr.cell.rwCell.getSiteInst());
}
}
}
}
}
for (NextpnrNet nn : ndes.nets.values()) {
Net n = nn.rwNet;
HashSet<String> inverted_wires = new HashSet<>();
for (NextpnrCellPort sink : nn.users) {
if (sink.cell.attrs.containsKey("X_ORIG_PORT_" + sink.name)) {
String[] orig_ports = sink.cell.attrs.get("X_ORIG_PORT_" + sink.name).split(" ");
if (sink.cell.rwCell == null)
continue;
for (String orig : orig_ports) {
if (!sink.cell.params.getOrDefault("IS_" + orig + "_INVERTED", "0").endsWith("1"))
continue;
BELPin sinkpin = sink.cell.rwCell.getBEL().getPin(sink.name);
if (sinkpin == null)
continue;
inverted_wires.add(sink.cell.rwCell.getSiteName() + "/" + sinkpin.getSiteWireName());
//System.out.println(sink.cell.rwCell.getSiteName() + "/" + sinkpin.getSiteWireName());
}
}
}
String[] routing = nn.attrs.get("ROUTING").split(";");
for (int i = 0; i < (routing.length-2); i+=3) {
String wire = routing[i];
String pip = routing[i+1];
if (pip.isEmpty())
continue;
if (!pip.startsWith("SITEPIP")) {
String[] sp = pip.split("/");
String tile = sp[0];
String[] wires = sp[1].split("\\.");
Tile t = des.getDevice().getTile(tile);
int src = Integer.parseInt(wires[0]), dst = Integer.parseInt(wires[1]);
if (src < t.getWireCount() && dst < t.getWireCount())
n.addPIP(t.getPIP(src, dst));
}
}
for (int i = 0; i < (routing.length-2); i+=3) {
String wire = routing[i];
String pip = routing[i + 1];
if (!pip.isEmpty() && pip.startsWith("SITEPIP") && (!nn.name.equals("$PACKER_GND_NET") || !pip.contains("OUTMUXA"))) {
String[] sp = pip.split("/");
SiteInst si = des.getSiteInstFromSiteName(sp[1]);
if (si == null)
si = des.createSiteInst(des.getDevice().getSite(sp[1]));
BEL b = si.getBEL(sp[2]);
if (b == null)
continue;
for (BELPin bp : b.getPins()) {
for (SitePIP sitePIP : bp.getSitePIPs()) {
if (sitePIP.getInputPin().getSiteWireName().equals(sp[3])) {
// Don't route through when inverting
if (inverted_wires.contains(si.getSiteName() + "/" + sitePIP.getOutputPin().getSiteWireName()))
continue;
BELPin startPin = null;
for (BEL other : si.getBELs())
for (BELPin p : other.getPins())
if(p.isOutput() && p.getSiteWireName().equals(sitePIP.getInputPin().getSiteWireName()))
startPin = p;
if (startPin != null) {
for (BEL other : si.getBELs())
for (BELPin p : other.getPins())
if (p.isInput() && p.getSiteWireName().equals(sitePIP.getOutputPin().getSiteWireName()))
si.routeIntraSiteNet(n, startPin, p);
}
si.addSitePIP(sitePIP);
// FIXME: when does/n't site PIP insertion work?
}
}
}
}
if (wire.startsWith("SITEWIRE") && !nn.name.equals("$PACKER_GND_NET")) {
String[] sw = wire.split("/");
SiteInst si = des.getSiteInstFromSiteName(sw[1]);
if (si == null)
si = des.createSiteInst(des.getDevice().getSite(sw[1]));
// FIXME: when does/n't site Wire insertion work?
BELPin startPin = null;
for (BEL other : si.getBELs()) {
if (other.getBELClass() == BELClass.RBEL || (other.getBELClass() == BELClass.PORT &&
si.getSiteTypeEnum() != SiteTypeEnum.HDIOB_M &&
si.getSiteTypeEnum() != SiteTypeEnum.HDIOB_S &&
si.getSiteTypeEnum() != SiteTypeEnum.HPIOB &&
si.getSiteTypeEnum() != SiteTypeEnum.HPIOB_M &&
si.getSiteTypeEnum() != SiteTypeEnum.HPIOB_S))
continue;
for (BELPin p : other.getPins())
if(p.isOutput() && p.getSiteWireName().equals(sw[2]))
startPin = p;
}
if (startPin != null) {
for (BEL other : si.getBELs()) {
//if (other.getBELClass() == BELClass.RBEL || other.getBELClass() == BELClass.PORT)
// continue;
for (BELPin p : other.getPins()) {
if (p.isInput() && p.getSiteWireName().equals(sw[2])) {
si.routeIntraSiteNet(n, startPin, p);
//System.out.println(si.getSiteName() + ": " + startPin.getBEL().getName() + "." + startPin.getName() + " -> " + p.getBEL().getName() + "." + p.getName());
}
}
}
}
}
}
}
HashMap<String, HashSet<String>> created_ports = new HashMap<>();
for (NextpnrCell nc : ndes.cells.values()) {
if (nc.name.contains("$subcell$")) {
String basename = nc.name.replace("/", "__").split("\\$subcell\\$")[0];
created_ports.putIfAbsent(basename, new HashSet<>());
EDIFCellInst macro = des.getTopEDIFCell().getCellInst(basename);
for (Map.Entry<String, String> param : nc.params.entrySet()) {
String value = param.getValue();
if (param.getKey().startsWith("IS_") && param.getKey().endsWith("_INVERTED")) {
value = fixup_init(value, 1).replace("h", "b");
}
macro.addProperty(param.getKey(), value);
}
for (NextpnrCellPort p : nc.ports.values()) {
if (p.net == null)
continue;
Net physNet = p.net.rwNet;
if (physNet == null)
continue;
if (!nc.attrs.containsKey("X_ORIG_PORT_" + p.name))
continue;
String[] orig_ports = nc.attrs.get("X_ORIG_PORT_" + p.name).split(" ");
for (String o : orig_ports) {
if (nc.attrs.containsKey("X_MACRO_PORTS_" + o)) {
String[] mps = nc.attrs.get("X_MACRO_PORTS_" + o).split(";");
for (String mp : mps) {
String [] nt = mp.split(",");
if (created_ports.get(basename).contains(nt[0]))
continue;
if (physNet.getLogicalNet() == null)
continue;
String logical_pin = nt[0];
if (logical_pin.endsWith("]")) {
int open_pos = logical_pin.lastIndexOf('[');
String log_bus = logical_pin.substring(0, open_pos);
int port_index = Integer.parseInt(logical_pin.substring(open_pos + 1, logical_pin.length() - 1));
int bus_width = macro.getPort(log_bus).getWidth();
physNet.getLogicalNet().createPortInst(log_bus, (bus_width - 1) - port_index, macro);
} else {
physNet.getLogicalNet().createPortInst(logical_pin, macro);
}
created_ports.get(basename).add(nt[0]);
}
}
}
}
}
}
for (NextpnrCell nc : ndes.cells.values()) {
if (nc.type.equals("IOB_PAD")) {
// Process top level IO
EDIFPortInst epi = EDIFTools.createTopLevelPortInst(des, nc.name, PinType.valueOf(nc.attrs.get("X_IO_DIR")));
Net pad_net = nc.ports.get("PAD").net.rwNet;
pad_net.getLogicalNet().addPortInst(epi);
for (var attr : nc.attrs.entrySet()) {
pad_net.getLogicalNet().addProperty(attr.getKey(), attr.getValue());
}
}
}
des.writeCheckpoint(args[2]);
}
}