-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
105 lines (84 loc) · 3.05 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
########################################
# Top repository makefile
# Project: Edu4chip
# SoC: Didactic
#
# Description:
# * Top level commands to enable "make <command>"
# -style automated workflows.
#
# Contributors:
# * Matti Käyrä ([email protected])
# * Roni Hämäläinen ([email protected])
#######################################
# Common shell variables
SHELL=bash
BUILD_DIR ?= $(realpath $(CURDIR))/build/
TEST ?= blink
# Fetch submodule revisions and
# save work in submodules to stashes - avoid data loss by accidents
repository_init:
bender update
bender vendor init
check-env:
mkdir -p $(BUILD_DIR)/logs/compile
mkdir -p $(BUILD_DIR)/logs/opt
mkdir -p $(BUILD_DIR)/logs/sim
######################################################################
#
######################################################################
soc-rtl:
echo "Generating SoC RTL. Check variables from scripts/run_kactus2_script.sh to be able to run Kactus2."
source scripts/run_kactus2_script.sh -f scripts/kactus2_generate_soc_rtl.py
######################################################################
# hw targets
######################################################################
# compile hw library with chosen tools
compile: check-env
$(MAKE) -C sim compile BUILD_DIR=$(BUILD_DIR)
# potentionally elaborate hw library with chosen tools
elaborate: check-env
$(MAKE) -C sim elaborate BUILD_DIR=$(BUILD_DIR) TESTCASE=$(TEST)
# Potentionally split this to multiple subtasks
syn: check-env
$(MAKE) -C syn synthesize BUILD_DIR=$(BUILD_DIR)
######################################################################
# sim targets
######################################################################
# compile hw library with chosen tools
run_sim: check-env
$(MAKE) -C sim run_sim BUILD_DIR=$(BUILD_DIR)
######################################################################
# sw targets
######################################################################
#
build_test: check-env
$(MAKE) -C sw test BUILD_DIR=$(BUILD_DIR) TESTCASE=$(TEST)
######################################################################
# full flow targets
######################################################################
test_all: check-env compile elaborate build_test run_sim
######################################################################
# verilator targets
######################################################################
executable ?= ""
# generate hdl and sw bindings
.PHONY: verilator-generate-bindings
verilator-generate-bindings:
python3 ./verification/verilator/scripts/generate_bindings.py
# generate sw model for hw
.PHONY: verilator-generate-model
verilator-generate-model:
./verification/verilator/scripts/run.sh $(executable)
# build sw model with sw testbench
.PHONY: verilator-build
verilator-build:
make --directory=obj_dir --makefile=VDidactic.mk
# run sw testbench
.PHONY: verilator-run
verilator-run: verilator-build
./obj_dir/VDidactic
# run sw testbench with tracing
.PHONY: verilator-run-traced
verilator-run-traced: verilator-build
./obj_dir/VDidactic +trace