Skip to content
Permalink
Browse files
media: i2c: Add support for the OV5648 image sensor
The OV5648 is a 5 Mpx CMOS image sensor, connected via MIPI CSI-2
in a one or two lane configuration.

Most of the features of the hardware are supported, including:
- Auto and manual exposition/gain
- Auto and manual white balance
- Horizontal and vertical flip
- Test patterns

But the following are still missing:
- Debanding, based on power source frequency;
- Exposition setting correlated to time units.

Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
  • Loading branch information
paulkocialkowski authored and intel-lab-lkp committed Nov 13, 2020
1 parent dcceb7a commit 796fa225a9fbae8fc277fed63545094ef79ff9f2
Show file tree
Hide file tree
Showing 3 changed files with 2,709 additions and 0 deletions.
@@ -923,6 +923,20 @@ config VIDEO_OV5647
To compile this driver as a module, choose M here: the
module will be called ov5647.

config VIDEO_OV5648
tristate "OmniVision OV5648 sensor support"
depends on OF
depends on I2C && VIDEO_V4L2
select MEDIA_CONTROLLER
select VIDEO_V4L2_SUBDEV_API
select V4L2_FWNODE
help
This is a Video4Linux2 sensor driver for the OmniVision
OV5648 camera.

To compile this driver as a module, choose M here: the
module will be called ov5648.

config VIDEO_OV6650
tristate "OmniVision OV6650 sensor support"
depends on I2C && VIDEO_V4L2
@@ -71,6 +71,7 @@ obj-$(CONFIG_VIDEO_OV2740) += ov2740.o
obj-$(CONFIG_VIDEO_OV5640) += ov5640.o
obj-$(CONFIG_VIDEO_OV5645) += ov5645.o
obj-$(CONFIG_VIDEO_OV5647) += ov5647.o
obj-$(CONFIG_VIDEO_OV5648) += ov5648.o
obj-$(CONFIG_VIDEO_OV5670) += ov5670.o
obj-$(CONFIG_VIDEO_OV5675) += ov5675.o
obj-$(CONFIG_VIDEO_OV5695) += ov5695.o

0 comments on commit 796fa22

Please sign in to comment.