From 8585fd08725a415a03ce62573a0be8568cccffd0 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Sat, 4 Nov 2023 04:56:16 +0100 Subject: [PATCH] soc/amd/genoa/include/iomap: add missing I2C and I3C MMIO bases All base addresses of MMIO devices in the devicetree should also have corresponding defines in iomap.h. PPR #55901 Rev 0.26 was used as a reference. Signed-off-by: Felix Held Change-Id: I0444e6cc0587b484a4a1ff49fa4b1540a24c8e80 Reviewed-on: https://review.coreboot.org/c/coreboot/+/78897 Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) --- src/soc/amd/genoa/include/soc/iomap.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/soc/amd/genoa/include/soc/iomap.h b/src/soc/amd/genoa/include/soc/iomap.h index 076938e302..5b767e3e27 100644 --- a/src/soc/amd/genoa/include/soc/iomap.h +++ b/src/soc/amd/genoa/include/soc/iomap.h @@ -18,9 +18,16 @@ #define APU_I2C1_BASE 0xfedc3000 #define APU_I2C2_BASE 0xfedc4000 #define APU_I2C3_BASE 0xfedc5000 +#define APU_I2C4_BASE 0xfedc6000 +#define APU_I2C5_BASE 0xfedcb000 #define APU_UART0_BASE 0xfedc9000 #define APU_UART1_BASE 0xfedca000 #define APU_UART2_BASE 0xfedce000 +#define APU_I3C0_BASE 0xfedd2000 +#define APU_I3C1_BASE 0xfedd3000 +#define APU_I3C2_BASE 0xfedd4000 +#define APU_I3C3_BASE 0xfedd6000 + #endif /* AMD_GENOA_IOMAP_H */