linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/12] SM63(50|75) DPU support
@ 2023-05-05 21:40 Konrad Dybcio
  2023-05-05 21:40 ` [PATCH v3 01/12] dt-bindings: display/msm: dsi-controller-main: Add SM6350 Konrad Dybcio
                   ` (11 more replies)
  0 siblings, 12 replies; 26+ messages in thread
From: Konrad Dybcio @ 2023-05-05 21:40 UTC (permalink / raw)
  To: Rob Clark, Abhinav Kumar, Dmitry Baryshkov, Sean Paul,
	David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski,
	Krishna Manikandan, Will Deacon, Robin Murphy, Joerg Roedel
  Cc: Marijn Suijten, linux-arm-msm, dri-devel, freedreno, devicetree,
	linux-kernel, linux-arm-kernel, iommu, Konrad Dybcio,
	Rob Herring, Konrad Dybcio

v2 -> v3:
- Don't duplicate qcm2290_lm_sblk
- Use DEFAULT_DPU_LINE_WIDTH defines
- Fix up sspp clk assignments for sm6350
- Add 6350-6375-common QoS data straight to the common file
  instead of moving it around after adding it
- Fix up iommu compatible order before adding new entries
- Reuse sm6350 msm_mdss_data for sm6375
- INTF_SC7180_MASK -> INTF_SC7280_MASK (enable HCTL) on 6375
- use double tabs in catalog headers
- remove one unused entry in 6350 dpu_qos_lut_entry
- add missing tear IRQs, drop INTF0 irq on 6375
- don't overduplicate DPU bindings, reuse 7180
- Pick up tags
- Rebase on INTF_TE v4 and next-20230504

Depends on:
- https://lore.kernel.org/linux-arm-msm/20230411-dpu-intf-te-v4-0-27ce1a5ab5c6@somainline.org/

v2: https://lore.kernel.org/r/20230411-topic-straitlagoon_mdss-v2-0-5def73f50980@linaro.org

v1 -> v2:
- Rebase on the DPU catalog rework and INTF_TE
- Fix QSEED(3L/4) discrepancies
- Fixed DMA/cursor discrepancies for 6350
- No deduplication, that's gonna be handled in catalogrework 2:
  "the return of the catalogrework"
- Split MDSS & DPU binding additions
- Drop "Allow variable SSPP/INTF_BLK size", that got in w/ the rework
- Split MDSS and DPU additions
- Pick up Rob's acks

Depends on (and based on): https://lore.kernel.org/linux-arm-msm/20230411-dpu-intf-te-v2-0-ef76c877eb97@somainline.org/T/#t

v1: https://lore.kernel.org/linux-arm-msm/20230211122656.1479141-1-konrad.dybcio@linaro.org/

Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
Konrad Dybcio (12):
      dt-bindings: display/msm: dsi-controller-main: Add SM6350
      dt-bindings: display/msm: dsi-controller-main: Add SM6375
      dt-bindings: display/msm: sc7180-dpu: Describe SM6350 and SM6375
      dt-bindings: display/msm: Add SM6350 MDSS
      dt-bindings: display/msm: Add SM6375 MDSS
      drm/msm/dpu: Add SM6350 support
      drm/msm: mdss: Add SM6350 support
      drm/msm/dpu: Add SM6375 support
      drm/msm: mdss: Add SM6375 support
      iommu/arm-smmu-qcom: Sort the compatible list alphabetically
      iommu/arm-smmu-qcom: Add SM6375 DPU compatible
      iommu/arm-smmu-qcom: Add SM6350 DPU compatible

 .../bindings/display/msm/dsi-controller-main.yaml  |   4 +
 .../bindings/display/msm/qcom,sc7180-dpu.yaml      |  23 ++-
 .../bindings/display/msm/qcom,sm6350-mdss.yaml     | 214 ++++++++++++++++++++
 .../bindings/display/msm/qcom,sm6375-mdss.yaml     | 216 +++++++++++++++++++++
 .../gpu/drm/msm/disp/dpu1/catalog/dpu_6_4_sm6350.h | 187 ++++++++++++++++++
 .../gpu/drm/msm/disp/dpu1/catalog/dpu_6_9_sm6375.h | 152 +++++++++++++++
 drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c     |   6 +
 drivers/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                     |  10 +
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c         |   6 +-
 11 files changed, 821 insertions(+), 3 deletions(-)
---
base-commit: 0d71ecbdb3913e04dcf7f4de0929970cfb4376cb
change-id: 20230411-topic-straitlagoon_mdss-8f34cacd5e26

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


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

end of thread, other threads:[~2023-05-18 21:22 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-05 21:40 [PATCH v3 00/12] SM63(50|75) DPU support Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 01/12] dt-bindings: display/msm: dsi-controller-main: Add SM6350 Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 02/12] dt-bindings: display/msm: dsi-controller-main: Add SM6375 Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 03/12] dt-bindings: display/msm: sc7180-dpu: Describe SM6350 and SM6375 Konrad Dybcio
2023-05-07  8:14   ` Krzysztof Kozlowski
2023-05-08  8:38     ` Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 04/12] dt-bindings: display/msm: Add SM6350 MDSS Konrad Dybcio
2023-05-05 22:34   ` Rob Herring
2023-05-07  8:19   ` Krzysztof Kozlowski
2023-05-08  8:39     ` Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 05/12] dt-bindings: display/msm: Add SM6375 MDSS Konrad Dybcio
2023-05-05 22:34   ` Rob Herring
2023-05-07  8:20   ` Krzysztof Kozlowski
2023-05-16  1:26     ` Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 06/12] drm/msm/dpu: Add SM6350 support Konrad Dybcio
2023-05-18 21:06   ` Marijn Suijten
2023-05-18 21:21     ` Dmitry Baryshkov
2023-05-05 21:40 ` [PATCH v3 07/12] drm/msm: mdss: " Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 08/12] drm/msm/dpu: Add SM6375 support Konrad Dybcio
2023-05-07 20:02   ` Dmitry Baryshkov
2023-05-08  8:43     ` Konrad Dybcio
2023-05-08 10:19       ` Dmitry Baryshkov
2023-05-05 21:40 ` [PATCH v3 09/12] drm/msm: mdss: " Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 10/12] iommu/arm-smmu-qcom: Sort the compatible list alphabetically Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 11/12] iommu/arm-smmu-qcom: Add SM6375 DPU compatible Konrad Dybcio
2023-05-05 21:40 ` [PATCH v3 12/12] iommu/arm-smmu-qcom: Add SM6350 " Konrad Dybcio

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