diff options
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/meteorlake/Kconfig | 6 | ||||
-rw-r--r-- | src/soc/intel/meteorlake/include/soc/iomap.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/Kconfig b/src/soc/intel/meteorlake/Kconfig index 7e1353a9a3..72179f8ca1 100644 --- a/src/soc/intel/meteorlake/Kconfig +++ b/src/soc/intel/meteorlake/Kconfig @@ -236,6 +236,12 @@ config PCR_BASE_ADDRESS help This option allows you to select MMIO Base Address of sideband bus. +config IOE_PCR_BASE_ADDRESS + hex + default 0x3fff0000000 + help + This option allows you to select MMIO Base Address of IOE sideband bus. + config ECAM_MMCONF_BASE_ADDRESS default 0xc0000000 diff --git a/src/soc/intel/meteorlake/include/soc/iomap.h b/src/soc/intel/meteorlake/include/soc/iomap.h index 3efe400fa9..6903790626 100644 --- a/src/soc/intel/meteorlake/include/soc/iomap.h +++ b/src/soc/intel/meteorlake/include/soc/iomap.h @@ -64,7 +64,7 @@ #define P2SB_BAR CONFIG_PCR_BASE_ADDRESS #define P2SB_SIZE (16 * MiB) -#define IOE_PCR_ABOVE_4G_BASE_ADDR 0x3fff0000000 +#define IOE_PCR_ABOVE_4G_BASE_ADDR CONFIG_IOE_PCR_BASE_ADDRESS #define IOE_P2SB_BAR IOE_PCR_ABOVE_4G_BASE_ADDR #define IOE_P2SB_SIZE (256 * MiB) |