27 lines
556 B
Plaintext
27 lines
556 B
Plaintext
# Memory controller configuration options
|
|
|
|
# Copyright (c) 2020 Teslabs Engineering S.L.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig MIPI_DSI
|
|
bool "MIPI-DSI Host Controllers [EXPERIMENTAL]"
|
|
select EXPERIMENTAL
|
|
help
|
|
Add support for MIPI-DSI host controllers
|
|
|
|
if MIPI_DSI
|
|
|
|
module = MIPI_DSI
|
|
module-str = mipi_dsi
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config MIPI_DSI_INIT_PRIORITY
|
|
int "Initialization priority"
|
|
default 40
|
|
help
|
|
MIPI-DSI Host Controllers initialization priority.
|
|
|
|
source "drivers/mipi_dsi/Kconfig.mcux"
|
|
|
|
endif
|