diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-08-08 20:50:16 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-08-10 18:43:08 +0000 |
commit | 695a3ac76995019a452d2bc1e8664a066bbeb2b2 (patch) | |
tree | 490ca6ee208dad806b2e050e59e74ce23c50c3b7 /src/soc/amd/mendocino/include | |
parent | bcbab2497dc30fadbfa10504b7c13662a967d9cb (diff) |
soc/amd/mendocino/include/data_fabric: fix IOMS0_FABRIC_ID for Rembrandt
Rembrandt has different data fabric component IDs compared to Mendocino.
PPR #56558 Rev 3.04 was used as a reference.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I3c840a3e071a289d9e02143ee790c26faeda029d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77081
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/mendocino/include')
-rw-r--r-- | src/soc/amd/mendocino/include/soc/data_fabric.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/soc/amd/mendocino/include/soc/data_fabric.h b/src/soc/amd/mendocino/include/soc/data_fabric.h index 1311412157..d833db4949 100644 --- a/src/soc/amd/mendocino/include/soc/data_fabric.h +++ b/src/soc/amd/mendocino/include/soc/data_fabric.h @@ -6,7 +6,11 @@ #include <amdblocks/data_fabric_defs.h> #include <types.h> -#define IOMS0_FABRIC_ID 9 +#if CONFIG(SOC_AMD_REMBRANDT) +#define IOMS0_FABRIC_ID 0xd +#else +#define IOMS0_FABRIC_ID 0x9 +#endif #define DF_PCI_CFG_MAP0 DF_REG_ID(0, 0xa0) |