blob: d3cab17f497ddf34d78aea17f4511a88bb198724 [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.
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070014 */
15
16#ifndef EDID_H
17#define EDID_H
18
David Hendricks7dbf9c62015-07-30 18:49:48 -070019enum edid_modes {
David Hendricks7dbf9c62015-07-30 18:49:48 -070020 EDID_MODE_640x480_60Hz,
David Hendrickse2054102015-08-07 18:41:37 -070021 EDID_MODE_720x480_60Hz,
22 EDID_MODE_1280x720_60Hz,
23 EDID_MODE_1920x1080_60Hz,
24 NUM_KNOWN_MODES,
25
26 EDID_MODE_AUTO
David Hendricks7dbf9c62015-07-30 18:49:48 -070027};
28
29struct edid_mode {
30 const char *name;
31 unsigned int pixel_clock;
Vladimir Serbinenko551cff02015-10-10 23:58:08 +020032 int lvds_dual_channel;
David Hendricks7dbf9c62015-07-30 18:49:48 -070033 unsigned int refresh;
34 unsigned int ha;
35 unsigned int hbl;
36 unsigned int hso;
37 unsigned int hspw;
38 unsigned int hborder;
39 unsigned int va;
40 unsigned int vbl;
41 unsigned int vso;
42 unsigned int vspw;
43 unsigned int vborder;
44 unsigned char phsync;
45 unsigned char pvsync;
46 unsigned int x_mm;
47 unsigned int y_mm;
48};
49
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070050/* structure for communicating EDID information from a raw EDID block to
51 * higher level functions.
52 * The size of the data types is not critical, so we leave them as
53 * unsigned int. We can move more into into this struct as needed.
54 */
55
56struct edid {
Ronald G. Minnich9518b562013-09-19 16:45:22 -070057 /* These next three things used to all be called bpp.
58 * Merriment ensued. The identifier
59 * 'bpp' is herewith banished from our
60 * Kingdom.
61 */
62 /* How many bits in the framebuffer per pixel.
63 * Under all reasonable circumstances, it's 32.
64 */
65 unsigned int framebuffer_bits_per_pixel;
66 /* On the panel, how many bits per color?
67 * In almost all cases, it's 6 or 8.
68 * The standard allows for much more!
69 */
70 unsigned int panel_bits_per_color;
71 /* On the panel, how many bits per pixel.
72 * On Planet Earth, there are three colors
73 * per pixel, but this is convenient to have here
74 * instead of having 3*panel_bits_per_color
75 * all over the place.
76 */
77 unsigned int panel_bits_per_pixel;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070078 /* used to compute timing for graphics chips. */
David Hendricks7dbf9c62015-07-30 18:49:48 -070079 struct edid_mode mode;
David Hendrickse2054102015-08-07 18:41:37 -070080 u8 mode_is_supported[NUM_KNOWN_MODES];
Furquan Shaikh6b190712013-07-22 16:18:31 -070081 unsigned int link_clock;
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;
Yakir Yang85810cc2015-10-27 16:17:13 +080090
91 int hdmi_monitor_detected;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070092};
93
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070094/* Defined in src/lib/edid.c */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070095int decode_edid(unsigned char *edid, int size, struct edid *out);
Ronald G. Minnich78c3e332013-04-24 09:50:56 -070096void set_vbe_mode_info_valid(struct edid *edid, uintptr_t fb_addr);
David Hendrickse2054102015-08-07 18:41:37 -070097int set_display_mode(struct edid *edid, enum edid_modes mode);
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070098
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070099#endif /* EDID_H */