[PATCH v3 0/9] MDSS / DPU bringup for Milos

Luca Weiss posted 9 patches 1 month, 1 week ago
.../bindings/display/msm/dsi-controller-main.yaml  |   2 +
.../bindings/display/msm/qcom,milos-mdss.yaml      | 286 +++++++++++++++++++++
.../bindings/display/msm/qcom,sm8650-dpu.yaml      |   1 +
.../devicetree/bindings/phy/qcom,dsi-phy-7nm.yaml  |   1 +
arch/arm64/boot/dts/qcom/milos.dtsi                | 211 ++++++++++++++-
.../gpu/drm/msm/disp/dpu1/catalog/dpu_10_2_milos.h | 279 ++++++++++++++++++++
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c     |  29 +++
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h     |   1 +
drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c            |   1 +
drivers/gpu/drm/msm/dsi/phy/dsi_phy.c              |   2 +
drivers/gpu/drm/msm/dsi/phy/dsi_phy.h              |   1 +
drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c          |  23 ++
drivers/gpu/drm/msm/msm_mdss.c                     |   5 +
drivers/soc/qcom/ubwc_config.c                     |  12 +
14 files changed, 852 insertions(+), 2 deletions(-)
[PATCH v3 0/9] MDSS / DPU bringup for Milos
Posted by Luca Weiss 1 month, 1 week ago
This series adds display support for the Milos SoC.

This is tested on the Fairphone (Gen. 6) using the SM7635 SoC (8bit DSC
cmd mode), and the Nothing Phone (3a) has also been reported to work by
Alexander Koskovich.

The panel driver for Fairphone (Gen. 6) and devicetree enablement will
be sent later.

Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
---
Changes in v3:
- Use "contains" for mdss-dsi-ctrl matching
- Fix dt_binding_check for qcom,milos-mdss.yaml
- Pick up tags
- Link to v2: https://patch.msgid.link/20260327-milos-mdss-v2-0-bc586683f5ca@fairphone.com

Changes in v2:
- Address comments from RFC v1 where it wasn't confirmed working yet
- Pick up some tags
- Add dt-binding patches
- Drop fp6 dts patch, that'll come later
- Link to v1: https://lore.kernel.org/r/20251219-milos-mdss-v1-0-4537a916bdf9@fairphone.com

---
Luca Weiss (9):
      dt-bindings: display: msm-dsi-phy-7nm: document the Milos DSI PHY
      dt-bindings: display: msm-dsi-controller-main: document the Milos DSI Controller
      dt-bindings: display: msm: document the Milos DPU
      dt-bindings: display: msm: document the Milos Mobile Display Subsystem
      soc: qcom: ubwc: Add config for Milos
      drm/msm/dsi: add support for DSI-PHY on Milos
      drm/msm: mdss: Add Milos support
      drm/msm/dpu: Add Milos support
      arm64: dts: qcom: milos: Add display (MDSS)

 .../bindings/display/msm/dsi-controller-main.yaml  |   2 +
 .../bindings/display/msm/qcom,milos-mdss.yaml      | 286 +++++++++++++++++++++
 .../bindings/display/msm/qcom,sm8650-dpu.yaml      |   1 +
 .../devicetree/bindings/phy/qcom,dsi-phy-7nm.yaml  |   1 +
 arch/arm64/boot/dts/qcom/milos.dtsi                | 211 ++++++++++++++-
 .../gpu/drm/msm/disp/dpu1/catalog/dpu_10_2_milos.h | 279 ++++++++++++++++++++
 drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c     |  29 +++
 drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h     |   1 +
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c            |   1 +
 drivers/gpu/drm/msm/dsi/phy/dsi_phy.c              |   2 +
 drivers/gpu/drm/msm/dsi/phy/dsi_phy.h              |   1 +
 drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c          |  23 ++
 drivers/gpu/drm/msm/msm_mdss.c                     |   5 +
 drivers/soc/qcom/ubwc_config.c                     |  12 +
 14 files changed, 852 insertions(+), 2 deletions(-)
---
base-commit: c9bd03db3e792a99e9789fde20e91898e3a29e8a
change-id: 20251219-milos-mdss-fa0763693775

Best regards,
--  
Luca Weiss <luca.weiss@fairphone.com>
Re: [PATCH v3 0/9] MDSS / DPU bringup for Milos
Posted by Dmitry Baryshkov 3 weeks, 2 days ago
On Fri, 01 May 2026 09:14:42 +0200, Luca Weiss wrote:
> This series adds display support for the Milos SoC.
> 
> This is tested on the Fairphone (Gen. 6) using the SM7635 SoC (8bit DSC
> cmd mode), and the Nothing Phone (3a) has also been reported to work by
> Alexander Koskovich.
> 
> The panel driver for Fairphone (Gen. 6) and devicetree enablement will
> be sent later.
> 
> [...]

Applied to msm-next, thanks!

[1/9] dt-bindings: display: msm-dsi-phy-7nm: document the Milos DSI PHY
      https://gitlab.freedesktop.org/lumag/msm/-/commit/6a64e18774bc
[2/9] dt-bindings: display: msm-dsi-controller-main: document the Milos DSI Controller
      https://gitlab.freedesktop.org/lumag/msm/-/commit/fd2ce4931c78
[3/9] dt-bindings: display: msm: document the Milos DPU
      https://gitlab.freedesktop.org/lumag/msm/-/commit/5354032dc203
[4/9] dt-bindings: display: msm: document the Milos Mobile Display Subsystem
      https://gitlab.freedesktop.org/lumag/msm/-/commit/f5d66543884f
[5/9] soc: qcom: ubwc: Add config for Milos
      (no commit info)
[6/9] drm/msm/dsi: add support for DSI-PHY on Milos
      https://gitlab.freedesktop.org/lumag/msm/-/commit/bdb927095689
[7/9] drm/msm: mdss: Add Milos support
      https://gitlab.freedesktop.org/lumag/msm/-/commit/88210726c65e
[8/9] drm/msm/dpu: Add Milos support
      https://gitlab.freedesktop.org/lumag/msm/-/commit/a48fe7aa0a2d
[9/9] arm64: dts: qcom: milos: Add display (MDSS)
      (no commit info)

Best regards,
-- 
With best wishes
Dmitry