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