Back to home page

OSCL-LXR

 
 

    


0001 TI-NSPIRE timer
0002 
0003 Required properties:
0004 
0005 - compatible : should be "lsi,zevio-timer".
0006 - reg : The physical base address and size of the timer (always first).
0007 - clocks: phandle to the source clock.
0008 
0009 Optional properties:
0010 
0011 - interrupts : The interrupt number of the first timer.
0012 - reg : The interrupt acknowledgement registers
0013         (always after timer base address)
0014 
0015 If any of the optional properties are not given, the timer is added as a
0016 clock-source only.
0017 
0018 Example:
0019 
0020 timer {
0021         compatible = "lsi,zevio-timer";
0022         reg = <0x900D0000 0x1000>, <0x900A0020 0x8>;
0023         interrupts = <19>;
0024         clocks = <&timer_clk>;
0025 };
0026 
0027 Example (no clock-events):
0028 
0029 timer {
0030         compatible = "lsi,zevio-timer";
0031         reg = <0x900D0000 0x1000>;
0032         clocks = <&timer_clk>;
0033 };