st,stm32-cryp.txt 513 B

12345678910111213141516171819
  1. * STMicroelectronics STM32 CRYP
  2. Required properties:
  3. - compatible: Should be "st,stm32f756-cryp".
  4. - reg: The address and length of the peripheral registers space
  5. - clocks: The input clock of the CRYP instance
  6. - interrupts: The CRYP interrupt
  7. Optional properties:
  8. - resets: The input reset of the CRYP instance
  9. Example:
  10. crypto@50060000 {
  11. compatible = "st,stm32f756-cryp";
  12. reg = <0x50060000 0x400>;
  13. interrupts = <79>;
  14. clocks = <&rcc 0 STM32F7_AHB2_CLOCK(CRYP)>;
  15. resets = <&rcc STM32F7_AHB2_RESET(CRYP)>;
  16. };