280 lines · yaml
1# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause2%YAML 1.23---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 offloading14 certain network processing tasks (e.g. filtering, routing, and NAT) from15 the main processor.16 17 The IPA sits between multiple independent "execution environments,"18 including the Application Processor (AP) and the modem. The IPA presents19 a Generic Software Interface (GSI) to each execution environment.20 The GSI is an integral part of the IPA, but it is logically isolated21 and has a distinct interrupt and a separately-defined address space.22 23 See also soc/qcom/qcom,smp2p.txt and interconnect/interconnect.txt. See24 iommu/iommu.txt and iommu/arm,smmu.yaml for more information about SMMU25 bindings.26 27 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:46 oneOf:47 - enum:48 - qcom,msm8998-ipa49 - qcom,sc7180-ipa50 - qcom,sc7280-ipa51 - qcom,sdm845-ipa52 - qcom,sdx55-ipa53 - qcom,sdx65-ipa54 - qcom,sm6350-ipa55 - qcom,sm8350-ipa56 - qcom,sm8550-ipa57 - items:58 - enum:59 - qcom,sm8650-ipa60 - const: qcom,sm8550-ipa61 62 reg:63 items:64 - description: IPA registers65 - description: IPA shared memory66 - description: GSI registers67 68 reg-names:69 items:70 - const: ipa-reg71 - const: ipa-shared72 - const: gsi73 74 iommus:75 minItems: 176 maxItems: 277 78 clocks:79 maxItems: 180 81 clock-names:82 const: core83 84 interrupts:85 items:86 - description: IPA interrupt (hardware IRQ)87 - description: GSI interrupt (hardware IRQ)88 - description: Modem clock query interrupt (smp2p interrupt)89 - description: Modem setup ready interrupt (smp2p interrupt)90 91 interrupt-names:92 items:93 - const: ipa94 - const: gsi95 - const: ipa-clock-query96 - const: ipa-setup-ready97 98 interconnects:99 oneOf:100 - items:101 - description: Path leading to system memory102 - description: Path between the AP and IPA config space103 - items:104 - description: Path leading to system memory105 - description: Path leading to internal memory106 - description: Path between the AP and IPA config space107 108 interconnect-names:109 oneOf:110 - items:111 - const: memory112 - const: config113 - items:114 - const: memory115 - const: imem116 - const: config117 118 qcom,qmp:119 $ref: /schemas/types.yaml#/definitions/phandle120 description: phandle to the AOSS side-channel message RAM121 122 qcom,smem-states:123 $ref: /schemas/types.yaml#/definitions/phandle-array124 description: State bits used in by the AP to signal the modem.125 items:126 - description: Whether the "ipa-clock-enabled" state bit is valid127 - description: Whether the IPA clock is enabled (if valid)128 129 qcom,smem-state-names:130 description: The names of the state bits used for SMP2P output131 items:132 - const: ipa-clock-enabled-valid133 - const: ipa-clock-enabled134 135 qcom,gsi-loader:136 enum:137 - self138 - modem139 - skip140 description:141 Indicates how GSI firmware should be loaded. If the AP loads142 and validates GSI firmware, this property has value "self".143 If the modem does this, this property has value "modem".144 Otherwise, "skip" means GSI firmware loading is not required.145 146 modem-init:147 deprecated: true148 type: boolean149 description:150 This is the older (deprecated) way of indicating how GSI firmware151 should be loaded. If present, the modem loads GSI firmware; if152 absent, the AP loads GSI firmware.153 154 memory-region:155 maxItems: 1156 description:157 If present, a phandle for a reserved memory area that holds158 the firmware passed to Trust Zone for authentication. Required159 when the AP (not the modem) performs early initialization.160 161 firmware-name:162 maxItems: 1163 description:164 If present, name (or relative path) of the file within the165 firmware search path containing the firmware image used when166 initializing IPA hardware. Optional, and only used when167 Trust Zone performs early initialization.168 169required:170 - compatible171 - iommus172 - reg173 - clocks174 - interrupts175 - interconnects176 - qcom,smem-states177 178allOf:179 # If qcom,gsi-loader is present, modem-init must not be present180 - if:181 required:182 - qcom,gsi-loader183 then:184 properties:185 modem-init: false186 187 # If qcom,gsi-loader is "self", the AP loads GSI firmware, and188 # memory-region must be specified189 if:190 properties:191 qcom,gsi-loader:192 contains:193 const: self194 then:195 required:196 - memory-region197 else:198 # If qcom,gsi-loader is not present, we use deprecated behavior.199 # If modem-init is not present, the AP loads GSI firmware, and200 # memory-region must be specified.201 if:202 not:203 required:204 - modem-init205 then:206 required:207 - memory-region208 209additionalProperties: false210 211examples:212 - |213 #include <dt-bindings/interrupt-controller/arm-gic.h>214 #include <dt-bindings/clock/qcom,rpmh.h>215 #include <dt-bindings/interconnect/qcom,sdm845.h>216 217 smp2p-mpss {218 compatible = "qcom,smp2p";219 interrupts = <GIC_SPI 576 IRQ_TYPE_EDGE_RISING>;220 mboxes = <&apss_shared 6>;221 qcom,smem = <94>, <432>;222 qcom,local-pid = <0>;223 qcom,remote-pid = <5>;224 225 ipa_smp2p_out: ipa-ap-to-modem {226 qcom,entry-name = "ipa";227 #qcom,smem-state-cells = <1>;228 };229 230 ipa_smp2p_in: ipa-modem-to-ap {231 qcom,entry-name = "ipa";232 interrupt-controller;233 #interrupt-cells = <2>;234 };235 };236 237 ipa@1e40000 {238 compatible = "qcom,sc7180-ipa";239 240 qcom,gsi-loader = "self";241 memory-region = <&ipa_fw_mem>;242 firmware-name = "qcom/sc7180-trogdor/modem/modem.mdt";243 244 iommus = <&apps_smmu 0x440 0x0>,245 <&apps_smmu 0x442 0x0>;246 reg = <0x1e40000 0x7000>,247 <0x1e47000 0x2000>,248 <0x1e04000 0x2c000>;249 reg-names = "ipa-reg",250 "ipa-shared",251 "gsi";252 253 interrupts-extended = <&intc GIC_SPI 311 IRQ_TYPE_EDGE_RISING>,254 <&intc GIC_SPI 432 IRQ_TYPE_LEVEL_HIGH>,255 <&ipa_smp2p_in 0 IRQ_TYPE_EDGE_RISING>,256 <&ipa_smp2p_in 1 IRQ_TYPE_EDGE_RISING>;257 interrupt-names = "ipa",258 "gsi",259 "ipa-clock-query",260 "ipa-setup-ready";261 262 clocks = <&rpmhcc RPMH_IPA_CLK>;263 clock-names = "core";264 265 interconnects =266 <&aggre2_noc MASTER_IPA 0 &mc_virt SLAVE_EBI1 0>,267 <&aggre2_noc MASTER_IPA 0 &system_noc SLAVE_IMEM 0>,268 <&gem_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_IPA_CFG 0>;269 interconnect-names = "memory",270 "imem",271 "config";272 273 qcom,qmp = <&aoss_qmp>;274 275 qcom,smem-states = <&ipa_smp2p_out 0>,276 <&ipa_smp2p_out 1>;277 qcom,smem-state-names = "ipa-clock-enabled-valid",278 "ipa-clock-enabled";279 };280