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
|
|
|
|
|
bool "VIDEO hardware support"
|
|
|
|
|
help
|
|
|
|
|
Enable support for the VIDEO.
|
|
|
|
|
|
|
|
|
|
if VIDEO
|
|
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
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
|
|
|
|
|
2019-07-01 20:41:19 +08:00
|
|
|
|
endif # VIDEO
|