summaryrefslogtreecommitdiff
path: root/src/mainboard
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-09-07 13:44:29 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-09-09 10:35:13 +0000
commitc95f507fc76b1d7b7eed670f749621502a3bca1d (patch)
treef236ccc7ee029f377c66c3429f624f6902532c5d /src/mainboard
parentf4779e867959522aac2436bd73c9de02ab863867 (diff)
downloadcoreboot-c95f507fc76b1d7b7eed670f749621502a3bca1d.tar.xz
apollolake: Limit MAX_CPUS to 4
APL does not support Hyper-Threading, and has at most four CPU cores. Change-Id: Ib2ffadc0c31cdd96bec8eed5364c984acb2e1250 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45143 Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com> Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/google/reef/Kconfig2
-rw-r--r--src/mainboard/siemens/mc_apl1/Kconfig2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/reef/Kconfig b/src/mainboard/google/reef/Kconfig
index df1d8c48e8..de4df6213b 100644
--- a/src/mainboard/google/reef/Kconfig
+++ b/src/mainboard/google/reef/Kconfig
@@ -83,7 +83,7 @@ config MAINBOARD_FAMILY
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 0fe4a25a01..705351f742 100644
--- a/src/mainboard/siemens/mc_apl1/Kconfig
+++ b/src/mainboard/siemens/mc_apl1/Kconfig
@@ -42,6 +42,6 @@ config UART_FOR_CONSOLE
config MAX_CPUS
int
- default 8
+ default 4
endif # BOARD_SIEMENS_BASEBOARD_MC_APL1