2011-01-05 03:27:53 +01:00
|
|
|
menu "Architecture (x86)"
|
|
|
|
|
2009-10-07 18:15:40 +02:00
|
|
|
# This is an SMP option. It relates to starting up APs.
|
|
|
|
# It is usually set in mainboard/*/Kconfig.
|
|
|
|
# TODO: Improve description.
|
2009-08-29 04:59:35 +02:00
|
|
|
config AP_IN_SIPI_WAIT
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
depends on ARCH_X86
|
|
|
|
|
2009-08-12 17:00:51 +02:00
|
|
|
config ROMBASE
|
2009-08-25 02:53:22 +02:00
|
|
|
hex
|
2009-11-11 22:32:23 +01:00
|
|
|
default 0xffff0000
|
2009-08-12 17:00:51 +02:00
|
|
|
|
|
|
|
config RAMBASE
|
|
|
|
hex
|
|
|
|
default 0x100000
|
|
|
|
|
2010-04-14 20:59:42 +02:00
|
|
|
config RAMTOP
|
|
|
|
hex
|
|
|
|
default 0x200000
|
|
|
|
|
2009-08-12 17:00:51 +02:00
|
|
|
config STACK_SIZE
|
|
|
|
hex
|
|
|
|
default 0x8000
|
|
|
|
|
2009-10-07 18:15:40 +02:00
|
|
|
# Maximum reboot count
|
|
|
|
# TODO: Improve description.
|
2009-08-12 17:00:51 +02:00
|
|
|
config MAX_REBOOT_CNT
|
2009-10-07 18:15:40 +02:00
|
|
|
int
|
2009-08-12 17:00:51 +02:00
|
|
|
default 3
|
|
|
|
|
2010-12-17 00:37:17 +01:00
|
|
|
# We had to rename the choice options under arch/ because otherwise
|
|
|
|
# the options would conflict between different architectures despite
|
|
|
|
# the if ARCH_xxx guarding the arch/xxx/Kconfig sourcing.
|
2010-02-24 14:58:23 +01:00
|
|
|
choice
|
|
|
|
prompt "Bootblock behaviour"
|
2010-12-17 00:37:17 +01:00
|
|
|
default X86_BOOTBLOCK_SIMPLE
|
2010-02-24 14:58:23 +01:00
|
|
|
|
2010-12-17 00:37:17 +01:00
|
|
|
config X86_BOOTBLOCK_SIMPLE
|
2010-02-24 14:58:23 +01:00
|
|
|
bool "Always load fallback"
|
|
|
|
|
2010-12-17 00:37:17 +01:00
|
|
|
config X86_BOOTBLOCK_NORMAL
|
2010-02-24 14:58:23 +01:00
|
|
|
bool "Switch to normal if CMOS says so"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BOOTBLOCK_SOURCE
|
|
|
|
string
|
2010-12-17 00:37:17 +01:00
|
|
|
default "bootblock_simple.c" if X86_BOOTBLOCK_SIMPLE
|
|
|
|
default "bootblock_normal.c" if X86_BOOTBLOCK_NORMAL
|
2010-02-24 14:58:23 +01:00
|
|
|
|
2010-02-09 20:41:11 +01:00
|
|
|
config UPDATE_IMAGE
|
|
|
|
bool "Update existing coreboot.rom image"
|
|
|
|
default n
|
|
|
|
help
|
2010-09-23 20:48:27 +02:00
|
|
|
If this option is enabled, no new coreboot.rom file
|
|
|
|
is created. Instead it is expected that there already
|
|
|
|
is a suitable file for further processing.
|
|
|
|
The bootblock will not be modified.
|
2010-02-09 20:41:11 +01:00
|
|
|
|
2010-02-09 13:21:10 +01:00
|
|
|
config ROMCC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2010-12-17 00:37:17 +01:00
|
|
|
config PC80_SYSTEM
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2009-12-31 13:56:53 +01:00
|
|
|
config BOOTBLOCK_NORTHBRIDGE_INIT
|
|
|
|
string
|
|
|
|
|
2011-01-14 08:40:24 +01:00
|
|
|
config HAVE_CMOS_DEFAULT
|
|
|
|
def_bool n
|
|
|
|
|
|
|
|
config CMOS_DEFAULT_FILE
|
|
|
|
string
|
|
|
|
depends on HAVE_CMOS_DEFAULT
|
|
|
|
|
2009-12-31 13:56:53 +01:00
|
|
|
config BOOTBLOCK_SOUTHBRIDGE_INIT
|
|
|
|
string
|
2011-01-05 03:27:53 +01:00
|
|
|
|
2011-04-21 23:26:58 +02:00
|
|
|
config BIG_ENDIAN
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config LITTLE_ENDIAN
|
|
|
|
bool
|
|
|
|
default !BIG_ENDIAN
|
|
|
|
|
2011-01-05 03:27:53 +01:00
|
|
|
endmenu
|