All of lore.kernel.org
 help / color / mirror / Atom feed
* [rtc-linux] [PATCH 0/5] rtc: Reuse rtc-sh driver to support RZ/A1
@ 2017-03-16 17:51 ` Chris Brandt
  0 siblings, 0 replies; 74+ messages in thread
From: Chris Brandt @ 2017-03-16 17:51 UTC (permalink / raw)
  To: Alessandro Zummo, Alexandre Belloni, Rob Herring, Mark Rutland,
	Simon Horman, Geert Uytterhoeven
  Cc: rtc-linux, devicetree, linux-renesas-soc, Chris Brandt

Basically, the same RTC that was used in SuperH devices is now used in
RZ/A1 devices. Therefore with some slight changes, that driver can be
reused.

Additionally, since ARM architectures require Device Tree configurations,
device tree support has been added.

This was tested on RZ/A1H RSK board. Once the correct time was programmed
into the RTC running off a 32.768kHz crystal, you can retain an accurate
system clock between reboots (hard and soft) until power is finally removed
from the board (there is no batter backup on the RSK board).


Chris Brandt (5):
  rtc: rtc-sh: add support for rza series
  rtc: Add rtc-sh
  ARM: dts: r7s72100: add rtc clock to device tree
  ARM: dts: r7s72100: add rtc to device tree
  ARM: dts: rskrza1: add rtc DT support

 Documentation/devicetree/bindings/rtc/rtc-sh.txt | 19 +++++++++++++++++++
 arch/arm/boot/dts/r7s72100-rskrza1.dts           |  4 ++++
 arch/arm/boot/dts/r7s72100.dtsi                  | 20 ++++++++++++++++++++
 drivers/rtc/Kconfig                              |  4 ++--
 drivers/rtc/rtc-sh.c                             | 20 ++++++++++++++++++++
 include/dt-bindings/clock/r7s72100-clock.h       |  3 +++
 6 files changed, 68 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/rtc/rtc-sh.txt

-- 
2.10.1


-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply	[flat|nested] 74+ messages in thread

end of thread, other threads:[~2017-03-28 13:38 UTC | newest]

Thread overview: 74+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-16 17:51 [rtc-linux] [PATCH 0/5] rtc: Reuse rtc-sh driver to support RZ/A1 Chris Brandt
2017-03-16 17:51 ` Chris Brandt
2017-03-16 17:51 ` Chris Brandt
2017-03-16 17:51 ` [rtc-linux] [PATCH 1/5] rtc: rtc-sh: add support for rza series Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-17  8:22   ` [rtc-linux] " Geert Uytterhoeven
2017-03-17  8:22     ` Geert Uytterhoeven
2017-03-17  8:22     ` Geert Uytterhoeven
2017-03-17 13:17     ` [rtc-linux] " Chris Brandt
2017-03-17 13:17       ` Chris Brandt
2017-03-17 13:17       ` Chris Brandt
2017-03-17 15:11   ` [rtc-linux] " Alexandre Belloni
2017-03-17 15:11     ` Alexandre Belloni
2017-03-16 17:51 ` [rtc-linux] [PATCH 2/5] rtc: Add rtc-sh Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-17  8:17   ` [rtc-linux] " Geert Uytterhoeven
2017-03-17  8:17     ` Geert Uytterhoeven
2017-03-17  8:17     ` Geert Uytterhoeven
2017-03-17 13:16     ` [rtc-linux] " Chris Brandt
2017-03-17 13:16       ` Chris Brandt
2017-03-17 13:16       ` Chris Brandt
2017-03-17 13:21       ` [rtc-linux] " Geert Uytterhoeven
2017-03-17 13:21         ` Geert Uytterhoeven
2017-03-17 13:21         ` Geert Uytterhoeven
2017-03-17 13:41         ` [rtc-linux] " Chris Brandt
2017-03-17 13:41           ` Chris Brandt
2017-03-17 13:41           ` Chris Brandt
2017-03-17 13:55           ` [rtc-linux] " Geert Uytterhoeven
2017-03-17 13:55             ` Geert Uytterhoeven
2017-03-17 13:55             ` Geert Uytterhoeven
2017-03-17 15:05             ` [rtc-linux] " Alexandre Belloni
2017-03-17 15:05               ` Alexandre Belloni
2017-03-17 15:05               ` Alexandre Belloni
2017-03-20 15:05               ` [rtc-linux] " Chris Brandt
2017-03-20 15:05                 ` Chris Brandt
2017-03-20 15:05                 ` Chris Brandt
2017-03-20 16:03                 ` [rtc-linux] " Geert Uytterhoeven
2017-03-20 16:03                   ` Geert Uytterhoeven
2017-03-20 16:03                   ` Geert Uytterhoeven
2017-03-20 16:26                   ` [rtc-linux] " Chris Brandt
2017-03-20 16:26                     ` Chris Brandt
2017-03-20 16:26                     ` Chris Brandt
2017-03-20 22:45                     ` [rtc-linux] " Alexandre Belloni
2017-03-20 22:45                       ` Alexandre Belloni
2017-03-20 22:45                       ` Alexandre Belloni
2017-03-16 17:51 ` [rtc-linux] [PATCH 3/5] ARM: dts: r7s72100: add rtc clock to device tree Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-17  8:27   ` [rtc-linux] " Geert Uytterhoeven
2017-03-17  8:27     ` Geert Uytterhoeven
2017-03-17  8:27     ` Geert Uytterhoeven
2017-03-17 13:20     ` [rtc-linux] " Chris Brandt
2017-03-17 13:20       ` Chris Brandt
2017-03-17 13:20       ` Chris Brandt
2017-03-17 13:33       ` [rtc-linux] " Geert Uytterhoeven
2017-03-17 13:33         ` Geert Uytterhoeven
2017-03-17 13:33         ` Geert Uytterhoeven
2017-03-17 13:48         ` [rtc-linux] " Chris Brandt
2017-03-17 13:48           ` Chris Brandt
2017-03-17 13:48           ` Chris Brandt
2017-03-17 13:57           ` [rtc-linux] " Geert Uytterhoeven
2017-03-17 13:57             ` Geert Uytterhoeven
2017-03-17 13:57             ` Geert Uytterhoeven
2017-03-17 15:16   ` [rtc-linux] " Alexandre Belloni
2017-03-17 15:16     ` Alexandre Belloni
2017-03-17 15:16     ` Alexandre Belloni
2017-03-16 17:51 ` [rtc-linux] [PATCH 4/5] ARM: dts: r7s72100: add rtc " Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-16 17:51 ` [rtc-linux] [PATCH 5/5] ARM: dts: rskrza1: add rtc DT support Chris Brandt
2017-03-16 17:51   ` Chris Brandt
2017-03-16 17:51   ` Chris Brandt
     [not found] ` <20170316175112.27913-1-chris.brandt-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
2017-03-28 13:38   ` [PATCH 0/5] rtc: Reuse rtc-sh driver to support RZ/A1 bobethtarsi3-Re5JQEeQqe8AvxtiuMwx3w

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.