arm,sp805.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. ARM AMBA Primecell SP805 Watchdog
  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" & "arm,primecell"
  9. - reg: Should contain location and length for watchdog timer register
  10. - clocks: Clocks driving the watchdog timer hardware. This list should be
  11. 2 clocks. With 2 clocks, the order is wdog_clk, apb_pclk
  12. wdog_clk can be equal to or be a sub-multiple of the apb_pclk
  13. frequency
  14. - clock-names: Shall be "wdog_clk" for first clock and "apb_pclk" for the
  15. second one
  16. Optional properties:
  17. - interrupts: Should specify WDT interrupt number
  18. - timeout-sec: Should specify default WDT timeout in seconds. If unset, the
  19. default timeout is determined by the driver
  20. Example:
  21. watchdog@66090000 {
  22. compatible = "arm,sp805", "arm,primecell";
  23. reg = <0x66090000 0x1000>;
  24. interrupts = <GIC_SPI 406 IRQ_TYPE_LEVEL_HIGH>;
  25. clocks = <&wdt_clk>, <&apb_pclk>;
  26. clock-names = "wdog_clk", "apb_pclk";
  27. };