55e3c732d0
This adds the driver for Omnivision OV2640 image sensor. The driver provides support for 10 different resolutions in range from 160x120 to 1600x1200 in both JPEG and RGB565 pixel formats. There are also mutliple configuration options, e.g. hflip, vflip, saturation and brightness control. Signed-off-by: Robert Szczepanski <rszczepanski@antmicro.com>
45 lines
878 B
Plaintext
45 lines
878 B
Plaintext
# VIDEO driver configuration options
|
||
|
||
# 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_INIT_PRIORITY
|
||
int "Video initialization priority"
|
||
default 90
|
||
help
|
||
System initialization priority for video drivers.
|
||
|
||
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"
|
||
|
||
source "drivers/video/Kconfig.sw_generator"
|
||
|
||
source "drivers/video/Kconfig.mt9m114"
|
||
|
||
source "drivers/video/Kconfig.ov7725"
|
||
|
||
source "drivers/video/Kconfig.ov2640"
|
||
|
||
endif # VIDEO
|