blob: 488ad6c80ccd4e8d608d70e257191ad3953453e2 [file] [log] [blame]
Ulf Magnussonbd6e0442019-11-01 13:45:29 +01001# VIDEO driver configuration options
Loic Poulain43e58ae2019-07-01 14:41:19 +02002
Loic Poulain43e58ae2019-07-01 14:41:19 +02003# Copyright (c) 2019 Linaro Limited
Loic Poulain43e58ae2019-07-01 14:41:19 +02004# SPDX-License-Identifier: Apache-2.0
Loic Poulain43e58ae2019-07-01 14:41:19 +02005
6#
7# VIDEO Drivers
8#
9menuconfig VIDEO
Henrik Brix Andersenc41dd362023-03-27 14:55:23 +020010 bool "Video drivers"
Loic Poulain43e58ae2019-07-01 14:41:19 +020011 help
12 Enable support for the VIDEO.
13
14if VIDEO
15
Loic Poulain420ad252020-04-06 15:58:02 +020016config VIDEO_INIT_PRIORITY
17 int "Video initialization priority"
Michele Balistrerif87313b2022-12-29 12:11:53 +010018 default 60
Loic Poulain420ad252020-04-06 15:58:02 +020019 help
20 System initialization priority for video drivers.
21
Loic Poulain43e58ae2019-07-01 14:41:19 +020022config 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
Loic Poulain35871342019-08-28 18:53:00 +020036source "drivers/video/Kconfig.sw_generator"
37
Loic Poulain14a0def2019-08-28 19:17:46 +020038source "drivers/video/Kconfig.mt9m114"
Loic Poulain92ee9922019-07-05 18:14:57 +020039
Frank Lie80506b2020-12-17 21:00:35 +080040source "drivers/video/Kconfig.ov7725"
41
Robert Szczepanski55e3c732021-06-21 11:48:29 +020042source "drivers/video/Kconfig.ov2640"
43
Loic Poulain43e58ae2019-07-01 14:41:19 +020044endif # VIDEO