From: George Chan via B4 Relay <devnull+gchan9527.gmail.com@kernel.org>
To: Robert Foss <rfoss@kernel.org>, Todor Tomov <todor.too@gmail.com>,
Bryan O'Donoghue <bryan.odonoghue@linaro.org>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
cros-qcom-dts-watchers@chromium.org,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konrad.dybcio@linaro.org>
Cc: linux-media@vger.kernel.org, linux-arm-msm@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
George Chan <gchan9527@gmail.com>
Subject: [PATCH RFT v3 0/5] Add sc7180 camss subsys support
Date: Mon, 24 Jun 2024 20:13:11 +0800 [thread overview]
Message-ID: <20240624-b4-sc7180-camss-v3-0-89ece6471431@gmail.com> (raw)
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>
next reply other threads:[~2024-06-24 12:13 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-24 12:13 George Chan via B4 Relay [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240624-b4-sc7180-camss-v3-0-89ece6471431@gmail.com \
--to=devnull+gchan9527.gmail.com@kernel.org \
--cc=andersson@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=conor+dt@kernel.org \
--cc=cros-qcom-dts-watchers@chromium.org \
--cc=devicetree@vger.kernel.org \
--cc=gchan9527@gmail.com \
--cc=konrad.dybcio@linaro.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=rfoss@kernel.org \
--cc=robh@kernel.org \
--cc=todor.too@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).