targets/uartbone: Update with LiteX change.
This commit is contained in:
parent
72a951081a
commit
ce121663ff
|
@ -141,7 +141,7 @@ class BaseSoC(SoCCore):
|
|||
|
||||
# UartBone ---------------------------------------------------------------------------------
|
||||
if with_uartbone:
|
||||
self.add_uartbone("serial", baudrate=1e6)
|
||||
self.add_uartbone(baudrate=1e6)
|
||||
|
||||
# Leds -------------------------------------------------------------------------------------
|
||||
if with_led_chaser:
|
||||
|
|
|
@ -108,7 +108,7 @@ class BaseSoC(SoCCore):
|
|||
|
||||
# UartBone ---------------------------------------------------------------------------------
|
||||
if with_uartbone:
|
||||
self.add_uartbone("serial", baudrate=1e6)
|
||||
self.add_uartbone(baudrate=1e6)
|
||||
|
||||
# Leds -------------------------------------------------------------------------------------
|
||||
if with_led_chaser:
|
||||
|
|
|
@ -196,7 +196,7 @@ class BaseSoC(SoCCore):
|
|||
if with_uartbone:
|
||||
if board != "i5a-907":
|
||||
raise ValueError("uartbone only supported on i5a-907")
|
||||
self.add_uartbone(name="uartbone")
|
||||
self.add_uartbone(uart_name="uartbone")
|
||||
|
||||
# SPI Flash --------------------------------------------------------------------------------
|
||||
if with_spi_flash:
|
||||
|
|
|
@ -98,7 +98,7 @@ class BaseSoC(SoCCore):
|
|||
# Add a UARTBone bridge --------------------------------------------------------------------
|
||||
debug_uart = False
|
||||
if debug_uart:
|
||||
self.add_uartbone(name="serial")
|
||||
self.add_uartbone()
|
||||
|
||||
# Flash --------------------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -183,7 +183,7 @@ class BaseSoC(SoCCore):
|
|||
# LiteScope Analyzer -----------------------------------------------------------------------
|
||||
if with_analyzer:
|
||||
from litescope import LiteScopeAnalyzer
|
||||
self.add_uartbone(name="debug_serial")
|
||||
self.add_uartbone(uart_name="debug_serial")
|
||||
analyzer_signals = [
|
||||
ulpi_data.din,
|
||||
utmi.linestate,
|
||||
|
|
|
@ -86,7 +86,7 @@ class BaseSoC(SoCCore):
|
|||
|
||||
# UARTbone ---------------------------------------------------------------------------------
|
||||
if with_uartbone:
|
||||
self.add_uartbone(name=real_uart_name, baudrate=kwargs["uart_baudrate"])
|
||||
self.add_uartbone(uart_name=real_uart_name, baudrate=kwargs["uart_baudrate"])
|
||||
|
||||
# JTAGbone ---------------------------------------------------------------------------------
|
||||
if with_jtagbone:
|
||||
|
|
Loading…
Reference in New Issue