mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-20 06:20:41 +00:00
media: i2c: Add ov08d10 camera sensor driver
Add a v4l2 sub-device driver for the OmniVision ov08d10 image sensor. This camera sensor is using the i2c bus for control and the csi-2 bus for data. The following features are supported: - manual exposure and analog/digital gain control - vblank/hblank control - test pattern - image vertical flip and horizontal mirror control - supported resolution: - 3280x2460 at 30 FPS - 3264x2448 at 30 FPS - 1632x1224 at 30 FPS - supported bayer order output: - SGRBG10 as default - SBGGR10 at flip mode - SRGGB10 at mirror mode - SGBRG10 at flip + mirror mode Signed-off-by: Jimmy Su <jimmy.su@intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
da15b409ef
commit
7be91e02ed
4 changed files with 1547 additions and 0 deletions
|
@ -14193,6 +14193,13 @@ T: git git://linuxtv.org/media_tree.git
|
||||||
F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
|
F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
|
||||||
F: drivers/media/i2c/ov02a10.c
|
F: drivers/media/i2c/ov02a10.c
|
||||||
|
|
||||||
|
OMNIVISION OV08D10 SENSOR DRIVER
|
||||||
|
M: Jimmy Su <jimmy.su@intel.com>
|
||||||
|
L: linux-media@vger.kernel.org
|
||||||
|
S: Maintained
|
||||||
|
T: git git://linuxtv.org/media_tree.git
|
||||||
|
F: drivers/media/i2c/ov08d10.c
|
||||||
|
|
||||||
OMNIVISION OV13858 SENSOR DRIVER
|
OMNIVISION OV13858 SENSOR DRIVER
|
||||||
M: Sakari Ailus <sakari.ailus@linux.intel.com>
|
M: Sakari Ailus <sakari.ailus@linux.intel.com>
|
||||||
L: linux-media@vger.kernel.org
|
L: linux-media@vger.kernel.org
|
||||||
|
|
|
@ -925,6 +925,19 @@ config VIDEO_OV02A10
|
||||||
To compile this driver as a module, choose M here: the
|
To compile this driver as a module, choose M here: the
|
||||||
module will be called ov02a10.
|
module will be called ov02a10.
|
||||||
|
|
||||||
|
config VIDEO_OV08D10
|
||||||
|
tristate "OmniVision OV08D10 sensor support"
|
||||||
|
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
|
||||||
|
OV08D10 camera sensor.
|
||||||
|
|
||||||
|
To compile this driver as a module, choose M here: the
|
||||||
|
module will be called ov08d10.
|
||||||
|
|
||||||
config VIDEO_OV2640
|
config VIDEO_OV2640
|
||||||
tristate "OmniVision OV2640 sensor support"
|
tristate "OmniVision OV2640 sensor support"
|
||||||
depends on VIDEO_V4L2 && I2C
|
depends on VIDEO_V4L2 && I2C
|
||||||
|
|
|
@ -65,6 +65,7 @@ obj-$(CONFIG_VIDEO_SONY_BTF_MPX) += sony-btf-mpx.o
|
||||||
obj-$(CONFIG_VIDEO_UPD64031A) += upd64031a.o
|
obj-$(CONFIG_VIDEO_UPD64031A) += upd64031a.o
|
||||||
obj-$(CONFIG_VIDEO_UPD64083) += upd64083.o
|
obj-$(CONFIG_VIDEO_UPD64083) += upd64083.o
|
||||||
obj-$(CONFIG_VIDEO_OV02A10) += ov02a10.o
|
obj-$(CONFIG_VIDEO_OV02A10) += ov02a10.o
|
||||||
|
obj-$(CONFIG_VIDEO_OV08D10) += ov08d10.o
|
||||||
obj-$(CONFIG_VIDEO_OV2640) += ov2640.o
|
obj-$(CONFIG_VIDEO_OV2640) += ov2640.o
|
||||||
obj-$(CONFIG_VIDEO_OV2680) += ov2680.o
|
obj-$(CONFIG_VIDEO_OV2680) += ov2680.o
|
||||||
obj-$(CONFIG_VIDEO_OV2685) += ov2685.o
|
obj-$(CONFIG_VIDEO_OV2685) += ov2685.o
|
||||||
|
|
1526
drivers/media/i2c/ov08d10.c
Normal file
1526
drivers/media/i2c/ov08d10.c
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue