* [uart] add uart adapter | add uart + adapter to all configs * [uart] change pty define name | add uart to all configs that need it * [uart] default to 115200 baudrate * [dromajo] first working commit * [dromajo] bump boom for commit-width > 1 fix * [dromajo] adjust dromajo commits * [dromajo] bump boom * commit dromajo changes * extra * [dromajo] add block device to configs * rebump older modules * bump firesim * [chipyard] enable dromajo in midas level simulation * [testchipip] forgot to bump * get rid of breaking things * bump firesim * bump boom * Bump BOOM to ifu3 WIP * bump firesim * fix how memory is passed to dromajo * bump boom and firesim * fix merge issues * add dromajo cosim bridge in chipyard * move traceio back into testchipip (#488) * refer to testchipip traceio in firechip (#490) * Move TraceIO fragment to chipyard (#492) * fix chipyard dromajo bridge (#493) * Sboom dromajo bump (#501) * [FireChip] Use clock in BridgeBinders * [firesim] Update TraceGen BridgeBinder * [Firechip] Add support for Tile <-> Uncore rational division * [firesim] Update the multiclock test * [firechip] Commit some Eagle X-related mock configs * [firechip] Instantiate multiple TracerV bridges * [Firechip] Include reset in tracerv tokens * [TracerV] Drop the first token in comparison tests * [Firechip] Make reverse instruction order in trace printf * WARNING: Point at a fork of boom @ davidbiancolin * [firesim] Update ClockBridge API * Add Gemmini to README [ci skip] (#487) * [firechip] Isolate all firesim-multiclock stuff in a single file * add documentation on ring network and system bus * Bump firesim for CI * Bump FireSim * Bump testchipip to dev [ci skip] * Bump FireSim * [make] split up specific make vars/targets into frags (#499) * [make] split up specific make vars/targets into frags * [make] move dramsim and max-cycles into SIM_FLAGS * [misc] move ariane configs to configs/ folder * [dromajo] add dromajo * [dromajo] bump for new traceio changes * bump firesim * bump firesim * point to chipyard traceio * bump boom Co-authored-by: David Biancolin <david.biancolin@gmail.com> Co-authored-by: Howard Mao <zhehao.mao@gmail.com> * Support Dromajo + TracerV configurations * [docs] add documentation for Dromajo in FireSim + Chipyard * add a bit more docs * [docs] bump docs * [firesim] dump artefacts in firesim * [firesim] update firesim * [testchipip] remove extraneous items in testchipip * [dromajo] prevent dromajo from breaking when params unset * update firesim, dromajo, and testchipip * [firesim] bump firesim * [firesim] bump firesim * [misc] bump firesim and testchipip for reviewer comments * remove WithNoGPIO fragment * bump firesim * bump dromajo boom config * bump firesim * generate artefacts in firesim testsuite Co-authored-by: abejgonzalez <abe.j.gonza@gmail.com> Co-authored-by: Abraham Gonzalez <abe.gonzalez@berkeley.edu> Co-authored-by: David Biancolin <david.biancolin@gmail.com> Co-authored-by: Howard Mao <zhehao.mao@gmail.com>
60 lines
1.8 KiB
Makefile
60 lines
1.8 KiB
Makefile
##############################################################
|
|
# extra variables/targets ingested by the chipyard make system
|
|
##############################################################
|
|
|
|
DROMAJO_DIR = $(base_dir)/tools/dromajo/dromajo-src/src
|
|
DROMAJO_LIB_NAME = dromajo_cosim
|
|
DROMAJO_LIB = $(DROMAJO_DIR)/lib$(DROMAJO_LIB_NAME).a
|
|
|
|
# Dromajo assumes using the default bootrom
|
|
DROMAJO_ROM = $(base_dir)/bootrom/bootrom.rv64.img
|
|
|
|
DTS_FILE = $(build_dir)/$(long_name).dts
|
|
DROMAJO_DTB = $(build_dir)/$(long_name).dtb
|
|
|
|
$(DTS_FILE): $(FIRRTL_FILE)
|
|
|
|
$(DROMAJO_DTB): $(DTS_FILE)
|
|
dtc -I dts -O dtb -o $(DROMAJO_DTB) $(DTS_FILE)
|
|
|
|
DROMAJO_SRCS = $(call lookup_srcs,$(DROMAJO_DIR),cc) $(call lookup_srcs,$(DROMAJO_DIR),h)
|
|
|
|
$(DROMAJO_LIB): $(DROMAJO_SRCS)
|
|
$(MAKE) -C $(DROMAJO_DIR)
|
|
|
|
# depending on where the simulation is done, use the auto-variable or the hardcoded defined one
|
|
ifeq ($(BINARY),)
|
|
DROMAJO_BIN = $(<)
|
|
else
|
|
DROMAJO_BIN = $(BINARY)
|
|
endif
|
|
|
|
DROMAJO_FLAGS = +drj_dtb=$(DROMAJO_DTB) +drj_rom=$(DROMAJO_ROM) +drj_bin=$(DROMAJO_BIN)
|
|
|
|
DROMAJO_PARAMS_FILE = $(build_dir)/$(long_name).dromajo_params.h
|
|
DROMAJO_PARAMS_SYMLINK = $(build_dir)/dromajo_params.h
|
|
|
|
$(DROMAJO_PARAMS_FILE): $(FIRRTL_FILE)
|
|
|
|
$(DROMAJO_PARAMS_SYMLINK): $(DROMAJO_PARAMS_FILE)
|
|
rm -rf $(DROMAJO_PARAMS_SYMLINK)
|
|
ln -s $(DROMAJO_PARAMS_FILE) $(DROMAJO_PARAMS_SYMLINK)
|
|
|
|
##################################################################
|
|
# THE FOLLOWING MUST BE += operators
|
|
##################################################################
|
|
|
|
# simargs needed (i.e. like +drj_test=hello)
|
|
ifdef ENABLE_DROMAJO
|
|
EXTRA_SIM_FLAGS += $(DROMAJO_FLAGS)
|
|
|
|
# CC flags needed for all simulations
|
|
EXTRA_SIM_CC_FLAGS += -I$(DROMAJO_DIR)
|
|
|
|
# sourced needed for simulation
|
|
EXTRA_SIM_SOURCES += $(DROMAJO_LIB)
|
|
|
|
# requirements needed for simulation
|
|
EXTRA_SIM_REQS += $(DROMAJO_PARAMS_SYMLINK) $(DROMAJO_LIB) $(DROMAJO_DTB)
|
|
endif
|