Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/79974?usp=email )
Change subject: device/Kconfig: handle ECAM_MMCONF_BUS_NUMBER being 32 ......................................................................
device/Kconfig: handle ECAM_MMCONF_BUS_NUMBER being 32
Provide a default for the ECAM_MMCONF_LENGTH Kconfig option for the ECAM_MMCONF_BUS_NUMBER option being set to 32.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I01e7da5d49f296dde2de41e23e86e3f49fe78193 --- M src/device/Kconfig 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/79974/1
diff --git a/src/device/Kconfig b/src/device/Kconfig index 374427a..5202c18 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -593,6 +593,7 @@ config ECAM_MMCONF_LENGTH hex depends on ECAM_MMCONF_SUPPORT + default 0x02000000 if ECAM_MMCONF_BUS_NUMBER = 32 default 0x04000000 if ECAM_MMCONF_BUS_NUMBER = 64 default 0x08000000 if ECAM_MMCONF_BUS_NUMBER = 128 default 0x10000000 if ECAM_MMCONF_BUS_NUMBER = 256