soc/intel/ptl: Dump SoC QDF from report_cpu_info in bootblock

This enables SOC_QDF_DYNAMIC_READ_PMC and adds pmc_dump_soc_qdf_info
to report_cpu_info to dump QDF information from bootblock.

Change-Id: Iaf6f46cd9be831dde345c3b3728cd66145746d68
Signed-off-by: Jamie Ryu <jamie.m.ryu@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83940
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Saurabh Mishra <mishra.saurabh@intel.com>
This commit is contained in:
Jamie Ryu 2024-08-16 00:49:05 -07:00 committed by Felix Held
parent d4833a6499
commit 73be964100
2 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,7 @@ config SOC_INTEL_PANTHERLAKE_BASE
select SOC_INTEL_COMMON_PCH_CLIENT select SOC_INTEL_COMMON_PCH_CLIENT
select SOC_INTEL_COMMON_RESET select SOC_INTEL_COMMON_RESET
select SOC_INTEL_IOE_DIE_SUPPORT select SOC_INTEL_IOE_DIE_SUPPORT
select SOC_QDF_DYNAMIC_READ_PMC
select SSE2 select SSE2
select SUPPORT_CPU_UCODE_IN_CBFS select SUPPORT_CPU_UCODE_IN_CBFS
select TSC_MONOTONIC_TIMER select TSC_MONOTONIC_TIMER

View File

@ -12,6 +12,7 @@
#include <device/pci_ops.h> #include <device/pci_ops.h>
#include <intelblocks/cpulib.h> #include <intelblocks/cpulib.h>
#include <intelblocks/acpi.h> #include <intelblocks/acpi.h>
#include <intelblocks/pmclib.h>
#include <soc/bootblock.h> #include <soc/bootblock.h>
#include <intelblocks/car_lib.h> #include <intelblocks/car_lib.h>
#include <soc/pci_devs.h> #include <soc/pci_devs.h>
@ -153,6 +154,7 @@ static void report_cpu_info(void)
mode[aes], mode[txt], mode[vt]); mode[aes], mode[txt], mode[vt]);
car_report_cache_info(); car_report_cache_info();
pmc_dump_soc_qdf_info();
} }
static void report_mch_info(void) static void report_mch_info(void)