[coreboot-gerrit] New patch to review for coreboot: 2548ea3 bolt: make the gpio interrupts edge sensitive

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Dec 3 22:19:59 CET 2013


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4361

-gerrit

commit 2548ea3622189d549656dadb5f839c86ed2e19eb
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