diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-02-06 18:42:22 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-02-07 20:36:43 +0000 |
commit | 737c8c2c1c7856ae3d9bd52a16a3872b2a4bbc0a (patch) | |
tree | a1e99135544d988237252232df13813b534c3277 /src/soc/amd/cezanne/chip.c | |
parent | 9c25a03fc350d6739398be9c121b2055e0af4b85 (diff) |
soc/amd: drop unneeded data_fabric_set_mmio_np
Drop the unneeded data_fabric_set_mmio_np function and the corresponding
SOC_AMD_COMMON_BLOCK_DATA_FABRIC_NP_REGION Kconfig symbol. In systems
with only one FCH, its MMIO region will be subtractively decoded and
there's no need to add a non-posted data fabric MMIO region after the
FSP/openSIL has already configured the data fabric decode windows. In
systems with more than one FCH, openSIL will already take care of
initializing everything for the additional FCH, so we also won't need to
do anything in that case. Since dropping this function also removes both
data_fabric_print_mmio_conf calls before and after adding the unneeded
non-posted MMIO region, replace the data_fabric_set_mmio_np call with a
data_fabric_print_mmio_conf call to still print the data fabric MMIO
decode regions set up by the FSP/openSIL.
TEST=Mandolin still boots successfully
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I474b6e066060abb3fe5b78505521c7782cc192ee
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80355
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Diffstat (limited to 'src/soc/amd/cezanne/chip.c')
-rw-r--r-- | src/soc/amd/cezanne/chip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/cezanne/chip.c b/src/soc/amd/cezanne/chip.c index 7d315cbd3b..83fd5c6a16 100644 --- a/src/soc/amd/cezanne/chip.c +++ b/src/soc/amd/cezanne/chip.c @@ -41,7 +41,7 @@ static void soc_init(void *chip_info) amd_fsp_silicon_init(); - data_fabric_set_mmio_np(); + data_fabric_print_mmio_conf(); fch_init(chip_info); } |