renesas,8bit-timer.txt 686 B

12345678910111213141516171819202122232425
  1. * Renesas H8/300 8bit timer
  2. The 8bit timer is a 8bit timer/counter with configurable clock inputs and
  3. programmable compare match.
  4. This implement only supported cascade mode.
  5. Required Properties:
  6. - compatible: must contain "renesas,8bit-timer"
  7. - reg: base address and length of the registers block for the timer module.
  8. - interrupts: interrupt-specifier for the timer, CMIA and TOVI
  9. - clocks: a list of phandle, one for each entry in clock-names.
  10. - clock-names: must contain "fck" for the functional clock.
  11. Example:
  12. timer8_0: timer@ffff80 {
  13. compatible = "renesas,8bit-timer";
  14. reg = <0xffff80 10>;
  15. interrupts = <36>;
  16. clocks = <&fclk>;
  17. clock-names = "fck";
  18. };