diff options
author | Subrata Banik <subratabanik@google.com> | 2023-07-12 14:33:06 +0530 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2023-07-18 05:31:04 +0000 |
commit | fadda4ae6b1614523e14326fbe98280ff0c19c64 (patch) | |
tree | 1df2a69750140df572883026bcd7dc51a9c469ed /src | |
parent | 649709c6fccedc9909fc21f3813185d3c64b3539 (diff) |
soc/intel/meteorlake: Include IOE PCR register access
This patch includes the ioe_pcr.asl file as Intel Meteor Lake has
support for IOE die.
BUG=b:290856936
TEST=Able to build and boot google/rex.
Change-Id: Ia534dbc0db5e54e173da9cdf475a7eb2bfda9e2f
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76410
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/meteorlake/acpi/southbridge.asl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/acpi/southbridge.asl b/src/soc/intel/meteorlake/acpi/southbridge.asl index 2d24fb2a54..0b588f9721 100644 --- a/src/soc/intel/meteorlake/acpi/southbridge.asl +++ b/src/soc/intel/meteorlake/acpi/southbridge.asl @@ -5,8 +5,12 @@ #include <soc/itss.h> #include <soc/pcr_ids.h> -/* PCR access */ +/* SoC PCR access */ #include <soc/intel/common/acpi/pch_pcr.asl> +/* IOE PCR access */ +#if CONFIG(SOC_INTEL_COMMON_BLOCK_IOE_P2SB) +#include <soc/intel/common/acpi/ioe_pcr.asl> +#endif /* PCH clock */ #include "camera_clock_ctl.asl" |