From 695a3ac76995019a452d2bc1e8664a066bbeb2b2 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 8 Aug 2023 20:50:16 +0200 Subject: [PATCH] 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 Change-Id: I3c840a3e071a289d9e02143ee790c26faeda029d Reviewed-on: https://review.coreboot.org/c/coreboot/+/77081 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/soc/amd/mendocino/include/soc/data_fabric.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 #include -#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)