60 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#--------------------------------------------------------------------
 | 
						|
# Verilog Generation
 | 
						|
#--------------------------------------------------------------------
 | 
						|
# If I don't mark these as .SECONDARY then make will delete these internal
 | 
						|
# files.
 | 
						|
.SECONDARY: $(generated_dir)/$(long_name).fir
 | 
						|
 | 
						|
firrtl: $(generated_dir)/$(long_name).fir
 | 
						|
 | 
						|
.PHONY: firrtl
 | 
						|
 | 
						|
$(generated_dir)/%.fir $(generated_dir)/%.d $(generated_dir)/%.prm: $(chisel_srcs) $(bootrom_img)
 | 
						|
	mkdir -p $(dir $@)
 | 
						|
	cd $(base_dir) && $(SBT) "run $(generated_dir) $(PROJECT) $(MODEL) $(CFG_PROJECT) $(CONFIG)"
 | 
						|
 | 
						|
$(generated_dir)/$(long_name).v $(generated_dir)/$(long_name).conf : $(firrtl) $(FIRRTL_JAR)
 | 
						|
	mkdir -p $(dir $@)
 | 
						|
	$(FIRRTL) -i $< -o $@ -X verilog --inferRW $(MODEL) --replSeqMem -c:$(MODEL):-o:$(generated_dir)/$(long_name).conf
 | 
						|
 | 
						|
$(generated_dir)/$(long_name).behav_srams.v : $(generated_dir)/$(long_name).conf $(mem_gen)
 | 
						|
	cd $(generated_dir) && \
 | 
						|
	rm -f $@ && \
 | 
						|
	$(mem_gen) $(generated_dir)/$(long_name).conf >> $@.tmp && \
 | 
						|
	mv $@.tmp $@
 | 
						|
 | 
						|
$(generated_dir)/consts.$(CONFIG).vh: $(generated_dir)/$(long_name).prm
 | 
						|
	echo "\`ifndef CONST_VH" > $@
 | 
						|
	echo "\`define CONST_VH" >> $@
 | 
						|
	sed -r 's/\(([A-Za-z0-9_]+),([A-Za-z0-9_]+)\)/`define \1 \2/' $(patsubst %.v,%.prm,$<) >> $@
 | 
						|
	echo "\`endif // CONST_VH" >> $@
 | 
						|
 | 
						|
#--------------------------------------------------------------------
 | 
						|
# Run
 | 
						|
#--------------------------------------------------------------------
 | 
						|
 | 
						|
$(output_dir)/%.run: $(output_dir)/% $(simv)
 | 
						|
	cd $(sim_dir) && $(exec_simv) +max-cycles=$(timeout_cycles) $< 2> /dev/null 2> $@ && [ $$PIPESTATUS -eq 0 ]
 | 
						|
 | 
						|
$(output_dir)/%.out: $(output_dir)/% $(simv)
 | 
						|
	cd $(sim_dir) && $(exec_simv) +verbose +max-cycles=$(timeout_cycles) $< $(disasm) $@ && [ $$PIPESTATUS -eq 0 ]
 | 
						|
 | 
						|
$(output_dir)/%.vcd: $(output_dir)/% $(simv_debug)
 | 
						|
	cd $(sim_dir) && $(exec_simv_debug) +verbose +vcdfile=$@ +max-cycles=$(timeout_cycles) $< $(disasm) $(patsubst %.vcd,%.out,$@) && [ $$PIPESTATUS -eq 0 ]
 | 
						|
 | 
						|
$(output_dir)/%.vpd: $(output_dir)/% $(simv_debug)
 | 
						|
	cd $(sim_dir) && $(exec_simv_debug) +verbose +vcdplusfile=$@ +max-cycles=$(timeout_cycles) $< $(disasm) $(patsubst %.vpd,%.out,$@) && [ $$PIPESTATUS -eq 0 ]
 | 
						|
 | 
						|
$(output_dir)/%.saif: $(output_dir)/% $(simv_debug)
 | 
						|
	cd $(sim_dir) && rm -f $(output_dir)/pipe-$*.vcd && vcd2saif -input $(output_dir)/pipe-$*.vcd -pipe "$(exec_simv_debug) +verbose +vcdfile=$(output_dir)/pipe-$*.vcd +max-cycles=$(bmark_timeout_cycles) $<" -output $@ > $(patsubst %.saif,%.out,$@) 2>&1
 | 
						|
 | 
						|
run: run-asm-tests run-bmark-tests
 | 
						|
run-debug: run-asm-tests-debug run-bmark-tests-debug
 | 
						|
run-fast: run-asm-tests-fast run-bmark-tests-fast
 | 
						|
 | 
						|
.PHONY: run-asm-tests run-bmark-tests
 | 
						|
.PHONY: run-asm-tests-debug run-bmark-tests-debug
 | 
						|
.PHONY: run run-debug run-fast
 | 
						|
 | 
						|
junk += $(output_dir)
 |