1# Copyright 2023 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4config MIPI_DBI_SPI
5	bool "MIPI DBI SPI driver"
6	default y
7	depends on DT_HAS_ZEPHYR_MIPI_DBI_SPI_ENABLED
8	select SPI
9	help
10	  Enable support for MIPI DBI SPI driver. This driver implements
11	  a MIPI-DBI mode C compatible controller using a SPI device, as well
12	  as GPIO outputs for the reset and D/C signals
13
14if MIPI_DBI_SPI
15
16config MIPI_DBI_SPI_3WIRE
17	bool "Emulated 3 wire SPI support"
18	help
19	  Support 3 wire MIPI DBI (Mode C option 2) in MIPI DBI SPI
20	  driver. This requires manually packing each byte with a data/command
21	  bit, and may slow down display data transmission.
22
23endif # MIPI_DBI_SPI
24