blob: a62e25d9661b511f4daf1a3bad2cec89e6c13724 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
EDID (Extended Display Identification Data) is a VESA standard data format
that contains information about a monitor and its capabilities.
The information is stored in the monitor and is used to communicate with the
system through a Display Data Channel (DDC), which sites between the monitor
and the PC graphics adapter.
Inspired from:
- read-edid
- RedHat kudzu ddcprobe
- SuSE hwinfo
int10 and x86emu support by Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>
(partly from Xorg code)
re-organised by Pixel <pixel@mandrakesoft.com>
--------------------------------------------------------------------------------
monitor-probe-using-X inspiration is Ubuntu's xresprobe,
many thanks to Daniel Stone and Fabio M. Di Nitto.
--------------------------------------------------------------------------------
cvt.c is gtf.c modified. some info about vesa standards:
DDC 1994
DMT = Discrete Monitor Timings
started in 1989
DMT Version 1.0, Revision 0.8 (1998)
= 28 VESA Standards
+ 3 VESA Guidelines (approved, but not endorsed by VESA)
+ 2 Industry Standards.
GTF in 1996
designed for CRT
doesn't account for different aspect ratios
CVT in 2003
to replace GTF
CVT-RB = Coordinated Video Timings-Reduced Blanking
http://www1.us.dell.com/content/topics/global.aspx/vectors/en/2003_cvt?c=us&l=en&s=corp
www.vesa.org/Public/EEDIDguideV1.pdf
|