[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240812144131.369378-1-quic_depengs@quicinc.com>
Date: Mon, 12 Aug 2024 20:11:18 +0530
From: Depeng Shao <quic_depengs@...cinc.com>
To: <rfoss@...nel.org>, <todor.too@...il.com>, <bryan.odonoghue@...aro.org>,
<mchehab@...nel.org>, <robh@...nel.org>, <krzk+dt@...nel.org>,
<conor+dt@...nel.org>
CC: <linux-arm-msm@...r.kernel.org>, <linux-media@...r.kernel.org>,
<devicetree@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<kernel@...cinc.com>, <quic_depengs@...cinc.com>
Subject: [PATCH v4 00/13] media: qcom: camss: Add sm8550 support
v4:
- Update dt-bindings based on comments - Krzysztof, bod, Vladimir
- Move common code into csid core and vfe core driver - bod
- Remove *_relaxed in the csid and vfe drivers - Krzysztof
- Reorganize patches in logical junks, make sure that new added
structures have users in current patch - Krzysztof
- Remove notify function and add new functions in camss for buf done
and reg update - bod
- Remove custom code to get csid base - bod
- Remove ISR function in vfe780 driver since it is never fired - bod
- Move csid_top_base to camss structure since we only have one csid
top block, and just need to get base once for csid top
- Add Vladimir's RB
- Remove prerequisite-patch-id in the cover letter since the changes
have been merged
- Add dtsi patch link for reference - Krzysztof
https://lore.kernel.org/all/20240807123333.2056518-1-quic_depengs@quicinc.com/
- Link to v3: https://lore.kernel.org/all/20240709160656.31146-1-quic_depengs@quicinc.com/
v3:
- Rebased the change based on below change which will be merged firstly.
"Move camss version related defs in to resources"
Link: https://lore.kernel.org/all/20240522154659.510-1-quic_grosikop@quicinc.com/
- Rebased the change based on Bryan's csiphy optimization change and add
these changes into this series, so that the new csiphy-3ph driver don't
need to add duplicate code. This has got Bryan's permission to add his
patches into this series.
- Refactor some changes based on the comments to move the random code to
patches where they are used.
- Remove the vfe780 irq function since it isn't doing the actual work.
- Add dt-binding for sm8550 camss driver.
Link to V2: https://lore.kernel.org/all/20240320141136.26827-1-quic_depengs@quicinc.com/
v2:
- Update some commit messages
Link to V1: https://lore.kernel.org/all/20240320134227.16587-1-quic_depengs@quicinc.com/
v1:
SM8550 is a Qualcomm flagship SoC. This series adds support to
bring up the CSIPHY, CSID, VFE/RDI interfaces in SM8550.
SM8550 provides
- 3 x VFE, 3 RDI per VFE
- 2 x VFE Lite, 4 RDI per VFE
- 3 x CSID
- 2 x CSID Lite
- 8 x CSI PHY
---
Bryan O'Donoghue (6):
media: qcom: camss: csiphy-3ph: Fix trivial indentation fault in
defines
media: qcom: camss: csiphy-3ph: Remove redundant PHY init sequence
control loop
media: qcom: camss: csiphy-3ph: Rename struct
media: qcom: camss: csiphy: Add an init callback to CSI PHY devices
media: qcom: camss: csiphy-3ph: Move CSIPHY variables to data field
inside csiphy struct
media: qcom: camss: csiphy-3ph: Use an offset variable to find common
control regs
Depeng Shao (7):
dt-bindings: media: camss: Add qcom,sm8550-camss binding
media: qcom: camss: csid: Move common code into csid core
media: qcom: camss: vfe: Move common code into vfe core
media: qcom: camss: Add sm8550 compatible
media: qcom: camss: csiphy-3ph: Add Gen2 v2.1.2 two-phase MIPI CSI-2
DPHY support
media: qcom: camss: Add CSID Gen3 support for sm8550
media: qcom: camss: Add support for VFE hardware version Titan 780
.../bindings/media/qcom,sm8550-camss.yaml | 517 ++++++++++++
drivers/media/platform/qcom/camss/Makefile | 2 +
.../platform/qcom/camss/camss-csid-4-1.c | 19 -
.../platform/qcom/camss/camss-csid-4-7.c | 42 -
.../platform/qcom/camss/camss-csid-gen2.c | 60 --
.../platform/qcom/camss/camss-csid-gen3.c | 339 ++++++++
.../platform/qcom/camss/camss-csid-gen3.h | 26 +
.../media/platform/qcom/camss/camss-csid.c | 123 ++-
.../media/platform/qcom/camss/camss-csid.h | 31 +
.../qcom/camss/camss-csiphy-2ph-1-0.c | 6 +
.../qcom/camss/camss-csiphy-3ph-1-0.c | 796 ++++++++++--------
.../media/platform/qcom/camss/camss-csiphy.c | 4 +
.../media/platform/qcom/camss/camss-csiphy.h | 2 +
.../media/platform/qcom/camss/camss-vfe-17x.c | 112 +--
.../media/platform/qcom/camss/camss-vfe-4-1.c | 9 -
.../media/platform/qcom/camss/camss-vfe-4-7.c | 11 -
.../media/platform/qcom/camss/camss-vfe-4-8.c | 11 -
.../media/platform/qcom/camss/camss-vfe-480.c | 258 +-----
.../media/platform/qcom/camss/camss-vfe-780.c | 148 ++++
drivers/media/platform/qcom/camss/camss-vfe.c | 301 ++++++-
drivers/media/platform/qcom/camss/camss-vfe.h | 59 +-
drivers/media/platform/qcom/camss/camss.c | 365 ++++++++
drivers/media/platform/qcom/camss/camss.h | 5 +
23 files changed, 2379 insertions(+), 867 deletions(-)
create mode 100644 Documentation/devicetree/bindings/media/qcom,sm8550-camss.yaml
create mode 100644 drivers/media/platform/qcom/camss/camss-csid-gen3.c
create mode 100644 drivers/media/platform/qcom/camss/camss-csid-gen3.h
create mode 100644 drivers/media/platform/qcom/camss/camss-vfe-780.c
base-commit: 7c626ce4bae1ac14f60076d00eafe71af30450ba
--
2.34.1
Powered by blists - more mailing lists