Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / timer / renesas,tpu.txt
blob1d46f9de4feb8a8426411cb9ad997c3e1739ca0b
1 * Renesas H8/300 Timer Pulse Unit
3 The TPU is a 16bit timer/counter with configurable clock inputs and
4 programmable compare match.
5 This implementation support only cascade mode.
7 Required Properties:
9   - compatible: must contain "renesas,tpu"
10   - reg: base address and length of the registers block in 2 channel.
11   - clocks: a list of phandle, one for each entry in clock-names.
12   - clock-names: must contain "peripheral_clk" for the functional clock.
15 Example:
16         tpu: tpu@ffffe0 {
17                 compatible = "renesas,tpu";
18                 reg = <0xffffe0 16>, <0xfffff0 12>;
19                 clocks = <&pclk>;
20                 clock-names = "peripheral_clk";
21         };