1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2019 DENX Software Engineering 4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de 5 * 6 * Copyright (C) 2018 DENX Software Engineering 7 * Måns Rullgård, DENX Software Engineering, mans@mansr.com 8 * 9 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> 10 * on behalf of DENX Software Engineering GmbH 11 */ 12 #ifndef __CONFIGS_XEA_H__ 13 #define __CONFIGS_XEA_H__ 14 15 /* Memory configuration */ 16 #define PHYS_SDRAM_1 0x40000000 /* Base address */ 17 #define PHYS_SDRAM_1_SIZE 0x10000000 /* Max 256 MB RAM */ 18 #define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1 19 20 /* The rest of the configuration is shared */ 21 #include <configs/mxs.h> 22 23 #endif /* __CONFIGS_XEA_H__ */ 24