microchip,pic32-dmt.txt 603 B

1234567891011121314151617181920
  1. * Microchip PIC32 Deadman Timer
  2. The deadman timer is used to reset the processor in the event of a software
  3. malfunction. It is a free-running instruction fetch timer, which is clocked
  4. whenever an instruction fetch occurs until a count match occurs.
  5. Required properties:
  6. - compatible: must be "microchip,pic32mzda-dmt".
  7. - reg: physical base address of the controller and length of memory mapped
  8. region.
  9. - clocks: phandle of source clk. Should be <&rootclk PB7CLK>.
  10. Example:
  11. watchdog@1f800a00 {
  12. compatible = "microchip,pic32mzda-dmt";
  13. reg = <0x1f800a00 0x80>;
  14. clocks = <&rootclk PB7CLK>;
  15. };