blob: 8809cced362e99813266de7bfcaad143d3237e3c [file] [log] [blame]
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef EDID_H
21#define EDID_H
22
23/* structure for communicating EDID information from a raw EDID block to
24 * higher level functions.
25 * The size of the data types is not critical, so we leave them as
26 * unsigned int. We can move more into into this struct as needed.
27 */
28
29struct edid {
30 char manuf_name[4];
31 unsigned int model;
32 unsigned int serial;
33 unsigned int year;
34 unsigned int week;
35 unsigned int version[2];
36 unsigned int nonconformant;
37 unsigned int type;
38 unsigned int bpp;
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070039 unsigned int xres;
40 unsigned int yres;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070041 unsigned int voltage;
42 unsigned int sync;
43 unsigned int xsize_cm;
44 unsigned int ysize_cm;
45 /* used to compute timing for graphics chips. */
46 unsigned char phsync;
47 unsigned char pvsync;
48 unsigned int ha;
49 unsigned int hbl;
50 unsigned int hso;
51 unsigned int hspw;
52 unsigned int hborder;
53 unsigned int va;
54 unsigned int vbl;
55 unsigned int vso;
56 unsigned int vspw;
57 unsigned int vborder;
58 /* it is unlikely we need these things. */
59 /* if one of these is non-zero, use that one. */
60 unsigned int aspect_landscape;
61 unsigned int aspect_portrait;
62 const char *range_class;
63 const char *syncmethod;
64 const char *stereo;
65};
66
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070067/* Defined in src/lib/edid.c */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070068int decode_edid(unsigned char *edid, int size, struct edid *out);
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070069
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070070#endif /* EDID_H */