Skip to content

Commit 251cb88

Browse files
textshellMauro Carvalho Chehab
authored and
Mauro Carvalho Chehab
committed
[media] v4l: Add driver for Micron MT9M032 camera sensor
The MT9M032 is a parallel 1.6MP sensor from Micron controlled through I2C. The driver creates a V4L2 subdevice. It currently supports cropping, gain, exposure and v/h flipping controls in monochrome mode with an external pixel clock. [Lots of clean up, fixes and enhancements] Signed-off-by: Martin Hostettler <[email protected]> Signed-off-by: Laurent Pinchart <[email protected]> Reviewed-by: Sylwester Nawrocki <[email protected]> Acked-by: Sakari Ailus <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 08cd43c commit 251cb88

File tree

4 files changed

+913
-0
lines changed

4 files changed

+913
-0
lines changed

drivers/media/video/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,14 @@ config VIDEO_VS6624
490490
To compile this driver as a module, choose M here: the
491491
module will be called vs6624.
492492

493+
config VIDEO_MT9M032
494+
tristate "MT9M032 camera sensor support"
495+
depends on I2C && VIDEO_V4L2
496+
select VIDEO_APTINA_PLL
497+
---help---
498+
This driver supports MT9M032 camera sensors from Aptina, monochrome
499+
models only.
500+
493501
config VIDEO_MT9P031
494502
tristate "Aptina MT9P031 support"
495503
depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API

drivers/media/video/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ obj-$(CONFIG_VIDEO_UPD64083) += upd64083.o
7070
obj-$(CONFIG_VIDEO_OV7670) += ov7670.o
7171
obj-$(CONFIG_VIDEO_TCM825X) += tcm825x.o
7272
obj-$(CONFIG_VIDEO_TVEEPROM) += tveeprom.o
73+
obj-$(CONFIG_VIDEO_MT9M032) += mt9m032.o
7374
obj-$(CONFIG_VIDEO_MT9P031) += mt9p031.o
7475
obj-$(CONFIG_VIDEO_MT9T001) += mt9t001.o
7576
obj-$(CONFIG_VIDEO_MT9V011) += mt9v011.o

0 commit comments

Comments
 (0)