Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1123 serge 1
/*
2
 * Copyright © 2007-2008 Intel Corporation
3
 *   Jesse Barnes 
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a
6
 * copy of this software and associated documentation files (the "Software"),
7
 * to deal in the Software without restriction, including without limitation
8
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9
 * and/or sell copies of the Software, and to permit persons to whom the
10
 * Software is furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in
13
 * all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21
 * OTHER DEALINGS IN THE SOFTWARE.
22
 */
23
#ifndef __DRM_EDID_H__
24
#define __DRM_EDID_H__
25
 
26
#include 
27
 
28
#define EDID_LENGTH 128
29
#define DDC_ADDR 0x50
30
 
31
struct est_timings {
32
	u8 t1;
33
	u8 t2;
34
	u8 mfg_rsvd;
35
} __attribute__((packed));
36
 
37
/* 00=16:10, 01=4:3, 10=5:4, 11=16:9 */
38
#define EDID_TIMING_ASPECT_SHIFT 6
39
#define EDID_TIMING_ASPECT_MASK  (0x3 << EDID_TIMING_ASPECT_SHIFT)
40
 
41
/* need to add 60 */
42
#define EDID_TIMING_VFREQ_SHIFT  0
43
#define EDID_TIMING_VFREQ_MASK   (0x3f << EDID_TIMING_VFREQ_SHIFT)
44
 
45
struct std_timing {
46
	u8 hsize; /* need to multiply by 8 then add 248 */
47
	u8 vfreq_aspect;
48
} __attribute__((packed));
49
 
50
#define DRM_EDID_PT_HSYNC_POSITIVE (1 << 1)
51
#define DRM_EDID_PT_VSYNC_POSITIVE (1 << 2)
52
#define DRM_EDID_PT_SEPARATE_SYNC  (3 << 3)
53
#define DRM_EDID_PT_STEREO         (1 << 5)
54
#define DRM_EDID_PT_INTERLACED     (1 << 7)
55
 
56
/* If detailed data is pixel timing */
57
struct detailed_pixel_timing {
58
	u8 hactive_lo;
59
	u8 hblank_lo;
60
	u8 hactive_hblank_hi;
61
	u8 vactive_lo;
62
	u8 vblank_lo;
63
	u8 vactive_vblank_hi;
64
	u8 hsync_offset_lo;
65
	u8 hsync_pulse_width_lo;
66
	u8 vsync_offset_pulse_width_lo;
67
	u8 hsync_vsync_offset_pulse_width_hi;
68
	u8 width_mm_lo;
69
	u8 height_mm_lo;
70
	u8 width_height_mm_hi;
71
	u8 hborder;
72
	u8 vborder;
73
	u8 misc;
74
} __attribute__((packed));
75
 
76
/* If it's not pixel timing, it'll be one of the below */
77
struct detailed_data_string {
78
	u8 str[13];
79
} __attribute__((packed));
80
 
81
struct detailed_data_monitor_range {
82
	u8 min_vfreq;
83
	u8 max_vfreq;
84
	u8 min_hfreq_khz;
85
	u8 max_hfreq_khz;
86
	u8 pixel_clock_mhz; /* need to multiply by 10 */
87
    u16 sec_gtf_toggle; /* A000=use above, 20=use below */
88
	u8 hfreq_start_khz; /* need to multiply by 2 */
89
	u8 c; /* need to divide by 2 */
90
    u16 m;
91
	u8 k;
92
	u8 j; /* need to divide by 2 */
93
} __attribute__((packed));
94
 
95
struct detailed_data_wpindex {
96
	u8 white_yx_lo; /* Lower 2 bits each */
97
	u8 white_x_hi;
98
	u8 white_y_hi;
99
	u8 gamma; /* need to divide by 100 then add 1 */
100
} __attribute__((packed));
101
 
102
struct detailed_data_color_point {
103
	u8 windex1;
104
	u8 wpindex1[3];
105
	u8 windex2;
106
	u8 wpindex2[3];
107
} __attribute__((packed));
108
 
109
struct detailed_non_pixel {
110
	u8 pad1;
111
	u8 type; /* ff=serial, fe=string, fd=monitor range, fc=monitor name
112
		    fb=color point data, fa=standard timing data,
113
		    f9=undefined, f8=mfg. reserved */
114
	u8 pad2;
115
	union {
116
		struct detailed_data_string str;
117
		struct detailed_data_monitor_range range;
118
		struct detailed_data_wpindex color;
119
		struct std_timing timings[5];
120
	} data;
121
} __attribute__((packed));
122
 
123
#define EDID_DETAIL_STD_MODES 0xfa
124
#define EDID_DETAIL_MONITOR_CPDATA 0xfb
125
#define EDID_DETAIL_MONITOR_NAME 0xfc
126
#define EDID_DETAIL_MONITOR_RANGE 0xfd
127
#define EDID_DETAIL_MONITOR_STRING 0xfe
128
#define EDID_DETAIL_MONITOR_SERIAL 0xff
129
 
130
struct detailed_timing {
131
    u16 pixel_clock; /* need to multiply by 10 KHz */
132
	union {
133
		struct detailed_pixel_timing pixel_data;
134
		struct detailed_non_pixel other_data;
135
	} data;
136
} __attribute__((packed));
137
 
138
#define DRM_EDID_INPUT_SERRATION_VSYNC (1 << 0)
139
#define DRM_EDID_INPUT_SYNC_ON_GREEN   (1 << 1)
140
#define DRM_EDID_INPUT_COMPOSITE_SYNC  (1 << 2)
141
#define DRM_EDID_INPUT_SEPARATE_SYNCS  (1 << 3)
142
#define DRM_EDID_INPUT_BLANK_TO_BLACK  (1 << 4)
143
#define DRM_EDID_INPUT_VIDEO_LEVEL     (3 << 5)
144
#define DRM_EDID_INPUT_DIGITAL         (1 << 7) /* bits below must be zero if set */
145
 
146
#define DRM_EDID_FEATURE_DEFAULT_GTF      (1 << 0)
147
#define DRM_EDID_FEATURE_PREFERRED_TIMING (1 << 1)
148
#define DRM_EDID_FEATURE_STANDARD_COLOR   (1 << 2)
149
#define DRM_EDID_FEATURE_DISPLAY_TYPE     (3 << 3) /* 00=mono, 01=rgb, 10=non-rgb, 11=unknown */
150
#define DRM_EDID_FEATURE_PM_ACTIVE_OFF    (1 << 5)
151
#define DRM_EDID_FEATURE_PM_SUSPEND       (1 << 6)
152
#define DRM_EDID_FEATURE_PM_STANDBY       (1 << 7)
153
 
154
struct edid {
155
	u8 header[8];
156
	/* Vendor & product info */
157
	u8 mfg_id[2];
158
	u8 prod_code[2];
159
	u32 serial; /* FIXME: byte order */
160
	u8 mfg_week;
161
	u8 mfg_year;
162
	/* EDID version */
163
	u8 version;
164
	u8 revision;
165
	/* Display info: */
166
	u8 input;
167
	u8 width_cm;
168
	u8 height_cm;
169
	u8 gamma;
170
	u8 features;
171
	/* Color characteristics */
172
	u8 red_green_lo;
173
	u8 black_white_lo;
174
	u8 red_x;
175
	u8 red_y;
176
	u8 green_x;
177
	u8 green_y;
178
	u8 blue_x;
179
	u8 blue_y;
180
	u8 white_x;
181
	u8 white_y;
182
	/* Est. timings and mfg rsvd timings*/
183
	struct est_timings established_timings;
184
	/* Standard timings 1-8*/
185
	struct std_timing standard_timings[8];
186
	/* Detailing timings 1-4 */
187
	struct detailed_timing detailed_timings[4];
188
	/* Number of 128 byte ext. blocks */
189
	u8 extensions;
190
	/* Checksum */
191
	u8 checksum;
192
} __attribute__((packed));
193
 
194
#define EDID_PRODUCT_ID(e) ((e)->prod_code[0] | ((e)->prod_code[1] << 8))
195
 
196
#define KOBJ_NAME_LEN   20
197
 
198
#define I2C_NAME_SIZE   20
199
 
200
 
201
/* --- Defines for bit-adapters --------------------------------------- */
202
/*
203
 * This struct contains the hw-dependent functions of bit-style adapters to
204
 * manipulate the line states, and to init any hw-specific features. This is
205
 * only used if you have more than one hw-type of adapter running.
206
 */
207
struct i2c_algo_bit_data {
208
        void *data;             /* private data for lowlevel routines */
209
        void (*setsda) (void *data, int state);
210
        void (*setscl) (void *data, int state);
211
        int  (*getsda) (void *data);
212
        int  (*getscl) (void *data);
213
 
214
        /* local settings */
215
        int udelay;             /* half clock cycle time in us,
216
                                   minimum 2 us for fast-mode I2C,
217
                                   minimum 5 us for standard-mode I2C and SMBus,
218
                                   maximum 50 us for SMBus */
219
        int timeout;            /* in jiffies */
220
};
221
 
222
struct i2c_client;
223
/*
224
 * i2c_adapter is the structure used to identify a physical i2c bus along
225
 * with the access algorithms necessary to access it.
226
 */
227
struct i2c_adapter {
228
//        struct module *owner;
229
        unsigned int id;
230
        unsigned int class;
231
//        const struct i2c_algorithm *algo; /* the algorithm to access the bus */
232
        void *algo_data;
233
 
234
        /* --- administration stuff. */
235
        int (*client_register)(struct i2c_client *);
236
        int (*client_unregister)(struct i2c_client *);
237
 
238
        /* data fields that are valid for all devices   */
239
        u8 level;                       /* nesting level for lockdep */
240
//        struct mutex bus_lock;
241
//        struct mutex clist_lock;
242
 
243
        int timeout;
244
        int retries;
245
//        struct device dev;              /* the adapter device */
246
 
247
        int nr;
248
        struct list_head clients;       /* DEPRECATED */
249
        char name[48];
250
//        struct completion dev_released;
251
};
252
#define to_i2c_adapter(d) container_of(d, struct i2c_adapter, dev)
253
 
254
struct i2c_client {
255
        unsigned short flags;           /* div., see below              */
256
        unsigned short addr;            /* chip address - NOTE: 7bit    */
257
                                        /* addresses are stored in the  */
258
                                        /* _LOWER_ 7 bits               */
259
        char name[I2C_NAME_SIZE];
260
        struct i2c_adapter *adapter;    /* the adapter we sit on        */
261
//        struct i2c_driver *driver;      /* and our access routines      */
262
//        struct device dev;              /* the device structure         */
263
        int irq;                        /* irq issued by device (or -1) */
264
        char driver_name[KOBJ_NAME_LEN];
265
        struct list_head list;          /* DEPRECATED */
266
//        struct completion released;
267
};
268
#define to_i2c_client(d) container_of(d, struct i2c_client, dev)
269
 
270
int i2c_bit_add_bus(struct i2c_adapter *);
271
int i2c_bit_add_numbered_bus(struct i2c_adapter *);
272
 
273
 
274
struct i2c_msg {
275
        u16 addr;     /* slave address                        */
276
        u16 flags;
277
#define I2C_M_TEN               0x0010  /* this is a ten bit chip address */
278
#define I2C_M_RD                0x0001  /* read data, from slave to master */
279
#define I2C_M_NOSTART           0x4000  /* if I2C_FUNC_PROTOCOL_MANGLING */
280
#define I2C_M_REV_DIR_ADDR      0x2000  /* if I2C_FUNC_PROTOCOL_MANGLING */
281
#define I2C_M_IGNORE_NAK        0x1000  /* if I2C_FUNC_PROTOCOL_MANGLING */
282
#define I2C_M_NO_RD_ACK         0x0800  /* if I2C_FUNC_PROTOCOL_MANGLING */
283
#define I2C_M_RECV_LEN          0x0400  /* length will be first received byte */
284
        u16 len;              /* msg length                           */
285
        u8 *buf;              /* pointer to msg data                  */
286
};
287
 
288
 
289
#endif /* __DRM_EDID_H__ */