mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 17:35:21 +00:00
Adds a shim layer around the mcux elcdif driver to adapt it to the zephyr display interface. Although the hardware and underlying mcux sdk driver can support additional configurations, some shortcuts are currently made in the shim that force a given pixel format, lcd data bus width, and signal polarity. This works with the rocktech lcd module used on imx rt boards, but will need to be updated for other display panels. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
33 lines
637 B
Plaintext
33 lines
637 B
Plaintext
# Kconfig - Display drivers
|
|
|
|
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig DISPLAY
|
|
bool "Display Drivers"
|
|
help
|
|
Enable display drivers
|
|
|
|
if DISPLAY
|
|
|
|
module = DISPLAY
|
|
module-str = display
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/display/Kconfig.grove"
|
|
source "drivers/display/Kconfig.mcux_elcdif"
|
|
source "drivers/display/Kconfig.microbit"
|
|
source "drivers/display/Kconfig.ili9340"
|
|
source "drivers/display/Kconfig.sdl"
|
|
|
|
source "drivers/display/Kconfig.ssd1306"
|
|
|
|
source "drivers/display/Kconfig.ssd1673"
|
|
|
|
source "drivers/display/Kconfig.dummy"
|
|
|
|
endif # DISPLAY
|