]> Pileus Git - ~andy/linux/commitdiff
[media] em28xx: add basic support for OmniVision OV2640 sensors
authorFrank Schaefer <fschaefer.oss@googlemail.com>
Wed, 27 Mar 2013 20:06:36 +0000 (17:06 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 29 Mar 2013 09:42:03 +0000 (06:42 -0300)
This sensor is used by the "SpeedLink Vicious And Devine Laplace webcam" and
others. It supports resolutions up to 1600x1200 (at 7-8 fps), but for
resolutions higher than 640x480, further driver changes will be necessary,
such as sensor output resolution switching (including further configuration
changes), bridge xclk adjustment and disabling of 16 bit (12 bit) output formats
at high resolutions. Image quality should also needs to be improved.

Signed-off-by: Frank Schäfer <fschaefer.oss@googlemail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/usb/em28xx/em28xx-camera.c
drivers/media/usb/em28xx/em28xx.h

index 64b70d42da1eeec29bef6de0021c020d87cc2289..73cc50afa5e168fd4e63664f68258ae115c95f10 100644 (file)
@@ -20,6 +20,7 @@
 */
 
 #include <linux/i2c.h>
+#include <media/soc_camera.h>
 #include <media/mt9v011.h>
 #include <media/v4l2-common.h>
 
@@ -42,6 +43,13 @@ static unsigned short omnivision_sensor_addrs[] = {
 };
 
 
+static struct soc_camera_link camlink = {
+       .bus_id = 0,
+       .flags = 0,
+       .module_name = "em28xx",
+};
+
+
 /* FIXME: Should be replaced by a proper mt9m111 driver */
 static int em28xx_initialize_mt9m111(struct em28xx *dev)
 {
@@ -246,6 +254,7 @@ static int em28xx_probe_sensor_omnivision(struct em28xx *dev)
                switch (id) {
                case 0x2642:
                        name = "OV2640";
+                       dev->em28xx_sensor = EM28XX_OV2640;
                        break;
                case 0x7648:
                        name = "OV7648";
@@ -376,6 +385,46 @@ int em28xx_init_camera(struct em28xx *dev)
                dev->vinctl = 0x00;
 
                break;
+       case EM28XX_OV2640:
+       {
+               struct v4l2_subdev *subdev;
+               struct i2c_board_info ov2640_info = {
+                       .type = "ov2640",
+                       .flags = I2C_CLIENT_SCCB,
+                       .addr = dev->i2c_client[dev->def_i2c_bus].addr,
+                       .platform_data = &camlink,
+               };
+               struct v4l2_mbus_framefmt fmt;
+
+               /*
+                * FIXME: sensor supports resolutions up to 1600x1200, but
+                * resolution setting/switching needs to be modified to
+                * - switch sensor output resolution (including further
+                *   configuration changes)
+                * - adjust bridge xclk
+                * - disable 16 bit (12 bit) output formats on high resolutions
+                */
+               dev->sensor_xres = 640;
+               dev->sensor_yres = 480;
+
+               subdev =
+                    v4l2_i2c_new_subdev_board(&dev->v4l2_dev,
+                                              &dev->i2c_adap[dev->def_i2c_bus],
+                                              &ov2640_info, NULL);
+
+               fmt.code = V4L2_MBUS_FMT_YUYV8_2X8;
+               fmt.width = 640;
+               fmt.height = 480;
+               v4l2_subdev_call(subdev, video, s_mbus_fmt, &fmt);
+
+               /* NOTE: for UXGA=1600x1200 switch to 12MHz */
+               dev->board.xclk = EM28XX_XCLK_FREQUENCY_24MHZ;
+               em28xx_write_reg(dev, EM28XX_R0F_XCLK, dev->board.xclk);
+               dev->vinmode = 0x08;
+               dev->vinctl = 0x00;
+
+               break;
+       }
        case EM28XX_NOSENSOR:
        default:
                return -EINVAL;
index a14492ff1fd2d775e5af07703d7f9a2415e304cc..a9323b63d8e5f0632f5f78f6e125d8b35397e4b2 100644 (file)
@@ -364,6 +364,7 @@ enum em28xx_sensor {
        EM28XX_MT9V011,
        EM28XX_MT9M001,
        EM28XX_MT9M111,
+       EM28XX_OV2640,
 };
 
 enum em28xx_adecoder {