[media] adv7511: fix VIC autodetect
authorHans Verkuil <hverkuil@xs4all.nl>
Sun, 17 Jul 2016 09:02:51 +0000 (06:02 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Thu, 28 Jul 2016 23:13:26 +0000 (20:13 -0300)
The adv7511 will automatically fill in the VIC code in the AVI InfoFrame
based on the timings of the incoming pixelport signals.

However, to have this work correctly it needs to specify the fps
value in a register. After doing this the proper VIC code is filled in.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/i2c/adv7511.c

index 6d7cad54a65d59cf46d1671b4aa65be6f2f6a9d5..53030d631653a8488c56a72d7d1bd45a93e18247 100644 (file)
@@ -1041,6 +1041,8 @@ static int adv7511_s_dv_timings(struct v4l2_subdev *sd,
                               struct v4l2_dv_timings *timings)
 {
        struct adv7511_state *state = get_adv7511_state(sd);
+       struct v4l2_bt_timings *bt = &timings->bt;
+       u32 fps;
 
        v4l2_dbg(1, debug, sd, "%s:\n", __func__);
 
@@ -1052,15 +1054,29 @@ static int adv7511_s_dv_timings(struct v4l2_subdev *sd,
           if the format is one of the CEA or DMT timings. */
        v4l2_find_dv_timings_cap(timings, &adv7511_timings_cap, 0, NULL, NULL);
 
-       timings->bt.flags &= ~V4L2_DV_FL_REDUCED_FPS;
-
        /* save timings */
        state->dv_timings = *timings;
 
        /* set h/vsync polarities */
        adv7511_wr_and_or(sd, 0x17, 0x9f,
-               ((timings->bt.polarities & V4L2_DV_VSYNC_POS_POL) ? 0 : 0x40) |
-               ((timings->bt.polarities & V4L2_DV_HSYNC_POS_POL) ? 0 : 0x20));
+               ((bt->polarities & V4L2_DV_VSYNC_POS_POL) ? 0 : 0x40) |
+               ((bt->polarities & V4L2_DV_HSYNC_POS_POL) ? 0 : 0x20));
+
+       fps = (u32)bt->pixelclock / (V4L2_DV_BT_FRAME_WIDTH(bt) * V4L2_DV_BT_FRAME_HEIGHT(bt));
+       switch (fps) {
+       case 24:
+               adv7511_wr_and_or(sd, 0xfb, 0xf9, 1 << 1);
+               break;
+       case 25:
+               adv7511_wr_and_or(sd, 0xfb, 0xf9, 2 << 1);
+               break;
+       case 30:
+               adv7511_wr_and_or(sd, 0xfb, 0xf9, 3 << 1);
+               break;
+       default:
+               adv7511_wr_and_or(sd, 0xfb, 0xf9, 0);
+               break;
+       }
 
        /* update quantization range based on new dv_timings */
        adv7511_set_rgb_quantization_mode(sd, state->rgb_quantization_range_ctrl);
This page took 0.034551 seconds and 5 git commands to generate.