fix test_loadstore1.py
[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
21 stop = False
22
23 def wb_get(wb, mem):
24 """simulator process for getting memory load requests
25 """
26
27 global stop
28 assert(stop==False)
29
30 while not stop:
31 while True: # wait for dc_valid
32 if stop:
33 return
34 cyc = yield (wb.cyc)
35 stb = yield (wb.stb)
36 if cyc and stb:
37 break
38 yield
39 addr = (yield wb.adr) << 3
40 if addr not in mem:
41 print (" WB LOOKUP NO entry @ %x, returning zero" % (addr))
42
43 # read or write?
44 we = (yield wb.we)
45 if we:
46 store = (yield wb.dat_w)
47 sel = (yield wb.sel)
48 data = mem.get(addr, 0)
49 # note we assume 8-bit sel, here
50 res = 0
51 for i in range(8):
52 mask = 0xff << (i*8)
53 if sel & (1<<i):
54 res |= store & mask
55 else:
56 res |= data & mask
57 mem[addr] = res
58 print (" DCACHE set %x mask %x data %x" % (addr, sel, res))
59 else:
60 data = mem.get(addr, 0)
61 yield wb.dat_r.eq(data)
62 print (" DCACHE get %x data %x" % (addr, data))
63
64 yield wb.ack.eq(1)
65 yield
66 yield wb.ack.eq(0)
67 yield
68
69 def setup_mmu():
70
71 global stop
72 stop = False
73
74 pspec = TestMemPspec(ldst_ifacetype='mmu_cache_wb',
75 imem_ifacetype='',
76 addr_wid=48,
77 #disable_cache=True, # hmmm...
78 mask_wid=8,
79 reg_wid=64)
80
81 m = Module()
82 comb = m.d.comb
83 cmpi = ConfigMemoryPortInterface(pspec)
84 m.submodules.ldst = ldst = cmpi.pi
85 m.submodules.mmu = mmu = MMU()
86 dcache = ldst.dcache
87
88 l_in, l_out = mmu.l_in, mmu.l_out
89 d_in, d_out = dcache.d_in, dcache.d_out
90 wb_out, wb_in = dcache.wb_out, dcache.wb_in
91
92 # link mmu and dcache together
93 m.d.comb += dcache.m_in.eq(mmu.d_out) # MMUToDCacheType
94 m.d.comb += mmu.d_in.eq(dcache.m_out) # DCacheToMMUType
95
96 # link ldst and MMU together
97 comb += l_in.eq(ldst.m_out)
98 comb += ldst.m_in.eq(l_out)
99
100 return m, cmpi
101
102 test_exceptions = True
103
104 def _test_loadstore1(dut, mem):
105 mmu = dut.submodules.mmu
106 pi = dut.submodules.ldst.pi
107 global stop
108 stop = False
109
110 yield mmu.rin.prtbl.eq(0x1000000) # set process table
111 yield
112
113 addr = 0x100e0
114 data = 0xf553b658ba7e1f51
115
116 yield from pi_st(pi, addr, data, 8, msr_pr=1)
117 yield
118
119 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
120 assert ld_data == 0xf553b658ba7e1f51
121 assert exc is None
122 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
123 assert ld_data == 0xf553b658ba7e1f51
124 assert exc is None
125
126 print("do_dcbz ===============")
127 yield from pi_st(pi, addr, data, 8, msr_pr=1, is_dcbz=1)
128 print("done_dcbz ===============")
129 yield
130
131 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
132 print("ld_data after dcbz")
133 print(ld_data)
134 assert ld_data == 0
135 assert exc is None
136
137 if test_exceptions:
138 print("=== alignment error (ld) ===")
139 addr = 0xFF100e0FF
140 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
141 alignment = yield pi.exc_o.alignment
142 happened = yield pi.exc_o.happened
143 dar = yield pi.dar_o
144 assert(happened==1)
145 assert(alignment==1)
146 assert(dar==addr)
147 assert(exc=="fast")
148 yield from wait_busy(pi, debug="pi_ld_E_alignment_error")
149 # wait is only needed in case of in exception here
150 print("=== alignment error test passed (ld) ===")
151
152 print("=== alignment error (st) ===")
153 addr = 0xFF100e0FF
154 exc = yield from pi_st(pi, addr,0, 8, msr_pr=1)
155 alignment = yield pi.exc_o.alignment
156 happened = yield pi.exc_o.happened
157 dar = yield pi.dar_o
158 assert(happened==1)
159 assert(alignment==1)
160 assert(dar==addr)
161 assert(exc=="fast")
162 yield from wait_busy(pi, debug="pi_st_E_alignment_error")
163 # wait is only needed in case of in exception here
164 print("=== alignment error test passed (st) ===")
165 yield # IMPORTANT: wait one clock cycle after failed st
166
167 print("=== no error ===")
168 addr = 0x100e0
169 ld_data, exc = yield from pi_ld(pi, addr, 8, msr_pr=1)
170 print("ld_data",ld_data,exc)
171 print("=== no error done ===")
172
173 stop = True
174
175 def test_loadstore1():
176
177 m, cmpi = setup_mmu()
178
179 mem = pagetables.test1
180
181 # nmigen Simulation
182 sim = Simulator(m)
183 sim.add_clock(1e-6)
184
185 sim.add_sync_process(wrap(_test_loadstore1(m, mem)))
186 sim.add_sync_process(wrap(wb_get(cmpi.wb_bus(), mem)))
187 with sim.write_vcd('test_loadstore1.vcd'):
188 sim.run()
189
190 if __name__ == '__main__':
191 test_loadstore1()