diff options
author | Jeremy Soller <jeremy@system76.com> | 2021-08-12 10:49:58 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-08-24 14:51:09 +0000 |
commit | cc43ec8b1a846fef22dc935edbb4d76140d305f5 (patch) | |
tree | 016f9edfe94568d1beec4cca7f0540fcfb7ad891 /src | |
parent | 86d8ac7a5f5c203f4a7f7e5eb094d045354147ce (diff) |
soc/intel/tigerlake: Add SPI_DMI_DESTINATION_ID for PCH-H
Change-Id: I9a316b91b31166831f23eaf9e271a7d67ac4ccff
Signed-off-by: Jeremy Soller <jeremy@system76.com>
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56952
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/tigerlake/include/soc/pcr_ids.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/tigerlake/include/soc/pcr_ids.h b/src/soc/intel/tigerlake/include/soc/pcr_ids.h index 899a117253..be5f1fb26b 100644 --- a/src/soc/intel/tigerlake/include/soc/pcr_ids.h +++ b/src/soc/intel/tigerlake/include/soc/pcr_ids.h @@ -42,6 +42,10 @@ /* * SPI - DMI Destination ID */ +#if CONFIG(SOC_INTEL_TIGERLAKE_PCH_H) +#define SPI_DMI_DESTINATION_ID 0x23b0 +#else #define SPI_DMI_DESTINATION_ID 0x23a8 +#endif #endif |