]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
serial: uartlite: Add support for debug console
authorMichal Simek <michal.simek@xilinx.com>
Mon, 14 Dec 2015 15:55:10 +0000 (16:55 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Wed, 27 Jan 2016 14:55:49 +0000 (15:55 +0100)
Add support for debug console.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Thomas Chou <thomas@wytron.com.tw>
drivers/serial/Kconfig
drivers/serial/serial_xuartlite.c

index 83068cfd50f4c53aac9f1a906602be22624d4b5f..e78c5d34796db0f968313e05b7d79b1431c857cd 100644 (file)
@@ -112,6 +112,13 @@ config DEBUG_UART_S5P
          will need to provide parameters to make this work. The driver will
          be available until the real driver-model serial is running.
 
+config DEBUG_UART_UARTLITE
+       bool "Xilinx Uartlite"
+       help
+         Select this to enable a debug UART using the serial_uartlite driver.
+         You will need to provide parameters to make this work. The driver will
+         be available until the real driver-model serial is running.
+
 config DEBUG_UART_ZYNQ
        bool "Xilinx Zynq"
        help
index 157e14dedc4fb1c356bf54836351d57cc7488cdd..a2e93039257133aa97ef101d5f2208ebb100f187 100644 (file)
@@ -114,3 +114,29 @@ U_BOOT_DRIVER(serial_uartlite) = {
        .ops    = &uartlite_serial_ops,
        .flags = DM_FLAG_PRE_RELOC,
 };
+
+#ifdef CONFIG_DEBUG_UART_UARTLITE
+
+#include <debug_uart.h>
+
+static inline void _debug_uart_init(void)
+{
+       struct uartlite *regs = (struct uartlite *)CONFIG_DEBUG_UART_BASE;
+
+       out_be32(&regs->control, 0);
+       out_be32(&regs->control, ULITE_CONTROL_RST_RX | ULITE_CONTROL_RST_TX);
+       in_be32(&regs->control);
+}
+
+static inline void _debug_uart_putc(int ch)
+{
+       struct uartlite *regs = (struct uartlite *)CONFIG_DEBUG_UART_BASE;
+
+       while (in_be32(&regs->status) & SR_TX_FIFO_FULL)
+               ;
+
+       out_be32(&regs->tx_fifo, ch & 0xff);
+}
+
+DEBUG_UART_FUNCS
+#endif