blob: 5493b21d271bc6cca403d38ab5fb5b0dcee1466a [file] [log] [blame]
Vlad Zakharovad9b5f72017-03-21 14:49:47 +03001ARC Timer
2
3Required properties:
4
5- compatible : should be "snps,arc-timer".
6- reg : Specifies timer ID, could be either 0 or 1.
7- clocks : Specifies clocks that drives the counter.
8
9Examples:
10
11timer@0 {
12 compatible = "snps,arc-timer";
13 clocks = <&core_clk>;
14 reg = <0>;
15};
16
17timer@1 {
18 compatible = "snps,arc-timer";
19 clocks = <&core_clk>;
20 reg = <1>;
21};
22
23NOTE: if you specify both timers, clocks always should be the same
24as each timer is driven by the same core clock.