devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] Add CCI and imx577 sensor support for monaco evk
@ 2025-09-09 11:42 Vikram Sharma
  2025-09-09 11:42 ` [PATCH 1/4] dt-bindings: i2c: qcom-cci: Document qcs8300 compatible Vikram Sharma
                   ` (3 more replies)
  0 siblings, 4 replies; 19+ messages in thread
From: Vikram Sharma @ 2025-09-09 11:42 UTC (permalink / raw)
  To: bryan.odonoghue, mchehab, robh, krzk+dt, conor+dt, andersson,
	konradybcio, hverkuil-cisco, cros-qcom-dts-watchers,
	catalin.marinas, will
  Cc: linux-arm-kernel, quic_svankada, linux-media, linux-arm-msm,
	devicetree, linux-kernel

Monaco EVK is a single board computer, based on the Qualcomm QCS8300 SoC.
This series adds CCI definition and enablement of imx577 sensor
via CCI1 on monaco evk.

We have tested IMX577 Sensor on CCI1 with following commands:
- media-ctl -d /dev/media0 --reset
- media-ctl -d /dev/media0 -V '"imx577 3-001a":0[fmt:SRGGB10/4056x3040
  field:none]'
- media-ctl -d /dev/media0 -V '"msm_csiphy1":0[fmt:SRGGB10/4056x3040]'
- media-ctl -d /dev/media0 -V '"msm_csiphy1":1[fmt:SRGGB10/4056x3040]'
- media-ctl -d /dev/media0 -V '"msm_csid0":0[fmt:SRGGB10/4056x3040]'
- media-ctl -d /dev/media0 -V '"msm_csid0":1[fmt:SRGGB10/4056x3040]'
- media-ctl -d /dev/media0 -V '"msm_vfe0_rdi0":0[fmt:SRGGB10/4056x3040]'
- media-ctl -d /dev/media0 -V '"msm_vfe0_rdi0":1[fmt:SRGGB10/4056x3040]'
- media-ctl -d /dev/media0 -l '"msm_csiphy1":1->"msm_csid0":0[1]'
- media-ctl -d /dev/media0 -l '"msm_csid0":1->"msm_vfe0_rdi0":0[1]'
- yavta -B capture-mplane -c -I -n 5 -f SRGGB10P -s 4056x3040 -F
  /dev/video1 --capture=5

Used following tools for the sanity check of these changes.

- make -j32 W=1
- checkpatch.pl
- make DT_CHECKER_FLAGS=-m W=1 DT_SCHEMA_FILES=i2c/qcom,i2c-cci.yaml dt_binding_check
- make DT_CHECKER_FLAGS=-m W=1 DT_SCHEMA_FILES=media/qcom,qcs8300-camss.yaml dt_binding_check
- make CHECK_DTBS=y W=1 DT_SCHEMA_FILES=i2c/qcom,i2c-cci.yaml
- make CHECK_DTBS=y W=1 DT_SCHEMA_FILES=media/qcom,qcs8300-camss.yaml
---
This patch series depends on patch series:
https://lore.kernel.org/linux-arm-msm/20250814101615.1102795-1-quic_vikramsa@quicinc.com/
https://lore.kernel.org/all/20250813053724.232494-1-quic_vikramsa@quicinc.com/
---
Signed-off-by: Nihal Kumar Gupta <quic_nihalkum@quicinc.com>
Signed-off-by: Vikram Sharma <quic_vikramsa@quicinc.com>
---

Nihal Kumar Gupta (4):
  dt-bindings: i2c: qcom-cci: Document qcs8300 compatible
  arm64: dts: qcom: qcs8300: Add CCI definitions
  arm64: dts: qcom: monaco-evk-camera: Add DT overlay
  dt-bindings: media: camss: Add qcs8300 supplies binding

 .../devicetree/bindings/i2c/qcom,i2c-cci.yaml |   2 +
 .../bindings/media/qcom,qcs8300-camss.yaml    |  13 +
 arch/arm64/boot/dts/qcom/Makefile             |   4 +
 .../boot/dts/qcom/monaco-evk-camera.dtso      |  98 ++++++
 arch/arm64/boot/dts/qcom/qcs8300.dtsi         | 309 ++++++++++++++++++
 5 files changed, 426 insertions(+)
 create mode 100644 arch/arm64/boot/dts/qcom/monaco-evk-camera.dtso

-- 
2.25.1


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

end of thread, other threads:[~2025-10-10 12:33 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-09 11:42 [PATCH 0/4] Add CCI and imx577 sensor support for monaco evk Vikram Sharma
2025-09-09 11:42 ` [PATCH 1/4] dt-bindings: i2c: qcom-cci: Document qcs8300 compatible Vikram Sharma
2025-09-09 11:52   ` Bryan O'Donoghue
2025-09-09 11:42 ` [PATCH 2/4] arm64: dts: qcom: qcs8300: Add CCI definitions Vikram Sharma
2025-10-08 10:04   ` Konrad Dybcio
2025-10-10 12:32     ` Nihal Kumar Gupta
2025-09-09 11:42 ` [PATCH 3/4] arm64: dts: qcom: monaco-evk-camera: Add DT overlay Vikram Sharma
2025-09-09 14:01   ` Dmitry Baryshkov
     [not found]     ` <8104bb41-e827-4daa-bc96-9b6678a9d345@quicinc.com>
2025-09-11  9:19       ` Nihal Kumar Gupta
2025-09-11 10:08         ` Dmitry Baryshkov
2025-09-11 12:49           ` Nihal Kumar Gupta
2025-09-11 13:03             ` Dmitry Baryshkov
2025-09-11 13:41               ` Vikram Sharma
2025-09-11 10:57       ` Dmitry Baryshkov
2025-09-10  7:01   ` Krzysztof Kozlowski
2025-09-09 11:42 ` [PATCH 4/4] dt-bindings: media: camss: Add qcs8300 supplies binding Vikram Sharma
2025-09-09 14:00   ` Dmitry Baryshkov
2025-09-10  7:02   ` Krzysztof Kozlowski
2025-09-10 11:41     ` Bryan O'Donoghue

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