Attention is currently required from: Tarun Tuli, Subrata Banik, Kapil Porwal.
Wonkyu Kim has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74410 )
Change subject: soc/intel/meteorlake: Print CPU frequency info in log ......................................................................
soc/intel/meteorlake: Print CPU frequency info in log
Signed-off-by: Wonkyu Kim wonkyu.kim@intel.com Change-Id: I8f41b4204bfda7f4318642c01527e243d887fdd2 --- M src/soc/intel/meteorlake/bootblock/report_platform.c 1 file changed, 15 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/10/74410/1
diff --git a/src/soc/intel/meteorlake/bootblock/report_platform.c b/src/soc/intel/meteorlake/bootblock/report_platform.c index a5d32f3..733634c 100644 --- a/src/soc/intel/meteorlake/bootblock/report_platform.c +++ b/src/soc/intel/meteorlake/bootblock/report_platform.c @@ -106,6 +106,11 @@ printk(BIOS_DEBUG, "CPU: ID %x, %s, ucode: %08x\n", cpu_id, cpu_type, get_current_microcode_rev());
+ printk(BIOS_DEBUG, "CPU: base %dMHz current:%dMHz\n", + cpu_get_base_freq(), cpu_get_current_freq()); + printk(BIOS_DEBUG, "CPU: TurboMax:%dMHz NonTurboMax:%dMHz\n", + cpu_get_max_turbo_freq(), cpu_get_max_non_turbo_freq()); + cpu_feature_flag = cpu_get_feature_flags_ecx(); aes = !!(cpu_feature_flag & CPUID_AES); txt = !!(cpu_feature_flag & CPUID_SMX);