1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/interrupt-controller/qcom,pdc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: PDC interrupt controller 8 9maintainers: 10 - Bjorn Andersson <bjorn.andersson@linaro.org> 11 12description: | 13 Qualcomm Technologies Inc. SoCs based on the RPM Hardened architecture have a 14 Power Domain Controller (PDC) that is on always-on domain. In addition to 15 providing power control for the power domains, the hardware also has an 16 interrupt controller that can be used to help detect edge low interrupts as 17 well detect interrupts when the GIC is non-operational. 18 19 GIC is parent interrupt controller at the highest level. Platform interrupt 20 controller PDC is next in hierarchy, followed by others. Drivers requiring 21 wakeup capabilities of their device interrupts routed through the PDC, must 22 specify PDC as their interrupt controller and request the PDC port associated 23 with the GIC interrupt. See example below. 24 25properties: 26 compatible: 27 items: 28 - enum: 29 - qcom,sc7180-pdc 30 - qcom,sc7280-pdc 31 - qcom,sc8280xp-pdc 32 - qcom,sdm845-pdc 33 - qcom,sdx55-pdc 34 - qcom,sdx65-pdc 35 - qcom,sm6350-pdc 36 - qcom,sm8150-pdc 37 - qcom,sm8250-pdc 38 - qcom,sm8350-pdc 39 - qcom,sm8450-pdc 40 - const: qcom,pdc 41 42 reg: 43 minItems: 1 44 items: 45 - description: PDC base register region 46 - description: Edge or Level config register for SPI interrupts 47 48 '#interrupt-cells': 49 const: 2 50 51 interrupt-controller: true 52 53 qcom,pdc-ranges: 54 $ref: /schemas/types.yaml#/definitions/uint32-matrix 55 minItems: 1 56 maxItems: 32 # no hard limit 57 items: 58 items: 59 - description: starting PDC port 60 - description: GIC hwirq number for the PDC port 61 - description: number of interrupts in sequence 62 description: | 63 Specifies the PDC pin offset and the number of PDC ports. 64 The tuples indicates the valid mapping of valid PDC ports 65 and their hwirq mapping. 66 67required: 68 - compatible 69 - reg 70 - '#interrupt-cells' 71 - interrupt-controller 72 - qcom,pdc-ranges 73 74additionalProperties: false 75 76examples: 77 - | 78 #include <dt-bindings/interrupt-controller/irq.h> 79 80 pdc: interrupt-controller@b220000 { 81 compatible = "qcom,sdm845-pdc", "qcom,pdc"; 82 reg = <0xb220000 0x30000>; 83 qcom,pdc-ranges = <0 512 94>, <94 641 15>, <115 662 7>; 84 #interrupt-cells = <2>; 85 interrupt-parent = <&intc>; 86 interrupt-controller; 87 }; 88 89 wake-device { 90 interrupts-extended = <&pdc 2 IRQ_TYPE_LEVEL_HIGH>; 91 }; 92