[coreboot-gerrit] Patch set updated for coreboot: gm45: fix uneven backlight (native gfx init)

Francis Rowe (info@gluglug.org.uk) gerrit at coreboot.org
Mon Jun 15 04:10:01 CEST 2015


Francis Rowe (info at gluglug.org.uk) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7979

-gerrit

commit 96de49c885bbfc029af6c935462bdd3948d96ed7
Author: Francis Rowe <info at gluglug.org.uk>
Date:   Mon Dec 29 21:02:48 2014 +0000

    gm45: fix uneven backlight (native gfx init)
    
    When setting brightness levels low, backlight becomes uneven.
    This patch fixes that.
    
    Tested on X200.
    
    Change-Id: Ie71bf696ba4431ab25076f92dd5fdc9fdc167b09
    Signed-off-by: Francis Rowe <info at gluglug.org.uk>
---
 src/northbridge/intel/gm45/acpi/igd.asl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/northbridge/intel/gm45/acpi/igd.asl b/src/northbridge/intel/gm45/acpi/igd.asl
index 696cc2b..39fefb2 100644
--- a/src/northbridge/intel/gm45/acpi/igd.asl
+++ b/src/northbridge/intel/gm45/acpi/igd.asl
@@ -62,15 +62,15 @@ Device (GFX0)
 
 	Method (XBCM, 1, NotSerialized)
 	{
-		Store (ShiftLeft (Arg0, 4), BCLV)
+		Store (ShiftLeft (Arg0, 8), BCLV)
 		Store (0x80000000, CR1)
-		Store (0x0610, BCLM)
+		Store (ShiftLeft (0x61, 8), BCLM)
 	}
 
 	Method (XBQC, 0, NotSerialized)
 	{
 		Store (BCLV, Local0)
-		ShiftRight (Local0, 4, Local0)
+		ShiftRight (Local0, 8, Local0)
 		Return (Local0)
 	}
 #include <drivers/intel/gma/igd.asl>



More information about the coreboot-gerrit mailing list