1 /*
2  * Configuration for Xilinx ZynqMP eMMC Flash utility
3  *
4  * (C) Copyright 2018 Xilinx, Inc.
5  * Michal Simek <michal.simek@xilinx.com>
6  * Siva Durga Prasad Paladugu <sivadur@xilinx.com>
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  */
10 
11 #ifndef __CONFIG_ZYNQMP_MINI_EMMC_H
12 #define __CONFIG_ZYNQMP_MINI_EMMC_H
13 
14 #include <configs/xilinx_zynqmp_mini.h>
15 
16 #define CONFIG_SYS_ICACHE_OFF
17 #define CONFIG_NR_DRAM_BANKS	1
18 #define CONFIG_ENV_SIZE		0x10000
19 #define CONFIG_SYS_INIT_SP_ADDR	CONFIG_SYS_TEXT_BASE
20 #define CONFIG_SYS_MALLOC_LEN	0x800000
21 
22 #endif /* __CONFIG_ZYNQMP_MINI_EMMC_H */
23