diff options
Diffstat (limited to 'Documentation/EDID/1680x1050.S')
-rw-r--r-- | Documentation/EDID/1680x1050.S | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Documentation/EDID/1680x1050.S b/Documentation/EDID/1680x1050.S new file mode 100644 index 000000000000..96f67cafcf2e --- /dev/null +++ b/Documentation/EDID/1680x1050.S | |||
@@ -0,0 +1,44 @@ | |||
1 | /* | ||
2 | 1680x1050.S: EDID data set for standard 1680x1050 60 Hz monitor | ||
3 | |||
4 | Copyright (C) 2012 Carsten Emde <C.Emde@osadl.org> | ||
5 | |||
6 | This program is free software; you can redistribute it and/or | ||
7 | modify it under the terms of the GNU General Public License | ||
8 | as published by the Free Software Foundation; either version 2 | ||
9 | of the License, or (at your option) any later version. | ||
10 | |||
11 | This program is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | GNU General Public License for more details. | ||
15 | |||
16 | You should have received a copy of the GNU General Public License | ||
17 | along with this program; if not, write to the Free Software | ||
18 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | */ | ||
20 | |||
21 | /* EDID */ | ||
22 | #define VERSION 1 | ||
23 | #define REVISION 3 | ||
24 | |||
25 | /* Display */ | ||
26 | #define CLOCK 146250 /* kHz */ | ||
27 | #define XPIX 1680 | ||
28 | #define YPIX 1050 | ||
29 | #define XY_RATIO XY_RATIO_16_10 | ||
30 | #define XBLANK 560 | ||
31 | #define YBLANK 39 | ||
32 | #define XOFFSET 104 | ||
33 | #define XPULSE 176 | ||
34 | #define YOFFSET (63+3) | ||
35 | #define YPULSE (63+6) | ||
36 | #define DPI 96 | ||
37 | #define VFREQ 60 /* Hz */ | ||
38 | #define TIMING_NAME "Linux WSXGA" | ||
39 | #define ESTABLISHED_TIMINGS_BITS 0x00 /* none */ | ||
40 | #define HSYNC_POL 1 | ||
41 | #define VSYNC_POL 1 | ||
42 | #define CRC 0x26 | ||
43 | |||
44 | #include "edid.S" | ||