2018-06-12 18:13:11 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
|
|
|
|
* Copyright (C) 2018 David Shah <dave@ds0.me>
|
|
|
|
*
|
|
|
|
* 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 "pack.h"
|
2018-06-12 21:13:33 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <unordered_set>
|
2018-06-12 18:13:11 +08:00
|
|
|
#include "cells.h"
|
|
|
|
#include "design_utils.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
2018-06-12 20:31:26 +08:00
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
2018-06-12 18:13:11 +08:00
|
|
|
// Pack LUTs and LUT-FF pairs
|
|
|
|
static void pack_lut_lutffs(Design *design)
|
|
|
|
{
|
|
|
|
std::unordered_set<IdString> packed_cells;
|
2018-06-12 18:46:30 +08:00
|
|
|
std::vector<CellInfo *> new_cells;
|
2018-06-12 18:13:11 +08:00
|
|
|
for (auto cell : design->cells) {
|
|
|
|
CellInfo *ci = cell.second;
|
2018-06-12 18:46:30 +08:00
|
|
|
log_info("cell '%s' is of type '%s'\n", ci->name.c_str(),
|
|
|
|
ci->type.c_str());
|
2018-06-12 18:13:11 +08:00
|
|
|
if (is_lut(ci)) {
|
|
|
|
CellInfo *packed = create_ice_cell(design, "ICESTORM_LC",
|
2018-06-12 21:08:01 +08:00
|
|
|
ci->name.str() + "_LC");
|
2018-06-12 21:13:33 +08:00
|
|
|
std::copy(ci->attrs.begin(), ci->attrs.end(),
|
|
|
|
std::inserter(packed->attrs, packed->attrs.begin()));
|
2018-06-12 18:13:11 +08:00
|
|
|
packed_cells.insert(ci->name);
|
2018-06-12 18:46:30 +08:00
|
|
|
new_cells.push_back(packed);
|
|
|
|
log_info("packed cell %s into %s\n", ci->name.c_str(),
|
|
|
|
packed->name.c_str());
|
2018-06-12 18:13:11 +08:00
|
|
|
// See if we can pack into a DFF
|
|
|
|
// TODO: LUT cascade
|
|
|
|
NetInfo *o = ci->ports.at("O").net;
|
|
|
|
CellInfo *dff = net_only_drives(o, is_ff, "D", true);
|
2018-06-12 21:13:33 +08:00
|
|
|
auto lut_bel = ci->attrs.find("BEL");
|
|
|
|
bool packed_dff = false;
|
2018-06-12 18:13:11 +08:00
|
|
|
if (dff) {
|
2018-06-12 21:33:53 +08:00
|
|
|
log_info("found attached dff %s\n", dff->name.c_str());
|
2018-06-12 21:13:33 +08:00
|
|
|
auto dff_bel = dff->attrs.find("BEL");
|
|
|
|
if (lut_bel != ci->attrs.end() && dff_bel != dff->attrs.end() &&
|
|
|
|
lut_bel->second != dff_bel->second) {
|
|
|
|
// Locations don't match, can't pack
|
|
|
|
} else {
|
|
|
|
lut_to_lc(ci, packed, false);
|
|
|
|
dff_to_lc(dff, packed, false);
|
|
|
|
design->nets.erase(o->name);
|
|
|
|
if (dff_bel != dff->attrs.end())
|
|
|
|
packed->attrs["BEL"] = dff_bel->second;
|
|
|
|
packed_cells.insert(dff->name);
|
|
|
|
log_info("packed cell %s into %s\n", dff->name.c_str(),
|
|
|
|
packed->name.c_str());
|
|
|
|
packed_dff = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!packed_dff) {
|
2018-06-12 18:13:11 +08:00
|
|
|
lut_to_lc(ci, packed, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto pcell : packed_cells) {
|
|
|
|
design->cells.erase(pcell);
|
|
|
|
}
|
2018-06-12 18:46:30 +08:00
|
|
|
for (auto ncell : new_cells) {
|
|
|
|
design->cells[ncell->name] = ncell;
|
|
|
|
}
|
2018-06-12 18:13:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pack FFs not packed as LUTFFs
|
|
|
|
static void pack_nonlut_ffs(Design *design)
|
|
|
|
{
|
|
|
|
std::unordered_set<IdString> packed_cells;
|
2018-06-12 18:46:30 +08:00
|
|
|
std::vector<CellInfo *> new_cells;
|
|
|
|
|
2018-06-12 18:13:11 +08:00
|
|
|
for (auto cell : design->cells) {
|
|
|
|
CellInfo *ci = cell.second;
|
|
|
|
if (is_ff(ci)) {
|
|
|
|
CellInfo *packed = create_ice_cell(design, "ICESTORM_LC",
|
2018-06-12 21:33:53 +08:00
|
|
|
ci->name.str() + "_DFFLC");
|
2018-06-12 21:13:33 +08:00
|
|
|
std::copy(ci->attrs.begin(), ci->attrs.end(),
|
|
|
|
std::inserter(packed->attrs, packed->attrs.begin()));
|
2018-06-12 21:33:53 +08:00
|
|
|
log_info("packed cell %s into %s\n", ci->name.c_str(),
|
|
|
|
packed->name.c_str());
|
2018-06-12 18:13:11 +08:00
|
|
|
packed_cells.insert(ci->name);
|
2018-06-12 18:46:30 +08:00
|
|
|
new_cells.push_back(packed);
|
2018-06-12 18:13:11 +08:00
|
|
|
dff_to_lc(ci, packed, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto pcell : packed_cells) {
|
|
|
|
design->cells.erase(pcell);
|
|
|
|
}
|
2018-06-12 18:46:30 +08:00
|
|
|
for (auto ncell : new_cells) {
|
|
|
|
design->cells[ncell->name] = ncell;
|
|
|
|
}
|
2018-06-12 18:13:11 +08:00
|
|
|
}
|
|
|
|
|
2018-06-13 20:01:42 +08:00
|
|
|
// Merge a net into a constant net
|
|
|
|
static void set_net_constant(NetInfo *orig, NetInfo *constnet, bool constval)
|
|
|
|
{
|
|
|
|
orig->driver.cell = nullptr;
|
|
|
|
for (auto user : orig->users) {
|
|
|
|
if (user.cell != nullptr) {
|
|
|
|
CellInfo *uc = user.cell;
|
|
|
|
log_info("%s user %s\n", orig->name.c_str(), uc->name.c_str());
|
|
|
|
if (is_lut(uc) && (user.port.str().at(0) == 'I') && !constval) {
|
|
|
|
uc->ports[user.port].net = nullptr;
|
|
|
|
} else {
|
|
|
|
uc->ports[user.port].net = constnet;
|
|
|
|
constnet->users.push_back(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
orig->users.clear();
|
|
|
|
}
|
|
|
|
|
2018-06-12 19:09:36 +08:00
|
|
|
// Pack constants (simple implementation)
|
2018-06-12 19:40:22 +08:00
|
|
|
static void pack_constants(Design *design)
|
|
|
|
{
|
|
|
|
CellInfo *gnd_cell = create_ice_cell(design, "ICESTORM_LC", "$PACKER_GND");
|
2018-06-13 20:01:42 +08:00
|
|
|
gnd_cell->params["LUT_INIT"] = "0";
|
|
|
|
NetInfo *gnd_net = new NetInfo;
|
|
|
|
gnd_net->name = "$PACKER_GND_NET";
|
|
|
|
gnd_net->driver.cell = gnd_cell;
|
|
|
|
gnd_net->driver.port = "O";
|
2018-06-12 19:09:36 +08:00
|
|
|
|
2018-06-12 19:40:22 +08:00
|
|
|
CellInfo *vcc_cell = create_ice_cell(design, "ICESTORM_LC", "$PACKER_VCC");
|
2018-06-13 20:01:42 +08:00
|
|
|
vcc_cell->params["LUT_INIT"] = "1";
|
|
|
|
NetInfo *vcc_net = new NetInfo;
|
|
|
|
vcc_net->name = "$PACKER_VCC_NET";
|
|
|
|
vcc_net->driver.cell = vcc_cell;
|
|
|
|
vcc_net->driver.port = "O";
|
|
|
|
|
|
|
|
std::vector<IdString> dead_nets;
|
2018-06-12 19:09:36 +08:00
|
|
|
|
|
|
|
for (auto net : design->nets) {
|
|
|
|
NetInfo *ni = net.second;
|
|
|
|
if (ni->driver.cell != nullptr && ni->driver.cell->type == "GND") {
|
2018-06-13 20:01:42 +08:00
|
|
|
set_net_constant(ni, gnd_net, false);
|
2018-06-12 19:09:36 +08:00
|
|
|
design->cells[gnd_cell->name] = gnd_cell;
|
2018-06-13 20:01:42 +08:00
|
|
|
design->nets[gnd_net->name] = gnd_net;
|
|
|
|
dead_nets.push_back(net.first);
|
2018-06-12 19:40:22 +08:00
|
|
|
} else if (ni->driver.cell != nullptr &&
|
|
|
|
ni->driver.cell->type == "VCC") {
|
2018-06-13 20:01:42 +08:00
|
|
|
set_net_constant(ni, vcc_net, true);
|
2018-06-12 19:09:36 +08:00
|
|
|
design->cells[vcc_cell->name] = vcc_cell;
|
2018-06-13 20:01:42 +08:00
|
|
|
design->nets[vcc_net->name] = vcc_net;
|
|
|
|
dead_nets.push_back(net.first);
|
2018-06-12 19:09:36 +08:00
|
|
|
}
|
|
|
|
}
|
2018-06-13 20:01:42 +08:00
|
|
|
|
|
|
|
for (auto dn : dead_nets)
|
|
|
|
design->nets.erase(dn);
|
2018-06-12 19:09:36 +08:00
|
|
|
}
|
|
|
|
|
2018-06-13 16:50:05 +08:00
|
|
|
static bool is_nextpnr_iob(CellInfo *cell)
|
|
|
|
{
|
|
|
|
return cell->type == "$nextpnr_ibuf" || cell->type == "$nextpnr_obuf" ||
|
|
|
|
cell->type == "$nextpnr_iobuf";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pack IO buffers
|
|
|
|
static void pack_io(Design *design)
|
|
|
|
{
|
|
|
|
std::unordered_set<IdString> packed_cells;
|
|
|
|
std::vector<CellInfo *> new_cells;
|
|
|
|
|
|
|
|
for (auto cell : design->cells) {
|
|
|
|
CellInfo *ci = cell.second;
|
|
|
|
if (is_nextpnr_iob(ci)) {
|
2018-06-13 17:08:20 +08:00
|
|
|
CellInfo *sb = nullptr;
|
2018-06-13 16:50:05 +08:00
|
|
|
if (ci->type == "$nextpnr_ibuf" || ci->type == "$nextpnr_iobuf") {
|
2018-06-13 17:08:20 +08:00
|
|
|
sb = net_only_drives(ci->ports.at("O").net, is_sb_io,
|
|
|
|
"PACKAGE_PIN", true, ci);
|
|
|
|
|
2018-06-13 16:50:05 +08:00
|
|
|
} else if (ci->type == "$nextpnr_obuf") {
|
2018-06-13 17:08:20 +08:00
|
|
|
sb = net_only_drives(ci->ports.at("I").net, is_sb_io,
|
|
|
|
"PACKAGE_PIN", true, ci);
|
|
|
|
}
|
|
|
|
if (sb != nullptr) {
|
|
|
|
// Trivial case, SB_IO used. Just destroy the net and the
|
|
|
|
// iobuf
|
|
|
|
log_info("%s feeds SB_IO %s, removing %s %s.\n",
|
|
|
|
ci->name.c_str(), sb->name.c_str(), ci->type.c_str(),
|
|
|
|
ci->name.c_str());
|
|
|
|
NetInfo *net = sb->ports.at("PACKAGE_PIN").net;
|
|
|
|
if (net != nullptr) {
|
|
|
|
design->nets.erase(net->name);
|
|
|
|
sb->ports.at("PACKAGE_PIN").net = nullptr;
|
2018-06-13 16:50:05 +08:00
|
|
|
}
|
2018-06-13 17:08:20 +08:00
|
|
|
} else {
|
|
|
|
// Create a SB_IO buffer
|
|
|
|
sb = create_ice_cell(design, "SB_IO");
|
|
|
|
nxio_to_sb(ci, sb);
|
|
|
|
new_cells.push_back(sb);
|
2018-06-13 16:50:05 +08:00
|
|
|
}
|
2018-06-13 17:08:20 +08:00
|
|
|
packed_cells.insert(ci->name);
|
|
|
|
std::copy(ci->attrs.begin(), ci->attrs.end(),
|
|
|
|
std::inserter(sb->attrs, sb->attrs.begin()));
|
2018-06-13 16:50:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto pcell : packed_cells) {
|
|
|
|
design->cells.erase(pcell);
|
|
|
|
}
|
|
|
|
for (auto ncell : new_cells) {
|
|
|
|
design->cells[ncell->name] = ncell;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-12 18:13:11 +08:00
|
|
|
// Main pack function
|
|
|
|
void pack_design(Design *design)
|
|
|
|
{
|
2018-06-12 19:09:36 +08:00
|
|
|
pack_constants(design);
|
2018-06-13 16:50:05 +08:00
|
|
|
pack_io(design);
|
2018-06-12 18:13:11 +08:00
|
|
|
pack_lut_lutffs(design);
|
|
|
|
pack_nonlut_ffs(design);
|
|
|
|
}
|
2018-06-12 20:31:26 +08:00
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_END
|