Merge tag 'block-5.14-2021-08-07' of git://git.kernel.dk/linux-block
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / soc / qcom / qcom,geni-se.yaml
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: "http://devicetree.org/schemas/soc/qcom/qcom,geni-se.yaml#"
5 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
6
7 title: GENI Serial Engine QUP Wrapper Controller
8
9 maintainers:
10   - Mukesh Savaliya <msavaliy@codeaurora.org>
11   - Akash Asthana <akashast@codeaurora.org>
12
13 description: |
14  Generic Interface (GENI) based Qualcomm Universal Peripheral (QUP) wrapper
15  is a programmable module for supporting a wide range of serial interfaces
16  like UART, SPI, I2C, I3C, etc. A single QUP module can provide upto 8 Serial
17  Interfaces, using its internal Serial Engines. The GENI Serial Engine QUP
18  Wrapper controller is modeled as a node with zero or more child nodes each
19  representing a serial engine.
20
21 properties:
22   compatible:
23     enum:
24       - qcom,geni-se-qup
25
26   reg:
27     description: QUP wrapper common register address and length.
28     maxItems: 1
29
30   clock-names:
31     items:
32       - const: m-ahb
33       - const: s-ahb
34
35   clocks:
36     items:
37       - description: Master AHB Clock
38       - description: Slave AHB Clock
39
40   "#address-cells":
41     const: 2
42
43   "#size-cells":
44     const: 2
45
46   ranges: true
47
48   interconnects:
49     maxItems: 1
50
51   interconnect-names:
52     const: qup-core
53
54 required:
55   - compatible
56   - reg
57   - clock-names
58   - clocks
59   - "#address-cells"
60   - "#size-cells"
61   - ranges
62
63 patternProperties:
64   "^.*@[0-9a-f]+$":
65     type: object
66     description: Common properties for GENI Serial Engine based I2C, SPI and
67                  UART controller.
68
69     properties:
70       reg:
71         description: GENI Serial Engine register address and length.
72         maxItems: 1
73
74       clock-names:
75         const: se
76
77       clocks:
78         description: Serial engine core clock needed by the device.
79         maxItems: 1
80
81       interconnects:
82         minItems: 2
83         maxItems: 3
84
85       interconnect-names:
86         minItems: 2
87         items:
88           - const: qup-core
89           - const: qup-config
90           - const: qup-memory
91
92     required:
93       - reg
94       - clock-names
95       - clocks
96
97   "spi@[0-9a-f]+$":
98     type: object
99     description: GENI serial engine based SPI controller. SPI in master mode
100                  supports up to 50MHz, up to four chip selects, programmable
101                  data path from 4 bits to 32 bits and numerous protocol
102                  variants.
103     $ref: /spi/spi-controller.yaml#
104
105     properties:
106       compatible:
107         enum:
108           - qcom,geni-spi
109
110       interrupts:
111         maxItems: 1
112
113       "#address-cells":
114         const: 1
115
116       "#size-cells":
117         const: 0
118
119     required:
120       - compatible
121       - interrupts
122       - "#address-cells"
123       - "#size-cells"
124
125   "i2c@[0-9a-f]+$":
126     type: object
127     description: GENI serial engine based I2C controller.
128     $ref: /schemas/i2c/i2c-controller.yaml#
129
130     properties:
131       compatible:
132         enum:
133           - qcom,geni-i2c
134
135       interrupts:
136         maxItems: 1
137
138       "#address-cells":
139         const: 1
140
141       "#size-cells":
142         const: 0
143
144       clock-frequency:
145         description: Desired I2C bus clock frequency in Hz.
146         default: 100000
147
148     required:
149       - compatible
150       - interrupts
151       - "#address-cells"
152       - "#size-cells"
153
154   "serial@[0-9a-f]+$":
155     type: object
156     description: GENI Serial Engine based UART Controller.
157     $ref: /schemas/serial.yaml#
158
159     properties:
160       compatible:
161         enum:
162           - qcom,geni-uart
163           - qcom,geni-debug-uart
164
165       interrupts:
166         minItems: 1
167         items:
168           - description: UART core irq
169           - description: Wakeup irq (RX GPIO)
170
171     required:
172       - compatible
173       - interrupts
174
175 additionalProperties: false
176
177 examples:
178   - |
179     #include <dt-bindings/clock/qcom,gcc-sdm845.h>
180     #include <dt-bindings/interrupt-controller/arm-gic.h>
181
182     soc {
183         #address-cells = <2>;
184         #size-cells = <2>;
185
186         geniqup@8c0000 {
187             compatible = "qcom,geni-se-qup";
188             reg = <0 0x008c0000 0 0x6000>;
189             clock-names = "m-ahb", "s-ahb";
190             clocks = <&gcc GCC_QUPV3_WRAP_0_M_AHB_CLK>,
191                 <&gcc GCC_QUPV3_WRAP_0_S_AHB_CLK>;
192             #address-cells = <2>;
193             #size-cells = <2>;
194             ranges;
195
196             i2c0: i2c@a94000 {
197                 compatible = "qcom,geni-i2c";
198                 reg = <0 0xa94000 0 0x4000>;
199                 interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>;
200                 clock-names = "se";
201                 clocks = <&gcc GCC_QUPV3_WRAP0_S5_CLK>;
202                 pinctrl-names = "default", "sleep";
203                 pinctrl-0 = <&qup_1_i2c_5_active>;
204                 pinctrl-1 = <&qup_1_i2c_5_sleep>;
205                 #address-cells = <1>;
206                 #size-cells = <0>;
207             };
208
209             uart0: serial@a88000 {
210                 compatible = "qcom,geni-uart";
211                 reg = <0 0xa88000 0 0x7000>;
212                 interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>;
213                 clock-names = "se";
214                 clocks = <&gcc GCC_QUPV3_WRAP0_S0_CLK>;
215                 pinctrl-names = "default", "sleep";
216                 pinctrl-0 = <&qup_1_uart_3_active>;
217                 pinctrl-1 = <&qup_1_uart_3_sleep>;
218             };
219         };
220     };
221
222 ...