2206085cd8
Introduce NXP LCDIC driver using MIPI DBI class. This peripheral supports 8080 and SPI 3/4 wire mode, although only SPI 4 wire support is currently implemented. The driver supports DMA and interrupt driven transfers. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
29 lines
623 B
Plaintext
29 lines
623 B
Plaintext
# MIPI DBI controller options
|
|
|
|
# Copyright 2023 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.
|
|
|
|
source "drivers/mipi_dbi/Kconfig.spi"
|
|
source "drivers/mipi_dbi/Kconfig.smartbond"
|
|
source "drivers/mipi_dbi/Kconfig.nxp_lcdic"
|
|
|
|
endif
|