1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2024 NXP
4  */
5 
6 #ifndef __IMX91_EVK_H
7 #define __IMX91_EVK_H
8 
9 #define CFG_SYS_UBOOT_BASE	\
10 	(QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
11 
12 #define CFG_SYS_INIT_RAM_ADDR	0x80000000
13 #define CFG_SYS_INIT_RAM_SIZE	0x200000
14 
15 #define CFG_SYS_SDRAM_BASE	0x80000000
16 #define PHYS_SDRAM		0x80000000
17 #define PHYS_SDRAM_SIZE		0x80000000 /* 2GB DDR */
18 
19 #define WDOG_BASE_ADDR		WDG3_BASE_ADDR
20 
21 #endif
22