devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10] Grab IPA IMEM slice through DT, part 2
@ 2025-05-22 23:18 Konrad Dybcio
  2025-05-22 23:18 ` [PATCH 01/10] dt-bindings: sram: qcom,imem: Add a number of missing compatibles Konrad Dybcio
                   ` (11 more replies)
  0 siblings, 12 replies; 29+ messages in thread
From: Konrad Dybcio @ 2025-05-22 23:18 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, cros-qcom-dts-watchers, Sai Prakash Ranjan
  Cc: Marijn Suijten, linux-arm-msm, devicetree, linux-kernel,
	Konrad Dybcio

The IPA IMEM slice addresses/sizes are hardcoded in the driver. That's
mucho no bueno, especially since the same versions of IPA are used
across a number of vastly different platforms, which invalidates that
approach completely.

This series wires up the IMEM slices in DT on almost all platforms
(need some more time for SDX55/65) and fills in the necessary bindings
holes.

Tested on SC7280 only, FWIW.

Patches 1-3 are good to go instantly, the rest must wait for the
bindings changes that were submitted in the series marked as a
dependency.

Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
Konrad Dybcio (10):
      dt-bindings: sram: qcom,imem: Add a number of missing compatibles
      arm64: dts: qcom: sdm845: Expand IMEM region
      arm64: dts: qcom: sc7180: Expand IMEM region
      arm64: dts: qcom: sc7180: Explicitly describe the IPA IMEM slice
      arm64: dts: qcom: sc7280: Explicitly describe the IPA IMEM slice
      arm64: dts: qcom: sdm845: Explicitly describe the IPA IMEM slice
      arm64: dts: qcom: sm6350: Explicitly describe the IPA IMEM slice
      arm64: dts: qcom: sm8350: Explicitly describe the IPA IMEM slice
      arm64: dts: qcom: sm8550: Explicitly describe the IPA IMEM slice
      arm64: dts: qcom: sm8650: Explicitly describe the IPA IMEM slice

 Documentation/devicetree/bindings/sram/qcom,imem.yaml | 13 +++++++++++++
 arch/arm64/boot/dts/qcom/sc7180.dtsi                  | 16 +++++++++++-----
 arch/arm64/boot/dts/qcom/sc7280.dtsi                  |  6 ++++++
 arch/arm64/boot/dts/qcom/sdm845.dtsi                  | 16 +++++++++++-----
 arch/arm64/boot/dts/qcom/sm6350.dtsi                  | 16 ++++++++++++++++
 arch/arm64/boot/dts/qcom/sm8350.dtsi                  | 16 ++++++++++++++++
 arch/arm64/boot/dts/qcom/sm8550.dtsi                  | 16 ++++++++++++++++
 arch/arm64/boot/dts/qcom/sm8650.dtsi                  | 16 ++++++++++++++++
 8 files changed, 105 insertions(+), 10 deletions(-)
---
base-commit: 6add743d2854d744c3037235b87c1c9d164fd132
change-id: 20250523-topic-ipa_mem_dts-58f5d73a1f21
prerequisite-message-id: <20250523-topic-ipa_imem-v1-0-b5d536291c7f@oss.qualcomm.com>
prerequisite-patch-id: f6aa0c354d434ec11dd88b93528c05cb3a45bb07
prerequisite-patch-id: 89f72ef0c3d3f29753b0cb9e290a4036ba380cc1
prerequisite-patch-id: 330c94ac7c2b42dd86c5f763b133f0d2598fda40

Best regards,
-- 
Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>


^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2025-09-01 16:40 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-22 23:18 [PATCH 00/10] Grab IPA IMEM slice through DT, part 2 Konrad Dybcio
2025-05-22 23:18 ` [PATCH 01/10] dt-bindings: sram: qcom,imem: Add a number of missing compatibles Konrad Dybcio
2025-05-29  9:28   ` Krzysztof Kozlowski
2025-05-22 23:18 ` [PATCH 02/10] arm64: dts: qcom: sdm845: Expand IMEM region Konrad Dybcio
2025-05-23 10:40   ` Dmitry Baryshkov
2025-05-23 18:12     ` Konrad Dybcio
2025-05-23 18:18       ` Dmitry Baryshkov
2025-05-22 23:18 ` [PATCH 03/10] arm64: dts: qcom: sc7180: " Konrad Dybcio
2025-05-23 18:18   ` Dmitry Baryshkov
2025-05-22 23:18 ` [PATCH 04/10] arm64: dts: qcom: sc7180: Explicitly describe the IPA IMEM slice Konrad Dybcio
2025-05-23 17:28   ` Dmitry Baryshkov
2025-09-01 16:40   ` Bjorn Andersson
2025-05-22 23:18 ` [PATCH 05/10] arm64: dts: qcom: sc7280: " Konrad Dybcio
2025-05-23 17:29   ` Dmitry Baryshkov
2025-05-23 17:33   ` Dmitry Baryshkov
2025-05-22 23:18 ` [PATCH 06/10] arm64: dts: qcom: sdm845: " Konrad Dybcio
2025-05-23 17:34   ` Dmitry Baryshkov
2025-05-22 23:18 ` [PATCH 07/10] arm64: dts: qcom: sm6350: " Konrad Dybcio
2025-05-23 17:34   ` Dmitry Baryshkov
2025-05-22 23:18 ` [PATCH 08/10] arm64: dts: qcom: sm8350: " Konrad Dybcio
2025-05-23 17:34   ` Dmitry Baryshkov
2025-05-22 23:18 ` [PATCH 09/10] arm64: dts: qcom: sm8550: " Konrad Dybcio
2025-05-23 17:36   ` Dmitry Baryshkov
2025-06-04  8:00   ` neil.armstrong
2025-05-22 23:18 ` [PATCH 10/10] arm64: dts: qcom: sm8650: " Konrad Dybcio
2025-05-23 17:37   ` Dmitry Baryshkov
2025-06-04  8:00   ` neil.armstrong
2025-05-23  5:51 ` [PATCH 00/10] Grab IPA IMEM slice through DT, part 2 Dmitry Baryshkov
2025-06-18  4:09 ` Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).