2021-02-11 19:10:32 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018-19 David Shah <david@symbioticeda.com>
|
2021-01-31 07:06:55 +08:00
|
|
|
* Copyright (C) 2021 William D. Jones <wjones@wdj-consulting.com>
|
2021-02-11 19:10:32 +08:00
|
|
|
*
|
|
|
|
* 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 <iterator>
|
|
|
|
#include "cells.h"
|
|
|
|
#include "design_utils.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
2020-11-26 18:01:14 +08:00
|
|
|
// Pack LUTs and LUT-FF pairs
|
|
|
|
static void pack_lut_lutffs(Context *ctx)
|
|
|
|
{
|
|
|
|
log_info("Packing LUT-FFs..\n");
|
|
|
|
|
2021-06-02 17:01:36 +08:00
|
|
|
pool<IdString> packed_cells;
|
2020-11-26 18:01:14 +08:00
|
|
|
std::vector<std::unique_ptr<CellInfo>> new_cells;
|
2021-06-01 23:51:18 +08:00
|
|
|
for (auto &cell : ctx->cells) {
|
|
|
|
CellInfo *ci = cell.second.get();
|
2020-11-26 18:01:14 +08:00
|
|
|
if (ctx->verbose)
|
|
|
|
log_info("cell '%s' is of type '%s'\n", ci->name.c_str(ctx), ci->type.c_str(ctx));
|
|
|
|
if (is_lut(ctx, ci)) {
|
2020-12-08 07:56:27 +08:00
|
|
|
std::unique_ptr<CellInfo> packed = create_machxo2_cell(ctx, id_FACADE_SLICE, ci->name.str(ctx) + "_LC");
|
2021-06-01 23:51:18 +08:00
|
|
|
for (auto &attr : ci->attrs)
|
|
|
|
packed->attrs[attr.first] = attr.second;
|
2020-11-26 18:01:14 +08:00
|
|
|
|
|
|
|
packed_cells.insert(ci->name);
|
|
|
|
if (ctx->verbose)
|
|
|
|
log_info("packed cell %s into %s\n", ci->name.c_str(ctx), packed->name.c_str(ctx));
|
|
|
|
// See if we can pack into a DFF. Both LUT4 and FF outputs are
|
|
|
|
// available for a given slice, so we can pack a FF even if the
|
|
|
|
// LUT4 drives more than one FF.
|
2020-12-05 07:19:31 +08:00
|
|
|
NetInfo *o = ci->ports.at(id_Z).net;
|
|
|
|
CellInfo *dff = net_only_drives(ctx, o, is_ff, id_DI, false);
|
2020-11-26 18:01:14 +08:00
|
|
|
auto lut_bel = ci->attrs.find(ctx->id("BEL"));
|
|
|
|
bool packed_dff = false;
|
|
|
|
|
|
|
|
if (dff) {
|
|
|
|
if (ctx->verbose)
|
|
|
|
log_info("found attached dff %s\n", dff->name.c_str(ctx));
|
|
|
|
auto dff_bel = dff->attrs.find(ctx->id("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(ctx, ci, packed.get(), false);
|
|
|
|
dff_to_lc(ctx, dff, packed.get(), false);
|
|
|
|
if (dff_bel != dff->attrs.end())
|
|
|
|
packed->attrs[ctx->id("BEL")] = dff_bel->second;
|
|
|
|
packed_cells.insert(dff->name);
|
|
|
|
if (ctx->verbose)
|
|
|
|
log_info("packed cell %s into %s\n", dff->name.c_str(ctx), packed->name.c_str(ctx));
|
|
|
|
packed_dff = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!packed_dff) {
|
|
|
|
lut_to_lc(ctx, ci, packed.get(), true);
|
|
|
|
}
|
|
|
|
new_cells.push_back(std::move(packed));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto pcell : packed_cells) {
|
|
|
|
ctx->cells.erase(pcell);
|
|
|
|
}
|
|
|
|
for (auto &ncell : new_cells) {
|
|
|
|
ctx->cells[ncell->name] = std::move(ncell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-02 16:37:28 +08:00
|
|
|
static void pack_remaining_ffs(Context *ctx)
|
|
|
|
{
|
|
|
|
log_info("Packing remaining FFs..\n");
|
|
|
|
|
2021-06-02 17:01:36 +08:00
|
|
|
pool<IdString> packed_cells;
|
2021-02-02 16:37:28 +08:00
|
|
|
std::vector<std::unique_ptr<CellInfo>> new_cells;
|
|
|
|
|
2021-06-01 23:51:18 +08:00
|
|
|
for (auto &cell : ctx->cells) {
|
|
|
|
CellInfo *ci = cell.second.get();
|
2021-02-02 16:37:28 +08:00
|
|
|
|
|
|
|
if (is_ff(ctx, ci)) {
|
|
|
|
if (ctx->verbose)
|
|
|
|
log_info("cell '%s' of type '%s remains unpacked'\n", ci->name.c_str(ctx), ci->type.c_str(ctx));
|
|
|
|
|
|
|
|
std::unique_ptr<CellInfo> packed = create_machxo2_cell(ctx, id_FACADE_SLICE, ci->name.str(ctx) + "_LC");
|
2021-06-01 23:51:18 +08:00
|
|
|
for (auto &attr : ci->attrs)
|
|
|
|
packed->attrs[attr.first] = attr.second;
|
2021-02-02 16:37:28 +08:00
|
|
|
|
|
|
|
auto dff_bel = ci->attrs.find(ctx->id("BEL"));
|
|
|
|
dff_to_lc(ctx, ci, packed.get(), false);
|
|
|
|
if (dff_bel != ci->attrs.end())
|
|
|
|
packed->attrs[ctx->id("BEL")] = dff_bel->second;
|
|
|
|
packed_cells.insert(ci->name);
|
|
|
|
if (ctx->verbose)
|
|
|
|
log_info("packed cell %s into %s\n", ci->name.c_str(ctx), packed->name.c_str(ctx));
|
|
|
|
|
|
|
|
new_cells.push_back(std::move(packed));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto pcell : packed_cells) {
|
|
|
|
ctx->cells.erase(pcell);
|
|
|
|
}
|
|
|
|
for (auto &ncell : new_cells) {
|
|
|
|
ctx->cells[ncell->name] = std::move(ncell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:56:41 +08:00
|
|
|
// Merge a net into a constant net
|
2021-02-02 22:55:42 +08:00
|
|
|
static void set_net_constant(Context *ctx, NetInfo *orig, NetInfo *constnet, bool constval)
|
2020-11-24 05:56:41 +08:00
|
|
|
{
|
2020-12-08 07:56:27 +08:00
|
|
|
(void)constval;
|
2020-11-24 05:56:41 +08:00
|
|
|
|
2021-06-02 17:01:36 +08:00
|
|
|
pool<IdString> packed_cells;
|
2021-02-02 22:55:42 +08:00
|
|
|
std::vector<std::unique_ptr<CellInfo>> new_cells;
|
|
|
|
|
2020-11-24 05:56:41 +08:00
|
|
|
orig->driver.cell = nullptr;
|
|
|
|
for (auto user : orig->users) {
|
|
|
|
if (user.cell != nullptr) {
|
|
|
|
CellInfo *uc = user.cell;
|
|
|
|
if (ctx->verbose)
|
|
|
|
log_info("%s user %s\n", orig->name.c_str(ctx), uc->name.c_str(ctx));
|
|
|
|
|
2021-02-11 19:34:08 +08:00
|
|
|
if (uc->type == id_FACADE_FF && user.port == id_DI) {
|
2021-02-02 22:55:42 +08:00
|
|
|
log_info("FACADE_FF %s is driven by a constant\n", uc->name.c_str(ctx));
|
|
|
|
|
|
|
|
std::unique_ptr<CellInfo> lc = create_machxo2_cell(ctx, id_FACADE_SLICE, uc->name.str(ctx) + "_CONST");
|
2021-06-01 23:51:18 +08:00
|
|
|
for (auto &attr : uc->attrs)
|
|
|
|
lc->attrs[attr.first] = attr.second;
|
2021-02-08 11:06:23 +08:00
|
|
|
|
2021-02-02 22:55:42 +08:00
|
|
|
dff_to_lc(ctx, uc, lc.get(), true);
|
|
|
|
packed_cells.insert(uc->name);
|
|
|
|
|
|
|
|
lc->ports[id_A0].net = constnet;
|
|
|
|
user.cell = lc.get();
|
|
|
|
user.port = id_A0;
|
|
|
|
|
|
|
|
new_cells.push_back(std::move(lc));
|
|
|
|
} else {
|
|
|
|
uc->ports[user.port].net = constnet;
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:56:41 +08:00
|
|
|
constnet->users.push_back(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
orig->users.clear();
|
2021-02-02 22:55:42 +08:00
|
|
|
|
|
|
|
for (auto pcell : packed_cells) {
|
|
|
|
ctx->cells.erase(pcell);
|
|
|
|
}
|
|
|
|
for (auto &ncell : new_cells) {
|
|
|
|
ctx->cells[ncell->name] = std::move(ncell);
|
|
|
|
}
|
2020-11-24 05:56:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pack constants (based on simple implementation in generic).
|
|
|
|
// VCC/GND cells provided by nextpnr automatically.
|
|
|
|
static void pack_constants(Context *ctx)
|
|
|
|
{
|
|
|
|
log_info("Packing constants..\n");
|
|
|
|
|
|
|
|
std::unique_ptr<CellInfo> const_cell = create_machxo2_cell(ctx, id_FACADE_SLICE, "$PACKER_CONST");
|
|
|
|
const_cell->params[id_LUT0_INITVAL] = Property(0, 16);
|
|
|
|
const_cell->params[id_LUT1_INITVAL] = Property(0xFFFF, 16);
|
|
|
|
|
|
|
|
std::unique_ptr<NetInfo> gnd_net = std::unique_ptr<NetInfo>(new NetInfo);
|
|
|
|
gnd_net->name = ctx->id("$PACKER_GND_NET");
|
|
|
|
gnd_net->driver.cell = const_cell.get();
|
|
|
|
gnd_net->driver.port = id_F0;
|
|
|
|
const_cell->ports.at(id_F0).net = gnd_net.get();
|
|
|
|
|
|
|
|
std::unique_ptr<NetInfo> vcc_net = std::unique_ptr<NetInfo>(new NetInfo);
|
|
|
|
vcc_net->name = ctx->id("$PACKER_VCC_NET");
|
|
|
|
vcc_net->driver.cell = const_cell.get();
|
|
|
|
vcc_net->driver.port = id_F1;
|
|
|
|
const_cell->ports.at(id_F1).net = vcc_net.get();
|
|
|
|
|
|
|
|
std::vector<IdString> dead_nets;
|
|
|
|
|
2021-06-01 23:51:18 +08:00
|
|
|
for (auto &net : ctx->nets) {
|
|
|
|
NetInfo *ni = net.second.get();
|
2020-11-24 05:56:41 +08:00
|
|
|
if (ni->driver.cell != nullptr && ni->driver.cell->type == ctx->id("GND")) {
|
|
|
|
IdString drv_cell = ni->driver.cell->name;
|
|
|
|
set_net_constant(ctx, ni, gnd_net.get(), false);
|
|
|
|
dead_nets.push_back(net.first);
|
|
|
|
ctx->cells.erase(drv_cell);
|
|
|
|
} else if (ni->driver.cell != nullptr && ni->driver.cell->type == ctx->id("VCC")) {
|
|
|
|
IdString drv_cell = ni->driver.cell->name;
|
|
|
|
set_net_constant(ctx, ni, vcc_net.get(), true);
|
|
|
|
dead_nets.push_back(net.first);
|
|
|
|
ctx->cells.erase(drv_cell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->cells[const_cell->name] = std::move(const_cell);
|
|
|
|
ctx->nets[gnd_net->name] = std::move(gnd_net);
|
|
|
|
ctx->nets[vcc_net->name] = std::move(vcc_net);
|
|
|
|
|
|
|
|
for (auto dn : dead_nets) {
|
|
|
|
ctx->nets.erase(dn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-24 11:17:47 +08:00
|
|
|
static bool is_nextpnr_iob(Context *ctx, CellInfo *cell)
|
|
|
|
{
|
|
|
|
return cell->type == ctx->id("$nextpnr_ibuf") || cell->type == ctx->id("$nextpnr_obuf") ||
|
|
|
|
cell->type == ctx->id("$nextpnr_iobuf");
|
|
|
|
}
|
|
|
|
|
2020-12-05 07:19:31 +08:00
|
|
|
static bool is_facade_iob(const Context *ctx, const CellInfo *cell) { return cell->type == id_FACADE_IO; }
|
2020-11-24 11:17:47 +08:00
|
|
|
|
|
|
|
// Pack IO buffers- Right now, all this does is remove $nextpnr_[io]buf cells.
|
|
|
|
// User is expected to manually instantiate FACADE_IO with BEL/IO_TYPE
|
|
|
|
// attributes.
|
|
|
|
static void pack_io(Context *ctx)
|
|
|
|
{
|
2021-06-02 17:01:36 +08:00
|
|
|
pool<IdString> packed_cells;
|
2020-11-24 11:17:47 +08:00
|
|
|
|
|
|
|
log_info("Packing IOs..\n");
|
|
|
|
|
2021-06-01 23:51:18 +08:00
|
|
|
for (auto &cell : ctx->cells) {
|
|
|
|
CellInfo *ci = cell.second.get();
|
2020-11-24 11:17:47 +08:00
|
|
|
if (is_nextpnr_iob(ctx, ci)) {
|
|
|
|
for (auto &p : ci->ports)
|
|
|
|
disconnect_port(ctx, ci, p.first);
|
|
|
|
packed_cells.insert(ci->name);
|
2021-02-01 08:27:32 +08:00
|
|
|
} else if (is_facade_iob(ctx, ci)) {
|
2020-12-13 11:05:39 +08:00
|
|
|
// If FACADE_IO has LOC attribute, convert the LOC (pin) to a BEL
|
|
|
|
// attribute and place FACADE_IO at resulting BEL location. A BEL
|
|
|
|
// attribute already on a FACADE_IO is an error. Attributes on
|
|
|
|
// the pin attached to the PAD of FACADE_IO are ignored by this
|
|
|
|
// packing phase.
|
2020-12-08 14:42:58 +08:00
|
|
|
auto loc_attr_cell = ci->attrs.find(ctx->id("LOC"));
|
|
|
|
auto bel_attr_cell = ci->attrs.find(ctx->id("BEL"));
|
|
|
|
|
2021-02-01 08:27:32 +08:00
|
|
|
if (loc_attr_cell != ci->attrs.end()) {
|
2020-12-13 11:05:39 +08:00
|
|
|
if (bel_attr_cell != ci->attrs.end()) {
|
2021-02-01 08:27:32 +08:00
|
|
|
log_error("IO buffer %s has both a BEL attribute and LOC attribute.\n", ci->name.c_str(ctx));
|
2020-12-13 11:05:39 +08:00
|
|
|
}
|
|
|
|
|
2020-12-08 14:42:58 +08:00
|
|
|
log_info("found LOC attribute on IO buffer %s.\n", ci->name.c_str(ctx));
|
2020-12-13 11:05:39 +08:00
|
|
|
std::string pin = loc_attr_cell->second.as_string();
|
|
|
|
|
|
|
|
BelId pinBel = ctx->getPackagePinBel(pin);
|
|
|
|
if (pinBel == BelId()) {
|
|
|
|
log_error("IO buffer '%s' constrained to pin '%s', which does not exist for package '%s'.\n",
|
|
|
|
ci->name.c_str(ctx), pin.c_str(), ctx->args.package.c_str());
|
|
|
|
} else {
|
2021-02-11 19:34:08 +08:00
|
|
|
log_info("pin '%s' constrained to Bel '%s'.\n", ci->name.c_str(ctx), ctx->nameOfBel(pinBel));
|
2020-12-13 11:05:39 +08:00
|
|
|
}
|
|
|
|
ci->attrs[ctx->id("BEL")] = ctx->getBelName(pinBel).str(ctx);
|
2020-12-08 14:42:58 +08:00
|
|
|
}
|
2020-11-24 11:17:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto pcell : packed_cells) {
|
|
|
|
ctx->cells.erase(pcell);
|
|
|
|
}
|
|
|
|
}
|
2020-11-24 05:56:41 +08:00
|
|
|
|
2021-02-11 19:10:32 +08:00
|
|
|
// Main pack function
|
|
|
|
bool Arch::pack()
|
|
|
|
{
|
|
|
|
Context *ctx = getCtx();
|
|
|
|
try {
|
|
|
|
log_break();
|
2020-11-24 05:56:41 +08:00
|
|
|
pack_constants(ctx);
|
2020-11-24 11:17:47 +08:00
|
|
|
pack_io(ctx);
|
2020-11-26 18:01:14 +08:00
|
|
|
pack_lut_lutffs(ctx);
|
2021-02-02 16:37:28 +08:00
|
|
|
pack_remaining_ffs(ctx);
|
2021-02-11 19:10:32 +08:00
|
|
|
ctx->settings[ctx->id("pack")] = 1;
|
|
|
|
ctx->assignArchInfo();
|
|
|
|
log_info("Checksum: 0x%08x\n", ctx->checksum());
|
|
|
|
return true;
|
|
|
|
} catch (log_execution_error_exception) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_END
|