xref: /openbmc/u-boot/include/configs/zynq_cse.h (revision 78a88f79)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2013 - 2017 Xilinx.
4  *
5  * Configuration settings for the Xilinx Zynq CSE board.
6  * See zynq-common.h for Zynq common configs
7  */
8 
9 #ifndef __CONFIG_ZYNQ_CSE_H
10 #define __CONFIG_ZYNQ_CSE_H
11 
12 #define CONFIG_SKIP_LOWLEVEL_INIT
13 #define CONFIG_SYS_DCACHE_OFF
14 #define CONFIG_SYS_ICACHE_OFF
15 
16 #include <configs/zynq-common.h>
17 
18 /* Undef unneeded configs */
19 #undef CONFIG_EXTRA_ENV_SETTINGS
20 #undef CONFIG_BOARD_LATE_INIT
21 #undef CONFIG_ZLIB
22 #undef CONFIG_GZIP
23 
24 #undef CONFIG_SYS_CBSIZE
25 #undef CONFIG_BOOTM_VXWORKS
26 #undef CONFIG_BOOTM_LINUX
27 
28 #define CONFIG_SYS_CBSIZE	1024
29 
30 #undef CONFIG_SYS_INIT_RAM_ADDR
31 #undef CONFIG_SYS_INIT_RAM_SIZE
32 #define CONFIG_SYS_INIT_RAM_ADDR	0xFFFDE000
33 #define CONFIG_SYS_INIT_RAM_SIZE	0x1000
34 #undef CONFIG_SPL_BSS_START_ADDR
35 #undef CONFIG_SPL_BSS_MAX_SIZE
36 #define CONFIG_SPL_BSS_START_ADDR	0x20000
37 #define CONFIG_SPL_BSS_MAX_SIZE		0x8000
38 
39 #undef CONFIG_SYS_MALLOC_LEN
40 #define CONFIG_SYS_MALLOC_LEN	0x1000
41 
42 #endif /* __CONFIG_ZYNQ_CSE_H */
43