1 /* 2 * Configuration for Xilinx ZynqMP 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_H 12 #define __CONFIG_ZYNQMP_MINI_H 13 14 #define CONFIG_SYS_MEMTEST_SCRATCH 0xfffc0000 15 16 #include <configs/xilinx_zynqmp.h> 17 18 /* Undef unneeded configs */ 19 #undef CONFIG_EXTRA_ENV_SETTINGS 20 #undef CONFIG_SYS_MALLOC_LEN 21 #undef CONFIG_ENV_SIZE 22 #undef CONFIG_ZLIB 23 #undef CONFIG_GZIP 24 #undef CONFIG_CMD_ENV 25 #undef CONFIG_MP 26 #undef CONFIG_SYS_INIT_SP_ADDR 27 #undef CONFIG_MTD_DEVICE 28 #undef CONFIG_BOOTM_NETBSD 29 #undef CONFIG_BOOTM_VXWORKS 30 #undef CONFIG_BOOTM_LINUX 31 #undef CONFIG_BOARD_LATE_INIT 32 33 /* BOOTP options */ 34 #undef CONFIG_BOOTP_BOOTFILESIZE 35 #undef CONFIG_BOOTP_MAY_FAIL 36 #undef CONFIG_CMD_UNZIP 37 38 #undef CONFIG_NR_DRAM_BANKS 39 40 #endif /* __CONFIG_ZYNQMP_MINI_H */ 41