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:
Arthur Heymans 2017-05-12 21:16:41 +02:00 committed by Nico Huber
parent 1850aa6df6
commit b29078e401
242 changed files with 214 additions and 1789 deletions

View File

@ -105,7 +105,7 @@ void uart_init(int idx)
struct a10_uart *uart_base = uart_platform_baseptr(idx); struct a10_uart *uart_base = uart_platform_baseptr(idx);
/* Use default 8N1 encoding */ /* Use default 8N1 encoding */
a10_uart_configure(uart_base, default_baudrate(), a10_uart_configure(uart_base, CONFIG_TTYS0_BAUD,
8, UART_PARITY_NONE, 1); 8, UART_PARITY_NONE, 1);
a10_uart_enable_fifos(uart_base); a10_uart_enable_fifos(uart_base);
} }

View File

@ -44,7 +44,7 @@ void uart_fill_lb(void *data)
struct lb_serial serial; struct lb_serial serial;
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED; serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE); serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
serial.baud = default_baudrate(); serial.baud = CONFIG_TTYS0_BAUD;
serial.regwidth = 1; serial.regwidth = 1;
serial.input_hertz = uart_platform_refclk(); serial.input_hertz = uart_platform_refclk();
serial.uart_pci_addr = 0; serial.uart_pci_addr = 0;

View File

@ -163,7 +163,7 @@ void uart_init(int idx)
{ {
struct am335x_uart *uart = uart_platform_baseptr(idx); struct am335x_uart *uart = uart_platform_baseptr(idx);
uint16_t div = (uint16_t) uart_baudrate_divisor( uint16_t div = (uint16_t) uart_baudrate_divisor(
default_baudrate(), uart_platform_refclk(), 16); CONFIG_TTYS0_BAUD, uart_platform_refclk(), 16);
am335x_uart_init(uart, div); am335x_uart_init(uart, div);
} }
@ -189,7 +189,7 @@ void uart_fill_lb(void *data)
struct lb_serial serial; struct lb_serial serial;
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED; serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE); serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
serial.baud = default_baudrate(); serial.baud = CONFIG_TTYS0_BAUD;
serial.regwidth = 2; serial.regwidth = 2;
lb_add_serial(&serial, data); lb_add_serial(&serial, data);

View File

@ -46,7 +46,7 @@ void uart_fill_lb(void *data)
struct lb_serial serial; struct lb_serial serial;
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED; serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE); serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
serial.baud = default_baudrate(); serial.baud = CONFIG_TTYS0_BAUD;
serial.regwidth = 1; serial.regwidth = 1;
serial.input_hertz = uart_platform_refclk(); serial.input_hertz = uart_platform_refclk();
serial.uart_pci_addr = CONFIG_UART_PCI_ADDR; serial.uart_pci_addr = CONFIG_UART_PCI_ADDR;

View File

@ -107,7 +107,7 @@ void uart_init(int idx)
{ {
if (!IS_ENABLED(CONFIG_DRIVERS_UART_8250IO_SKIP_INIT)) { if (!IS_ENABLED(CONFIG_DRIVERS_UART_8250IO_SKIP_INIT)) {
unsigned int div; unsigned int div;
div = uart_baudrate_divisor(default_baudrate(), div = uart_baudrate_divisor(CONFIG_TTYS0_BAUD,
uart_platform_refclk(), uart_input_clock_divider()); uart_platform_refclk(), uart_input_clock_divider());
uart8250_init(uart_platform_base(idx), div); uart8250_init(uart_platform_base(idx), div);
} }
@ -134,7 +134,7 @@ void uart_fill_lb(void *data)
struct lb_serial serial; struct lb_serial serial;
serial.type = LB_SERIAL_TYPE_IO_MAPPED; serial.type = LB_SERIAL_TYPE_IO_MAPPED;
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE); serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
serial.baud = default_baudrate(); serial.baud = CONFIG_TTYS0_BAUD;
serial.regwidth = 1; serial.regwidth = 1;
serial.input_hertz = uart_platform_refclk(); serial.input_hertz = uart_platform_refclk();
serial.uart_pci_addr = CONFIG_UART_PCI_ADDR; serial.uart_pci_addr = CONFIG_UART_PCI_ADDR;

View File

@ -119,7 +119,7 @@ void uart_init(int idx)
return; return;
unsigned int div; unsigned int div;
div = uart_baudrate_divisor(default_baudrate(), div = uart_baudrate_divisor(CONFIG_TTYS0_BAUD,
uart_platform_refclk(), uart_input_clock_divider()); uart_platform_refclk(), uart_input_clock_divider());
uart8250_mem_init(base, div); uart8250_mem_init(base, div);
} }
@ -154,7 +154,7 @@ void uart_fill_lb(void *data)
struct lb_serial serial; struct lb_serial serial;
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED; serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE); serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
serial.baud = default_baudrate(); serial.baud = CONFIG_TTYS0_BAUD;
if (IS_ENABLED(CONFIG_DRIVERS_UART_8250MEM_32)) if (IS_ENABLED(CONFIG_DRIVERS_UART_8250MEM_32))
serial.regwidth = sizeof(uint32_t); serial.regwidth = sizeof(uint32_t);
else else

View File

@ -13,34 +13,6 @@
#include <console/console.h> #include <console/console.h>
#include <console/uart.h> #include <console/uart.h>
#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
#include <option.h>
#include "option_table.h"
#endif
#define DEFAULT_BAUDRATE 115200
unsigned int default_baudrate(void)
{
#if !defined(__SMM__) && IS_ENABLED(CONFIG_USE_OPTION_TABLE)
static const unsigned baud[8] =
{ 115200, 57600, 38400, 19200, 9600, 4800, 2400, 1200 };
unsigned b_index = 0;
#if defined(__ROMCC__)
b_index = read_option(baud_rate, 0xff);
#else
if (get_option(&b_index, "baud_rate") != CB_SUCCESS)
b_index = 0xff;
#endif
if (b_index < 8)
return baud[b_index];
#endif
/*
* If TTYS0_BAUD is not configured, then by default use 115200 as the
* baud rate.
*/
return CONFIG_TTYS0_BAUD ? CONFIG_TTYS0_BAUD : DEFAULT_BAUDRATE;
}
/* Calculate divisor. Do not floor but round to nearest integer. */ /* Calculate divisor. Do not floor but round to nearest integer. */
unsigned int uart_baudrate_divisor(unsigned int baudrate, unsigned int uart_baudrate_divisor(unsigned int baudrate,

View File

@ -23,11 +23,6 @@
* baudrate generator. */ * baudrate generator. */
unsigned int uart_platform_refclk(void); unsigned int uart_platform_refclk(void);
/* Return the baudrate determined from option_table, or when that is
* not used, CONFIG_TTYS0_BAUD.
*/
unsigned int default_baudrate(void);
/* Returns the divisor value for a given baudrate. /* Returns the divisor value for a given baudrate.
* The formula to satisfy is: * The formula to satisfy is:
* refclk / divisor = baudrate * oversample * refclk / divisor = baudrate * oversample

View File

@ -47,7 +47,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -86,14 +86,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -43,7 +43,7 @@ entries
384 1 e 4 boot_option 384 1 e 4 boot_option
386 1 e 1 ECC_memory 386 1 e 1 ECC_memory
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -72,14 +72,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -20,7 +20,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -47,14 +47,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -43,7 +43,7 @@ entries
384 1 e 4 boot_option 384 1 e 4 boot_option
386 1 e 1 ECC_memory 386 1 e 1 ECC_memory
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -72,14 +72,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
444 1 e 1 nmi 444 1 e 1 nmi
@ -37,14 +37,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -20,7 +20,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -47,14 +47,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
440 1 e 0 dcon_present 440 1 e 0 dcon_present
@ -19,14 +19,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -20,7 +20,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -47,14 +47,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -21,8 +21,8 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
393 3 e 5 baud_rate 393 3 r 0 unused
#396 5 unused #394 7 unused
401 1 e 1 interleave_chip_selects 401 1 e 1 interleave_chip_selects
402 1 e 1 interleave_nodes 402 1 e 1 interleave_nodes
403 1 e 1 interleave_memory_channels 403 1 e 1 interleave_memory_channels
@ -52,14 +52,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 0 Emergency 6 0 Emergency
6 1 Alert 6 1 Alert
6 2 Critical 6 2 Critical

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
hyper_threading=Enable hyper_threading=Enable
nmi=Enable nmi=Enable

View File

@ -48,7 +48,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -92,14 +92,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -20,7 +20,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -47,14 +47,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -49,14 +49,6 @@ enumerations
3 2 Last 3 2 Last
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
power_on_after_fail=Disable power_on_after_fail=Disable
nmi=Enable nmi=Enable

View File

@ -44,11 +44,10 @@ entries
# RTC_BOOT_BYTE (coreboot hardcoded) # RTC_BOOT_BYTE (coreboot hardcoded)
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
#390 2 r 0 unused? #390 5 r 0 unused?
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -80,14 +79,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
power_on_after_fail=Enable power_on_after_fail=Enable
ECC_memory=Disable ECC_memory=Disable

View File

@ -3,7 +3,7 @@ entries
384 1 e 4 boot_option 384 1 e 4 boot_option
386 1 e 1 ECC_memory 386 1 e 1 ECC_memory
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate # 392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -27,14 +27,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -48,7 +48,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -82,14 +82,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,4 +1,3 @@
baud_rate = 115200
debug_level = Spew debug_level = Spew
multi_core = Enable multi_core = Enable
slow_cpu = off slow_cpu = off

View File

@ -21,8 +21,8 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
393 3 e 5 baud_rate 393 3 r 0 unused
#396 5 unused #394 7 unused
401 1 e 1 interleave_chip_selects 401 1 e 1 interleave_chip_selects
402 1 e 1 interleave_nodes 402 1 e 1 interleave_nodes
403 1 e 1 interleave_memory_channels 403 1 e 1 interleave_memory_channels
@ -72,14 +72,6 @@ enumerations
3 2 Last 3 2 Last
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 0 Emergency 6 0 Emergency
6 1 Alert 6 1 Alert
6 2 Critical 6 2 Critical

View File

@ -1,4 +1,3 @@
baud_rate = 115200
debug_level = Spew debug_level = Spew
multi_core = Enable multi_core = Enable
slow_cpu = off slow_cpu = off

View File

@ -21,8 +21,8 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
393 3 e 5 baud_rate 393 3 r 0 unused
#396 5 unused #394 8 unused
401 1 e 1 interleave_chip_selects 401 1 e 1 interleave_chip_selects
402 1 e 1 interleave_nodes 402 1 e 1 interleave_nodes
403 1 e 1 interleave_memory_channels 403 1 e 1 interleave_memory_channels
@ -53,14 +53,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 0 Emergency 6 0 Emergency
6 1 Alert 6 1 Alert
6 2 Critical 6 2 Critical

View File

@ -1,4 +1,3 @@
baud_rate = 115200
debug_level = Spew debug_level = Spew
multi_core = Enable multi_core = Enable
slow_cpu = off slow_cpu = off

View File

@ -21,7 +21,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
393 3 e 5 baud_rate 393 3 r 0 unused
396 1 e 1 hw_scrubber 396 1 e 1 hw_scrubber
397 1 e 1 interleave_chip_selects 397 1 e 1 interleave_chip_selects
398 1 e 1 interleave_nodes 398 1 e 1 interleave_nodes
@ -51,14 +51,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 0 Emergency 6 0 Emergency
6 1 Alert 6 1 Alert
6 2 Critical 6 2 Critical

View File

@ -1,4 +1,3 @@
baud_rate = 115200
debug_level = Spew debug_level = Spew
multi_core = Enable multi_core = Enable
slow_cpu = off slow_cpu = off

View File

@ -21,8 +21,8 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
393 3 e 5 baud_rate 393 3 r 0 unused
#396 5 unused #394 7 unused
401 1 e 1 interleave_chip_selects 401 1 e 1 interleave_chip_selects
402 1 e 1 interleave_nodes 402 1 e 1 interleave_nodes
403 1 e 1 interleave_memory_channels 403 1 e 1 interleave_memory_channels
@ -73,14 +73,6 @@ enumerations
3 2 Last 3 2 Last
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 0 Emergency 6 0 Emergency
6 1 Alert 6 1 Alert
6 2 Critical 6 2 Critical

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -31,14 +31,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,6 +1,5 @@
boot_option=Fallback boot_option=Fallback
ECC_memory=Enable ECC_memory=Enable
baud_rate=115200
hw_scrubber=Enable hw_scrubber=Enable
interleave_chip_selects=Enable interleave_chip_selects=Enable
max_mem_clock=400Mhz max_mem_clock=400Mhz

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
hyper_threading=Enable hyper_threading=Enable
nmi=Enable nmi=Enable

View File

@ -26,7 +26,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -66,14 +66,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,3 +1,2 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew

View File

@ -24,7 +24,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 1 baud_rate #392 3 r 0 unused
395 4 e 2 debug_level 395 4 e 2 debug_level
# ----------------------------------------------------------------- # -----------------------------------------------------------------
@ -34,14 +34,6 @@ entries
enumerations enumerations
#ID value text #ID value text
1 0 115200
1 1 57600
1 2 38400
1 3 19200
1 4 9600
1 5 4800
1 6 2400
1 7 1200
2 0 Emergency 2 0 Emergency
2 1 Alert 2 1 Alert
2 2 Critical 2 2 Critical

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -44,14 +44,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -43,7 +43,7 @@ entries
384 1 e 4 boot_option 384 1 e 4 boot_option
386 1 e 1 ECC_memory 386 1 e 1 ECC_memory
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -72,14 +72,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -19,7 +19,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 r 0 reboot_bits 388 4 r 0 reboot_bits
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -46,14 +46,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,5 +1,4 @@
boot_option = Fallback boot_option = Fallback
baud_rate = 115200
power_on_after_fail = Enable power_on_after_fail = Enable
debug_level = Spew debug_level = Spew
ECC_memory = Disable ECC_memory = Disable

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
400 1 e 1 power_on_after_fail 400 1 e 1 power_on_after_fail
412 4 e 6 debug_level 412 4 e 6 debug_level
456 1 e 1 ECC_memory 456 1 e 1 ECC_memory
@ -18,14 +18,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -47,7 +47,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -87,14 +87,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
power_on_after_fail=Disable power_on_after_fail=Disable
nmi=Enable nmi=Enable

View File

@ -44,11 +44,10 @@ entries
# RTC_BOOT_BYTE (coreboot hardcoded) # RTC_BOOT_BYTE (coreboot hardcoded)
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
#390 2 r 0 unused? #390 5 r 0 unused?
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -80,14 +79,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -48,7 +48,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -92,14 +92,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
hyper_threading=Enable hyper_threading=Enable
nmi=Enable nmi=Enable

View File

@ -47,7 +47,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -88,14 +88,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
power_on_after_fail=Enable power_on_after_fail=Enable
nmi=Enable nmi=Enable

View File

@ -48,7 +48,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -89,14 +89,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
power_on_after_fail=Enable power_on_after_fail=Enable
nmi=Enable nmi=Enable

View File

@ -48,7 +48,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -89,14 +89,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -1,5 +1,4 @@
boot_option=Fallback boot_option=Fallback
baud_rate=115200
debug_level=Spew debug_level=Spew
power_on_after_fail=Enable power_on_after_fail=Enable
nmi=Enable nmi=Enable

View File

@ -48,7 +48,7 @@ entries
# ----------------------------------------------------------------- # -----------------------------------------------------------------
# coreboot config options: console # coreboot config options: console
392 3 e 5 baud_rate #392 3 r 0 unused
395 4 e 6 debug_level 395 4 e 6 debug_level
#399 1 r 0 unused #399 1 r 0 unused
@ -80,14 +80,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 1 Emergency 6 1 Emergency
6 2 Alert 6 2 Alert
6 3 Critical 6 3 Critical

View File

@ -20,7 +20,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -47,14 +47,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -1,4 +1,3 @@
baud_rate = 115200
debug_level = Spew debug_level = Spew
multi_core = Enable multi_core = Enable
slow_cpu = off slow_cpu = off

View File

@ -20,7 +20,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -47,14 +47,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

View File

@ -3,7 +3,7 @@ entries
0 384 r 0 reserved_memory 0 384 r 0 reserved_memory
384 1 e 4 boot_option 384 1 e 4 boot_option
388 4 h 0 reboot_counter 388 4 h 0 reboot_counter
392 3 e 5 baud_rate #392 3 r 0 unused
395 1 e 1 hw_scrubber 395 1 e 1 hw_scrubber
396 1 e 1 interleave_chip_selects 396 1 e 1 interleave_chip_selects
397 2 e 8 max_mem_clock 397 2 e 8 max_mem_clock
@ -30,14 +30,6 @@ enumerations
2 1 Disable 2 1 Disable
4 0 Fallback 4 0 Fallback
4 1 Normal 4 1 Normal
5 0 115200
5 1 57600
5 2 38400
5 3 19200
5 4 9600
5 5 4800
5 6 2400
5 7 1200
6 6 Notice 6 6 Notice
6 7 Info 6 7 Info
6 8 Debug 6 8 Debug

Some files were not shown because too many files have changed in this diff Show More