aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/anlogic/dram_init_16x4.vh
diff options
context:
space:
mode:
authorIcenowy Zheng <icenowy@aosc.io>2018-12-19 10:18:47 +0800
committerIcenowy Zheng <icenowy@aosc.io>2018-12-20 07:56:15 +0800
commit90d00182cfe358438d777f2ca7abacb4c6a2733c (patch)
tree5af285a46aa934a6b8b3a1aa316a26983a1054f4 /techlibs/anlogic/dram_init_16x4.vh
parent93d44bb9a613b46a80642b8ce71295db18fadbc5 (diff)
downloadyosys-90d00182cfe358438d777f2ca7abacb4c6a2733c.tar.gz
yosys-90d00182cfe358438d777f2ca7abacb4c6a2733c.tar.bz2
yosys-90d00182cfe358438d777f2ca7abacb4c6a2733c.zip
anlogic: implement DRAM initialization
As the TD tool doesn't accept the DRAM cell to contain unknown values in the initial value, the initialzation support of DRAM is previously skipped. Now add the support by add a new pass to determine unknown values in the initial value. Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Diffstat (limited to 'techlibs/anlogic/dram_init_16x4.vh')
-rw-r--r--techlibs/anlogic/dram_init_16x4.vh16
1 files changed, 16 insertions, 0 deletions
diff --git a/techlibs/anlogic/dram_init_16x4.vh b/techlibs/anlogic/dram_init_16x4.vh
new file mode 100644
index 000000000..32fb1578c
--- /dev/null
+++ b/techlibs/anlogic/dram_init_16x4.vh
@@ -0,0 +1,16 @@
+.INIT_D0({INIT[15*4+0], INIT[14*4+0], INIT[13*4+0], INIT[12*4+0],
+ INIT[11*4+0], INIT[10*4+0], INIT[9*4+0], INIT[8*4+0],
+ INIT[7*4+0], INIT[6*4+0], INIT[5*4+0], INIT[4*4+0],
+ INIT[3*4+0], INIT[2*4+0], INIT[1*4+0], INIT[0*4+0]}),
+.INIT_D1({INIT[15*4+1], INIT[14*4+1], INIT[13*4+1], INIT[12*4+1],
+ INIT[11*4+1], INIT[10*4+1], INIT[9*4+1], INIT[8*4+1],
+ INIT[7*4+1], INIT[6*4+1], INIT[5*4+1], INIT[4*4+1],
+ INIT[3*4+1], INIT[2*4+1], INIT[1*4+1], INIT[0*4+1]}),
+.INIT_D2({INIT[15*4+2], INIT[14*4+2], INIT[13*4+2], INIT[12*4+2],
+ INIT[11*4+2], INIT[10*4+2], INIT[9*4+2], INIT[8*4+2],
+ INIT[7*4+2], INIT[6*4+2], INIT[5*4+2], INIT[4*4+2],
+ INIT[3*4+2], INIT[2*4+2], INIT[1*4+2], INIT[0*4+2]}),
+.INIT_D3({INIT[15*4+3], INIT[14*4+3], INIT[13*4+3], INIT[12*4+3],
+ INIT[11*4+3], INIT[10*4+3], INIT[9*4+3], INIT[8*4+3],
+ INIT[7*4+3], INIT[6*4+3], INIT[5*4+3], INIT[4*4+3],
+ INIT[3*4+3], INIT[2*4+3], INIT[1*4+3], INIT[0*4+3]})