HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50367 )
Change subject: (test) Kconfig: Reorder sources ......................................................................
(test) Kconfig: Reorder sources
Change-Id: Ib853f679a2faaa61adca25721c7f48b705999a2d Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/Kconfig M src/cpu/x86/Kconfig 2 files changed, 15 insertions(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/50367/1
diff --git a/src/Kconfig b/src/Kconfig index 33065cb..b17674a 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -517,25 +517,33 @@
menu "Chipset"
-comment "SoC" -source "src/soc/*/Kconfig" +source "src/arch/*/Kconfig" + comment "CPU" source "src/cpu/Kconfig" + +comment "SoC" +source "src/soc/*/Kconfig" + +comment "Device" +source "src/device/Kconfig" + comment "Northbridge" source "src/northbridge/*/*/Kconfig" + comment "Southbridge" source "src/southbridge/*/*/Kconfig" +source "src/southbridge/intel/common/firmware/Kconfig" + comment "Super I/O" source "src/superio/*/*/Kconfig" + comment "Embedded Controllers" source "src/ec/acpi/Kconfig" source "src/ec/*/*/Kconfig"
-source "src/southbridge/intel/common/firmware/Kconfig" source "src/vendorcode/*/Kconfig"
-source "src/arch/*/Kconfig" - config CHIPSET_DEVICETREE string default "" @@ -549,8 +557,6 @@
endmenu
-source "src/device/Kconfig" - menu "Generic Drivers" source "src/drivers/*/Kconfig" source "src/drivers/*/*/Kconfig" diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig index b3a16bc..ed963b4 100644 --- a/src/cpu/x86/Kconfig +++ b/src/cpu/x86/Kconfig @@ -71,6 +71,8 @@
config CPU_ADDR_BITS int + default 48 if (SOC_AMD_CEZANNE || SOC_AMD_PICASSO || SOC_AMD_STONEYRIDGE) + default 46 if (SOC_INTEL_SKYLAKE_SP || SOC_INTEL_COOPERLAKE_SP) default 36
config LOGICAL_CPUS