Skip to content

Commit 0827b58

Browse files
bingbucaoHans Verkuil
authored andcommitted
media: i2c: add ov01a10 image sensor driver
Add v4l2 device driver for OmniVision ov01a10 image sensor, ov01a10 image sensor can deliver 1280x800 resolution BGGR10 images at 60 fps. Signed-off-by: Yating Wang <yating.wang@intel.com> Signed-off-by: Bingbu Cao <bingbu.cao@intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1 parent 59a9597 commit 0827b58

File tree

4 files changed

+1025
-0
lines changed

4 files changed

+1025
-0
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15444,6 +15444,13 @@ L: linux-media@vger.kernel.org
1544415444
S: Maintained
1544515445
F: drivers/media/i2c/og01a1b.c
1544615446

15447+
OMNIVISION OV01A10 SENSOR DRIVER
15448+
M: Bingbu Cao <bingbu.cao@intel.com>
15449+
L: linux-media@vger.kernel.org
15450+
S: Maintained
15451+
T: git git://linuxtv.org/media_tree.git
15452+
F: drivers/media/i2c/ov01a10.c
15453+
1544715454
OMNIVISION OV02A10 SENSOR DRIVER
1544815455
M: Dongchun Zhu <dongchun.zhu@mediatek.com>
1544915456
L: linux-media@vger.kernel.org

drivers/media/i2c/Kconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,19 @@ config VIDEO_OG01A1B
338338
To compile this driver as a module, choose M here: the
339339
module will be called og01a1b.
340340

341+
config VIDEO_OV01A10
342+
tristate "OmniVision OV01A10 sensor support"
343+
depends on VIDEO_DEV && I2C
344+
select MEDIA_CONTROLLER
345+
select VIDEO_V4L2_SUBDEV_API
346+
select V4L2_FWNODE
347+
help
348+
This is a Video4Linux2 sensor driver for the OmniVision
349+
OV01A10 camera.
350+
351+
To compile this driver as a module, choose M here: the
352+
module will be called ov01a10.
353+
341354
config VIDEO_OV02A10
342355
tristate "OmniVision OV02A10 sensor support"
343356
depends on VIDEO_DEV && I2C

drivers/media/i2c/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ obj-$(CONFIG_VIDEO_MT9V011) += mt9v011.o
6767
obj-$(CONFIG_VIDEO_MT9V032) += mt9v032.o
6868
obj-$(CONFIG_VIDEO_MT9V111) += mt9v111.o
6969
obj-$(CONFIG_VIDEO_OG01A1B) += og01a1b.o
70+
obj-$(CONFIG_VIDEO_OV01A10) += ov01a10.o
7071
obj-$(CONFIG_VIDEO_OV02A10) += ov02a10.o
7172
obj-$(CONFIG_VIDEO_OV08D10) += ov08d10.o
7273
obj-$(CONFIG_VIDEO_OV08X40) += ov08x40.o

0 commit comments

Comments
 (0)