ACPI: EC: Rework flushing of pending work
[linux/fpc-iii.git] / Documentation / devicetree / bindings / rng / st,stm32-rng.txt
blob1dfa7d51e006d755ad82af526b8fe67a82491e96
1 STMicroelectronics STM32 HW RNG
2 ===============================
4 The STM32 hardware random number generator is a simple fixed purpose IP and
5 is fully separated from other crypto functions.
7 Required properties:
9 - compatible : Should be "st,stm32-rng"
10 - reg : Should be register base and length as documented in the datasheet
11 - interrupts : The designated IRQ line for the RNG
12 - clocks : The clock needed to enable the RNG
14 Optional properties:
15 - resets : The reset to properly start RNG
16 - clock-error-detect : Enable the clock detection management
18 Example:
20         rng: rng@50060800 {
21                 compatible = "st,stm32-rng";
22                 reg = <0x50060800 0x400>;
23                 interrupts = <80>;
24                 clocks = <&rcc 0 38>;
25         };