mv-plug-common.h 1.1 KB

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