Input: analog - always use ktime functions
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / timer / renesas,tpu.txt
1 * Renesas H8/300 Timer Pulse Unit
2
3 The TPU is a 16bit timer/counter with configurable clock inputs and
4 programmable compare match.
5 This implementation support only cascade mode.
6
7 Required Properties:
8
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.
13
14
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         };