1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Board configuration file for Dragonboard 410C 4 * 5 * (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com> 6 */ 7 8 #ifndef __CONFIGS_DRAGONBOARD410C_H 9 #define __CONFIGS_DRAGONBOARD410C_H 10 11 #include <linux/sizes.h> 12 13 /* Build new ELF image from u-boot.bin (U-Boot + appended DTB) */ 14 15 /* Physical Memory Map */ 16 #define PHYS_SDRAM_1 0x80000000 17 /* Note: 8 MiB (0x86000000 - 0x86800000) are reserved for tz/smem/hyp/rmtfs/rfsa */ 18 #define PHYS_SDRAM_1_SIZE SZ_1G 19 #define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1 20 21 #endif 22