diff options
author | David Shah <dave@ds0.me> | 2021-02-05 19:15:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 19:15:29 +0000 |
commit | 8b4163b77c667c4f2a29e48adab96abc2a83b03d (patch) | |
tree | f0ebf104fd3b9a5f1752698b3df4e5c2f2af3304 /fpga_interchange/arch.cc | |
parent | b0f9b7834e4cb035d1fd60f0fa1948c0fdfa233c (diff) | |
parent | a0ee42833b774483f9b2fc35109f7ec948dbdc9b (diff) | |
download | nextpnr-8b4163b77c667c4f2a29e48adab96abc2a83b03d.tar.gz nextpnr-8b4163b77c667c4f2a29e48adab96abc2a83b03d.tar.bz2 nextpnr-8b4163b77c667c4f2a29e48adab96abc2a83b03d.zip |
Merge pull request #567 from litghost/initial_fpga_interchange
Initial FPGA interchange arch
Diffstat (limited to 'fpga_interchange/arch.cc')
-rw-r--r-- | fpga_interchange/arch.cc | 578 |
1 files changed, 578 insertions, 0 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc new file mode 100644 index 00000000..63cf290b --- /dev/null +++ b/fpga_interchange/arch.cc @@ -0,0 +1,578 @@ +/* + * nextpnr -- Next Generation Place and Route + * + * Copyright (C) 2018 Claire Wolf <claire@symbioticeda.com> + * Copyright (C) 2018-19 David Shah <david@symbioticeda.com> + * Copyright (C) 2021 Symbiflow Authors + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + */ + +#include <algorithm> +#include <boost/algorithm/string.hpp> +#include <boost/range/adaptor/reversed.hpp> +#include <cmath> +#include <cstring> +#include <queue> +#include "log.h" +#include "nextpnr.h" +#include "placer1.h" +#include "placer_heap.h" +#include "router1.h" +#include "router2.h" +#include "timing.h" +#include "util.h" + +NEXTPNR_NAMESPACE_BEGIN + +static std::pair<std::string, std::string> split_identifier_name_dot(const std::string &name) +{ + size_t first_dot = name.find('.'); + NPNR_ASSERT(first_dot != std::string::npos); + return std::make_pair(name.substr(0, first_dot), name.substr(first_dot + 1)); +}; + +// ----------------------------------------------------------------------- + +void IdString::initialize_arch(const BaseCtx *ctx) {} + +// ----------------------------------------------------------------------- + +static const ChipInfoPOD *get_chip_info(const RelPtr<ChipInfoPOD> *ptr) { return ptr->get(); } + +Arch::Arch(ArchArgs args) : args(args) +{ + try { + blob_file.open(args.chipdb); + if (args.chipdb.empty() || !blob_file.is_open()) + log_error("Unable to read chipdb %s\n", args.chipdb.c_str()); + const char *blob = reinterpret_cast<const char *>(blob_file.data()); + chip_info = get_chip_info(reinterpret_cast<const RelPtr<ChipInfoPOD> *>(blob)); + } catch (...) { + log_error("Unable to read chipdb %s\n", args.chipdb.c_str()); + } + + // Read strings from constids into IdString database, checking that list + // is unique and matches expected constid value. + int id = 1; + for (const auto &constid : *chip_info->constids) { + IdString::initialize_add(this, constid.get(), id++); + } + + tileStatus.resize(chip_info->tiles.size()); + for (int i = 0; i < chip_info->tiles.ssize(); i++) { + tileStatus[i].boundcells.resize(chip_info->tile_types[chip_info->tiles[i].type].bel_data.size()); + } + + // Sanity check cell name ids. + const CellMapPOD &cell_map = *chip_info->cell_map; + int32_t first_cell_id = cell_map.cell_names[0]; + for (int32_t i = 0; i < cell_map.cell_names.ssize(); ++i) { + log_assert(cell_map.cell_names[i] == i + first_cell_id); + } +} + +// ----------------------------------------------------------------------- + +std::string Arch::getChipName() const { return chip_info->name.get(); } + +// ----------------------------------------------------------------------- + +IdString Arch::archArgsToId(ArchArgs args) const { return IdString(); } + +// ----------------------------------------------------------------------- + +void Arch::setup_byname() const +{ + if (tile_by_name.empty()) { + for (int i = 0; i < chip_info->tiles.ssize(); i++) { + tile_by_name[id(chip_info->tiles[i].name.get())] = i; + } + } + + if (site_by_name.empty()) { + for (int i = 0; i < chip_info->tiles.ssize(); i++) { + auto &tile = chip_info->tiles[i]; + auto &tile_type = chip_info->tile_types[tile.type]; + for (int j = 0; j < tile_type.number_sites; j++) { + auto &site = chip_info->sites[tile.sites[j]]; + site_by_name[id(site.name.get())] = std::make_pair(i, j); + } + } + } +} + +BelId Arch::getBelByName(IdStringList name) const +{ + BelId ret; + if (name.ids.size() != 2) { + return BelId(); + } + + setup_byname(); + + int tile, site; + std::tie(tile, site) = site_by_name.at(name.ids[0]); + auto &tile_info = chip_info->tile_types[chip_info->tiles[tile].type]; + IdString belname = name.ids[1]; + for (int i = 0; i < tile_info.bel_data.ssize(); i++) { + if (tile_info.bel_data[i].site == site && tile_info.bel_data[i].name == belname.index) { + ret.tile = tile; + ret.index = i; + break; + } + } + + return ret; +} + +BelRange Arch::getBelsByTile(int x, int y) const +{ + BelRange br; + + br.b.cursor_tile = get_tile_index(x, y); + br.e.cursor_tile = br.b.cursor_tile; + br.b.cursor_index = 0; + br.e.cursor_index = chip_info->tile_types[chip_info->tiles[br.b.cursor_tile].type].bel_data.size(); + br.b.chip = chip_info; + br.e.chip = chip_info; + + if (br.b != br.e) { + ++br.e; + } + return br; +} + +WireId Arch::getBelPinWire(BelId bel, IdString pin) const +{ + NPNR_ASSERT(bel != BelId()); + + int pin_index = get_bel_pin_index(bel, pin); + + auto &bel_data = bel_info(chip_info, bel); + NPNR_ASSERT(pin_index >= 0 && pin_index < bel_data.num_bel_wires); + + const int32_t *wires = bel_data.wires.get(); + int32_t wire_index = wires[pin_index]; + if (wire_index < 0) { + // This BEL pin is not connected. + return WireId(); + } else { + return canonical_wire(chip_info, bel.tile, wire_index); + } +} + +PortType Arch::getBelPinType(BelId bel, IdString pin) const +{ + NPNR_ASSERT(bel != BelId()); + + int pin_index = get_bel_pin_index(bel, pin); + auto &bel_data = bel_info(chip_info, bel); + NPNR_ASSERT(pin_index >= 0 && pin_index < bel_data.num_bel_wires); + const int32_t *types = bel_data.types.get(); + return PortType(types[pin_index]); +} + +// ----------------------------------------------------------------------- + +WireId Arch::getWireByName(IdStringList name) const +{ + WireId ret; + if (name.ids.size() != 2) { + return WireId(); + } + + setup_byname(); + + auto iter = site_by_name.find(name.ids[0]); + if (iter != site_by_name.end()) { + int tile; + int site; + std::tie(tile, site) = iter->second; + auto &tile_info = chip_info->tile_types[chip_info->tiles[tile].type]; + IdString wirename = name.ids[1]; + for (int i = 0; i < tile_info.wire_data.ssize(); i++) { + if (tile_info.wire_data[i].site == site && tile_info.wire_data[i].name == wirename.index) { + ret.tile = tile; + ret.index = i; + break; + } + } + } else { + int tile = tile_by_name.at(name.ids[0]); + auto &tile_info = chip_info->tile_types[chip_info->tiles[tile].type]; + IdString wirename = name.ids[1]; + for (int i = 0; i < tile_info.wire_data.ssize(); i++) { + if (tile_info.wire_data[i].site == -1 && tile_info.wire_data[i].name == wirename.index) { + int32_t node = chip_info->tiles[tile].tile_wire_to_node[i]; + if (node == -1) { + // Not a nodal wire + ret.tile = tile; + ret.index = i; + } else { + // Is a nodal wire, set tile to -1 + ret.tile = -1; + ret.index = node; + } + break; + } + } + } + + return ret; +} + +IdString Arch::getWireType(WireId wire) const { return id(""); } +std::vector<std::pair<IdString, std::string>> Arch::getWireAttrs(WireId wire) const { return {}; } + +// ----------------------------------------------------------------------- + +PipId Arch::getPipByName(IdStringList name) const +{ + // PIP name structure: + // Tile PIP: <tile name>/<source wire name>.<destination wire name> + // Site PIP: <site name>/<bel name>/<input bel pin name> + // Site pin: <site name>/<bel name> + // Psuedo site PIP: <site name>/<source wire name>.<destination wire name> + + setup_byname(); + + if (name.ids.size() == 3) { + // This is a Site PIP. + IdString site_name = name.ids[0]; + IdString belname = name.ids[1]; + IdString pinname = name.ids[2]; + + int tile; + int site; + std::tie(tile, site) = site_by_name.at(site_name); + auto &tile_info = chip_info->tile_types[chip_info->tiles[tile].type]; + + std::array<IdString, 2> ids{name.ids[0], belname}; + BelId bel = getBelByName(IdStringList(ids)); + NPNR_ASSERT(bel != BelId()); + + int pin_index = get_bel_pin_index(bel, pinname); + NPNR_ASSERT(pin_index >= 0); + + for (int i = 0; i < tile_info.pip_data.ssize(); i++) { + if (tile_info.pip_data[i].site == site && tile_info.pip_data[i].bel == bel.index && + tile_info.pip_data[i].extra_data == pin_index) { + + PipId ret; + ret.tile = tile; + ret.index = i; + return ret; + } + } + } else { + auto iter = site_by_name.find(name.ids[0]); + if (iter != site_by_name.end()) { + // This is either a site pin or a psuedo site pip. + // psuedo site pips are <site>/<src site wire>.<dst site wire> + // site pins are <site>/<bel> + int tile; + int site; + std::tie(tile, site) = iter->second; + auto &tile_info = chip_info->tile_types[chip_info->tiles[tile].type]; + + std::string pip_second = name.ids[1].str(this); + auto split = pip_second.find('.'); + if (split == std::string::npos) { + // This is a site pin! + BelId bel = getBelByName(name); + NPNR_ASSERT(bel != BelId()); + + for (int i = 0; i < tile_info.pip_data.ssize(); i++) { + if (tile_info.pip_data[i].site == site && tile_info.pip_data[i].bel == bel.index) { + + PipId ret; + ret.tile = tile; + ret.index = i; + return ret; + } + } + } else { + // This is a psuedo site pip! + IdString src_site_wire = id(pip_second.substr(0, split)); + IdString dst_site_wire = id(pip_second.substr(split + 1)); + int32_t src_index = -1; + int32_t dst_index = -1; + + for (int i = 0; i < tile_info.wire_data.ssize(); i++) { + if (tile_info.wire_data[i].site == site && tile_info.wire_data[i].name == src_site_wire.index) { + src_index = i; + if (dst_index != -1) { + break; + } + } + if (tile_info.wire_data[i].site == site && tile_info.wire_data[i].name == dst_site_wire.index) { + dst_index = i; + if (src_index != -1) { + break; + } + } + } + + NPNR_ASSERT(src_index != -1); + NPNR_ASSERT(dst_index != -1); + + for (int i = 0; i < tile_info.pip_data.ssize(); i++) { + if (tile_info.pip_data[i].site == site && tile_info.pip_data[i].src_index == src_index && + tile_info.pip_data[i].dst_index == dst_index) { + + PipId ret; + ret.tile = tile; + ret.index = i; + return ret; + } + } + } + } else { + int tile = tile_by_name.at(name.ids[0]); + auto &tile_info = chip_info->tile_types[chip_info->tiles[tile].type]; + + std::string pip_second = name.ids[1].str(this); + auto spn = split_identifier_name_dot(pip_second); + auto src_wire_name = id(spn.first); + auto dst_wire_name = id(spn.second); + + int32_t src_index = -1; + int32_t dst_index = -1; + for (int i = 0; i < tile_info.wire_data.ssize(); i++) { + if (tile_info.wire_data[i].site == -1 && tile_info.wire_data[i].name == src_wire_name.index) { + src_index = i; + if (dst_index != -1) { + break; + } + } + if (tile_info.wire_data[i].site == -1 && tile_info.wire_data[i].name == dst_wire_name.index) { + dst_index = i; + if (src_index != -1) { + break; + } + } + } + + NPNR_ASSERT(src_index != -1); + NPNR_ASSERT(dst_index != -1); + + for (int i = 0; i < tile_info.pip_data.ssize(); i++) { + if (tile_info.pip_data[i].src_index == src_index && tile_info.pip_data[i].dst_index == dst_index) { + + PipId ret; + ret.tile = tile; + ret.index = i; + return ret; + } + } + } + } + + return PipId(); +} + +IdStringList Arch::getPipName(PipId pip) const +{ + // PIP name structure: + // Tile PIP: <tile name>/<source wire name>.<destination wire name> + // Psuedo site PIP: <site name>/<input site wire>.<output site wire> + // Site PIP: <site name>/<bel name>/<input bel pin name> + // Site pin: <site name>/<bel name> + NPNR_ASSERT(pip != PipId()); + auto &tile = chip_info->tiles[pip.tile]; + auto &tile_type = loc_info(chip_info, pip); + auto &pip_info = tile_type.pip_data[pip.index]; + if (pip_info.site != -1) { + // This is either a site pin or a site pip. + auto &site = chip_info->sites[tile.sites[pip_info.site]]; + auto &bel = tile_type.bel_data[pip_info.bel]; + IdString bel_name(bel.name); + if (bel.category == BEL_CATEGORY_LOGIC) { + // This is a psuedo pip + IdString src_wire_name = IdString(tile_type.wire_data[pip_info.src_index].name); + IdString dst_wire_name = IdString(tile_type.wire_data[pip_info.dst_index].name); + IdString pip = id(src_wire_name.str(this) + "." + dst_wire_name.str(this)); + std::array<IdString, 2> ids{id(site.name.get()), pip}; + return IdStringList(ids); + + } else if (bel.category == BEL_CATEGORY_ROUTING) { + // This is a site pip. + IdString pin_name(bel.ports[pip_info.extra_data]); + std::array<IdString, 3> ids{id(site.name.get()), bel_name, pin_name}; + return IdStringList(ids); + } else { + NPNR_ASSERT(bel.category == BEL_CATEGORY_SITE_PORT); + // This is a site pin, just the name of the BEL is a unique identifier. + std::array<IdString, 2> ids{id(site.name.get()), bel_name}; + return IdStringList(ids); + } + } else { + // This is a tile pip. + IdString src_wire_name = IdString(tile_type.wire_data[pip_info.src_index].name); + IdString dst_wire_name = IdString(tile_type.wire_data[pip_info.dst_index].name); + IdString pip = id(src_wire_name.str(this) + "." + dst_wire_name.str(this)); + std::array<IdString, 2> ids{id(std::string(tile.name.get())), pip}; + return IdStringList(ids); + } +} + +IdString Arch::getPipType(PipId pip) const { return id("PIP"); } + +std::vector<std::pair<IdString, std::string>> Arch::getPipAttrs(PipId pip) const { return {}; } + +// ----------------------------------------------------------------------- + +BelId Arch::getBelByLocation(Loc loc) const +{ + BelId bi; + if (loc.x >= chip_info->width || loc.y >= chip_info->height) + return BelId(); + bi.tile = get_tile_index(loc); + auto &li = loc_info(chip_info, bi); + + if (loc.z >= li.bel_data.ssize()) { + return BelId(); + } else { + bi.index = loc.z; + return bi; + } +} + +std::vector<std::pair<IdString, std::string>> Arch::getBelAttrs(BelId bel) const { return {}; } + +// ----------------------------------------------------------------------- + +ArcBounds Arch::getRouteBoundingBox(WireId src, WireId dst) const +{ + int dst_tile = dst.tile == -1 ? chip_info->nodes[dst.index].tile_wires[0].tile : dst.tile; + int src_tile = src.tile == -1 ? chip_info->nodes[src.index].tile_wires[0].tile : src.tile; + + int x0, x1, y0, y1; + x0 = src_tile % chip_info->width; + x1 = x0; + y0 = src_tile / chip_info->width; + y1 = y0; + auto expand = [&](int x, int y) { + x0 = std::min(x0, x); + x1 = std::max(x1, x); + y0 = std::min(y0, y); + y1 = std::max(y1, y); + }; + + expand(dst_tile % chip_info->width, dst_tile / chip_info->width); + + if (source_locs.count(src)) + expand(source_locs.at(src).x, source_locs.at(src).y); + + if (sink_locs.count(dst)) { + expand(sink_locs.at(dst).x, sink_locs.at(dst).y); + } + + return {x0, y0, x1, y1}; +} + +delay_t Arch::getWireRipupDelayPenalty(WireId wire) const { return getRipupDelayPenalty(); } + +bool Arch::getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t &budget) const { return false; } + +// ----------------------------------------------------------------------- + +bool Arch::pack() +{ + // FIXME: Implement this + return false; +} + +bool Arch::place() +{ + // FIXME: Implement this + return false; +} + +bool Arch::route() +{ + // FIXME: Implement this + return false; +} + +// ----------------------------------------------------------------------- + +std::vector<GraphicElement> Arch::getDecalGraphics(DecalId decal) const { return {}; } + +DecalXY Arch::getBelDecal(BelId bel) const +{ + DecalXY decalxy; + return decalxy; +} + +DecalXY Arch::getWireDecal(WireId wire) const +{ + DecalXY decalxy; + return decalxy; +} + +DecalXY Arch::getPipDecal(PipId pip) const { return {}; }; + +DecalXY Arch::getGroupDecal(GroupId pip) const { return {}; }; + +// ----------------------------------------------------------------------- + +delay_t Arch::estimateDelay(WireId src, WireId dst, bool debug) const +{ + // FIXME: Implement something to push the A* router in the right direction. + return 0; +} + +delay_t Arch::predictDelay(const NetInfo *net_info, const PortRef &sink) const +{ + // FIXME: Implement when adding timing-driven place and route. + return 0; +} + +bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort, DelayInfo &delay) const +{ + // FIXME: Implement when adding timing-driven place and route. + return false; +} + +TimingPortClass Arch::getPortTimingClass(const CellInfo *cell, IdString port, int &clockInfoCount) const +{ + // FIXME: Implement when adding timing-driven place and route. + return TMG_IGNORE; +} + +TimingClockingInfo Arch::getPortClockingInfo(const CellInfo *cell, IdString port, int index) const +{ + // FIXME: Implement when adding timing-driven place and route. + TimingClockingInfo info; + return info; +} + +#ifdef WITH_HEAP +const std::string Arch::defaultPlacer = "heap"; +#else +const std::string Arch::defaultPlacer = "sa"; +#endif + +const std::vector<std::string> Arch::availablePlacers = {"sa", +#ifdef WITH_HEAP + "heap" +#endif +}; + +const std::string Arch::defaultRouter = "router2"; +const std::vector<std::string> Arch::availableRouters = {"router1", "router2"}; + +NEXTPNR_NAMESPACE_END |