Lines Matching full:interrupt
8 - compatible: Specifies the compatibility list for the interrupt controller.
11 - num-banks: Specifies the number of interrupt banks (each of which can
12 handle 32 interrupt sources).
14 - interrupt-controller: The presence of this property identifies the node
15 as an interrupt controller. No property value shall be defined.
17 - #interrupt-cells: Specifies the number of cells needed to encode an
18 interrupt source. The type shall be a <u32> and the value shall be 2.
22 'interrupt-map' nodes do not have to specify a parent unit address.
28 * Interrupt Specifier Definition
30 Interrupt specifiers consists of 2 cells encoded as follows:
32 - <1st-cell>: The interrupt-number that identifies the interrupt source.
34 - <2nd-cell>: The Linux interrupt flags containing level-sense information,
47 // This is an interrupt controller node.
48 interrupt-controller;
50 // No address cells so that 'interrupt-map' nodes which
51 // reference this interrupt controller node do not need a parent
55 // Two cells to encode interrupt sources.
56 #interrupt-cells = <2>;
58 // Number of interrupt banks
71 * An interrupt generating device that is wired to a Meta external
75 // Interrupt source '5' that is level-sensitive.
77 // interrupt parent's '#interrupt-cells' property.
80 // The interrupt controller that this device is wired to.
81 interrupt-parent = <&intc>;