1# Memory controller configuration options
2
3# Copyright (c) 2020 Teslabs Engineering S.L.
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig MIPI_DSI
7	bool "MIPI-DSI Host Controller drivers [EXPERIMENTAL]"
8	select EXPERIMENTAL
9	help
10	  Add support for MIPI-DSI host controllers
11
12if MIPI_DSI
13
14module = MIPI_DSI
15module-str = mipi_dsi
16source "subsys/logging/Kconfig.template.log_config"
17
18config MIPI_DSI_INIT_PRIORITY
19	int "Initialization priority"
20	default 40
21	help
22	  MIPI-DSI Host Controllers initialization priority.
23
24source "drivers/mipi_dsi/Kconfig.mcux"
25source "drivers/mipi_dsi/Kconfig.stm32"
26
27endif
28