Commit 27bb36ed authored by Alex Elder's avatar Alex Elder Committed by Jakub Kicinski

dt-bindings: net: remove modem-remoteproc property

The IPA driver uses the remoteproc SSR notifier now, rather than the
temporary IPA notification system used initially.  As a result it no
longer needs a property identifying the modem subsystem DT node.

Use GIC_SPI rather than 0 in the example interrupt definition.
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 86fdf1fc
...@@ -113,13 +113,6 @@ properties: ...@@ -113,13 +113,6 @@ properties:
performing early IPA initialization, including loading and performing early IPA initialization, including loading and
validating firwmare used by the GSI. validating firwmare used by the GSI.
modem-remoteproc:
$ref: /schemas/types.yaml#/definitions/phandle
description:
This defines the phandle to the remoteproc node representing
the modem subsystem. This is requied so the IPA driver can
receive and act on notifications of modem up/down events.
memory-region: memory-region:
maxItems: 1 maxItems: 1
description: description:
...@@ -135,7 +128,6 @@ required: ...@@ -135,7 +128,6 @@ required:
- interrupts - interrupts
- interconnects - interconnects
- qcom,smem-states - qcom,smem-states
- modem-remoteproc
oneOf: oneOf:
- required: - required:
...@@ -147,7 +139,7 @@ additionalProperties: false ...@@ -147,7 +139,7 @@ additionalProperties: false
examples: examples:
- | - |
#include <dt-bindings/interrupt-controller/irq.h> #include <dt-bindings/interrupt-controller/arm-gic.h>
#include <dt-bindings/clock/qcom,rpmh.h> #include <dt-bindings/clock/qcom,rpmh.h>
#include <dt-bindings/interconnect/qcom,sdm845.h> #include <dt-bindings/interconnect/qcom,sdm845.h>
...@@ -168,7 +160,6 @@ examples: ...@@ -168,7 +160,6 @@ examples:
compatible = "qcom,sdm845-ipa"; compatible = "qcom,sdm845-ipa";
modem-init; modem-init;
modem-remoteproc = <&mss_pil>;
iommus = <&apps_smmu 0x720 0x3>; iommus = <&apps_smmu 0x720 0x3>;
reg = <0x1e40000 0x7000>, reg = <0x1e40000 0x7000>,
...@@ -178,8 +169,8 @@ examples: ...@@ -178,8 +169,8 @@ examples:
"ipa-shared", "ipa-shared",
"gsi"; "gsi";
interrupts-extended = <&intc 0 311 IRQ_TYPE_EDGE_RISING>, interrupts-extended = <&intc GIC_SPI 311 IRQ_TYPE_EDGE_RISING>,
<&intc 0 432 IRQ_TYPE_LEVEL_HIGH>, <&intc GIC_SPI 432 IRQ_TYPE_LEVEL_HIGH>,
<&ipa_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, <&ipa_smp2p_in 0 IRQ_TYPE_EDGE_RISING>,
<&ipa_smp2p_in 1 IRQ_TYPE_EDGE_RISING>; <&ipa_smp2p_in 1 IRQ_TYPE_EDGE_RISING>;
interrupt-names = "ipa", interrupt-names = "ipa",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment