1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2019 4 * Author(s): Giulio Benetti <giulio.benetti@benettiengineering.com> 5 */ 6 7 #ifndef __IMXRT1050_EVK_H 8 #define __IMXRT1050_EVK_H 9 10 #include <asm/arch/imx-regs.h> 11 12 #define PHYS_SDRAM 0x80000000 13 #define PHYS_SDRAM_SIZE (32 * 1024 * 1024) 14 15 #define DMAMEM_SZ_ALL (1 * 1024 * 1024) 16 #define DMAMEM_BASE (PHYS_SDRAM + PHYS_SDRAM_SIZE - \ 17 DMAMEM_SZ_ALL) 18 19 /* 20 * Address of U-Boot for SPI NOR boot 21 */ 22 23 #define CFG_SYS_UBOOT_BASE 0x60010000 24 25 #endif /* __IMXRT1050_EVK_H */ 26