mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-07 02:25:22 +00:00
The CSI needs to be initialized BEFORE the camera sensor to provide clock to the camera sensor. It is now possible to do so as direct reference to the sensor via phandle is now removed. There will be no check failure on the init order anymore when compiling. Signed-off-by: Phi Bang Nguyen <phibang.nguyen@nxp.com>
18 lines
449 B
Plaintext
18 lines
449 B
Plaintext
# NXP MCUX CSI driver configuration options
|
|
|
|
# Copyright (c) 2019, Linaro Limited
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config VIDEO_MCUX_CSI
|
|
bool "NXP MCUX CMOS Sensor Interface (CSI) driver"
|
|
default y
|
|
depends on DT_HAS_NXP_IMX_CSI_ENABLED
|
|
select PINCTRL
|
|
|
|
config VIDEO_MCUX_CSI_INIT_PRIORITY
|
|
int "NXP MCUX CSI init priority"
|
|
default 59
|
|
depends on VIDEO_MCUX_CSI
|
|
help
|
|
Initialization priority for the CSI interface on an NXP MCUX device.
|