xref: /linux/Documentation/devicetree/bindings/interrupt-controller/qcom,pdc.yaml (revision d639d9fa162aadec1ae9980c4dcf6e50bd2f8290)
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,eliza-pdc
30          - qcom,glymur-pdc
31          - qcom,hawi-pdc
32          - qcom,kaanapali-pdc
33          - qcom,maili-pdc
34          - qcom,milos-pdc
35          - qcom,nord-pdc
36          - qcom,qcs615-pdc
37          - qcom,qcs8300-pdc
38          - qcom,qdu1000-pdc
39          - qcom,sa8255p-pdc
40          - qcom,sa8775p-pdc
41          - qcom,sar2130p-pdc
42          - qcom,sc7180-pdc
43          - qcom,sc7280-pdc
44          - qcom,sc8180x-pdc
45          - qcom,sc8280xp-pdc
46          - qcom,sdm670-pdc
47          - qcom,sdm845-pdc
48          - qcom,sdx55-pdc
49          - qcom,sdx65-pdc
50          - qcom,sdx75-pdc
51          - qcom,sm4450-pdc
52          - qcom,sm6350-pdc
53          - qcom,sm8150-pdc
54          - qcom,sm8250-pdc
55          - qcom,sm8350-pdc
56          - qcom,sm8450-pdc
57          - qcom,sm8550-pdc
58          - qcom,sm8650-pdc
59          - qcom,sm8750-pdc
60          - qcom,x1e80100-pdc
61      - const: qcom,pdc
62
63  reg:
64    minItems: 1
65    items:
66      - description: PDC base register region
67      - description: Edge or Level config register for SPI interrupts
68
69  '#interrupt-cells':
70    const: 2
71
72  interrupt-controller: true
73
74  qcom,pdc-ranges:
75    $ref: /schemas/types.yaml#/definitions/uint32-matrix
76    minItems: 1
77    maxItems: 128 # no hard limit
78    items:
79      items:
80        - description: starting PDC port
81        - description: GIC hwirq number for the PDC port
82        - description: number of interrupts in sequence
83    description: |
84      Specifies the PDC pin offset and the number of PDC ports.
85      The tuples indicates the valid mapping of valid PDC ports
86      and their hwirq mapping.
87
88required:
89  - compatible
90  - reg
91  - '#interrupt-cells'
92  - interrupt-controller
93  - qcom,pdc-ranges
94
95additionalProperties: false
96
97examples:
98  - |
99    #include <dt-bindings/interrupt-controller/irq.h>
100
101    pdc: interrupt-controller@b220000 {
102        compatible = "qcom,sdm845-pdc", "qcom,pdc";
103        reg = <0xb220000 0x30000>;
104        qcom,pdc-ranges = <0 512 94>, <94 641 15>, <115 662 7>;
105        #interrupt-cells = <2>;
106        interrupt-parent = <&intc>;
107        interrupt-controller;
108    };
109
110    wake-device {
111        interrupts-extended = <&pdc 2 IRQ_TYPE_LEVEL_HIGH>;
112    };
113