Skip to content

Commit

Permalink
align to schema overhaul
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Jul 5, 2024
1 parent 42dbd4b commit 8e5a5e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
3 changes: 1 addition & 2 deletions lambdapdk/freepdk45/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ def setup(chip):
pdk.set('pdk', process, 'stackup', stackup)
pdk.set('pdk', process, 'wafersize', wafersize)
pdk.set('pdk', process, 'edgemargin', edgemargin)
pdk.set('pdk', process, 'hscribe', hscribe)
pdk.set('pdk', process, 'vscribe', vscribe)
pdk.set('pdk', process, 'scribe', (hscribe, vscribe))
pdk.set('pdk', process, 'd0', d0)

# APR Setup
Expand Down
4 changes: 1 addition & 3 deletions lambdapdk/gf180/libs/gf180mcu.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,11 @@ def setup(chip):
for size in (1, 2, 3, 4, 8, 12, 16, 20):
lib.add('asic', 'cells', 'clkbuf', f'gf180mcu_fd_sc_mcu{libtype}5v0__clkbuf_{size}')

# hold / delay cells
# hold cells
for variant in ('a', 'b', 'c', 'd'):
for size in (1, 2, 4):
lib.add('asic', 'cells', 'hold',
f'gf180mcu_fd_sc_mcu{libtype}5v0__dly{variant}_{size}')
lib.add('asic', 'cells', 'delay',
f'gf180mcu_fd_sc_mcu{libtype}5v0__dly{variant}_{size}')

# Decoupling
for size in (4, 8, 16, 32, 64):
Expand Down
3 changes: 1 addition & 2 deletions lambdapdk/sky130/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ def setup(chip):
pdk.set('pdk', process, 'stackup', stackup)
pdk.set('pdk', process, 'wafersize', wafersize)
pdk.set('pdk', process, 'edgemargin', edgemargin)
pdk.set('pdk', process, 'hscribe', hscribe)
pdk.set('pdk', process, 'vscribe', vscribe)
pdk.set('pdk', process, 'scribe', (hscribe, vscribe))

# APR Setup
# TODO: remove libtype
Expand Down

0 comments on commit 8e5a5e0

Please sign in to comment.