]> Pileus Git - ~andy/linux/blobdiff - drivers/media/video/ov772x.c
V4L/DVB (12515): soc-camera: use struct v4l2_rect in struct soc_camera_device
[~andy/linux] / drivers / media / video / ov772x.c
index 0bce255168bdfbb154cecb715df2d9774669c837..3417398e1b50622ce7e8ca2cd0faa19f5e68863f 100644 (file)
@@ -22,7 +22,7 @@
 #include <linux/delay.h>
 #include <linux/videodev2.h>
 #include <media/v4l2-chip-ident.h>
-#include <media/v4l2-common.h>
+#include <media/v4l2-subdev.h>
 #include <media/soc_camera.h>
 #include <media/ov772x.h>
 
@@ -398,14 +398,14 @@ struct ov772x_win_size {
 };
 
 struct ov772x_priv {
+       struct v4l2_subdev                subdev;
        struct ov772x_camera_info        *info;
-       struct i2c_client                *client;
-       struct soc_camera_device          icd;
        const struct ov772x_color_format *fmt;
        const struct ov772x_win_size     *win;
        int                               model;
-       unsigned int                      flag_vflip:1;
-       unsigned int                      flag_hflip:1;
+       unsigned short                    flag_vflip:1;
+       unsigned short                    flag_hflip:1;
+       unsigned short                    band_filter;  /* 256 - BDBASE, 0 if (!COM8[5]) */
 };
 
 #define ENDMARKER { 0xff, 0xff }
@@ -570,6 +570,15 @@ static const struct v4l2_queryctrl ov772x_controls[] = {
                .step           = 1,
                .default_value  = 0,
        },
+       {
+               .id             = V4L2_CID_BAND_STOP_FILTER,
+               .type           = V4L2_CTRL_TYPE_INTEGER,
+               .name           = "Band-stop filter",
+               .minimum        = 0,
+               .maximum        = 256,
+               .step           = 1,
+               .default_value  = 0,
+       },
 };
 
 
@@ -577,6 +586,11 @@ static const struct v4l2_queryctrl ov772x_controls[] = {
  * general function
  */
 
+static struct ov772x_priv *to_ov772x(const struct i2c_client *client)
+{
+       return container_of(i2c_get_clientdata(client), struct ov772x_priv, subdev);
+}
+
 static int ov772x_write_array(struct i2c_client        *client,
                              const struct regval_list *vals)
 {
@@ -617,58 +631,29 @@ static int ov772x_reset(struct i2c_client *client)
  * soc_camera_ops function
  */
 
-static int ov772x_init(struct soc_camera_device *icd)
+static int ov772x_s_stream(struct v4l2_subdev *sd, int enable)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
-       int ret = 0;
+       struct i2c_client *client = sd->priv;
+       struct ov772x_priv *priv = to_ov772x(client);
 
-       if (priv->info->link.power) {
-               ret = priv->info->link.power(&priv->client->dev, 1);
-               if (ret < 0)
-                       return ret;
+       if (!enable) {
+               ov772x_mask_set(client, COM2, SOFT_SLEEP_MODE, SOFT_SLEEP_MODE);
+               return 0;
        }
 
-       if (priv->info->link.reset)
-               ret = priv->info->link.reset(&priv->client->dev);
-
-       return ret;
-}
-
-static int ov772x_release(struct soc_camera_device *icd)
-{
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
-       int ret = 0;
-
-       if (priv->info->link.power)
-               ret = priv->info->link.power(&priv->client->dev, 0);
-
-       return ret;
-}
-
-static int ov772x_start_capture(struct soc_camera_device *icd)
-{
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
-
        if (!priv->win || !priv->fmt) {
-               dev_err(&icd->dev, "norm or win select error\n");
+               dev_err(&client->dev, "norm or win select error\n");
                return -EPERM;
        }
 
-       ov772x_mask_set(priv->client, COM2, SOFT_SLEEP_MODE, 0);
+       ov772x_mask_set(client, COM2, SOFT_SLEEP_MODE, 0);
 
-       dev_dbg(&icd->dev,
-                "format %s, win %s\n", priv->fmt->name, priv->win->name);
+       dev_dbg(&client->dev,
+               "format %s, win %s\n", priv->fmt->name, priv->win->name);
 
        return 0;
 }
 
-static int ov772x_stop_capture(struct soc_camera_device *icd)
-{
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
-       ov772x_mask_set(priv->client, COM2, SOFT_SLEEP_MODE, SOFT_SLEEP_MODE);
-       return 0;
-}
-
 static int ov772x_set_bus_param(struct soc_camera_device *icd,
                                unsigned long             flags)
 {
@@ -677,8 +662,9 @@ static int ov772x_set_bus_param(struct soc_camera_device *icd,
 
 static unsigned long ov772x_query_bus_param(struct soc_camera_device *icd)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
-       struct soc_camera_link *icl = &priv->info->link;
+       struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
+       struct ov772x_priv *priv = i2c_get_clientdata(client);
+       struct soc_camera_link *icl = to_soc_camera_link(icd);
        unsigned long flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_MASTER |
                SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_HIGH |
                SOCAM_DATA_ACTIVE_HIGH | priv->info->buswidth;
@@ -686,10 +672,10 @@ static unsigned long ov772x_query_bus_param(struct soc_camera_device *icd)
        return soc_camera_apply_sensor_flags(icl, flags);
 }
 
-static int ov772x_get_control(struct soc_camera_device *icd,
-                             struct v4l2_control *ctrl)
+static int ov772x_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
+       struct i2c_client *client = sd->priv;
+       struct ov772x_priv *priv = to_ov772x(client);
 
        switch (ctrl->id) {
        case V4L2_CID_VFLIP:
@@ -698,14 +684,17 @@ static int ov772x_get_control(struct soc_camera_device *icd,
        case V4L2_CID_HFLIP:
                ctrl->value = priv->flag_hflip;
                break;
+       case V4L2_CID_BAND_STOP_FILTER:
+               ctrl->value = priv->band_filter;
+               break;
        }
        return 0;
 }
 
-static int ov772x_set_control(struct soc_camera_device *icd,
-                             struct v4l2_control *ctrl)
+static int ov772x_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
+       struct i2c_client *client = sd->priv;
+       struct ov772x_priv *priv = to_ov772x(client);
        int ret = 0;
        u8 val;
 
@@ -715,24 +704,48 @@ static int ov772x_set_control(struct soc_camera_device *icd,
                priv->flag_vflip = ctrl->value;
                if (priv->info->flags & OV772X_FLAG_VFLIP)
                        val ^= VFLIP_IMG;
-               ret = ov772x_mask_set(priv->client, COM3, VFLIP_IMG, val);
+               ret = ov772x_mask_set(client, COM3, VFLIP_IMG, val);
                break;
        case V4L2_CID_HFLIP:
                val = ctrl->value ? HFLIP_IMG : 0x00;
                priv->flag_hflip = ctrl->value;
                if (priv->info->flags & OV772X_FLAG_HFLIP)
                        val ^= HFLIP_IMG;
-               ret = ov772x_mask_set(priv->client, COM3, HFLIP_IMG, val);
+               ret = ov772x_mask_set(client, COM3, HFLIP_IMG, val);
+               break;
+       case V4L2_CID_BAND_STOP_FILTER:
+               if ((unsigned)ctrl->value > 256)
+                       ctrl->value = 256;
+               if (ctrl->value == priv->band_filter)
+                       break;
+               if (!ctrl->value) {
+                       /* Switch the filter off, it is on now */
+                       ret = ov772x_mask_set(client, BDBASE, 0xff, 0xff);
+                       if (!ret)
+                               ret = ov772x_mask_set(client, COM8,
+                                                     BNDF_ON_OFF, 0);
+               } else {
+                       /* Switch the filter on, set AEC low limit */
+                       val = 256 - ctrl->value;
+                       ret = ov772x_mask_set(client, COM8,
+                                             BNDF_ON_OFF, BNDF_ON_OFF);
+                       if (!ret)
+                               ret = ov772x_mask_set(client, BDBASE,
+                                                     0xff, val);
+               }
+               if (!ret)
+                       priv->band_filter = ctrl->value;
                break;
        }
 
        return ret;
 }
 
-static int ov772x_get_chip_id(struct soc_camera_device *icd,
-                             struct v4l2_dbg_chip_ident   *id)
+static int ov772x_g_chip_ident(struct v4l2_subdev *sd,
+                              struct v4l2_dbg_chip_ident *id)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
+       struct i2c_client *client = sd->priv;
+       struct ov772x_priv *priv = to_ov772x(client);
 
        id->ident    = priv->model;
        id->revision = 0;
@@ -741,17 +754,17 @@ static int ov772x_get_chip_id(struct soc_camera_device *icd,
 }
 
 #ifdef CONFIG_VIDEO_ADV_DEBUG
-static int ov772x_get_register(struct soc_camera_device *icd,
-                              struct v4l2_dbg_register *reg)
+static int ov772x_g_register(struct v4l2_subdev *sd,
+                            struct v4l2_dbg_register *reg)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
-       int                 ret;
+       struct i2c_client *client = sd->priv;
+       int ret;
 
        reg->size = 1;
        if (reg->reg > 0xff)
                return -EINVAL;
 
-       ret = i2c_smbus_read_byte_data(priv->client, reg->reg);
+       ret = i2c_smbus_read_byte_data(client, reg->reg);
        if (ret < 0)
                return ret;
 
@@ -760,21 +773,20 @@ static int ov772x_get_register(struct soc_camera_device *icd,
        return 0;
 }
 
-static int ov772x_set_register(struct soc_camera_device *icd,
-                              struct v4l2_dbg_register *reg)
+static int ov772x_s_register(struct v4l2_subdev *sd,
+                            struct v4l2_dbg_register *reg)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
+       struct i2c_client *client = sd->priv;
 
        if (reg->reg > 0xff ||
            reg->val > 0xff)
                return -EINVAL;
 
-       return i2c_smbus_write_byte_data(priv->client, reg->reg, reg->val);
+       return i2c_smbus_write_byte_data(client, reg->reg, reg->val);
 }
 #endif
 
-static const struct ov772x_win_size*
-ov772x_select_win(u32 width, u32 height)
+static const struct ov772x_win_size *ov772x_select_win(u32 width, u32 height)
 {
        __u32 diff;
        const struct ov772x_win_size *win;
@@ -793,9 +805,10 @@ ov772x_select_win(u32 width, u32 height)
        return win;
 }
 
-static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
-                            u32 pixfmt)
+static int ov772x_set_params(struct i2c_client *client,
+                            u32 width, u32 height, u32 pixfmt)
 {
+       struct ov772x_priv *priv = to_ov772x(client);
        int ret = -EINVAL;
        u8  val;
        int i;
@@ -821,7 +834,7 @@ static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
        /*
         * reset hardware
         */
-       ov772x_reset(priv->client);
+       ov772x_reset(client);
 
        /*
         * Edge Ctrl
@@ -835,17 +848,17 @@ static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
                 * Remove it when manual mode.
                 */
 
-               ret = ov772x_mask_set(priv->client, DSPAUTO, EDGE_ACTRL, 0x00);
+               ret = ov772x_mask_set(client, DSPAUTO, EDGE_ACTRL, 0x00);
                if (ret < 0)
                        goto ov772x_set_fmt_error;
 
-               ret = ov772x_mask_set(priv->client,
+               ret = ov772x_mask_set(client,
                                      EDGE_TRSHLD, EDGE_THRESHOLD_MASK,
                                      priv->info->edgectrl.threshold);
                if (ret < 0)
                        goto ov772x_set_fmt_error;
 
-               ret = ov772x_mask_set(priv->client,
+               ret = ov772x_mask_set(client,
                                      EDGE_STRNGT, EDGE_STRENGTH_MASK,
                                      priv->info->edgectrl.strength);
                if (ret < 0)
@@ -857,13 +870,13 @@ static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
                 *
                 * set upper and lower limit
                 */
-               ret = ov772x_mask_set(priv->client,
+               ret = ov772x_mask_set(client,
                                      EDGE_UPPER, EDGE_UPPER_MASK,
                                      priv->info->edgectrl.upper);
                if (ret < 0)
                        goto ov772x_set_fmt_error;
 
-               ret = ov772x_mask_set(priv->client,
+               ret = ov772x_mask_set(client,
                                      EDGE_LOWER, EDGE_LOWER_MASK,
                                      priv->info->edgectrl.lower);
                if (ret < 0)
@@ -873,7 +886,7 @@ static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
        /*
         * set size format
         */
-       ret = ov772x_write_array(priv->client, priv->win->regs);
+       ret = ov772x_write_array(client, priv->win->regs);
        if (ret < 0)
                goto ov772x_set_fmt_error;
 
@@ -882,7 +895,7 @@ static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
         */
        val = priv->fmt->dsp3;
        if (val) {
-               ret = ov772x_mask_set(priv->client,
+               ret = ov772x_mask_set(client,
                                      DSP_CTRL3, UV_MASK, val);
                if (ret < 0)
                        goto ov772x_set_fmt_error;
@@ -901,7 +914,7 @@ static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
        if (priv->flag_hflip)
                val ^= HFLIP_IMG;
 
-       ret = ov772x_mask_set(priv->client,
+       ret = ov772x_mask_set(client,
                              COM3, SWAP_MASK | IMG_MASK, val);
        if (ret < 0)
                goto ov772x_set_fmt_error;
@@ -910,17 +923,29 @@ static int ov772x_set_params(struct ov772x_priv *priv, u32 width, u32 height,
         * set COM7
         */
        val = priv->win->com7_bit | priv->fmt->com7;
-       ret = ov772x_mask_set(priv->client,
+       ret = ov772x_mask_set(client,
                              COM7, (SLCT_MASK | FMT_MASK | OFMT_MASK),
                              val);
        if (ret < 0)
                goto ov772x_set_fmt_error;
 
+       /*
+        * set COM8
+        */
+       if (priv->band_filter) {
+               ret = ov772x_mask_set(client, COM8, BNDF_ON_OFF, 1);
+               if (!ret)
+                       ret = ov772x_mask_set(client, BDBASE,
+                                             0xff, 256 - priv->band_filter);
+               if (ret < 0)
+                       goto ov772x_set_fmt_error;
+       }
+
        return ret;
 
 ov772x_set_fmt_error:
 
-       ov772x_reset(priv->client);
+       ov772x_reset(client);
        priv->win = NULL;
        priv->fmt = NULL;
 
@@ -930,27 +955,27 @@ ov772x_set_fmt_error:
 static int ov772x_set_crop(struct soc_camera_device *icd,
                           struct v4l2_rect *rect)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
+       struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
+       struct ov772x_priv *priv = to_ov772x(client);
 
        if (!priv->fmt)
                return -EINVAL;
 
-       return ov772x_set_params(priv, rect->width, rect->height,
+       return ov772x_set_params(client, rect->width, rect->height,
                                 priv->fmt->fourcc);
 }
 
-static int ov772x_set_fmt(struct soc_camera_device *icd,
-                         struct v4l2_format *f)
+static int ov772x_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
+       struct i2c_client *client = sd->priv;
        struct v4l2_pix_format *pix = &f->fmt.pix;
 
-       return ov772x_set_params(priv, pix->width, pix->height,
+       return ov772x_set_params(client, pix->width, pix->height,
                                 pix->pixelformat);
 }
 
-static int ov772x_try_fmt(struct soc_camera_device *icd,
-                         struct v4l2_format       *f)
+static int ov772x_try_fmt(struct v4l2_subdev *sd,
+                         struct v4l2_format *f)
 {
        struct v4l2_pix_format *pix = &f->fmt.pix;
        const struct ov772x_win_size *win;
@@ -967,9 +992,10 @@ static int ov772x_try_fmt(struct soc_camera_device *icd,
        return 0;
 }
 
-static int ov772x_video_probe(struct soc_camera_device *icd)
+static int ov772x_video_probe(struct soc_camera_device *icd,
+                             struct i2c_client *client)
 {
-       struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
+       struct ov772x_priv *priv = to_ov772x(client);
        u8                  pid, ver;
        const char         *devname;
 
@@ -996,8 +1022,8 @@ static int ov772x_video_probe(struct soc_camera_device *icd)
        /*
         * check and show product ID and manufacturer ID
         */
-       pid = i2c_smbus_read_byte_data(priv->client, PID);
-       ver = i2c_smbus_read_byte_data(priv->client, VER);
+       pid = i2c_smbus_read_byte_data(client, PID);
+       ver = i2c_smbus_read_byte_data(client, VER);
 
        switch (VERSION(pid, ver)) {
        case OV7720:
@@ -1019,59 +1045,65 @@ static int ov772x_video_probe(struct soc_camera_device *icd)
                 devname,
                 pid,
                 ver,
-                i2c_smbus_read_byte_data(priv->client, MIDH),
-                i2c_smbus_read_byte_data(priv->client, MIDL));
+                i2c_smbus_read_byte_data(client, MIDH),
+                i2c_smbus_read_byte_data(client, MIDL));
 
-       return soc_camera_video_start(icd);
-}
-
-static void ov772x_video_remove(struct soc_camera_device *icd)
-{
-       soc_camera_video_stop(icd);
+       return 0;
 }
 
 static struct soc_camera_ops ov772x_ops = {
-       .owner                  = THIS_MODULE,
-       .probe                  = ov772x_video_probe,
-       .remove                 = ov772x_video_remove,
-       .init                   = ov772x_init,
-       .release                = ov772x_release,
-       .start_capture          = ov772x_start_capture,
-       .stop_capture           = ov772x_stop_capture,
        .set_crop               = ov772x_set_crop,
-       .set_fmt                = ov772x_set_fmt,
-       .try_fmt                = ov772x_try_fmt,
        .set_bus_param          = ov772x_set_bus_param,
        .query_bus_param        = ov772x_query_bus_param,
        .controls               = ov772x_controls,
        .num_controls           = ARRAY_SIZE(ov772x_controls),
-       .get_control            = ov772x_get_control,
-       .set_control            = ov772x_set_control,
-       .get_chip_id            = ov772x_get_chip_id,
+};
+
+static struct v4l2_subdev_core_ops ov772x_subdev_core_ops = {
+       .g_ctrl         = ov772x_g_ctrl,
+       .s_ctrl         = ov772x_s_ctrl,
+       .g_chip_ident   = ov772x_g_chip_ident,
 #ifdef CONFIG_VIDEO_ADV_DEBUG
-       .get_register           = ov772x_get_register,
-       .set_register           = ov772x_set_register,
+       .g_register     = ov772x_g_register,
+       .s_register     = ov772x_s_register,
 #endif
 };
 
+static struct v4l2_subdev_video_ops ov772x_subdev_video_ops = {
+       .s_stream       = ov772x_s_stream,
+       .s_fmt          = ov772x_s_fmt,
+       .try_fmt        = ov772x_try_fmt,
+};
+
+static struct v4l2_subdev_ops ov772x_subdev_ops = {
+       .core   = &ov772x_subdev_core_ops,
+       .video  = &ov772x_subdev_video_ops,
+};
+
 /*
  * i2c_driver function
  */
 
 static int ov772x_probe(struct i2c_client *client,
-                        const struct i2c_device_id *did)
+                       const struct i2c_device_id *did)
 {
        struct ov772x_priv        *priv;
        struct ov772x_camera_info *info;
-       struct soc_camera_device  *icd;
+       struct soc_camera_device  *icd = client->dev.platform_data;
        struct i2c_adapter        *adapter = to_i2c_adapter(client->dev.parent);
+       struct soc_camera_link    *icl;
        int                        ret;
 
-       if (!client->dev.platform_data)
+       if (!icd) {
+               dev_err(&client->dev, "OV772X: missing soc-camera data!\n");
+               return -EINVAL;
+       }
+
+       icl = to_soc_camera_link(icd);
+       if (!icl)
                return -EINVAL;
 
-       info = container_of(client->dev.platform_data,
-                           struct ov772x_camera_info, link);
+       info = container_of(icl, struct ov772x_camera_info, link);
 
        if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
                dev_err(&adapter->dev,
@@ -1084,20 +1116,17 @@ static int ov772x_probe(struct i2c_client *client,
        if (!priv)
                return -ENOMEM;
 
-       priv->info   = info;
-       priv->client = client;
-       i2c_set_clientdata(client, priv);
+       priv->info = info;
 
-       icd             = &priv->icd;
-       icd->ops        = &ov772x_ops;
-       icd->control    = &client->dev;
-       icd->width_max  = MAX_WIDTH;
-       icd->height_max = MAX_HEIGHT;
-       icd->iface      = priv->info->link.bus_id;
+       v4l2_i2c_subdev_init(&priv->subdev, client, &ov772x_subdev_ops);
 
-       ret = soc_camera_device_register(icd);
+       icd->ops                = &ov772x_ops;
+       icd->rect_max.width     = MAX_WIDTH;
+       icd->rect_max.height    = MAX_HEIGHT;
 
+       ret = ov772x_video_probe(icd, client);
        if (ret) {
+               icd->ops = NULL;
                i2c_set_clientdata(client, NULL);
                kfree(priv);
        }
@@ -1107,9 +1136,10 @@ static int ov772x_probe(struct i2c_client *client,
 
 static int ov772x_remove(struct i2c_client *client)
 {
-       struct ov772x_priv *priv = i2c_get_clientdata(client);
+       struct ov772x_priv *priv = to_ov772x(client);
+       struct soc_camera_device *icd = client->dev.platform_data;
 
-       soc_camera_device_unregister(&priv->icd);
+       icd->ops = NULL;
        i2c_set_clientdata(client, NULL);
        kfree(priv);
        return 0;