forked from pulp-platform/FlooNoC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
365 lines (292 loc) · 9.89 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
# Copyright 2022 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
# Author: Michael Rogenmoser <[email protected]>
# Author: Tim Fischer <[email protected]>
##########
# Common #
##########
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
MKFILE_DIR := $(dir $(MKFILE_PATH))
.PHONY: all clean
all: compile-vsim
clean: clean-vsim clean-vcs clean-spyglass clean-jobs clean-sources clean-vivado clean-bender clean-log clean-dma_test
############
# Programs #
############
BENDER ?= bender
VSIM ?= vsim
VCS ?= vcs
SPYGLASS ?= sg_shell
VERIBLE_FMT ?= verible-verilog-format
##################
# Snitch Cluster #
##################
# Path to snitch cluster "$ROOT/snitch/hw/system/snitch_cluster"
SNITCH_PATH := /home/attapon/Persimmons/PULP/snitch/hw/system/snitch_cluster
SNITCH_SW ?= sw/tests/build/fp32_computation_vector.elf
#####################
# Compilation Flags #
#####################
BENDER_FLAGS += -t rtl
BENDER_FLAGS += -t test
BENDER_FLAGS += -t dma_test # use for local simulation of FlooNoC system
#BENDER_FLAGS += -t simulation
#BENDER_FLAGS += -t cv64a6_imafdc_sv39
TB_DUT ?= tb_floo_compute_tile_array
#SIM_TIME ?= 1500000
SIM_TIME ?= 3000000
FSDB ?= OFF
# VSIM
VLOG_ARGS += -suppress vlog-2583
VLOG_ARGS += -suppress vlog-13314
VLOG_ARGS += -suppress vlog-13233
VLOG_ARGS += -timescale \"1 ns / 1 ps\"
ifdef DMA_TESTNODE
VLOG_ARGS += +define+DMA_TESTNODE
endif
$(warning $(VLOG_ARGS))
VSIM_FLAGS += -64
VSIM_FLAGS += -t 1ps
VSIM_FLAGS += -sv_seed 0
# VCS
VLOGAN_ARGS += -full64
VLOGAN_ARGS += -kdb
VLOGAN_ARGS += -assert svaext
#VLOGAN_ARGS += -assert disable_cover
VLOGAN_ARGS += -timescale=1ns/1ns
ifdef DMA_TESTNODE
VLOGAN_ARGS += +define+DMA_TESTNODE
endif
VLOGAN_ARGS += -debug_access+all
VCS_FLAGS += -full64 # additional compile param because ecad-1 doesn't have all the 32 bit libraries installed
VCS_FLAGS += -Mlib=work-vcs
VCS_FLAGS += -Mdir=work-vcs
VCS_FLAGS += -kdb
VCS_FLAGS += -debug_access+all
#SIMV_FLAGS =
#SIMV_FLAGS += +vcs+dumpvars+test.vcd
SIMV_FLAGS += +vcs+finish+$(SIM_TIME) # maximum simulation time in ns
SIMV_FLAGS += +vcs+lic+wait
ifeq ($(FSDB),ON)
SIMV_FLAGS += +fsdbon
endif
# Set the job name and directory if specified
ifdef JOB_NAME
VSIM_FLAGS += +JOB_NAME=$(JOB_NAME)
SIMV_FLAGS += +JOB_NAME=$(JOB_NAME)
endif
ifdef JOB_DIR
VSIM_FLAGS += +JOB_DIR=$(JOB_DIR)
SIMV_FLAGS += +JOB_DIR=$(JOB_DIR)
else
VSIM_FLAGS += +JOB_DIR=$(MKFILE_DIR)hw/test/jobs
SIMV_FLAGS += +JOB_DIR=$(MKFILE_DIR)hw/test/jobs
endif
ifdef LOG_FILE
VSIM_FLAGS += -l $(LOG_FILE)
VSIM_FLAGS += -nostdout
endif
# Automatically open the waveform if a wave.tcl file is present
VSIM_FLAGS_GUI += -do "log -r /*"
VSIM_FLAGS_GUI += -voptargs=+acc
ifneq ("$(wildcard hw/tb/wave/$(TB_DUT).wave.tcl)","")
VSIM_FLAGS_GUI += -do "source hw/tb/wave/$(TB_DUT).wave.tcl"
endif
###########
# FlooGen #
###########
FLOOGEN ?= floogen
FLOOGEN_OUT_DIR ?= $(MKFILE_DIR)generated
FLOOGEN_PKG_OUT_DIR ?= $(MKFILE_DIR)hw
FLOOGEN_CFG_DIR ?= $(MKFILE_DIR)floogen/examples
FLOOGEN_TPL_DIR ?= $(MKFILE_DIR)floogen/templates
FLOOGEN_PKG_CFG ?= $(shell find $(FLOOGEN_CFG_DIR) -name "*_pkg.yml")
FLOOGEN_PKG_SRC ?= $(patsubst $(FLOOGEN_CFG_DIR)/%_pkg.yml,$(FLOOGEN_PKG_OUT_DIR)/floo_%_pkg.sv,$(FLOOGEN_PKG_CFG))
FLOOGEN_TPL ?= $(shell find $(FLOOGEN_TPL_DIR) -name "*.mako")
.PHONY: install-floogen pkg-sources sources clean-sources clean-bender clean-log
install-floogen:
@which $(FLOOGEN) > /dev/null || (echo "Installing floogen..." && pip install .)
pkg-sources: install-floogen $(FLOOGEN_PKG_SRC)
$(FLOOGEN_PKG_OUT_DIR)/floo_%_pkg.sv: $(FLOOGEN_CFG_DIR)/%_pkg.yml $(FLOOGEN_TPL)
$(FLOOGEN) -c $< --only-pkg --pkg-outdir $(FLOOGEN_PKG_OUT_DIR) $(FLOOGEN_ARGS)
sources: install-floogen
$(FLOOGEN) -c $(FLOOGEN_CFG) -o $(FLOOGEN_OUT_DIR) --pkg-outdir $(FLOOGEN_PKG_OUT_DIR) $(FLOOGEN_ARGS)
clean-sources:
rm -rf $(FLOOGEN_OUT_DIR)
# rm -f $(FLOOGEN_PKG_SRC)
clean-bender:
rm -rf .bender
rm -rf Bender.lock
clean-log:
rm -rf bin
rm -rf logs
######################
# Traffic Generation #
######################
TRAFFIC_GEN ?= util/gen_jobs.py
TRAFFIC_TB ?= compute_tile_array
TRAFFIC_TYPE ?= random
TRAFFIC_RW ?= read
TRAFFIC_OUTDIR ?= hw/test/jobs
TRAFFIC_NR_BURST_NUM ?= 10
TRAFFIC_NR_BURST_LEN ?= 1
TRAFFIC_WD_BURST_NUM ?= 100
TRAFFIC_WD_BURST_LEN ?= 16
.PHONY: jobs clean-jobs
jobs: $(TRAFFIC_GEN)
mkdir -p $(TRAFFIC_OUTDIR)
$(TRAFFIC_GEN) --out_dir $(TRAFFIC_OUTDIR) --tb $(TRAFFIC_TB) --traffic_type $(TRAFFIC_TYPE) --rw $(TRAFFIC_RW) \
--num_narrow_bursts $(TRAFFIC_NR_BURST_NUM) --num_wide_bursts $(TRAFFIC_WD_BURST_NUM) \
--narrow_burst_length $(TRAFFIC_NR_BURST_LEN) --wide_burst_length $(TRAFFIC_WD_BURST_LEN)
clean-jobs:
rm -rf $(TRAFFIC_OUTDIR)
########################
# QuestaSim Simulation #
########################
.PHONY: compile-vsim run-vsim run-vsim-batch clean-vsim
scripts/compile_vsim.tcl: Bender.yml
mkdir -p scripts
echo 'set ROOT [file normalize [file dirname [info script]]/..]' > scripts/compile_vsim.tcl
$(BENDER) script vsim --vlog-arg="$(VLOG_ARGS)" $(BENDER_FLAGS) | grep -v "set ROOT" >> scripts/compile_vsim.tcl
echo >> scripts/compile_vsim.tcl
compile-vsim: scripts/compile_vsim.tcl
$(VSIM) -64 -c -do "source scripts/compile_vsim.tcl; quit"
run-vsim:
$(VSIM) $(VSIM_FLAGS) $(VSIM_FLAGS_GUI) $(TB_DUT)
run-vsim-batch:
$(VSIM) -c $(VSIM_FLAGS) $(TB_DUT) -do "run -all; quit"
clean-vsim:
rm -rf scripts/compile_vsim.tcl
rm -rf modelsim.ini
rm -rf transcript
rm -rf work*
##################
# VCS Simulation #
##################
.PHONY: compile-vcs compile-vcs-batch run-vcs run-vcs-batch clean-vcs
work-vcs/compile_vcs.sh: Bender.yml
mkdir -p work-vcs
mkdir -p scripts
echo 'set ROOT [file normalize [file dirname [info script]]/..]' > work-vcs/compile_vcs.sh
$(BENDER) script vcs --vlog-arg="$(VLOGAN_ARGS)" $(BENDER_FLAGS) | grep -v "set ROOT" >> work-vcs/compile_vcs.sh
chmod +x work-vcs/compile_vcs.sh
compile-vcs-batch: work-vcs/compile_vcs.sh
work-vcs/compile_vcs.sh > work-vcs/compile.log
compile-vcs: compile-vcs-batch
# run-vcs-common:
# ifdef DMA_TESTNODE
# $(VCS) $(VCS_FLAGS) $(TB_DUT)
# ./simv $(SIMV_FLAGS)
# else
# # Generate VCS simulation binary
# mkdir -p bin
# $(VCS) $(VCS_FLAGS) -o bin/snitch_cluster.vcs -cc cc -cpp g++ $(TB_DUT) \
# $(SNITCH_PATH)/../../../hw/ip/test/src/rtl_lib.cc \
# $(SNITCH_PATH)/../../../hw/ip/test/src/common_lib.cc \
# $(SNITCH_PATH)/generated/bootdata.cc \
# -CFLAGS "-std=c++14 -I$(SNITCH_PATH)/ \
# -I$(SNITCH_PATH)/test \
# -I$(SNITCH_PATH)/work/include \
# -I$(SNITCH_PATH)/../../../hw/ip/test/src" \
# -LDFLAGS "-L$(SNITCH_PATH)/work/lib" -lfesvr
# # Run VCS simulation binary
# ./bin/snitch_cluster.vcs $(SNITCH_PATH)/$(SNITCH_SW) $(SIMV_FLAGS)
# endif
bin/floo_noc_gui.vcs: compile-vcs
mkdir -p bin
$(VCS) $(VCS_FLAGS) -o bin/floo_noc_gui.vcs $(TB_DUT)
bin/floo_noc_batch.vcs: compile-vcs-batch
mkdir -p bin
$(VCS) $(VCS_FLAGS) -o bin/floo_noc_batch.vcs $(TB_DUT)
run-vcs: SIMV_FLAGS+=-gui=elite
run-vcs:
./bin/floo_noc_gui.vcs $(SIMV_FLAGS)
run-vcs-batch:
./bin/floo_noc_batch.vcs $(SIMV_FLAGS)
clean-vcs: clean-dma_test
rm -rf work-vcs/compile_vcs.sh
rm -rf bin
rm -rf work-vcs
rm -rf AN.DB
rm -rf simv.daidir
rm -rf elabMhIdDidWork.txt
rm -rf ucli.key
rm -rf vc_hdrs.h
rm -rf simv
rm -rf novas.rc
rm -rf novas.conf
rm -rf novas_dump.log
rm -rf Makefile.Msimdepends
rm -rf Makefile.Msimdepends.vlib_analyze_DEFAULT.dep
rm -rf verdi_config_file
rm -rf verdiLog
rm -rf simv.vdb
rm -rf sysBusyPLog
#######################
# DMA Test Simulation #
#######################
.PHONY: dma_test/bin/floo_noc_batch.vcs dma_test-clean
dma_test-bin/floo_noc_batch.vcs:
${MAKE} -C simulation/dma_test bin/floo_noc_batch.vcs TB_DUT=$(TB_DUT)
dma_test-run-vcs-batch:
${MAKE} -C simulation/dma_test run-vcs-batch SIMV_FLAGS="$(SIMV_FLAGS)"
dma_test-bin/floo_noc_gui.vcs:
${MAKE} -C simulation/dma_test bin/floo_noc_gui.vcs TB_DUT=$(TB_DUT)
dma_test-run-vcs: SIMV_FLAGS+=-gui=elite
dma_test-run-vcs:
${MAKE} -C simulation/dma_test run-vcs SIMV_FLAGS="$(SIMV_FLAGS)"
clean-dma_test:
${MAKE} -C simulation/dma_test clean
#############################################
# Random testing for Compute tile structure #
#############################################
.PHONY: test-random clean-test-random
test-random: dma_test-bin/floo_noc_batch.vcs
util/test_random_compute_tile.sh 2>&1 | tee test_random.log
clean-test-random:
rm -rf test/jobs
rm -rf test_random.log
####################
# Vivado Synthesis #
####################
.PHONY: vivado-synth vivado-synth-batch clean-vivado
scripts/vivado/add_sources.tcl: Bender.yml
echo 'set ROOT [file normalize [file dirname [info script]]/../..]' > scripts/vivado/add_sources.tcl
# $(BENDER) script vivado $(BENDER_FLAGS) | grep -v "set ROOT" >> scripts/vivado/add_sources.tcl
$(BENDER) script vivado -t rtl | grep -v "set ROOT" >> scripts/vivado/add_sources.tcl
vivado-synth: scripts/vivado/add_sources.tcl
vivado -source scripts/vivado/run_xsynth.tcl
vivado-synth-batch: scripts/add_sources.tcl
vivado -mode batch -source scripts/vivado/run_xsynth.tcl
clean-vivado:
rm -rf scripts/vivado/add_sources.tcl
rm -rf .bender
rm -rf .Xil
rm -rf floonoc.cache
rm -rf floonoc.hw
rm -rf floonoc.ip_user_files
rm -rf floonoc.runs
rm -rf floonoc.sim
rm -rf floonoc.cache
rm -rf floonoc.xpr
rm -rf vivado.*
rm -rf vivado_*
####################
# Spyglass Linting #
####################
SP_TOP_MODULE ?= floo_mesh
.PHONY: run-spyglass clean-spyglass
spyglass/sources.f:
$(BENDER) script flist -t spyglass | grep -v "set ROOT" >> spyglass/sources.f
echo >> spyglass/sources.f
run-spyglass: spyglass/sources.f
echo "set TOP_MODULE ${SP_TOP_MODULE}" > spyglass/set_top.tcl
cd spyglass && $(SPYGLASS) -tcl set_top.tcl -tcl run_spyglass_lint.tcl
rm spyglass/set_top.tcl
clean-spyglass:
rm -f spyglass/sources.f
rm -rf spyglass/reports
rm -rf spyglass/floo_noc*
rm -f spyglass/sg_shell_command.log
rm -f spyglass/set_top.tcl