800x600.S 1.1 KB

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