Lines Matching refs:interrupt
1 Specifying interrupt information for devices
11 properties contain a list of interrupt specifiers, one per output interrupt. The
12 format of the interrupt specifier is determined by the interrupt controller to
16 interrupt-parent = <&intc1>;
19 The "interrupt-parent" property is used to specify the controller to which
20 interrupts are routed and contains a single phandle referring to the interrupt
22 interrupt client node or in any of its parent nodes. Interrupts listed in the
23 "interrupts" property are always in reference to the node's interrupt parent.
26 to reference multiple interrupt parents or a different interrupt parent than
28 and the interrupt specifier.
36 A device is marked as an interrupt controller with the "interrupt-controller"
37 property. This is a empty, boolean property. An additional "#interrupt-cells"
38 property defines the number of cells needed to specify a single interrupt.
40 It is the responsibility of the interrupt controller's binding to define the
41 length and format of the interrupt specifier. The following two variants are
46 The #interrupt-cells property is set to 1 and the single cell defines the
47 index of the interrupt within the controller.
53 interrupt-controller;
54 #interrupt-cells = <1>;
60 interrupt-controller;
61 #interrupt-cells = <1>;
63 interrupt-parent = <&vic>;
69 The #interrupt-cells property is set to 2 and the first cell defines the
70 index of the interrupt within the controller, while the second cell is used
85 interrupt-parent = <&gpio>;
91 interrupt-controller;
92 #interrupt-cells = <2>;
101 interrupt-parent = <&gpioext>;
115 Some interrupt controllers in a SoC, are always powered on and have a select
117 interrupt controllers do not fall into the category of a parent interrupt
119 single phandle referring to the wakeup capable interrupt controller.