1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2022 4 * Author(s): Jesse Taube <Mr.Bossman075@gmail.com> 5 * Giulio Benetti <giulio.benetti@benettiengineering.com> 6 */ 7 8 #ifndef __IMXRT1170_EVK_H 9 #define __IMXRT1170_EVK_H 10 11 #include <asm/arch/imx-regs.h> 12 13 /* 14 * Configuration of the external SDRAM memory 15 */ 16 17 #define PHYS_SDRAM 0x80000000 18 #define PHYS_SDRAM_SIZE (64 * 1024 * 1024) 19 20 #define DMAMEM_SZ_ALL (1 * 1024 * 1024) 21 #define DMAMEM_BASE (PHYS_SDRAM + PHYS_SDRAM_SIZE - \ 22 DMAMEM_SZ_ALL) 23 24 #endif /* __IMXRT1170_EVK_H */ 25