renesas,tpu.txt 609 B

123456789101112131415161718192021
  1. * Renesas H8/300 Timer Pluse Unit
  2. The TPU is a 16bit timer/counter with configurable clock inputs and
  3. programmable compare match.
  4. This implementation support only cascade mode.
  5. Required Properties:
  6. - compatible: must contain "renesas,tpu"
  7. - reg: base address and length of the registers block in 2 channel.
  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. Example:
  11. tpu: tpu@ffffe0 {
  12. compatible = "renesas,tpu";
  13. reg = <0xffffe0 16>, <0xfffff0 12>;
  14. clocks = <&pclk>;
  15. clock-names = "peripheral_clk";
  16. };