blob: 58ecc62adfaaebe3fb6c7b9c1bce74f538f540da [file] [log] [blame]
Alex Elderfc39c402020-03-05 22:28:16 -06001# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/net/qcom,ipa.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm IP Accelerator (IPA)
8
9maintainers:
10 - Alex Elder <elder@kernel.org>
11
12description:
13 This binding describes the Qualcomm IPA. The IPA is capable of offloading
14 certain network processing tasks (e.g. filtering, routing, and NAT) from
15 the main processor.
16
17 The IPA sits between multiple independent "execution environments,"
18 including the Application Processor (AP) and the modem. The IPA presents
19 a Generic Software Interface (GSI) to each execution environment.
20 The GSI is an integral part of the IPA, but it is logically isolated
21 and has a distinct interrupt and a separately-defined address space.
22
Alex Elder8456c542020-05-04 12:58:56 -050023 See also soc/qcom/qcom,smp2p.txt and interconnect/interconnect.txt. See
24 iommu/iommu.txt and iommu/arm,smmu.yaml for more information about SMMU
25 bindings.
26
Alex Elderfc39c402020-03-05 22:28:16 -060027
28 - |
29 -------- ---------
30 | | | |
31 | AP +<---. .----+ Modem |
32 | +--. | | .->+ |
33 | | | | | | | |
34 -------- | | | | ---------
35 v | v |
36 --+-+---+-+--
37 | GSI |
38 |-----------|
39 | |
40 | IPA |
41 | |
42 -------------
43
44properties:
45 compatible:
Alex Elder15c88e12021-04-13 11:38:25 -050046 enum:
Alex Elder2afd6c82021-06-21 12:56:22 -050047 - qcom,msm8998-ipa
Alex Elder15c88e12021-04-13 11:38:25 -050048 - qcom,sc7180-ipa
49 - qcom,sc7280-ipa
50 - qcom,sdm845-ipa
51 - qcom,sdx55-ipa
52 - qcom,sm8350-ipa
Alex Elderfc39c402020-03-05 22:28:16 -060053
54 reg:
55 items:
56 - description: IPA registers
57 - description: IPA shared memory
58 - description: GSI registers
59
60 reg-names:
61 items:
62 - const: ipa-reg
63 - const: ipa-shared
64 - const: gsi
65
Alex Elder8456c542020-05-04 12:58:56 -050066 iommus:
David Heidelberg950d5662021-10-26 18:32:40 +020067 minItems: 1
68 maxItems: 2
Alex Elder8456c542020-05-04 12:58:56 -050069
Alex Elderfc39c402020-03-05 22:28:16 -060070 clocks:
71 maxItems: 1
72
73 clock-names:
Rob Herringf516fb72020-04-20 21:24:47 -050074 const: core
Alex Elderfc39c402020-03-05 22:28:16 -060075
76 interrupts:
77 items:
78 - description: IPA interrupt (hardware IRQ)
79 - description: GSI interrupt (hardware IRQ)
80 - description: Modem clock query interrupt (smp2p interrupt)
81 - description: Modem setup ready interrupt (smp2p interrupt)
82
83 interrupt-names:
84 items:
85 - const: ipa
86 - const: gsi
87 - const: ipa-clock-query
88 - const: ipa-setup-ready
89
90 interconnects:
Alex Elderb769cf42021-08-11 09:18:02 -050091 oneOf:
92 - items:
93 - description: Path leading to system memory
94 - description: Path between the AP and IPA config space
95 - items:
96 - description: Path leading to system memory
97 - description: Path leading to internal memory
98 - description: Path between the AP and IPA config space
Alex Elderfc39c402020-03-05 22:28:16 -060099
100 interconnect-names:
Alex Elderb769cf42021-08-11 09:18:02 -0500101 oneOf:
102 - items:
103 - const: memory
104 - const: config
105 - items:
106 - const: memory
107 - const: imem
108 - const: config
Alex Elderfc39c402020-03-05 22:28:16 -0600109
Alex Elderac62a012022-02-01 09:02:04 -0600110 qcom,qmp:
111 $ref: /schemas/types.yaml#/definitions/phandle
112 description: phandle to the AOSS side-channel message RAM
113
Alex Elderfc39c402020-03-05 22:28:16 -0600114 qcom,smem-states:
Rob Herring3d21a462020-04-15 19:55:49 -0500115 $ref: /schemas/types.yaml#/definitions/phandle-array
Alex Elderfc39c402020-03-05 22:28:16 -0600116 description: State bits used in by the AP to signal the modem.
117 items:
Rob Herringf516fb72020-04-20 21:24:47 -0500118 - description: Whether the "ipa-clock-enabled" state bit is valid
119 - description: Whether the IPA clock is enabled (if valid)
Alex Elderfc39c402020-03-05 22:28:16 -0600120
121 qcom,smem-state-names:
Alex Elderfc39c402020-03-05 22:28:16 -0600122 description: The names of the state bits used for SMP2P output
123 items:
124 - const: ipa-clock-enabled-valid
125 - const: ipa-clock-enabled
126
127 modem-init:
128 type: boolean
129 description:
130 If present, it indicates that the modem is responsible for
131 performing early IPA initialization, including loading and
132 validating firwmare used by the GSI.
133
Alex Elderfc39c402020-03-05 22:28:16 -0600134 memory-region:
Alex Elderfc39c402020-03-05 22:28:16 -0600135 maxItems: 1
136 description:
137 If present, a phandle for a reserved memory area that holds
138 the firmware passed to Trust Zone for authentication. Required
139 when Trust Zone (not the modem) performs early initialization.
140
Alex Elderd8604b22021-04-16 08:08:49 -0500141 firmware-name:
142 $ref: /schemas/types.yaml#/definitions/string
143 description:
144 If present, name (or relative path) of the file within the
145 firmware search path containing the firmware image used when
146 initializing IPA hardware. Optional, and only used when
147 Trust Zone performs early initialization.
148
Alex Elderfc39c402020-03-05 22:28:16 -0600149required:
150 - compatible
Alex Elder8456c542020-05-04 12:58:56 -0500151 - iommus
Alex Elderfc39c402020-03-05 22:28:16 -0600152 - reg
153 - clocks
154 - interrupts
155 - interconnects
156 - qcom,smem-states
Alex Elderfc39c402020-03-05 22:28:16 -0600157
Alex Elderd8604b22021-04-16 08:08:49 -0500158# Either modem-init is present, or memory-region must be present.
Alex Elderfc39c402020-03-05 22:28:16 -0600159oneOf:
160 - required:
Rob Herringf516fb72020-04-20 21:24:47 -0500161 - modem-init
Alex Elderfc39c402020-03-05 22:28:16 -0600162 - required:
Rob Herringf516fb72020-04-20 21:24:47 -0500163 - memory-region
Alex Elderfc39c402020-03-05 22:28:16 -0600164
Alex Elderd8604b22021-04-16 08:08:49 -0500165# If memory-region is present, firmware-name may optionally be present.
166# But if modem-init is present, firmware-name must not be present.
167if:
168 required:
169 - modem-init
170then:
171 not:
172 required:
173 - firmware-name
174
Rob Herring5be478f2020-10-02 18:41:43 -0500175additionalProperties: false
176
Alex Elderfc39c402020-03-05 22:28:16 -0600177examples:
178 - |
Alex Elder27bb36e2021-01-20 15:26:04 -0600179 #include <dt-bindings/interrupt-controller/arm-gic.h>
Alex Eldere6e0f092020-03-11 16:47:00 -0500180 #include <dt-bindings/clock/qcom,rpmh.h>
181 #include <dt-bindings/interconnect/qcom,sdm845.h>
182
Alex Elderfc39c402020-03-05 22:28:16 -0600183 smp2p-mpss {
184 compatible = "qcom,smp2p";
185 ipa_smp2p_out: ipa-ap-to-modem {
186 qcom,entry-name = "ipa";
187 #qcom,smem-state-cells = <1>;
188 };
189
190 ipa_smp2p_in: ipa-modem-to-ap {
191 qcom,entry-name = "ipa";
192 interrupt-controller;
193 #interrupt-cells = <2>;
194 };
195 };
196 ipa@1e40000 {
197 compatible = "qcom,sdm845-ipa";
198
199 modem-init;
Alex Elderfc39c402020-03-05 22:28:16 -0600200
Alex Elder8456c542020-05-04 12:58:56 -0500201 iommus = <&apps_smmu 0x720 0x3>;
Rob Herringfba56182020-05-12 15:45:43 -0500202 reg = <0x1e40000 0x7000>,
203 <0x1e47000 0x2000>,
204 <0x1e04000 0x2c000>;
Alex Elderfc39c402020-03-05 22:28:16 -0600205 reg-names = "ipa-reg",
Alex Eldere6e0f092020-03-11 16:47:00 -0500206 "ipa-shared",
207 "gsi";
Alex Elderfc39c402020-03-05 22:28:16 -0600208
Alex Elder27bb36e2021-01-20 15:26:04 -0600209 interrupts-extended = <&intc GIC_SPI 311 IRQ_TYPE_EDGE_RISING>,
210 <&intc GIC_SPI 432 IRQ_TYPE_LEVEL_HIGH>,
Alex Eldere6e0f092020-03-11 16:47:00 -0500211 <&ipa_smp2p_in 0 IRQ_TYPE_EDGE_RISING>,
212 <&ipa_smp2p_in 1 IRQ_TYPE_EDGE_RISING>;
Alex Elderfc39c402020-03-05 22:28:16 -0600213 interrupt-names = "ipa",
Alex Eldere6e0f092020-03-11 16:47:00 -0500214 "gsi",
215 "ipa-clock-query",
216 "ipa-setup-ready";
Alex Elderfc39c402020-03-05 22:28:16 -0600217
218 clocks = <&rpmhcc RPMH_IPA_CLK>;
219 clock-names = "core";
220
221 interconnects =
222 <&rsc_hlos MASTER_IPA &rsc_hlos SLAVE_EBI1>,
Alex Eldera0221a02021-08-02 18:30:19 -0500223 <&rsc_hlos MASTER_IPA &rsc_hlos SLAVE_IMEM>,
224 <&rsc_hlos MASTER_APPSS_PROC &rsc_hlos SLAVE_IPA_CFG>;
Alex Elderfc39c402020-03-05 22:28:16 -0600225 interconnect-names = "memory",
Alex Eldera0221a02021-08-02 18:30:19 -0500226 "imem",
227 "config";
Alex Elderfc39c402020-03-05 22:28:16 -0600228
Alex Elderac62a012022-02-01 09:02:04 -0600229 qcom,qmp = <&aoss_qmp>;
230
Alex Elderfc39c402020-03-05 22:28:16 -0600231 qcom,smem-states = <&ipa_smp2p_out 0>,
Alex Eldere6e0f092020-03-11 16:47:00 -0500232 <&ipa_smp2p_out 1>;
Alex Elderfc39c402020-03-05 22:28:16 -0600233 qcom,smem-state-names = "ipa-clock-enabled-valid",
234 "ipa-clock-enabled";
235 };