From: Bryan O'Donoghue <bod@kernel.org>
To: Loic Poulain <loic.poulain@oss.qualcomm.com>,
andersson@kernel.org, konradybcio@kernel.org,
dave.stevenson@raspberrypi.com, sakari.ailus@linux.intel.com
Cc: linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
linux-media@vger.kernel.org, mchehab@kernel.org,
conor+dt@kernel.org, robh@kernel.org
Subject: Re: [PATCH v2 3/3] arm64: dts: qcom: qrb2210-rb1: Add overlay for vision mezzanine
Date: Sat, 27 Sep 2025 11:37:01 +0100 [thread overview]
Message-ID: <35402c21-bef8-44ac-844b-1cc97ff83c6f@kernel.org> (raw)
In-Reply-To: <20250926073421.17408-4-loic.poulain@oss.qualcomm.com>
On 26/09/2025 08:34, Loic Poulain wrote:
> This initial version includes support for OV9282 camera sensor.
>
> Signed-off-by: Loic Poulain <loic.poulain@oss.qualcomm.com>
> ---
> arch/arm64/boot/dts/qcom/Makefile | 5 ++
> .../qcom/qrb2210-rb1-vision-mezzanine.dtso | 76 +++++++++++++++++++
> 2 files changed, 81 insertions(+)
> create mode 100644 arch/arm64/boot/dts/qcom/qrb2210-rb1-vision-mezzanine.dtso
>
> diff --git a/arch/arm64/boot/dts/qcom/Makefile b/arch/arm64/boot/dts/qcom/Makefile
> index d7f22476d510..bee021efc249 100644
> --- a/arch/arm64/boot/dts/qcom/Makefile
> +++ b/arch/arm64/boot/dts/qcom/Makefile
> @@ -138,6 +138,11 @@ dtb-$(CONFIG_ARCH_QCOM) += qcs9100-ride.dtb
> dtb-$(CONFIG_ARCH_QCOM) += qcs9100-ride-r3.dtb
> dtb-$(CONFIG_ARCH_QCOM) += qdu1000-idp.dtb
> dtb-$(CONFIG_ARCH_QCOM) += qrb2210-rb1.dtb
> +
> +qrb2210-rb1-vision-mezzanine-dtbs := qrb2210-rb1.dtb qrb2210-rb1-vision-mezzanine.dtbo
> +
> +dtb-$(CONFIG_ARCH_QCOM) += qrb2210-rb1-vision-mezzanine.dtb
> +
> dtb-$(CONFIG_ARCH_QCOM) += qrb4210-rb2.dtb
> dtb-$(CONFIG_ARCH_QCOM) += qrb5165-rb5.dtb
>
> diff --git a/arch/arm64/boot/dts/qcom/qrb2210-rb1-vision-mezzanine.dtso b/arch/arm64/boot/dts/qcom/qrb2210-rb1-vision-mezzanine.dtso
> new file mode 100644
> index 000000000000..3b6261131b75
> --- /dev/null
> +++ b/arch/arm64/boot/dts/qcom/qrb2210-rb1-vision-mezzanine.dtso
> @@ -0,0 +1,76 @@
> +// SPDX-License-Identifier: BSD-3-Clause
> +/*
> + * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
> + */
> +
> +/dts-v1/;
> +/plugin/;
> +
> +#include <dt-bindings/clock/qcom,gcc-qcm2290.h>
> +#include <dt-bindings/gpio/gpio.h>
> +
> +&tlmm {
> + cam0a_default: cam0a-default-state {
> + pins = "gpio28";
> + function = "cam_mclk";
> + drive-strength = <16>;
> + bias-disable;
> + };
> +};
> +
> +&pm8008 {
> + status = "okay";
> +};
> +
> +&camss {
> + status = "okay";
> +
> + vdd-csiphy-1p2-supply = <&pm4125_l5>;
> + vdd-csiphy-1p8-supply = <&pm4125_l13>;
> +
> + ports {
> + port@0 {
> + csiphy0_ep: endpoint {
> + data-lanes = <0 1>;
> + remote-endpoint = <&ov9282_ep>;
> + };
> + };
> + };
> +};
> +
> +&cci {
> + status = "okay";
> +};
> +
> +&cci_i2c1 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + /* Vision Mezzanine DIP3-1 must be ON (Selects camera CAM0A&B) */
> + camera@60 {
> + compatible = "ovti,ov9282";
> + reg = <0x60>;
> +
> + /* Note: Reset is active-low but ov9282 driver logic is inverted... */
> + reset-gpios = <&tlmm 18 GPIO_ACTIVE_LOW>;
This comment is confusing me a bit.
Shouldn't it be that the driver polarity gets fixed and the DTS just
declares the correct thing ?
> +
> + pinctrl-0 = <&cam0a_default>;
> + pinctrl-names = "default";
> +
> + clocks = <&gcc GCC_CAMSS_MCLK3_CLK>;
> + assigned-clocks = <&gcc GCC_CAMSS_MCLK3_CLK>;
> + assigned-clock-rates = <24000000>;
> +
> + avdd-supply = <&vreg_l3p>;
> + dvdd-supply = <&vreg_l1p>;
> + dovdd-supply = <&vreg_l7p>;
> +
> + port {
> + ov9282_ep: endpoint {
> + link-frequencies = /bits/ 64 <400000000>;
> + data-lanes = <1 2>;
> + remote-endpoint = <&csiphy0_ep>;
> + };
> + };
> + };
> +};
> --
> 2.34.1
>
>
---
bod
next prev parent reply other threads:[~2025-09-27 10:37 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-26 7:34 arm64: dts: qcom: qrb2210-rb1: Add Qualcomm RB1 Vision kit Loic Poulain
2025-09-26 7:34 ` [PATCH v2 1/3] media: i2c: ov9282: Fix reset-gpio logical state Loic Poulain
2025-09-27 10:29 ` Bryan O'Donoghue
2025-09-29 8:46 ` Vladimir Zapolskiy
2025-09-29 8:53 ` Loic Poulain
2025-09-29 15:18 ` Dave Stevenson
2025-10-02 15:59 ` Loic Poulain
2025-09-26 7:34 ` [PATCH v2 2/3] arm64: dts: qcom: qrb2210-rb1: Add PM8008 node Loic Poulain
2025-09-26 11:10 ` Konrad Dybcio
2025-09-26 7:34 ` [PATCH v2 3/3] arm64: dts: qcom: qrb2210-rb1: Add overlay for vision mezzanine Loic Poulain
2025-09-26 11:11 ` Konrad Dybcio
2025-09-27 10:37 ` Bryan O'Donoghue [this message]
2025-09-29 7:52 ` Loic Poulain
2025-09-29 9:03 ` Vladimir Zapolskiy
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=35402c21-bef8-44ac-844b-1cc97ff83c6f@kernel.org \
--to=bod@kernel.org \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=dave.stevenson@raspberrypi.com \
--cc=devicetree@vger.kernel.org \
--cc=konradybcio@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=loic.poulain@oss.qualcomm.com \
--cc=mchehab@kernel.org \
--cc=robh@kernel.org \
--cc=sakari.ailus@linux.intel.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).