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>
This commit is contained in:
Felix Held 2023-08-08 20:50:16 +02:00
parent bcbab2497d
commit 695a3ac769
1 changed files with 5 additions and 1 deletions

View File

@ -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)