Back to home page

OSCL-LXR

 
 

    


0001 /*
0002    1024x768.S: EDID data set for standard 1024x768 60 Hz monitor
0003 
0004    Copyright (C) 2011 Carsten Emde <C.Emde@osadl.org>
0005 
0006    This program is free software; you can redistribute it and/or
0007    modify it under the terms of the GNU General Public License
0008    as published by the Free Software Foundation; either version 2
0009    of the License, or (at your option) any later version.
0010 
0011    This program is distributed in the hope that it will be useful,
0012    but WITHOUT ANY WARRANTY; without even the implied warranty of
0013    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0014    GNU General Public License for more details.
0015 
0016    You should have received a copy of the GNU General Public License
0017    along with this program; if not, write to the Free Software
0018    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA.
0019 */
0020 
0021 /* EDID */
0022 #define VERSION 1
0023 #define REVISION 3
0024 
0025 /* Display */
0026 #define CLOCK 65000 /* kHz */
0027 #define XPIX 1024
0028 #define YPIX 768
0029 #define XY_RATIO XY_RATIO_4_3
0030 #define XBLANK 320
0031 #define YBLANK 38
0032 #define XOFFSET 8
0033 #define XPULSE 144
0034 #define YOFFSET 3
0035 #define YPULSE 6
0036 #define DPI 72
0037 #define VFREQ 60 /* Hz */
0038 #define TIMING_NAME "Linux XGA"
0039 #define ESTABLISHED_TIMING2_BITS 0x08 /* Bit 3 -> 1024x768 @60 Hz */
0040 #define HSYNC_POL 0
0041 #define VSYNC_POL 0
0042 
0043 #include "edid.S"