diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-08-03 00:29:55 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-08-08 19:41:51 +0000 |
commit | 382c83e6db6a390624ff5ac067ff4480b2c06e73 (patch) | |
tree | d8f4f148b24c96b9a9f804bfb3d0352f2ba3ea13 /src/soc/amd/picasso | |
parent | 4078d14a7eb0ccd83ed576e0b4b11e0af5893671 (diff) |
soc/amd/*/include/data_fabric: rename D18F0_MMIO_* to DF_MMIO_*
Now that the data fabric PCI device functions are included in the
register definitions, the remaining data fabric device function numbers
can be dropped from the define names.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ia0355838ac1d513ba562fd6fb4672342dd383498
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76888
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/amd/picasso')
-rw-r--r-- | src/soc/amd/picasso/include/soc/data_fabric.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/soc/amd/picasso/include/soc/data_fabric.h b/src/soc/amd/picasso/include/soc/data_fabric.h index 382de8a73e..fa5c0df607 100644 --- a/src/soc/amd/picasso/include/soc/data_fabric.h +++ b/src/soc/amd/picasso/include/soc/data_fabric.h @@ -6,11 +6,10 @@ #include <amdblocks/data_fabric_defs.h> #include <types.h> -/* D18F0 - Fabric Configuration registers */ -#define D18F0_MMIO_BASE0 DF_REG_ID(0, 0x200) -#define D18F0_MMIO_LIMIT0 DF_REG_ID(0, 0x204) -#define D18F0_MMIO_SHIFT 16 -#define D18F0_MMIO_CTRL0 DF_REG_ID(0, 0x208) +#define DF_MMIO_BASE0 DF_REG_ID(0, 0x200) +#define DF_MMIO_LIMIT0 DF_REG_ID(0, 0x204) +#define DF_MMIO_SHIFT 16 +#define DF_MMIO_CTRL0 DF_REG_ID(0, 0x208) #define DF_MMIO_REG_SET_SIZE 4 #define DF_MMIO_REG_SET_COUNT 8 |