mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
This commit: * renames all remaining instances of "DRAM" (which is ambiguous) to "LUTRAM" (which is not), finishing the work started in the commit 698ab9be; * renames memory rule files to brams.txt/lutrams.txt; * adds/renames script labels map_bram/map_lutram; * extracts where necessary script labels map_ffram and map_gates; * adds where necessary options -nobram/-nolutram. The end result is that BRAM/LUTRAM/FFRAM aspects of every target are now consistent with each other. Per architecture: * anlogic: rename drams.txt→lutrams.txt, add -nolutram, add :map_lutram, :map_ffram, :map_gates * ecp5: rename bram.txt→brams.txt, lutram.txt→lutrams.txt * efinix: rename bram.txt→brams.txt, add -nobram, add :map_ffram, :map_gates * gowin: rename bram.txt→brams.txt, dram.txt→lutrams.txt, rename -nodram→-nolutram (-nodram still recognized), rename :bram→:map_bram, :dram→:map_lutram, add :map_ffram, :map_gates
58 lines
2.8 KiB
Makefile
58 lines
2.8 KiB
Makefile
|
|
OBJS += techlibs/ecp5/synth_ecp5.o techlibs/ecp5/ecp5_ffinit.o \
|
|
techlibs/ecp5/ecp5_gsr.o
|
|
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/cells_ff.vh))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/cells_io.vh))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/cells_map.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/cells_sim.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/cells_bb.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/lutrams_map.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/lutrams.txt))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/brams_map.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/brams.txt))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/arith_map.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/latches_map.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/dsp_map.v))
|
|
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/abc9_map.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/abc9_unmap.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/abc9_model.v))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/abc9_5g.box))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/abc9_5g.lut))
|
|
$(eval $(call add_share_file,share/ecp5,techlibs/ecp5/abc9_5g_nowide.lut))
|
|
|
|
EXTRA_OBJS += techlibs/ecp5/brams_init.mk techlibs/ecp5/brams_connect.mk
|
|
.SECONDARY: techlibs/ecp5/brams_init.mk techlibs/ecp5/brams_connect.mk
|
|
|
|
techlibs/ecp5/brams_init.mk: techlibs/ecp5/brams_init.py
|
|
$(Q) mkdir -p techlibs/ecp5
|
|
$(P) $(PYTHON_EXECUTABLE) $<
|
|
$(Q) touch $@
|
|
|
|
techlibs/ecp5/brams_connect.mk: techlibs/ecp5/brams_connect.py
|
|
$(Q) mkdir -p techlibs/ecp5
|
|
$(P) $(PYTHON_EXECUTABLE) $<
|
|
$(Q) touch $@
|
|
|
|
|
|
techlibs/ecp5/bram_init_1_2_4.vh: techlibs/ecp5/brams_init.mk
|
|
techlibs/ecp5/bram_init_9_18_36.vh: techlibs/ecp5/brams_init.mk
|
|
|
|
techlibs/ecp5/bram_conn_1.vh: techlibs/ecp5/brams_connect.mk
|
|
techlibs/ecp5/bram_conn_2.vh: techlibs/ecp5/brams_connect.mk
|
|
techlibs/ecp5/bram_conn_4.vh: techlibs/ecp5/brams_connect.mk
|
|
techlibs/ecp5/bram_conn_9.vh: techlibs/ecp5/brams_connect.mk
|
|
techlibs/ecp5/bram_conn_18.vh: techlibs/ecp5/brams_connect.mk
|
|
techlibs/ecp5/bram_conn_36.vh: techlibs/ecp5/brams_connect.mk
|
|
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_init_1_2_4.vh))
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_init_9_18_36.vh))
|
|
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_conn_1.vh))
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_conn_2.vh))
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_conn_4.vh))
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_conn_9.vh))
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_conn_18.vh))
|
|
$(eval $(call add_gen_share_file,share/ecp5,techlibs/ecp5/bram_conn_36.vh))
|