Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DHCEN primitive. #261

Merged
merged 9 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
HCLK. Add delays
Optimistic delays for now, pending future revision.

Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
  • Loading branch information
yrabbit committed Sep 11, 2024
commit af2975e67057763e3e0905e92614c9d13266a252
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
Loading