1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) ASPEED Technology Inc. 4 * 5 */ 6 7 #ifndef __CONFIG_H 8 #define __CONFIG_H 9 10 #include <configs/aspeed-common.h> 11 12 #define CONFIG_SYS_MEMTEST_START (CONFIG_SYS_SDRAM_BASE + 0x300000) 13 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x5000000) 14 15 #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE 16 17 /* Memory Info */ 18 #define CONFIG_SYS_LOAD_ADDR 0x83000000 19 20 #ifdef CONFIG_SPL_TINY 21 #ifdef CONFIG_SPL_BUILD 22 #define CONFIG_SYS_NS16550_REG_SIZE 2 23 #endif 24 #endif 25 26 /* SPL */ 27 #define CONFIG_SPL_TEXT_BASE 0x00000000 28 #define CONFIG_SPL_MAX_SIZE 0x00010000 29 #define CONFIG_SPL_STACK 0x10016000 30 #define CONFIG_SPL_BSS_START_ADDR 0x90000000 31 #define CONFIG_SPL_BSS_MAX_SIZE 0x00100000 32 33 #define CONFIG_SUPPORT_EMMC_BOOT 34 35 #endif /* __CONFIG_H */ 36