UPSTREAM: acpi_device: Add macro for GpioInt that uses both polarity
GPIO edge interrupts can report that they are ActiveBoth and will
generate an interrupt event on both rising and falling edges.
Add a macro so this type of GPIO interrupt can be used.
BUG=b:35581264
BRANCH=none
TEST=successfully use this interrupt type on Eve
Change-Id: I8787e410da3e142c7c66cc7ef2de9b62fe50cc6a
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 346cfe363e
Original-Change-Id: I91408386538e442bddcacc9840e0aa14370a446c
Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Original-Reviewed-on: https://review.coreboot.org/18834
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Original-Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://chromium-review.googlesource.com/456303
This commit is contained in:
parent
99a672c065
commit
efe9957974
1 changed files with 9 additions and 0 deletions
|
|
@ -200,6 +200,15 @@ struct acpi_gpio {
|
|||
.pin_count = 1, \
|
||||
.pins = { (gpio) } }
|
||||
|
||||
/* Edge Triggered Active Both GPIO interrupt */
|
||||
#define ACPI_GPIO_IRQ_EDGE_BOTH(gpio) { \
|
||||
.type = ACPI_GPIO_TYPE_INTERRUPT, \
|
||||
.pull = ACPI_GPIO_PULL_DEFAULT, \
|
||||
.irq.mode = ACPI_IRQ_EDGE_TRIGGERED, \
|
||||
.irq.polarity = ACPI_IRQ_ACTIVE_BOTH, \
|
||||
.pin_count = 1, \
|
||||
.pins = { (gpio) } }
|
||||
|
||||
/* Level Triggered Active High GPIO interrupt */
|
||||
#define ACPI_GPIO_IRQ_LEVEL_HIGH(gpio) { \
|
||||
.type = ACPI_GPIO_TYPE_INTERRUPT, \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue