1 /* 2 * (C) Copyright 2009-2015 3 * Marvell Semiconductor <www.marvell.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef _CONFIG_MARVELL_PLUG_H 9 #define _CONFIG_MARVELL_PLUG_H 10 11 12 /* 13 * High Level Configuration Options (easy to change) 14 */ 15 #define CONFIG_KW88F6281 1 /* SOC Name */ 16 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 17 18 /* Add target to build it automatically upon "make" */ 19 #define CONFIG_BUILD_TARGET "u-boot.kwb" 20 21 /* 22 * Compression configuration 23 */ 24 #ifdef CONFIG_SYS_MVFS 25 #define CONFIG_BZIP2 26 #define CONFIG_LZMA 27 #define CONFIG_CMD_BOOTZ 28 #endif /* CONFIG_SYS_MVFS */ 29 30 /* 31 * Enable device tree support 32 */ 33 #define CONFIG_OF_LIBFDT 34 35 /* 36 * Commands configuration 37 */ 38 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 39 #define CONFIG_CMD_DATE 40 #define CONFIG_CMD_ENV 41 #define CONFIG_CMD_IDE 42 #define CONFIG_CMD_MII 43 44 /* 45 * Extra file system 46 */ 47 #define CONFIG_CMD_EXT4 48 49 /* 50 * mv-common.h should be defined after CMD configs since it used them 51 * to enable certain macros 52 */ 53 #include "mv-common.h" 54 55 /* 56 * RTC driver configuration 57 */ 58 #ifdef CONFIG_CMD_DATE 59 #define CONFIG_RTC_MV 60 #endif /* CONFIG_CMD_DATE */ 61 62 #define CONFIG_SYS_ALT_MEMTEST 63 64 #endif /* _CONFIG_MARVELL_PLUG_H */ 65