devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFT v3 0/5] Add sc7180 camss subsys support
@ 2024-06-24 12:13 George Chan via B4 Relay
  2024-06-24 12:13 ` [PATCH RFT v3 1/5] dt-bindings: media: camss: Add qcom,sc7180-camss George Chan via B4 Relay
                   ` (5 more replies)
  0 siblings, 6 replies; 32+ messages in thread
From: George Chan via B4 Relay @ 2024-06-24 12:13 UTC (permalink / raw)
  To: Robert Foss, Todor Tomov, Bryan O'Donoghue,
	Mauro Carvalho Chehab, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, cros-qcom-dts-watchers, Bjorn Andersson,
	Konrad Dybcio
  Cc: linux-media, linux-arm-msm, devicetree, linux-kernel, George Chan

SM7125 is the SoC found in the Xiaomi Redmi Note 9 Pro(joyeuse) cellphone.
This series adds support to bring up the CSIPHY, CSID, VFE/RDI interfaces.

Since SM7125 is a low-speed variant of SC7180, SC7180 testers please
take a look and have a test as well.

sc7180 provides

- 2 x VFE
- 1 x VFE Lite
- 2 x CSID
- 1 x CSID Lite
- 4 x CSI PHY

The sc7180-camss binding should be comaptible with sdm845 yaml.
I've copied a new yaml from sdm845-camss.yaml, strip all _src clk and
put new maintainer information. If this is not desirable then i can add binding to
existing sdm845 yaml instead.

In addition, a bootable tree of sm7125/joyeuse is availble at:
https://github.com/99degree/linux/tree/camss  

Signed-off-by: George Chan <gchan9527@gmail.com>
---
Changes in v3:
- Rebased on 20240522154659.510-1-quic_grosikop@quicinc.com - Bryan
- Align email title to sc8280xp series - krzk
- Line-up dt-binding example ordering to same as qcom,sm8250-camss.yaml - krzk 
- Drop non-related patches #5 #6 #7, I will send follow-up patches later
- Add RFT tag to all patches, since no tested-by at all.
- Drop required-opps node from dt
- Link to v2: https://lore.kernel.org/r/20240624-b4-sc7180-camss-v2-0-0dfecdc50073@gmail.com

Changes in v2:
- Revised dt-binding title - krzk
- Revised dt-binding maintainers - krzk
- Drop all dt-binding minItems - krzk
- Drops "|" symbol postfixed to description - krzk 
- Accending order of dt-binding required list - krzk
- Added dt-binding item power-domain-name - Bryan
- Reformat dt-binding example - krzk
- Move reg as 2nd property - krzk
- Move reg-names as 3nd property - krzk
- Reduce iommus maxItems to 3 - rob's bot
- Reduce clocks maxItems to 24 - rob's bot
- Combine patch #2 and #3 - krzk and Bryan
- Split eror-print log for clk name from #5 - Konrad
- Reformat dt-node - krzk
- Corrected phy init sequence for v1.2.2 - Bryan
- Added 3 more debug info for missing clk and low clk-rate issue.
- Adding port info to ports sub-node
- Adding required-opps node to dt
- Link to v1: https://lore.kernel.org/r/20240621-b4-sc7180-camss-v1-0-14937929f30e@gmail.com

---
George Chan (5):
      dt-bindings: media: camss: Add qcom,sc7180-camss
      media: camss: csiphy-3ph: Add Gen2 v1.2.2 two-phase MIPI CSI-2 DPHY init
      media: qcom: camss: Add sc7180 support
      media: qcom: camss: Add sc7180 resources
      arm64: dts: qcom: sc7180: camss: Add CAMSS block definition

 .../bindings/media/qcom,sc7180-camss.yaml          | 328 +++++++++++++++++++++
 arch/arm64/boot/dts/qcom/sc7180.dtsi               | 133 +++++++++
 .../platform/qcom/camss/camss-csiphy-3ph-1-0.c     | 135 +++++++++
 drivers/media/platform/qcom/camss/camss-vfe.c      |   2 +
 drivers/media/platform/qcom/camss/camss.c          | 251 ++++++++++++++++
 drivers/media/platform/qcom/camss/camss.h          |   1 +
 6 files changed, 850 insertions(+)
---
base-commit: 28f69d2ea67db489d4a94e7d04c21b14e5aa6535
change-id: 20240621-b4-sc7180-camss-cddc6b60a9b4

Best regards,
-- 
George Chan <gchan9527@gmail.com>



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

end of thread, other threads:[~2024-06-28 19:16 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-24 12:13 [PATCH RFT v3 0/5] Add sc7180 camss subsys support George Chan via B4 Relay
2024-06-24 12:13 ` [PATCH RFT v3 1/5] dt-bindings: media: camss: Add qcom,sc7180-camss George Chan via B4 Relay
2024-06-25 23:32   ` Bryan O'Donoghue
2024-06-26  5:46     ` george chan
2024-06-26  6:11   ` Krzysztof Kozlowski
2024-06-26  6:46     ` george chan
2024-06-26  7:15       ` Krzysztof Kozlowski
2024-06-26  8:17         ` george chan
2024-06-26  8:38           ` george chan
2024-06-26  8:57             ` Krzysztof Kozlowski
2024-06-26  9:04               ` george chan
2024-06-27 15:40                 ` Bryan O'Donoghue
2024-06-28 19:16                   ` george chan
2024-06-26  9:17             ` Dmitry Baryshkov
2024-06-26  8:56           ` Krzysztof Kozlowski
2024-06-24 12:13 ` [PATCH RFT v3 2/5] media: camss: csiphy-3ph: Add Gen2 v1.2.2 two-phase MIPI CSI-2 DPHY init George Chan via B4 Relay
2024-06-25 23:34   ` Bryan O'Donoghue
2024-06-28  9:41   ` Bryan O'Donoghue
2024-06-24 12:13 ` [PATCH RFT v3 3/5] media: qcom: camss: Add sc7180 support George Chan via B4 Relay
2024-06-25 23:34   ` Bryan O'Donoghue
2024-06-24 12:13 ` [PATCH RFT v3 4/5] media: qcom: camss: Add sc7180 resources George Chan via B4 Relay
2024-06-25 23:39   ` Bryan O'Donoghue
2024-06-24 12:13 ` [PATCH RFT v3 5/5] arm64: dts: qcom: sc7180: camss: Add CAMSS block definition George Chan via B4 Relay
2024-06-25 23:49   ` Bryan O'Donoghue
2024-06-25 23:52     ` Bryan O'Donoghue
2024-06-26  5:53       ` george chan
2024-06-26 10:50         ` george chan
2024-06-24 13:50 ` [PATCH RFT v3 0/5] Add sc7180 camss subsys support Bryan O'Donoghue
2024-06-24 15:03   ` george chan
2024-06-25 16:57     ` Konrad Dybcio
2024-06-25 23:45       ` Bryan O'Donoghue
2024-06-26  5:49         ` george chan

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