mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 00:51:29 +00:00
There are serveral members of the edid struct which are never used outside of the EDID parsing code itself. This patch moves them to a struct in edid.c. They might be useful some day but until then we can just pretty print them and not pollute the more general API. BUG=none BRANCH=firmware-veyron TEST=compiled for veyron_mickey, peppy, link, nyan_big, rush, smaug Signed-off-by: David Hendricks <dhendrix@chromium.org> Change-Id: I660f28c850163e89fe1f59d6c5cfd6e63a56dda0 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Original-Commit-Id: ee8ea314a0d8f5993508f560fc24ab17604049df Original-Change-Id: I7fb8674619c0b780cc64f3ab786286225a3fe0e2 Original-Reviewed-on: https://chromium-review.googlesource.com/290333 Original-Reviewed-by: Yakir Yang <ykk@rock-chips.com> Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Original-Commit-Queue: David Hendricks <dhendrix@chromium.org> Original-Tested-by: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/11387 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
81 lines
2.4 KiB
C
81 lines
2.4 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc.
|
|
*/
|
|
|
|
#ifndef EDID_H
|
|
#define EDID_H
|
|
|
|
/* structure for communicating EDID information from a raw EDID block to
|
|
* higher level functions.
|
|
* The size of the data types is not critical, so we leave them as
|
|
* unsigned int. We can move more into into this struct as needed.
|
|
*/
|
|
|
|
struct edid {
|
|
/* These next three things used to all be called bpp.
|
|
* Merriment ensued. The identifier
|
|
* 'bpp' is herewith banished from our
|
|
* Kingdom.
|
|
*/
|
|
/* How many bits in the framebuffer per pixel.
|
|
* Under all reasonable circumstances, it's 32.
|
|
*/
|
|
unsigned int framebuffer_bits_per_pixel;
|
|
/* On the panel, how many bits per color?
|
|
* In almost all cases, it's 6 or 8.
|
|
* The standard allows for much more!
|
|
*/
|
|
unsigned int panel_bits_per_color;
|
|
/* On the panel, how many bits per pixel.
|
|
* On Planet Earth, there are three colors
|
|
* per pixel, but this is convenient to have here
|
|
* instead of having 3*panel_bits_per_color
|
|
* all over the place.
|
|
*/
|
|
unsigned int panel_bits_per_pixel;
|
|
/* used to compute timing for graphics chips. */
|
|
unsigned char phsync;
|
|
unsigned char pvsync;
|
|
unsigned int pixel_clock;
|
|
unsigned int link_clock;
|
|
unsigned int ha;
|
|
unsigned int hbl;
|
|
unsigned int hso;
|
|
unsigned int hspw;
|
|
unsigned int hborder;
|
|
unsigned int va;
|
|
unsigned int vbl;
|
|
unsigned int vso;
|
|
unsigned int vspw;
|
|
unsigned int vborder;
|
|
/* 3 variables needed for coreboot framebuffer.
|
|
* In most cases, they are the same as the ha
|
|
* and va variables, but not always, as in the
|
|
* case of a 1366 wide display.
|
|
*/
|
|
u32 x_resolution;
|
|
u32 y_resolution;
|
|
u32 bytes_per_line;
|
|
};
|
|
|
|
/* Defined in src/lib/edid.c */
|
|
int decode_edid(unsigned char *edid, int size, struct edid *out);
|
|
void set_vbe_mode_info_valid(struct edid *edid, uintptr_t fb_addr);
|
|
|
|
#endif /* EDID_H */
|