Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1686425 > unrolled thread
| Started by | Fabien Dessenne <fabien.dessenne@st.com> |
|---|---|
| First post | 2017-07-13 12:10 +0200 |
| Last post | 2017-07-17 19:50 +0200 |
| Articles | 2 — 2 participants |
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.
[PATCH 2/3] dt-bindings: Document STM32 CRYP bindings Fabien Dessenne <fabien.dessenne@st.com> - 2017-07-13 12:10 +0200
Re: [PATCH 2/3] dt-bindings: Document STM32 CRYP bindings Rob Herring <robh@kernel.org> - 2017-07-17 19:50 +0200
| From | Fabien Dessenne <fabien.dessenne@st.com> |
|---|---|
| Date | 2017-07-13 12:10 +0200 |
| Subject | [PATCH 2/3] dt-bindings: Document STM32 CRYP bindings |
| Message-ID | <u2Jeh-4ic-5@gated-at.bofh.it> |
Document device tree bindings for the STM32 CRYP.
Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com>
---
.../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..f631c37
--- /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 interrupts
+
+Optional properties:
+- resets: The input reset of the CRYP instance
+
+Example:
+cryp1: cryp@50060000 {
+ compatible = "st,stm32f756-cryp";
+ reg = <0x50060000 0x400>;
+ interrupts = <79>;
+ clocks = <&rcc 0 STM32F7_AHB2_CLOCK(CRYP)>;
+ resets = <&rcc STM32F7_AHB2_RESET(CRYP)>;
+ status = "disabled";
+};
--
2.7.4
[toc] | [next] | [standalone]
| From | Rob Herring <robh@kernel.org> |
|---|---|
| Date | 2017-07-17 19:50 +0200 |
| Message-ID | <u4ijE-85t-7@gated-at.bofh.it> |
| In reply to | #1686425 |
On Thu, Jul 13, 2017 at 11:59:38AM +0200, Fabien Dessenne wrote:
> Document device tree bindings for the STM32 CRYP.
>
> Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com>
> ---
> .../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..f631c37
> --- /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 interrupts
More than 1? How many?
> +
> +Optional properties:
> +- resets: The input reset of the CRYP instance
> +
> +Example:
> +cryp1: cryp@50060000 {
> + compatible = "st,stm32f756-cryp";
> + reg = <0x50060000 0x400>;
> + interrupts = <79>;
> + clocks = <&rcc 0 STM32F7_AHB2_CLOCK(CRYP)>;
> + resets = <&rcc STM32F7_AHB2_RESET(CRYP)>;
> + status = "disabled";
> +};
> --
> 2.7.4
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web