2009-08-12 17:39:38 +02:00
|
|
|
source src/cpu/amd/Kconfig
|
2009-08-12 17:00:51 +02:00
|
|
|
source src/cpu/emulation/Kconfig
|
|
|
|
source src/cpu/intel/Kconfig
|
|
|
|
source src/cpu/via/Kconfig
|
|
|
|
source src/cpu/x86/Kconfig
|
|
|
|
|
2009-08-27 14:10:50 +02:00
|
|
|
config USE_DCACHE_RAM
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2009-08-12 17:00:51 +02:00
|
|
|
config DCACHE_RAM_BASE
|
|
|
|
hex
|
|
|
|
default 0xffdf8000 if CPU_INTEL_CORE
|
|
|
|
|
|
|
|
config DCACHE_RAM_SIZE
|
|
|
|
hex
|
|
|
|
default 0x8000 if CPU_INTEL_CORE
|
|
|
|
|
2009-09-25 20:43:02 +02:00
|
|
|
config DCACHE_RAM_GLOBAL_VAR_SIZE
|
|
|
|
hex
|
2009-10-09 13:47:21 +02:00
|
|
|
default 0x0
|
2009-09-25 20:43:02 +02:00
|
|
|
|
2009-10-06 22:48:07 +02:00
|
|
|
config MAX_PHYSICAL_CPUS
|
|
|
|
int
|
|
|
|
default 1
|
|
|
|
|
2009-08-12 17:00:51 +02:00
|
|
|
config SMP
|
|
|
|
bool
|
2009-09-22 20:49:08 +02:00
|
|
|
default y if MAX_CPUS != 1
|
2009-09-24 11:03:06 +02:00
|
|
|
default n
|
2009-10-18 20:35:50 +02:00
|
|
|
help
|
|
|
|
This option is used to enable certain functions to make coreboot
|
|
|
|
work correctly on symmetric multi processor (SMP) systems.
|
2009-10-02 01:22:50 +02:00
|
|
|
|
|
|
|
config MMX
|
|
|
|
bool
|
2010-02-25 14:40:49 +01:00
|
|
|
help
|
|
|
|
Select MMX in your socket or model Kconfig if your CPU has MMX
|
|
|
|
streaming SIMD instructions. ROMCC can build more efficient
|
|
|
|
code if it can spill to MMX registers.
|
2009-10-02 01:22:50 +02:00
|
|
|
|
|
|
|
config SSE
|
|
|
|
bool
|
2010-02-25 14:40:49 +01:00
|
|
|
help
|
|
|
|
Select SSE in your socket or model Kconfig if your CPU has SSE
|
|
|
|
streaming SIMD instructions. ROMCC can build more efficient
|
|
|
|
code if it can spill to SSE (aka XMM) registers.
|
|
|
|
|
|
|
|
config SSE2
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Select SSE2 in your socket or model Kconfig if your CPU has SSE2
|
|
|
|
streaming SIMD instructions. Some parts of coreboot can be built
|
|
|
|
with more efficient code if SSE2 instructions are available.
|
2009-10-06 22:48:07 +02:00
|
|
|
|
|
|
|
config VAR_MTRR_HOLE
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Unset this if you don't want the MTRR code to use
|
|
|
|
subtractive MTRRs
|