diff options
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/Kconfig | 11 | ||||
-rw-r--r-- | src/cpu/intel/model_1067x/Kconfig | 2 | ||||
-rw-r--r-- | src/cpu/x86/Kconfig | 8 |
3 files changed, 20 insertions, 1 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index 54b0175882..ebe5dec07f 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -21,6 +21,10 @@ config DCACHE_RAM_GLOBAL_VAR_SIZE hex default 0 +config MAX_PHYSICAL_CPUS + int + default 1 + config SMP bool default y if MAX_CPUS != 1 @@ -39,3 +43,10 @@ config SSE help Set this in socket or model if the CPU has SSE. If the CPUs for the socket always have MX, set it there. + +config VAR_MTRR_HOLE + bool + default y + help + Unset this if you don't want the MTRR code to use + subtractive MTRRs diff --git a/src/cpu/intel/model_1067x/Kconfig b/src/cpu/intel/model_1067x/Kconfig index 55b5eb737b..43e7d7d77f 100644 --- a/src/cpu/intel/model_1067x/Kconfig +++ b/src/cpu/intel/model_1067x/Kconfig @@ -1,5 +1,5 @@ config CPU_INTEL_CORE2 bool - default y + default n select SMP select HAVE_MOVNTI diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig index b6ae9967e5..a3b9330e64 100644 --- a/src/cpu/x86/Kconfig +++ b/src/cpu/x86/Kconfig @@ -6,6 +6,14 @@ config WAIT_BEFORE_CPUS_INIT bool default n +config UDELAY_IO + bool + default n + +config UDELAY_LAPIC + bool + default n + config UDELAY_TSC bool default n |