Skip to content

Commit f58394f

Browse files
committedMar 1, 2015
soc: add initial verilator sim support: ./make.py -t simple -p sim build-bitstream :)
1 parent 4f37d29 commit f58394f

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed
 

‎misoclib/com/uart/__init__.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ def __init__(self, phy):
1515
###
1616
self.sync += [
1717
If(self._rxtx.re,
18-
phy.tx.sink.stb.eq(1),
19-
phy.tx.sink.data.eq(self._rxtx.r),
20-
).Elif(phy.tx.sink.ack,
21-
phy.tx.sink.stb.eq(0)
18+
phy.sink.stb.eq(1),
19+
phy.sink.data.eq(self._rxtx.r),
20+
).Elif(phy.sink.ack,
21+
phy.sink.stb.eq(0)
2222
),
23-
If(phy.rx.source.stb,
24-
self._rxtx.w.eq(phy.rx.source.data)
23+
If(phy.source.stb,
24+
self._rxtx.w.eq(phy.source.data)
2525
)
2626
]
2727
self.comb += [
28-
self.ev.tx.trigger.eq(phy.tx.sink.stb & phy.tx.sink.ack),
29-
self.ev.rx.trigger.eq(phy.rx.source.stb) #phy.rx.source.ack supposed to be always 1
28+
self.ev.tx.trigger.eq(phy.sink.stb & phy.sink.ack),
29+
self.ev.rx.trigger.eq(phy.source.stb) #phy.source.ack supposed to be always 1
3030
]

‎misoclib/com/uart/phy/sim.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
class UARTPHYSim(Module):
55
def __init__(self, pads):
6-
self.dw = 8
7-
self.tuning_word = Signal(32)
86
self.sink = Sink([("data", 8)])
97
self.source = Source([("data", 8)])
108

‎misoclib/soc/__init__.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@
77
from migen.bus import wishbone, csr, wishbone2csr
88

99
from misoclib.com.uart.phy.serial import UARTPHYSerial
10+
from misoclib.com.uart.phy.sim import UARTPHYSim
1011
from misoclib.com import uart
1112
from misoclib.cpu import CPU, lm32, mor1kx
1213
from misoclib.cpu.peripherals import identifier, timer
1314

1415
def mem_decoder(address, start=26, end=29):
1516
return lambda a: a[start:end] == ((address >> (start+2)) & (2**(end-start))-1)
1617

18+
def is_sim(platform):
19+
if hasattr(platform, "is_sim"):
Has conversations. Original line has conversations.
20+
return platform.is_sim
21+
else:
22+
return False
23+
1724
class SoC(Module):
1825
csr_map = {
1926
"crg": 0, # user
@@ -107,7 +114,10 @@ def __init__(self, platform, clk_freq, cpu_or_bridge=None,
107114
self.register_mem("csr", self.mem_map["csr"], self.wishbone2csr.wishbone)
108115

109116
if with_uart:
110-
self.submodules.uart_phy = UARTPHYSerial(platform.request("serial"), clk_freq, uart_baudrate)
117+
if is_sim(platform):
118+
self.submodules.uart_phy = UARTPHYSim(platform.request("serial"))
119+
else:
120+
self.submodules.uart_phy = UARTPHYSerial(platform.request("serial"), clk_freq, uart_baudrate)
111121
self.submodules.uart = uart.UART(self.uart_phy)
112122

113123
if with_identifier:

1 commit comments

Comments
 (1)

sbourdeauducq commented on Mar 3, 2015

@sbourdeauducq
Member

Yay!

Please sign in to comment.