Kconfig 566 B

12345678910111213141516171819202122
  1. menuconfig RT_GRAPHIC_BACKLIGHT
  2. bool "Backlight support"
  3. default n
  4. config RT_GRAPHIC_BACKLIGHT_GPIO
  5. bool "Generic GPIO based backlight driver"
  6. depends on RT_GRAPHIC_BACKLIGHT
  7. depends on RT_USING_PIN
  8. default n
  9. config RT_GRAPHIC_BACKLIGHT_PWM
  10. bool "Generic PWM based backlight driver"
  11. depends on RT_GRAPHIC_BACKLIGHT
  12. depends on RT_USING_OFW
  13. depends on RT_USING_PIN
  14. depends on RT_USING_PWM
  15. depends on RT_USING_REGULATOR
  16. default n
  17. if RT_GRAPHIC_BACKLIGHT
  18. osource "$(SOC_DM_GRAPHIC_BACKLIGHT_DIR)/Kconfig"
  19. endif