1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Configuration for Xilinx ZynqMP Flash utility 4 * 5 * (C) Copyright 2018 Xilinx, Inc. 6 * Michal Simek <michal.simek@xilinx.com> 7 * Siva Durga Prasad Paladugu <sivadur@xilinx.com> 8 */ 9 10 #ifndef __CONFIG_ZYNQMP_MINI_H 11 #define __CONFIG_ZYNQMP_MINI_H 12 13 #define CONFIG_SYS_MEMTEST_SCRATCH 0xfffc0000 14 15 #include <configs/xilinx_zynqmp.h> 16 17 /* Undef unneeded configs */ 18 #undef CONFIG_EXTRA_ENV_SETTINGS 19 #undef CONFIG_SYS_MALLOC_LEN 20 #undef CONFIG_ENV_SIZE 21 #undef CONFIG_ZLIB 22 #undef CONFIG_GZIP 23 #undef CONFIG_CMD_ENV 24 #undef CONFIG_MP 25 #undef CONFIG_SYS_INIT_SP_ADDR 26 #undef CONFIG_MTD_DEVICE 27 #undef CONFIG_BOOTM_NETBSD 28 #undef CONFIG_BOOTM_VXWORKS 29 #undef CONFIG_BOOTM_LINUX 30 #undef CONFIG_BOARD_LATE_INIT 31 32 /* BOOTP options */ 33 #undef CONFIG_BOOTP_BOOTFILESIZE 34 #undef CONFIG_BOOTP_MAY_FAIL 35 #undef CONFIG_CMD_UNZIP 36 37 #undef CONFIG_NR_DRAM_BANKS 38 39 #endif /* __CONFIG_ZYNQMP_MINI_H */ 40