mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
fa47313086
* Fixed writing config files for synth sweeps * cleaned up comments * Fixed copying hdl subdirectories and referencing the correct config files for modified features * improved readability for synth scripts * cleans run directory post run and leaves copy of wally-config
140 lines
4.4 KiB
Makefile
Executable File
140 lines
4.4 KiB
Makefile
Executable File
#
|
|
# Makefile for synthesis
|
|
# Shreya Sanghai (ssanghai@hmc.edu) 2/28/2022
|
|
# Madeleine Masser-Frye (mmasserfrye@hmc.edu) 1/27/2023
|
|
NAME := synth
|
|
|
|
# defaults
|
|
export DESIGN ?= wallypipelinedcore
|
|
export FREQ ?= 3000
|
|
export CONFIG ?= rv32e
|
|
export MOD ?= orig
|
|
# title to add a note in the synth's directory name
|
|
TITLE =
|
|
# tsmc28, sky130, and sky90 presently supported
|
|
export TECH ?= sky90
|
|
# MAXCORES allows parallel compilation, which is faster but less CPU-efficient
|
|
# Avoid when doing sweeps of many optimization points in parallel
|
|
export MAXCORES ?= 1
|
|
# MAXOPT turns on flattening, boundary optimization, and retiming
|
|
# The output netlist is hard to interpret, but significantly better PPA
|
|
export MAXOPT ?= 0
|
|
export DRIVE ?= FLOP
|
|
|
|
time := $(shell date +%F-%H-%M)
|
|
hash := $(shell git rev-parse --short HEAD)
|
|
export OUTPUTDIR := runs/$(DESIGN)_$(CONFIG)_$(MOD)_$(TECH)nm_$(FREQ)_MHz_$(time)_$(TITLE)_$(hash)
|
|
export OUTPUTDIR := runs/$(DESIGN)_$(CONFIG)_$(MOD)_$(TECH)nm_$(FREQ)_MHz_$(time)_$(TITLE)_$(hash)
|
|
export SAIFPOWER ?= 0
|
|
|
|
OLDCONFIGDIR ?= ${WALLY}/pipelined/config
|
|
export CONFIGDIR ?= $(OUTPUTDIR)/hdl/config
|
|
CONFIGFILES ?= $(shell find $(CONFIGDIR) -name rv*_*)
|
|
CONFIGFILESTRIM = $(notdir $(CONFIGFILES))
|
|
|
|
print:
|
|
@echo $(FREQS)
|
|
@echo $(CONFIG)
|
|
@echo $(CONFIGFILESTRIM)
|
|
|
|
|
|
default:
|
|
@echo " Basic synthesis procedure for Wally:"
|
|
@echo " Invoke with make synth"
|
|
@echo "Use wallySynth.py to run a concurrent sweep "
|
|
|
|
|
|
DIRS32 = rv32e rv32gc rv32ic rv32i
|
|
DIRS64 = rv64i rv64gc
|
|
DIRS32 = rv32e rv32gc rv32ic rv32i
|
|
DIRS64 = rv64i rv64gc
|
|
DIRS = $(DIRS32) $(DIRS64)
|
|
|
|
# k = 3 6
|
|
# bpred:
|
|
# @$(foreach kval, $(k), rm -rf $(CONFIGDIR)/rv64gc_bpred_$(kval);)
|
|
# @$(foreach kval, $(k), cp -r $(CONFIGDIR)/rv64gc $(CONFIGDIR)/rv64gc_bpred_$(kval);)
|
|
# @$(foreach kval, $(k), sed -i 's/BPRED_SIZE.*/BPRED_SIZE $(kval)/g' $(CONFIGDIR)/rv64gc_bpred_$(kval)/wally-config.vh;)
|
|
# @$(foreach kval, $(k), make synth DESIGN=wallypipelinedcore CONFIG=rv64gc_bpred_$(kval) TECH=sky90 FREQ=500 MAXCORES=4 --jobs;)
|
|
|
|
configs: $(CONFIG)
|
|
$(CONFIG):
|
|
@echo $(CONFIG)
|
|
cp -r $(OLDCONFIGDIR)/$(CONFIG) $(CONFIGDIR)/$(CONFIG)_orig
|
|
sed -i 's/WAYSIZEINBYTES.*/WAYSIZEINBYTES 512/g' $(CONFIGDIR)/$(CONFIG)_orig/wally-config.vh
|
|
sed -i 's/NUMWAYS.*/NUMWAYS 1/g' $(CONFIGDIR)/$(CONFIG)_orig/wally-config.vh
|
|
sed -i 's/BPRED_SIZE.*/BPRED_SIZE 4/g' $(CONFIGDIR)/$(CONFIG)_orig/wally-config.vh
|
|
|
|
ifneq ($(filter $ $(CONFIG), $(DIRS32)),)
|
|
sed -i "s/RAM_RANGE.*/RAM_RANGE 34\'h01FF/g" $(CONFIGDIR)/$(CONFIG)_orig/wally-config.vh
|
|
else ifneq ($(filter $ $(CONFIG), $(DIRS64)),)
|
|
sed -i "s/RAM_RANGE.*/RAM_RANGE 56\'h01FF/g" $(CONFIGDIR)/$(CONFIG)_orig/wally-config.vh
|
|
else
|
|
$(info $(CONFIG) does not exist in $(DIRS32) or $(DIRS64))
|
|
@echo "Config not in list, RAM_RANGE will be unmodified"
|
|
endif
|
|
|
|
# turn off FPU
|
|
cp -r $(CONFIGDIR)/$@_orig $(CONFIGDIR)/$@_FPUoff
|
|
sed -i 's/1 *<< *3/0 << 3/' $(CONFIGDIR)/$@_FPUoff/wally-config.vh
|
|
sed -i 's/1 *<< *5/0 << 5/' $(CONFIGDIR)/$@_FPUoff/wally-config.vh
|
|
|
|
# PMP 16
|
|
cp -r $(CONFIGDIR)/$@_FPUoff $(CONFIGDIR)/$@_PMP16
|
|
sed -i 's/PMP_ENTRIES \(64\|16\|0\)/PMP_ENTRIES 16/' $(CONFIGDIR)/$@_PMP16/wally-config.vh
|
|
|
|
# PMP 0
|
|
cp -r $(CONFIGDIR)/$@_FPUoff $(CONFIGDIR)/$@_PMP0
|
|
sed -i 's/PMP_ENTRIES \(64\|16\|0\)/PMP_ENTRIES 0/' $(CONFIGDIR)/$@_PMP0/wally-config.vh
|
|
|
|
# no muldiv
|
|
cp -r $(CONFIGDIR)/$@_PMP0 $(CONFIGDIR)/$@_noMulDiv
|
|
sed -i 's/1 *<< *12/0 << 12/' $(CONFIGDIR)/$@_noMulDiv/wally-config.vh
|
|
|
|
# no priv
|
|
cp -r $(CONFIGDIR)/$@_noMulDiv $(CONFIGDIR)/$@_noPriv
|
|
sed -i 's/ZICSR_SUPPORTED *1/ZICSR_SUPPORTED 0/' $(CONFIGDIR)/$@_noPriv/wally-config.vh
|
|
|
|
ifeq ($(SAIFPOWER), 1)
|
|
cp -f ../pipelined/regression/power.saif .
|
|
endif
|
|
|
|
ifeq ($(SAIFPOWER), 1)
|
|
cp -f ../pipelined/regression/power.saif .
|
|
endif
|
|
|
|
freqs:
|
|
@$(foreach freq, $(FREQS), make synth DESIGN=wallypipelinedcore CONFIG=rv32e FREQ=$(freq) MAXCORES=1;)
|
|
|
|
mkdirecs:
|
|
mkdirecs:
|
|
@echo "DC Synthesis"
|
|
@mkdir -p $(OUTPUTDIR)
|
|
@mkdir -p $(OUTPUTDIR)/hdl/config
|
|
@mkdir -p $(OUTPUTDIR)/hdl/config
|
|
@mkdir -p $(OUTPUTDIR)/reports
|
|
@mkdir -p $(OUTPUTDIR)/mapped
|
|
@mkdir -p $(OUTPUTDIR)/unmapped
|
|
|
|
synth: mkdirecs configs rundc clean
|
|
|
|
rundc:
|
|
|
|
synth: mkdirecs configs rundc clean
|
|
|
|
rundc:
|
|
dc_shell-xg-t -64bit -f scripts/$(NAME).tcl | tee $(OUTPUTDIR)/$(NAME).out
|
|
|
|
clean:
|
|
rm -rf $(OUTPUTDIR)/hdl
|
|
|
|
clean:
|
|
rm -rf $(OUTPUTDIR)/hdl
|
|
rm -rf $(OUTPUTDIR)/WORK
|
|
rm -rf $(OUTPUTDIR)/alib-52
|
|
rm -f default.svf
|
|
rm -f command.log
|
|
rm -f filenames*.log
|
|
rm -f power.saif
|
|
rm -f Synopsys_stack_trace_*.txt
|
|
rm -f crte_*.txt
|