VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/xf86DDC.h@ 58634

Last change on this file since 58634 was 32163, checked in by vboxsync, 14 years ago

Additions/x11/x11include: additional headers for building drivers for X.Org Server 1.9

  • Property svn:eol-style set to native
File size: 3.6 KB
Line 
1
2/* xf86DDC.h
3 *
4 * This file contains all information to interpret a standard EDIC block
5 * transmitted by a display device via DDC (Display Data Channel). So far
6 * there is no information to deal with optional EDID blocks.
7 * DDC is a Trademark of VESA (Video Electronics Standard Association).
8 *
9 * Copyright 1998 by Egbert Eich <[email protected]>
10 */
11
12#ifndef XF86_DDC_H
13# define XF86_DDC_H
14
15#include "edid.h"
16#include "xf86i2c.h"
17#include "xf86str.h"
18
19/* speed up / slow down */
20typedef enum {
21 DDC_SLOW,
22 DDC_FAST
23} xf86ddcSpeed;
24
25typedef void (* DDC1SetSpeedProc)(ScrnInfoPtr, xf86ddcSpeed);
26
27extern _X_EXPORT xf86MonPtr xf86DoEDID_DDC1(
28 int scrnIndex,
29 DDC1SetSpeedProc DDC1SetSpeed,
30 unsigned int (*DDC1Read)(ScrnInfoPtr)
31);
32
33extern _X_EXPORT xf86MonPtr xf86DoEDID_DDC2(
34 int scrnIndex,
35 I2CBusPtr pBus
36);
37
38extern _X_EXPORT xf86MonPtr xf86DoEEDID(int scrnIndex, I2CBusPtr pBus, Bool);
39
40extern _X_EXPORT xf86MonPtr xf86PrintEDID(
41 xf86MonPtr monPtr
42);
43
44extern _X_EXPORT xf86MonPtr xf86InterpretEDID(
45 int screenIndex, Uchar *block
46);
47
48extern _X_EXPORT xf86MonPtr xf86InterpretEEDID(
49 int screenIndex, Uchar *block
50);
51
52extern _X_EXPORT void
53xf86EdidMonitorSet(int scrnIndex, MonPtr Monitor, xf86MonPtr DDC);
54
55extern _X_EXPORT Bool xf86SetDDCproperties(
56 ScrnInfoPtr pScreen,
57 xf86MonPtr DDC
58);
59
60extern _X_EXPORT DisplayModePtr xf86DDCGetModes(int scrnIndex, xf86MonPtr DDC);
61
62extern _X_EXPORT Bool
63xf86MonitorIsHDMI(xf86MonPtr mon);
64
65extern _X_EXPORT xf86MonPtr
66xf86DoDisplayID(int scrnIndex, I2CBusPtr pBus);
67
68extern _X_EXPORT void
69xf86DisplayIDMonitorSet(int scrnIndex, MonPtr mon, xf86MonPtr DDC);
70
71extern _X_EXPORT DisplayModePtr
72FindDMTMode(int hsize, int vsize, int refresh, Bool rb);
73
74extern _X_EXPORT const DisplayModeRec DMTModes[];
75
76/*
77 * Quirks to work around broken EDID data from various monitors.
78 */
79typedef enum {
80 DDC_QUIRK_NONE = 0,
81 /* First detailed mode is bogus, prefer largest mode at 60hz */
82 DDC_QUIRK_PREFER_LARGE_60 = 1 << 0,
83 /* 135MHz clock is too high, drop a bit */
84 DDC_QUIRK_135_CLOCK_TOO_HIGH = 1 << 1,
85 /* Prefer the largest mode at 75 Hz */
86 DDC_QUIRK_PREFER_LARGE_75 = 1 << 2,
87 /* Convert detailed timing's horizontal from units of cm to mm */
88 DDC_QUIRK_DETAILED_H_IN_CM = 1 << 3,
89 /* Convert detailed timing's vertical from units of cm to mm */
90 DDC_QUIRK_DETAILED_V_IN_CM = 1 << 4,
91 /* Detailed timing descriptors have bogus size values, so just take the
92 * maximum size and use that.
93 */
94 DDC_QUIRK_DETAILED_USE_MAXIMUM_SIZE = 1 << 5,
95 /* Monitor forgot to set the first detailed is preferred bit. */
96 DDC_QUIRK_FIRST_DETAILED_PREFERRED = 1 << 6,
97 /* use +hsync +vsync for detailed mode */
98 DDC_QUIRK_DETAILED_SYNC_PP = 1 << 7,
99 /* Force single-link DVI bandwidth limit */
100 DDC_QUIRK_DVI_SINGLE_LINK = 1 << 8,
101} ddc_quirk_t;
102
103DisplayModePtr xf86DDCGetModes(int scrnIndex, xf86MonPtr DDC);
104
105extern Bool
106xf86MonitorIsHDMI(xf86MonPtr mon);
107
108typedef void (* handle_detailed_fn)(struct detailed_monitor_section *,void *);
109
110void xf86ForEachDetailedBlock(xf86MonPtr mon,
111 handle_detailed_fn,
112 void *data);
113
114ddc_quirk_t
115xf86DDCDetectQuirks(int scrnIndex, xf86MonPtr DDC, Bool verbose);
116
117void xf86DetTimingApplyQuirks(struct detailed_monitor_section *det_mon,
118 ddc_quirk_t quirks, int hsize, int vsize);
119
120typedef void (* handle_video_fn)(struct cea_video_block *, void *);
121
122void xf86ForEachVideoBlock(xf86MonPtr,
123 handle_video_fn,
124 void *);
125
126#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette