diff options
| author | Lina Iyer <[email protected]> | 2019-11-15 22:11:48 +0000 |
|---|---|---|
| committer | Marc Zyngier <[email protected]> | 2019-11-16 10:20:02 +0000 |
| commit | 09d31567f85b6cd0eddf28d90f7b83be09ee282b (patch) | |
| tree | 266f9c90ca0ab244f58b7ef6a82496268058ef2c | |
| parent | genirq: Introduce irq_chip_get/set_parent_state calls (diff) | |
| download | kernel-09d31567f85b6cd0eddf28d90f7b83be09ee282b.tar.gz kernel-09d31567f85b6cd0eddf28d90f7b83be09ee282b.zip | |
of/irq: Document properties for wakeup interrupt parent
Some interrupt controllers in a SoC, are always powered on and have a
select interrupts routed to them, so that they can wakeup the SoC from
suspend. Add wakeup-parent DT property to refer to these interrupt
controllers.
Signed-off-by: Lina Iyer <[email protected]>
Signed-off-by: Marc Zyngier <[email protected]>
Reviewed-by: Rob Herring <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Reviewed-by: Stephen Boyd <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
| -rw-r--r-- | Documentation/devicetree/bindings/interrupt-controller/interrupts.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/interrupt-controller/interrupts.txt b/Documentation/devicetree/bindings/interrupt-controller/interrupts.txt index 4a3ee253f7f0..4ebfa0008781 100644 --- a/Documentation/devicetree/bindings/interrupt-controller/interrupts.txt +++ b/Documentation/devicetree/bindings/interrupt-controller/interrupts.txt @@ -108,3 +108,15 @@ commonly used: sensitivity = <7>; }; }; + +3) Interrupt wakeup parent +-------------------------- + +Some interrupt controllers in a SoC, are always powered on and have a select +interrupts routed to them, so that they can wakeup the SoC from suspend. These +interrupt controllers do not fall into the category of a parent interrupt +controller and can be specified by the "wakeup-parent" property and contain a +single phandle referring to the wakeup capable interrupt controller. + + Example: + wakeup-parent = <&pdc_intc>; |
