Back to home page

OSCL-LXR

 
 

    


0001 * Alphascale asm9260 SoC Real Time Clock
0002 
0003 Required properties:
0004 - compatible: Should be "alphascale,asm9260-rtc"
0005 - reg: Physical base address of the controller and length
0006        of memory mapped region.
0007 - interrupts: IRQ line for the RTC.
0008 - clocks: Reference to the clock entry.
0009 - clock-names: should contain:
0010   * "ahb" for the SoC RTC clock
0011 
0012 Example:
0013 rtc0: rtc@800a0000 {
0014         compatible = "alphascale,asm9260-rtc";
0015         reg = <0x800a0000 0x100>;
0016         clocks = <&acc CLKID_AHB_RTC>;
0017         clock-names = "ahb";
0018         interrupts = <2>;
0019 };