fbdev: fix CVT vertical front and back porch values
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Wed, 21 Jan 2015 07:38:16 +0000 (09:38 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 27 Jan 2015 11:35:37 +0000 (13:35 +0200)
CVT v1.1 spec says: "the vertical front porch shall in all cases be
fixed to 3 lines". The code in fbcvt.c instead sets the _back_ porch to
3 (plus margin).

After swapping cvt.v_front_porch and cvt.v_back_porch the resulting
timings were in line with CVT timings in VESA DMT spec.

The bug seems to be more than 9 years old, but I presume it has not been
noticed as usually the video timings come from the EDID or from the
timing tables in fbdev, and probably swapped values for vfp and vbp work
fine for most of the displays.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: David Ung <davidu@nvidia.com>
Cc: Antonino A. Daplas <adaplas@gmail.com>
drivers/video/fbdev/core/fbcvt.c

index 7cb715dfc0e1ed12e440c2530017c4adf45280bc..55d2bd0ce5c0229cddf48cb0960a59e31d604060 100644 (file)
@@ -369,9 +369,9 @@ int fb_find_mode_cvt(struct fb_videomode *mode, int margins, int rb)
        cvt.h_back_porch = cvt.hblank/2 + cvt.h_margin;
        cvt.h_front_porch = cvt.hblank - cvt.hsync - cvt.h_back_porch +
                2 * cvt.h_margin;
-       cvt.v_back_porch = 3 + cvt.v_margin;
-       cvt.v_front_porch = cvt.vtotal - cvt.yres/cvt.interlace -
-           cvt.v_back_porch - cvt.vsync;
+       cvt.v_front_porch = 3 + cvt.v_margin;
+       cvt.v_back_porch = cvt.vtotal - cvt.yres/cvt.interlace -
+           cvt.v_front_porch - cvt.vsync;
        fb_cvt_print_name(&cvt);
        fb_cvt_convert_to_mode(&cvt, mode);