Added Openlane support with CI

As part of my and Olof Kindgrens work on adding Openlane support to Edalize,
we've noticed that a lot of the examples in the Openlane repository are from
other known sources and we would prefer to upstream when possible.

This commit adds a tcl file with parameters for Openlane, a sky130
target using Openlane in the core, and a github action for building it on push.
This commit is contained in:
Klas Nordmark 2021-05-11 10:28:59 +02:00
parent f9b1beb4cf
commit 8d760d2666
3 changed files with 70 additions and 3 deletions

25
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: build-openlane-sky130
on: [push]
jobs:
build-picorv32:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
path: picorv32
- name: Checkout pdk
uses: actions/checkout@v2
with:
repository: olofk/pdklite
path: pdklite
- run: echo "PDK_ROOT=$GITHUB_WORKSPACE/pdklite" >> $GITHUB_ENV
- run: echo "EDALIZE_LAUNCHER=${GITHUB_WORKSPACE}/openlane_runner.py" >> $GITHUB_ENV
- run: pip3 install --user -e "git+https://github.com/olofk/edalize.git#egg=edalize"
- run: pip3 install fusesoc
- run: docker pull efabless/openlane:v0.12
- run: wget https://raw.githubusercontent.com/olofk/subservient/main/openlane_runner.py
- run: chmod +x openlane_runner.py
- run: fusesoc library add fpganes $GITHUB_WORKSPACE/picorv32
- run: fusesoc run --target=sky130 picorv32

8
openlane_params.tcl Normal file
View File

@ -0,0 +1,8 @@
# These values are taken from the designs examples in the Openlane repository
set ::env(CLOCK_PORT) "clk"
set ::env(CLOCK_NET) $::env(CLOCK_PORT)
set ::env(GLB_RT_ADJUSTMENT) 0.1
set ::env(SYNTH_MAX_FANOUT) 6
set ::env(CLOCK_PERIOD) "24.73"
set ::env(FP_CORE_UTIL) 30
set ::env(PL_TARGET_DENSITY) [ expr ($::env(FP_CORE_UTIL)+5) / 100.0 ]

View File

@ -1,5 +1,5 @@
CAPI=2: CAPI=2:
name : ::picorv32:0-r1 name : ::picorv32:1.0
filesets: filesets:
rtl: rtl:
@ -18,6 +18,9 @@ filesets:
tb_verilator: tb_verilator:
files: files:
- testbench.cc : {file_type : cppSource} - testbench.cc : {file_type : cppSource}
openlane:
files:
- openlane_params.tcl : {file_type : tclSource}
targets: targets:
default: default:
@ -29,6 +32,19 @@ targets:
verilator: verilator:
mode : lint-only mode : lint-only
toplevel : [picorv32_axi] toplevel : [picorv32_axi]
sky130:
default_tool : openlane
filesets : [rtl, openlane]
parameters :
- ENABLE_REGS_16_31=0
- ENABLE_REGS_DUALPORT=0
- BARREL_SHIFTER=1
- TWO_CYCLE_ALU=1
- ENABLE_FAST_MUL=1
- ENABLE_IRQ=1
toplevel : picorv32
test: test:
default_tool: icarus default_tool: icarus
filesets: [rtl, tb, "tool_verilator? (tb_verilator)"] filesets: [rtl, tb, "tool_verilator? (tb_verilator)"]
@ -58,6 +74,24 @@ parameters:
datatype : str datatype : str
default : 1 default : 1
paramtype : vlogdefine paramtype : vlogdefine
ENABLE_REGS_16_31:
datatype : int
paramtype : vlogparam
ENABLE_REGS_DUALPORT:
datatype : int
paramtype : vlogparam
BARREL_SHIFTER:
datatype : int
paramtype : vlogparam
TWO_CYCLE_ALU:
datatype : int
paramtype : vlogparam
ENABLE_FAST_MUL:
datatype : int
paramtype : vlogparam
ENABLE_IRQ:
datatype : int
paramtype : vlogparam
axi_test: axi_test:
datatype : bool datatype : bool
paramtype : plusarg paramtype : plusarg