diff options
author | Nico Huber <nico.huber@secunet.com> | 2018-03-29 15:21:59 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-04-13 16:42:48 +0000 |
commit | 0beb62760d97833303650f67ceda938cf83a1659 (patch) | |
tree | 9e2f194f044c62d56283172f52a888efe2fda927 /src/drivers/intel | |
parent | 53af78d4fb3ef93b72b60aa2c2ab643beb9e09cd (diff) | |
download | coreboot-0beb62760d97833303650f67ceda938cf83a1659.tar.xz |
3rdparty/libgfxinit: Update submodule pointer
Update libgfxinit to current master. Changes include:
* a fix to decode the size stolen memory correctly on pre-SandyBridge
hardware,
* a PCI id based generation check, obsoleting the old check based
on PCH audio ids,
* some minor improvements around rarely used DDI ports (D and E), and
* added support for tiled and rotated framebuffers on Skylake+ hardware
(less interesting for coreboot, I guess?).
TEST=Booted kontron/ktqm77 (Ivy Bridge) and pending kontron/bsl6
(Skylake) both with text and linear framebuffers and observed
FILO's prompt showing up.
Change-Id: I9a3c35c60b9edf8775f3a489df7577092910e127
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/25453
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/intel')
-rw-r--r-- | src/drivers/intel/gma/hires_fb/gma.adb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/intel/gma/hires_fb/gma.adb b/src/drivers/intel/gma/hires_fb/gma.adb index 839d2d3e91..ca0f708479 100644 --- a/src/drivers/intel/gma/hires_fb/gma.adb +++ b/src/drivers/intel/gma/hires_fb/gma.adb @@ -83,6 +83,7 @@ is fb.Width := Width_Type (min_h); fb.Height := Height_Type (min_v); fb.Stride := Div_Round_Up (fb.Width, 16) * 16; + fb.V_Stride := fb.Height; for i in Pipe_Index loop exit when configs (i).Port = Disabled; |