Skip to content

Commit

Permalink
HCLK. Add delays
Browse files Browse the repository at this point in the history
Optimistic delays for now, pending future revision.

Signed-off-by: YRabbit <[email protected]>
  • Loading branch information
yrabbit committed Sep 11, 2024
1 parent 0964a8d commit af2975e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions apycula/chipdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3576,6 +3576,8 @@ def fse_wire_delays(db):
db.wire_delay[clknames[i]] = "CENT_SPINE_PCLK"
for i in range(129, 153): # clock inputs (logic->clock)
db.wire_delay[clknames[i]] = "CENT_SPINE_PCLK"
for i in range(1000, 1010): # HCLK
db.wire_delay[clknames[i]] = "X0" # XXX

# assign pads with plls
# for now use static table and store the bel name although it is always PLL without a number
Expand Down
2 changes: 1 addition & 1 deletion apycula/gowin_pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -2022,7 +2022,7 @@ def set_fuse():
if side == 'L':
col = 0
else:
col = db.col - 1
col = db.cols - 1
for row in range(db.rows):
set_fuse()

Expand Down

0 comments on commit af2975e

Please sign in to comment.