Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753740AbdHQVLJ (ORCPT ); Thu, 17 Aug 2017 17:11:09 -0400 Received: from mail-oi0-f68.google.com ([209.85.218.68]:33001 "EHLO mail-oi0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753238AbdHQVLH (ORCPT ); Thu, 17 Aug 2017 17:11:07 -0400 Date: Thu, 17 Aug 2017 16:11:04 -0500 From: Rob Herring To: Fabien Dessenne Cc: Herbert Xu , "David S . Miller" , Mark Rutland , Maxime Coquelin , Alexandre Torgue , linux-crypto@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Benjamin Gaignard , Lionel Debieve , Ludovic Barre Subject: Re: [PATCH v2 2/3] dt-bindings: Document STM32 CRYP bindings Message-ID: <20170817211104.qiixtzbetrssp4k2@rob-hp-laptop> References: <1502781584-18468-1-git-send-email-fabien.dessenne@st.com> <1502781584-18468-3-git-send-email-fabien.dessenne@st.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1502781584-18468-3-git-send-email-fabien.dessenne@st.com> User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1386 Lines: 48 On Tue, Aug 15, 2017 at 09:19:43AM +0200, Fabien Dessenne wrote: > Document device tree bindings for the STM32 CRYP. > > Signed-off-by: Fabien Dessenne > --- > .../devicetree/bindings/crypto/st,stm32-cryp.txt | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > create mode 100644 Documentation/devicetree/bindings/crypto/st,stm32-cryp.txt > > diff --git a/Documentation/devicetree/bindings/crypto/st,stm32-cryp.txt b/Documentation/devicetree/bindings/crypto/st,stm32-cryp.txt > new file mode 100644 > index 0000000..7c6d599 > --- /dev/null > +++ b/Documentation/devicetree/bindings/crypto/st,stm32-cryp.txt > @@ -0,0 +1,20 @@ > +* STMicroelectronics STM32 CRYP > + > +Required properties: > +- compatible: Should be "st,stm32f756-cryp". > +- reg: The address and length of the peripheral registers space > +- clocks: The input clock of the CRYP instance > +- interrupts: The CRYP interrupt > + > +Optional properties: > +- resets: The input reset of the CRYP instance > + > +Example: > +cryp1: cryp@50060000 { crypto@.. > + compatible = "st,stm32f756-cryp"; > + reg = <0x50060000 0x400>; > + interrupts = <79>; > + clocks = <&rcc 0 STM32F7_AHB2_CLOCK(CRYP)>; > + resets = <&rcc STM32F7_AHB2_RESET(CRYP)>; > + status = "disabled"; Don't show status in examples. Otherwise, Acked-by: Rob Herring > +}; > -- > 2.7.4 >