From 5dea8271b6e3394c414e4d00398dfcda800e7da8 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 20 Apr 2021 22:38:50 +0200 Subject: [PATCH] soc/amd/picasso/chip.h: improve comments on downcore_mode Clarify that the downcoring is about deactivating physical cores. Signed-off-by: Felix Held Change-Id: Ib8a9d1cedff995c507c3be72e7665953e1659238 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52554 Reviewed-by: Raul Rangel Reviewed-by: Marshall Dawson Tested-by: build bot (Jenkins) --- src/soc/amd/picasso/chip.h | 6 +++--- 1 file 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 */