nextpnr/himbaechel/uarch/ng-ultra/ng_ultra.h

111 lines
3.6 KiB
C
Raw Normal View History

2024-05-03 16:30:31 +08:00
/*
* nextpnr -- Next Generation Place and Route
*
2024-09-24 18:31:10 +08:00
* NG-Ultra Architecture Implementation
2024-05-03 16:30:31 +08:00
*
2024-09-24 18:31:10 +08:00
* Copyright (C) 2024 YosysHQ GmbH
2024-05-03 16:30:31 +08:00
*
*/
#ifndef HIMBAECHEL_NG_ULTRA_H
#define HIMBAECHEL_NG_ULTRA_H
#include <deque>
#include "extra_data.h"
#include "himbaechel_api.h"
#include "log.h"
#include "nextpnr.h"
#include "util.h"
#include "himbaechel_helpers.h"
2024-07-08 15:10:32 +08:00
#ifdef GTEST_API_
#define TESTABLE_PRIVATE public
#else
#define TESTABLE_PRIVATE private
#endif
2024-05-03 16:30:31 +08:00
NEXTPNR_NAMESPACE_BEGIN
struct NgUltraImpl : HimbaechelAPI
{
~NgUltraImpl();
void init_database(Arch *arch) override;
void init(Context *ctx) override;
bool isBelLocationValid(BelId bel, bool explain_invalid = false) const override;
IdString getBelBucketForCellType(IdString cell_type) const override;
bool isValidBelForCellType(IdString cell_type, BelId bel) const override;
2024-09-12 15:29:13 +08:00
BelBucketId getBelBucketForBel(BelId bel) const override;
2024-05-03 16:30:31 +08:00
// Flow management
void pack() override;
2024-06-17 16:05:25 +08:00
void postPlace() override;
2024-05-03 16:30:31 +08:00
void postRoute() override;
void configurePlacerHeap(PlacerHeapCfg &cfg) override;
bool getClusterPlacement(ClusterId cluster, BelId root_bel,
std::vector<std::pair<CellInfo *, BelId>> &placement) const override;
bool getChildPlacement(const BaseClusterInfo *cluster, Loc root_loc,
std::vector<std::pair<CellInfo *, BelId>> &placement) const;
BoundingBox getRouteBoundingBox(WireId src, WireId dst) const override;
delay_t estimateDelay(WireId src, WireId dst) const override;
delay_t predictDelay(BelId src_bel, IdString src_pin, BelId dst_bel, IdString dst_pin) const override;
bool checkPipAvail(PipId pip) const override { return blocked_pips.count(pip)==0; }
bool checkPipAvailForNet(PipId pip, const NetInfo *net) const override { return checkPipAvail(pip); };
2024-07-01 20:16:25 +08:00
2024-11-27 16:53:25 +08:00
void expandBoundingBox(BoundingBox &bb) const override;
2024-11-23 00:42:50 +08:00
void drawBel(std::vector<GraphicElement> &g, GraphicElement::style_t style, IdString bel_type, Loc loc) override;
2024-05-03 16:30:31 +08:00
public:
2024-07-01 20:16:25 +08:00
int tile_lobe(int tile) const;
TileTypeExtra tile_type(int tile) const;
2024-05-03 16:30:31 +08:00
IdString tile_name_id(int tile) const;
std::string tile_name(int tile) const;
2024-08-22 15:41:11 +08:00
const dict<IdString,pool<IdString>>& get_fabric_lowskew_sinks();
2024-08-13 21:17:38 +08:00
bool is_fabric_lowskew_sink(const PortRef &ref);
2024-07-01 20:16:25 +08:00
bool is_ring_clock_sink(const PortRef &ref);
2024-07-03 16:41:12 +08:00
bool is_ring_over_tile_clock_sink(const PortRef &ref);
2024-07-01 20:16:25 +08:00
bool is_tube_clock_sink(const PortRef &ref);
bool is_ring_clock_source(const PortRef &ref);
bool is_tube_clock_source(const PortRef &ref);
2024-05-03 16:30:31 +08:00
dict<IdString,BelId> iom_bels;
dict<std::string, std::string> bank_voltage;
2024-05-10 00:41:21 +08:00
dict<BelId,IdString> global_capable_bels;
2024-06-12 16:23:31 +08:00
dict<std::string,BelId> locations;
2024-08-21 22:32:35 +08:00
dict<std::string,Loc> tile_locations;
2024-06-27 16:40:13 +08:00
dict<int,std::vector<GckConfig>> gck_per_lobe;
2024-05-03 16:30:31 +08:00
pool<PipId> blocked_pips;
2024-06-20 16:06:05 +08:00
dict<IdString, std::pair<IdString,IdString>> bank_to_ckg;
dict<BelId, IdString> unused_wfg;
dict<BelId, IdString> unused_pll;
2024-06-20 21:39:32 +08:00
dict<BelId, BelId> dsp_cascade;
2024-07-08 15:10:32 +08:00
TESTABLE_PRIVATE:
2024-05-03 16:30:31 +08:00
void write_bitstream_json(const std::string &filename);
void parse_csv(const std::string &filename);
2024-06-18 17:32:41 +08:00
void remove_constants();
2024-07-10 18:18:50 +08:00
bool update_bff_to_csc(CellInfo *cell, BelId bel, PipId dst_pip);
bool update_bff_to_scc(CellInfo *cell, BelId bel, PipId dst_pip);
void disable_beyond_fe_s_output(BelId bel);
2024-05-03 16:30:31 +08:00
void fixup_crossbars();
2024-05-03 16:30:31 +08:00
// Misc utility functions
bool get_mux_data(BelId bel, IdString port, uint8_t *value);
bool get_mux_data(WireId wire, uint8_t *value);
const NGUltraTileInstExtraDataPOD *tile_extra_data(int tile) const;
};
NEXTPNR_NAMESPACE_END
#endif