diff options
author | Furquan Shaikh <furquan@google.com> | 2013-07-23 15:53:02 -0700 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2013-12-21 08:04:13 +0100 |
commit | aa04ed649442296366bc2bad1936ec5184235069 (patch) | |
tree | c0a7ee7b8530c344564b35b8341759a4e032e533 /src/lib | |
parent | 6b19071ffb89dbb68196b7f3b088d87d4fad9e80 (diff) |
Added structure members x_mm and y_mm to edid decoding
Change-Id: I9a628cec4da127a3f072d9611259dad99dfa9d29
Reviewed-on: https://gerrit.chromium.org/gerrit/63125
Reviewed-by: Ronald G. Minnich <rminnich@chromium.org>
Commit-Queue: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: http://review.coreboot.org/4382
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/edid.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/edid.c b/src/lib/edid.c index 8018967bf1..dd7c46ab2b 100644 --- a/src/lib/edid.c +++ b/src/lib/edid.c @@ -449,6 +449,8 @@ detailed_block(struct edid *out, unsigned char *x, int in_extension) if (! did_detailed_timing){ /* Edid contains pixel clock in terms of 10KHz */ out->pixel_clock = (x[0] + (x[1] << 8)) * 10; + out->x_mm = (x[12] + ((x[14] & 0xF0) << 4)); + out->y_mm = (x[13] + ((x[14] & 0x0F) << 8)); out->ha = (x[2] + ((x[4] & 0xF0) << 4)); out->hbl = (x[3] + ((x[4] & 0x0F) << 8)); out->hso = (x[8] + ((x[11] & 0xC0) << 2)); @@ -524,8 +526,8 @@ detailed_block(struct edid *out, unsigned char *x, int in_extension) " %04x %04x %04x %04x vborder %x\n" " %chsync %cvsync%s%s %s\n", out->pixel_clock, - (x[12] + ((x[14] & 0xF0) << 4)), - (x[13] + ((x[14] & 0x0F) << 8)), + out->x_mm, + out->y_mm, out->ha, out->ha + out->hso, out->ha + out->hso + out->hspw, out->ha + out->hbl, out->hborder, out->va, out->va + out->vso, out->va + out->vso + out->vspw, |