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 delays for primary clocks. #270

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
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
19 changes: 15 additions & 4 deletions apycula/chipdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3346,10 +3346,10 @@ def fse_wire_delays(db):
db.wire_delay[wirenames[288]] = "LW_BRANCH" # LTBO1
db.wire_delay[wirenames[289]] = "LW_SPAN" # SS00
db.wire_delay[wirenames[290]] = "LW_SPAN" # SS40
db.wire_delay[wirenames[291]] = "GCLK_TAP" # GT00
db.wire_delay[wirenames[292]] = "GCLK_TAP" # GT10
db.wire_delay[wirenames[293]] = "GCLK_BRANCH" # GBO0
db.wire_delay[wirenames[294]] = "GCLK_BRANCH" # GBO1
db.wire_delay[wirenames[291]] = "TAP_BRANCH_PCLK" # GT00
db.wire_delay[wirenames[292]] = "TAP_BRANCH_PCLK" # GT10
db.wire_delay[wirenames[293]] = "BRANCH_PCLK" # GBO0
db.wire_delay[wirenames[294]] = "BRANCH_PCLK" # GBO1
for i in range(295, 303): # DI0-DI7
db.wire_delay[wirenames[i]] = "DI"
for i in range(303, 309): # CIN0-CIN5
Expand All @@ -3358,6 +3358,17 @@ def fse_wire_delays(db):
db.wire_delay[wirenames[i]] = "COUT"
for i in range(1001, 1049): # LWSPINE
db.wire_delay[wirenames[i]] = "X8"
# clock wires
for i in range(261):
db.wire_delay[clknames[i]] = "X0" # XXX
for i in range(32):
db.wire_delay[clknames[i]] = "SPINE_TAP_PCLK"
for i in range(81, 105): # clock inputs (PLL outs)
db.wire_delay[clknames[i]] = "CENT_SPINE_PCLK"
for i in range(121, 129): # clock inputs (pins)
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"

# assign pads with plls
# for now use static table and store the bel name although it is always PLL without a number
Expand Down
Loading