Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fbdev: add video modes for resolutions and timings of PAL RGB

This patch was taken from vga-sync-field version 0.0.3 [1][2].

[1] http://lowbyte.de/vga-sync-fields/vga-sync-fields-0.0.3.tgz
[2] http://git.hellersdorfer-jugendchor.de/?p=3Dvga2scart.git;a=3Dcommit;h=
=3Dc5c8ed6c51fc9879dbf38d8b91d5db6f4300ea03

Signed-off-by: Thomas Hilber <sparkie@lowbyte.de>
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Paul Menzel and committed by
Linus Torvalds
27b7f2e3 ae52bb23

+8
+8
drivers/video/modedb.c
··· 264 264 /* 1280x800, 60 Hz, 47.403 kHz hsync, WXGA 16:10 aspect ratio */ 265 265 NULL, 60, 1280, 800, 12048, 200, 64, 24, 1, 136, 3, 266 266 0, FB_VMODE_NONINTERLACED 267 + }, { 268 + /* 720x576i @ 50 Hz, 15.625 kHz hsync (PAL RGB) */ 269 + NULL, 50, 720, 576, 74074, 64, 16, 39, 5, 64, 5, 270 + 0, FB_VMODE_INTERLACED 271 + }, { 272 + /* 800x520i @ 50 Hz, 15.625 kHz hsync (PAL RGB) */ 273 + NULL, 50, 800, 520, 58823, 144, 64, 72, 28, 80, 5, 274 + 0, FB_VMODE_INTERLACED 267 275 }, 268 276 }; 269 277