Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/libgfxinit/+/44070 )
Change subject: Make Bay Trail work with coreboot ......................................................................
Make Bay Trail work with coreboot
Oops.
Change-Id: I975d5c54147247c2b7392f3b65976b5f7d4fa46b Signed-off-by: Angel Pons th3fanbus@gmail.com --- M common/hw-gfx-gma.adb M common/valleyview/hw-gfx-gma-power_and_clocks.adb 2 files changed, 3 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/libgfxinit refs/changes/70/44070/1
diff --git a/common/hw-gfx-gma.adb b/common/hw-gfx-gma.adb index a363738..d418903 100644 --- a/common/hw-gfx-gma.adb +++ b/common/hw-gfx-gma.adb @@ -781,6 +781,7 @@ pragma Debug (not Valid, Debug.Put_Line ("Stolen memory too small to hold framebuffer.")); end if; + Valid := True; end Validate_FB;
procedure Setup_Default_FB diff --git a/common/valleyview/hw-gfx-gma-power_and_clocks.adb b/common/valleyview/hw-gfx-gma-power_and_clocks.adb index 2e45172..0448804 100644 --- a/common/valleyview/hw-gfx-gma-power_and_clocks.adb +++ b/common/valleyview/hw-gfx-gma-power_and_clocks.adb @@ -117,8 +117,8 @@ -- intel_cdclk.c: vlv_hrawclk() Config.Raw_Clock := Vlv_Get_Cck_Clock (CCK_DISPLAY_REF_CLOCK_CONTROL, Hpll_Vco);
- pragma Debug (Debug.Put_Line ("CDClk: " & Config.CDClk'Image)); - pragma Debug (Debug.Put_Line ("RawClk: " & Config.Raw_Clock'Image)); + -- pragma Debug (Debug.Put_Line ("CDClk: " & Config.CDClk'Image)); + -- pragma Debug (Debug.Put_Line ("RawClk: " & Config.Raw_Clock'Image));
end Initialize;