From ad18cdb08787c4ecc88edaec353a96f59135c62d Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 18 Jun 2018 13:35:25 +0200 Subject: Rename Chip to Arch and ChipArgs to ArchArgs Signed-off-by: Clifford Wolf --- ice40/arch_place.cc | 4 ++-- ice40/bitstream.cc | 42 ++++++++++++++++++------------------ ice40/chip.cc | 56 +++++++++++++++++++++++------------------------ ice40/chip.h | 13 +++++------ ice40/main.cc | 32 +++++++++++++-------------- ice40/pybindings.cc | 62 ++++++++++++++++++++++++++--------------------------- 6 files changed, 105 insertions(+), 104 deletions(-) (limited to 'ice40') diff --git a/ice40/arch_place.cc b/ice40/arch_place.cc index 3205fb6e..d9210378 100644 --- a/ice40/arch_place.cc +++ b/ice40/arch_place.cc @@ -90,7 +90,7 @@ static bool logicCellsCompatible(const std::vector &cells) bool isBelLocationValid(Design *design, BelId bel) { - const Chip &chip = design->chip; + const Arch &chip = design->chip; if (chip.getBelType(bel) == TYPE_ICESTORM_LC) { std::vector cells; for (auto bel_other : chip.getBelsAtSameTile(bel)) { @@ -112,7 +112,7 @@ bool isBelLocationValid(Design *design, BelId bel) bool isValidBelForCell(Design *design, CellInfo *cell, BelId bel) { - const Chip &chip = design->chip; + const Arch &chip = design->chip; if (cell->type == "ICESTORM_LC") { assert(chip.getBelType(bel) == TYPE_ICESTORM_LC); diff --git a/ice40/bitstream.cc b/ice40/bitstream.cc index 4991df5e..ff839ba1 100644 --- a/ice40/bitstream.cc +++ b/ice40/bitstream.cc @@ -23,7 +23,7 @@ NEXTPNR_NAMESPACE_BEGIN -inline TileType tile_at(const Chip &chip, int x, int y) +inline TileType tile_at(const Arch &chip, int x, int y) { return chip.chip_info->tile_grid[y * chip.chip_info->width + x]; } @@ -97,7 +97,7 @@ char get_hexdigit(int i) { return std::string("0123456789ABCDEF").at(i); } void write_asc(const Design &design, std::ostream &out) { - const Chip &chip = design.chip; + const Arch &chip = design.chip; // [y][x][row][col] const ChipInfoPOD &ci = *chip.chip_info; const BitstreamInfoPOD &bi = *ci.bits_info; @@ -115,18 +115,18 @@ void write_asc(const Design &design, std::ostream &out) out << ".comment from next-pnr" << std::endl; switch (chip.args.type) { - case ChipArgs::LP384: + case ArchArgs::LP384: out << ".device 384" << std::endl; break; - case ChipArgs::HX1K: - case ChipArgs::LP1K: + case ArchArgs::HX1K: + case ArchArgs::LP1K: out << ".device 1k" << std::endl; break; - case ChipArgs::HX8K: - case ChipArgs::LP8K: + case ArchArgs::HX8K: + case ArchArgs::LP8K: out << ".device 8k" << std::endl; break; - case ChipArgs::UP5K: + case ArchArgs::UP5K: out << ".device 5k" << std::endl; break; default: @@ -213,8 +213,8 @@ void write_asc(const Design &design, std::ostream &out) input_en = true; } - if (chip.args.type == ChipArgs::LP1K || - chip.args.type == ChipArgs::HX1K) { + if (chip.args.type == ArchArgs::LP1K || + chip.args.type == ArchArgs::HX1K) { set_config(ti, config.at(iey).at(iex), "IoCtrl.IE_" + std::to_string(iez), !input_en); set_config(ti, config.at(iey).at(iex), @@ -232,8 +232,8 @@ void write_asc(const Design &design, std::ostream &out) int x = beli.x, y = beli.y; const TileInfoPOD &ti_ramt = bi.tiles_nonrouting[TILE_RAMT]; const TileInfoPOD &ti_ramb = bi.tiles_nonrouting[TILE_RAMB]; - if (!(chip.args.type == ChipArgs::LP1K || - chip.args.type == ChipArgs::HX1K)) { + if (!(chip.args.type == ArchArgs::LP1K || + chip.args.type == ArchArgs::HX1K)) { set_config(ti_ramb, config.at(y).at(x), "RamConfig.PowerUp", true); } @@ -268,8 +268,8 @@ void write_asc(const Design &design, std::ostream &out) int iex, iey, iez; std::tie(iex, iey, iez) = ieren; if (iez != -1) { - if (chip.args.type == ChipArgs::LP1K || - chip.args.type == ChipArgs::HX1K) { + if (chip.args.type == ArchArgs::LP1K || + chip.args.type == ArchArgs::HX1K) { set_config(ti, config.at(iey).at(iex), "IoCtrl.IE_" + std::to_string(iez), true); set_config(ti, config.at(iey).at(iex), @@ -281,8 +281,8 @@ void write_asc(const Design &design, std::ostream &out) const BelInfoPOD &beli = ci.bel_data[bel.index]; int x = beli.x, y = beli.y; const TileInfoPOD &ti = bi.tiles_nonrouting[TILE_RAMB]; - if ((chip.args.type == ChipArgs::LP1K || - chip.args.type == ChipArgs::HX1K)) { + if ((chip.args.type == ArchArgs::LP1K || + chip.args.type == ArchArgs::HX1K)) { set_config(ti, config.at(y).at(x), "RamConfig.PowerUp", true); } } @@ -296,17 +296,17 @@ void write_asc(const Design &design, std::ostream &out) // set all ColBufCtrl bits (FIXME) bool setColBufCtrl = true; - if (chip.args.type == ChipArgs::LP1K || - chip.args.type == ChipArgs::HX1K) { + if (chip.args.type == ArchArgs::LP1K || + chip.args.type == ArchArgs::HX1K) { if (tile == TILE_RAMB || tile == TILE_RAMT) { setColBufCtrl = (y == 3 || y == 5 || y == 11 || y == 13); } else { setColBufCtrl = (y == 4 || y == 5 || y == 12 || y == 13); } - } else if (chip.args.type == ChipArgs::LP8K || - chip.args.type == ChipArgs::HX8K) { + } else if (chip.args.type == ArchArgs::LP8K || + chip.args.type == ArchArgs::HX8K) { setColBufCtrl = (y == 8 || y == 9 || y == 24 || y == 25); - } else if (chip.args.type == ChipArgs::UP5K) { + } else if (chip.args.type == ArchArgs::UP5K) { if (tile == TILE_LOGIC) { setColBufCtrl = (y == 4 || y == 5 || y == 14 || y == 15 || y == 26 || y == 27); diff --git a/ice40/chip.cc b/ice40/chip.cc index 7074070e..b269a3e3 100644 --- a/ice40/chip.cc +++ b/ice40/chip.cc @@ -78,10 +78,10 @@ PortPin portPinFromId(IdString id) // ----------------------------------------------------------------------- -Chip::Chip(ChipArgs args) : args(args) +Arch::Arch(ArchArgs args) : args(args) { #ifdef ICE40_HX1K_ONLY - if (args.type == ChipArgs::HX1K) { + if (args.type == ArchArgs::HX1K) { chip_info = reinterpret_cast *>(chipdb_blob_1k) ->get(); @@ -89,19 +89,19 @@ Chip::Chip(ChipArgs args) : args(args) log_error("Unsupported iCE40 chip type.\n"); } #else - if (args.type == ChipArgs::LP384) { + if (args.type == ArchArgs::LP384) { chip_info = reinterpret_cast *>(chipdb_blob_384) ->get(); - } else if (args.type == ChipArgs::LP1K || args.type == ChipArgs::HX1K) { + } else if (args.type == ArchArgs::LP1K || args.type == ArchArgs::HX1K) { chip_info = reinterpret_cast *>(chipdb_blob_1k) ->get(); - } else if (args.type == ChipArgs::UP5K) { + } else if (args.type == ArchArgs::UP5K) { chip_info = reinterpret_cast *>(chipdb_blob_5k) ->get(); - } else if (args.type == ChipArgs::LP8K || args.type == ChipArgs::HX8K) { + } else if (args.type == ArchArgs::LP8K || args.type == ArchArgs::HX8K) { chip_info = reinterpret_cast *>(chipdb_blob_8k) ->get(); @@ -128,26 +128,26 @@ Chip::Chip(ChipArgs args) : args(args) // ----------------------------------------------------------------------- -std::string Chip::getChipName() +std::string Arch::getChipName() { #ifdef ICE40_HX1K_ONLY - if (args.type == ChipArgs::HX1K) { + if (args.type == ArchArgs::HX1K) { return "Lattice LP1K"; } else { log_error("Unsupported iCE40 chip type.\n"); } #else - if (args.type == ChipArgs::LP384) { + if (args.type == ArchArgs::LP384) { return "Lattice LP384"; - } else if (args.type == ChipArgs::LP1K) { + } else if (args.type == ArchArgs::LP1K) { return "Lattice LP1K"; - } else if (args.type == ChipArgs::HX1K) { + } else if (args.type == ArchArgs::HX1K) { return "Lattice HX1K"; - } else if (args.type == ChipArgs::UP5K) { + } else if (args.type == ArchArgs::UP5K) { return "Lattice UP5K"; - } else if (args.type == ChipArgs::LP8K) { + } else if (args.type == ArchArgs::LP8K) { return "Lattice LP8K"; - } else if (args.type == ChipArgs::HX8K) { + } else if (args.type == ArchArgs::HX8K) { return "Lattice HX8K"; } else { log_error("Unknown chip\n"); @@ -157,7 +157,7 @@ std::string Chip::getChipName() // ----------------------------------------------------------------------- -BelId Chip::getBelByName(IdString name) const +BelId Arch::getBelByName(IdString name) const { BelId ret; @@ -173,7 +173,7 @@ BelId Chip::getBelByName(IdString name) const return ret; } -BelRange Chip::getBelsAtSameTile(BelId bel) const +BelRange Arch::getBelsAtSameTile(BelId bel) const { BelRange br; assert(bel != BelId()); @@ -193,7 +193,7 @@ BelRange Chip::getBelsAtSameTile(BelId bel) const return br; } -WireId Chip::getWireBelPin(BelId bel, PortPin pin) const +WireId Arch::getWireBelPin(BelId bel, PortPin pin) const { WireId ret; @@ -214,7 +214,7 @@ WireId Chip::getWireBelPin(BelId bel, PortPin pin) const // ----------------------------------------------------------------------- -WireId Chip::getWireByName(IdString name) const +WireId Arch::getWireByName(IdString name) const { WireId ret; @@ -232,7 +232,7 @@ WireId Chip::getWireByName(IdString name) const // ----------------------------------------------------------------------- -PipId Chip::getPipByName(IdString name) const +PipId Arch::getPipByName(IdString name) const { PipId ret; @@ -251,7 +251,7 @@ PipId Chip::getPipByName(IdString name) const return ret; } -IdString Chip::getPipName(PipId pip) const +IdString Arch::getPipName(PipId pip) const { assert(pip != PipId()); @@ -272,7 +272,7 @@ IdString Chip::getPipName(PipId pip) const // ----------------------------------------------------------------------- -BelId Chip::getPackagePinBel(const std::string &pin) const +BelId Arch::getPackagePinBel(const std::string &pin) const { for (int i = 0; i < package_info->num_pins; i++) { if (package_info->pins[i].name.get() == pin) { @@ -284,7 +284,7 @@ BelId Chip::getPackagePinBel(const std::string &pin) const return BelId(); } -std::string Chip::getBelPackagePin(BelId bel) const +std::string Arch::getBelPackagePin(BelId bel) const { for (int i = 0; i < package_info->num_pins; i++) { if (package_info->pins[i].bel_index == bel.index) { @@ -295,7 +295,7 @@ std::string Chip::getBelPackagePin(BelId bel) const } // ----------------------------------------------------------------------- -bool Chip::estimatePosition(BelId bel, int &x, int &y) const +bool Arch::estimatePosition(BelId bel, int &x, int &y) const { assert(bel != BelId()); x = chip_info->bel_data[bel.index].x; @@ -304,7 +304,7 @@ bool Chip::estimatePosition(BelId bel, int &x, int &y) const return chip_info->bel_data[bel.index].type != TYPE_SB_GB; } -delay_t Chip::estimateDelay(WireId src, WireId dst) const +delay_t Arch::estimateDelay(WireId src, WireId dst) const { assert(src != WireId()); delay_t x1 = chip_info->wire_data[src.index].x; @@ -319,7 +319,7 @@ delay_t Chip::estimateDelay(WireId src, WireId dst) const // ----------------------------------------------------------------------- -std::vector Chip::getFrameGraphics() const +std::vector Arch::getFrameGraphics() const { std::vector ret; @@ -336,7 +336,7 @@ std::vector Chip::getFrameGraphics() const return ret; } -std::vector Chip::getBelGraphics(BelId bel) const +std::vector Arch::getBelGraphics(BelId bel) const { std::vector ret; @@ -402,14 +402,14 @@ std::vector Chip::getBelGraphics(BelId bel) const return ret; } -std::vector Chip::getWireGraphics(WireId wire) const +std::vector Arch::getWireGraphics(WireId wire) const { std::vector ret; // FIXME return ret; } -std::vector Chip::getPipGraphics(PipId pip) const +std::vector Arch::getPipGraphics(PipId pip) const { std::vector ret; // FIXME diff --git a/ice40/chip.h b/ice40/chip.h index d3eb7c70..8ba42290 100644 --- a/ice40/chip.h +++ b/ice40/chip.h @@ -443,7 +443,7 @@ struct PipRange // ----------------------------------------------------------------------- -struct ChipArgs +struct ArchArgs { enum { @@ -458,7 +458,7 @@ struct ChipArgs std::string package; }; -struct Chip +struct Arch { const ChipInfoPOD *chip_info; const PackageInfoPOD *package_info; @@ -471,13 +471,14 @@ struct Chip std::vector wire_to_net; std::vector pip_to_net; std::vector switches_locked; - Chip(ChipArgs args); - ChipArgs args; - // ------------------------------------------------- + ArchArgs args; + Arch(ArchArgs args); std::string getChipName(); + // ------------------------------------------------- + BelId getBelByName(IdString name) const; IdString getBelName(BelId bel) const @@ -641,7 +642,7 @@ struct Chip bool checkPipAvail(PipId pip) const { assert(pip != PipId()); - if (args.type == ChipArgs::UP5K) { + if (args.type == ArchArgs::UP5K) { int x = chip_info->pip_data[pip.index].x; if (x == 0 || x == (chip_info->width - 1)) return false; diff --git a/ice40/main.cc b/ice40/main.cc index c43bffa7..ed660069 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -134,56 +134,56 @@ int main(int argc, char *argv[]) verbose = true; } - ChipArgs chipArgs; + ArchArgs chipArgs; if (vm.count("lp384")) { - if (chipArgs.type != ChipArgs::NONE) + if (chipArgs.type != ArchArgs::NONE) goto help; - chipArgs.type = ChipArgs::LP384; + chipArgs.type = ArchArgs::LP384; chipArgs.package = "qn32"; } if (vm.count("lp1k")) { - if (chipArgs.type != ChipArgs::NONE) + if (chipArgs.type != ArchArgs::NONE) goto help; - chipArgs.type = ChipArgs::LP1K; + chipArgs.type = ArchArgs::LP1K; chipArgs.package = "tq144"; } if (vm.count("lp8k")) { - if (chipArgs.type != ChipArgs::NONE) + if (chipArgs.type != ArchArgs::NONE) goto help; - chipArgs.type = ChipArgs::LP8K; + chipArgs.type = ArchArgs::LP8K; chipArgs.package = "ct256"; } if (vm.count("hx1k")) { - if (chipArgs.type != ChipArgs::NONE) + if (chipArgs.type != ArchArgs::NONE) goto help; - chipArgs.type = ChipArgs::HX1K; + chipArgs.type = ArchArgs::HX1K; chipArgs.package = "tq144"; } if (vm.count("hx8k")) { - if (chipArgs.type != ChipArgs::NONE) + if (chipArgs.type != ArchArgs::NONE) goto help; - chipArgs.type = ChipArgs::HX8K; + chipArgs.type = ArchArgs::HX8K; chipArgs.package = "ct256"; } if (vm.count("up5k")) { - if (chipArgs.type != ChipArgs::NONE) + if (chipArgs.type != ArchArgs::NONE) goto help; - chipArgs.type = ChipArgs::UP5K; + chipArgs.type = ArchArgs::UP5K; chipArgs.package = "sg48"; } - if (chipArgs.type == ChipArgs::NONE) { - chipArgs.type = ChipArgs::HX1K; + if (chipArgs.type == ArchArgs::NONE) { + chipArgs.type = ArchArgs::HX1K; chipArgs.package = "tq144"; } #ifdef ICE40_HX1K_ONLY - if (chipArgs.type != ChipArgs::HX1K) { + if (chipArgs.type != ArchArgs::HX1K) { std::cout << "This version of nextpnr-ice40 is built with HX1K-support " "only.\n"; return 1; diff --git a/ice40/pybindings.cc b/ice40/pybindings.cc index c161949b..6ce35583 100644 --- a/ice40/pybindings.cc +++ b/ice40/pybindings.cc @@ -25,16 +25,16 @@ NEXTPNR_NAMESPACE_BEGIN void arch_wrap_python() { - class_("ChipArgs").def_readwrite("type", &ChipArgs::type); + class_("ArchArgs").def_readwrite("type", &ArchArgs::type); - enum_().type)>("iCE40Type") - .value("NONE", ChipArgs::NONE) - .value("LP384", ChipArgs::LP384) - .value("LP1K", ChipArgs::LP1K) - .value("LP8K", ChipArgs::LP8K) - .value("HX1K", ChipArgs::HX1K) - .value("HX8K", ChipArgs::HX8K) - .value("UP5K", ChipArgs::UP5K) + enum_().type)>("iCE40Type") + .value("NONE", ArchArgs::NONE) + .value("LP384", ArchArgs::LP384) + .value("LP1K", ArchArgs::LP1K) + .value("LP8K", ArchArgs::LP8K) + .value("HX1K", ArchArgs::HX1K) + .value("HX8K", ArchArgs::HX8K) + .value("UP5K", ArchArgs::UP5K) .export_values(); class_("BelId").def_readwrite("index", &BelId::index); @@ -53,28 +53,28 @@ void arch_wrap_python() ; #undef X - class_("Chip", init()) - .def("getBelByName", &Chip::getBelByName) - .def("getWireByName", &Chip::getWireByName) - .def("getBelName", &Chip::getBelName) - .def("getWireName", &Chip::getWireName) - .def("getBels", &Chip::getBels) - .def("getBelType", &Chip::getBelType) - .def("getWireBelPin", &Chip::getWireBelPin) - .def("getBelPinUphill", &Chip::getBelPinUphill) - .def("getBelPinsDownhill", &Chip::getBelPinsDownhill) - .def("getWires", &Chip::getWires) - .def("getPipByName", &Chip::getPipByName) - .def("getPipName", &Chip::getPipName) - .def("getPips", &Chip::getPips) - .def("getPipSrcWire", &Chip::getPipSrcWire) - .def("getPipDstWire", &Chip::getPipDstWire) - .def("getPipDelay", &Chip::getPipDelay) - .def("getPipsDownhill", &Chip::getPipsDownhill) - .def("getPipsUphill", &Chip::getPipsUphill) - .def("getWireAliases", &Chip::getWireAliases) - .def("estimatePosition", &Chip::estimatePosition) - .def("estimateDelay", &Chip::estimateDelay); + class_("Arch", init()) + .def("getBelByName", &Arch::getBelByName) + .def("getWireByName", &Arch::getWireByName) + .def("getBelName", &Arch::getBelName) + .def("getWireName", &Arch::getWireName) + .def("getBels", &Arch::getBels) + .def("getBelType", &Arch::getBelType) + .def("getWireBelPin", &Arch::getWireBelPin) + .def("getBelPinUphill", &Arch::getBelPinUphill) + .def("getBelPinsDownhill", &Arch::getBelPinsDownhill) + .def("getWires", &Arch::getWires) + .def("getPipByName", &Arch::getPipByName) + .def("getPipName", &Arch::getPipName) + .def("getPips", &Arch::getPips) + .def("getPipSrcWire", &Arch::getPipSrcWire) + .def("getPipDstWire", &Arch::getPipDstWire) + .def("getPipDelay", &Arch::getPipDelay) + .def("getPipsDownhill", &Arch::getPipsDownhill) + .def("getPipsUphill", &Arch::getPipsUphill) + .def("getWireAliases", &Arch::getWireAliases) + .def("estimatePosition", &Arch::estimatePosition) + .def("estimateDelay", &Arch::estimateDelay); WRAP_RANGE(Bel); WRAP_RANGE(BelPin); -- cgit v1.2.3