Lines Matching +full:is +full:- +full:wired
8 - compatible: Specifies the compatibility list for the interrupt controller.
9 The type shall be <string> and the value shall include "img,meta-intc".
11 - num-banks: Specifies the number of interrupt banks (each of which can
14 - interrupt-controller: The presence of this property identifies the node
17 - #interrupt-cells: Specifies the number of cells needed to encode an
20 - #address-cells: Specifies the number of cells needed to encode an
22 'interrupt-map' nodes do not have to specify a parent unit address.
26 - no-mask: The controller doesn't have any mask registers.
32 - <1st-cell>: The interrupt-number that identifies the interrupt source.
34 - <2nd-cell>: The Linux interrupt flags containing level-sense information,
37 4 = level-sensitive
47 // This is an interrupt controller node.
48 interrupt-controller;
50 // No address cells so that 'interrupt-map' nodes which
53 #address-cells = <0>;
56 #interrupt-cells = <2>;
59 num-banks = <2>;
61 // No HWMASKEXT is available (specify on Chorus2 and Comet ES1)
62 no-mask;
65 compatible = "img,meta-intc";
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>;