Skip to content

Commit

Permalink
drivers: display: Add support for Raydium RM68200
Browse files Browse the repository at this point in the history
Add support for the Raydium RM68200 MIPI DSI panel.

Signed-off-by: Mahesh Mahadevan <[email protected]>
  • Loading branch information
mmahadevan108 authored and dleach02 committed May 12, 2022
1 parent 27800c2 commit 450a1c0
Show file tree
Hide file tree
Showing 6 changed files with 1,128 additions and 0 deletions.
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@
/drivers/counter/counter_ll_stm32_timer.c @kentjhall
/drivers/crypto/*nrf_ecb* @maciekfabia @anangl
/drivers/display/display_framebuf.c @dcpleung
/drivers/display/*rm68200* @mmahadevan108
/drivers/dac/ @martinjaeger
/drivers/dai/ @juimonen
/drivers/dai/intel/ @juimonen
Expand Down
1 change: 1 addition & 0 deletions drivers/display/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions drivers/display/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
11 changes: 11 additions & 0 deletions drivers/display/Kconfig.rm68200
Original file line number Diff line number Diff line change
@@ -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.
Loading

0 comments on commit 450a1c0

Please sign in to comment.