public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 0/3] media: qcom: camss: support for empty endpoint nodes
@ 2025-12-30  2:27 Richard Acayan
  2025-12-30  2:27 ` [RFC PATCH 1/3] dt-bindings: media: camss: sdm670: Make endpoint properties optional Richard Acayan
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Richard Acayan @ 2025-12-30  2:27 UTC (permalink / raw)
  To: Robert Foss, Todor Tomov, Bryan O'Donoghue,
	Vladimir Zapolskiy, Mauro Carvalho Chehab, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Bjorn Andersson, Konrad Dybcio,
	linux-arm-msm, linux-media, devicetree
  Cc: Richard Acayan

This series adds support for empty endpoint nodes. It is currently RFC
because it continues an ongoing discussion on how to selectively connect
some CAMSS ports to cameras and leave others disconnected.

The SDM670 patches are for a full example. If agreed on, this should
expand to SoCs that have CAMSS.

Example SoC dtsi:

	camss: isp@00000000 {
		...

		status = "disabled";

		ports {
			#address-cells = <1>;
			#size-cells = <0>;

			port@0 {
				reg = <0>;

				camss_endpoint0: endpoint {
				};
			};

			port@1 {
				reg = <1>;

				camss_endpoint1: endpoint {
				};
			};

			port@2 {
				reg = <2>;

				camss_endpoint2: endpoint {
				};
			};
		};
	};

Example device dts:

	&camss {
		status = "okay";
	};

	&camss_endpoint1 {
		clock-lanes = <7>;
		data-lanes = <0 1 2 3>;
		remote-endpoint = <&cam_front_endpoint>;
	};

	&cci_i2c1 {
		camera@1a {
			...

			port {
				cam_front_endpoint: endpoint {
					data-lanes = <1 2 3 4>;
					link-frequencies = /bits/ 64 <360000000>;
					remote-endpoint = <&camss_endpoint1>;
				};
			};
		};
	};

Richard Acayan (3):
  dt-bindings: media: camss: sdm670: Make endpoint properties optional
  media: qcom: camss: allow endpoints with no remote
  arm64: dts: qcom: sdm670: remove status properties of camss endpoints

 .../devicetree/bindings/media/qcom,sdm670-camss.yaml | 12 ------------
 arch/arm64/boot/dts/qcom/sdm670.dtsi                 |  3 ---
 drivers/media/platform/qcom/camss/camss.c            |  5 ++---
 3 files changed, 2 insertions(+), 18 deletions(-)

-- 
2.52.0


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

end of thread, other threads:[~2026-01-30 11:31 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-30  2:27 [RFC PATCH 0/3] media: qcom: camss: support for empty endpoint nodes Richard Acayan
2025-12-30  2:27 ` [RFC PATCH 1/3] dt-bindings: media: camss: sdm670: Make endpoint properties optional Richard Acayan
2025-12-30  7:30   ` Krzysztof Kozlowski
2025-12-30  2:27 ` [RFC PATCH 2/3] media: qcom: camss: allow endpoints with no remote Richard Acayan
2025-12-30  2:27 ` [RFC PATCH 3/3] arm64: dts: qcom: sdm670: remove status properties of camss endpoints Richard Acayan
2025-12-30  8:18 ` [RFC PATCH 0/3] media: qcom: camss: support for empty endpoint nodes Vladimir Zapolskiy
2025-12-31  3:02   ` Richard Acayan
2025-12-31  8:34     ` Vladimir Zapolskiy
2026-01-30 11:31       ` Konrad Dybcio
2025-12-30  9:40 ` Bryan O'Donoghue
2025-12-31  2:20   ` Richard Acayan
2025-12-31  3:08     ` Bryan O'Donoghue
2026-01-10  1:03 ` Richard Acayan

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