public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] Add DSI display support for SA8775P target
@ 2025-02-25 12:18 Ayushi Makhija
  2025-02-25 12:18 ` [PATCH 01/11] dt-bindings: display: msm-dsi-phy-7nm: document the SA8775P DSI PHY Ayushi Makhija
                   ` (11 more replies)
  0 siblings, 12 replies; 32+ messages in thread
From: Ayushi Makhija @ 2025-02-25 12:18 UTC (permalink / raw)
  To: linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel
  Cc: Ayushi Makhija, robdclark, dmitry.baryshkov, sean, marijn.suijten,
	andersson, robh, robh+dt, krzk+dt, konradybcio, conor+dt,
	andrzej.hajda, neil.armstrong, rfoss, Laurent.pinchart, jonas,
	jernej.skrabec, quic_abhinavk, quic_rajeevny, quic_vproddut,
	quic_jesszhan

This series enables the support for DSI to DP bridge ports
(labled as DSI0 and DSI1) of the Qualcomm's SA8775P Ride platform.

SA8775P SoC has DSI controller v2.5.1 and DSI PHY v4.2.
The Ride platform is having ANX7625 DSI to DP bridge chip from Analogix.

Ayushi Makhija (11):
  dt-bindings: display: msm-dsi-phy-7nm: document the SA8775P DSI PHY
  dt-bindings: msm: dsi-controller-main: document the SA8775P DSI CTRL
  dt-bindings: display: msm: document DSI controller and phy on SA8775P
  drm/msm/dsi: add DSI PHY configuration on SA8775P
  drm/msm/dsi: add DSI support for SA8775P
  arm64: dts: qcom: sa8775p: add Display Serial Interface device nodes
  arm64: dts: qcom: sa8775p-ride: add anx7625 DSI to DP bridge nodes
  arm64: dts: qcom: sa8775p-ride: enable Display serial interface
  drm/bridge: anx7625: enable HPD interrupts
  drm/bridge: anx7625: update bridge_ops and sink detect logic
  drm/bridge: anx7625: change the gpiod_set_value API

 .../display/msm/dsi-controller-main.yaml      |   1 +
 .../bindings/display/msm/dsi-phy-7nm.yaml     |   1 +
 .../display/msm/qcom,sa8775p-mdss.yaml        | 170 +++++++++++++++
 arch/arm64/boot/dts/qcom/sa8775p-ride.dtsi    | 198 +++++++++++++++++-
 arch/arm64/boot/dts/qcom/sa8775p.dtsi         | 183 +++++++++++++++-
 drivers/gpu/drm/bridge/analogix/anx7625.c     |  24 ++-
 drivers/gpu/drm/msm/dsi/dsi_cfg.c             |  18 ++
 drivers/gpu/drm/msm/dsi/dsi_cfg.h             |   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     |  27 +++
 11 files changed, 614 insertions(+), 12 deletions(-)

-- 
2.34.1


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

end of thread, other threads:[~2025-03-04 10:14 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-25 12:18 [PATCH 00/11] Add DSI display support for SA8775P target Ayushi Makhija
2025-02-25 12:18 ` [PATCH 01/11] dt-bindings: display: msm-dsi-phy-7nm: document the SA8775P DSI PHY Ayushi Makhija
2025-02-25 12:18 ` [PATCH 02/11] dt-bindings: msm: dsi-controller-main: document the SA8775P DSI CTRL Ayushi Makhija
2025-02-25 12:18 ` [PATCH 03/11] dt-bindings: display: msm: document DSI controller and phy on SA8775P Ayushi Makhija
2025-02-25 14:24   ` Rob Herring (Arm)
2025-02-25 12:18 ` [PATCH 04/11] drm/msm/dsi: add DSI PHY configuration " Ayushi Makhija
2025-02-25 17:14   ` Dmitry Baryshkov
2025-02-25 12:18 ` [PATCH 05/11] drm/msm/dsi: add DSI support for SA8775P Ayushi Makhija
2025-02-25 17:18   ` Dmitry Baryshkov
2025-03-04  9:30     ` Ayushi Makhija
2025-02-25 12:18 ` [PATCH 06/11] arm64: dts: qcom: sa8775p: add Display Serial Interface device nodes Ayushi Makhija
2025-02-25 13:09   ` Konrad Dybcio
2025-02-25 12:18 ` [PATCH 07/11] arm64: dts: qcom: sa8775p-ride: add anx7625 DSI to DP bridge nodes Ayushi Makhija
2025-02-25 13:10   ` Konrad Dybcio
2025-02-25 13:31   ` Krzysztof Kozlowski
2025-02-26  8:35     ` Krzysztof Kozlowski
2025-03-04  9:58       ` Ayushi Makhija
2025-02-25 17:41   ` Dmitry Baryshkov
2025-02-25 12:18 ` [PATCH 08/11] arm64: dts: qcom: sa8775p-ride: enable Display serial interface Ayushi Makhija
2025-02-25 13:11   ` Konrad Dybcio
2025-02-25 17:55   ` Dmitry Baryshkov
2025-03-04  9:44     ` Ayushi Makhija
2025-03-04  9:48       ` Dmitry Baryshkov
2025-03-04 10:13         ` Ayushi Makhija
2025-02-25 12:18 ` [PATCH 09/11] drm/bridge: anx7625: enable HPD interrupts Ayushi Makhija
2025-02-25 17:56   ` Dmitry Baryshkov
2025-02-25 12:18 ` [PATCH 10/11] drm/bridge: anx7625: update bridge_ops and sink detect logic Ayushi Makhija
2025-02-25 17:58   ` Dmitry Baryshkov
2025-02-25 20:57     ` Dmitry Baryshkov
2025-02-25 12:18 ` [PATCH 11/11] drm/bridge: anx7625: change the gpiod_set_value API Ayushi Makhija
2025-02-25 18:03   ` Dmitry Baryshkov
2025-02-25 20:12 ` [PATCH 00/11] Add DSI display support for SA8775P target Rob Herring (Arm)

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