1# VIDEO driver configuration options
2
3# Copyright (c) 2019 Linaro Limited
4# SPDX-License-Identifier: Apache-2.0
5
6#
7# VIDEO Drivers
8#
9menuconfig VIDEO
10	bool "VIDEO hardware support"
11	help
12	  Enable support for the VIDEO.
13
14if VIDEO
15
16config VIDEO_INIT_PRIORITY
17	int "Video initialization priority"
18	default 90
19	help
20	  System initialization priority for video drivers.
21
22config VIDEO_BUFFER_POOL_SZ_MAX
23	int "Size of the largest buffer in the video pool"
24	default 1048576
25
26config VIDEO_BUFFER_POOL_NUM_MAX
27	int "Number of maximum sized buffer in the video pool"
28	default 2
29
30config VIDEO_BUFFER_POOL_ALIGN
31	int "Alignment of the video pool’s buffer"
32	default 64
33
34source "drivers/video/Kconfig.mcux_csi"
35
36source "drivers/video/Kconfig.sw_generator"
37
38source "drivers/video/Kconfig.mt9m114"
39
40source "drivers/video/Kconfig.ov7725"
41
42source "drivers/video/Kconfig.ov2640"
43
44endif # VIDEO
45