aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/cells.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2022-02-16 18:13:22 +0000
committerGitHub <noreply@github.com>2022-02-16 18:13:22 +0000
commit61d1db16be2c68cf6ae8b4d2ff3266b5c7086ad2 (patch)
tree379b38c06745919df0e87c1be1410e16793b0925 /machxo2/cells.cc
parent25c47e5b7e12d232cac9408b7d6d339ee11793b7 (diff)
parent76683a1e3c123d28deff750c38467c6377936879 (diff)
downloadnextpnr-61d1db16be2c68cf6ae8b4d2ff3266b5c7086ad2.tar.gz
nextpnr-61d1db16be2c68cf6ae8b4d2ff3266b5c7086ad2.tar.bz2
nextpnr-61d1db16be2c68cf6ae8b4d2ff3266b5c7086ad2.zip
Merge pull request #918 from YosysHQ/gatecat/netlist-ii
Refactor pt2, barnacle cleanup
Diffstat (limited to 'machxo2/cells.cc')
-rw-r--r--machxo2/cells.cc157
1 files changed, 72 insertions, 85 deletions
diff --git a/machxo2/cells.cc b/machxo2/cells.cc
index 534d8e3c..1c4f753b 100644
--- a/machxo2/cells.cc
+++ b/machxo2/cells.cc
@@ -25,19 +25,6 @@
NEXTPNR_NAMESPACE_BEGIN
-void add_port(const Context *ctx, CellInfo *cell, std::string name, PortType dir)
-{
- IdString id = ctx->id(name);
- NPNR_ASSERT(cell->ports.count(id) == 0);
- cell->ports[id] = PortInfo{id, nullptr, dir};
-}
-
-void add_port(const Context *ctx, CellInfo *cell, IdString id, PortType dir)
-{
- NPNR_ASSERT(cell->ports.count(id) == 0);
- cell->ports[id] = PortInfo{id, nullptr, dir};
-}
-
std::unique_ptr<CellInfo> create_machxo2_cell(Context *ctx, IdString type, std::string name)
{
static int auto_idx = 0;
@@ -64,72 +51,72 @@ std::unique_ptr<CellInfo> create_machxo2_cell(Context *ctx, IdString type, std::
new_cell->params[id_CCU2_INJECT1_1] = std::string("YES");
new_cell->params[id_WREMUX] = std::string("INV");
- add_port(ctx, new_cell.get(), id_A0, PORT_IN);
- add_port(ctx, new_cell.get(), id_B0, PORT_IN);
- add_port(ctx, new_cell.get(), id_C0, PORT_IN);
- add_port(ctx, new_cell.get(), id_D0, PORT_IN);
-
- add_port(ctx, new_cell.get(), id_A1, PORT_IN);
- add_port(ctx, new_cell.get(), id_B1, PORT_IN);
- add_port(ctx, new_cell.get(), id_C1, PORT_IN);
- add_port(ctx, new_cell.get(), id_D1, PORT_IN);
-
- add_port(ctx, new_cell.get(), id_M0, PORT_IN);
- add_port(ctx, new_cell.get(), id_M1, PORT_IN);
-
- add_port(ctx, new_cell.get(), id_FCI, PORT_IN);
- add_port(ctx, new_cell.get(), id_FXA, PORT_IN);
- add_port(ctx, new_cell.get(), id_FXB, PORT_IN);
-
- add_port(ctx, new_cell.get(), id_CLK, PORT_IN);
- add_port(ctx, new_cell.get(), id_LSR, PORT_IN);
- add_port(ctx, new_cell.get(), id_CE, PORT_IN);
-
- add_port(ctx, new_cell.get(), id_DI0, PORT_IN);
- add_port(ctx, new_cell.get(), id_DI1, PORT_IN);
-
- add_port(ctx, new_cell.get(), id_WD0, PORT_IN);
- add_port(ctx, new_cell.get(), id_WD1, PORT_IN);
- add_port(ctx, new_cell.get(), id_WAD0, PORT_IN);
- add_port(ctx, new_cell.get(), id_WAD1, PORT_IN);
- add_port(ctx, new_cell.get(), id_WAD2, PORT_IN);
- add_port(ctx, new_cell.get(), id_WAD3, PORT_IN);
- add_port(ctx, new_cell.get(), id_WRE, PORT_IN);
- add_port(ctx, new_cell.get(), id_WCK, PORT_IN);
-
- add_port(ctx, new_cell.get(), id_F0, PORT_OUT);
- add_port(ctx, new_cell.get(), id_Q0, PORT_OUT);
- add_port(ctx, new_cell.get(), id_F1, PORT_OUT);
- add_port(ctx, new_cell.get(), id_Q1, PORT_OUT);
-
- add_port(ctx, new_cell.get(), id_FCO, PORT_OUT);
- add_port(ctx, new_cell.get(), id_OFX0, PORT_OUT);
- add_port(ctx, new_cell.get(), id_OFX1, PORT_OUT);
-
- add_port(ctx, new_cell.get(), id_WDO0, PORT_OUT);
- add_port(ctx, new_cell.get(), id_WDO1, PORT_OUT);
- add_port(ctx, new_cell.get(), id_WDO2, PORT_OUT);
- add_port(ctx, new_cell.get(), id_WDO3, PORT_OUT);
- add_port(ctx, new_cell.get(), id_WADO0, PORT_OUT);
- add_port(ctx, new_cell.get(), id_WADO1, PORT_OUT);
- add_port(ctx, new_cell.get(), id_WADO2, PORT_OUT);
- add_port(ctx, new_cell.get(), id_WADO3, PORT_OUT);
+ new_cell->addInput(id_A0);
+ new_cell->addInput(id_B0);
+ new_cell->addInput(id_C0);
+ new_cell->addInput(id_D0);
+
+ new_cell->addInput(id_A1);
+ new_cell->addInput(id_B1);
+ new_cell->addInput(id_C1);
+ new_cell->addInput(id_D1);
+
+ new_cell->addInput(id_M0);
+ new_cell->addInput(id_M1);
+
+ new_cell->addInput(id_FCI);
+ new_cell->addInput(id_FXA);
+ new_cell->addInput(id_FXB);
+
+ new_cell->addInput(id_CLK);
+ new_cell->addInput(id_LSR);
+ new_cell->addInput(id_CE);
+
+ new_cell->addInput(id_DI0);
+ new_cell->addInput(id_DI1);
+
+ new_cell->addInput(id_WD0);
+ new_cell->addInput(id_WD1);
+ new_cell->addInput(id_WAD0);
+ new_cell->addInput(id_WAD1);
+ new_cell->addInput(id_WAD2);
+ new_cell->addInput(id_WAD3);
+ new_cell->addInput(id_WRE);
+ new_cell->addInput(id_WCK);
+
+ new_cell->addOutput(id_F0);
+ new_cell->addOutput(id_Q0);
+ new_cell->addOutput(id_F1);
+ new_cell->addOutput(id_Q1);
+
+ new_cell->addOutput(id_FCO);
+ new_cell->addOutput(id_OFX0);
+ new_cell->addOutput(id_OFX1);
+
+ new_cell->addOutput(id_WDO0);
+ new_cell->addOutput(id_WDO1);
+ new_cell->addOutput(id_WDO2);
+ new_cell->addOutput(id_WDO3);
+ new_cell->addOutput(id_WADO0);
+ new_cell->addOutput(id_WADO1);
+ new_cell->addOutput(id_WADO2);
+ new_cell->addOutput(id_WADO3);
} else if (type == id_FACADE_IO) {
new_cell->params[id_DIR] = std::string("INPUT");
- new_cell->attrs[ctx->id("IO_TYPE")] = std::string("LVCMOS33");
+ new_cell->attrs[id_IO_TYPE] = std::string("LVCMOS33");
- add_port(ctx, new_cell.get(), "PAD", PORT_INOUT);
- add_port(ctx, new_cell.get(), "I", PORT_IN);
- add_port(ctx, new_cell.get(), "EN", PORT_IN);
- add_port(ctx, new_cell.get(), "O", PORT_OUT);
+ new_cell->addInout(id_PAD);
+ new_cell->addInput(id_I);
+ new_cell->addInput(id_EN);
+ new_cell->addOutput(id_O);
} else if (type == id_LUT4) {
new_cell->params[id_INIT] = Property(0, 16);
- add_port(ctx, new_cell.get(), id_A, PORT_IN);
- add_port(ctx, new_cell.get(), id_B, PORT_IN);
- add_port(ctx, new_cell.get(), id_C, PORT_IN);
- add_port(ctx, new_cell.get(), id_D, PORT_IN);
- add_port(ctx, new_cell.get(), id_Z, PORT_OUT);
+ new_cell->addInput(id_A);
+ new_cell->addInput(id_B);
+ new_cell->addInput(id_C);
+ new_cell->addInput(id_D);
+ new_cell->addOutput(id_Z);
} else {
log_error("unable to create MachXO2 cell of type %s", type.c_str(ctx));
}
@@ -139,7 +126,7 @@ std::unique_ptr<CellInfo> create_machxo2_cell(Context *ctx, IdString type, std::
void lut_to_lc(const Context *ctx, CellInfo *lut, CellInfo *lc, bool no_dff)
{
- lc->params[ctx->id("LUT0_INITVAL")] = lut->params[ctx->id("INIT")];
+ lc->params[id_LUT0_INITVAL] = lut->params[id_INIT];
for (std::string i : {"A", "B", "C", "D"}) {
IdString lut_port = ctx->id(i);
@@ -147,34 +134,34 @@ void lut_to_lc(const Context *ctx, CellInfo *lut, CellInfo *lc, bool no_dff)
replace_port(lut, lut_port, lc, lc_port);
}
- replace_port(lut, ctx->id("Z"), lc, ctx->id("F0"));
+ replace_port(lut, id_Z, lc, id_F0);
}
void dff_to_lc(Context *ctx, CellInfo *dff, CellInfo *lc, LutType lut_type)
{
// FIXME: This will have to change once we support FFs with reset value of 1.
- lc->params[ctx->id("REG0_REGSET")] = std::string("RESET");
+ lc->params[id_REG0_REGSET] = std::string("RESET");
- replace_port(dff, ctx->id("CLK"), lc, ctx->id("CLK"));
- replace_port(dff, ctx->id("LSR"), lc, ctx->id("LSR"));
- replace_port(dff, ctx->id("Q"), lc, ctx->id("Q0"));
+ replace_port(dff, id_CLK, lc, id_CLK);
+ replace_port(dff, id_LSR, lc, id_LSR);
+ replace_port(dff, id_Q, lc, id_Q0);
if (lut_type == LutType::PassThru) {
// If a register's DI port is fed by a constant, options for placing are
// limited. Use the LUT to get around this.
// LUT output will go to F0, which will feed back to DI0 input.
- lc->params[ctx->id("LUT0_INITVAL")] = Property(0xAAAA, 16);
- replace_port(dff, ctx->id("DI"), lc, ctx->id("A0"));
- connect_ports(ctx, lc, ctx->id("F0"), lc, ctx->id("DI0"));
+ lc->params[id_LUT0_INITVAL] = Property(0xAAAA, 16);
+ replace_port(dff, id_DI, lc, id_A0);
+ connect_ports(ctx, lc, id_F0, lc, id_DI0);
} else if (lut_type == LutType::None) {
// If there is no LUT, use the M0 input because DI0 requires
// going through the LUTs.
- lc->params[ctx->id("REG0_SD")] = std::string("0");
- replace_port(dff, ctx->id("DI"), lc, ctx->id("M0"));
+ lc->params[id_REG0_SD] = std::string("0");
+ replace_port(dff, id_DI, lc, id_M0);
} else {
// Otherwise, there's a LUT being used in the slice and mapping DI to
// DI0 input is fine.
- replace_port(dff, ctx->id("DI"), lc, ctx->id("DI0"));
+ replace_port(dff, id_DI, lc, id_DI0);
}
}