···11+* Renesas R-Car Multi-Function Timer Pulse Unit 2 (MTU2)22+33+The MTU2 is a multi-purpose, multi-channel timer/counter with configurable44+clock inputs and programmable compare match.55+66+Channels share hardware resources but their counter and compare match value77+are independent. The MTU2 hardware supports five channels indexed from 0 to 4.88+99+Required Properties:1010+1111+ - compatible: must contain "renesas,mtu2"1212+1313+ - reg: base address and length of the registers block for the timer module.1414+1515+ - interrupts: interrupt specifiers for the timer, one for each entry in1616+ interrupt-names.1717+ - interrupt-names: must contain one entry named "tgi?a" for each enabled1818+ channel, where "?" is the channel index expressed as one digit from "0" to1919+ "4".2020+2121+ - clocks: a list of phandle + clock-specifier pairs, one for each entry2222+ in clock-names.2323+ - clock-names: must contain "fck" for the functional clock.2424+2525+2626+Example: R7S72100 (RZ/A1H) MTU2 node2727+2828+ mtu2: timer@fcff0000 {2929+ compatible = "renesas,mtu2";3030+ reg = <0xfcff0000 0x400>;3131+ interrupts = <0 139 IRQ_TYPE_LEVEL_HIGH>,3232+ <0 146 IRQ_TYPE_LEVEL_HIGH>,3333+ <0 150 IRQ_TYPE_LEVEL_HIGH>,3434+ <0 154 IRQ_TYPE_LEVEL_HIGH>,3535+ <0 159 IRQ_TYPE_LEVEL_HIGH>;3636+ interrupt-names = "tgi0a", "tgi1a", "tgi2a", "tgi3a", "tgi4a";3737+ clocks = <&mstp3_clks R7S72100_CLK_MTU2>;3838+ clock-names = "fck";3939+ };