<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/rtc, branch v2.6.25-rc6</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/drivers/rtc?h=v2.6.25-rc6</id>
<link rel='self' href='https://git.amat.us/linux/atom/drivers/rtc?h=v2.6.25-rc6'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2008-03-05T00:35:09Z</updated>
<entry>
<title>rtc: add support for the S-35390A RTC chip</title>
<updated>2008-03-05T00:35:09Z</updated>
<author>
<name>Byron Bradley</name>
<email>byron.bbradley@gmail.com</email>
</author>
<published>2008-03-04T22:28:25Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=c46288b09e1a5b5741a7e1a575d5f53f79132d39'/>
<id>urn:sha1:c46288b09e1a5b5741a7e1a575d5f53f79132d39</id>
<content type='text'>
This adds basic get/set time support for the Seiko Instruments S-35390A.
This chip communicates using I2C and is used on the QNAP TS-109/TS-209 NAS
devices.

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Byron Bradley &lt;byron.bbradley@gmail.com&gt;
Acked-by: Jean Delvare &lt;khali@linux-fr.org&gt;
Acked-by: David Brownell &lt;david-b@pacbell.net&gt;
Tested-by: Tim Ellis &lt;tim@ngndg.com&gt;
Cc: Alessandro Zummo &lt;a.zummo@towertech.it&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc-cmos: display HPET emulation mode</title>
<updated>2008-02-24T01:12:14Z</updated>
<author>
<name>David Brownell</name>
<email>david-b@pacbell.net</email>
</author>
<published>2008-02-23T23:23:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=c8626a1d7250c593f148530b559c20f6f6af18e8'/>
<id>urn:sha1:c8626a1d7250c593f148530b559c20f6f6af18e8</id>
<content type='text'>
For the "cmos" RTC, have /proc/driver/rtc say whether HPET based IRQ
emulation is in effect.  Given the problems we've had with this particular
hardware maldesign (and the fact that most BIOS code seems not to provide
the IRQ routing needed to use the saner HPET modes), this should help
troubleshooting.

Signed-off-by: David Brownell &lt;dbrownell@users.sourceforge.net&gt;
Cc: Alessandro Zummo &lt;a.zummo@towertech.it&gt;
Cc: Ingo Molnar &lt;mingo@elte.hu&gt;
Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc-r9701.c: silence compiler warning</title>
<updated>2008-02-10T07:27:01Z</updated>
<author>
<name>S.Çağlar Onur</name>
<email>caglar@pardus.org.tr</email>
</author>
<published>2008-02-10T03:10:48Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=9820380a387b1135eace699270e795e3f51fc5dd'/>
<id>urn:sha1:9820380a387b1135eace699270e795e3f51fc5dd</id>
<content type='text'>
Commit 75b6102257874a4ea796af686de2f72cfa0452f9 ("rtc: add support for
Epson RTC-9701JE V4") introduced the warning

  drivers/rtc/rtc-r9701.c: In function `r9701_get_datetime':
  drivers/rtc/rtc-r9701.c:74: warning: unused variable `time'

Signed-off-by: S.Çağlar Onur &lt;caglar@pardus.org.tr&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc: at91sam9 RTC support (RTT and/or RTC)</title>
<updated>2008-02-06T18:41:14Z</updated>
<author>
<name>David Brownell</name>
<email>david-b@pacbell.net</email>
</author>
<published>2008-02-06T09:38:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=4cdf854f7d60498bbda436068a118b95059b244b'/>
<id>urn:sha1:4cdf854f7d60498bbda436068a118b95059b244b</id>
<content type='text'>
AT91sam9 RTC support, primarily in the form of an RTT-as-RTC driver that was
extracted from 2.6.23-at91 patch and updated:

 - Relies on now-merged platform updates, which associate the RTT
   hardware address with each RTT and use the "at91_rtt" name.

 - RTC framework related fixes and cleanups, notably:
    * removed now-needless suspend/resume clock offset logic
    * alarm read/write now respects the "enabled" flag
    * suspend always disables update irqs
    * shutdown (and startup) disables all irqs

 - Misc cleanup:
    * use dev_*() messaging
    * add comments
    * remove globals,
    * ... etc

 - Don't force use of RTT0 and GPBR0.  Either resource may need
   to be used for other purposes (like NO_HZ support).

 - Update "AT91RM9200 RTC" Kconfig to allow it on SAM9RL chips
   (it has both RTT and RTC).

Driver binding uses bus_find_device() to avoid needing any kind of "timer
library" code when there's more than one RTT module.  (This timer can be used
as an RTC, to support NO_HZ operation, or potentially for other stuff.  The
choice is a per-system policy.)

Signed-off-by: David Brownell &lt;dbrownell@users.sourceforge.net&gt;
Cc: Michel Benoit &lt;murpme@gmail.com&gt;
Cc: Nicolas Ferre &lt;nicolas.ferre@rfo.atmel.com&gt;
Cc: Andrew Victor &lt;linux@maxim.org.za&gt;
Cc: Russell King &lt;rmk@arm.linux.org.uk&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc: remove more dev-&gt;power.power_state usage</title>
<updated>2008-02-06T18:41:14Z</updated>
<author>
<name>David Brownell</name>
<email>david-b@pacbell.net</email>
</author>
<published>2008-02-06T09:38:57Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=f618258ad8af0413f08af60bd0eb050562e700fa'/>
<id>urn:sha1:f618258ad8af0413f08af60bd0eb050562e700fa</id>
<content type='text'>
Remove some more references to dev-&gt;power.power_state.  That field is overdue
for removal, but we can't do that while it's still referenced in the kernel.
The only reason to update it was to make the /sys/devices/.../power/state
files (now removed) work better.

Signed-off-by: David Brownell &lt;dbrownell@users.sourceforge.net&gt;
Cc: Russell King &lt;rmk@arm.linux.org.uk&gt;
Cc: Alessandro Zummo &lt;a.zummo@towertech.it&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc ds1307: ds_1340 change init</title>
<updated>2008-02-06T18:41:14Z</updated>
<author>
<name>frederic Rodo</name>
<email>f.rodo@til-technologies.fr</email>
</author>
<published>2008-02-06T09:38:55Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=fcd8db002f784706e9aa190d0b6350f868e61c32'/>
<id>urn:sha1:fcd8db002f784706e9aa190d0b6350f868e61c32</id>
<content type='text'>
For DS140, clear the oscillator fault flag as needed.

Signed-off-by: Frederic RODO &lt;f.rodo@til-technologies.fr&gt;
[ And remove some "sparse" warnings. ]
Signed-off-by: David Brownell &lt;dbrownell@users.sourceforge.net&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc: add support for Epson RTC-9701JE V4</title>
<updated>2008-02-06T18:41:14Z</updated>
<author>
<name>Magnus Damm</name>
<email>magnus.damm@gmail.com</email>
</author>
<published>2008-02-06T09:38:54Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=75b6102257874a4ea796af686de2f72cfa0452f9'/>
<id>urn:sha1:75b6102257874a4ea796af686de2f72cfa0452f9</id>
<content type='text'>
Add support for the Epson RTC-9701JE SPI RTC device.

Signed-off-by: Magnus Damm &lt;damm@igel.co.jp&gt;
Acked-by: Alessandro Zummo &lt;a.zummo@towertech.it&gt;
Acked-by: David Brownell &lt;david-b@pacbell.net&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc: add support for Epson RTC-9701JE V2</title>
<updated>2008-02-06T18:41:14Z</updated>
<author>
<name>Magnus Damm</name>
<email>magnus.damm@gmail.com</email>
</author>
<published>2008-02-06T09:38:53Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=2805b9698445e898ca6e5ffdc132e80d94664a0f'/>
<id>urn:sha1:2805b9698445e898ca6e5ffdc132e80d94664a0f</id>
<content type='text'>
Add support for the Epson RTC-9701JE SPI RTC device.

Signed-off-by: Magnus Damm &lt;damm@igel.co.jp&gt;
Acked-by: Alessandro Zummo &lt;a.zummo@towertech.it&gt;
Acked-by: David Brownell &lt;david-b@pacbell.net&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>rtc: add HPET RTC emulation to RTC_DRV_CMOS</title>
<updated>2008-02-06T18:41:14Z</updated>
<author>
<name>Bernhard Walle</name>
<email>bwalle@suse.de</email>
</author>
<published>2008-02-06T09:38:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=9d8af78b07976d4d84e0df491abd4e9db848d0ad'/>
<id>urn:sha1:9d8af78b07976d4d84e0df491abd4e9db848d0ad</id>
<content type='text'>
That patch adds the RTC emulation of the HPET timer to the new RTC_DRV_CMOS.
The old drivers/char/rtc.ko driver had that functionality and it's important
on new systems.

[akpm@linux-foundation.org: unbreak alpha build]
Signed-off-by: Bernhard Walle &lt;bwalle@suse.de&gt;
Cc: Alessandro Zummo &lt;a.zummo@towertech.it&gt;
Cc: David Brownell &lt;david-b@pacbell.net&gt;
Cc: Ingo Molnar &lt;mingo@elte.hu&gt;
Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;
Cc: Andi Kleen &lt;ak@suse.de&gt;
Cc: john stultz &lt;johnstul@us.ibm.com&gt;
Cc: Robert Picco &lt;Robert.Picco@hp.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>Blackfin RTC driver: convert sync wait to use the irq write complete notice</title>
<updated>2008-02-06T18:41:14Z</updated>
<author>
<name>Mike Frysinger</name>
<email>michael.frysinger@analog.com</email>
</author>
<published>2008-02-06T09:38:51Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=095b9d546f8fdac335989bd3d60405ff3af40ee9'/>
<id>urn:sha1:095b9d546f8fdac335989bd3d60405ff3af40ee9</id>
<content type='text'>
 - thus clearing out the need for spin locks
 - add a small optimization for reading of the rtc field

Signed-off-by: Mike Frysinger &lt;michael.frysinger@analog.com&gt;
Signed-off-by: Bryan Wu &lt;bryan.wu@analog.com&gt;
Acked-by: Alessandro Zummo &lt;alessandro.zummo@towertech.it&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
</feed>
