st,stm32-hash.txt 968 B

123456789101112131415161718192021222324252627282930
  1. * STMicroelectronics STM32 HASH
  2. Required properties:
  3. - compatible: Should contain entries for this and backward compatible
  4. HASH versions:
  5. - "st,stm32f456-hash" for stm32 F456.
  6. - "st,stm32f756-hash" for stm32 F756.
  7. - reg: The address and length of the peripheral registers space
  8. - interrupts: the interrupt specifier for the HASH
  9. - clocks: The input clock of the HASH instance
  10. Optional properties:
  11. - resets: The input reset of the HASH instance
  12. - dmas: DMA specifiers for the HASH. See the DMA client binding,
  13. Documentation/devicetree/bindings/dma/dma.txt
  14. - dma-names: DMA request name. Should be "in" if a dma is present.
  15. - dma-maxburst: Set number of maximum dma burst supported
  16. Example:
  17. hash1: hash@50060400 {
  18. compatible = "st,stm32f756-hash";
  19. reg = <0x50060400 0x400>;
  20. interrupts = <80>;
  21. clocks = <&rcc 0 STM32F7_AHB2_CLOCK(HASH)>;
  22. resets = <&rcc STM32F7_AHB2_RESET(HASH)>;
  23. dmas = <&dma2 7 2 0x400 0x0>;
  24. dma-names = "in";
  25. dma-maxburst = <0>;
  26. };