From 2b7892255bd617dfc523cfe8455dbf386a3dfaf5 Mon Sep 17 00:00:00 2001 From: Ye Li Date: Tue, 4 Nov 2025 23:05:37 +0800 Subject: imx95_evk: Add basic support for iMX95 15x15 EVK Add boot support and peripherals like eMMC/SD, UART, I2C, GPIO, ENETC0/1 and PCIE0/1 for iMX95 15x15 LPDDR4X EVK. Updated doc for build instructions. Signed-off-by: Ye Li --- include/configs/imx95_evk.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/configs/imx95_evk.h b/include/configs/imx95_evk.h index 2eebdadc51d..3d22740b3f4 100644 --- a/include/configs/imx95_evk.h +++ b/include/configs/imx95_evk.h @@ -15,9 +15,13 @@ #define CFG_SYS_SDRAM_BASE 0x90000000 #define PHYS_SDRAM 0x90000000 -/* Totally 16GB */ + #define PHYS_SDRAM_SIZE 0x70000000 /* 2GB - 256MB DDR */ -#define PHYS_SDRAM_2_SIZE 0x380000000 /* 14GB */ +#ifdef CONFIG_TARGET_IMX95_15X15_EVK +#define PHYS_SDRAM_2_SIZE 0x180000000 /* 6GB (Totally 8GB) */ +#else +#define PHYS_SDRAM_2_SIZE 0x380000000 /* 14GB (Totally 16GB) */ +#endif #define WDOG_BASE_ADDR WDG3_BASE_ADDR -- cgit v1.2.3