diff options
author | Jonas Jensen <jonas.jensen@gmail.com> | 2013-09-11 17:24:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-11 18:58:54 -0400 |
commit | 453b4c6db59f7f6411a0b5eb58389a1fa129cc9a (patch) | |
tree | e96efb3520d9faf46ca777bc9cdbb4300822b18d /Documentation | |
parent | 4540bae9cd8c03ec4a26eacad468d2f2f2e85cbb (diff) |
rtc: add MOXA ART RTC driver
Add RTC driver for MOXA ART SoCs.
Signed-off-by: Jonas Jensen <jonas.jensen@gmail.com>
Reviewed-by: Mark Brown <broonie@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/rtc/moxa,moxart-rtc.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/rtc/moxa,moxart-rtc.txt b/Documentation/devicetree/bindings/rtc/moxa,moxart-rtc.txt new file mode 100644 index 000000000000..c9d3ac1477fe --- /dev/null +++ b/Documentation/devicetree/bindings/rtc/moxa,moxart-rtc.txt | |||
@@ -0,0 +1,17 @@ | |||
1 | MOXA ART real-time clock | ||
2 | |||
3 | Required properties: | ||
4 | |||
5 | - compatible : Should be "moxa,moxart-rtc" | ||
6 | - gpio-rtc-sclk : RTC sclk gpio, with zero flags | ||
7 | - gpio-rtc-data : RTC data gpio, with zero flags | ||
8 | - gpio-rtc-reset : RTC reset gpio, with zero flags | ||
9 | |||
10 | Example: | ||
11 | |||
12 | rtc: rtc { | ||
13 | compatible = "moxa,moxart-rtc"; | ||
14 | gpio-rtc-sclk = <&gpio 5 0>; | ||
15 | gpio-rtc-data = <&gpio 6 0>; | ||
16 | gpio-rtc-reset = <&gpio 7 0>; | ||
17 | }; | ||