diff options
author | Olof Johansson <olof@lixom.net> | 2013-12-27 13:24:15 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-12-27 13:24:15 -0800 |
commit | a7fb16fad69bf05488ece74988331a5b38c35369 (patch) | |
tree | 1667cffde9f215d53dbbbc359dfdfa9f24df6013 /Documentation | |
parent | 51b052b0d31666e64cb97d3c620c0baff4792d91 (diff) | |
parent | 594c6fb92446a07a4d12337adeb3e9fb3ec7e203 (diff) | |
download | op-kernel-dev-a7fb16fad69bf05488ece74988331a5b38c35369.zip op-kernel-dev-a7fb16fad69bf05488ece74988331a5b38c35369.tar.gz |
Merge tag 'sunxi-drivers-for-3.14' of https://github.com/mripard/linux into next/drivers
From Maxime Ripard:
Allwinner SoC additions for 3.14
Two drivers are merged through for 3.14:
- The A10/A20 RTC driver
- The A31 reset controller IP
* tag 'sunxi-drivers-for-3.14' of https://github.com/mripard/linux:
ARM: sun4i/sun7i: RTC driver
ARM: sun4i/sun7i: DT documentation for RTC driver
reset: Add Allwinner SoCs Reset Controller Driver
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/rtc/sunxi-rtc.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/rtc/sunxi-rtc.txt b/Documentation/devicetree/bindings/rtc/sunxi-rtc.txt new file mode 100644 index 0000000..7cb9dbf --- /dev/null +++ b/Documentation/devicetree/bindings/rtc/sunxi-rtc.txt @@ -0,0 +1,17 @@ +* sun4i/sun7i Real Time Clock + +RTC controller for the Allwinner A10/A20 + +Required properties: +- compatible : Should be "allwinner,sun4i-rtc" or "allwinner,sun7i-a20-rtc" +- reg: physical base address of the controller and length of memory mapped + region. +- interrupts: IRQ line for the RTC. + +Example: + +rtc: rtc@01c20d00 { + compatible = "allwinner,sun4i-rtc"; + reg = <0x01c20d00 0x20>; + interrupts = <24>; +}; |