1* STMicroelectronics STM32 CRYP 2 3Required 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 9Optional properties: 10- resets: The input reset of the CRYP instance 11 12Example: 13crypto@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}; 20