loadstore testcase: read at random addresses
[soc.git] / src / soc / experiment / test / test_loadstore1.py
1 from nmigen import (C, Module, Signal, Elaboratable, Mux, Cat, Repl, Signal)
2 from nmigen.cli import main
3 from nmigen.cli import rtlil
4 from nmutil.mask import Mask, masked
5 from nmutil.util import Display
6 from random import randint, seed
7 from nmigen.sim import Simulator, Delay, Settle
8 from nmutil.util import wrap
9
10 from soc.config.test.test_pi2ls import pi_ld, pi_st, pi_ldst, wait_busy
11 #from soc.config.test.test_pi2ls import pi_st_debug
12 from soc.config.test.test_loadstore import TestMemPspec
13 from soc.config.loadstore import ConfigMemoryPortInterface
14
15 from soc.fu.ldst.loadstore import LoadStore1
16 from soc.experiment.mmu import MMU
17 from soc.experiment.test import pagetables
18
19 from nmigen.compat.sim import run_simulation
20 from random import random
21
22 stop = False
23
24 def wb_get(wb, mem):
25 """simulator process for getting memory load requests
26 """
27
28 global stop
29 assert(stop==False)
30
31 while not stop:
32 while True: # wait for dc_valid
33 if stop:
34 return
35 cyc = yield (wb.cyc)
36 stb = yield (wb.stb)
37 if cyc and stb:
38 break
39 yield
40 addr = (yield wb.adr) << 3
41 if addr not in mem:
42 print (" WB LOOKUP NO entry @ %x, returning zero" % (addr))
43
44 # read or write?
45 we = (yield wb.we)
46 if we:
47 store = (yield wb.dat_w)
48 sel = (yield wb.sel)
49 data = mem.get(addr, 0)
50 # note we assume 8-bit sel, here
51 res = 0
52 for i in range(8):
53 mask = 0xff << (i*8)
54 if sel & (1<<i):
55 res |= store & mask
56 else:
57 res |= data & mask
58 mem[addr] = res
59 print (" DCACHE set %x mask %x data %x" % (addr, sel, res))
60 else:
61 data = mem.get(addr, 0)
62 yield wb.dat_r.eq(data)
63 print (" DCACHE get %x data %x" % (addr, data))
64
65 yield wb.ack.eq(1)
66 yield
67 yield wb.ack.eq(0)
68 yield
69
70 def setup_mmu():
71
72 global stop
73 stop = False
74
75 pspec = TestMemPspec(ldst_ifacetype='mmu_cache_wb',
76 imem_ifacetype='',
77 addr_wid=48,
78 #disable_cache=True, # hmmm...
79 mask_wid=8,
80 reg_wid=64)
81
82 m = Module()
83 comb = m.d.comb
84 cmpi = ConfigMemoryPortInterface(pspec)
85 m.submodules.ldst = ldst = cmpi.pi
86 m.submodules.mmu = mmu = MMU()
87 dcache = ldst.dcache
88
89 l_in, l_out = mmu.l_in, mmu.l_out
90 d_in, d_out = dcache.d_in, dcache.d_out
91 wb_out, wb_in = dcache.wb_out, dcache.wb_in
92
93 # link mmu and dcache together
94 m.d.comb += dcache.m_in.eq(mmu.d_out) # MMUToDCacheType
95 m.d.comb += mmu.d_in.eq(dcache.m_out) # DCacheToMMUType
96
97 # link ldst and MMU together
98 comb += l_in.eq(ldst.m_out)
99 comb += ldst.m_in.eq(l_out)
100
101 return m, cmpi
102
103 test_exceptions = True
104
105 def _test_loadstore1_invalid(dut, mem):
106 mmu = dut.submodules.mmu
107 pi = dut.submodules.ldst.pi
108 global stop
109 stop = False
110
111 print("=== test invalid ===")
112
113 addr = 0
114 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
115 print("ld_data",ld_data,exc)
116 assert(exc=="slow")
117 invalid = yield pi.exc_o.invalid
118 assert(invalid==1)
119
120 print("=== test invalid done ===")
121
122 stop = True
123
124
125 def _test_loadstore1(dut, mem):
126 mmu = dut.submodules.mmu
127 pi = dut.submodules.ldst.pi
128 global stop
129 stop = False
130
131 yield mmu.rin.prtbl.eq(0x1000000) # set process table
132 yield
133
134 addr = 0x100e0
135 data = 0xf553b658ba7e1f51
136
137 yield from pi_st(pi, addr, data, 8, msr_pr=1)
138 yield
139
140 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
141 assert ld_data == 0xf553b658ba7e1f51
142 assert exc is None
143 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
144 assert ld_data == 0xf553b658ba7e1f51
145 assert exc is None
146
147 print("do_dcbz ===============")
148 yield from pi_st(pi, addr, data, 8, msr_pr=1, is_dcbz=1)
149 print("done_dcbz ===============")
150 yield
151
152 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
153 print("ld_data after dcbz")
154 print(ld_data)
155 assert ld_data == 0
156 assert exc is None
157
158 if test_exceptions:
159 print("=== alignment error (ld) ===")
160 addr = 0xFF100e0FF
161 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
162 alignment = yield pi.exc_o.alignment
163 happened = yield pi.exc_o.happened
164 dar = yield pi.dar_o
165 assert(happened==1)
166 assert(alignment==1)
167 assert(dar==addr)
168 assert(exc=="fast")
169 yield from wait_busy(pi, debug="pi_ld_E_alignment_error")
170 # wait is only needed in case of in exception here
171 print("=== alignment error test passed (ld) ===")
172
173 print("=== alignment error (st) ===")
174 addr = 0xFF100e0FF
175 exc = yield from pi_st(pi, addr,0, 8, msr_pr=1)
176 alignment = yield pi.exc_o.alignment
177 happened = yield pi.exc_o.happened
178 dar = yield pi.dar_o
179 assert(happened==1)
180 assert(alignment==1)
181 assert(dar==addr)
182 assert(exc=="fast")
183 yield from wait_busy(pi, debug="pi_st_E_alignment_error")
184 # wait is only needed in case of in exception here
185 print("=== alignment error test passed (st) ===")
186 yield # IMPORTANT: wait one clock cycle after failed st
187
188 print("=== no error ===")
189 addr = 0x100e0
190 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
191 print("ld_data",ld_data,exc)
192 print("=== no error done ===")
193
194 # test read at random addresses
195 for i in range(0,40):
196 n = int(random()*0x100000)
197 addr = 0x10000 + n*16
198 print("== random addr ==")
199 print("ld[RANDOM]",addr)
200 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
201 print("ld_data[RANDOM]",ld_data,exc,addr)
202 assert(exc==None)
203
204 stop = True
205
206 def test_loadstore1():
207
208 m, cmpi = setup_mmu()
209
210 mem = pagetables.test1
211
212 # nmigen Simulation
213 sim = Simulator(m)
214 sim.add_clock(1e-6)
215
216 sim.add_sync_process(wrap(_test_loadstore1(m, mem)))
217 sim.add_sync_process(wrap(wb_get(cmpi.wb_bus(), mem)))
218 with sim.write_vcd('test_loadstore1.vcd'):
219 sim.run()
220
221 def test_loadstore1_invalid():
222
223 m, cmpi = setup_mmu()
224
225 mem = {}
226
227 # nmigen Simulation
228 sim = Simulator(m)
229 sim.add_clock(1e-6)
230
231 sim.add_sync_process(wrap(_test_loadstore1_invalid(m, mem)))
232 sim.add_sync_process(wrap(wb_get(cmpi.wb_bus(), mem)))
233 with sim.write_vcd('test_loadstore1_invalid.vcd'):
234 sim.run()
235
236 if __name__ == '__main__':
237 test_loadstore1()
238 test_loadstore1_invalid()