diff options
author | Tom Rini | 2022-03-18 08:38:28 -0400 |
---|---|---|
committer | Tom Rini | 2022-03-25 12:01:15 +0000 |
commit | 286c4531ad4bdc75ea0420201f388e9fb21076ef (patch) | |
tree | 664b301a8e9681d9267d727307d6558343e46058 /drivers | |
parent | cc386f161c3bd63c8370444df49d9fc36b60e403 (diff) |
Convert CONFIG_ATMEL_LCD et al to Kconfig
This converts the following to Kconfig:
CONFIG_ATMEL_LCD
CONFIG_ATMEL_LCD_BGR555
CONFIG_ATMEL_LCD_RGB565
CONFIG_GURNARD_SPLASH
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 646fec70262..82d4569eab7 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -421,6 +421,15 @@ config VIDEO_LCD_ANX9804 from a parallel LCD interface and translate it on the fy into a DP interface for driving eDP TFT displays. It uses I2C for configuration. +config ATMEL_LCD + bool "Atmel LCD panel support" + depends on LCD && ARCH_AT91 + +config ATMEL_LCD_BGR555 + bool "Display in BGR555 mode" + help + Use the BGR555 output mode. Otherwise RGB565 is used. + config VIDEO_LCD_ORISETECH_OTM8009A bool "OTM8009A DSI LCD panel support" depends on DM_VIDEO |