exynos5-dt-common.h 730 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2014 Google, Inc
  4. *
  5. * Configuration settings for generic Exynos 5 board
  6. */
  7. #ifndef __CONFIG_EXYNOS5_DT_COMMON_H
  8. #define __CONFIG_EXYNOS5_DT_COMMON_H
  9. /* Console configuration */
  10. #undef EXYNOS_DEVICE_SETTINGS
  11. #define EXYNOS_DEVICE_SETTINGS \
  12. "stdin=serial,cros-ec-keyb\0" \
  13. "stdout=serial,vidconsole\0" \
  14. "stderr=serial,vidconsole\0"
  15. #define CONFIG_EXYNOS5_DT
  16. #define CONFIG_SYS_SPI_BASE 0x12D30000
  17. #define FLASH_SIZE (4 << 20)
  18. #define CONFIG_SPI_BOOTING
  19. #define CONFIG_BOARD_COMMON
  20. /* Display */
  21. #ifdef CONFIG_LCD
  22. #define CONFIG_EXYNOS_FB
  23. #define CONFIG_EXYNOS_DP
  24. #define LCD_BPP LCD_COLOR16
  25. #endif
  26. /* Enable keyboard */
  27. #define CONFIG_KEYBOARD
  28. #endif