linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/12] RB1/QCM2290 features
@ 2023-11-27 15:28 Konrad Dybcio
  2023-11-27 15:28 ` [PATCH v2 01/12] dt-bindings: display: msm: qcm2290-mdss: Use the non-deprecated DSI compat Konrad Dybcio
                   ` (11 more replies)
  0 siblings, 12 replies; 20+ messages in thread
From: Konrad Dybcio @ 2023-11-27 15:28 UTC (permalink / raw)
  To: Rob Clark, Abhinav Kumar, Dmitry Baryshkov, Sean Paul,
	David Airlie, Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Loic Poulain, Bryan O'Donoghue, Andy Gross, Bjorn Andersson,
	Krzysztof Kozlowski, Georgi Djakov, Will Deacon, Robin Murphy,
	Joerg Roedel, Krishna Manikandan, Robert Marko, Das Srinagesh,
	cros-qcom-dts-watchers
  Cc: Marijn Suijten, Rob Herring, linux-arm-msm, dri-devel, freedreno,
	devicetree, linux-kernel, linux-pm, linux-arm-kernel, iommu,
	Konrad Dybcio

This series brings:
- interconnect plumbing
- display setup

for QCM2290/QRB2210 and

- CAN bus controller
- HDMI display
- wifi fw variant name

for QTI RB1

and the necessary bindings changes

Patch 1-2 is for Dmitry/freedreno
Patch 3 for Georgi/icc
Patch 5 for Will/iommu
the rest are for Bjorn/qcom

Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
Changes in v2:
- Fix up the bindings example in "qcm2290-mdss: Use the non-deprecated DSI compat" (krzk)
- Fix up sc7180 & sc7280 DTs as a result of the bindings changes
- Pick up rbs where it makes sense
- Link to v1: https://lore.kernel.org/r/20231125-topic-rb1_feat-v1-0-11d71b12b058@linaro.org

---
Dmitry Baryshkov (1):
      arm64: dts: qcom: qrb2210-rb1: add wifi variant property

Konrad Dybcio (11):
      dt-bindings: display: msm: qcm2290-mdss: Use the non-deprecated DSI compat
      dt-bindings: display: msm: Add reg bus and rotator interconnects
      dt-bindings: interconnect: qcom,msm8998-bwmon: Add QCM2290 bwmon instance
      dt-bindings: firmware: qcom,scm: Allow interconnect for everyone
      iommu/arm-smmu-qcom: Add QCM2290 DPU compatible
      arm64: dts: qcom: sc7180: Add the missing MDSS icc path
      arm64: dts: qcom: sc7280: Add the missing MDSS icc path
      arm64: dts: qcom: qcm2290: Add display nodes
      arm64: dts: qcom: qcm2290: Hook up interconnects
      arm64: dts: qcom: qrb2210-rb1: Set up HDMI
      arm64: dts: qcom: qrb2210-rb1: Enable CAN bus controller

 .../bindings/display/msm/mdss-common.yaml          |  18 +-
 .../bindings/display/msm/qcom,qcm2290-mdss.yaml    |  21 +-
 .../bindings/display/msm/qcom,sc7180-mdss.yaml     |  14 +-
 .../bindings/display/msm/qcom,sc7280-mdss.yaml     |  14 +-
 .../bindings/display/msm/qcom,sm6115-mdss.yaml     |  10 +
 .../bindings/display/msm/qcom,sm6125-mdss.yaml     |   8 +-
 .../bindings/display/msm/qcom,sm6350-mdss.yaml     |   8 +-
 .../bindings/display/msm/qcom,sm6375-mdss.yaml     |   8 +-
 .../bindings/display/msm/qcom,sm8450-mdss.yaml     |  13 +-
 .../devicetree/bindings/firmware/qcom,scm.yaml     |  15 -
 .../bindings/interconnect/qcom,msm8998-bwmon.yaml  |   1 +
 arch/arm64/boot/dts/qcom/qcm2290.dtsi              | 462 +++++++++++++++++++++
 arch/arm64/boot/dts/qcom/qrb2210-rb1.dts           | 109 +++++
 arch/arm64/boot/dts/qcom/sc7180.dtsi               |   8 +-
 arch/arm64/boot/dts/qcom/sc7280.dtsi               |   9 +-
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c         |   1 +
 16 files changed, 671 insertions(+), 48 deletions(-)
---
base-commit: 48bbaf8b793e0770798519f8ee1ea2908ff0943a
change-id: 20231125-topic-rb1_feat-dd510532621b

Best regards,
-- 
Konrad Dybcio <konrad.dybcio@linaro.org>


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2023-11-28 13:19 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-27 15:28 [PATCH v2 00/12] RB1/QCM2290 features Konrad Dybcio
2023-11-27 15:28 ` [PATCH v2 01/12] dt-bindings: display: msm: qcm2290-mdss: Use the non-deprecated DSI compat Konrad Dybcio
2023-11-28  8:23   ` Krzysztof Kozlowski
2023-11-27 15:28 ` [PATCH v2 02/12] dt-bindings: display: msm: Add reg bus and rotator interconnects Konrad Dybcio
2023-11-28  8:23   ` Krzysztof Kozlowski
2023-11-27 15:28 ` [PATCH v2 03/12] dt-bindings: interconnect: qcom,msm8998-bwmon: Add QCM2290 bwmon instance Konrad Dybcio
2023-11-27 15:28 ` [PATCH v2 04/12] dt-bindings: firmware: qcom,scm: Allow interconnect for everyone Konrad Dybcio
2023-11-27 15:28 ` [PATCH v2 05/12] iommu/arm-smmu-qcom: Add QCM2290 DPU compatible Konrad Dybcio
2023-11-28 13:18   ` Dmitry Baryshkov
2023-11-27 15:28 ` [PATCH v2 06/12] arm64: dts: qcom: sc7180: Add the missing MDSS icc path Konrad Dybcio
2023-11-27 15:28 ` [PATCH v2 07/12] arm64: dts: qcom: sc7280: " Konrad Dybcio
2023-11-27 15:28 ` [PATCH v2 08/12] arm64: dts: qcom: qcm2290: Add display nodes Konrad Dybcio
2023-11-28 13:17   ` Dmitry Baryshkov
2023-11-27 15:28 ` [PATCH v2 09/12] arm64: dts: qcom: qcm2290: Hook up interconnects Konrad Dybcio
2023-11-28 13:17   ` Dmitry Baryshkov
2023-11-27 15:28 ` [PATCH v2 10/12] arm64: dts: qcom: qrb2210-rb1: Set up HDMI Konrad Dybcio
2023-11-28 13:16   ` Dmitry Baryshkov
2023-11-27 15:28 ` [PATCH v2 11/12] arm64: dts: qcom: qrb2210-rb1: Enable CAN bus controller Konrad Dybcio
2023-11-27 15:28 ` [PATCH v2 12/12] arm64: dts: qcom: qrb2210-rb1: add wifi variant property Konrad Dybcio
2023-11-28 13:15   ` Dmitry Baryshkov

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).