xref: /linux/drivers/rtc/Kconfig (revision 080481f54ef621211d6c75a03dc652fb6ed04222)
17be2c7c9SDavid Brownell#
2c58411e9SAlessandro Zummo# RTC class/drivers configuration
3c58411e9SAlessandro Zummo#
4c58411e9SAlessandro Zummo
5c58411e9SAlessandro Zummoconfig RTC_LIB
6b4d246b1SJohn Stultz	bool
70c86edc0SAlessandro Zummo
8bb35fb20SJan Engelhardtmenuconfig RTC_CLASS
9b4d246b1SJohn Stultz	bool "Real Time Clock"
100c86edc0SAlessandro Zummo	default n
113369465eSAl Viro	depends on !S390 && !UML
120c86edc0SAlessandro Zummo	select RTC_LIB
130c86edc0SAlessandro Zummo	help
140c86edc0SAlessandro Zummo	  Generic RTC class support. If you say yes here, you will
150c86edc0SAlessandro Zummo	  be allowed to plug one or more RTCs to your system. You will
1627ae4104SAdrian Bunk	  probably want to enable one or more of the interfaces below.
170c86edc0SAlessandro Zummo
18bb35fb20SJan Engelhardtif RTC_CLASS
19bb35fb20SJan Engelhardt
200c86edc0SAlessandro Zummoconfig RTC_HCTOSYS
217ca1d488SDavid Brownell	bool "Set system time from RTC on startup and resume"
220c86edc0SAlessandro Zummo	default y
230c86edc0SAlessandro Zummo	help
247ca1d488SDavid Brownell	  If you say yes here, the system time (wall clock) will be set using
257ca1d488SDavid Brownell	  the value read from a specified RTC device. This is useful to avoid
267ca1d488SDavid Brownell	  unnecessary fsck runs at boot time, and to network better.
270c86edc0SAlessandro Zummo
280c86edc0SAlessandro Zummoconfig RTC_HCTOSYS_DEVICE
297ca1d488SDavid Brownell	string "RTC used to set the system time"
309c5150b3SXunlei Pang	depends on RTC_HCTOSYS
310c86edc0SAlessandro Zummo	default "rtc0"
320c86edc0SAlessandro Zummo	help
337ca1d488SDavid Brownell	  The RTC device that will be used to (re)initialize the system
347ca1d488SDavid Brownell	  clock, usually rtc0. Initialization is done when the system
35779d2089SDavid Brownell	  starts up, and when it resumes from a low power state. This
36779d2089SDavid Brownell	  device should record time in UTC, since the kernel won't do
37779d2089SDavid Brownell	  timezone correction.
387ca1d488SDavid Brownell
3955ff1abaSDavid Brownell	  The driver for this RTC device must be loaded before late_initcall
4055ff1abaSDavid Brownell	  functions run, so it must usually be statically linked.
4155ff1abaSDavid Brownell
427ca1d488SDavid Brownell	  This clock should be battery-backed, so that it reads the correct
437ca1d488SDavid Brownell	  time when the system boots from a power-off state. Otherwise, your
447ca1d488SDavid Brownell	  system will need an external clock source (like an NTP server).
457ca1d488SDavid Brownell
467ca1d488SDavid Brownell	  If the clock you specify here is not battery backed, it may still
477ca1d488SDavid Brownell	  be useful to reinitialize system time when resuming from system
487ca1d488SDavid Brownell	  sleep states. Do not specify an RTC here unless it stays powered
497ca1d488SDavid Brownell	  during all this system's supported sleep states.
500c86edc0SAlessandro Zummo
519c5150b3SXunlei Pangconfig RTC_SYSTOHC
529c5150b3SXunlei Pang	bool "Set the RTC time based on NTP synchronization"
539c5150b3SXunlei Pang	default y
549c5150b3SXunlei Pang	help
559c5150b3SXunlei Pang	  If you say yes here, the system time (wall clock) will be stored
569c5150b3SXunlei Pang	  in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11
579c5150b3SXunlei Pang	  minutes if userspace reports synchronized NTP status.
589c5150b3SXunlei Pang
599c5150b3SXunlei Pangconfig RTC_SYSTOHC_DEVICE
609c5150b3SXunlei Pang	string "RTC used to synchronize NTP adjustment"
619c5150b3SXunlei Pang	depends on RTC_SYSTOHC
629c5150b3SXunlei Pang	default RTC_HCTOSYS_DEVICE if RTC_HCTOSYS
639c5150b3SXunlei Pang	default "rtc0"
649c5150b3SXunlei Pang	help
659c5150b3SXunlei Pang	  The RTC device used for NTP synchronization. The main difference
669c5150b3SXunlei Pang	  between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this
679c5150b3SXunlei Pang	  one can sleep when setting time, because it runs in the workqueue
689c5150b3SXunlei Pang	  context.
699c5150b3SXunlei Pang
709e86ecb6SDavid Brownellconfig RTC_DEBUG
719e86ecb6SDavid Brownell	bool "RTC debug support"
729e86ecb6SDavid Brownell	help
739e86ecb6SDavid Brownell	  Say yes here to enable debugging support in the RTC framework
749e86ecb6SDavid Brownell	  and individual RTC drivers.
759e86ecb6SDavid Brownell
760c86edc0SAlessandro Zummocomment "RTC interfaces"
770c86edc0SAlessandro Zummo
78c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS
796341e62bSChristoph Jaeger	bool "/sys/class/rtc/rtcN (sysfs)"
80bb35fb20SJan Engelhardt	depends on SYSFS
818dc08395SKevin Hilman	default RTC_CLASS
82c5c3e192SAlessandro Zummo	help
839e86ecb6SDavid Brownell	  Say yes here if you want to use your RTCs using sysfs interfaces,
849e86ecb6SDavid Brownell	  /sys/class/rtc/rtc0 through /sys/.../rtcN.
85c5c3e192SAlessandro Zummo
86ae64d169SAlessandro Zummo	  If unsure, say Y.
87c5c3e192SAlessandro Zummo
88728a2947SAlessandro Zummoconfig RTC_INTF_PROC
896341e62bSChristoph Jaeger	bool "/proc/driver/rtc (procfs for rtcN)"
90bb35fb20SJan Engelhardt	depends on PROC_FS
918dc08395SKevin Hilman	default RTC_CLASS
92728a2947SAlessandro Zummo	help
9392589c98SKim, Milo	  Say yes here if you want to use your system clock RTC through
9492589c98SKim, Milo	  the proc interface, /proc/driver/rtc.
9592589c98SKim, Milo	  Other RTCs will not be available through that API.
9692589c98SKim, Milo	  If there is no RTC for the system clock, then the first RTC(rtc0)
9792589c98SKim, Milo	  is used by default.
98728a2947SAlessandro Zummo
99ae64d169SAlessandro Zummo	  If unsure, say Y.
100728a2947SAlessandro Zummo
101e824290eSAlessandro Zummoconfig RTC_INTF_DEV
1026341e62bSChristoph Jaeger	bool "/dev/rtcN (character devices)"
1038dc08395SKevin Hilman	default RTC_CLASS
104e824290eSAlessandro Zummo	help
1059e86ecb6SDavid Brownell	  Say yes here if you want to use your RTCs using the /dev
1069e86ecb6SDavid Brownell	  interfaces, which "udev" sets up as /dev/rtc0 through
107ae64d169SAlessandro Zummo	  /dev/rtcN.
108e824290eSAlessandro Zummo
109ae64d169SAlessandro Zummo	  You may want to set up a symbolic link so one of these
110ae64d169SAlessandro Zummo	  can be accessed as /dev/rtc, which is a name
111ae64d169SAlessandro Zummo	  expected by "hwclock" and some other programs. Recent
112ae64d169SAlessandro Zummo	  versions of "udev" are known to set up the symlink for you.
113ae64d169SAlessandro Zummo
114ae64d169SAlessandro Zummo	  If unsure, say Y.
115e824290eSAlessandro Zummo
1166e57b1d6SJohn Stultzconfig RTC_INTF_DEV_UIE_EMUL
1176e57b1d6SJohn Stultz	bool "RTC UIE emulation on dev interface"
1186e57b1d6SJohn Stultz	depends on RTC_INTF_DEV
1196e57b1d6SJohn Stultz	help
1206e57b1d6SJohn Stultz	  Provides an emulation for RTC_UIE if the underlying rtc chip
1216e57b1d6SJohn Stultz	  driver does not expose RTC_UIE ioctls. Those requests generate
1226e57b1d6SJohn Stultz	  once-per-second update interrupts, used for synchronization.
1236e57b1d6SJohn Stultz
1246e57b1d6SJohn Stultz	  The emulation code will read the time from the hardware
1256e57b1d6SJohn Stultz	  clock several times per second, please enable this option
1266e57b1d6SJohn Stultz	  only if you know that you really need it.
1276e57b1d6SJohn Stultz
12809a21e56SAlessandro Zummoconfig RTC_DRV_TEST
12909a21e56SAlessandro Zummo	tristate "Test driver/device"
13009a21e56SAlessandro Zummo	help
13109a21e56SAlessandro Zummo	  If you say yes here you get support for the
13209a21e56SAlessandro Zummo	  RTC test driver. It's a software RTC which can be
13309a21e56SAlessandro Zummo	  used to test the RTC subsystem APIs. It gets
13409a21e56SAlessandro Zummo	  the time from the system clock.
13509a21e56SAlessandro Zummo	  You want this driver only if you are doing development
13609a21e56SAlessandro Zummo	  on the RTC subsystem. Please read the source code
13709a21e56SAlessandro Zummo	  for further details.
13809a21e56SAlessandro Zummo
13909a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
14009a21e56SAlessandro Zummo	  will be called rtc-test.
14109a21e56SAlessandro Zummo
14209a21e56SAlessandro Zummocomment "I2C RTC drivers"
143bb35fb20SJan Engelhardt
144bb35fb20SJan Engelhardtif I2C
14509a21e56SAlessandro Zummo
146008b3040SHaojian Zhuangconfig RTC_DRV_88PM860X
147008b3040SHaojian Zhuang	tristate "Marvell 88PM860x"
1483783055eSAlexandre Belloni	depends on MFD_88PM860X
149008b3040SHaojian Zhuang	help
150008b3040SHaojian Zhuang	  If you say yes here you get support for RTC function in Marvell
151008b3040SHaojian Zhuang	  88PM860x chips.
152008b3040SHaojian Zhuang
153008b3040SHaojian Zhuang	  This driver can also be built as a module. If so, the module
154008b3040SHaojian Zhuang	  will be called rtc-88pm860x.
155008b3040SHaojian Zhuang
1562985c29cSQiao Zhouconfig RTC_DRV_88PM80X
1572985c29cSQiao Zhou	tristate "Marvell 88PM80x"
1583783055eSAlexandre Belloni	depends on MFD_88PM800
1592985c29cSQiao Zhou	help
1602985c29cSQiao Zhou	  If you say yes here you get support for RTC function in Marvell
1612985c29cSQiao Zhou	  88PM80x chips.
1622985c29cSQiao Zhou
1632985c29cSQiao Zhou	  This driver can also be built as a module. If so, the module
1642985c29cSQiao Zhou	  will be called rtc-88pm80x.
1652985c29cSQiao Zhou
1660b2f6228SArnaud Ebalardconfig RTC_DRV_ABB5ZES3
1670b2f6228SArnaud Ebalard	select REGMAP_I2C
1680b2f6228SArnaud Ebalard	tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3"
1690b2f6228SArnaud Ebalard	help
1700b2f6228SArnaud Ebalard	  If you say yes here you get support for the Abracon
1710b2f6228SArnaud Ebalard	  AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip.
1720b2f6228SArnaud Ebalard
1730b2f6228SArnaud Ebalard	  This driver can also be built as a module. If so, the module
1740b2f6228SArnaud Ebalard	  will be called rtc-ab-b5ze-s3.
1750b2f6228SArnaud Ebalard
1764d61ff6bSPhilippe De Muyterconfig RTC_DRV_ABX80X
1774d61ff6bSPhilippe De Muyter	tristate "Abracon ABx80x"
1784d61ff6bSPhilippe De Muyter	help
1794d61ff6bSPhilippe De Muyter	  If you say yes here you get support for Abracon AB080X and AB180X
1804d61ff6bSPhilippe De Muyter	  families of ultra-low-power  battery- and capacitor-backed real-time
1814d61ff6bSPhilippe De Muyter	  clock chips.
1824d61ff6bSPhilippe De Muyter
1834d61ff6bSPhilippe De Muyter	  This driver can also be built as a module. If so, the module
1844d61ff6bSPhilippe De Muyter	  will be called rtc-abx80x.
1854d61ff6bSPhilippe De Muyter
186b4506261SLaxman Dewanganconfig RTC_DRV_AS3722
187b4506261SLaxman Dewangan	tristate "ams AS3722 RTC driver"
188b4506261SLaxman Dewangan	depends on MFD_AS3722
189b4506261SLaxman Dewangan	help
190b4506261SLaxman Dewangan	  If you say yes here you get support for the RTC of ams AS3722 PMIC
191b4506261SLaxman Dewangan	  chips.
192b4506261SLaxman Dewangan
193b4506261SLaxman Dewangan	  This driver can also be built as a module. If so, the module
194b4506261SLaxman Dewangan	  will be called rtc-as3722.
195b4506261SLaxman Dewangan
19609a21e56SAlessandro Zummoconfig RTC_DRV_DS1307
197a2166858SMatthias Fuchs	tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025"
19809a21e56SAlessandro Zummo	help
19909a21e56SAlessandro Zummo	  If you say yes here you get support for various compatible RTC
20009a21e56SAlessandro Zummo	  chips (often with battery backup) connected with I2C. This driver
20109a21e56SAlessandro Zummo	  should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
202a2166858SMatthias Fuchs	  EPSON RX-8025 and probably other chips. In some cases the RTC
203a2166858SMatthias Fuchs	  must already have been initialized (by manufacturing or a
204a2166858SMatthias Fuchs	  bootloader).
20509a21e56SAlessandro Zummo
20609a21e56SAlessandro Zummo	  The first seven registers on these chips hold an RTC, and other
20709a21e56SAlessandro Zummo	  registers may add features such as NVRAM, a trickle charger for
208682d73f6SDavid Brownell	  the RTC/NVRAM backup power, and alarms. NVRAM is visible in
209682d73f6SDavid Brownell	  sysfs, but other chip features may not be available.
21009a21e56SAlessandro Zummo
21109a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
21209a21e56SAlessandro Zummo	  will be called rtc-ds1307.
21309a21e56SAlessandro Zummo
214445c0207SAkinobu Mitaconfig RTC_DRV_DS1307_HWMON
215445c0207SAkinobu Mita	bool "HWMON support for rtc-ds1307"
216445c0207SAkinobu Mita	depends on RTC_DRV_DS1307 && HWMON
217445c0207SAkinobu Mita	depends on !(RTC_DRV_DS1307=y && HWMON=m)
218445c0207SAkinobu Mita	default y
219445c0207SAkinobu Mita	help
220445c0207SAkinobu Mita	  Say Y here if you want to expose temperature sensor data on
221445c0207SAkinobu Mita	  rtc-ds1307 (only DS3231)
222445c0207SAkinobu Mita
223bf4994d7SScott Woodconfig RTC_DRV_DS1374
22409b6bdb3SAlessandro Zummo	tristate "Dallas/Maxim DS1374"
225bf4994d7SScott Wood	help
226bf4994d7SScott Wood	  If you say yes here you get support for Dallas Semiconductor
227bf4994d7SScott Wood	  DS1374 real-time clock chips. If an interrupt is associated
228bf4994d7SScott Wood	  with the device, the alarm functionality is supported.
229bf4994d7SScott Wood
230bf4994d7SScott Wood	  This driver can also be built as a module. If so, the module
231bf4994d7SScott Wood	  will be called rtc-ds1374.
232bf4994d7SScott Wood
233920f91e5SSøren Andersenconfig RTC_DRV_DS1374_WDT
234920f91e5SSøren Andersen	bool "Dallas/Maxim DS1374 watchdog timer"
235920f91e5SSøren Andersen	depends on RTC_DRV_DS1374
236920f91e5SSøren Andersen	help
237920f91e5SSøren Andersen	  If you say Y here you will get support for the
238920f91e5SSøren Andersen	  watchdog timer in the Dallas Semiconductor DS1374
239920f91e5SSøren Andersen	  real-time clock chips.
240920f91e5SSøren Andersen
24109a21e56SAlessandro Zummoconfig RTC_DRV_DS1672
24209a21e56SAlessandro Zummo	tristate "Dallas/Maxim DS1672"
24309a21e56SAlessandro Zummo	help
24409a21e56SAlessandro Zummo	  If you say yes here you get support for the
24509a21e56SAlessandro Zummo	  Dallas/Maxim DS1672 timekeeping chip.
24609a21e56SAlessandro Zummo
24709a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
24809a21e56SAlessandro Zummo	  will be called rtc-ds1672.
24909a21e56SAlessandro Zummo
250dcaf0384SHeiko Stuebnerconfig RTC_DRV_HYM8563
251dcaf0384SHeiko Stuebner	tristate "Haoyu Microelectronics HYM8563"
2523783055eSAlexandre Belloni	depends on OF
253dcaf0384SHeiko Stuebner	help
254dcaf0384SHeiko Stuebner	  Say Y to enable support for the HYM8563 I2C RTC chip. Apart
255dcaf0384SHeiko Stuebner	  from the usual rtc functions it provides a clock output of
256dcaf0384SHeiko Stuebner	  up to 32kHz.
257dcaf0384SHeiko Stuebner
258dcaf0384SHeiko Stuebner	  This driver can also be built as a module. If so, the module
259dcaf0384SHeiko Stuebner	  will be called rtc-hym8563.
260dcaf0384SHeiko Stuebner
26138ae176eSKim, Miloconfig RTC_DRV_LP8788
26238ae176eSKim, Milo	tristate "TI LP8788 RTC driver"
26338ae176eSKim, Milo	depends on MFD_LP8788
26438ae176eSKim, Milo	help
26538ae176eSKim, Milo	  Say Y to enable support for the LP8788 RTC/ALARM driver.
26638ae176eSKim, Milo
26709a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900
26809b6bdb3SAlessandro Zummo	tristate "Maxim MAX6900"
26909a21e56SAlessandro Zummo	help
27009a21e56SAlessandro Zummo	  If you say yes here you will get support for the
27109a21e56SAlessandro Zummo	  Maxim MAX6900 I2C RTC chip.
27209a21e56SAlessandro Zummo
27309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
27409a21e56SAlessandro Zummo	  will be called rtc-max6900.
27509a21e56SAlessandro Zummo
27694c01ab6SStephen Warrenconfig RTC_DRV_MAX8907
27794c01ab6SStephen Warren	tristate "Maxim MAX8907"
27894c01ab6SStephen Warren	depends on MFD_MAX8907
27994c01ab6SStephen Warren	help
28094c01ab6SStephen Warren	  If you say yes here you will get support for the
28194c01ab6SStephen Warren	  RTC of Maxim MAX8907 PMIC.
28294c01ab6SStephen Warren
28394c01ab6SStephen Warren	  This driver can also be built as a module. If so, the module
28494c01ab6SStephen Warren	  will be called rtc-max8907.
28594c01ab6SStephen Warren
286a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925
287a39069f6SHaojian Zhuang	tristate "Maxim MAX8925"
288a39069f6SHaojian Zhuang	depends on MFD_MAX8925
289a39069f6SHaojian Zhuang	help
290a39069f6SHaojian Zhuang	  If you say yes here you will get support for the
291a39069f6SHaojian Zhuang	  RTC of Maxim MAX8925 PMIC.
292a39069f6SHaojian Zhuang
293a39069f6SHaojian Zhuang	  This driver can also be built as a module. If so, the module
294a39069f6SHaojian Zhuang	  will be called rtc-max8925.
295a39069f6SHaojian Zhuang
2969b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998
2979b16c0a4SJoonyoung Shim	tristate "Maxim MAX8998"
2989b16c0a4SJoonyoung Shim	depends on MFD_MAX8998
2999b16c0a4SJoonyoung Shim	help
3009b16c0a4SJoonyoung Shim	  If you say yes here you will get support for the
3019b16c0a4SJoonyoung Shim	  RTC of Maxim MAX8998 PMIC.
3029b16c0a4SJoonyoung Shim
3039b16c0a4SJoonyoung Shim	  This driver can also be built as a module. If so, the module
3049b16c0a4SJoonyoung Shim	  will be called rtc-max8998.
3059b16c0a4SJoonyoung Shim
3065e0b2704SJonghwa Leeconfig RTC_DRV_MAX8997
3075e0b2704SJonghwa Lee	tristate "Maxim MAX8997"
3085e0b2704SJonghwa Lee	depends on MFD_MAX8997
3095e0b2704SJonghwa Lee	help
3105e0b2704SJonghwa Lee	  If you say yes here you will get support for the
3115e0b2704SJonghwa Lee	  RTC of Maxim MAX8997 PMIC.
3125e0b2704SJonghwa Lee
3135e0b2704SJonghwa Lee	  This driver can also be built as a module. If so, the module
3145e0b2704SJonghwa Lee	  will be called rtc-max8997.
3155e0b2704SJonghwa Lee
316fca1dd03SJonghwa Leeconfig RTC_DRV_MAX77686
317fca1dd03SJonghwa Lee	tristate "Maxim MAX77686"
318726fe738SLaxman Dewangan	depends on MFD_MAX77686 || MFD_MAX77620
319fca1dd03SJonghwa Lee	help
320fca1dd03SJonghwa Lee	  If you say yes here you will get support for the
321726fe738SLaxman Dewangan	  RTC of Maxim MAX77686/MAX77620/MAX77802 PMIC.
322fca1dd03SJonghwa Lee
323fca1dd03SJonghwa Lee	  This driver can also be built as a module. If so, the module
324fca1dd03SJonghwa Lee	  will be called rtc-max77686.
325fca1dd03SJonghwa Lee
3263ca1e326SChris Zhongconfig RTC_DRV_RK808
3273ca1e326SChris Zhong	tristate "Rockchip RK808 RTC"
3283ca1e326SChris Zhong	depends on MFD_RK808
3293ca1e326SChris Zhong	help
3303ca1e326SChris Zhong	  If you say yes here you will get support for the
3313ca1e326SChris Zhong	  RTC of RK808 PMIC.
3323ca1e326SChris Zhong
3333ca1e326SChris Zhong	  This driver can also be built as a module. If so, the module
3343ca1e326SChris Zhong	  will be called rk808-rtc.
3353ca1e326SChris Zhong
33609a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372
3375d4529beSPaul Mundt	tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
33809a21e56SAlessandro Zummo	help
33909a21e56SAlessandro Zummo	  If you say yes here you get support for the
3405d4529beSPaul Mundt	  Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
34109a21e56SAlessandro Zummo
34209a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
34309a21e56SAlessandro Zummo	  will be called rtc-rs5c372.
34409a21e56SAlessandro Zummo
34509a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208
34609b6bdb3SAlessandro Zummo	tristate "Intersil ISL1208"
34709a21e56SAlessandro Zummo	help
34809a21e56SAlessandro Zummo	  If you say yes here you get support for the
34909b6bdb3SAlessandro Zummo	  Intersil ISL1208 RTC chip.
35009a21e56SAlessandro Zummo
35109a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
35209a21e56SAlessandro Zummo	  will be called rtc-isl1208.
35309a21e56SAlessandro Zummo
354d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022
355d6c7428fSRoman Fietze	tristate "Intersil ISL12022"
356d6c7428fSRoman Fietze	help
357d6c7428fSRoman Fietze	  If you say yes here you get support for the
358d6c7428fSRoman Fietze	  Intersil ISL12022 RTC chip.
359d6c7428fSRoman Fietze
360d6c7428fSRoman Fietze	  This driver can also be built as a module. If so, the module
361d6c7428fSRoman Fietze	  will be called rtc-isl12022.
362d6c7428fSRoman Fietze
36370e12337SArnaud Ebalardconfig RTC_DRV_ISL12057
36470e12337SArnaud Ebalard	select REGMAP_I2C
36570e12337SArnaud Ebalard	tristate "Intersil ISL12057"
36670e12337SArnaud Ebalard	help
36770e12337SArnaud Ebalard	  If you say yes here you get support for the Intersil ISL12057
36870e12337SArnaud Ebalard	  I2C RTC chip.
36970e12337SArnaud Ebalard
37070e12337SArnaud Ebalard	  This driver can also be built as a module. If so, the module
37170e12337SArnaud Ebalard	  will be called rtc-isl12057.
37270e12337SArnaud Ebalard
37309a21e56SAlessandro Zummoconfig RTC_DRV_X1205
37409a21e56SAlessandro Zummo	tristate "Xicor/Intersil X1205"
37509a21e56SAlessandro Zummo	help
37609a21e56SAlessandro Zummo	  If you say yes here you get support for the
37709a21e56SAlessandro Zummo	  Xicor/Intersil X1205 RTC chip.
37809a21e56SAlessandro Zummo
37909a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
38009a21e56SAlessandro Zummo	  will be called rtc-x1205.
38109a21e56SAlessandro Zummo
38218cb6368SRenaud Cerratoconfig RTC_DRV_PCF2127
38318cb6368SRenaud Cerrato	tristate "NXP PCF2127"
38418cb6368SRenaud Cerrato	help
38518cb6368SRenaud Cerrato	  If you say yes here you get support for the NXP PCF2127/29 RTC
38618cb6368SRenaud Cerrato	  chips.
38718cb6368SRenaud Cerrato
38818cb6368SRenaud Cerrato	  This driver can also be built as a module. If so, the module
38918cb6368SRenaud Cerrato	  will be called rtc-pcf2127.
39018cb6368SRenaud Cerrato
391f803f0d0SThierry Redingconfig RTC_DRV_PCF8523
392f803f0d0SThierry Reding	tristate "NXP PCF8523"
393f803f0d0SThierry Reding	help
394f803f0d0SThierry Reding	  If you say yes here you get support for the NXP PCF8523 RTC
395f803f0d0SThierry Reding	  chips.
396f803f0d0SThierry Reding
397f803f0d0SThierry Reding	  This driver can also be built as a module. If so, the module
398f803f0d0SThierry Reding	  will be called rtc-pcf8523.
399f803f0d0SThierry Reding
400d084885eSSoren Brinkmannconfig RTC_DRV_PCF85063
401d084885eSSoren Brinkmann	tristate "NXP PCF85063"
402d084885eSSoren Brinkmann	help
403d084885eSSoren Brinkmann	  If you say yes here you get support for the PCF85063 RTC chip
404d084885eSSoren Brinkmann
405d084885eSSoren Brinkmann	  This driver can also be built as a module. If so, the module
406d084885eSSoren Brinkmann	  will be called rtc-pcf85063.
407d084885eSSoren Brinkmann
40809a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563
40909a21e56SAlessandro Zummo	tristate "Philips PCF8563/Epson RTC8564"
41009a21e56SAlessandro Zummo	help
41109a21e56SAlessandro Zummo	  If you say yes here you get support for the
41209a21e56SAlessandro Zummo	  Philips PCF8563 RTC chip. The Epson RTC8564
41309a21e56SAlessandro Zummo	  should work as well.
41409a21e56SAlessandro Zummo
41509a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
41609a21e56SAlessandro Zummo	  will be called rtc-pcf8563.
41709a21e56SAlessandro Zummo
41809a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583
41909a21e56SAlessandro Zummo	tristate "Philips PCF8583"
42009a21e56SAlessandro Zummo	help
42109a21e56SAlessandro Zummo	  If you say yes here you get support for the Philips PCF8583
42209a21e56SAlessandro Zummo	  RTC chip found on Acorn RiscPCs. This driver supports the
42309a21e56SAlessandro Zummo	  platform specific method of retrieving the current year from
42409a21e56SAlessandro Zummo	  the RTC's SRAM. It will work on other platforms with the same
42509a21e56SAlessandro Zummo	  chip, but the year will probably have to be tweaked.
42609a21e56SAlessandro Zummo
42709a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
42809a21e56SAlessandro Zummo	  will be called rtc-pcf8583.
42909a21e56SAlessandro Zummo
430caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80
4316b1a5235SWolfram Sang	tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible"
432caaff562SAtsushi Nemoto	help
433d3a126fcSSteven A. Falco	  If you say Y here you will get support for the ST M41T60
434d3a126fcSSteven A. Falco	  and M41T80 RTC chips series. Currently, the following chips are
435f30281f4SDaniel Glockner	  supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
4366b1a5235SWolfram Sang	  M41ST85, M41ST87, and MicroCrystal RV4162.
437caaff562SAtsushi Nemoto
438caaff562SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
439caaff562SAtsushi Nemoto	  will be called rtc-m41t80.
440caaff562SAtsushi Nemoto
441617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT
442d3a126fcSSteven A. Falco	bool "ST M41T65/M41T80 series RTC watchdog timer"
443617780d2SAtsushi Nemoto	depends on RTC_DRV_M41T80
444617780d2SAtsushi Nemoto	help
445617780d2SAtsushi Nemoto	  If you say Y here you will get support for the
446d3a126fcSSteven A. Falco	  watchdog timer in the ST M41T60 and M41T80 RTC chips series.
447617780d2SAtsushi Nemoto
4481ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K
4491ce7c83fSPiotr Ziecik	tristate "TI BQ32000"
4501ce7c83fSPiotr Ziecik	help
4511ce7c83fSPiotr Ziecik	  If you say Y here you will get support for the TI
4521ce7c83fSPiotr Ziecik	  BQ32000 I2C RTC chip.
4531ce7c83fSPiotr Ziecik
4541ce7c83fSPiotr Ziecik	  This driver can also be built as a module. If so, the module
4551ce7c83fSPiotr Ziecik	  will be called rtc-bq32k.
4561ce7c83fSPiotr Ziecik
457afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM
458afd8d0f9SDavid Brownell	tristate "TI DaVinci DM355 EVM RTC"
459afd8d0f9SDavid Brownell	depends on MFD_DM355EVM_MSP
460afd8d0f9SDavid Brownell	help
461afd8d0f9SDavid Brownell	  Supports the RTC firmware in the MSP430 on the DM355 EVM.
462afd8d0f9SDavid Brownell
4630c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330
4646341e62bSChristoph Jaeger	bool "TI TWL92330/Menelaus"
465bb35fb20SJan Engelhardt	depends on MENELAUS
4660c4a59feSTony Lindgren	help
4670c4a59feSTony Lindgren	  If you say yes here you get support for the RTC on the
46801dd2fbfSMatt LaPlante	  TWL92330 "Menelaus" power management chip, used with OMAP2
4690c4a59feSTony Lindgren	  platforms. The support is integrated with the rest of
4700c4a59feSTony Lindgren	  the Menelaus driver; it's not separate module.
4710c4a59feSTony Lindgren
472f96411abSDavid Brownellconfig RTC_DRV_TWL4030
473a6b49ffdSBalaji T K	tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0"
4746b8029faSVenu Byravarasu	depends on TWL4030_CORE
475f96411abSDavid Brownell	help
476f96411abSDavid Brownell	  If you say yes here you get support for the RTC on the
477a6b49ffdSBalaji T K	  TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms.
478f96411abSDavid Brownell
479f96411abSDavid Brownell	  This driver can also be built as a module. If so, the module
480a6b49ffdSBalaji T K	  will be called rtc-twl.
481f96411abSDavid Brownell
482d084885eSSoren Brinkmannconfig RTC_DRV_PALMAS
483d084885eSSoren Brinkmann	tristate "TI Palmas RTC driver"
484d084885eSSoren Brinkmann	depends on MFD_PALMAS
485d084885eSSoren Brinkmann	help
486d084885eSSoren Brinkmann	  If you say yes here you get support for the RTC of TI PALMA series PMIC
487d084885eSSoren Brinkmann	  chips.
488d084885eSSoren Brinkmann
489d084885eSSoren Brinkmann	  This driver can also be built as a module. If so, the module
490d084885eSSoren Brinkmann	  will be called rtc-palma.
491d084885eSSoren Brinkmann
492dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X
493dc59ed38SLaxman Dewangan	tristate "TI TPS6586X RTC driver"
494dc59ed38SLaxman Dewangan	depends on MFD_TPS6586X
495dc59ed38SLaxman Dewangan	help
496a895d57dSMasanari Iida	  TI Power Management IC TPS6586X supports RTC functionality
497dc59ed38SLaxman Dewangan	  along with alarm. This driver supports the RTC driver for
498dc59ed38SLaxman Dewangan	  the TPS6586X RTC module.
499dc59ed38SLaxman Dewangan
5000e783980SVenu Byravarasuconfig RTC_DRV_TPS65910
5010e783980SVenu Byravarasu	tristate "TI TPS65910 RTC driver"
5020e783980SVenu Byravarasu	depends on RTC_CLASS && MFD_TPS65910
5030e783980SVenu Byravarasu	help
5040e783980SVenu Byravarasu	  If you say yes here you get support for the RTC on the
5050e783980SVenu Byravarasu	  TPS65910 chips.
5060e783980SVenu Byravarasu
5070e783980SVenu Byravarasu	  This driver can also be built as a module. If so, the module
5080e783980SVenu Byravarasu	  will be called rtc-tps65910.
5090e783980SVenu Byravarasu
51036d61824SLaxman Dewanganconfig RTC_DRV_TPS80031
51136d61824SLaxman Dewangan	tristate "TI TPS80031/TPS80032 RTC driver"
51236d61824SLaxman Dewangan	depends on MFD_TPS80031
51336d61824SLaxman Dewangan	help
514a895d57dSMasanari Iida	  TI Power Management IC TPS80031 supports RTC functionality
51536d61824SLaxman Dewangan	  along with alarm. This driver supports the RTC driver for
51636d61824SLaxman Dewangan	  the TPS80031 RTC module.
51736d61824SLaxman Dewangan
51890829c08SVenu Byravarasuconfig RTC_DRV_RC5T583
51990829c08SVenu Byravarasu	tristate "RICOH 5T583 RTC driver"
52090829c08SVenu Byravarasu	depends on MFD_RC5T583
52190829c08SVenu Byravarasu	help
52290829c08SVenu Byravarasu	  If you say yes here you get support for the RTC on the
52390829c08SVenu Byravarasu	  RICOH 5T583 chips.
52490829c08SVenu Byravarasu
52590829c08SVenu Byravarasu	  This driver can also be built as a module. If so, the module
52690829c08SVenu Byravarasu	  will be called rtc-rc5t583.
52790829c08SVenu Byravarasu
528c46288b0SByron Bradleyconfig RTC_DRV_S35390A
529c46288b0SByron Bradley	tristate "Seiko Instruments S-35390A"
530d479540dSRandy Dunlap	select BITREVERSE
531c46288b0SByron Bradley	help
532c46288b0SByron Bradley	  If you say yes here you will get support for the Seiko
533c46288b0SByron Bradley	  Instruments S-35390A.
534c46288b0SByron Bradley
535c46288b0SByron Bradley	  This driver can also be built as a module. If so the module
536c46288b0SByron Bradley	  will be called rtc-s35390a.
537c46288b0SByron Bradley
538c6d8f400SSergey Lapinconfig RTC_DRV_FM3130
539c6d8f400SSergey Lapin	tristate "Ramtron FM3130"
540c6d8f400SSergey Lapin	help
541c6d8f400SSergey Lapin	  If you say Y here you will get support for the
542c6d8f400SSergey Lapin	  Ramtron FM3130 RTC chips.
543c6d8f400SSergey Lapin	  Ramtron FM3130 is a chip with two separate devices inside,
544c6d8f400SSergey Lapin	  RTC clock and FRAM. This driver provides only RTC functionality.
545c6d8f400SSergey Lapin
546c6d8f400SSergey Lapin	  This driver can also be built as a module. If so the module
547c6d8f400SSergey Lapin	  will be called rtc-fm3130.
548c6d8f400SSergey Lapin
549ed13d89bSAkshay Bhatconfig RTC_DRV_RX8010
550ed13d89bSAkshay Bhat	tristate "Epson RX8010SJ"
551ed13d89bSAkshay Bhat	depends on I2C
552ed13d89bSAkshay Bhat	help
553ed13d89bSAkshay Bhat	  If you say yes here you get support for the Epson RX8010SJ RTC
554ed13d89bSAkshay Bhat	  chip.
555ed13d89bSAkshay Bhat
556ed13d89bSAkshay Bhat	  This driver can also be built as a module. If so, the module
557ed13d89bSAkshay Bhat	  will be called rtc-rx8010.
558ed13d89bSAkshay Bhat
559a7fa9851SMartyn Welchconfig RTC_DRV_RX8581
560a7fa9851SMartyn Welch	tristate "Epson RX-8581"
561a7fa9851SMartyn Welch	help
562a7fa9851SMartyn Welch	  If you say yes here you will get support for the Epson RX-8581.
563a7fa9851SMartyn Welch
564a7fa9851SMartyn Welch	  This driver can also be built as a module. If so the module
565a7fa9851SMartyn Welch	  will be called rtc-rx8581.
566a7fa9851SMartyn Welch
5673c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025
5683c2b9075SWolfgang Grandegger	tristate "Epson RX-8025SA/NB"
5693c2b9075SWolfgang Grandegger	help
5703c2b9075SWolfgang Grandegger	  If you say yes here you get support for the Epson
5713c2b9075SWolfgang Grandegger	  RX-8025SA/NB RTC chips.
5723c2b9075SWolfgang Grandegger
5733c2b9075SWolfgang Grandegger	  This driver can also be built as a module. If so, the module
5743c2b9075SWolfgang Grandegger	  will be called rtc-rx8025.
5753c2b9075SWolfgang Grandegger
576ae3551f9SMike Rapoportconfig RTC_DRV_EM3027
577ae3551f9SMike Rapoport	tristate "EM Microelectronic EM3027"
578ae3551f9SMike Rapoport	help
579ae3551f9SMike Rapoport	  If you say yes here you get support for the EM
580ae3551f9SMike Rapoport	  Microelectronic EM3027 RTC chips.
581ae3551f9SMike Rapoport
582ae3551f9SMike Rapoport	  This driver can also be built as a module. If so, the module
583ae3551f9SMike Rapoport	  will be called rtc-em3027.
584ae3551f9SMike Rapoport
58552365230SHeiko Schocherconfig RTC_DRV_RV3029C2
586d2c6b874SAlexandre Belloni	tristate "Micro Crystal RV3029"
58752365230SHeiko Schocher	help
58852365230SHeiko Schocher	  If you say yes here you get support for the Micro Crystal
589d2c6b874SAlexandre Belloni	  RV3029 RTC chips.
59052365230SHeiko Schocher
59152365230SHeiko Schocher	  This driver can also be built as a module. If so, the module
59252365230SHeiko Schocher	  will be called rtc-rv3029c2.
59352365230SHeiko Schocher
5941e3929efSAlexandre Belloniconfig RTC_DRV_RV8803
5951e3929efSAlexandre Belloni	tristate "Micro Crystal RV8803"
5961e3929efSAlexandre Belloni	help
5971e3929efSAlexandre Belloni	  If you say yes here you get support for the Micro Crystal
5981e3929efSAlexandre Belloni	  RV8803 RTC chips.
5991e3929efSAlexandre Belloni
6001e3929efSAlexandre Belloni	  This driver can also be built as a module. If so, the module
6011e3929efSAlexandre Belloni	  will be called rtc-rv8803.
6021e3929efSAlexandre Belloni
6035bccae6eSSangbeom Kimconfig RTC_DRV_S5M
6040c5deb1eSKrzysztof Kozlowski	tristate "Samsung S2M/S5M series"
6055bccae6eSSangbeom Kim	depends on MFD_SEC_CORE
6065bccae6eSSangbeom Kim	help
6075bccae6eSSangbeom Kim	  If you say yes here you will get support for the
6080c5deb1eSKrzysztof Kozlowski	  RTC of Samsung S2MPS14 and S5M PMIC series.
6095bccae6eSSangbeom Kim
6105bccae6eSSangbeom Kim	  This driver can also be built as a module. If so, the module
6115bccae6eSSangbeom Kim	  will be called rtc-s5m.
6125bccae6eSSangbeom Kim
613bb35fb20SJan Engelhardtendif # I2C
614bb35fb20SJan Engelhardt
61509a21e56SAlessandro Zummocomment "SPI RTC drivers"
616bb35fb20SJan Engelhardt
617bb35fb20SJan Engelhardtif SPI_MASTER
61809a21e56SAlessandro Zummo
61974d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93
62074d34d4bSVoss, Nikolaus	tristate "ST M41T93"
62174d34d4bSVoss, Nikolaus	help
62274d34d4bSVoss, Nikolaus	  If you say yes here you will get support for the
62374d34d4bSVoss, Nikolaus	  ST M41T93 SPI RTC chip.
62474d34d4bSVoss, Nikolaus
62574d34d4bSVoss, Nikolaus	  This driver can also be built as a module. If so, the module
62674d34d4bSVoss, Nikolaus	  will be called rtc-m41t93.
62774d34d4bSVoss, Nikolaus
6288fc2c767SKim B. Heinoconfig RTC_DRV_M41T94
6298fc2c767SKim B. Heino	tristate "ST M41T94"
6308fc2c767SKim B. Heino	help
6318fc2c767SKim B. Heino	  If you say yes here you will get support for the
6328fc2c767SKim B. Heino	  ST M41T94 SPI RTC chip.
6338fc2c767SKim B. Heino
6348fc2c767SKim B. Heino	  This driver can also be built as a module. If so, the module
6358fc2c767SKim B. Heino	  will be called rtc-m41t94.
6368fc2c767SKim B. Heino
63753e84b67SDavid Brownellconfig RTC_DRV_DS1305
63853e84b67SDavid Brownell	tristate "Dallas/Maxim DS1305/DS1306"
63953e84b67SDavid Brownell	help
64053e84b67SDavid Brownell	  Select this driver to get support for the Dallas/Maxim DS1305
64153e84b67SDavid Brownell	  and DS1306 real time clock chips. These support a trickle
64253e84b67SDavid Brownell	  charger, alarms, and NVRAM in addition to the clock.
64353e84b67SDavid Brownell
64453e84b67SDavid Brownell	  This driver can also be built as a module. If so, the module
64553e84b67SDavid Brownell	  will be called rtc-ds1305.
64653e84b67SDavid Brownell
6471d6316f5SRaghavendra Ganigaconfig RTC_DRV_DS1343
6480dd449b1SRaghavendra Ganiga	select REGMAP_SPI
6491d6316f5SRaghavendra Ganiga	tristate "Dallas/Maxim DS1343/DS1344"
6501d6316f5SRaghavendra Ganiga	help
6511d6316f5SRaghavendra Ganiga	  If you say yes here you get support for the
6521d6316f5SRaghavendra Ganiga	  Dallas/Maxim DS1343 and DS1344 real time clock chips.
6531d6316f5SRaghavendra Ganiga	  Support for trickle charger, alarm is provided.
6541d6316f5SRaghavendra Ganiga
6551d6316f5SRaghavendra Ganiga	  This driver can also be built as a module. If so, the module
6561d6316f5SRaghavendra Ganiga	  will be called rtc-ds1343.
6571d6316f5SRaghavendra Ganiga
658617b26a0SRaghavendra Ganigaconfig RTC_DRV_DS1347
659617b26a0SRaghavendra Ganiga	tristate "Dallas/Maxim DS1347"
660617b26a0SRaghavendra Ganiga	help
661617b26a0SRaghavendra Ganiga	  If you say yes here you get support for the
662617b26a0SRaghavendra Ganiga	  Dallas/Maxim DS1347 chips.
663617b26a0SRaghavendra Ganiga
664617b26a0SRaghavendra Ganiga	  This driver only supports the RTC feature, and not other chip
665617b26a0SRaghavendra Ganiga	  features such as alarms.
666617b26a0SRaghavendra Ganiga
667617b26a0SRaghavendra Ganiga	  This driver can also be built as a module. If so, the module
668617b26a0SRaghavendra Ganiga	  will be called rtc-ds1347.
669617b26a0SRaghavendra Ganiga
67006de1808SMark Jacksonconfig RTC_DRV_DS1390
67106de1808SMark Jackson	tristate "Dallas/Maxim DS1390/93/94"
67206de1808SMark Jackson	help
6737b9b2ef1SAlessandro Zummo	  If you say yes here you get support for the
6747b9b2ef1SAlessandro Zummo	  Dallas/Maxim DS1390/93/94 chips.
67506de1808SMark Jackson
676fa395fb8SIvan Grimaldi	  This driver supports the RTC feature and trickle charging but not
677fa395fb8SIvan Grimaldi	  other chip features such as alarms.
67806de1808SMark Jackson
67906de1808SMark Jackson	  This driver can also be built as a module. If so, the module
68006de1808SMark Jackson	  will be called rtc-ds1390.
68106de1808SMark Jackson
6822805b969SMagnus Dammconfig RTC_DRV_R9701
6832805b969SMagnus Damm	tristate "Epson RTC-9701JE"
6842805b969SMagnus Damm	help
6852805b969SMagnus Damm	  If you say yes here you will get support for the
6862805b969SMagnus Damm	  Epson RTC-9701JE SPI RTC chip.
6872805b969SMagnus Damm
6882805b969SMagnus Damm	  This driver can also be built as a module. If so, the module
6892805b969SMagnus Damm	  will be called rtc-r9701.
6902805b969SMagnus Damm
691d084885eSSoren Brinkmannconfig RTC_DRV_RX4581
692d084885eSSoren Brinkmann	tristate "Epson RX-4581"
693d084885eSSoren Brinkmann	help
694d084885eSSoren Brinkmann	  If you say yes here you will get support for the Epson RX-4581.
695d084885eSSoren Brinkmann
696d084885eSSoren Brinkmann	  This driver can also be built as a module. If so the module
697d084885eSSoren Brinkmann	  will be called rtc-rx4581.
698d084885eSSoren Brinkmann
699d084885eSSoren Brinkmannconfig RTC_DRV_RX6110
700d084885eSSoren Brinkmann	tristate "Epson RX-6110"
701d084885eSSoren Brinkmann	select REGMAP_SPI
702d084885eSSoren Brinkmann	help
703d084885eSSoren Brinkmann	  If you say yes here you will get support for the Epson RX-6610.
704d084885eSSoren Brinkmann
705d084885eSSoren Brinkmann	  This driver can also be built as a module. If so the module
706d084885eSSoren Brinkmann	  will be called rtc-rx6110.
707d084885eSSoren Brinkmann
70809a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348
70909a21e56SAlessandro Zummo	tristate "Ricoh RS5C348A/B"
71009a21e56SAlessandro Zummo	help
71109a21e56SAlessandro Zummo	  If you say yes here you get support for the
71209a21e56SAlessandro Zummo	  Ricoh RS5C348A and RS5C348B RTC chips.
71309a21e56SAlessandro Zummo
71409a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
71509a21e56SAlessandro Zummo	  will be called rtc-rs5c348.
71609a21e56SAlessandro Zummo
717d084885eSSoren Brinkmannconfig RTC_DRV_MAX6902
718d084885eSSoren Brinkmann	tristate "Maxim MAX6902"
719d084885eSSoren Brinkmann	help
720d084885eSSoren Brinkmann	  If you say yes here you will get support for the
721d084885eSSoren Brinkmann	  Maxim MAX6902 SPI RTC chip.
722d084885eSSoren Brinkmann
723d084885eSSoren Brinkmann	  This driver can also be built as a module. If so, the module
724d084885eSSoren Brinkmann	  will be called rtc-max6902.
725d084885eSSoren Brinkmann
7267f3923a1SChris Vergesconfig RTC_DRV_PCF2123
7277f3923a1SChris Verges	tristate "NXP PCF2123"
7287f3923a1SChris Verges	help
7297f3923a1SChris Verges	  If you say yes here you get support for the NXP PCF2123
7307f3923a1SChris Verges	  RTC chip.
7317f3923a1SChris Verges
7327f3923a1SChris Verges	  This driver can also be built as a module. If so, the module
7337f3923a1SChris Verges	  will be called rtc-pcf2123.
7347f3923a1SChris Verges
7351fcbe42cSJosef Gajdusekconfig RTC_DRV_MCP795
7361fcbe42cSJosef Gajdusek	tristate "Microchip MCP795"
7371fcbe42cSJosef Gajdusek	help
7381fcbe42cSJosef Gajdusek	  If you say yes here you will get support for the Microchip MCP795.
7391fcbe42cSJosef Gajdusek
7401fcbe42cSJosef Gajdusek	  This driver can also be built as a module. If so the module
7411fcbe42cSJosef Gajdusek	  will be called rtc-mcp795.
7421fcbe42cSJosef Gajdusek
743bb35fb20SJan Engelhardtendif # SPI_MASTER
744bb35fb20SJan Engelhardt
745*080481f5SAkinobu Mita#
746*080481f5SAkinobu Mita# Helper to resolve issues with configs that have SPI enabled but I2C
747*080481f5SAkinobu Mita# modular.  See SND_SOC_I2C_AND_SPI for more information
748*080481f5SAkinobu Mita#
749*080481f5SAkinobu Mitaconfig RTC_I2C_AND_SPI
750*080481f5SAkinobu Mita	tristate
751*080481f5SAkinobu Mita	default m if I2C=m
752*080481f5SAkinobu Mita	default y if I2C=y
753*080481f5SAkinobu Mita	default y if SPI_MASTER=y
754*080481f5SAkinobu Mita	select REGMAP_I2C if I2C
755*080481f5SAkinobu Mita	select REGMAP_SPI if SPI_MASTER
756*080481f5SAkinobu Mita
757*080481f5SAkinobu Mitacomment "SPI and I2C RTC drivers"
758*080481f5SAkinobu Mita
759*080481f5SAkinobu Mitaconfig RTC_DRV_DS3232
760*080481f5SAkinobu Mita	tristate "Dallas/Maxim DS3232/DS3234"
761*080481f5SAkinobu Mita	depends on RTC_I2C_AND_SPI
762*080481f5SAkinobu Mita	help
763*080481f5SAkinobu Mita	  If you say yes here you get support for Dallas Semiconductor
764*080481f5SAkinobu Mita	  DS3232 and DS3234 real-time clock chips. If an interrupt is associated
765*080481f5SAkinobu Mita	  with the device, the alarm functionality is supported.
766*080481f5SAkinobu Mita
767*080481f5SAkinobu Mita	  This driver can also be built as a module.  If so, the module
768*080481f5SAkinobu Mita	  will be called rtc-ds3232.
769*080481f5SAkinobu Mita
77009a21e56SAlessandro Zummocomment "Platform RTC drivers"
7710c86edc0SAlessandro Zummo
7727be2c7c9SDavid Brownell# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
7737be2c7c9SDavid Brownell# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
7747be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device.
7757be2c7c9SDavid Brownell
7767be2c7c9SDavid Brownellconfig RTC_DRV_CMOS
77709a21e56SAlessandro Zummo	tristate "PC-style 'CMOS'"
77841c9dbf4SGeert Uytterhoeven	depends on X86 || ARM || M32R || PPC || MIPS || SPARC64
779c7500900SDavid Brownell	default y if X86
7807be2c7c9SDavid Brownell	help
7817be2c7c9SDavid Brownell	  Say "yes" here to get direct support for the real time clock
7827be2c7c9SDavid Brownell	  found in every PC or ACPI-based system, and some other boards.
7837be2c7c9SDavid Brownell	  Specifically the original MC146818, compatibles like those in
7847be2c7c9SDavid Brownell	  PC south bridges, the DS12887 or M48T86, some multifunction
7857be2c7c9SDavid Brownell	  or LPC bus chips, and so on.
7867be2c7c9SDavid Brownell
7877be2c7c9SDavid Brownell	  Your system will need to define the platform device used by
7887be2c7c9SDavid Brownell	  this driver, otherwise it won't be accessible. This means
7897be2c7c9SDavid Brownell	  you can safely enable this driver if you don't know whether
7907be2c7c9SDavid Brownell	  or not your board has this kind of hardware.
7917be2c7c9SDavid Brownell
7927be2c7c9SDavid Brownell	  This driver can also be built as a module. If so, the module
7937be2c7c9SDavid Brownell	  will be called rtc-cmos.
7947be2c7c9SDavid Brownell
79585d0b3a5SRichard Hendersonconfig RTC_DRV_ALPHA
79685d0b3a5SRichard Henderson	bool "Alpha PC-style CMOS"
79785d0b3a5SRichard Henderson	depends on ALPHA
79885d0b3a5SRichard Henderson	default y
79985d0b3a5SRichard Henderson	help
80085d0b3a5SRichard Henderson	  Direct support for the real-time clock found on every Alpha
80185d0b3a5SRichard Henderson	  system, specifically MC146818 compatibles.  If in doubt, say Y.
80285d0b3a5SRichard Henderson
8030146f261SFeng Tangconfig RTC_DRV_VRTC
804933b9463SAlan Cox	tristate "Virtual RTC for Intel MID platforms"
805933b9463SAlan Cox	depends on X86_INTEL_MID
806933b9463SAlan Cox	default y if X86_INTEL_MID
8070146f261SFeng Tang
8080146f261SFeng Tang	help
8090146f261SFeng Tang	Say "yes" here to get direct support for the real time clock
8100146f261SFeng Tang	found on Moorestown platforms. The VRTC is a emulated RTC that
8110146f261SFeng Tang	derives its clock source from a real RTC in the PMIC. The MC146818
8120146f261SFeng Tang	style programming interface is mostly conserved, but any
8130146f261SFeng Tang	updates are done via IPC calls to the system controller FW.
8140146f261SFeng Tang
815537739deSThomas Bogendoerferconfig RTC_DRV_DS1216
816537739deSThomas Bogendoerfer	tristate "Dallas DS1216"
817bb35fb20SJan Engelhardt	depends on SNI_RM
818537739deSThomas Bogendoerfer	help
819537739deSThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1216 RTC chips.
820537739deSThomas Bogendoerfer
8215f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286
8225f119f29SThomas Bogendoerfer	tristate "Dallas DS1286"
823706b632dSChen Gang	depends on HAS_IOMEM
8245f119f29SThomas Bogendoerfer	help
8255f119f29SThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1286 RTC chips.
8265f119f29SThomas Bogendoerfer
827739d340dSPaul Mundtconfig RTC_DRV_DS1302
828739d340dSPaul Mundt	tristate "Dallas DS1302"
829739d340dSPaul Mundt	depends on SH_SECUREEDGE5410
830739d340dSPaul Mundt	help
831739d340dSPaul Mundt	  If you say yes here you get support for the Dallas DS1302 RTC chips.
832739d340dSPaul Mundt
8338f26795aSAndrew Sharpconfig RTC_DRV_DS1511
8348f26795aSAndrew Sharp	tristate "Dallas DS1511"
835706b632dSChen Gang	depends on HAS_IOMEM
8368f26795aSAndrew Sharp	help
8378f26795aSAndrew Sharp	  If you say yes here you get support for the
8388f26795aSAndrew Sharp	  Dallas DS1511 timekeeping/watchdog chip.
8398f26795aSAndrew Sharp
8408f26795aSAndrew Sharp	  This driver can also be built as a module. If so, the module
8418f26795aSAndrew Sharp	  will be called rtc-ds1511.
8428f26795aSAndrew Sharp
8439bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553
84409b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1553"
845706b632dSChen Gang	depends on HAS_IOMEM
8469bf5b4f5SAtsushi Nemoto	help
8479bf5b4f5SAtsushi Nemoto	  If you say yes here you get support for the
84809b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1553 timekeeping chip.
8499bf5b4f5SAtsushi Nemoto
8509bf5b4f5SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
8519bf5b4f5SAtsushi Nemoto	  will be called rtc-ds1553.
8529bf5b4f5SAtsushi Nemoto
853aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685_FAMILY
854aaaf5fbfSJoshua Kinard	tristate "Dallas/Maxim DS1685 Family"
855aaaf5fbfSJoshua Kinard	help
856aaaf5fbfSJoshua Kinard	  If you say yes here you get support for the Dallas/Maxim DS1685
857aaaf5fbfSJoshua Kinard	  family of real time chips.  This family includes the DS1685/DS1687,
858aaaf5fbfSJoshua Kinard	  DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and
859aaaf5fbfSJoshua Kinard	  DS17885/DS17887 chips.
860aaaf5fbfSJoshua Kinard
861aaaf5fbfSJoshua Kinard	  This driver can also be built as a module. If so, the module
862aaaf5fbfSJoshua Kinard	  will be called rtc-ds1685.
863aaaf5fbfSJoshua Kinard
864aaaf5fbfSJoshua Kinardchoice
865aaaf5fbfSJoshua Kinard	prompt "Subtype"
866aaaf5fbfSJoshua Kinard	depends on RTC_DRV_DS1685_FAMILY
867aaaf5fbfSJoshua Kinard	default RTC_DRV_DS1685
868aaaf5fbfSJoshua Kinard
869aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685
870aaaf5fbfSJoshua Kinard	bool "DS1685/DS1687"
871aaaf5fbfSJoshua Kinard	help
872aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS1685/DS1687 real time
873aaaf5fbfSJoshua Kinard	  clock chip.
874aaaf5fbfSJoshua Kinard
875aaaf5fbfSJoshua Kinard	  This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30)
876aaaf5fbfSJoshua Kinard	  systems, as well as EPPC-405-UC modules by electronic system design
877aaaf5fbfSJoshua Kinard	  GmbH.
878aaaf5fbfSJoshua Kinard
879aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1689
880aaaf5fbfSJoshua Kinard	bool "DS1689/DS1693"
881aaaf5fbfSJoshua Kinard	help
882aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS1689/DS1693 real time
883aaaf5fbfSJoshua Kinard	  clock chip.
884aaaf5fbfSJoshua Kinard
885aaaf5fbfSJoshua Kinard	  This is an older RTC chip, supplanted by the DS1685/DS1687 above,
886aaaf5fbfSJoshua Kinard	  which supports a few minor features such as Vcc, Vbat, and Power
887aaaf5fbfSJoshua Kinard	  Cycle counters, plus a customer-specific, 8-byte ROM/Serial number.
888aaaf5fbfSJoshua Kinard
889aaaf5fbfSJoshua Kinard	  It also works for the even older DS1688/DS1691 RTC chips, which are
890aaaf5fbfSJoshua Kinard	  virtually the same and carry the same model number.  Both chips
891aaaf5fbfSJoshua Kinard	  have 114 bytes of user NVRAM.
892aaaf5fbfSJoshua Kinard
893aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17285
894aaaf5fbfSJoshua Kinard	bool "DS17285/DS17287"
895aaaf5fbfSJoshua Kinard	help
896aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS17285/DS17287 real time
897aaaf5fbfSJoshua Kinard	  clock chip.
898aaaf5fbfSJoshua Kinard
899aaaf5fbfSJoshua Kinard	  This chip features 2kb of extended NV-SRAM.  It may possibly be
900aaaf5fbfSJoshua Kinard	  found in some SGI O2 systems (rare).
901aaaf5fbfSJoshua Kinard
902aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17485
903aaaf5fbfSJoshua Kinard	bool "DS17485/DS17487"
904aaaf5fbfSJoshua Kinard	help
905aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS17485/DS17487 real time
906aaaf5fbfSJoshua Kinard	  clock chip.
907aaaf5fbfSJoshua Kinard
908aaaf5fbfSJoshua Kinard	  This chip features 4kb of extended NV-SRAM.
909aaaf5fbfSJoshua Kinard
910aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17885
911aaaf5fbfSJoshua Kinard	bool "DS17885/DS17887"
912aaaf5fbfSJoshua Kinard	help
913aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS17885/DS17887 real time
914aaaf5fbfSJoshua Kinard	  clock chip.
915aaaf5fbfSJoshua Kinard
916aaaf5fbfSJoshua Kinard	  This chip features 8kb of extended NV-SRAM.
917aaaf5fbfSJoshua Kinard
918aaaf5fbfSJoshua Kinardendchoice
919aaaf5fbfSJoshua Kinard
920aaaf5fbfSJoshua Kinardconfig RTC_DS1685_PROC_REGS
921aaaf5fbfSJoshua Kinard	bool "Display register values in /proc"
922aaaf5fbfSJoshua Kinard	depends on RTC_DRV_DS1685_FAMILY && PROC_FS
923aaaf5fbfSJoshua Kinard	help
924aaaf5fbfSJoshua Kinard	  Enable this to display a readout of all of the RTC registers in
925aaaf5fbfSJoshua Kinard	  /proc/drivers/rtc.  Keep in mind that this can potentially lead
926aaaf5fbfSJoshua Kinard	  to lost interrupts, as reading Control Register C will clear
927aaaf5fbfSJoshua Kinard	  all pending IRQ flags.
928aaaf5fbfSJoshua Kinard
929aaaf5fbfSJoshua Kinard	  Unless you are debugging this driver, choose N.
930aaaf5fbfSJoshua Kinard
931aaaf5fbfSJoshua Kinardconfig RTC_DS1685_SYSFS_REGS
932aaaf5fbfSJoshua Kinard	bool "SysFS access to RTC register bits"
933aaaf5fbfSJoshua Kinard	depends on RTC_DRV_DS1685_FAMILY && SYSFS
934aaaf5fbfSJoshua Kinard	help
935aaaf5fbfSJoshua Kinard	  Enable this to provide access to the RTC control register bits
936aaaf5fbfSJoshua Kinard	  in /sys.  Some of the bits are read-write, others are read-only.
937aaaf5fbfSJoshua Kinard
938aaaf5fbfSJoshua Kinard	  Keep in mind that reading Control C's bits automatically clears
939aaaf5fbfSJoshua Kinard	  all pending IRQ flags - this can cause lost interrupts.
940aaaf5fbfSJoshua Kinard
941aaaf5fbfSJoshua Kinard	  If you know that you need access to these bits, choose Y, Else N.
942aaaf5fbfSJoshua Kinard
94309b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742
94409b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1742/1743"
945706b632dSChen Gang	depends on HAS_IOMEM
94609b6bdb3SAlessandro Zummo	help
94709b6bdb3SAlessandro Zummo	  If you say yes here you get support for the
94809b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1742/1743 timekeeping chip.
94909b6bdb3SAlessandro Zummo
95009b6bdb3SAlessandro Zummo	  This driver can also be built as a module. If so, the module
95109b6bdb3SAlessandro Zummo	  will be called rtc-ds1742.
95209b6bdb3SAlessandro Zummo
953ad0200f7SJean Delvareconfig RTC_DRV_DS2404
954ad0200f7SJean Delvare	tristate "Maxim/Dallas DS2404"
955ad0200f7SJean Delvare	help
956ad0200f7SJean Delvare	  If you say yes here you get support for the
957ad0200f7SJean Delvare	  Dallas DS2404 RTC chip.
958ad0200f7SJean Delvare
959ad0200f7SJean Delvare	  This driver can also be built as a module. If so, the module
960ad0200f7SJean Delvare	  will be called rtc-ds2404.
961ad0200f7SJean Delvare
962fef931ffSAshish Jangamconfig RTC_DRV_DA9052
963fef931ffSAshish Jangam	tristate "Dialog DA9052/DA9053 RTC"
964fef931ffSAshish Jangam	depends on PMIC_DA9052
965fef931ffSAshish Jangam	help
966fef931ffSAshish Jangam	  Say y here to support the RTC driver for Dialog Semiconductor
967fef931ffSAshish Jangam	  DA9052-BC and DA9053-AA/Bx PMICs.
968fef931ffSAshish Jangam
9696920d996SAshish Jangamconfig RTC_DRV_DA9055
9706920d996SAshish Jangam	tristate "Dialog Semiconductor DA9055 RTC"
9716920d996SAshish Jangam	depends on MFD_DA9055
9726920d996SAshish Jangam	help
9736920d996SAshish Jangam	  If you say yes here you will get support for the
9746920d996SAshish Jangam	  RTC of the Dialog DA9055 PMIC.
9756920d996SAshish Jangam
9766920d996SAshish Jangam	  This driver can also be built as a module. If so, the module
9776920d996SAshish Jangam	  will be called rtc-da9055
9786920d996SAshish Jangam
979c2a57550SOpensource [Steve Twiss]config RTC_DRV_DA9063
98080ca3277SS Twiss	tristate "Dialog Semiconductor DA9063/DA9062 RTC"
98180ca3277SS Twiss	depends on MFD_DA9063 || MFD_DA9062
982c2a57550SOpensource [Steve Twiss]	help
983c2a57550SOpensource [Steve Twiss]	  If you say yes here you will get support for the RTC subsystem
98480ca3277SS Twiss	  for the Dialog Semiconductor PMIC chips DA9063 and DA9062.
985c2a57550SOpensource [Steve Twiss]
986c2a57550SOpensource [Steve Twiss]	  This driver can also be built as a module. If so, the module
987c2a57550SOpensource [Steve Twiss]	  will be called "rtc-da9063".
988c2a57550SOpensource [Steve Twiss]
9895e3fd9e5Sdann frazierconfig RTC_DRV_EFI
9905e3fd9e5Sdann frazier	tristate "EFI RTC"
9917efe6659SMatt Fleming	depends on EFI && !X86
9925e3fd9e5Sdann frazier	help
9935e3fd9e5Sdann frazier	  If you say yes here you will get support for the EFI
9945e3fd9e5Sdann frazier	  Real Time Clock.
9955e3fd9e5Sdann frazier
9965e3fd9e5Sdann frazier	  This driver can also be built as a module. If so, the module
9975e3fd9e5Sdann frazier	  will be called rtc-efi.
9985e3fd9e5Sdann frazier
99902964115SThomas Hommelconfig RTC_DRV_STK17TA8
100002964115SThomas Hommel	tristate "Simtek STK17TA8"
1001706b632dSChen Gang	depends on HAS_IOMEM
100202964115SThomas Hommel	help
100302964115SThomas Hommel	  If you say yes here you get support for the
100402964115SThomas Hommel	  Simtek STK17TA8 timekeeping chip.
100502964115SThomas Hommel
100602964115SThomas Hommel	  This driver can also be built as a module. If so, the module
100702964115SThomas Hommel	  will be called rtc-stk17ta8.
100802964115SThomas Hommel
100909a21e56SAlessandro Zummoconfig RTC_DRV_M48T86
101009a21e56SAlessandro Zummo	tristate "ST M48T86/Dallas DS12887"
101109a21e56SAlessandro Zummo	help
101209a21e56SAlessandro Zummo	  If you say Y here you will get support for the
101309a21e56SAlessandro Zummo	  ST M48T86 and Dallas DS12887 RTC chips.
101409a21e56SAlessandro Zummo
101509a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
101609a21e56SAlessandro Zummo	  will be called rtc-m48t86.
101709a21e56SAlessandro Zummo
1018d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35
1019d1dbd82eSThomas Bogendoerfer	tristate "ST M48T35"
1020706b632dSChen Gang	depends on HAS_IOMEM
1021d1dbd82eSThomas Bogendoerfer	help
1022d1dbd82eSThomas Bogendoerfer	  If you say Y here you will get support for the
1023d1dbd82eSThomas Bogendoerfer	  ST M48T35 RTC chip.
1024d1dbd82eSThomas Bogendoerfer
1025d1dbd82eSThomas Bogendoerfer	  This driver can also be built as a module, if so, the module
1026d1dbd82eSThomas Bogendoerfer	  will be called "rtc-m48t35".
1027d1dbd82eSThomas Bogendoerfer
10282e774c7cSMark Zhanconfig RTC_DRV_M48T59
102994fe7424SKrzysztof Helt	tristate "ST M48T59/M48T08/M48T02"
1030706b632dSChen Gang	depends on HAS_IOMEM
10312e774c7cSMark Zhan	help
10322e774c7cSMark Zhan	  If you say Y here you will get support for the
103394fe7424SKrzysztof Helt	  ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
103494fe7424SKrzysztof Helt
103594fe7424SKrzysztof Helt	  These chips are usually found in Sun SPARC and UltraSPARC
103694fe7424SKrzysztof Helt	  workstations.
10372e774c7cSMark Zhan
10382e774c7cSMark Zhan	  This driver can also be built as a module, if so, the module
10392e774c7cSMark Zhan	  will be called "rtc-m48t59".
10402e774c7cSMark Zhan
10414f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242
10424f9b9bbaSGeert Uytterhoeven	tristate "Oki MSM6242"
1043706b632dSChen Gang	depends on HAS_IOMEM
10444f9b9bbaSGeert Uytterhoeven	help
10454f9b9bbaSGeert Uytterhoeven	  If you say yes here you get support for the Oki MSM6242
10464f9b9bbaSGeert Uytterhoeven	  timekeeping chip. It is used in some Amiga models (e.g. A2000).
10474f9b9bbaSGeert Uytterhoeven
10484f9b9bbaSGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
10494f9b9bbaSGeert Uytterhoeven	  will be called rtc-msm6242.
10504f9b9bbaSGeert Uytterhoeven
1051cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802
1052cca4c231SDavid S. Miller	tristate "TI BQ4802"
1053706b632dSChen Gang	depends on HAS_IOMEM
1054cca4c231SDavid S. Miller	help
1055cca4c231SDavid S. Miller	  If you say Y here you will get support for the TI
1056cca4c231SDavid S. Miller	  BQ4802 RTC chip.
1057cca4c231SDavid S. Miller
1058cca4c231SDavid S. Miller	  This driver can also be built as a module. If so, the module
1059cca4c231SDavid S. Miller	  will be called rtc-bq4802.
1060cca4c231SDavid S. Miller
10614f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01
10624f672ce2SGeert Uytterhoeven	tristate "Ricoh RP5C01"
1063706b632dSChen Gang	depends on HAS_IOMEM
10644f672ce2SGeert Uytterhoeven	help
10654f672ce2SGeert Uytterhoeven	  If you say yes here you get support for the Ricoh RP5C01
10664f672ce2SGeert Uytterhoeven	  timekeeping chip. It is used in some Amiga models (e.g. A3000
10674f672ce2SGeert Uytterhoeven	  and A4000).
10684f672ce2SGeert Uytterhoeven
10694f672ce2SGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
10704f672ce2SGeert Uytterhoeven	  will be called rtc-rp5c01.
10714f672ce2SGeert Uytterhoeven
107209a21e56SAlessandro Zummoconfig RTC_DRV_V3020
107309a21e56SAlessandro Zummo	tristate "EM Microelectronic V3020"
107409a21e56SAlessandro Zummo	help
107509a21e56SAlessandro Zummo	  If you say yes here you will get support for the
107609a21e56SAlessandro Zummo	  EM Microelectronic v3020 RTC chip.
107709a21e56SAlessandro Zummo
107809a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
107909a21e56SAlessandro Zummo	  will be called rtc-v3020.
108009a21e56SAlessandro Zummo
108135c86bf6SMark Brownconfig RTC_DRV_WM831X
108235c86bf6SMark Brown	tristate "Wolfson Microelectronics WM831x RTC"
108335c86bf6SMark Brown	depends on MFD_WM831X
108435c86bf6SMark Brown	help
108535c86bf6SMark Brown	  If you say yes here you will get support for the RTC subsystem
108635c86bf6SMark Brown	  of the Wolfson Microelectronics WM831X series PMICs.
108735c86bf6SMark Brown
108835c86bf6SMark Brown	  This driver can also be built as a module. If so, the module
108935c86bf6SMark Brown	  will be called "rtc-wm831x".
109035c86bf6SMark Brown
1091077eaf5bSMark Brownconfig RTC_DRV_WM8350
1092077eaf5bSMark Brown	tristate "Wolfson Microelectronics WM8350 RTC"
1093077eaf5bSMark Brown	depends on MFD_WM8350
1094077eaf5bSMark Brown	help
1095077eaf5bSMark Brown	  If you say yes here you will get support for the RTC subsystem
1096077eaf5bSMark Brown	  of the Wolfson Microelectronics WM8350.
1097077eaf5bSMark Brown
1098077eaf5bSMark Brown	  This driver can also be built as a module. If so, the module
1099077eaf5bSMark Brown	  will be called "rtc-wm8350".
1100077eaf5bSMark Brown
11010942a71eSRajeev Kumarconfig RTC_DRV_SPEAR
11020942a71eSRajeev Kumar	tristate "SPEAR ST RTC"
11037a587eaeSAlexandre Belloni	depends on PLAT_SPEAR || COMPILE_TEST
11040942a71eSRajeev Kumar	default y
11050942a71eSRajeev Kumar	help
11060942a71eSRajeev Kumar	 If you say Y here you will get support for the RTC found on
11070942a71eSRajeev Kumar	 spear
11080942a71eSRajeev Kumar
1109eae854b2SBalaji Raoconfig RTC_DRV_PCF50633
1110eae854b2SBalaji Rao	depends on MFD_PCF50633
1111eae854b2SBalaji Rao	tristate "NXP PCF50633 RTC"
1112eae854b2SBalaji Rao	help
1113eae854b2SBalaji Rao	  If you say yes here you get support for the RTC subsystem of the
1114eae854b2SBalaji Rao	  NXP PCF50633 used in embedded systems.
1115eae854b2SBalaji Rao
1116bd207cfbSLinus Walleijconfig RTC_DRV_AB3100
1117bd207cfbSLinus Walleij	tristate "ST-Ericsson AB3100 RTC"
1118bd207cfbSLinus Walleij	depends on AB3100_CORE
1119bd207cfbSLinus Walleij	default y if AB3100_CORE
1120bd207cfbSLinus Walleij	help
1121bd207cfbSLinus Walleij	  Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC
1122bd207cfbSLinus Walleij	  support. This chip contains a battery- and capacitor-backed RTC.
1123bd207cfbSLinus Walleij
11240af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500
11250af62f4dSVirupax Sadashivpetimath	tristate "ST-Ericsson AB8500 RTC"
11260af62f4dSVirupax Sadashivpetimath	depends on AB8500_CORE
1127651fb480SUlf Hansson	select RTC_INTF_DEV
1128dc43d4a2SRamesh Chandrasekaran	select RTC_INTF_DEV_UIE_EMUL
11290af62f4dSVirupax Sadashivpetimath	help
11300af62f4dSVirupax Sadashivpetimath	  Select this to enable the ST-Ericsson AB8500 power management IC RTC
11310af62f4dSVirupax Sadashivpetimath	  support. This chip contains a battery- and capacitor-backed RTC.
11320af62f4dSVirupax Sadashivpetimath
1133afd49a7eSWan ZongShunconfig RTC_DRV_NUC900
1134afd49a7eSWan ZongShun	tristate "NUC910/NUC920 RTC driver"
11357a587eaeSAlexandre Belloni	depends on ARCH_W90X900 || COMPILE_TEST
1136afd49a7eSWan ZongShun	help
1137afd49a7eSWan ZongShun	  If you say yes here you get support for the RTC subsystem of the
1138afd49a7eSWan ZongShun	  NUC910/NUC920 used in embedded systems.
1139bd207cfbSLinus Walleij
114016b1d26eSNeelesh Guptaconfig RTC_DRV_OPAL
114116b1d26eSNeelesh Gupta	tristate "IBM OPAL RTC driver"
114216b1d26eSNeelesh Gupta	depends on PPC_POWERNV
114316b1d26eSNeelesh Gupta	default y
114416b1d26eSNeelesh Gupta	help
114516b1d26eSNeelesh Gupta	  If you say yes here you get support for the PowerNV platform RTC
114616b1d26eSNeelesh Gupta	  driver based on OPAL interfaces.
114716b1d26eSNeelesh Gupta
114816b1d26eSNeelesh Gupta	  This driver can also be built as a module. If so, the module
114916b1d26eSNeelesh Gupta	  will be called rtc-opal.
115016b1d26eSNeelesh Gupta
115111143c19SSuneel Garapaticonfig RTC_DRV_ZYNQMP
115211143c19SSuneel Garapati	tristate "Xilinx Zynq Ultrascale+ MPSoC RTC"
115311143c19SSuneel Garapati	depends on OF
115411143c19SSuneel Garapati	help
115511143c19SSuneel Garapati	  If you say yes here you get support for the RTC controller found on
115611143c19SSuneel Garapati	  Xilinx Zynq Ultrascale+ MPSoC.
115711143c19SSuneel Garapati
115809a21e56SAlessandro Zummocomment "on-CPU RTC drivers"
115909a21e56SAlessandro Zummo
1160125e550fSOleksij Rempelconfig RTC_DRV_ASM9260
1161125e550fSOleksij Rempel	tristate "Alphascale asm9260 RTC"
1162125e550fSOleksij Rempel	depends on MACH_ASM9260
1163125e550fSOleksij Rempel	help
1164125e550fSOleksij Rempel	  If you say yes here you get support for the RTC on the
1165125e550fSOleksij Rempel	  Alphascale asm9260 SoC.
1166125e550fSOleksij Rempel
1167125e550fSOleksij Rempel	  This driver can also be built as a module. If so, the module
1168125e550fSOleksij Rempel	  will be called rtc-asm9260.
1169125e550fSOleksij Rempel
11708ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI
11718ecf6c54SMiguel Aguilar	tristate "TI DaVinci RTC"
11727a587eaeSAlexandre Belloni	depends on ARCH_DAVINCI_DM365 || COMPILE_TEST
11738ecf6c54SMiguel Aguilar	help
11748ecf6c54SMiguel Aguilar	  If you say yes here you get support for the RTC on the
11758ecf6c54SMiguel Aguilar	  DaVinci platforms (DM365).
11768ecf6c54SMiguel Aguilar
11778ecf6c54SMiguel Aguilar	  This driver can also be built as a module. If so, the module
11788ecf6c54SMiguel Aguilar	  will be called rtc-davinci.
11798ecf6c54SMiguel Aguilar
1180ba172208SBaruch Siachconfig RTC_DRV_DIGICOLOR
1181ba172208SBaruch Siach	tristate "Conexant Digicolor RTC"
11827a587eaeSAlexandre Belloni	depends on ARCH_DIGICOLOR || COMPILE_TEST
1183ba172208SBaruch Siach	help
1184ba172208SBaruch Siach	  If you say yes here you get support for the RTC on Conexant
1185ba172208SBaruch Siach	  Digicolor platforms. This currently includes the CX92755 SoC.
1186ba172208SBaruch Siach
1187ba172208SBaruch Siach	  This driver can also be built as a module. If so, the module
1188ba172208SBaruch Siach	  will be called rtc-digicolor.
1189ba172208SBaruch Siach
1190b224b9acSFabio Estevamconfig RTC_DRV_IMXDI
1191b224b9acSFabio Estevam	tristate "Freescale IMX DryIce Real Time Clock"
1192ef216ad0SRoland Stigge	depends on ARCH_MXC
1193b224b9acSFabio Estevam	help
1194b224b9acSFabio Estevam	   Support for Freescale IMX DryIce RTC
1195b224b9acSFabio Estevam
1196b224b9acSFabio Estevam	   This driver can also be built as a module, if so, the module
1197b224b9acSFabio Estevam	   will be called "rtc-imxdi".
1198b224b9acSFabio Estevam
1199db68b189SDavid Brownellconfig RTC_DRV_OMAP
12008608976eSLokesh Vutla	tristate "TI OMAP Real Time Clock"
12017a587eaeSAlexandre Belloni	depends on ARCH_OMAP || ARCH_DAVINCI || COMPILE_TEST
1202db68b189SDavid Brownell	help
1203427af9a6SAfzal Mohammed	  Say "yes" here to support the on chip real time clock
12048608976eSLokesh Vutla	  present on TI OMAP1, AM33xx, DA8xx/OMAP-L13x, AM43xx and DRA7xx.
1205427af9a6SAfzal Mohammed
1206427af9a6SAfzal Mohammed	  This driver can also be built as a module, if so, module
1207427af9a6SAfzal Mohammed	  will be called rtc-omap.
1208db68b189SDavid Brownell
120916f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC
121016f4efe7SAtul Dahiya	bool
121116f4efe7SAtul Dahiya	help
121216f4efe7SAtul Dahiya	  This will include RTC support for Samsung SoCs. If
121316f4efe7SAtul Dahiya	  you want to include RTC support for any machine, kindly
121416f4efe7SAtul Dahiya	  select this in the respective mach-XXXX/Kconfig file.
121516f4efe7SAtul Dahiya
12161add6781SBen Dooksconfig RTC_DRV_S3C
12171add6781SBen Dooks	tristate "Samsung S3C series SoC RTC"
12187a587eaeSAlexandre Belloni	depends on ARCH_S3C64XX || HAVE_S3C_RTC || COMPILE_TEST
12191add6781SBen Dooks	help
12201add6781SBen Dooks	  RTC (Realtime Clock) driver for the clock inbuilt into the
12211add6781SBen Dooks	  Samsung S3C24XX series of SoCs. This can provide periodic
12221add6781SBen Dooks	  interrupt rates from 1Hz to 64Hz for user programs, and
12231add6781SBen Dooks	  wakeup from Alarm.
12241add6781SBen Dooks
12251add6781SBen Dooks	  The driver currently supports the common features on all the
12261add6781SBen Dooks	  S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
12271add6781SBen Dooks	  and S3C2442.
12281add6781SBen Dooks
12291add6781SBen Dooks	  This driver can also be build as a module. If so, the module
12301add6781SBen Dooks	  will be called rtc-s3c.
12311add6781SBen Dooks
1232fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX
1233fd507e2fSAlessandro Zummo	tristate "Cirrus Logic EP93XX"
12347a587eaeSAlexandre Belloni	depends on ARCH_EP93XX || COMPILE_TEST
1235fd507e2fSAlessandro Zummo	help
1236fd507e2fSAlessandro Zummo	  If you say yes here you get support for the
1237fd507e2fSAlessandro Zummo	  RTC embedded in the Cirrus Logic EP93XX processors.
1238fd507e2fSAlessandro Zummo
1239fd507e2fSAlessandro Zummo	  This driver can also be built as a module. If so, the module
1240fd507e2fSAlessandro Zummo	  will be called rtc-ep93xx.
1241fd507e2fSAlessandro Zummo
1242e842f1c8SRichard Purdieconfig RTC_DRV_SA1100
12433888c090SHaojian Zhuang	tristate "SA11x0/PXA2xx/PXA910"
12443888c090SHaojian Zhuang	depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP
1245e842f1c8SRichard Purdie	help
1246e842f1c8SRichard Purdie	  If you say Y here you will get access to the real time clock
1247e842f1c8SRichard Purdie	  built into your SA11x0 or PXA2xx CPU.
1248e842f1c8SRichard Purdie
1249e842f1c8SRichard Purdie	  To compile this driver as a module, choose M here: the
1250e842f1c8SRichard Purdie	  module will be called rtc-sa1100.
1251fd507e2fSAlessandro Zummo
1252317a6104SPaul Mundtconfig RTC_DRV_SH
1253317a6104SPaul Mundt	tristate "SuperH On-Chip RTC"
12546b8029faSVenu Byravarasu	depends on SUPERH && HAVE_CLK
1255317a6104SPaul Mundt	help
1256317a6104SPaul Mundt	  Say Y here to enable support for the on-chip RTC found in
1257317a6104SPaul Mundt	  most SuperH processors.
1258317a6104SPaul Mundt
1259317a6104SPaul Mundt	  To compile this driver as a module, choose M here: the
1260317a6104SPaul Mundt	  module will be called rtc-sh.
1261317a6104SPaul Mundt
12628417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX
12633e16f6afSAlessandro Zummo	tristate "NEC VR41XX"
12647a587eaeSAlexandre Belloni	depends on CPU_VR41XX || COMPILE_TEST
12653e16f6afSAlessandro Zummo	help
12663e16f6afSAlessandro Zummo	  If you say Y here you will get access to the real time clock
12673e16f6afSAlessandro Zummo	  built into your NEC VR41XX CPU.
12683e16f6afSAlessandro Zummo
12693e16f6afSAlessandro Zummo	  To compile this driver as a module, choose M here: the
12703e16f6afSAlessandro Zummo	  module will be called rtc-vr41xx.
12718417eb7aSYoichi Yuasa
1272a190901cSRussell Kingconfig RTC_DRV_PL030
1273a190901cSRussell King	tristate "ARM AMBA PL030 RTC"
1274a190901cSRussell King	depends on ARM_AMBA
1275a190901cSRussell King	help
1276a190901cSRussell King	  If you say Y here you will get access to ARM AMBA
1277a190901cSRussell King	  PrimeCell PL030 RTC found on certain ARM SOCs.
1278a190901cSRussell King
1279a190901cSRussell King	  To compile this driver as a module, choose M here: the
1280a190901cSRussell King	  module will be called rtc-pl030.
1281a190901cSRussell King
12828ae6e163SDeepak Saxenaconfig RTC_DRV_PL031
12838ae6e163SDeepak Saxena	tristate "ARM AMBA PL031 RTC"
1284bb35fb20SJan Engelhardt	depends on ARM_AMBA
12858ae6e163SDeepak Saxena	help
12868ae6e163SDeepak Saxena	  If you say Y here you will get access to ARM AMBA
128709a21e56SAlessandro Zummo	  PrimeCell PL031 RTC found on certain ARM SOCs.
12888ae6e163SDeepak Saxena
12898ae6e163SDeepak Saxena	  To compile this driver as a module, choose M here: the
12908ae6e163SDeepak Saxena	  module will be called rtc-pl031.
12918ae6e163SDeepak Saxena
1292fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X
1293fa04e78bSHans-Christian Egtvedt	tristate "AT32AP700X series RTC"
12947a587eaeSAlexandre Belloni	depends on PLATFORM_AT32AP || COMPILE_TEST
1295fa04e78bSHans-Christian Egtvedt	help
1296fa04e78bSHans-Christian Egtvedt	  Driver for the internal RTC (Realtime Clock) on Atmel AVR32
1297fa04e78bSHans-Christian Egtvedt	  AT32AP700x family processors.
1298fa04e78bSHans-Christian Egtvedt
12997fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200
130024cecc1bSNicolas Ferre	tristate "AT91RM9200 or some AT91SAM9 RTC"
13017a587eaeSAlexandre Belloni	depends on ARCH_AT91 || COMPILE_TEST
1302788b1fc6SAndrew Victor	help
13034cdf854fSDavid Brownell	  Driver for the internal RTC (Realtime Clock) module found on
130424cecc1bSNicolas Ferre	  Atmel AT91RM9200's and some  AT91SAM9 chips. On AT91SAM9 chips
13054cdf854fSDavid Brownell	  this is powered by the backup power supply.
13064cdf854fSDavid Brownell
13074cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9
13083969eb48SBoris BREZILLON	tristate "AT91SAM9 RTT as RTC"
13097a587eaeSAlexandre Belloni	depends on ARCH_AT91 || COMPILE_TEST
131043e112bbSBoris BREZILLON	select MFD_SYSCON
13114cdf854fSDavid Brownell	help
13123969eb48SBoris BREZILLON	  Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which
13133969eb48SBoris BREZILLON	  can be used as an RTC thanks to the backup power supply (e.g. a
13143969eb48SBoris BREZILLON	  small coin cell battery) which keeps this block and the GPBR
13153969eb48SBoris BREZILLON	  (General Purpose Backup Registers) block powered when the device
13163969eb48SBoris BREZILLON	  is shutdown.
13173969eb48SBoris BREZILLON	  Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd
13183969eb48SBoris BREZILLON	  probably want to use the real RTC block instead of the "RTT as an
13193969eb48SBoris BREZILLON	  RTC" driver.
13204cdf854fSDavid Brownell
132145fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX
132245fd8a0cSManuel Lauss	tristate "Au1xxx Counter0 RTC support"
132342a4f17dSManuel Lauss	depends on MIPS_ALCHEMY
132445fd8a0cSManuel Lauss	help
132545fd8a0cSManuel Lauss	  This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
132645fd8a0cSManuel Lauss	  counter) to be used as a RTC.
132745fd8a0cSManuel Lauss
132845fd8a0cSManuel Lauss	  This driver can also be built as a module. If so, the module
132945fd8a0cSManuel Lauss	  will be called rtc-au1xxx.
133045fd8a0cSManuel Lauss
13318cc75c9aSWu, Bryanconfig RTC_DRV_BFIN
13328cc75c9aSWu, Bryan	tristate "Blackfin On-Chip RTC"
13337f604599SGraf Yang	depends on BLACKFIN && !BF561
13348cc75c9aSWu, Bryan	help
13358cc75c9aSWu, Bryan	  If you say yes here you will get support for the
13368cc75c9aSWu, Bryan	  Blackfin On-Chip Real Time Clock.
13378cc75c9aSWu, Bryan
13388cc75c9aSWu, Bryan	  This driver can also be built as a module. If so, the module
13398cc75c9aSWu, Bryan	  will be called rtc-bfin.
13408cc75c9aSWu, Bryan
1341e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313
1342e9f2bd81SNobuhiro Iwamatsu	tristate "Ricoh RS5C313"
1343bb35fb20SJan Engelhardt	depends on SH_LANDISK
1344e9f2bd81SNobuhiro Iwamatsu	help
1345e9f2bd81SNobuhiro Iwamatsu	  If you say yes here you get support for the Ricoh RS5C313 RTC chips.
1346e9f2bd81SNobuhiro Iwamatsu
13473afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC
13483afe6d04SGeert Uytterhoeven	tristate "Generic RTC support"
13493afe6d04SGeert Uytterhoeven	# Please consider writing a new RTC driver instead of using the generic
13503afe6d04SGeert Uytterhoeven	# RTC abstraction
13517a587eaeSAlexandre Belloni	depends on PARISC || M68K || PPC || SUPERH32 || COMPILE_TEST
13529eb16864SKyle McMartin	help
13533afe6d04SGeert Uytterhoeven	  Say Y or M here to enable RTC support on systems using the generic
13543afe6d04SGeert Uytterhoeven	  RTC abstraction. If you do not know what you are doing, you should
13559eb16864SKyle McMartin	  just say Y.
13569eb16864SKyle McMartin
1357dc944368SRobert Jarzmikconfig RTC_DRV_PXA
1358dc944368SRobert Jarzmik	tristate "PXA27x/PXA3xx"
1359dc944368SRobert Jarzmik	depends on ARCH_PXA
13603cdf4ad9SRob Herring	select RTC_DRV_SA1100
1361dc944368SRobert Jarzmik	help
1362dc944368SRobert Jarzmik         If you say Y here you will get access to the real time clock
13633cdf4ad9SRob Herring         built into your PXA27x or PXA3xx CPU. This RTC is actually 2 RTCs
13643cdf4ad9SRob Herring         consisting of an SA1100 compatible RTC and the extended PXA RTC.
1365dc944368SRobert Jarzmik
1366dc944368SRobert Jarzmik	 This RTC driver uses PXA RTC registers available since pxa27x
1367dc944368SRobert Jarzmik	 series (RDxR, RYxR) instead of legacy RCNR, RTAR.
1368dc944368SRobert Jarzmik
1369f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500
1370f77fbdf9SAlexey Charkov	tristate "VIA/WonderMedia 85xx SoC RTC"
13717a587eaeSAlexandre Belloni	depends on ARCH_VT8500 || COMPILE_TEST
1372f77fbdf9SAlexey Charkov	help
1373f77fbdf9SAlexey Charkov	  If you say Y here you will get access to the real time clock
1374f77fbdf9SAlexey Charkov	  built into your VIA VT8500 SoC or its relatives.
1375f77fbdf9SAlexey Charkov
1376dc944368SRobert Jarzmik
13777a138edeSDavid S. Millerconfig RTC_DRV_SUN4V
13787a138edeSDavid S. Miller	bool "SUN4V Hypervisor RTC"
13797a138edeSDavid S. Miller	depends on SPARC64
13807a138edeSDavid S. Miller	help
13817a138edeSDavid S. Miller	  If you say Y here you will get support for the Hypervisor
13827a138edeSDavid S. Miller	  based RTC on SUN4V systems.
13837a138edeSDavid S. Miller
13849765d2d9SChen-Yu Tsaiconfig RTC_DRV_SUN6I
13859765d2d9SChen-Yu Tsai	tristate "Allwinner A31 RTC"
13867a587eaeSAlexandre Belloni	default MACH_SUN6I || MACH_SUN8I || COMPILE_TEST
13872863934eSAndre Przywara	depends on ARCH_SUNXI
13889765d2d9SChen-Yu Tsai	help
13892863934eSAndre Przywara	  If you say Y here you will get support for the RTC found in
13902863934eSAndre Przywara	  some Allwinner SoCs like the A31 or the A64.
13919765d2d9SChen-Yu Tsai
1392594c6fb9SCarlo Caioneconfig RTC_DRV_SUNXI
1393594c6fb9SCarlo Caione	tristate "Allwinner sun4i/sun7i RTC"
13947a587eaeSAlexandre Belloni	depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST
1395594c6fb9SCarlo Caione	help
1396594c6fb9SCarlo Caione	  If you say Y here you will get support for the RTC found on
1397594c6fb9SCarlo Caione	  Allwinner A10/A20.
1398594c6fb9SCarlo Caione
1399de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE
1400de2cf332SDavid S. Miller	bool "Starfire RTC"
1401de2cf332SDavid S. Miller	depends on SPARC64
1402de2cf332SDavid S. Miller	help
1403de2cf332SDavid S. Miller	  If you say Y here you will get support for the RTC found on
1404de2cf332SDavid S. Miller	  Starfire systems.
1405de2cf332SDavid S. Miller
14060e149233SAtsushi Nemotoconfig RTC_DRV_TX4939
14070e149233SAtsushi Nemoto	tristate "TX4939 SoC"
14080e149233SAtsushi Nemoto	depends on SOC_TX4939
14090e149233SAtsushi Nemoto	help
14100e149233SAtsushi Nemoto	  Driver for the internal RTC (Realtime Clock) module found on
14110e149233SAtsushi Nemoto	  Toshiba TX4939 SoC.
14120e149233SAtsushi Nemoto
1413defb4514SSaeed Bisharaconfig RTC_DRV_MV
1414defb4514SSaeed Bishara	tristate "Marvell SoC RTC"
14157a587eaeSAlexandre Belloni	depends on ARCH_DOVE || ARCH_MVEBU || COMPILE_TEST
1416defb4514SSaeed Bishara	help
1417defb4514SSaeed Bishara	  If you say yes here you will get support for the in-chip RTC
1418defb4514SSaeed Bishara	  that can be found in some of Marvell's SoC devices, such as
1419defb4514SSaeed Bishara	  the Kirkwood 88F6281 and 88F6192.
1420defb4514SSaeed Bishara
1421defb4514SSaeed Bishara	  This driver can also be built as a module. If so, the module
1422defb4514SSaeed Bishara	  will be called rtc-mv.
1423defb4514SSaeed Bishara
1424a3a42806SGregory CLEMENTconfig RTC_DRV_ARMADA38X
1425a3a42806SGregory CLEMENT	tristate "Armada 38x Marvell SoC RTC"
14267a587eaeSAlexandre Belloni	depends on ARCH_MVEBU || COMPILE_TEST
1427a3a42806SGregory CLEMENT	help
1428a3a42806SGregory CLEMENT	  If you say yes here you will get support for the in-chip RTC
1429a3a42806SGregory CLEMENT	  that can be found in the Armada 38x Marvell's SoC device
1430a3a42806SGregory CLEMENT
1431a3a42806SGregory CLEMENT	  This driver can also be built as a module. If so, the module
1432a3a42806SGregory CLEMENT	  will be called armada38x-rtc.
1433a3a42806SGregory CLEMENT
143498a9bb5bSHans Ulli Krollconfig RTC_DRV_GEMINI
143598a9bb5bSHans Ulli Kroll	tristate "Gemini SoC RTC"
143698a9bb5bSHans Ulli Kroll	depends on ARCH_GEMINI || COMPILE_TEST
143798a9bb5bSHans Ulli Kroll	depends on HAS_IOMEM
143898a9bb5bSHans Ulli Kroll	help
143998a9bb5bSHans Ulli Kroll	  If you say Y here you will get support for the
144098a9bb5bSHans Ulli Kroll	  RTC found on Gemini SoC's.
144198a9bb5bSHans Ulli Kroll
144298a9bb5bSHans Ulli Kroll	  This driver can also be built as a module. If so, the module
144398a9bb5bSHans Ulli Kroll	  will be called rtc-gemini.
144498a9bb5bSHans Ulli Kroll
14450b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3
14460b5f037aSGeert Uytterhoeven	tristate "PS3 RTC"
14470b5f037aSGeert Uytterhoeven	depends on PPC_PS3
14480b5f037aSGeert Uytterhoeven	help
14490b5f037aSGeert Uytterhoeven	  If you say yes here you will get support for the RTC on PS3.
14500b5f037aSGeert Uytterhoeven
14510b5f037aSGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
14520b5f037aSGeert Uytterhoeven	  will be called rtc-ps3.
14530b5f037aSGeert Uytterhoeven
1454aa958f57SLinus Walleijconfig RTC_DRV_COH901331
1455aa958f57SLinus Walleij	tristate "ST-Ericsson COH 901 331 RTC"
14567a587eaeSAlexandre Belloni	depends on ARCH_U300 || COMPILE_TEST
1457aa958f57SLinus Walleij	help
1458aa958f57SLinus Walleij	  If you say Y here you will get access to ST-Ericsson
1459aa958f57SLinus Walleij	  COH 901 331 RTC clock found in some ST-Ericsson Mobile
1460aa958f57SLinus Walleij	  Platforms.
1461aa958f57SLinus Walleij
1462aa958f57SLinus Walleij	  This driver can also be built as a module. If so, the module
1463aa958f57SLinus Walleij	  will be called "rtc-coh901331".
1464aa958f57SLinus Walleij
1465aa958f57SLinus Walleij
1466df17f631Sdmitry pervushinconfig RTC_DRV_STMP
146746b21218SWolfram Sang	tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC"
14687a587eaeSAlexandre Belloni	depends on ARCH_MXS || COMPILE_TEST
146920d048acSAlexandre Belloni	select STMP_DEVICE
1470df17f631Sdmitry pervushin	help
1471df17f631Sdmitry pervushin	  If you say yes here you will get support for the onboard
147246b21218SWolfram Sang	  STMP3xxx/i.MX23/i.MX28 RTC.
1473df17f631Sdmitry pervushin
1474df17f631Sdmitry pervushin	  This driver can also be built as a module. If so, the module
1475df17f631Sdmitry pervushin	  will be called rtc-stmp3xxx.
1476df17f631Sdmitry pervushin
1477d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP
1478d3c7a3f7SDaniel Ribeiro	tristate "PCAP RTC"
1479d3c7a3f7SDaniel Ribeiro	depends on EZX_PCAP
1480d3c7a3f7SDaniel Ribeiro	help
1481d3c7a3f7SDaniel Ribeiro	  If you say Y here you will get support for the RTC found on
1482d3c7a3f7SDaniel Ribeiro	  the PCAP2 ASIC used on some Motorola phones.
1483d3c7a3f7SDaniel Ribeiro
14841c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX
14851c97872bSUwe Kleine-König	depends on MFD_MC13XXX
14861c97872bSUwe Kleine-König	tristate "Freescale MC13xxx RTC"
148743299f28SUwe Kleine-König	help
14881c97872bSUwe Kleine-König	  This enables support for the RTCs found on Freescale's PMICs
14891c97872bSUwe Kleine-König	  MC13783 and MC13892.
149043299f28SUwe Kleine-König
149150aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121
149250aae724SAnatolij Gustschin	tristate "Freescale MPC5121 built-in RTC"
1493955dbea3SDmitry Eremin-Solenikov	depends on PPC_MPC512x || PPC_MPC52xx
149450aae724SAnatolij Gustschin	help
149550aae724SAnatolij Gustschin	  If you say yes here you will get support for the
1496955dbea3SDmitry Eremin-Solenikov	  built-in RTC on MPC5121 or on MPC5200.
149750aae724SAnatolij Gustschin
149850aae724SAnatolij Gustschin	  This driver can also be built as a module. If so, the module
149950aae724SAnatolij Gustschin	  will be called rtc-mpc5121.
150050aae724SAnatolij Gustschin
15013bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740
15023bf0eea8SLars-Peter Clausen	tristate "Ingenic JZ4740 SoC"
15037a587eaeSAlexandre Belloni	depends on MACH_JZ4740 || COMPILE_TEST
15043bf0eea8SLars-Peter Clausen	help
15053bf0eea8SLars-Peter Clausen	  If you say yes here you get support for the Ingenic JZ4740 SoC RTC
15063bf0eea8SLars-Peter Clausen	  controller.
15073bf0eea8SLars-Peter Clausen
15083bf0eea8SLars-Peter Clausen	  This driver can also be buillt as a module. If so, the module
15093bf0eea8SLars-Peter Clausen	  will be called rtc-jz4740.
15103bf0eea8SLars-Peter Clausen
1511c28b42e3SJoachim Eastwoodconfig RTC_DRV_LPC24XX
1512c28b42e3SJoachim Eastwood	tristate "NXP RTC for LPC178x/18xx/408x/43xx"
1513c28b42e3SJoachim Eastwood	depends on ARCH_LPC18XX || COMPILE_TEST
1514c28b42e3SJoachim Eastwood	depends on OF && HAS_IOMEM
1515c28b42e3SJoachim Eastwood	help
1516c28b42e3SJoachim Eastwood	  This enables support for the NXP RTC found which can be found on
1517c28b42e3SJoachim Eastwood	  NXP LPC178x/18xx/408x/43xx devices.
1518c28b42e3SJoachim Eastwood
1519c28b42e3SJoachim Eastwood	  If you have one of the devices above enable this driver to use
1520c28b42e3SJoachim Eastwood	  the hardware RTC. This driver can also be buillt as a module. If
1521c28b42e3SJoachim Eastwood	  so, the module will be called rtc-lpc24xx.
1522c28b42e3SJoachim Eastwood
15239aa449beSKevin Wellsconfig RTC_DRV_LPC32XX
15247a587eaeSAlexandre Belloni	depends on ARCH_LPC32XX || COMPILE_TEST
15259aa449beSKevin Wells	tristate "NXP LPC32XX RTC"
15269aa449beSKevin Wells	help
15279aa449beSKevin Wells	  This enables support for the NXP RTC in the LPC32XX
15289aa449beSKevin Wells
15299aa449beSKevin Wells	  This driver can also be buillt as a module. If so, the module
15309aa449beSKevin Wells	  will be called rtc-lpc32xx.
15319aa449beSKevin Wells
15329a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX
15339a9a54adSAnirudh Ghayal	tristate "Qualcomm PMIC8XXX RTC"
15347a587eaeSAlexandre Belloni	depends on MFD_PM8XXX || MFD_SPMI_PMIC || COMPILE_TEST
15359a9a54adSAnirudh Ghayal	help
15369a9a54adSAnirudh Ghayal	  If you say yes here you get support for the
15379a9a54adSAnirudh Ghayal	  Qualcomm PMIC8XXX RTC.
15389a9a54adSAnirudh Ghayal
15399a9a54adSAnirudh Ghayal	  To compile this driver as a module, choose M here: the
15409a9a54adSAnirudh Ghayal	  module will be called rtc-pm8xxx.
15419a9a54adSAnirudh Ghayal
1542ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA
1543ff859ba6SAndrew Chew	tristate "NVIDIA Tegra Internal RTC driver"
15447a587eaeSAlexandre Belloni	depends on ARCH_TEGRA || COMPILE_TEST
1545ff859ba6SAndrew Chew	help
1546ff859ba6SAndrew Chew	  If you say yes here you get support for the
1547ff859ba6SAndrew Chew	  Tegra 200 series internal RTC module.
1548ff859ba6SAndrew Chew
1549ff859ba6SAndrew Chew	  This drive can also be built as a module. If so, the module
1550ff859ba6SAndrew Chew	  will be called rtc-tegra.
1551ff859ba6SAndrew Chew
1552dd196a2bSChris Metcalfconfig RTC_DRV_TILE
1553dd196a2bSChris Metcalf	tristate "Tilera hypervisor RTC support"
1554dd196a2bSChris Metcalf	depends on TILE
1555dd196a2bSChris Metcalf	help
1556dd196a2bSChris Metcalf	  Enable support for the Linux driver side of the Tilera
1557dd196a2bSChris Metcalf	  hypervisor's real-time clock interface.
1558dd196a2bSChris Metcalf
15592809e80bSGuan Xuetaoconfig RTC_DRV_PUV3
15602809e80bSGuan Xuetao	tristate "PKUnity v3 RTC support"
15612809e80bSGuan Xuetao	depends on ARCH_PUV3
15622809e80bSGuan Xuetao	help
15632809e80bSGuan Xuetao	  This enables support for the RTC in the PKUnity-v3 SoCs.
15642809e80bSGuan Xuetao
15652809e80bSGuan Xuetao	  This drive can also be built as a module. If so, the module
15662809e80bSGuan Xuetao	  will be called rtc-puv3.
15672809e80bSGuan Xuetao
1568b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1
1569b4f0b880Szhao zhang	tristate "loongson1 RTC support"
157030ad29bbSHuacai Chen	depends on MACH_LOONGSON32
1571b4f0b880Szhao zhang	help
1572b4f0b880Szhao zhang	  This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year
1573b4f0b880Szhao zhang	  counter) to be used as a RTC.
1574b4f0b880Szhao zhang
1575b4f0b880Szhao zhang	  This driver can also be built as a module. If so, the module
1576b4f0b880Szhao zhang	  will be called rtc-ls1x.
1577b4f0b880Szhao zhang
157879811595SFabio Estevamconfig RTC_DRV_MXC
1579b224b9acSFabio Estevam	tristate "Freescale MXC Real Time Clock"
1580b224b9acSFabio Estevam	depends on ARCH_MXC
1581b224b9acSFabio Estevam	help
1582b224b9acSFabio Estevam	   If you say yes here you get support for the Freescale MXC
1583b224b9acSFabio Estevam	   RTC module.
1584b224b9acSFabio Estevam
1585b224b9acSFabio Estevam	   This driver can also be built as a module, if so, the module
1586b224b9acSFabio Estevam	   will be called "rtc-mxc".
1587b224b9acSFabio Estevam
1588179a502fSShawn Guoconfig RTC_DRV_SNVS
1589179a502fSShawn Guo	tristate "Freescale SNVS RTC support"
15908a0fa184SShawn Guo	select REGMAP_MMIO
1591179a502fSShawn Guo	depends on HAS_IOMEM
1592179a502fSShawn Guo	depends on OF
1593179a502fSShawn Guo	help
1594179a502fSShawn Guo	   If you say yes here you get support for the Freescale SNVS
1595179a502fSShawn Guo	   Low Power (LP) RTC module.
1596179a502fSShawn Guo
1597179a502fSShawn Guo	   This driver can also be built as a module, if so, the module
1598179a502fSShawn Guo	   will be called "rtc-snvs".
1599179a502fSShawn Guo
1600e88b815eSXianglong Duconfig RTC_DRV_SIRFSOC
1601e88b815eSXianglong Du	tristate "SiRFSOC RTC"
1602e88b815eSXianglong Du	depends on ARCH_SIRF
1603e88b815eSXianglong Du	help
1604e88b815eSXianglong Du	  Say "yes" here to support the real time clock on SiRF SOC chips.
1605e88b815eSXianglong Du	  This driver can also be built as a module called rtc-sirfsoc.
1606e88b815eSXianglong Du
1607b5b2bdfcSLee Jonesconfig RTC_DRV_ST_LPC
1608b5b2bdfcSLee Jones	tristate "STMicroelectronics LPC RTC"
1609b5b2bdfcSLee Jones	depends on ARCH_STI
1610b5b2bdfcSLee Jones	depends on OF
1611b5b2bdfcSLee Jones	help
1612b5b2bdfcSLee Jones	  Say Y here to include STMicroelectronics Low Power Controller
1613b5b2bdfcSLee Jones	  (LPC) based RTC support.
1614b5b2bdfcSLee Jones
1615b5b2bdfcSLee Jones	  To compile this driver as a module, choose M here: the
1616b5b2bdfcSLee Jones	  module will be called rtc-st-lpc.
1617b5b2bdfcSLee Jones
1618453b4c6dSJonas Jensenconfig RTC_DRV_MOXART
1619453b4c6dSJonas Jensen	tristate "MOXA ART RTC"
1620441fb768SJean Delvare	depends on ARCH_MOXART || COMPILE_TEST
1621453b4c6dSJonas Jensen	help
1622453b4c6dSJonas Jensen	   If you say yes here you get support for the MOXA ART
1623453b4c6dSJonas Jensen	   RTC module.
1624453b4c6dSJonas Jensen
1625453b4c6dSJonas Jensen	   This driver can also be built as a module. If so, the module
1626453b4c6dSJonas Jensen	   will be called rtc-moxart
1627453b4c6dSJonas Jensen
1628fc297911STianping Fangconfig RTC_DRV_MT6397
1629fc297911STianping Fang	tristate "Mediatek Real Time Clock driver"
163004d3ba70SArnd Bergmann	depends on MFD_MT6397 || (COMPILE_TEST && IRQ_DOMAIN)
1631fc297911STianping Fang	help
1632fc297911STianping Fang	  This selects the Mediatek(R) RTC driver. RTC is part of Mediatek
1633fc297911STianping Fang	  MT6397 PMIC. You should enable MT6397 PMIC MFD before select
1634fc297911STianping Fang	  Mediatek(R) RTC driver.
1635fc297911STianping Fang
1636fc297911STianping Fang	  If you want to use Mediatek(R) RTC interface, select Y or M here.
1637fc297911STianping Fang
1638f12d8695SLoc Hoconfig RTC_DRV_XGENE
1639f12d8695SLoc Ho	tristate "APM X-Gene RTC"
1640706b632dSChen Gang	depends on HAS_IOMEM
1641fdf8afa1SJean Delvare	depends on ARCH_XGENE || COMPILE_TEST
1642f12d8695SLoc Ho	help
1643f12d8695SLoc Ho	  If you say yes here you get support for the APM X-Gene SoC real time
1644f12d8695SLoc Ho	  clock.
1645f12d8695SLoc Ho
1646f12d8695SLoc Ho	  This driver can also be built as a module, if so, the module
1647f12d8695SLoc Ho	  will be called "rtc-xgene".
1648f12d8695SLoc Ho
164951aa905cSJoshua Hendersonconfig RTC_DRV_PIC32
165051aa905cSJoshua Henderson	tristate "Microchip PIC32 RTC"
165151aa905cSJoshua Henderson	depends on MACH_PIC32
165251aa905cSJoshua Henderson	default y
165351aa905cSJoshua Henderson	help
165451aa905cSJoshua Henderson	   If you say yes here you get support for the PIC32 RTC module.
165551aa905cSJoshua Henderson
165651aa905cSJoshua Henderson	   This driver can also be built as a module. If so, the module
165751aa905cSJoshua Henderson	   will be called rtc-pic32
165851aa905cSJoshua Henderson
165962e00cb9SAlexander Hollercomment "HID Sensor RTC drivers"
166062e00cb9SAlexander Holler
166162e00cb9SAlexander Hollerconfig RTC_DRV_HID_SENSOR_TIME
166262e00cb9SAlexander Holler	tristate "HID Sensor Time"
166362e00cb9SAlexander Holler	depends on USB_HID
166462e00cb9SAlexander Holler	select IIO
166562e00cb9SAlexander Holler	select HID_SENSOR_HUB
166662e00cb9SAlexander Holler	select HID_SENSOR_IIO_COMMON
166762e00cb9SAlexander Holler	help
166862e00cb9SAlexander Holler	  Say yes here to build support for the HID Sensors of type Time.
166962e00cb9SAlexander Holler	  This drivers makes such sensors available as RTCs.
167062e00cb9SAlexander Holler
167162e00cb9SAlexander Holler	  If this driver is compiled as a module, it will be named
167262e00cb9SAlexander Holler	  rtc-hid-sensor-time.
167362e00cb9SAlexander Holler
167462e00cb9SAlexander Holler
1675bb35fb20SJan Engelhardtendif # RTC_CLASS
1676