root/Documentation/EDID/800x600.S

/* [<][>][^][v][top][bottom][index][help] */
   1 /*
   2    800x600.S: EDID data set for standard 800x600 60 Hz monitor
   3 
   4    Copyright (C) 2011 Carsten Emde <C.Emde@osadl.org>
   5    Copyright (C) 2014 Linaro Limited
   6 
   7    This program is free software; you can redistribute it and/or
   8    modify it under the terms of the GNU General Public License
   9    as published by the Free Software Foundation; either version 2
  10    of the License, or (at your option) any later version.
  11 
  12    This program is distributed in the hope that it will be useful,
  13    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15    GNU General Public License for more details.
  16 */
  17 
  18 /* EDID */
  19 #define VERSION 1
  20 #define REVISION 3
  21 
  22 /* Display */
  23 #define CLOCK 40000 /* kHz */
  24 #define XPIX 800
  25 #define YPIX 600
  26 #define XY_RATIO XY_RATIO_4_3
  27 #define XBLANK 256
  28 #define YBLANK 28
  29 #define XOFFSET 40
  30 #define XPULSE 128
  31 #define YOFFSET 1
  32 #define YPULSE 4
  33 #define DPI 72
  34 #define VFREQ 60 /* Hz */
  35 #define TIMING_NAME "Linux SVGA"
  36 #define ESTABLISHED_TIMING1_BITS 0x01 /* Bit 0: 800x600 @ 60Hz */
  37 #define HSYNC_POL 1
  38 #define VSYNC_POL 1
  39 
  40 #include "edid.S"

/* [<][>][^][v][top][bottom][index][help] */