mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "CK Hu (胡俊光)" <ck.hu@mediatek.com>
To: "laurent.pinchart@ideasonboard.com"
	<laurent.pinchart@ideasonboard.com>,
	"Julien Stephan" <jstephan@baylibre.com>,
	"Andy Hsieh (謝智皓)" <Andy.Hsieh@mediatek.com>,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	"robh@kernel.org" <robh@kernel.org>,
	"krzk+dt@kernel.org" <krzk+dt@kernel.org>,
	"mchehab@kernel.org" <mchehab@kernel.org>,
	"conor+dt@kernel.org" <conor+dt@kernel.org>,
	"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>
Cc: "linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v8 5/5] arm64: dts: mediatek: mt8365: Add support for camera
Date: Thu, 20 Mar 2025 03:53:20 +0000	[thread overview]
Message-ID: <7a67beb636d0b342691b52a0fd39d5c7348fc074.camel@mediatek.com> (raw)
In-Reply-To: <20250122-add-mtk-isp-3-0-support-v8-5-a3d3731eef45@baylibre.com>

On Wed, 2025-01-22 at 14:59 +0100, Julien Stephan wrote:
> External email : Please do not click links or open attachments until you have verified the sender or the content.
> 
> 
> Add base support for cameras for mt8365 platforms. This requires nodes
> for the sensor interface, camsv, and CSI receivers.
> 
> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Signed-off-by: Julien Stephan <jstephan@baylibre.com>
> ---

[snip]

> +
> +               camsv1: camsv@15050000 {
> +                       compatible = "mediatek,mt8365-camsv";
> +                       reg = <0 0x15050000 0 0x0040>,
> +                             <0 0x15050208 0 0x0020>,
> +                             <0 0x15050400 0 0x0100>;
> +                       interrupts = <GIC_SPI 186 IRQ_TYPE_LEVEL_LOW>;
> +                       clocks = <&camsys CLK_CAM>,
> +                                <&camsys CLK_CAMTG>,
> +                                <&camsys CLK_CAMSV0>;
> +                       clock-names = "cam", "camtg", "camsv";
> +                       iommus = <&iommu M4U_PORT_CAM_IMGO>;
> +                       mediatek,larb = <&larb2>;

binding document has no larb property, drop it.

> +                       power-domains = <&spm MT8365_POWER_DOMAIN_CAM>;
> +                       status = "disabled";
> +
> +                       ports {
> +                               #address-cells = <1>;
> +                               #size-cells = <0>;
> +                               port@0 {
> +                                       reg = <0>;
> +                                       camsv1_endpoint: endpoint {
> +                                               remote-endpoint = <&seninf_camsv1_endpoint>;
> +                                       };
> +                               };
> +                       };
> +               };
> +
> +               camsv2: camsv@15050800 {
> +                       compatible = "mediatek,mt8365-camsv";
> +                       reg = <0 0x15050800 0 0x0040>,
> +                             <0 0x15050228 0 0x0020>,
> +                             <0 0x15050c00 0 0x0100>;
> +                       interrupts = <GIC_SPI 187 IRQ_TYPE_LEVEL_LOW>;
> +                       clocks = <&camsys CLK_CAM>,
> +                                <&camsys CLK_CAMTG>,
> +                                <&camsys CLK_CAMSV1>;
> +                       clock-names = "cam", "camtg", "camsv";
> +                       iommus = <&iommu M4U_PORT_CAM_IMGO>;
> +                       mediatek,larb = <&larb2>;

Ditto.

Regards,
CK

> +                       power-domains = <&spm MT8365_POWER_DOMAIN_CAM>;
> +                       status = "disabled";
> +
> +                       ports {
> +                               #address-cells = <1>;
> +                               #size-cells = <0>;
> +                               port@0 {
> +                                       reg = <0>;
> +                                       camsv2_endpoint: endpoint {
> +                                               remote-endpoint = <&seninf_camsv2_endpoint>;
> +                                       };
> +                               };
> +                       };
> +               };
> +
>                 vdecsys: syscon@16000000 {
>                         compatible = "mediatek,mt8365-vdecsys", "syscon";
>                         reg = <0 0x16000000 0 0x1000>;
> 
> --
> 2.47.1
> 
> 


  reply	other threads:[~2025-03-20  3:53 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-22 13:59 [PATCH v8 0/5] Add Mediatek ISP3.0 Julien Stephan
2025-01-22 13:59 ` [PATCH v8 1/5] dt-bindings: media: add mediatek ISP3.0 sensor interface Julien Stephan
2025-01-22 13:59 ` [PATCH v8 2/5] dt-bindings: media: add mediatek ISP3.0 camsv Julien Stephan
2025-03-20  3:48   ` CK Hu (胡俊光)
2025-01-22 13:59 ` [PATCH v8 3/5] media: platform: mediatek: isp: add mediatek ISP3.0 sensor interface Julien Stephan
2025-01-22 13:59 ` [PATCH v8 4/5] media: platform: mediatek: isp: add mediatek ISP3.0 camsv Julien Stephan
2025-02-13  5:54   ` CK Hu (胡俊光)
2025-03-20  2:18   ` CK Hu (胡俊光)
2025-04-08 13:56     ` Julien Stephan
2025-04-09  2:40       ` CK Hu (胡俊光)
2025-01-22 13:59 ` [PATCH v8 5/5] arm64: dts: mediatek: mt8365: Add support for camera Julien Stephan
2025-03-20  3:53   ` CK Hu (胡俊光) [this message]
2025-01-23 15:57 ` [PATCH v8 0/5] Add Mediatek ISP3.0 Rob Herring (Arm)

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=7a67beb636d0b342691b52a0fd39d5c7348fc074.camel@mediatek.com \
    --to=ck.hu@mediatek.com \
    --cc=Andy.Hsieh@mediatek.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jstephan@baylibre.com \
    --cc=krzk+dt@kernel.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=mchehab@kernel.org \
    --cc=robh@kernel.org \
    /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

all inboxes | Powered by JetHome®