Skip to content

Commit 9ef6e53

Browse files
Wenyou Yangehristev
authored andcommitted
media: i2c: Add the ov7740 image sensor driver
The ov7740 (color) image sensor is a high performance VGA CMOS image snesor, which supports for output formats: RAW RGB and YUV and image sizes: VGA, and QVGA, CIF and any size smaller. Signed-off-by: Songjun Wu <songjun.wu@microchip.com> Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
1 parent a16134b commit 9ef6e53

4 files changed

Lines changed: 1233 additions & 0 deletions

File tree

MAINTAINERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9960,6 +9960,14 @@ S: Maintained
99609960
F: drivers/media/i2c/ov7670.c
99619961
F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
99629962

9963+
OMNIVISION OV7740 SENSOR DRIVER
9964+
M: Wenyou Yang <wenyou.yang@microchip.com>
9965+
L: linux-media@vger.kernel.org
9966+
T: git git://linuxtv.org/media_tree.git
9967+
S: Maintained
9968+
F: drivers/media/i2c/ov7740.c
9969+
F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
9970+
99639971
ONENAND FLASH DRIVER
99649972
M: Kyungmin Park <kyungmin.park@samsung.com>
99659973
L: linux-mtd@lists.infradead.org

drivers/media/i2c/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,14 @@ config VIDEO_OV7670
649649
OV7670 VGA camera. It currently only works with the M88ALP01
650650
controller.
651651

652+
config VIDEO_OV7740
653+
tristate "OmniVision OV7740 sensor support"
654+
depends on I2C && VIDEO_V4L2
655+
depends on MEDIA_CAMERA_SUPPORT
656+
---help---
657+
This is a Video4Linux2 sensor-level driver for the OmniVision
658+
OV7740 VGA camera sensor.
659+
652660
config VIDEO_OV9650
653661
tristate "OmniVision OV9650/OV9652 sensor support"
654662
depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API

drivers/media/i2c/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ obj-$(CONFIG_VIDEO_OV5670) += ov5670.o
6868
obj-$(CONFIG_VIDEO_OV6650) += ov6650.o
6969
obj-$(CONFIG_VIDEO_OV7640) += ov7640.o
7070
obj-$(CONFIG_VIDEO_OV7670) += ov7670.o
71+
obj-$(CONFIG_VIDEO_OV7740) += ov7740.o
7172
obj-$(CONFIG_VIDEO_OV9650) += ov9650.o
7273
obj-$(CONFIG_VIDEO_OV13858) += ov13858.o
7374
obj-$(CONFIG_VIDEO_MT9M032) += mt9m032.o

0 commit comments

Comments
 (0)