mb/*/*: Remove rtc nvram configurable baud rate
There have been discussions about removing this since it does not seem to be used much and only creates troubles for boards without defaults, not to mention that it was configurable on many boards that do not even feature uart. It is still possible to configure the baudrate through the Kconfig option. Change-Id: I71698d9b188eeac73670b18b757dff5fcea0df41 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/19682 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
1850aa6df6
commit
b29078e401
242 changed files with 214 additions and 1789 deletions
|
|
@ -105,7 +105,7 @@ void uart_init(int idx)
|
|||
struct a10_uart *uart_base = uart_platform_baseptr(idx);
|
||||
|
||||
/* Use default 8N1 encoding */
|
||||
a10_uart_configure(uart_base, default_baudrate(),
|
||||
a10_uart_configure(uart_base, CONFIG_TTYS0_BAUD,
|
||||
8, UART_PARITY_NONE, 1);
|
||||
a10_uart_enable_fifos(uart_base);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ void uart_fill_lb(void *data)
|
|||
struct lb_serial serial;
|
||||
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
|
||||
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
|
||||
serial.baud = default_baudrate();
|
||||
serial.baud = CONFIG_TTYS0_BAUD;
|
||||
serial.regwidth = 1;
|
||||
serial.input_hertz = uart_platform_refclk();
|
||||
serial.uart_pci_addr = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue