diff options
author | David Shah <davey1576@gmail.com> | 2018-08-04 08:28:13 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-08-04 08:28:13 +0200 |
commit | affc6da1af7afccba1da8cdf3b9e57a01b1fb5e5 (patch) | |
tree | c2dd9fff4b64bc90e9ad6505bf526189c9595531 | |
parent | 80e6b17ec9da25ff089a626b2fb5043876814307 (diff) | |
download | nextpnr-affc6da1af7afccba1da8cdf3b9e57a01b1fb5e5.tar.gz nextpnr-affc6da1af7afccba1da8cdf3b9e57a01b1fb5e5.tar.bz2 nextpnr-affc6da1af7afccba1da8cdf3b9e57a01b1fb5e5.zip |
ice40: Add SB_GB timing to database
Signed-off-by: David Shah <davey1576@gmail.com>
-rw-r--r-- | ice40/chipdb.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ice40/chipdb.py b/ice40/chipdb.py index a0d7f03c..d782013f 100644 --- a/ice40/chipdb.py +++ b/ice40/chipdb.py @@ -716,7 +716,9 @@ tmport_to_portpin = { "WCLKE": "WCLKE", "WE": "WE", "posedge:CLOCK": "CLOCK", - "posedge:SLEEP": "SLEEP" + "posedge:SLEEP": "SLEEP", + "USERSIGNALTOGLOBALBUFFER": "USER_SIGNAL_TO_GLOBAL_BUFFER", + "GLOBALBUFFEROUTPUT": "GLOBAL_BUFFER_OUTPUT" } for i in range(16): @@ -744,6 +746,8 @@ def add_cell_timingdata(bel_type, timing_cell, fast_db, slow_db): cell_timings[bel_type] = timing_entries add_cell_timingdata("ICESTORM_LC", "LogicCell40", fast_timings, slow_timings) +add_cell_timingdata("SB_GB", "ICE_GB", fast_timings, slow_timings) + if dev_name != "384": add_cell_timingdata("ICESTORM_RAM", "SB_RAM40_4K", fast_timings, slow_timings) if dev_name == "5k": |