From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Subject: Re: [PATCH v3 5/7] media: dt-bindings: rockchip: Document RK3399 Video Decoder bindings Date: Fri, 13 Dec 2019 16:25:50 +0100 Message-ID: <20191213162550.59730f89@collabora.com> References: <20191213125414.90725-1-boris.brezillon@collabora.com> <20191213125414.90725-6-boris.brezillon@collabora.com> <20191213152332.GF4860@pendragon.ideasonboard.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20191213152332.GF4860-N3hz7ZxfLydczECFQUw77jytWr6r+dGw0E9HWUfgJXw@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "Linux-rockchip" Errors-To: linux-rockchip-bounces+glpar-linux-rockchip=m.gmane.org-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org To: Laurent Pinchart Cc: Mark Rutland , devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org, Heiko Stuebner , Jonas Karlman , Tomasz Figa , Paul Kocialkowski , linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, Rob Herring , Sakari Ailus , Nicolas Dufresne , Hans Verkuil , Mauro Carvalho Chehab , Ezequiel Garcia , linux-media-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-rockchip.vger.kernel.org On Fri, 13 Dec 2019 17:23:32 +0200 Laurent Pinchart wrote: > Hi Boris, > > Thank you for the patch. > > On Fri, Dec 13, 2019 at 01:54:12PM +0100, Boris Brezillon wrote: > > Document the Rockchip RK3399 Video Decoder bindings. > > > > Signed-off-by: Boris Brezillon > > --- > > Changes in v3: > > * Fix dtbs_check failures > > --- > > .../bindings/media/rockchip,vdec.yaml | 71 +++++++++++++++++++ > > 1 file changed, 71 insertions(+) > > create mode 100644 Documentation/devicetree/bindings/media/rockchip,vdec.yaml > > > > diff --git a/Documentation/devicetree/bindings/media/rockchip,vdec.yaml b/Documentation/devicetree/bindings/media/rockchip,vdec.yaml > > new file mode 100644 > > index 000000000000..7167c3d6a389 > > --- /dev/null > > +++ b/Documentation/devicetree/bindings/media/rockchip,vdec.yaml > > @@ -0,0 +1,71 @@ > > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) > > +%YAML 1.2 > > +--- > > +$id: http://devicetree.org/schemas/media/rockchip,vdec.yaml# > > +$schema: http://devicetree.org/meta-schemas/core.yaml# > > + > > +title: Rockchip Video Decoder (VDec) Device Tree Bindings > > + > > +maintainers: > > + - Heiko Stuebner > > + > > +description: |- > > + The Rockchip rk3399 has a stateless Video Decoder that can decodes H.264, > > + HEVC an VP9 streams. > > + > > +properties: > > + compatible: > > + const: rockchip,rk3399-vdec > > + > > + reg: > > + maxItems: 1 > > + > > + interrupts: > > + maxItems: 1 > > + > > + clocks: > > + items: > > + - description: The Video Decoder AXI interface clock > > + - description: The Video Decoder AHB interface clock > > + - description: The Video Decoded CABAC clock > > + - description: The Video Decoder core clock > > + > > + clock-names: > > + items: > > + - const: aclk > > How about calling it "axi" ? None of the other clock names have "clk". > > > + - const: iface > > And "ahb" here, as the AXI interface clock is also an interface clock ? Sure, I can do that.