uart: Support multiple ports
The port for console remains to be a compile time constant. The Kconfig option is changed to select an UART port with index to avoid putting map of UART base addresses in Kconfigs. With this change it is possible to have other than debug console on different UART port. Change-Id: Ie1845a946f8d3b2604ef5404edb31b2e811f3ccd Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5342 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks <dhendrix@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
@@ -97,7 +97,7 @@ void uart_fill_lb(void *data)
|
||||
{
|
||||
struct lb_serial serial;
|
||||
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
|
||||
serial.baseaddr = uart_platform_base(0);
|
||||
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
|
||||
serial.baud = default_baudrate();
|
||||
lb_add_serial(&serial, data);
|
||||
|
||||
|
@@ -21,26 +21,21 @@ static void pl011_uart_tx_byte(unsigned int *uart_base, unsigned char data)
|
||||
*uart_base = (unsigned int)data;
|
||||
}
|
||||
|
||||
unsigned int uart_platform_base(int idx)
|
||||
{
|
||||
return CONFIG_CONSOLE_SERIAL_UART_ADDRESS;
|
||||
}
|
||||
|
||||
void uart_init(void)
|
||||
void uart_init(int idx)
|
||||
{
|
||||
}
|
||||
|
||||
void uart_tx_byte(unsigned char data)
|
||||
void uart_tx_byte(int idx, unsigned char data)
|
||||
{
|
||||
unsigned int *uart_base = uart_platform_baseptr(0);
|
||||
unsigned int *uart_base = uart_platform_baseptr(idx);
|
||||
pl011_uart_tx_byte(uart_base, data);
|
||||
}
|
||||
|
||||
void uart_tx_flush(void)
|
||||
void uart_tx_flush(int idx)
|
||||
{
|
||||
}
|
||||
|
||||
unsigned char uart_rx_byte(void)
|
||||
unsigned char uart_rx_byte(int idx)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
@@ -50,7 +45,7 @@ void uart_fill_lb(void *data)
|
||||
{
|
||||
struct lb_serial serial;
|
||||
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
|
||||
serial.baseaddr = uart_platform_base(0);
|
||||
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
|
||||
serial.baud = default_baudrate();
|
||||
lb_add_serial(&serial, data);
|
||||
|
||||
|
@@ -19,6 +19,7 @@
|
||||
*/
|
||||
|
||||
#include <rules.h>
|
||||
#include <stdlib.h>
|
||||
#include <arch/io.h>
|
||||
#include <console/uart.h>
|
||||
#include <trace.h>
|
||||
@@ -102,37 +103,36 @@ static void uart8250_init(unsigned base_port, unsigned divisor)
|
||||
ENABLE_TRACE;
|
||||
}
|
||||
|
||||
/* FIXME: Needs uart index from Kconfig.
|
||||
* Already use array as a work-around for ROMCC.
|
||||
*/
|
||||
static const unsigned bases[1] = { CONFIG_TTYS0_BASE };
|
||||
static const unsigned bases[] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
|
||||
|
||||
unsigned int uart_platform_base(int idx)
|
||||
{
|
||||
return bases[idx];
|
||||
if (idx < ARRAY_SIZE(bases))
|
||||
return bases[idx];
|
||||
return 0;
|
||||
}
|
||||
|
||||
void uart_init(void)
|
||||
void uart_init(int idx)
|
||||
{
|
||||
unsigned int div;
|
||||
div = uart_baudrate_divisor(default_baudrate(), BAUDRATE_REFCLK,
|
||||
BAUDRATE_OVERSAMPLE);
|
||||
uart8250_init(bases[0], div);
|
||||
uart8250_init(uart_platform_base(idx), div);
|
||||
}
|
||||
|
||||
void uart_tx_byte(unsigned char data)
|
||||
void uart_tx_byte(int idx, unsigned char data)
|
||||
{
|
||||
uart8250_tx_byte(bases[0], data);
|
||||
uart8250_tx_byte(uart_platform_base(idx), data);
|
||||
}
|
||||
|
||||
unsigned char uart_rx_byte(void)
|
||||
unsigned char uart_rx_byte(int idx)
|
||||
{
|
||||
return uart8250_rx_byte(bases[0]);
|
||||
return uart8250_rx_byte(uart_platform_base(idx));
|
||||
}
|
||||
|
||||
void uart_tx_flush(void)
|
||||
void uart_tx_flush(int idx)
|
||||
{
|
||||
uart8250_tx_flush(bases[0]);
|
||||
uart8250_tx_flush(uart_platform_base(idx));
|
||||
}
|
||||
|
||||
#if ENV_RAMSTAGE
|
||||
@@ -140,7 +140,7 @@ void uart_fill_lb(void *data)
|
||||
{
|
||||
struct lb_serial serial;
|
||||
serial.type = LB_SERIAL_TYPE_IO_MAPPED;
|
||||
serial.baseaddr = uart_platform_base(0);
|
||||
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
|
||||
serial.baud = default_baudrate();
|
||||
lb_add_serial(&serial, data);
|
||||
|
||||
|
@@ -89,9 +89,9 @@ static void uart8250_mem_init(unsigned base_port, unsigned divisor)
|
||||
write8(base_port + UART_LCR, CONFIG_TTYS0_LCS);
|
||||
}
|
||||
|
||||
void uart_init(void)
|
||||
void uart_init(int idx)
|
||||
{
|
||||
u32 base = uart_platform_base(0);
|
||||
u32 base = uart_platform_base(idx);
|
||||
if (!base)
|
||||
return;
|
||||
|
||||
@@ -100,25 +100,25 @@ void uart_init(void)
|
||||
uart8250_mem_init(base, div);
|
||||
}
|
||||
|
||||
void uart_tx_byte(unsigned char data)
|
||||
void uart_tx_byte(int idx, unsigned char data)
|
||||
{
|
||||
u32 base = uart_platform_base(0);
|
||||
u32 base = uart_platform_base(idx);
|
||||
if (!base)
|
||||
return;
|
||||
uart8250_mem_tx_byte(base, data);
|
||||
}
|
||||
|
||||
unsigned char uart_rx_byte(void)
|
||||
unsigned char uart_rx_byte(int idx)
|
||||
{
|
||||
u32 base = uart_platform_base(0);
|
||||
u32 base = uart_platform_base(idx);
|
||||
if (!base)
|
||||
return 0xff;
|
||||
return uart8250_mem_rx_byte(base);
|
||||
}
|
||||
|
||||
void uart_tx_flush(void)
|
||||
void uart_tx_flush(int idx)
|
||||
{
|
||||
u32 base = uart_platform_base(0);
|
||||
u32 base = uart_platform_base(idx);
|
||||
if (!base)
|
||||
return;
|
||||
uart8250_mem_tx_flush(base);
|
||||
|
Reference in New Issue
Block a user