2019-11-01 20:45:29 +08:00
|
|
|
|
# VIDEO driver configuration options
|
2019-07-01 20:41:19 +08:00
|
|
|
|
|
|
|
|
|
# Copyright (c) 2019 Linaro Limited
|
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# VIDEO Drivers
|
|
|
|
|
#
|
|
|
|
|
menuconfig VIDEO
|
2023-03-27 20:55:23 +08:00
|
|
|
|
bool "Video drivers"
|
2019-07-01 20:41:19 +08:00
|
|
|
|
help
|
|
|
|
|
Enable support for the VIDEO.
|
|
|
|
|
|
|
|
|
|
if VIDEO
|
|
|
|
|
|
2020-04-06 21:58:02 +08:00
|
|
|
|
config VIDEO_INIT_PRIORITY
|
|
|
|
|
int "Video initialization priority"
|
2022-12-29 19:11:53 +08:00
|
|
|
|
default 60
|
2020-04-06 21:58:02 +08:00
|
|
|
|
help
|
|
|
|
|
System initialization priority for video drivers.
|
|
|
|
|
|
2019-07-01 20:41:19 +08:00
|
|
|
|
config VIDEO_BUFFER_POOL_SZ_MAX
|
|
|
|
|
int "Size of the largest buffer in the video pool"
|
|
|
|
|
default 1048576
|
|
|
|
|
|
|
|
|
|
config VIDEO_BUFFER_POOL_NUM_MAX
|
|
|
|
|
int "Number of maximum sized buffer in the video pool"
|
|
|
|
|
default 2
|
|
|
|
|
|
|
|
|
|
config VIDEO_BUFFER_POOL_ALIGN
|
|
|
|
|
int "Alignment of the video pool’s buffer"
|
|
|
|
|
default 64
|
|
|
|
|
|
|
|
|
|
source "drivers/video/Kconfig.mcux_csi"
|
|
|
|
|
|
2024-02-29 18:10:33 +08:00
|
|
|
|
source "drivers/video/Kconfig.mcux_mipi_csi2rx"
|
|
|
|
|
|
2019-08-29 00:53:00 +08:00
|
|
|
|
source "drivers/video/Kconfig.sw_generator"
|
|
|
|
|
|
2019-08-29 01:17:46 +08:00
|
|
|
|
source "drivers/video/Kconfig.mt9m114"
|
2019-07-06 00:14:57 +08:00
|
|
|
|
|
2020-12-17 21:00:35 +08:00
|
|
|
|
source "drivers/video/Kconfig.ov7725"
|
|
|
|
|
|
2021-06-21 17:48:29 +08:00
|
|
|
|
source "drivers/video/Kconfig.ov2640"
|
|
|
|
|
|
2024-03-23 04:26:26 +08:00
|
|
|
|
source "drivers/video/Kconfig.stm32_dcmi"
|
|
|
|
|
|
2024-02-29 23:33:55 +08:00
|
|
|
|
source "drivers/video/Kconfig.ov5640"
|
|
|
|
|
|
2024-05-16 06:26:04 +08:00
|
|
|
|
source "drivers/video/Kconfig.ov7670"
|
|
|
|
|
|
2019-07-01 20:41:19 +08:00
|
|
|
|
endif # VIDEO
|