2014-09-11 11:38:21 +02:00
|
|
|
# check RISCV environment variable
|
|
|
|
ifndef RISCV
|
|
|
|
$(error Please set environment variable RISCV. Please take a look at README)
|
|
|
|
endif
|
|
|
|
|
2016-08-16 07:03:03 +02:00
|
|
|
MODEL ?= TestHarness
|
2016-09-15 03:10:21 +02:00
|
|
|
PROJECT ?= rocketchip
|
|
|
|
CFG_PROJECT ?= $(PROJECT)
|
2015-08-25 22:26:14 +02:00
|
|
|
CXX ?= g++
|
2014-01-31 21:25:19 +01:00
|
|
|
CXXFLAGS := -O1
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2016-05-25 20:36:24 +02:00
|
|
|
SBT ?= java -Xmx2G -Xss8M -XX:MaxPermSize=256M -jar $(base_dir)/sbt-launch.jar
|
2015-06-26 08:17:35 +02:00
|
|
|
SHELL := /bin/bash
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2016-06-20 20:18:47 +02:00
|
|
|
FIRRTL_JAR ?= $(base_dir)/firrtl/utils/bin/firrtl.jar
|
|
|
|
FIRRTL ?= java -Xmx2G -Xss8M -XX:MaxPermSize=256M -cp $(FIRRTL_JAR) firrtl.Driver
|
|
|
|
|
2016-08-05 23:45:00 +02:00
|
|
|
$(FIRRTL_JAR): $(shell find $(base_dir)/firrtl/src/main/scala -iname "*.scala")
|
2016-06-20 20:18:47 +02:00
|
|
|
$(MAKE) -C $(base_dir)/firrtl SBT="$(SBT)" root_dir=$(base_dir)/firrtl build-scala
|
2016-08-19 20:06:01 +02:00
|
|
|
touch $(FIRRTL_JAR)
|
2016-06-20 20:18:47 +02:00
|
|
|
|
2016-08-16 07:03:03 +02:00
|
|
|
CHISEL_ARGS := --targetDir $(generated_dir)
|
2015-07-28 09:23:31 +02:00
|
|
|
|
2014-09-01 05:26:55 +02:00
|
|
|
src_path = src/main/scala
|
2016-08-19 19:58:56 +02:00
|
|
|
default_submodules = . hardfloat context-dependent-environments chisel3
|
|
|
|
chisel_srcs = $(foreach submodule,$(default_submodules) $(ROCKETCHIP_ADDONS),$(shell find $(base_dir)/$(submodule)/$(src_path) -name "*.scala"))
|
2014-09-01 05:26:55 +02:00
|
|
|
|
|
|
|
disasm := 2>
|
2015-09-04 00:36:11 +02:00
|
|
|
which_disasm := $(shell which spike-dasm 2> /dev/null)
|
2014-09-01 05:26:55 +02:00
|
|
|
ifneq ($(which_disasm),)
|
2014-09-10 05:49:28 +02:00
|
|
|
disasm := 3>&1 1>&2 2>&3 | $(which_disasm) $(DISASM_EXTENSION) >
|
2014-09-01 05:26:55 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
timeout_cycles = 100000000
|
|
|
|
|
2016-08-05 20:07:42 +02:00
|
|
|
bootrom_img = $(base_dir)/bootrom/bootrom.img
|
|
|
|
|
2014-09-01 05:26:55 +02:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Build Tests
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
%.hex:
|
|
|
|
$(MAKE) -C $(dir $@) $(notdir $@)
|
|
|
|
|
2016-01-28 21:15:14 +01:00
|
|
|
%.riscv.hex: %.riscv
|
2014-09-01 05:26:55 +02:00
|
|
|
$(MAKE) -C $(dir $@) $(notdir $@)
|
2015-11-05 19:15:02 +01:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Constants Header Files
|
|
|
|
#---------------------------------------------------------------------
|
|
|
|
|
2016-09-14 20:34:23 +02:00
|
|
|
# sed uses -E (instead of -r) for BSD support
|
2015-11-05 19:15:02 +01:00
|
|
|
params_file = $(generated_dir)/$(MODEL).$(CONFIG).prm
|
|
|
|
consts_header = $(generated_dir)/consts.$(CONFIG).h
|
|
|
|
$(consts_header): $(params_file)
|
|
|
|
echo "#ifndef __CONST_H__" > $@
|
|
|
|
echo "#define __CONST_H__" >> $@
|
2016-09-14 20:34:23 +02:00
|
|
|
sed -E 's/\(([A-Za-z0-9_]+),([A-Za-z0-9_]+)\)/#define \1 \2/' $< >> $@
|
2015-11-05 19:15:02 +01:00
|
|
|
echo "#endif // __CONST_H__" >> $@
|
|
|
|
|
|
|
|
params_file_debug = $(generated_dir_debug)/$(MODEL).$(CONFIG).prm
|
|
|
|
consts_header_debug = $(generated_dir_debug)/consts.$(CONFIG).h
|
|
|
|
$(consts_header_debug): $(params_file_debug)
|
|
|
|
echo "#ifndef __CONST_H__" > $@
|
|
|
|
echo "#define __CONST_H__" >> $@
|
2016-09-14 20:34:23 +02:00
|
|
|
sed -E 's/\(([A-Za-z0-9_]+),([A-Za-z0-9_]+)\)/#define \1 \2/' $< >> $@
|
2015-11-05 19:15:02 +01:00
|
|
|
echo "#endif // __CONST_H__" >> $@
|
2016-08-10 20:40:58 +02:00
|
|
|
|
|
|
|
clean-run-output:
|
|
|
|
rm -f $(output_dir)/{*.out,*.run,*.vpd}
|