mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
xilinx: Add support for LUT RAM on LUT4-based devices.
There are multiple other kinds of RAMs supported on these devices, but RAM16X1D is the only dual-port one. Fixes #1549
This commit is contained in:
parent
d48950d92d
commit
89adef352f
5 changed files with 42 additions and 27 deletions
|
@ -38,7 +38,8 @@ $(eval $(call add_share_file,share/xilinx,techlibs/xilinx/xc7_brams_map.v))
|
|||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/xcu_brams_map.v))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/xcup_urams.txt))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/xcup_urams_map.v))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/lutrams.txt))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/lut4_lutrams.txt))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/lut6_lutrams.txt))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/lutrams_map.v))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/arith_map.v))
|
||||
$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/xc6s_ff_map.v))
|
||||
|
|
19
techlibs/xilinx/lut4_lutrams.txt
Normal file
19
techlibs/xilinx/lut4_lutrams.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
bram $__XILINX_RAM16X1D
|
||||
init 1
|
||||
abits 4
|
||||
dbits 1
|
||||
groups 2
|
||||
ports 1 1
|
||||
wrmode 0 1
|
||||
enable 0 1
|
||||
transp 0 0
|
||||
clocks 0 1
|
||||
clkpol 0 2
|
||||
endbram
|
||||
|
||||
|
||||
match $__XILINX_RAM16X1D
|
||||
min bits 2
|
||||
min wports 1
|
||||
make_outreg
|
||||
endmatch
|
|
@ -1,17 +1,3 @@
|
|||
|
||||
bram $__XILINX_RAM16X1D
|
||||
init 1
|
||||
abits 4
|
||||
dbits 1
|
||||
groups 2
|
||||
ports 1 1
|
||||
wrmode 0 1
|
||||
enable 0 1
|
||||
transp 0 0
|
||||
clocks 0 1
|
||||
clkpol 0 2
|
||||
endbram
|
||||
|
||||
bram $__XILINX_RAM32X1D
|
||||
init 1
|
||||
abits 5
|
||||
|
@ -105,16 +91,6 @@ bram $__XILINX_RAM64X1Q
|
|||
endbram
|
||||
|
||||
|
||||
# Disabled for now, pending support for LUT4 arches
|
||||
# since on LUT6 arches this occupies same area as
|
||||
# a RAM32X1D
|
||||
#match $__XILINX_RAM16X1D
|
||||
# min bits 2
|
||||
# min wports 1
|
||||
# make_outreg
|
||||
# or_next_if_better
|
||||
#endmatch
|
||||
|
||||
match $__XILINX_RAM32X1D
|
||||
min bits 3
|
||||
min wports 1
|
|
@ -318,7 +318,6 @@ struct SynthXilinxPass : public ScriptPass
|
|||
if (lut_size != 6) {
|
||||
log_warning("Shift register inference not yet supported for family %s.\n", family.c_str());
|
||||
nosrl = true;
|
||||
nolutram = true;
|
||||
}
|
||||
|
||||
if (widemux != 0 && widemux < 2)
|
||||
|
@ -518,7 +517,7 @@ struct SynthXilinxPass : public ScriptPass
|
|||
|
||||
if (check_label("map_lutram", "(skip if '-nolutram')")) {
|
||||
if (!nolutram || help_mode) {
|
||||
run("memory_bram -rules +/xilinx/lutrams.txt");
|
||||
run("memory_bram -rules +/xilinx/lut" + lut_size_s + "_lutrams.txt");
|
||||
run("techmap -map +/xilinx/lutrams_map.v");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue