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: b9caac74a3 ("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>
This commit is contained in:
Paul Menzel 2023-04-06 20:07:12 +02:00 committed by Felix Held
parent d708884d50
commit 6e4102bc9d
1 changed files with 1 additions and 1 deletions

View File

@ -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;