-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'sunxi-drivers-for-3.18' of git://git.kernel.org/pub/scm/li…
…nux/kernel/git/mripard/linux into next/drivers Pull "Allwinner drivers additions for 3.18" from Maxime Ripard: Nothing major, just handling the RTC driver changes needed for the A31/A23. Signed-off-by: Arnd Bergmann <arnd@arndb.de> * tag 'sunxi-drivers-for-3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux: rtc: sunxi: Depend on platforms sun4i/sun7i that actually have the rtc rtc: sun6i: Add sun6i RTC driver
- Loading branch information
Showing
4 changed files
with
473 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
* sun6i Real Time Clock | ||
|
||
RTC controller for the Allwinner A31 | ||
|
||
Required properties: | ||
- compatible : Should be "allwinner,sun6i-a31-rtc" | ||
- reg : physical base address of the controller and length of | ||
memory mapped region. | ||
- interrupts : IRQ lines for the RTC alarm 0 and alarm 1, in that order. | ||
|
||
Example: | ||
|
||
rtc: rtc@01f00000 { | ||
compatible = "allwinner,sun6i-a31-rtc"; | ||
reg = <0x01f00000 0x54>; | ||
interrupts = <0 40 4>, <0 41 4>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.