[coreboot-gerrit] Patch set updated for coreboot: 6c3fb16 bolt: make the gpio interrupts edge sensitive

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Fri Dec 20 23:32:12 CET 2013


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4361

-gerrit

commit 6c3fb169707cef1ded958d0e7a4bff69cb8183bd
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Fri Jul 12 12:46:11 2013 -0500

    bolt: make the gpio interrupts edge sensitive
    
    The drivers in the kernel expect the devices using gpios
    to generate interrupts to be edge sensitive. Make it so.
    
    Change-Id: I920ef621682d33ba081f737e97f0239f903db2f7
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
    Reviewed-on: https://gerrit.chromium.org/gerrit/61678
    Reviewed-by: Stefan Reinauer <reinauer at google.com>
    Reviewed-by: Duncan Laurie <dlaurie at chromium.org>
---
 src/mainboard/google/bolt/acpi/mainboard.asl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/google/bolt/acpi/mainboard.asl b/src/mainboard/google/bolt/acpi/mainboard.asl
index c579499..c62a96e 100644
--- a/src/mainboard/google/bolt/acpi/mainboard.asl
+++ b/src/mainboard/google/bolt/acpi/mainboard.asl
@@ -49,7 +49,7 @@ Scope (\_SB)
 
 		Name (_CRS, ResourceTemplate()
 		{
-			Interrupt (ResourceConsumer, Level, ActiveLow)
+			Interrupt (ResourceConsumer, Edge, ActiveLow)
 			{
 				BOARD_TRACKPAD_IRQ
 			}
@@ -84,7 +84,7 @@ Scope (\_SB)
 
 		Name (_CRS, ResourceTemplate()
 		{
-			Interrupt (ResourceConsumer, Level, ActiveLow)
+			Interrupt (ResourceConsumer, Edge, ActiveLow)
 			{
 				BOARD_TOUCHSCREEN_IRQ
 			}



More information about the coreboot-gerrit mailing list