Back to home page

OSCL-LXR

 
 

    


0001 /*
0002    800x600.S: EDID data set for standard 800x600 60 Hz monitor
0003 
0004    Copyright (C) 2011 Carsten Emde <C.Emde@osadl.org>
0005    Copyright (C) 2014 Linaro Limited
0006 
0007    This program is free software; you can redistribute it and/or
0008    modify it under the terms of the GNU General Public License
0009    as published by the Free Software Foundation; either version 2
0010    of the License, or (at your option) any later version.
0011 
0012    This program is distributed in the hope that it will be useful,
0013    but WITHOUT ANY WARRANTY; without even the implied warranty of
0014    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0015    GNU General Public License for more details.
0016 */
0017 
0018 /* EDID */
0019 #define VERSION 1
0020 #define REVISION 3
0021 
0022 /* Display */
0023 #define CLOCK 40000 /* kHz */
0024 #define XPIX 800
0025 #define YPIX 600
0026 #define XY_RATIO XY_RATIO_4_3
0027 #define XBLANK 256
0028 #define YBLANK 28
0029 #define XOFFSET 40
0030 #define XPULSE 128
0031 #define YOFFSET 1
0032 #define YPULSE 4
0033 #define DPI 72
0034 #define VFREQ 60 /* Hz */
0035 #define TIMING_NAME "Linux SVGA"
0036 #define ESTABLISHED_TIMING1_BITS 0x01 /* Bit 0: 800x600 @ 60Hz */
0037 #define HSYNC_POL 1
0038 #define VSYNC_POL 1
0039 
0040 #include "edid.S"