sp805-wdt.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. * ARM SP805 Watchdog Timer (WDT) Controller
  2. SP805 WDT is a ARM Primecell Peripheral and has a standard-id register that
  3. can be used to identify the peripheral type, vendor, and revision.
  4. This value can be used for driver matching.
  5. As SP805 WDT is a primecell IP, it follows the base bindings specified in
  6. 'arm/primecell.txt'
  7. Required properties:
  8. - compatible : Should be "arm,sp805-wdt", "arm,primecell"
  9. - reg : Base address and size of the watchdog timer registers.
  10. - clocks : From common clock binding.
  11. First clock is PCLK and the second is WDOGCLK.
  12. WDOGCLK can be equal to or be a sub-multiple of the PCLK frequency.
  13. - clock-names : From common clock binding.
  14. Shall be "apb_pclk" for first clock and "wdog_clk" for the
  15. second one.
  16. Optional properties:
  17. - interrupts : Should specify WDT interrupt number.
  18. Examples:
  19. cluster1_core0_watchdog: wdt@c000000 {
  20. compatible = "arm,sp805-wdt", "arm,primecell";
  21. reg = <0x0 0xc000000 0x0 0x1000>;
  22. clocks = <&clockgen 4 3>, <&clockgen 4 3>;
  23. clock-names = "apb_pclk", "wdog_clk";
  24. };