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