43 lines · plain
1=================2gx6605s SOC Timer3=================4 5The timer is used in gx6605s soc as system timer and the driver6contain clk event and clk source.7 8==============================9timer node bindings definition10==============================11 12 Description: Describes gx6605s SOC timer13 14 PROPERTIES15 16 - compatible17 Usage: required18 Value type: <string>19 Definition: must be "csky,gx6605s-timer"20 - reg21 Usage: required22 Value type: <u32 u32>23 Definition: <phyaddr size> in soc from cpu view24 - clocks25 Usage: required26 Value type: phandle + clock specifier cells27 Definition: must be input clk node28 - interrupt29 Usage: required30 Value type: <u32>31 Definition: must be timer irq num defined by soc32 33Examples:34---------35 36 timer0: timer@20a000 {37 compatible = "csky,gx6605s-timer";38 reg = <0x0020a000 0x400>;39 clocks = <&dummy_apb_clk>;40 interrupts = <10>;41 interrupt-parent = <&intc>;42 };43