renesas,ostm.txt 922 B

123456789101112131415161718192021222324252627282930
  1. * Renesas OS Timer (OSTM)
  2. The OSTM is a multi-channel 32-bit timer/counter with fixed clock
  3. source that can operate in either interval count down timer or free-running
  4. compare match mode.
  5. Channels are independent from each other.
  6. Required Properties:
  7. - compatible: must be one or more of the following:
  8. - "renesas,r7s72100-ostm" for the r7s72100 OSTM
  9. - "renesas,ostm" for any OSTM
  10. This is a fallback for the above renesas,*-ostm entries
  11. - reg: base address and length of the register block for a timer channel.
  12. - interrupts: interrupt specifier for the timer channel.
  13. - clocks: clock specifier for the timer channel.
  14. Example: R7S72100 (RZ/A1H) OSTM node
  15. ostm0: timer@fcfec000 {
  16. compatible = "renesas,r7s72100-ostm", "renesas,ostm";
  17. reg = <0xfcfec000 0x30>;
  18. interrupts = <GIC_SPI 102 IRQ_TYPE_EDGE_RISING>;
  19. clocks = <&mstp5_clks R7S72100_CLK_OSTM0>;
  20. power-domains = <&cpg_clocks>;
  21. };