Files
zephyr/drivers/mipi_dbi/Kconfig
Qingsong Gou 60943ec684 drivers: mipi_dbi: add lcdc mipi-dbi driver for sf32lb
Add lcdc mipi-dbi driver for sf32lb platform

Signed-off-by: Qingsong Gou <gouqs@hotmail.com>
2026-01-13 14:08:12 -06:00

38 lines
994 B
Plaintext

# MIPI DBI controller options
# Copyright 2023,2025 NXP
# SPDX-License-Identifier: Apache-2.0
menuconfig MIPI_DBI
bool "MIPI-DBI Host Controller drivers [EXPERIMENTAL]"
select EXPERIMENTAL
help
Add support for MIPI-DBI compliant host controllers
if MIPI_DBI
module = MIPI_DBI
module-str = mipi_dbi
source "subsys/logging/Kconfig.template.log_config"
config MIPI_DBI_INIT_PRIORITY
int "Initialization priority"
default 80
help
MIPI-DBI Host Controllers initialization priority.
# zephyr-keep-sorted-start
source "drivers/mipi_dbi/Kconfig.bflb"
source "drivers/mipi_dbi/Kconfig.bitbang"
source "drivers/mipi_dbi/Kconfig.esp32"
source "drivers/mipi_dbi/Kconfig.nxp_dcnano_lcdif"
source "drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif"
source "drivers/mipi_dbi/Kconfig.nxp_lcdic"
source "drivers/mipi_dbi/Kconfig.sf32lb_lcdc"
source "drivers/mipi_dbi/Kconfig.smartbond"
source "drivers/mipi_dbi/Kconfig.spi"
source "drivers/mipi_dbi/Kconfig.stm32_fmc"
# zephyr-keep-sorted-stop
endif