Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1714745 > unrolled thread

[PATCH v3 2/3] dt-bindings: Document STM32 CRYP bindings

Started byFabien Dessenne <fabien.dessenne@st.com>
First post2017-08-18 11:30 +0200
Last post2017-08-18 11:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v3 2/3] dt-bindings: Document STM32 CRYP bindings Fabien Dessenne <fabien.dessenne@st.com> - 2017-08-18 11:30 +0200

#1714745 — [PATCH v3 2/3] dt-bindings: Document STM32 CRYP bindings

FromFabien Dessenne <fabien.dessenne@st.com>
Date2017-08-18 11:30 +0200
Subject[PATCH v3 2/3] dt-bindings: Document STM32 CRYP bindings
Message-ID<ufLLk-1yQ-3@gated-at.bofh.it>
Document device tree bindings for the STM32 CRYP.

Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com>
Acked-by: Rob Herring <robh@kernel.org>
---
 .../devicetree/bindings/crypto/st,stm32-cryp.txt      | 19 +++++++++++++++++++
 1 file changed, 19 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..970487f
--- /dev/null
+++ b/Documentation/devicetree/bindings/crypto/st,stm32-cryp.txt
@@ -0,0 +1,19 @@
+* 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:
+crypto@50060000 {
+	compatible = "st,stm32f756-cryp";
+	reg = <0x50060000 0x400>;
+	interrupts = <79>;
+	clocks = <&rcc 0 STM32F7_AHB2_CLOCK(CRYP)>;
+	resets = <&rcc STM32F7_AHB2_RESET(CRYP)>;
+};
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web