cores/uart: rename BridgedUART to UARTEmulator and rework/simplify it. Also integrated it in SoCCore with uart_name="emulator"

This commit is contained in:
Florent Kermarrec 2020-01-12 21:11:44 +01:00
parent d40bf9d8a7
commit 26fe45fce1
2 changed files with 25 additions and 25 deletions

View File

@ -13,13 +13,15 @@ from litex.soc.interconnect.csr_eventmanager import *
from litex.soc.interconnect import stream
from litex.soc.interconnect.wishbonebridge import WishboneStreamingBridge
# RS232 PHY ----------------------------------------------------------------------------------------
class RS232PHYInterface:
class UARTInterface:
def __init__(self):
self.sink = stream.Endpoint([("data", 8)])
self.source = stream.Endpoint([("data", 8)])
# RS232 PHY ----------------------------------------------------------------------------------------
class RS232PHYInterface(UARTInterface):
pass
class RS232PHYRX(Module):
def __init__(self, pads, tuning_word):
@ -268,25 +270,21 @@ class UARTMultiplexer(Module):
]
self.comb += Case(self.sel, cases)
class BridgedUart(UART):
"""
Creates a UART that's fully compatible with the existing
UART class, except it adds a second UART that can be read
over the Wishbone bridge.
# UART Emulator ------------------------------------------------------------------------------------
This allows a program on the other end of the Wishbone
bridge to act as a terminal emulator on a board where
the UART is otherwise used as a Wishbone bridge.
class UARTEmulator(UART):
"""
def __init__(self, **kw):
class BridgedUartPhy:
def __init__(self):
self.sink = stream.Endpoint([("data", 8)])
self.source = stream.Endpoint([("data", 8)])
class CrossoverPhy:
def __init__(self, phy):
self.source = phy.sink
self.sink = phy.source
phy = BridgedUartPhy()
UART.__init__(self, phy, **kw)
self.submodules.xover = UART(CrossoverPhy(phy))
UART emulation over Wishbone bridge.
Creates a fully compatible UART that can be used by the CPU as a regular UART and adds a second
UART, cross-connected to the main one to allow terminal emulation over a Wishbone bridge.
"""
def __init__(self, **kwargs):
uart_phy = UARTInterface()
emul_phy = UARTInterface()
UART.__init__(self, uart_phy, **kwargs)
self.submodules.emul = UART(emul_phy)
self.comb += [
uart_phy.source.connect(emul_phy.sink),
emul_phy.source.connect(uart_phy.sink)
]

View File

@ -241,6 +241,8 @@ class SoCCore(Module):
if with_uart:
if uart_stub:
self.submodules.uart = uart.UARTStub()
elif uart_name == "emulator":
self.submodules.uart = uart.UARTEmulator()
else:
if uart_name == "jtag_atlantic":
from litex.soc.cores.jtag import JTAGAtlantic