Back to home page

OSCL-LXR

 
 

    


0001 Amlogic Meson6 SoCs Timer Controller
0002 
0003 Required properties:
0004 
0005 - compatible : should be "amlogic,meson6-timer"
0006 - reg : Specifies base physical address and size of the registers.
0007 - interrupts : The four interrupts, one for each timer event
0008 - clocks : phandles to the pclk (system clock) and XTAL clocks
0009 - clock-names : must contain "pclk" and "xtal"
0010 
0011 Example:
0012 
0013 timer@c1109940 {
0014         compatible = "amlogic,meson6-timer";
0015         reg = <0xc1109940 0x14>;
0016         interrupts = <GIC_SPI 10 IRQ_TYPE_EDGE_RISING>,
0017                      <GIC_SPI 11 IRQ_TYPE_EDGE_RISING>,
0018                      <GIC_SPI 6 IRQ_TYPE_EDGE_RISING>,
0019                      <GIC_SPI 29 IRQ_TYPE_EDGE_RISING>;
0020         clocks = <&xtal>, <&clk81>;
0021         clock-names = "xtal", "pclk";
0022 };