blob: 867a82ff285a522ef84d05d7c790929f0673603c [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;
Ronald G. Minnich9518b562013-09-19 16:45:22 -070038 /* These next three things used to all be called bpp.
39 * Merriment ensued. The identifier
40 * 'bpp' is herewith banished from our
41 * Kingdom.
42 */
43 /* How many bits in the framebuffer per pixel.
44 * Under all reasonable circumstances, it's 32.
45 */
46 unsigned int framebuffer_bits_per_pixel;
47 /* On the panel, how many bits per color?
48 * In almost all cases, it's 6 or 8.
49 * The standard allows for much more!
50 */
51 unsigned int panel_bits_per_color;
52 /* On the panel, how many bits per pixel.
53 * On Planet Earth, there are three colors
54 * per pixel, but this is convenient to have here
55 * instead of having 3*panel_bits_per_color
56 * all over the place.
57 */
58 unsigned int panel_bits_per_pixel;
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070059 unsigned int xres;
60 unsigned int yres;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070061 unsigned int voltage;
62 unsigned int sync;
63 unsigned int xsize_cm;
64 unsigned int ysize_cm;
65 /* used to compute timing for graphics chips. */
66 unsigned char phsync;
67 unsigned char pvsync;
Furquan Shaikhaa04ed62013-07-23 15:53:02 -070068 unsigned int x_mm;
69 unsigned int y_mm;
Furquan Shaikh6b190712013-07-22 16:18:31 -070070 unsigned int pixel_clock;
71 unsigned int link_clock;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070072 unsigned int ha;
73 unsigned int hbl;
74 unsigned int hso;
75 unsigned int hspw;
76 unsigned int hborder;
77 unsigned int va;
78 unsigned int vbl;
79 unsigned int vso;
80 unsigned int vspw;
81 unsigned int vborder;
Ronald G. Minnich4c5b1612013-06-28 14:33:30 -070082 /* 3 variables needed for coreboot framebuffer.
83 * In most cases, they are the same as the ha
84 * and va variables, but not always, as in the
85 * case of a 1366 wide display.
86 */
87 u32 x_resolution;
88 u32 y_resolution;
89 u32 bytes_per_line;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070090 /* it is unlikely we need these things. */
91 /* if one of these is non-zero, use that one. */
92 unsigned int aspect_landscape;
93 unsigned int aspect_portrait;
94 const char *range_class;
95 const char *syncmethod;
96 const char *stereo;
97};
98
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070099/* Defined in src/lib/edid.c */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700100int decode_edid(unsigned char *edid, int size, struct edid *out);
Ronald G. Minnich78c3e332013-04-24 09:50:56 -0700101void set_vbe_mode_info_valid(struct edid *edid, uintptr_t fb_addr);
Ronald G. Minnichb2893a012013-04-23 10:59:11 -0700102
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700103#endif /* EDID_H */