xref: /openbmc/u-boot/include/configs/evb_ast2600.h (revision 0735660ae420e38f707be144b2299b761341b638)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) ASPEED Technology Inc.
4  */
5 
6 #ifndef __CONFIG_H
7 #define __CONFIG_H
8 
9 #include <configs/aspeed-common.h>
10 
11 #define CONFIG_SYS_HZ_CLOCK			25000000
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 
23 #ifdef CONFIG_CMD_NETTEST
24 #define CONFIG_ENV_OFFSET		0x7f0000
25 #else
26 #define CONFIG_ENV_OFFSET		0x60000
27 #endif
28 
29 #define CONFIG_ENV_SECT_SIZE		(4 << 10)
30 
31 #endif	/* __CONFIG_H */
32