Andrey Petrov has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38639 )
Change subject: soc/intel/common/systemagent: add Kconfig guard ......................................................................
soc/intel/common/systemagent: add Kconfig guard
Looks like having this in the tree force-sets MMCONF_BASE_ADDR to some value which can't be overriden anywhere.
TEST=build test on wip platform
Change-Id: Ia160444e8ac7cac55153f659f4d98f4f77f0d467 --- M src/mainboard/intel/harcuvar/Kconfig M src/mainboard/scaleway/tagada/Kconfig M src/soc/intel/common/block/systemagent/Kconfig 3 files changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/39/38639/1
diff --git a/src/mainboard/intel/harcuvar/Kconfig b/src/mainboard/intel/harcuvar/Kconfig index 271ff81..e5f7dad 100644 --- a/src/mainboard/intel/harcuvar/Kconfig +++ b/src/mainboard/intel/harcuvar/Kconfig @@ -42,4 +42,8 @@ help Location of SPD binary for memory down function.
+config MMCONF_BASE_ADDRESS + hex + default 0xe0000000 + endif # BOARD_INTEL_HARCUVAR diff --git a/src/mainboard/scaleway/tagada/Kconfig b/src/mainboard/scaleway/tagada/Kconfig index 21088cb..5db6048 100644 --- a/src/mainboard/scaleway/tagada/Kconfig +++ b/src/mainboard/scaleway/tagada/Kconfig @@ -42,4 +42,8 @@ hex default 0x19 # SMBIOS_ENCLOSURE_MULTI_SYSTEM_CHASSIS
+config MMCONF_BASE_ADDRESS + hex + default 0xe0000000 + endif # BOARD_SCALEWAY_TAGADA diff --git a/src/soc/intel/common/block/systemagent/Kconfig b/src/soc/intel/common/block/systemagent/Kconfig index 1222573..6dd1f3b 100644 --- a/src/soc/intel/common/block/systemagent/Kconfig +++ b/src/soc/intel/common/block/systemagent/Kconfig @@ -3,6 +3,8 @@ help Intel Processor common System Agent support
+if SOC_INTEL_COMMON_BLOCK_SA + config MMCONF_BASE_ADDRESS hex default 0xe0000000 @@ -36,3 +38,5 @@ default n help This option allows you to add the DMA Protected Range (DPR). + +endif