nuvoton,npcm-wdt.txt 932 B

12345678910111213141516171819202122232425262728
  1. Nuvoton NPCM Watchdog
  2. Nuvoton NPCM timer module provides five 24-bit timer counters, and a watchdog.
  3. The watchdog supports a pre-timeout interrupt that fires 10ms before the
  4. expiry.
  5. Required properties:
  6. - compatible : "nuvoton,npcm750-wdt" for NPCM750 (Poleg).
  7. - reg : Offset and length of the register set for the device.
  8. - interrupts : Contain the timer interrupt with flags for
  9. falling edge.
  10. Required clocking property, have to be one of:
  11. - clocks : phandle of timer reference clock.
  12. - clock-frequency : The frequency in Hz of the clock that drives the NPCM7xx
  13. timer (usually 25000000).
  14. Optional properties:
  15. - timeout-sec : Contains the watchdog timeout in seconds
  16. Example:
  17. timer@f000801c {
  18. compatible = "nuvoton,npcm750-wdt";
  19. interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
  20. reg = <0xf000801c 0x4>;
  21. clocks = <&clk NPCM7XX_CLK_TIMER>;
  22. };