-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update tt-multiplexer / openlane2 / IHP PDK
adds power connections, seal ring, etc
- Loading branch information
Showing
5 changed files
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,22 @@ jobs: | |
cache: 'pip' | ||
- run: pip install -r tt/requirements.txt -r tt-multiplexer/py/requirements.txt -r verilog/dv/mux/requirements.txt | ||
|
||
- name: install iverilog | ||
run: sudo apt-get update && sudo apt-get install -y iverilog | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
|
||
- name: Install iverilog | ||
shell: bash | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y bison flex gperf libbz2-dev | ||
git clone https://github.com/steveicarus/iverilog | ||
cd iverilog | ||
git checkout d8c3c51ab1190ed3fb26540d7de6177f83e0e75b | ||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | ||
sh autoconf.sh | ||
./configure | ||
make | ||
sudo make install | ||
- name: Configure the multiplexer for testing | ||
run: python ./tt/configure.py --update-shuttle --test | ||
|
Submodule IHP-Open-PDK
updated
11 files
Submodule openlane2
updated
11 files
+2 −0 | default.nix | |
+1 −0 | flake.nix | |
+71 −0 | nix/gdstk.nix | |
+2 −2 | nix/openroad.nix | |
+12 −0 | openlane/config/flow.py | |
+2 −2 | openlane/scripts/openroad/sta/corner.tcl | |
+23 −0 | openlane/scripts/openroad/write_cdl.tcl | |
+5 −0 | openlane/state/design_format.py | |
+0 −7 | openlane/steps/cvc_rv.py | |
+122 −1 | openlane/steps/klayout.py | |
+16 −0 | openlane/steps/openroad.py |
Submodule tt-multiplexer
updated
10 files
+3 −6 | Makefile | |
+0 −1 | cfg/.gitignore | |
+5 −5 | cfg/ihp-sg13g2.yaml | |
+6 −20 | ol2/tt_ctrl/build.py | |
+6 −20 | ol2/tt_mux/build.py | |
+94 −32 | ol2/tt_top/build.py | |
+151 −0 | ol2/tt_top/odb_route.py | |
+7 −8 | ol2/tt_top/tt_ihp_wrapper.v | |
+619 −0 | py/ihp_extract_spice.py | |
+63 −0 | py/ihp_seal_ring.py |