drivers: display: Add support for Raydium RM68200

Add support for the Raydium RM68200 MIPI DSI panel.

Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
This commit is contained in:
Mahesh Mahadevan 2022-02-23 14:42:50 -06:00 committed by David Leach
commit 450a1c0982
6 changed files with 1128 additions and 0 deletions

View file

@ -17,6 +17,7 @@ zephyr_library_sources_ifdef(CONFIG_SSD16XX ssd16xx.c)
zephyr_library_sources_ifdef(CONFIG_ST7789V display_st7789v.c)
zephyr_library_sources_ifdef(CONFIG_ST7735R display_st7735r.c)
zephyr_library_sources_ifdef(CONFIG_STM32_LTDC display_stm32_ltdc.c)
zephyr_library_sources_ifdef(CONFIG_RM68200 display_rm68200.c)
zephyr_library_sources_ifdef(CONFIG_MICROBIT_DISPLAY
mb_display.c

View file

@ -33,6 +33,7 @@ source "drivers/display/Kconfig.stm32_ltdc"
source "drivers/display/Kconfig.gd7965"
source "drivers/display/Kconfig.dummy"
source "drivers/display/Kconfig.ls0xx"
source "drivers/display/Kconfig.rm68200"
config FRAMEBUF_DISPLAY
# Hidden, selected by client drivers.

View file

@ -0,0 +1,11 @@
# Copyright 2022, NXP
# SPDX-License-Identifier: Apache-2.0
DT_COMPAT_RM68200 := raydium,rm68200
config RM68200
bool "RM68200 display driver"
depends on MIPI_DSI
default $(dt_compat_enabled,$(DT_COMPAT_RM68200))
help
Enable driver for RM68200 display driver.

File diff suppressed because it is too large Load diff