Lines Matching +full:interrupts +full:- +full:extended
5 -------------------------
7 Nodes that describe devices which generate interrupts must contain an
8 "interrupts" property, an "interrupts-extended" property, or both. If both are
13 which the interrupts are routed; see section 2 below for details.
16 interrupt-parent = <&intc1>;
17 interrupts = <5 0>, <6 0>;
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.
25 The "interrupts-extended" property is a special form; useful when a node needs
31 interrupts-extended = <&intc1 5 1>, <&intc2 1 0>;
34 -----------------------------
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"
45 -----------
46 The #interrupt-cells property is set to 1 and the single cell defines the
52 compatible = "arm,versatile-vic";
53 interrupt-controller;
54 #interrupt-cells = <1>;
59 compatible = "arm,versatile-sic";
60 interrupt-controller;
61 #interrupt-cells = <1>;
63 interrupt-parent = <&vic>;
64 interrupts = <31>; /* Cascaded to vic */
68 ------------
69 The #interrupt-cells property is set to 2 and the first cell defines the
72 - bits[3:0] trigger type and level flags
73 1 = low-to-high edge triggered
74 2 = high-to-low edge triggered
75 4 = active high level-sensitive
76 8 = active low level-sensitive
81 gpioext: gpio-adnp@41 {
82 compatible = "ad,gpio-adnp";
85 interrupt-parent = <&gpio>;
86 interrupts = <160 1>;
88 gpio-controller;
89 #gpio-cells = <1>;
91 interrupt-controller;
92 #interrupt-cells = <2>;
94 nr-gpios = <64>;
101 interrupt-parent = <&gpioext>;
102 interrupts = <3 0x8>;
104 #address-cells = <1>;
105 #size-cells = <0>;
113 --------------------------
116 interrupts routed to them, so that they can wakeup the SoC from suspend. These
118 controller and can be specified by the "wakeup-parent" property and contain a
122 wakeup-parent = <&pdc_intc>;