Hi Prabhakar,

Lad Prabhakar wrote:
...
> +static const struct ov2659_pixfmt ov2659_formats[] = {
> +     {
> +             .code = MEDIA_BUS_FMT_YUYV8_2X8,
> +             .colorspace = V4L2_COLORSPACE_JPEG,
> +             .format_ctrl_regs = ov2659_format_yuyv,
> +     },
> +     {
> +             .code = MEDIA_BUS_FMT_UYVY8_2X8,
> +             .colorspace = V4L2_COLORSPACE_JPEG,
> +             .format_ctrl_regs = ov2659_format_uyvy,
> +     },
> +     {
> +             .code = MEDIA_BUS_FMT_RGB565_2X8_BE,
> +             .colorspace = V4L2_COLORSPACE_JPEG,
> +             .format_ctrl_regs = ov2659_format_rgb565,
> +     },
> +     {
> +             .code = MEDIA_BUS_FMT_SBGGR8_1X8,
> +             .colorspace = V4L2_COLORSPACE_SMPTE170M,
> +             .format_ctrl_regs = ov2659_format_bggr,
> +     },
> +};

...

> +static int ov2659_probe(struct i2c_client *client,
> +                     const struct i2c_device_id *id)
> +{
> +     const struct ov2659_platform_data *pdata = ov2659_get_pdata(client);
> +     struct v4l2_subdev *sd;
> +     struct ov2659 *ov2659;
> +     struct clk *clk;
> +     int ret;
> +
> +     if (!pdata) {
> +             dev_err(&client->dev, "platform data not specified\n");
> +             return -EINVAL;
> +     }
> +
> +     ov2659 = devm_kzalloc(&client->dev, sizeof(*ov2659), GFP_KERNEL);
> +     if (!ov2659)
> +             return -ENOMEM;
> +
> +     ov2659->pdata = pdata;
> +     ov2659->client = client;
> +
> +     clk = devm_clk_get(&client->dev, "xvclk");
> +     if (IS_ERR(clk))
> +             return PTR_ERR(clk);
> +
> +     ov2659->xvclk_frequency = clk_get_rate(clk);
> +     if (ov2659->xvclk_frequency < 6000000 ||
> +         ov2659->xvclk_frequency > 27000000)
> +             return -EINVAL;
> +
> +     v4l2_ctrl_handler_init(&ov2659->ctrls, 2);
> +     v4l2_ctrl_new_std(&ov2659->ctrls, &ov2659_ctrl_ops,
> +                       V4L2_CID_PIXEL_RATE, pdata->link_frequency,
> +                       pdata->link_frequency, 1, pdata->link_frequency);

Are the formats that you advertise correct? If so, you should divide the
link frequency by two to get pixel rate on formats that have two samples
per clock cycle, i.e. use v4l2_ctrl_s_ctrl_int64() /
__v4l2_ctrl_s_ctrl_int64().

-- 
Regards,

Sakari Ailus
sakari.ai...@linux.intel.com
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to