1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright 2025 NXP 4 */ 5 6 #ifndef __IMX95_EVK_H 7 #define __IMX95_EVK_H 8 9 #include <linux/sizes.h> 10 #include <linux/stringify.h> 11 #include <asm/arch/imx-regs.h> 12 13 #define CFG_SYS_INIT_RAM_ADDR 0x90000000 14 #define CFG_SYS_INIT_RAM_SIZE 0x200000 15 16 #define CFG_SYS_SDRAM_BASE 0x90000000 17 #define PHYS_SDRAM 0x90000000 18 /* Totally 16GB */ 19 #define PHYS_SDRAM_SIZE 0x70000000 /* 2GB - 256MB DDR */ 20 #define PHYS_SDRAM_2_SIZE 0x380000000 /* 14GB */ 21 22 #define WDOG_BASE_ADDR WDG3_BASE_ADDR 23 24 #endif 25