renesas,16bit-timer.txt 738 B

12345678910111213141516171819202122232425
  1. * Renesas H8/300 16bit timer
  2. The 16bit timer is a 16bit timer/counter with configurable clock inputs and
  3. programmable compare match.
  4. Required Properties:
  5. - compatible: must contain "renesas,16bit-timer"
  6. - reg: base address and length of the registers block for the timer module.
  7. - interrupts: interrupt-specifier for the timer, IMIA
  8. - clocks: a list of phandle, one for each entry in clock-names.
  9. - clock-names: must contain "peripheral_clk" for the functional clock.
  10. - renesas,channel: timer channel number.
  11. Example:
  12. timer16: timer@ffff68 {
  13. compatible = "reneas,16bit-timer";
  14. reg = <0xffff68 8>, <0xffff60 8>;
  15. interrupts = <24>;
  16. renesas,channel = <0>;
  17. clocks = <&pclk>;
  18. clock-names = "peripheral_clk";
  19. };