Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/interrupt-controller/fsl,ls-extirq.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Freescale Layerscape External Interrupt Controller maintainers: - Shawn Guo <shawnguo@kernel.org> description: | Some Layerscape SOCs (LS1021A, LS1043A, LS1046A LS1088A, LS208xA, LX216xA) support inverting the polarity of certain external interrupt lines. properties: compatible: oneOf: - enum: - fsl,ls1021a-extirq - fsl,ls1043a-extirq - fsl,ls1088a-extirq - items: - enum: - fsl,ls1046a-extirq - const: fsl,ls1043a-extirq - items: - enum: - fsl,ls2080a-extirq - fsl,lx2160a-extirq - const: fsl,ls1088a-extirq '#interrupt-cells': const: 2 '#address-cells': const: 0 interrupt-controller: true reg: maxItems: 1 description: Specifies the Interrupt Polarity Control Register (INTPCR) in the SCFG or the External Interrupt Control Register (IRQCR) in the ISC. interrupt-map: description: Specifies the mapping from external interrupts to GIC interrupts. interrupt-map-mask: true required: - compatible - '#interrupt-cells' - '#address-cells' - interrupt-controller - reg - interrupt-map - interrupt-map-mask allOf: - if: properties: compatible: contains: enum: - fsl,ls1021a-extirq then: properties: interrupt-map: minItems: 6 maxItems: 6 interrupt-map-mask: items: - const: 0x7 - const: 0 - if: properties: compatible: contains: enum: - fsl,ls1043a-extirq - fsl,ls1046a-extirq - fsl,ls1088a-extirq - fsl,ls2080a-extirq - fsl,lx2160a-extirq then: properties: interrupt-map: minItems: 12 maxItems: 12 interrupt-map-mask: items: - const: 0xf - const: 0 additionalProperties: false examples: - | #include <dt-bindings/interrupt-controller/arm-gic.h> interrupt-controller@1ac { compatible = "fsl,ls1021a-extirq"; #interrupt-cells = <2>; #address-cells = <0>; interrupt-controller; reg = <0x1ac 4>; interrupt-map = <0 0 &gic GIC_SPI 163 IRQ_TYPE_LEVEL_HIGH>, <1 0 &gic GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>, <2 0 &gic GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>, <3 0 &gic GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>, <4 0 &gic GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>, <5 0 &gic GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>; interrupt-map-mask = <0x7 0x0>; }; |