Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45143 )
Change subject: apollolake: Limit MAX_CPUS to 4 ......................................................................
apollolake: Limit MAX_CPUS to 4
Apollo Lake parts have at most four CPU threads.
Change-Id: Ib2ffadc0c31cdd96bec8eed5364c984acb2e1250 Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/mainboard/google/reef/Kconfig M src/mainboard/siemens/mc_apl1/Kconfig 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/45143/1
diff --git a/src/mainboard/google/reef/Kconfig b/src/mainboard/google/reef/Kconfig index df1d8c4..de4df62 100644 --- a/src/mainboard/google/reef/Kconfig +++ b/src/mainboard/google/reef/Kconfig @@ -83,7 +83,7 @@
config MAX_CPUS int - default 8 + default 4
config UART_FOR_CONSOLE int diff --git a/src/mainboard/siemens/mc_apl1/Kconfig b/src/mainboard/siemens/mc_apl1/Kconfig index 0fe4a25..705351f 100644 --- a/src/mainboard/siemens/mc_apl1/Kconfig +++ b/src/mainboard/siemens/mc_apl1/Kconfig @@ -42,6 +42,6 @@
config MAX_CPUS int - default 8 + default 4
endif # BOARD_SIEMENS_BASEBOARD_MC_APL1