comment that variant for debug must be --variant=standard
[libresoc-litex.git] / sim.py
1 #!/usr/bin/env python3
2
3 # Notes for "Debug" mode:
4 # both microwatt and Libre-SOC implement (pretty much) the same DMI
5 # interface. TBD: really, there should be an OPF Debug SIG which
6 # defines this properly. still, these two are interoperable.
7 # https://git.libre-soc.org/?p=soc.git;a=blob;f=src/soc/debug/dmi.py
8 # https://github.com/antonblanchard/microwatt/blob/master/core_debug.vhdl
9
10 import os
11 import argparse
12
13 from migen import (Signal, FSM, If, Display, Finish, NextValue, NextState)
14
15 from litex.build.generic_platform import Pins, Subsignal
16 from litex.build.sim import SimPlatform
17 from litex.build.io import CRG
18 from litex.build.sim.config import SimConfig
19
20 from litex.soc.integration.soc import SoCRegion
21 from litex.soc.integration.soc_core import SoCCore
22 from litex.soc.integration.soc_sdram import SoCSDRAM
23 from litex.soc.integration.builder import Builder
24 from litex.soc.integration.common import get_mem_data
25
26 from litedram import modules as litedram_modules
27 from litedram.phy.model import SDRAMPHYModel
28 from litex.tools.litex_sim import sdram_module_nphases, get_sdram_phy_settings
29
30 from litex.tools.litex_sim import Platform
31
32 from libresoc import LibreSoC
33 from microwatt import Microwatt
34
35 # HACK!
36 from litex.soc.integration.soc import SoCCSRHandler
37 SoCCSRHandler.supported_address_width.append(12)
38
39 # LibreSoCSim -----------------------------------------------------------------
40
41 class LibreSoCSim(SoCSDRAM):
42 def __init__(self, cpu="libresoc", variant="standardjtag", debug=False,
43 with_sdram=True,
44 sdram_module = "AS4C16M16",
45 #sdram_data_width = 16,
46 #sdram_module = "MT48LC16M16",
47 sdram_data_width = 16,
48 irq_reserved_irqs = {'uart': 0},
49 ):
50 assert cpu in ["libresoc", "microwatt"]
51 platform = Platform()
52 sys_clk_freq = int(100e6)
53
54 #ram_fname = "/home/lkcl/src/libresoc/microwatt/" \
55 # "hello_world/hello_world.bin"
56 #ram_fname = "/home/lkcl/src/libresoc/microwatt/" \
57 # "tests/1.bin"
58 #ram_fname = "/tmp/test.bin"
59 #ram_fname = "/home/lkcl/src/libresoc/microwatt/" \
60 # "micropython/firmware.bin"
61 #ram_fname = "/home/lkcl/src/libresoc/microwatt/" \
62 # "tests/xics/xics.bin"
63 #ram_fname = "/home/lkcl/src/libresoc/microwatt/" \
64 # "tests/decrementer/decrementer.bin"
65 #ram_fname = "/home/lkcl/src/libresoc/microwatt/" \
66 # "hello_world/hello_world.bin"
67 ram_fname = None
68
69 # reserve XICS ICP and XICS memory addresses.
70 self.mem_map['xicsicp'] = 0xc0004000
71 self.mem_map['xicsics'] = 0xc0005000
72 self.mem_map['gpio'] = 0xc0007000
73 #self.csr_map["xicsicp"] = 8 # 8 x 0x800 == 0x4000
74 #self.csr_map["xicsics"] = 10 # 10 x 0x800 == 0x5000
75
76 ram_init = []
77 if ram_fname:
78 #ram_init = get_mem_data({
79 # ram_fname: "0x00000000",
80 # }, "little")
81 ram_init = get_mem_data(ram_fname, "little")
82
83 # remap the main RAM to reset-start-address
84 self.mem_map["main_ram"] = 0x00000000
85
86 # without sram nothing works, therefore move it to higher up
87 self.mem_map["sram"] = 0x90000000
88
89 # put UART at 0xc000200 (w00t! this works!)
90 self.csr_map["uart"] = 4
91
92
93 # SoCCore -------------------------------------------------------------
94 SoCSDRAM.__init__(self, platform, clk_freq=sys_clk_freq,
95 cpu_type = "microwatt",
96 cpu_cls = LibreSoC if cpu == "libresoc" \
97 else Microwatt,
98 #bus_data_width = 64,
99 csr_address_width = 12, # limit to 0x4000
100 cpu_variant = variant,
101 csr_data_width = 8,
102 l2_size = 0,
103 uart_name = "sim",
104 with_sdram = with_sdram,
105 sdram_module = sdram_module,
106 sdram_data_width = sdram_data_width,
107 integrated_rom_size = 0 if ram_fname else 0x10000,
108 integrated_sram_size = 0x40000,
109 #integrated_main_ram_init = ram_init,
110 integrated_main_ram_size = 0x00000000 if with_sdram \
111 else 0x10000000 , # 256MB
112 )
113 self.platform.name = "sim"
114
115 if cpu == "libresoc":
116 # XICS interrupt devices
117 icp_addr = self.mem_map['xicsicp']
118 icp_wb = self.cpu.xics_icp
119 icp_region = SoCRegion(origin=icp_addr, size=0x20, cached=False)
120 self.bus.add_slave(name='xicsicp', slave=icp_wb, region=icp_region)
121
122 ics_addr = self.mem_map['xicsics']
123 ics_wb = self.cpu.xics_ics
124 ics_region = SoCRegion(origin=ics_addr, size=0x1000, cached=False)
125 self.bus.add_slave(name='xicsics', slave=ics_wb, region=ics_region)
126
127 if "gpio" in variant:
128 # Simple GPIO peripheral
129 gpio_addr = self.mem_map['gpio']
130 gpio_wb = self.cpu.simple_gpio
131 gpio_region = SoCRegion(origin=gpio_addr, size=0x20, cached=False)
132 self.bus.add_slave(name='gpio', slave=gpio_wb, region=gpio_region)
133
134
135 # CRG -----------------------------------------------------------------
136 self.submodules.crg = CRG(platform.request("sys_clk"))
137
138 #ram_init = []
139
140 # SDRAM ----------------------------------------------------
141 if with_sdram:
142 sdram_clk_freq = int(100e6) # FIXME: use 100MHz timings
143 sdram_module_cls = getattr(litedram_modules, sdram_module)
144 sdram_rate = "1:{}".format(
145 sdram_module_nphases[sdram_module_cls.memtype])
146 sdram_module = sdram_module_cls(sdram_clk_freq, sdram_rate)
147 phy_settings = get_sdram_phy_settings(
148 memtype = sdram_module.memtype,
149 data_width = sdram_data_width,
150 clk_freq = sdram_clk_freq)
151 self.submodules.sdrphy = SDRAMPHYModel(sdram_module,
152 phy_settings,
153 init=ram_init
154 )
155 self.register_sdram(
156 self.sdrphy,
157 sdram_module.geom_settings,
158 sdram_module.timing_settings)
159 # FIXME: skip memtest to avoid corrupting memory
160 self.add_constant("MEMTEST_BUS_SIZE", 128//16)
161 self.add_constant("MEMTEST_DATA_SIZE", 128//16)
162 self.add_constant("MEMTEST_ADDR_SIZE", 128//16)
163 self.add_constant("MEMTEST_BUS_DEBUG", 1)
164 self.add_constant("MEMTEST_ADDR_DEBUG", 1)
165 self.add_constant("MEMTEST_DATA_DEBUG", 1)
166
167
168 # add JTAG platform pins
169 platform.add_extension([
170 ("jtag", 0,
171 Subsignal("tck", Pins(1)),
172 Subsignal("tms", Pins(1)),
173 Subsignal("tdi", Pins(1)),
174 Subsignal("tdo", Pins(1)),
175 )
176 ])
177
178 jtagpads = platform.request("jtag")
179 self.comb += self.cpu.jtag_tck.eq(jtagpads.tck)
180 self.comb += self.cpu.jtag_tms.eq(jtagpads.tms)
181 self.comb += self.cpu.jtag_tdi.eq(jtagpads.tdi)
182 self.comb += jtagpads.tdo.eq(self.cpu.jtag_tdo)
183
184
185 # Debug ---------------------------------------------------------------
186 # (enable with ./sim.py --debug --variant=standard)
187 if not debug:
188 return
189
190 # In debug mode, the DMI interface is used to perform single-step
191 # and dump of the full register set (MSR, r0-r31, CR, XER, PC).
192 # by running the exact same program with microwatt and libre-soc
193 # a straight "diff -u" of the complete progress dumps can be done
194 # and therefore computation instruction discrepancies found immediately
195 # and easily, running at "verilator" speed.
196 #
197 # the FSM is a bit of a dog's dinner, it relies on the way that DMI
198 # works, sending requests at periodic intervals. needs work. DoesTheJob.
199
200 # setup running of DMI FSM
201 dmi_addr = Signal(4)
202 dmi_din = Signal(64)
203 dmi_dout = Signal(64)
204 dmi_wen = Signal(1)
205 dmi_req = Signal(1)
206
207 # debug log out
208 dbg_addr = Signal(4)
209 dbg_dout = Signal(64)
210 dbg_msg = Signal(1)
211
212 # capture pc from dmi
213 pc = Signal(64)
214 active_dbg = Signal()
215 active_dbg_cr = Signal()
216 active_dbg_xer = Signal()
217
218 # xer flags
219 xer_so = Signal()
220 xer_ca = Signal()
221 xer_ca32 = Signal()
222 xer_ov = Signal()
223 xer_ov32 = Signal()
224
225 # increment counter, Stop after 100000 cycles
226 uptime = Signal(64)
227 self.sync += uptime.eq(uptime + 1)
228 #self.sync += If(uptime == 1000000000000, Finish())
229
230 # DMI FSM counter and FSM itself
231 dmicount = Signal(10)
232 dmirunning = Signal(1)
233 dmi_monitor = Signal(1)
234 dmifsm = FSM()
235 self.submodules += dmifsm
236
237 # DMI FSM
238 dmifsm.act("START",
239 If(dmi_req & dmi_wen,
240 (self.cpu.dmi_addr.eq(dmi_addr), # DMI Addr
241 self.cpu.dmi_din.eq(dmi_din), # DMI in
242 self.cpu.dmi_req.eq(1), # DMI request
243 self.cpu.dmi_wr.eq(1), # DMI write
244 If(self.cpu.dmi_ack,
245 (NextState("IDLE"),
246 )
247 ),
248 ),
249 ),
250 If(dmi_req & ~dmi_wen,
251 (self.cpu.dmi_addr.eq(dmi_addr), # DMI Addr
252 self.cpu.dmi_req.eq(1), # DMI request
253 self.cpu.dmi_wr.eq(0), # DMI read
254 If(self.cpu.dmi_ack,
255 # acknowledge received: capture data.
256 (NextState("IDLE"),
257 NextValue(dbg_addr, dmi_addr),
258 NextValue(dbg_dout, self.cpu.dmi_dout),
259 NextValue(dbg_msg, 1),
260 ),
261 ),
262 ),
263 )
264 )
265
266 # DMI response received: reset the dmi request and check if
267 # in "monitor" mode
268 dmifsm.act("IDLE",
269 If(dmi_monitor,
270 NextState("FIRE_MONITOR"), # fire "monitor" on next cycle
271 ).Else(
272 NextState("START"), # back to start on next cycle
273 ),
274 NextValue(dmi_req, 0),
275 NextValue(dmi_addr, 0),
276 NextValue(dmi_din, 0),
277 NextValue(dmi_wen, 0),
278 )
279
280 # "monitor" mode fires off a STAT request
281 dmifsm.act("FIRE_MONITOR",
282 (NextValue(dmi_req, 1),
283 NextValue(dmi_addr, 1), # DMI STAT address
284 NextValue(dmi_din, 0),
285 NextValue(dmi_wen, 0), # read STAT
286 NextState("START"), # back to start on next cycle
287 )
288 )
289
290 self.comb += xer_so.eq((dbg_dout & 1) == 1)
291 self.comb += xer_ca.eq((dbg_dout & 4) == 4)
292 self.comb += xer_ca32.eq((dbg_dout & 8) == 8)
293 self.comb += xer_ov.eq((dbg_dout & 16) == 16)
294 self.comb += xer_ov32.eq((dbg_dout & 32) == 32)
295
296 # debug messages out
297 self.sync += If(dbg_msg,
298 (If(active_dbg & (dbg_addr == 0b10), # PC
299 Display("pc : %016x", dbg_dout),
300 ),
301 If(dbg_addr == 0b10, # PC
302 pc.eq(dbg_dout), # capture PC
303 ),
304 #If(dbg_addr == 0b11, # MSR
305 # Display(" msr: %016x", dbg_dout),
306 #),
307 If(dbg_addr == 0b1000, # CR
308 Display(" cr : %016x", dbg_dout),
309 ),
310 If(dbg_addr == 0b1001, # XER
311 Display(" xer: so %d ca %d 32 %d ov %d 32 %d",
312 xer_so, xer_ca, xer_ca32, xer_ov, xer_ov32),
313 ),
314 If(dbg_addr == 0b101, # GPR
315 Display(" gpr: %016x", dbg_dout),
316 ),
317 # also check if this is a "stat"
318 If(dbg_addr == 1, # requested a STAT
319 #Display(" stat: %x", dbg_dout),
320 If(dbg_dout & 2, # bit 2 of STAT is "stopped" mode
321 dmirunning.eq(1), # continue running
322 dmi_monitor.eq(0), # and stop monitor mode
323 ),
324 ),
325 dbg_msg.eq(0)
326 )
327 )
328
329 # kick off a "stop"
330 self.sync += If(uptime == 0,
331 (dmi_addr.eq(0), # CTRL
332 dmi_din.eq(1<<0), # STOP
333 dmi_req.eq(1),
334 dmi_wen.eq(1),
335 )
336 )
337
338 self.sync += If(uptime == 4,
339 dmirunning.eq(1),
340 )
341
342 self.sync += If(dmirunning,
343 dmicount.eq(dmicount + 1),
344 )
345
346 # loop every 1<<N cycles
347 cyclewid = 9
348
349 # get the PC
350 self.sync += If(dmicount == 4,
351 (dmi_addr.eq(0b10), # NIA
352 dmi_req.eq(1),
353 dmi_wen.eq(0),
354 )
355 )
356
357 # kick off a "step"
358 self.sync += If(dmicount == 8,
359 (dmi_addr.eq(0), # CTRL
360 dmi_din.eq(1<<3), # STEP
361 dmi_req.eq(1),
362 dmi_wen.eq(1),
363 dmirunning.eq(0), # stop counter, need to fire "monitor"
364 dmi_monitor.eq(1), # start "monitor" instead
365 )
366 )
367
368 # limit range of pc for debug reporting
369 #self.comb += active_dbg.eq((0x378c <= pc) & (pc <= 0x38d8))
370 #self.comb += active_dbg.eq((0x0 < pc) & (pc < 0x58))
371 self.comb += active_dbg.eq(1)
372
373
374 # get the MSR
375 self.sync += If(active_dbg & (dmicount == 12),
376 (dmi_addr.eq(0b11), # MSR
377 dmi_req.eq(1),
378 dmi_wen.eq(0),
379 )
380 )
381
382 if cpu == "libresoc": # XXX TODO: waiting on microwatt upstream patch
383 #self.comb += active_dbg_cr.eq((0x10300 <= pc) & (pc <= 0x12600))
384 self.comb += active_dbg_cr.eq(0)
385
386 # get the CR
387 self.sync += If(active_dbg_cr & (dmicount == 16),
388 (dmi_addr.eq(0b1000), # CR
389 dmi_req.eq(1),
390 dmi_wen.eq(0),
391 )
392 )
393
394 #self.comb += active_dbg_xer.eq((0x10300 <= pc) & (pc <= 0x1094c))
395 self.comb += active_dbg_xer.eq(active_dbg_cr)
396
397 # get the CR
398 self.sync += If(active_dbg_xer & (dmicount == 20),
399 (dmi_addr.eq(0b1001), # XER
400 dmi_req.eq(1),
401 dmi_wen.eq(0),
402 )
403 )
404
405 # read all 32 GPRs
406 for i in range(32):
407 self.sync += If(active_dbg & (dmicount == 24+(i*8)),
408 (dmi_addr.eq(0b100), # GSPR addr
409 dmi_din.eq(i), # r1
410 dmi_req.eq(1),
411 dmi_wen.eq(1),
412 )
413 )
414
415 self.sync += If(active_dbg & (dmicount == 28+(i*8)),
416 (dmi_addr.eq(0b101), # GSPR data
417 dmi_req.eq(1),
418 dmi_wen.eq(0),
419 )
420 )
421
422 # monitor bbus read/write
423 self.sync += If(active_dbg & self.cpu.dbus.stb & self.cpu.dbus.ack,
424 Display(" [%06x] dadr: %8x, we %d s %01x w %016x r: %016x",
425 #uptime,
426 0,
427 self.cpu.dbus.adr,
428 self.cpu.dbus.we,
429 self.cpu.dbus.sel,
430 self.cpu.dbus.dat_w,
431 self.cpu.dbus.dat_r
432 )
433 )
434
435 return
436
437 # monitor ibus write
438 self.sync += If(active_dbg & self.cpu.ibus.stb & self.cpu.ibus.ack &
439 self.cpu.ibus.we,
440 Display(" [%06x] iadr: %8x, s %01x w %016x",
441 #uptime,
442 0,
443 self.cpu.ibus.adr,
444 self.cpu.ibus.sel,
445 self.cpu.ibus.dat_w,
446 )
447 )
448 # monitor ibus read
449 self.sync += If(active_dbg & self.cpu.ibus.stb & self.cpu.ibus.ack &
450 ~self.cpu.ibus.we,
451 Display(" [%06x] iadr: %8x, s %01x r %016x",
452 #uptime,
453 0,
454 self.cpu.ibus.adr,
455 self.cpu.ibus.sel,
456 self.cpu.ibus.dat_r
457 )
458 )
459
460 # Build -----------------------------------------------------------------------
461
462 def main():
463 parser = argparse.ArgumentParser(description="LiteX LibreSoC CPU Sim")
464 parser.add_argument("--cpu", default="libresoc",
465 help="CPU to use: libresoc (default) or microwatt")
466 parser.add_argument("--variant", default="standardjtag",
467 help="Specify variant with different features")
468 parser.add_argument("--debug", action="store_true",
469 help="Enable debug traces")
470 parser.add_argument("--trace", action="store_true",
471 help="Enable tracing")
472 parser.add_argument("--trace-start", default=0,
473 help="Cycle to start FST tracing")
474 parser.add_argument("--trace-end", default=-1,
475 help="Cycle to end FST tracing")
476 args = parser.parse_args()
477
478 sim_config = SimConfig(default_clk="sys_clk")
479 sim_config.add_module("serial2console", "serial")
480 sim_config.add_module("jtagremote", "jtag", args={'port': 44853})
481
482 for i in range(2):
483 soc = LibreSoCSim(cpu=args.cpu, debug=args.debug, variant=args.variant)
484 builder = Builder(soc,compile_gateware = i!=0)
485 builder.build(sim_config=sim_config,
486 run = i!=0,
487 trace = args.trace,
488 trace_start = int(args.trace_start),
489 trace_end = int(args.trace_end),
490 trace_fst = 0)
491 os.chdir("../")
492
493 if __name__ == "__main__":
494 main()