devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Michael Tretter <m.tretter@pengutronix.de>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media@vger.kernel.org, devicetree@vger.kernel.org,
	kernel@pengutronix.de, robh+dt@kernel.org, mchehab@kernel.org,
	tfiga@chromium.org, dshah@xilinx.com,
	Rob Herring <robh@kernel.org>
Subject: Re: [PATCH v4 1/3] media: dt-bindings: media: document allegro-dvt bindings
Date: Thu, 28 Mar 2019 09:59:22 +0100	[thread overview]
Message-ID: <20190328095922.6602559b@litschi.hi.pengutronix.de> (raw)
In-Reply-To: <e61aebce-8be4-7f6a-6d9b-69c5e4db14d2@xs4all.nl>

On Wed, 27 Mar 2019 13:57:10 +0100, Hans Verkuil wrote:
> On 3/1/19 4:27 PM, Michael Tretter wrote:
> > Add device-tree bindings for the Allegro DVT video IP core found on the
> > Xilinx ZynqMP EV family.
> > 
> > Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
> > Reviewed-by: Rob Herring <robh@kernel.org>
> > ---
> > v3 -> v4:
> > none
> > 
> > v2 -> v3:
> > - rename node to video-codec
> > - drop interrupt-names
> > - fix compatible in example
> > - add clocks to required properties
> > 
> > v1 -> v2:
> > none
> > ---
> >  .../devicetree/bindings/media/allegro.txt     | 43 +++++++++++++++++++
> >  1 file changed, 43 insertions(+)
> >  create mode 100644 Documentation/devicetree/bindings/media/allegro.txt
> > 
> > diff --git a/Documentation/devicetree/bindings/media/allegro.txt b/Documentation/devicetree/bindings/media/allegro.txt
> > new file mode 100644
> > index 000000000000..a92e2fbf26c9
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/media/allegro.txt
> > @@ -0,0 +1,43 @@
> > +Device-tree bindings for the Allegro DVT video IP codecs present in the Xilinx
> > +ZynqMP SoC. The IP core may either be a H.264/H.265 encoder or H.264/H.265
> > +decoder ip core.
> > +
> > +Each actual codec engines is controlled by a microcontroller (MCU). Host
> > +software uses a provided mailbox interface to communicate with the MCU. The
> > +MCU share an interrupt.
> > +
> > +Required properties:
> > +  - compatible: value should be one of the following
> > +    "allegro,al5e-1.1", "allegro,al5e": encoder IP core
> > +    "allegro,al5d-1.1", "allegro,al5d": decoder IP core  
> 
> checkpatch give me:
> 
> WARNING: DT compatible string vendor "allegro" appears un-documented -- check ./Documentation/devicetree/bindings/vendor-prefixes.txt
> #2714: FILE: drivers/staging/media/allegro-dvt/allegro-core.c:2636:
> +       { .compatible = "allegro,al5e-1.1" },
> 
> I think you should probably replace allegro by xlnx.

The video-codec and the firmware is actually Allegro IP. Xilinx
integrated the IP cores into the SoC with their "VCU System-Level
Control" module, which uses the "xlnx,vcu" binding.

I would rather add "allegro" to the vendor-prefixes.txt than replacing
it with xlnx.

Michael

> 
> Regards,
> 
> 	Hans
> 
> > +  - reg: base and length of the memory mapped register region and base and
> > +    length of the memory mapped sram
> > +  - reg-names: must include "regs" and "sram"
> > +  - interrupts: shared interrupt from the MCUs to the processing system
> > +  - clocks: must contain an entry for each entry in clock-names
> > +  - clock-names: must include "core_clk", "mcu_clk", "m_axi_core_aclk",
> > +    "m_axi_mcu_aclk", "s_axi_lite_aclk"
> > +
> > +Example:
> > +	al5e: video-codec@a0009000 {
> > +		compatible = "allegro,al5e-1.1", "allegro,al5e";
> > +		reg = <0 0xa0009000 0 0x1000>,
> > +		      <0 0xa0000000 0 0x8000>;
> > +		reg-names = "regs", "sram";
> > +		interrupts = <0 96 4>;
> > +		clocks = <&xlnx_vcu 0>, <&xlnx_vcu 1>,
> > +			 <&clkc 71>, <&clkc 71>, <&clkc 71>;
> > +		clock-names = "core_clk", "mcu_clk", "m_axi_core_aclk",
> > +			      "m_axi_mcu_aclk", "s_axi_lite_aclk"
> > +	};
> > +	al5d: video-codec@a0029000 {
> > +		compatible = "allegro,al5d-1.1", "allegro,al5d";
> > +		reg = <0 0xa0029000 0 0x1000>,
> > +		      <0 0xa0020000 0 0x8000>;
> > +		reg-names = "regs", "sram";
> > +		interrupts = <0 96 4>;
> > +		clocks = <&xlnx_vcu 2>, <&xlnx_vcu 3>,
> > +			 <&clkc 71>, <&clkc 71>, <&clkc 71>;
> > +		clock-names = "core_clk", "mcu_clk", "m_axi_core_aclk",
> > +			      "m_axi_mcu_aclk", "s_axi_lite_aclk"
> > +	};
> >   
> 
> 

  reply	other threads:[~2019-03-28  8:59 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-01 15:27 [PATCH v4 0/3] Add ZynqMP VCU/Allegro DVT H.264 encoder driver Michael Tretter
2019-03-01 15:27 ` [PATCH v4 1/3] media: dt-bindings: media: document allegro-dvt bindings Michael Tretter
2019-03-27 12:57   ` Hans Verkuil
2019-03-28  8:59     ` Michael Tretter [this message]
2019-03-28  9:21       ` Hans Verkuil
2019-03-01 15:27 ` [PATCH v4 2/3] [media] allegro: add Allegro DVT video IP core driver Michael Tretter
2019-03-27 13:33   ` Hans Verkuil
2019-03-28  9:53     ` Michael Tretter
2019-03-01 15:27 ` [PATCH v4 3/3] [media] allegro: add SPS/PPS nal unit writer Michael Tretter
2019-03-27 13:45   ` Hans Verkuil
2019-03-28  9:30     ` Michael Tretter
2019-03-26  7:46 ` [PATCH v4 0/3] Add ZynqMP VCU/Allegro DVT H.264 encoder driver Michael Tretter
2019-03-26 11:47   ` Hans Verkuil
2019-03-26 17:14     ` Uwe Kleine-König
2019-03-26 17:17       ` Hans Verkuil
2019-03-27 13:04 ` Hans Verkuil
2019-03-27 17:15   ` Nicolas Dufresne

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=20190328095922.6602559b@litschi.hi.pengutronix.de \
    --to=m.tretter@pengutronix.de \
    --cc=devicetree@vger.kernel.org \
    --cc=dshah@xilinx.com \
    --cc=hverkuil@xs4all.nl \
    --cc=kernel@pengutronix.de \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=robh@kernel.org \
    --cc=tfiga@chromium.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;
as well as URLs for NNTP newsgroup(s).