xref: /openbmc/u-boot/include/configs/evb_ast2500.h (revision 2e19599287b11f5cf04efd52ca47df83e1db5561)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) ASPEED Technology Inc.
4  * Copyright 2016 Google Inc
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 /* Environment */
21 #define CONFIG_ENV_SIZE			0x10000
22 #define CONFIG_ENV_OFFSET		0x90000
23 #define CONFIG_ENV_SECT_SIZE		(4 << 10)
24 
25 #endif	/* __CONFIG_H */
26