sprd-wdt.txt 648 B

12345678910111213141516171819
  1. Spreadtrum SoCs Watchdog timer
  2. Required properties:
  3. - compatible : Should be "sprd,sp9860-wdt".
  4. - reg : Specifies base physical address and size of the registers.
  5. - interrupts : Exactly one interrupt specifier.
  6. - timeout-sec : Contain the default watchdog timeout in seconds.
  7. - clock-names : Contain the input clock names.
  8. - clocks : Phandles to input clocks.
  9. Example:
  10. watchdog: watchdog@40310000 {
  11. compatible = "sprd,sp9860-wdt";
  12. reg = <0 0x40310000 0 0x1000>;
  13. interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
  14. timeout-sec = <12>;
  15. clock-names = "enable", "rtc_enable";
  16. clocks = <&clk_aon_apb_gates1 8>, <&clk_aon_apb_rtc_gates 9>;
  17. };