Yannick Fertre | 5df1142 | 2017-04-06 14:19:24 +0200 | [diff] [blame] | 1 | STM32 Independent WatchDoG (IWDG) |
| 2 | --------------------------------- |
| 3 | |
| 4 | Required properties: |
| 5 | - compatible: "st,stm32-iwdg" |
| 6 | - reg: physical base address and length of the registers set for the device |
| 7 | - clocks: must contain a single entry describing the clock input |
| 8 | |
| 9 | Optional Properties: |
| 10 | - timeout-sec: Watchdog timeout value in seconds. |
| 11 | |
| 12 | Example: |
| 13 | |
| 14 | iwdg: watchdog@40003000 { |
| 15 | compatible = "st,stm32-iwdg"; |
| 16 | reg = <0x40003000 0x400>; |
| 17 | clocks = <&clk_lsi>; |
| 18 | timeout-sec = <32>; |
| 19 | }; |