summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-04-20 22:38:50 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-04-21 22:12:36 +0000
commit5dea8271b6e3394c414e4d00398dfcda800e7da8 (patch)
treeb740dfdd4508b5f3f0ee79e9c162f299b9190901
parentb5c2350145c8e757e60df8b5158d0e2e8307d37d (diff)
downloadcoreboot-5dea8271b6e3394c414e4d00398dfcda800e7da8.tar.xz
soc/amd/picasso/chip.h: improve comments on downcore_mode
Clarify that the downcoring is about deactivating physical cores. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ib8a9d1cedff995c507c3be72e7665953e1659238 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52554 Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/soc/amd/picasso/chip.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/picasso/chip.h b/src/soc/amd/picasso/chip.h
index e357f549c4..c70b89b67e 100644
--- a/src/soc/amd/picasso/chip.h
+++ b/src/soc/amd/picasso/chip.h
@@ -142,9 +142,9 @@ struct soc_amd_picasso_config {
enum {
DOWNCORE_AUTO = 0,
- DOWNCORE_1 = 1, /* Run with single core */
- DOWNCORE_2 = 3, /* Run with two cores */
- DOWNCORE_3 = 4, /* Run with three cores */
+ DOWNCORE_1 = 1, /* Run with 1 physical core */
+ DOWNCORE_2 = 3, /* Run with 2 physical cores */
+ DOWNCORE_3 = 4, /* Run with 3 physical cores */
} downcore_mode;
bool smt_disable; /* true=disable SMT on all physical cores */