aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2023-04-06 20:07:12 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-04-11 16:29:02 +0000
commit6e4102bc9dd71aa68c4f96ed3482a315095f2318 (patch)
tree0c7985c2f92b7f98b393ef2f1a4f3e11c757d881 /src
parentd708884d506cfd5a5c99de5bfc1ce48aa8abedbb (diff)
soc/amd/mendocino: Lower log level for TDP value to DEBUG
Printing the value of a variable is not informative for a normal user, so decrease the value from BIOS_INFO to BIOS_DEBUG. Fixes: b9caac74a320 ("soc/amd/mendocino: Reinterpret smu_power_and_thm_limit") Change-Id: I22f6293fd47633dfdbdae37b7257f47a5a4bb29c Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74271 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Van Patten <timvp@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/soc/amd/mendocino/fsp_misc_data_hob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/mendocino/fsp_misc_data_hob.c b/src/soc/amd/mendocino/fsp_misc_data_hob.c
index 3b51fd84c1..ed35800052 100644
--- a/src/soc/amd/mendocino/fsp_misc_data_hob.c
+++ b/src/soc/amd/mendocino/fsp_misc_data_hob.c
@@ -48,7 +48,7 @@ enum cb_err get_amd_smu_reported_tdp(uint32_t *tdp)
* we're interested in. For example: 0xF0000 (15W), 0x60000 (6W). Re-interpret
* the value so the caller just sees the TDP.
*/
- printk(BIOS_INFO, "fsp_misc_data->smu_power_and_thm_limit = 0x%08X\n",
+ printk(BIOS_DEBUG, "fsp_misc_data->smu_power_and_thm_limit = 0x%08X\n",
fsp_misc_data->smu_power_and_thm_limit);
*tdp = fsp_misc_data->smu_power_and_thm_limit >> 16;