
Version 1: - Initial commit
The purpose of this set of patches is to add the STM32 LTDC display controller support. In preamble, a configuration switch is added for pwm-based backlights and a new gpio-based backlight driver is proposed.
Patrick Delaunay (2): dm: backlight: Add CONFIG_BACKLIGHT_PWM dm: backlight: Add a driver for GPIO backlight
Philippe CORNU (1): video: add STM32 LTDC display controller
drivers/video/Kconfig | 23 +++ drivers/video/Makefile | 6 +- drivers/video/backlight_gpio.c | 74 +++++++ drivers/video/stm32/Kconfig | 44 +++++ drivers/video/stm32/Makefile | 10 + drivers/video/stm32/stm32_ltdc.c | 406 +++++++++++++++++++++++++++++++++++++++ 6 files changed, 560 insertions(+), 3 deletions(-) create mode 100644 drivers/video/backlight_gpio.c create mode 100644 drivers/video/stm32/Kconfig create mode 100644 drivers/video/stm32/Makefile create mode 100644 drivers/video/stm32/stm32_ltdc.c