Back to home page

OSCL-LXR

 
 

    


0001 =================
0002 gx6605s SOC Timer
0003 =================
0004 
0005 The timer is used in gx6605s soc as system timer and the driver
0006 contain clk event and clk source.
0007 
0008 ==============================
0009 timer node bindings definition
0010 ==============================
0011 
0012         Description: Describes gx6605s SOC timer
0013 
0014         PROPERTIES
0015 
0016         - compatible
0017                 Usage: required
0018                 Value type: <string>
0019                 Definition: must be "csky,gx6605s-timer"
0020         - reg
0021                 Usage: required
0022                 Value type: <u32 u32>
0023                 Definition: <phyaddr size> in soc from cpu view
0024         - clocks
0025                 Usage: required
0026                 Value type: phandle + clock specifier cells
0027                 Definition: must be input clk node
0028         - interrupt
0029                 Usage: required
0030                 Value type: <u32>
0031                 Definition: must be timer irq num defined by soc
0032 
0033 Examples:
0034 ---------
0035 
0036         timer0: timer@20a000 {
0037                 compatible = "csky,gx6605s-timer";
0038                 reg = <0x0020a000 0x400>;
0039                 clocks = <&dummy_apb_clk>;
0040                 interrupts = <10>;
0041                 interrupt-parent = <&intc>;
0042         };