From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Daniel Scally <dan.scally@ideasonboard.com>,
linux-media@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
jacopo.mondi@ideasonboard.com, nayden.kanchev@arm.com,
robh+dt@kernel.org, mchehab@kernel.org,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
jerome.forissier@linaro.org, kieran.bingham@ideasonboard.com
Subject: Re: [PATCH v2 2/5] dt-bindings: media: Add bindings for ARM mali-c55
Date: Mon, 26 Feb 2024 14:58:18 +0200 [thread overview]
Message-ID: <20240226125818.GA26163@pendragon.ideasonboard.com> (raw)
In-Reply-To: <ZdyB_yHn9yImTuhm@valkosipuli.retiisi.eu>
On Mon, Feb 26, 2024 at 12:20:15PM +0000, Sakari Ailus wrote:
> On Mon, Feb 26, 2024 at 02:04:31PM +0200, Laurent Pinchart wrote:
> > On Mon, Feb 26, 2024 at 11:54:22AM +0000, Sakari Ailus wrote:
> > > On Wed, Feb 14, 2024 at 02:19:03PM +0000, Daniel Scally wrote:
> > > > Add the yaml binding for ARM's Mali-C55 Image Signal Processor.
> > > >
> > > > Acked-by: Nayden Kanchev <nayden.kanchev@arm.com>
> > > > Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
> > > > ---
> > > > Changes in v2:
> > > >
> > > > - Added clocks information
> > > > - Fixed the warnings raised by Rob
> > > >
> > > > .../bindings/media/arm,mali-c55.yaml | 77 +++++++++++++++++++
> > > > 1 file changed, 77 insertions(+)
> > > > create mode 100644 Documentation/devicetree/bindings/media/arm,mali-c55.yaml
> > > >
> > > > diff --git a/Documentation/devicetree/bindings/media/arm,mali-c55.yaml b/Documentation/devicetree/bindings/media/arm,mali-c55.yaml
> > > > new file mode 100644
> > > > index 000000000000..30038cfec3a4
> > > > --- /dev/null
> > > > +++ b/Documentation/devicetree/bindings/media/arm,mali-c55.yaml
> > > > @@ -0,0 +1,77 @@
> > > > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> > > > +%YAML 1.2
> > > > +---
> > > > +$id: http://devicetree.org/schemas/media/arm,mali-c55.yaml#
> > > > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > > > +
> > > > +title: ARM Mali-C55 Image Signal Processor
> > > > +
> > > > +maintainers:
> > > > + - Daniel Scally <dan.scally@ideasonboard.com>
> > > > + - Jacopo Mondi <jacopo.mondi@ideasonboard.com>
> > > > +
> > > > +properties:
> > > > + compatible:
> > > > + const: arm,mali-c55
> > > > +
> > > > + reg:
> > > > + maxItems: 1
> > > > +
> > > > + interrupts:
> > > > + maxItems: 1
> > > > +
> > > > + clocks:
> > > > + items:
> > > > + - description: ISP video clock
> > > > + - description: ISP AXI clock
> > > > + - description: ISP AHB-lite clock
> > > > +
> > > > + clock-names:
> > > > + items:
> > > > + - const: vclk
> > > > + - const: aclk
> > > > + - const: hclk
> > > > +
> > > > + ports:
> > > > + $ref: /schemas/graph.yaml#/properties/ports
> > > > +
> > > > + properties:
> > > > + port@0:
> > > > + $ref: /schemas/graph.yaml#/properties/port
Adding
description: Input parallel video bus
here would be useful.
> > > > +
> > > > + properties:
> > > > + endpoint:
> > > > + $ref: /schemas/graph.yaml#/properties/endpoint
> > > > +
> > > > +required:
> > > > + - compatible
> > > > + - reg
> > > > + - interrupts
> > > > + - clocks
> > > > + - clock-names
> > > > + - ports
> > > > +
> > > > +additionalProperties: false
> > > > +
> > > > +examples:
> > > > + - |
> > > > + mali_c55: isp@400000 {
> > > > + compatible = "arm,mali-c55";
> > > > + reg = <0x400000 0x200000>;
> > > > + clocks = <&clk 0>, <&clk 1>, <&clk 2>;
> > > > + clock-names = "vclk", "aclk", "hclk";
> > > > + interrupts = <0>;
> > > > +
> > > > + ports {
> > > > + #address-cells = <1>;
> > > > + #size-cells = <0>;
> > > > +
> > > > + port@0 {
> > > > + reg = <0>;
> > > > + isp_in: endpoint {
> > > > + remote-endpoint = <&mipi_out>;
> > >
> > > I suppose this is a CSI-2 interface with D-PHY?
> >
> > No, that's an internal parallel bus. Depending on the SoC integration,
> > it can be connected to a CSI-2 receiver, a DMA engine, or a mux to
> > select between different sources.
>
> The name suggests otherwise. Maybe change that to something more
> descriptive?
We could rename mipi_out to csi2_rx_out, sure.
> > > How many lanes do you have and is lane remapping / polarity inversion
> > > supported?
> > >
> > > This should be reflected in bindings.
> > >
> > > > + };
> > > > + };
> > > > + };
> > > > + };
> > > > +...
--
Regards,
Laurent Pinchart
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-02-26 12:58 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-14 14:19 [PATCH v2 0/5] Add Arm Mali-C55 Image Signal Processor Driver Daniel Scally
2024-02-14 14:19 ` [PATCH v2 1/5] media: uapi: Add MEDIA_BUS_FMT_RGB202020_1X60 format code Daniel Scally
2024-02-14 14:19 ` [PATCH v2 2/5] dt-bindings: media: Add bindings for ARM mali-c55 Daniel Scally
2024-02-14 14:28 ` Laurent Pinchart
2024-02-14 17:37 ` Conor Dooley
2024-02-15 11:02 ` Laurent Pinchart
2024-02-16 13:09 ` Dan Scally
2024-02-16 13:27 ` Laurent Pinchart
2024-02-16 14:45 ` Dan Scally
2024-02-16 19:07 ` Conor Dooley
2024-02-22 18:07 ` Rob Herring
2024-02-26 11:54 ` Sakari Ailus
2024-02-26 12:04 ` Laurent Pinchart
2024-02-26 12:20 ` Sakari Ailus
2024-02-26 12:58 ` Laurent Pinchart [this message]
2024-02-26 13:37 ` Sakari Ailus
2024-02-26 13:42 ` Dan Scally
2024-02-14 14:19 ` [PATCH v2 4/5] media: Documentation: Add Mali-C55 ISP Documentation Daniel Scally
2024-02-25 21:22 ` Kieran Bingham
2024-02-26 7:48 ` Dan Scally
2024-02-26 9:12 ` Kieran Bingham
2024-02-14 14:19 ` [PATCH v2 5/5] MAINTAINERS: Add entry for mali-c55 driver Daniel Scally
[not found] ` <20240214141906.245685-4-dan.scally@ideasonboard.com>
[not found] ` <ZdxwE3omXmUjfLMn@valkosipuli.retiisi.eu>
2024-02-28 12:50 ` [PATCH v2 3/5] media: mali-c55: Add Mali-C55 ISP driver Jacopo Mondi
2024-02-28 13:11 ` Sakari Ailus
2024-02-28 13:29 ` Kieran Bingham
2024-02-28 13:38 ` Laurent Pinchart
2024-03-01 16:21 ` Dan Scally
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=20240226125818.GA26163@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=conor+dt@kernel.org \
--cc=dan.scally@ideasonboard.com \
--cc=devicetree@vger.kernel.org \
--cc=jacopo.mondi@ideasonboard.com \
--cc=jerome.forissier@linaro.org \
--cc=kieran.bingham@ideasonboard.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=nayden.kanchev@arm.com \
--cc=robh+dt@kernel.org \
--cc=sakari.ailus@iki.fi \
/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).