]> git.baikalelectronics.ru Git - kernel.git/commit
rtc: ds1307: add support for the DT property 'wakeup-source'
authorMichael Lange <linuxstuff@milaw.biz>
Thu, 21 Jan 2016 17:10:16 +0000 (18:10 +0100)
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>
Thu, 4 Feb 2016 22:44:17 +0000 (23:44 +0100)
commit2685d82ee567f2cfdd02300a4b5671325b6d298f
tree8b15ad190fd951a22b4e42fcbf4ecc70e15c3f2d
parent19301d25f9cb1ee69b2ea08119e24ab4733e9df7
rtc: ds1307: add support for the DT property 'wakeup-source'

For RTC chips with no IRQ directly connected to the SoC, the RTC chip
can be forced as a wakeup source by stating that explicitly in
the device's .dts file using the "wakeup-source" boolean property.
This will guarantee the 'wakealarm' sysfs entry is available on the
device, if supported by the RTC.

With these changes to the driver rtc-ds1307 and the necessary entries
in the .dts file, I get an working ds1337 RTC on the Witty Pi extension
board by UUGear for the Raspberry Pi.

An example for the entry in the .dts file:

rtc: ds1337@68 {
compatible = "dallas,ds1337";
reg = <0x68>;
wakeup-source;

If the "wakeup-source" property is set, do not request an IRQ.
Set also UIE mode to unsupported, to get a working 'hwclock' binary.

Signed-off-by: Michael Lange <linuxstuff@milaw.biz>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
drivers/rtc/rtc-ds1307.c