Kconfig 692 B

123456789101112131415161718192021222324252627282930313233
  1. # Configuration options for Actions Display Controller
  2. # Copyright (c) 2020 Actions Technology Co., Ltd
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig DISPLAY_CONTROLLER
  5. bool "Display Controller"
  6. help
  7. Enable display controller
  8. if DISPLAY_CONTROLLER
  9. config DISPLAY_LCDC
  10. bool "Display LCD Controller"
  11. default y
  12. help
  13. Enable LCD display controller
  14. config DISPLAY_LCDC_LARK
  15. bool
  16. default y if SOC_SERIES_LARK
  17. depends on DISPLAY_LCDC
  18. help
  19. Enable LCD display controller for Lark SoC Series.
  20. config DISPLAY_LCDC_LEOPARD
  21. bool
  22. default y if SOC_SERIES_LEOPARD
  23. depends on DISPLAY_LCDC
  24. help
  25. Enable LCD display controller for Leopard SoC Series.
  26. endif # DISPLAY_CONTROLLER