Skip to content

Commit 87ad2b7

Browse files
committed
drivers: display: add RM67199 driver support
Added rm67199 driver for i.MX93 display. Signed-off-by: Ruoshan Shi <[email protected]> Signed-off-by: Winteri Wang <[email protected]>
1 parent 15429a8 commit 87ad2b7

File tree

5 files changed

+521
-0
lines changed

5 files changed

+521
-0
lines changed

drivers/display/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ zephyr_library_sources_ifdef(CONFIG_STM32_LTDC display_stm32_ltdc.c)
3636
zephyr_library_sources_ifdef(CONFIG_WAVESHARE_7INCH_DSI_LCD_C display_waveshare_dsi_lcd.c)
3737
zephyr_library_sources_ifdef(CONFIG_RM68200 display_rm68200.c)
3838
zephyr_library_sources_ifdef(CONFIG_RM67162 display_rm67162.c)
39+
zephyr_library_sources_ifdef(CONFIG_RM67199 display_rm67199.c)
3940
zephyr_library_sources_ifdef(CONFIG_HUB12 display_hub12.c)
4041
zephyr_library_sources_ifdef(CONFIG_HX8379C display_hx8379c.c)
4142
zephyr_library_sources_ifdef(CONFIG_HX8394 display_hx8394.c)

drivers/display/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ source "drivers/display/Kconfig.uc81xx"
4747
source "drivers/display/Kconfig.dummy"
4848
source "drivers/display/Kconfig.ls0xx"
4949
source "drivers/display/Kconfig.rm67162"
50+
source "drivers/display/Kconfig.rm67199"
5051
source "drivers/display/Kconfig.rm68200"
5152
source "drivers/display/Kconfig.max7219"
5253
source "drivers/display/Kconfig.intel_multibootfb"

drivers/display/Kconfig.rm67199

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright 2025 NXP
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
config RM67199
5+
bool "RM67199 display driver"
6+
default y
7+
select MIPI_DSI
8+
depends on DT_HAS_RAYDIUM_RM67199_ENABLED
9+
help
10+
Enable driver for RM67199 display.

0 commit comments

Comments
 (0)