1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2009-2015 4 * Marvell Semiconductor <www.marvell.com> 5 */ 6 7 #ifndef _CONFIG_MARVELL_PLUG_H 8 #define _CONFIG_MARVELL_PLUG_H 9 10 /* 11 * High Level Configuration Options (easy to change) 12 */ 13 #define CONFIG_KW88F6281 1 /* SOC Name */ 14 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 15 16 /* Add target to build it automatically upon "make" */ 17 #define CONFIG_BUILD_TARGET "u-boot.kwb" 18 19 /* 20 * mv-common.h should be defined after CMD configs since it used them 21 * to enable certain macros 22 */ 23 #include "mv-common.h" 24 25 /* 26 * RTC driver configuration 27 */ 28 #ifdef CONFIG_CMD_DATE 29 #define CONFIG_RTC_MV 30 #endif /* CONFIG_CMD_DATE */ 31 32 #endif /* _CONFIG_MARVELL_PLUG_H */ 33