Ulf Magnusson | bd6e044 | 2019-11-01 13:45:29 +0100 | [diff] [blame] | 1 | # VIDEO driver configuration options |
Loic Poulain | 43e58ae | 2019-07-01 14:41:19 +0200 | [diff] [blame] | 2 | |
Loic Poulain | 43e58ae | 2019-07-01 14:41:19 +0200 | [diff] [blame] | 3 | # Copyright (c) 2019 Linaro Limited |
Loic Poulain | 43e58ae | 2019-07-01 14:41:19 +0200 | [diff] [blame] | 4 | # SPDX-License-Identifier: Apache-2.0 |
Loic Poulain | 43e58ae | 2019-07-01 14:41:19 +0200 | [diff] [blame] | 5 | |
| 6 | # |
| 7 | # VIDEO Drivers |
| 8 | # |
| 9 | menuconfig VIDEO |
Henrik Brix Andersen | c41dd36 | 2023-03-27 14:55:23 +0200 | [diff] [blame] | 10 | bool "Video drivers" |
Loic Poulain | 43e58ae | 2019-07-01 14:41:19 +0200 | [diff] [blame] | 11 | help |
| 12 | Enable support for the VIDEO. |
| 13 | |
| 14 | if VIDEO |
| 15 | |
Loic Poulain | 420ad25 | 2020-04-06 15:58:02 +0200 | [diff] [blame] | 16 | config VIDEO_INIT_PRIORITY |
| 17 | int "Video initialization priority" |
Michele Balistreri | f87313b | 2022-12-29 12:11:53 +0100 | [diff] [blame] | 18 | default 60 |
Loic Poulain | 420ad25 | 2020-04-06 15:58:02 +0200 | [diff] [blame] | 19 | help |
| 20 | System initialization priority for video drivers. |
| 21 | |
Loic Poulain | 43e58ae | 2019-07-01 14:41:19 +0200 | [diff] [blame] | 22 | config VIDEO_BUFFER_POOL_SZ_MAX |
| 23 | int "Size of the largest buffer in the video pool" |
| 24 | default 1048576 |
| 25 | |
| 26 | config VIDEO_BUFFER_POOL_NUM_MAX |
| 27 | int "Number of maximum sized buffer in the video pool" |
| 28 | default 2 |
| 29 | |
| 30 | config VIDEO_BUFFER_POOL_ALIGN |
| 31 | int "Alignment of the video pool’s buffer" |
| 32 | default 64 |
| 33 | |
| 34 | source "drivers/video/Kconfig.mcux_csi" |
| 35 | |
Loic Poulain | 3587134 | 2019-08-28 18:53:00 +0200 | [diff] [blame] | 36 | source "drivers/video/Kconfig.sw_generator" |
| 37 | |
Loic Poulain | 14a0def | 2019-08-28 19:17:46 +0200 | [diff] [blame] | 38 | source "drivers/video/Kconfig.mt9m114" |
Loic Poulain | 92ee992 | 2019-07-05 18:14:57 +0200 | [diff] [blame] | 39 | |
Frank Li | e80506b | 2020-12-17 21:00:35 +0800 | [diff] [blame] | 40 | source "drivers/video/Kconfig.ov7725" |
| 41 | |
Robert Szczepanski | 55e3c73 | 2021-06-21 11:48:29 +0200 | [diff] [blame] | 42 | source "drivers/video/Kconfig.ov2640" |
| 43 | |
Loic Poulain | 43e58ae | 2019-07-01 14:41:19 +0200 | [diff] [blame] | 44 | endif # VIDEO |