Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH 00/10] SM63(50|75) DPU support
@ 2023-02-11 12:26 Konrad Dybcio
  2023-02-11 12:26 ` [PATCH 01/10] dt-bindings: display/msm: dsi-controller-main: Add SM6350 Konrad Dybcio
                   ` (9 more replies)
  0 siblings, 10 replies; 37+ messages in thread
From: Konrad Dybcio @ 2023-02-11 12:26 UTC (permalink / raw)
  To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
  Cc: marijn.suijten, Konrad Dybcio

This very very very very long overdue series brings SM63(50|75)
support to the DPU1 driver.

Konrad Dybcio (10):
  dt-bindings: display/msm: dsi-controller-main: Add SM6350
  dt-bindings: display/msm: dsi-controller-main: Add SM6375
  dt-bindings: display/msm: Add SM6350 DPU & MDSS
  dt-bindings: display/msm: Add SM6375 DPU & MDSS
  drm/msm/dpu: Allow variable SSPP/INTF_BLK size
  drm/msm/dpu: Add SM6350 support
  drm/msm/dpu: Add SM6375 support
  iommu/arm-smmu-qcom: Add SM6375 DPU compatible
  iommu/arm-smmu-qcom: Add SM6350 DPU compatible
  iommu/arm-smmu-qcom: Sort the compatible list alphabetically

 .../display/msm/dsi-controller-main.yaml      |   4 +
 .../bindings/display/msm/qcom,sm6350-dpu.yaml |  94 +++
 .../display/msm/qcom,sm6350-mdss.yaml         | 213 +++++++
 .../bindings/display/msm/qcom,sm6375-dpu.yaml | 106 ++++
 .../display/msm/qcom,sm6375-mdss.yaml         | 216 +++++++
 .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c    | 549 ++++++++++++++----
 .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h    |   4 +
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c       |   2 +
 drivers/gpu/drm/msm/msm_mdss.c                |   3 +
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c    |   6 +-
 10 files changed, 1074 insertions(+), 123 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/display/msm/qcom,sm6350-dpu.yaml
 create mode 100644 Documentation/devicetree/bindings/display/msm/qcom,sm6350-mdss.yaml
 create mode 100644 Documentation/devicetree/bindings/display/msm/qcom,sm6375-dpu.yaml
 create mode 100644 Documentation/devicetree/bindings/display/msm/qcom,sm6375-mdss.yaml

-- 
2.39.1


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

end of thread, other threads:[~2023-02-14 23:58 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-11 12:26 [PATCH 00/10] SM63(50|75) DPU support Konrad Dybcio
2023-02-11 12:26 ` [PATCH 01/10] dt-bindings: display/msm: dsi-controller-main: Add SM6350 Konrad Dybcio
2023-02-14 23:57   ` Rob Herring
2023-02-11 12:26 ` [PATCH 02/10] dt-bindings: display/msm: dsi-controller-main: Add SM6375 Konrad Dybcio
2023-02-14 23:57   ` Rob Herring
2023-02-11 12:26 ` [PATCH 03/10] dt-bindings: display/msm: Add SM6350 DPU & MDSS Konrad Dybcio
2023-02-11 16:33   ` Dmitry Baryshkov
2023-02-13 15:09   ` Rob Herring
2023-02-11 12:26 ` [PATCH 04/10] dt-bindings: display/msm: Add SM6375 " Konrad Dybcio
2023-02-13 15:09   ` Rob Herring
2023-02-11 12:26 ` [PATCH 05/10] drm/msm/dpu: Allow variable SSPP/INTF_BLK size Konrad Dybcio
2023-02-11 17:00   ` Dmitry Baryshkov
2023-02-13  9:41     ` Konrad Dybcio
2023-02-13 11:12   ` Marijn Suijten
2023-02-13 11:38     ` Dmitry Baryshkov
2023-02-13 14:31       ` Marijn Suijten
2023-02-13 14:40         ` Dmitry Baryshkov
2023-02-13 15:02           ` Marijn Suijten
2023-02-13 15:05             ` Dmitry Baryshkov
2023-02-11 12:26 ` [PATCH 06/10] drm/msm/dpu: Add SM6350 support Konrad Dybcio
2023-02-11 16:32   ` Dmitry Baryshkov
2023-02-13 11:15     ` Konrad Dybcio
2023-02-13 11:30       ` Marijn Suijten
2023-02-13 11:35         ` Dmitry Baryshkov
2023-02-13 14:28           ` Marijn Suijten
2023-02-13 14:58             ` Dmitry Baryshkov
2023-02-13 15:13               ` Dmitry Baryshkov
2023-02-13 15:14               ` Marijn Suijten
2023-02-13 16:25                 ` Dmitry Baryshkov
2023-02-13 19:14                   ` [Freedreno] " Abhinav Kumar
2023-02-13 20:24                     ` Dmitry Baryshkov
2023-02-11 12:26 ` [PATCH 07/10] drm/msm/dpu: Add SM6375 support Konrad Dybcio
2023-02-11 16:47   ` Dmitry Baryshkov
2023-02-13 11:16     ` Konrad Dybcio
2023-02-11 12:26 ` [PATCH 08/10] iommu/arm-smmu-qcom: Add SM6375 DPU compatible Konrad Dybcio
2023-02-11 12:26 ` [PATCH 09/10] iommu/arm-smmu-qcom: Add SM6350 " Konrad Dybcio
2023-02-11 12:26 ` [PATCH 10/10] iommu/arm-smmu-qcom: Sort the compatible list alphabetically Konrad Dybcio

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox