1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2025 DENX Software Engineering 4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de 5 */ 6 #ifndef __CONFIGS_BTT_H__ 7 #define __CONFIGS_BTT_H__ 8 9 #include <linux/sizes.h> 10 /* Memory configuration */ 11 #define PHYS_SDRAM_1 0x40000000 /* Base address */ 12 #define PHYS_SDRAM_1_SIZE SZ_256M /* Max 256 MB RAM */ 13 #define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1 14 15 /* The rest of the configuration is shared */ 16 #include <configs/mxs.h> 17 18 #endif /* __CONFIGS_BTT_H__ */ 19