2023-04-21 01:49:36 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
|
|
|
* Copyright (C) 2023 gatecat <gatecat@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 "himbaechel_api.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "nextpnr.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#include "himbaechel_helpers.h"
|
|
|
|
|
|
|
|
#define GEN_INIT_CONSTIDS
|
|
|
|
#define HIMBAECHEL_CONSTIDS "uarch/example/constids.inc"
|
|
|
|
#include "himbaechel_constids.h"
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct ExampleImpl : HimbaechelAPI
|
|
|
|
{
|
|
|
|
|
|
|
|
static constexpr int K = 4;
|
|
|
|
|
|
|
|
~ExampleImpl(){};
|
2023-09-12 23:29:26 +08:00
|
|
|
void init_database(Arch *arch) override
|
|
|
|
{
|
|
|
|
init_uarch_constids(arch);
|
2024-02-29 16:15:55 +08:00
|
|
|
arch->load_chipdb("example/chipdb-example.bin");
|
2023-09-12 23:29:26 +08:00
|
|
|
arch->set_speed_grade("DEFAULT");
|
|
|
|
}
|
|
|
|
|
2023-04-21 01:49:36 +08:00
|
|
|
void init(Context *ctx) override
|
|
|
|
{
|
|
|
|
h.init(ctx);
|
|
|
|
HimbaechelAPI::init(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void prePlace() override { assign_cell_info(); }
|
|
|
|
|
|
|
|
void pack() override
|
|
|
|
{
|
|
|
|
// Trim nextpnr IOBs - assume IO buffer insertion has been done in synthesis
|
|
|
|
const pool<CellTypePort> top_ports{
|
|
|
|
CellTypePort(id_INBUF, id_PAD),
|
|
|
|
CellTypePort(id_OUTBUF, id_PAD),
|
|
|
|
};
|
|
|
|
h.remove_nextpnr_iobs(top_ports);
|
|
|
|
// Replace constants with LUTs
|
|
|
|
const dict<IdString, Property> vcc_params = {{id_INIT, Property(0xFFFF, 16)}};
|
|
|
|
const dict<IdString, Property> gnd_params = {{id_INIT, Property(0x0000, 16)}};
|
2023-10-28 23:09:37 +08:00
|
|
|
h.replace_constants(CellTypePort(id_VCC_DRV, id_VCC), CellTypePort(id_GND_DRV, id_GND), {}, {}, id_VCC, id_GND);
|
2023-04-21 01:49:36 +08:00
|
|
|
// Constrain directly connected LUTs and FFs together to use dedicated resources
|
|
|
|
int lutffs = h.constrain_cell_pairs(pool<CellTypePort>{{id_LUT4, id_F}}, pool<CellTypePort>{{id_DFF, id_D}}, 1);
|
|
|
|
log_info("Constrained %d LUTFF pairs.\n", lutffs);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isBelLocationValid(BelId bel, bool explain_invalid) const override
|
|
|
|
{
|
|
|
|
Loc l = ctx->getBelLocation(bel);
|
|
|
|
if (ctx->getBelType(bel).in(id_LUT4, id_DFF)) {
|
|
|
|
return slice_valid(l.x, l.y, l.z / 2);
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bel bucket functions
|
|
|
|
IdString getBelBucketForCellType(IdString cell_type) const override
|
|
|
|
{
|
|
|
|
if (cell_type.in(id_INBUF, id_OUTBUF))
|
|
|
|
return id_IOB;
|
|
|
|
return cell_type;
|
|
|
|
}
|
|
|
|
bool isValidBelForCellType(IdString cell_type, BelId bel) const override
|
|
|
|
{
|
|
|
|
IdString bel_type = ctx->getBelType(bel);
|
|
|
|
if (bel_type == id_IOB)
|
|
|
|
return cell_type.in(id_INBUF, id_OUTBUF);
|
|
|
|
else
|
|
|
|
return (bel_type == cell_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
HimbaechelHelpers h;
|
|
|
|
|
|
|
|
// Validity checking
|
|
|
|
struct ExampleCellInfo
|
|
|
|
{
|
|
|
|
const NetInfo *lut_f = nullptr, *ff_d = nullptr;
|
|
|
|
bool lut_i3_used = false;
|
|
|
|
};
|
|
|
|
std::vector<ExampleCellInfo> fast_cell_info;
|
|
|
|
void assign_cell_info()
|
|
|
|
{
|
|
|
|
fast_cell_info.resize(ctx->cells.size());
|
|
|
|
for (auto &cell : ctx->cells) {
|
|
|
|
CellInfo *ci = cell.second.get();
|
|
|
|
auto &fc = fast_cell_info.at(ci->flat_index);
|
|
|
|
if (ci->type == id_LUT4) {
|
|
|
|
fc.lut_f = ci->getPort(id_F);
|
|
|
|
fc.lut_i3_used = (ci->getPort(ctx->idf("I[%d]", K - 1)) != nullptr);
|
|
|
|
} else if (ci->type == id_DFF) {
|
|
|
|
fc.ff_d = ci->getPort(id_D);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool slice_valid(int x, int y, int z) const
|
|
|
|
{
|
|
|
|
const CellInfo *lut = ctx->getBoundBelCell(ctx->getBelByLocation(Loc(x, y, z * 2)));
|
|
|
|
const CellInfo *ff = ctx->getBoundBelCell(ctx->getBelByLocation(Loc(x, y, z * 2 + 1)));
|
|
|
|
if (!lut || !ff)
|
|
|
|
return true; // always valid if only LUT or FF used
|
|
|
|
const auto &lut_data = fast_cell_info.at(lut->flat_index);
|
|
|
|
const auto &ff_data = fast_cell_info.at(ff->flat_index);
|
|
|
|
// In our example arch; the FF D can either be driven from LUT F or LUT I3
|
|
|
|
// so either; FF D must equal LUT F or LUT I3 must be unused
|
|
|
|
if (ff_data.ff_d == lut_data.lut_f)
|
|
|
|
return true;
|
|
|
|
if (lut_data.lut_i3_used)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ExampleArch : HimbaechelArch
|
|
|
|
{
|
|
|
|
ExampleArch() : HimbaechelArch("example"){};
|
2023-09-12 23:29:26 +08:00
|
|
|
bool match_device(const std::string &device) override { return device == "EXAMPLE"; }
|
|
|
|
std::unique_ptr<HimbaechelAPI> create(const std::string &device, const dict<std::string, std::string> &args)
|
2023-04-21 01:49:36 +08:00
|
|
|
{
|
|
|
|
return std::make_unique<ExampleImpl>();
|
|
|
|
}
|
|
|
|
} exampleArch;
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_END
|