diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/Kconfig | 7 | ||||
-rw-r--r-- | src/cpu/amd/model_10xxx/Kconfig | 4 | ||||
-rw-r--r-- | src/cpu/amd/model_fxx/Kconfig | 4 |
3 files changed, 8 insertions, 7 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index f3883d3e94..bf5ce8e793 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -29,13 +29,6 @@ config DCACHE_RAM_BASE config DCACHE_RAM_SIZE hex -# FIXME MAX_PHYSICAL_CPUS should move to AMD specific code, or better -# yet be dropped completely. -config MAX_PHYSICAL_CPUS - int - depends on CPU_AMD_MODEL_10XXX || CPU_AMD_MODEL_FXX || CPU_AMD_AGESA - default 1 - config SMP bool default y if MAX_CPUS != 1 diff --git a/src/cpu/amd/model_10xxx/Kconfig b/src/cpu/amd/model_10xxx/Kconfig index 99358e068e..bc20219a54 100644 --- a/src/cpu/amd/model_10xxx/Kconfig +++ b/src/cpu/amd/model_10xxx/Kconfig @@ -32,6 +32,10 @@ config SET_FIDVID bool default y +config MAX_PHYSICAL_CPUS + int + default 1 + config LIFT_BSP_APIC_ID bool default n diff --git a/src/cpu/amd/model_fxx/Kconfig b/src/cpu/amd/model_fxx/Kconfig index fb094b1a5d..2ea381e9cb 100644 --- a/src/cpu/amd/model_fxx/Kconfig +++ b/src/cpu/amd/model_fxx/Kconfig @@ -11,6 +11,10 @@ config UDELAY_IO bool default n +config MAX_PHYSICAL_CPUS + int + default 1 + config LIFT_BSP_APIC_ID bool default n |