From dcaaba44b62ebec7fa3d490f5dbf35931360cfa1 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 7 Jul 2013 04:05:51 -0700 Subject: snow: Fix the edid data structure definition so depthcharge works again. Some new fields were added to the edid data structure, and the edid code was changed to put estimated values into those fields which were ultimately passed into depthcharge or other payloads. On snow we do things different and just declare an edid structure statically which didn't have those members. The rows and columns of the graphics console were 0, and that confused the framebuffer driver and made it loop forever. Change-Id: I6ca3bd948482b347a6a981e83b82b10dca995e5e Signed-off-by: Gabe Black Reviewed-on: https://gerrit.chromium.org/gerrit/61057 Reviewed-by: Ronald G. Minnich Commit-Queue: Gabe Black Tested-by: Gabe Black Reviewed-on: http://review.coreboot.org/4341 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/mainboard/google/snow/mainboard.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/mainboard/google/snow') diff --git a/src/mainboard/google/snow/mainboard.c b/src/mainboard/google/snow/mainboard.c index 93cc303cbc..0d194b45dc 100644 --- a/src/mainboard/google/snow/mainboard.c +++ b/src/mainboard/google/snow/mainboard.c @@ -47,6 +47,9 @@ static struct edid edid = { .ha = 1366, .va = 768, .bpp = 16, + .x_resolution = 1366, + .y_resolution = 768, + .bytes_per_line = 2 * 1366 }; /* TODO: transplanted DP stuff, clean up once we have something that works */ -- cgit v1.2.3