Merge tag 'nfs-for-4.16-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / crypto / st,stm32-cryp.txt
1 * STMicroelectronics STM32 CRYP
2
3 Required properties:
4 - compatible: Should be "st,stm32f756-cryp".
5 - reg: The address and length of the peripheral registers space
6 - clocks: The input clock of the CRYP instance
7 - interrupts: The CRYP interrupt
8
9 Optional properties:
10 - resets: The input reset of the CRYP instance
11
12 Example:
13 crypto@50060000 {
14         compatible = "st,stm32f756-cryp";
15         reg = <0x50060000 0x400>;
16         interrupts = <79>;
17         clocks = <&rcc 0 STM32F7_AHB2_CLOCK(CRYP)>;
18         resets = <&rcc STM32F7_AHB2_RESET(CRYP)>;
19 };