xref: /linux/drivers/rtc/Kconfig (revision 9c5150b31b49e3d89c52df9b1c1ebcea4e665ec3)
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"
30*9c5150b3SXunlei 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
51*9c5150b3SXunlei Pangconfig RTC_SYSTOHC
52*9c5150b3SXunlei Pang	bool "Set the RTC time based on NTP synchronization"
53*9c5150b3SXunlei Pang	default y
54*9c5150b3SXunlei Pang	help
55*9c5150b3SXunlei Pang	  If you say yes here, the system time (wall clock) will be stored
56*9c5150b3SXunlei Pang	  in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11
57*9c5150b3SXunlei Pang	  minutes if userspace reports synchronized NTP status.
58*9c5150b3SXunlei Pang
59*9c5150b3SXunlei Pangconfig RTC_SYSTOHC_DEVICE
60*9c5150b3SXunlei Pang	string "RTC used to synchronize NTP adjustment"
61*9c5150b3SXunlei Pang	depends on RTC_SYSTOHC
62*9c5150b3SXunlei Pang	default RTC_HCTOSYS_DEVICE if RTC_HCTOSYS
63*9c5150b3SXunlei Pang	default "rtc0"
64*9c5150b3SXunlei Pang	help
65*9c5150b3SXunlei Pang	  The RTC device used for NTP synchronization. The main difference
66*9c5150b3SXunlei Pang	  between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this
67*9c5150b3SXunlei Pang	  one can sleep when setting time, because it runs in the workqueue
68*9c5150b3SXunlei Pang	  context.
69*9c5150b3SXunlei 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	depends on I2C
144bb35fb20SJan Engelhardt
145bb35fb20SJan Engelhardtif I2C
14609a21e56SAlessandro Zummo
147008b3040SHaojian Zhuangconfig RTC_DRV_88PM860X
148008b3040SHaojian Zhuang	tristate "Marvell 88PM860x"
1496b8029faSVenu Byravarasu	depends on I2C && MFD_88PM860X
150008b3040SHaojian Zhuang	help
151008b3040SHaojian Zhuang	  If you say yes here you get support for RTC function in Marvell
152008b3040SHaojian Zhuang	  88PM860x chips.
153008b3040SHaojian Zhuang
154008b3040SHaojian Zhuang	  This driver can also be built as a module. If so, the module
155008b3040SHaojian Zhuang	  will be called rtc-88pm860x.
156008b3040SHaojian Zhuang
1572985c29cSQiao Zhouconfig RTC_DRV_88PM80X
1582985c29cSQiao Zhou	tristate "Marvell 88PM80x"
1596b8029faSVenu Byravarasu	depends on I2C && MFD_88PM800
1602985c29cSQiao Zhou	help
1612985c29cSQiao Zhou	  If you say yes here you get support for RTC function in Marvell
1622985c29cSQiao Zhou	  88PM80x chips.
1632985c29cSQiao Zhou
1642985c29cSQiao Zhou	  This driver can also be built as a module. If so, the module
1652985c29cSQiao Zhou	  will be called rtc-88pm80x.
1662985c29cSQiao Zhou
1670b2f6228SArnaud Ebalardconfig RTC_DRV_ABB5ZES3
1680b2f6228SArnaud Ebalard       depends on I2C
1690b2f6228SArnaud Ebalard       select REGMAP_I2C
1700b2f6228SArnaud Ebalard       tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3"
1710b2f6228SArnaud Ebalard       help
1720b2f6228SArnaud Ebalard	  If you say yes here you get support for the Abracon
1730b2f6228SArnaud Ebalard	  AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip.
1740b2f6228SArnaud Ebalard
1750b2f6228SArnaud Ebalard	  This driver can also be built as a module. If so, the module
1760b2f6228SArnaud Ebalard	  will be called rtc-ab-b5ze-s3.
1770b2f6228SArnaud Ebalard
1784d61ff6bSPhilippe De Muyterconfig RTC_DRV_ABX80X
1794d61ff6bSPhilippe De Muyter	tristate "Abracon ABx80x"
1804d61ff6bSPhilippe De Muyter	help
1814d61ff6bSPhilippe De Muyter	  If you say yes here you get support for Abracon AB080X and AB180X
1824d61ff6bSPhilippe De Muyter	  families of ultra-low-power  battery- and capacitor-backed real-time
1834d61ff6bSPhilippe De Muyter	  clock chips.
1844d61ff6bSPhilippe De Muyter
1854d61ff6bSPhilippe De Muyter	  This driver can also be built as a module. If so, the module
1864d61ff6bSPhilippe De Muyter	  will be called rtc-abx80x.
1874d61ff6bSPhilippe De Muyter
188b4506261SLaxman Dewanganconfig RTC_DRV_AS3722
189b4506261SLaxman Dewangan	tristate "ams AS3722 RTC driver"
190b4506261SLaxman Dewangan	depends on MFD_AS3722
191b4506261SLaxman Dewangan	help
192b4506261SLaxman Dewangan	  If you say yes here you get support for the RTC of ams AS3722 PMIC
193b4506261SLaxman Dewangan	  chips.
194b4506261SLaxman Dewangan
195b4506261SLaxman Dewangan	  This driver can also be built as a module. If so, the module
196b4506261SLaxman Dewangan	  will be called rtc-as3722.
197b4506261SLaxman Dewangan
19809a21e56SAlessandro Zummoconfig RTC_DRV_DS1307
199a2166858SMatthias Fuchs	tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025"
20009a21e56SAlessandro Zummo	help
20109a21e56SAlessandro Zummo	  If you say yes here you get support for various compatible RTC
20209a21e56SAlessandro Zummo	  chips (often with battery backup) connected with I2C. This driver
20309a21e56SAlessandro Zummo	  should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
204a2166858SMatthias Fuchs	  EPSON RX-8025 and probably other chips. In some cases the RTC
205a2166858SMatthias Fuchs	  must already have been initialized (by manufacturing or a
206a2166858SMatthias Fuchs	  bootloader).
20709a21e56SAlessandro Zummo
20809a21e56SAlessandro Zummo	  The first seven registers on these chips hold an RTC, and other
20909a21e56SAlessandro Zummo	  registers may add features such as NVRAM, a trickle charger for
210682d73f6SDavid Brownell	  the RTC/NVRAM backup power, and alarms. NVRAM is visible in
211682d73f6SDavid Brownell	  sysfs, but other chip features may not be available.
21209a21e56SAlessandro Zummo
21309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
21409a21e56SAlessandro Zummo	  will be called rtc-ds1307.
21509a21e56SAlessandro Zummo
216bf4994d7SScott Woodconfig RTC_DRV_DS1374
21709b6bdb3SAlessandro Zummo	tristate "Dallas/Maxim DS1374"
2186b8029faSVenu Byravarasu	depends on I2C
219bf4994d7SScott Wood	help
220bf4994d7SScott Wood	  If you say yes here you get support for Dallas Semiconductor
221bf4994d7SScott Wood	  DS1374 real-time clock chips. If an interrupt is associated
222bf4994d7SScott Wood	  with the device, the alarm functionality is supported.
223bf4994d7SScott Wood
224bf4994d7SScott Wood	  This driver can also be built as a module. If so, the module
225bf4994d7SScott Wood	  will be called rtc-ds1374.
226bf4994d7SScott Wood
227920f91e5SSøren Andersenconfig RTC_DRV_DS1374_WDT
228920f91e5SSøren Andersen	bool "Dallas/Maxim DS1374 watchdog timer"
229920f91e5SSøren Andersen	depends on RTC_DRV_DS1374
230920f91e5SSøren Andersen	help
231920f91e5SSøren Andersen	  If you say Y here you will get support for the
232920f91e5SSøren Andersen	  watchdog timer in the Dallas Semiconductor DS1374
233920f91e5SSøren Andersen	  real-time clock chips.
234920f91e5SSøren Andersen
23509a21e56SAlessandro Zummoconfig RTC_DRV_DS1672
23609a21e56SAlessandro Zummo	tristate "Dallas/Maxim DS1672"
23709a21e56SAlessandro Zummo	help
23809a21e56SAlessandro Zummo	  If you say yes here you get support for the
23909a21e56SAlessandro Zummo	  Dallas/Maxim DS1672 timekeeping chip.
24009a21e56SAlessandro Zummo
24109a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
24209a21e56SAlessandro Zummo	  will be called rtc-ds1672.
24309a21e56SAlessandro Zummo
244c03675f0SRoy Zangconfig RTC_DRV_DS3232
245c03675f0SRoy Zang	tristate "Dallas/Maxim DS3232"
2466b8029faSVenu Byravarasu	depends on I2C
247c03675f0SRoy Zang	help
248c03675f0SRoy Zang	  If you say yes here you get support for Dallas Semiconductor
249f46418c5SLan Chunhe-B25806	  DS3232 real-time clock chips. If an interrupt is associated
250f46418c5SLan Chunhe-B25806	  with the device, the alarm functionality is supported.
251c03675f0SRoy Zang
252c03675f0SRoy Zang	  This driver can also be built as a module.  If so, the module
253c03675f0SRoy Zang	  will be called rtc-ds3232.
254c03675f0SRoy Zang
255dcaf0384SHeiko Stuebnerconfig RTC_DRV_HYM8563
256dcaf0384SHeiko Stuebner	tristate "Haoyu Microelectronics HYM8563"
257dcaf0384SHeiko Stuebner	depends on I2C && OF
258dcaf0384SHeiko Stuebner	help
259dcaf0384SHeiko Stuebner	  Say Y to enable support for the HYM8563 I2C RTC chip. Apart
260dcaf0384SHeiko Stuebner	  from the usual rtc functions it provides a clock output of
261dcaf0384SHeiko Stuebner	  up to 32kHz.
262dcaf0384SHeiko Stuebner
263dcaf0384SHeiko Stuebner	  This driver can also be built as a module. If so, the module
264dcaf0384SHeiko Stuebner	  will be called rtc-hym8563.
265dcaf0384SHeiko Stuebner
26638ae176eSKim, Miloconfig RTC_DRV_LP8788
26738ae176eSKim, Milo	tristate "TI LP8788 RTC driver"
26838ae176eSKim, Milo	depends on MFD_LP8788
26938ae176eSKim, Milo	help
27038ae176eSKim, Milo	  Say Y to enable support for the LP8788 RTC/ALARM driver.
27138ae176eSKim, Milo
27209a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900
27309b6bdb3SAlessandro Zummo	tristate "Maxim MAX6900"
27409a21e56SAlessandro Zummo	help
27509a21e56SAlessandro Zummo	  If you say yes here you will get support for the
27609a21e56SAlessandro Zummo	  Maxim MAX6900 I2C RTC chip.
27709a21e56SAlessandro Zummo
27809a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
27909a21e56SAlessandro Zummo	  will be called rtc-max6900.
28009a21e56SAlessandro Zummo
28194c01ab6SStephen Warrenconfig RTC_DRV_MAX8907
28294c01ab6SStephen Warren	tristate "Maxim MAX8907"
28394c01ab6SStephen Warren	depends on MFD_MAX8907
28494c01ab6SStephen Warren	help
28594c01ab6SStephen Warren	  If you say yes here you will get support for the
28694c01ab6SStephen Warren	  RTC of Maxim MAX8907 PMIC.
28794c01ab6SStephen Warren
28894c01ab6SStephen Warren	  This driver can also be built as a module. If so, the module
28994c01ab6SStephen Warren	  will be called rtc-max8907.
29094c01ab6SStephen Warren
291a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925
292a39069f6SHaojian Zhuang	tristate "Maxim MAX8925"
293a39069f6SHaojian Zhuang	depends on MFD_MAX8925
294a39069f6SHaojian Zhuang	help
295a39069f6SHaojian Zhuang	  If you say yes here you will get support for the
296a39069f6SHaojian Zhuang	  RTC of Maxim MAX8925 PMIC.
297a39069f6SHaojian Zhuang
298a39069f6SHaojian Zhuang	  This driver can also be built as a module. If so, the module
299a39069f6SHaojian Zhuang	  will be called rtc-max8925.
300a39069f6SHaojian Zhuang
3019b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998
3029b16c0a4SJoonyoung Shim	tristate "Maxim MAX8998"
3039b16c0a4SJoonyoung Shim	depends on MFD_MAX8998
3049b16c0a4SJoonyoung Shim	help
3059b16c0a4SJoonyoung Shim	  If you say yes here you will get support for the
3069b16c0a4SJoonyoung Shim	  RTC of Maxim MAX8998 PMIC.
3079b16c0a4SJoonyoung Shim
3089b16c0a4SJoonyoung Shim	  This driver can also be built as a module. If so, the module
3099b16c0a4SJoonyoung Shim	  will be called rtc-max8998.
3109b16c0a4SJoonyoung Shim
3115e0b2704SJonghwa Leeconfig RTC_DRV_MAX8997
3125e0b2704SJonghwa Lee	tristate "Maxim MAX8997"
3135e0b2704SJonghwa Lee	depends on MFD_MAX8997
3145e0b2704SJonghwa Lee	help
3155e0b2704SJonghwa Lee	  If you say yes here you will get support for the
3165e0b2704SJonghwa Lee	  RTC of Maxim MAX8997 PMIC.
3175e0b2704SJonghwa Lee
3185e0b2704SJonghwa Lee	  This driver can also be built as a module. If so, the module
3195e0b2704SJonghwa Lee	  will be called rtc-max8997.
3205e0b2704SJonghwa Lee
321fca1dd03SJonghwa Leeconfig RTC_DRV_MAX77686
322fca1dd03SJonghwa Lee	tristate "Maxim MAX77686"
323fca1dd03SJonghwa Lee	depends on MFD_MAX77686
324fca1dd03SJonghwa Lee	help
325fca1dd03SJonghwa Lee	  If you say yes here you will get support for the
326fca1dd03SJonghwa Lee	  RTC of Maxim MAX77686 PMIC.
327fca1dd03SJonghwa Lee
328fca1dd03SJonghwa Lee	  This driver can also be built as a module. If so, the module
329fca1dd03SJonghwa Lee	  will be called rtc-max77686.
330fca1dd03SJonghwa Lee
3313ca1e326SChris Zhongconfig RTC_DRV_RK808
3323ca1e326SChris Zhong	tristate "Rockchip RK808 RTC"
3333ca1e326SChris Zhong	depends on MFD_RK808
3343ca1e326SChris Zhong	help
3353ca1e326SChris Zhong	  If you say yes here you will get support for the
3363ca1e326SChris Zhong	  RTC of RK808 PMIC.
3373ca1e326SChris Zhong
3383ca1e326SChris Zhong	  This driver can also be built as a module. If so, the module
3393ca1e326SChris Zhong	  will be called rk808-rtc.
3403ca1e326SChris Zhong
341a4d4121bSJavier Martinez Canillasconfig RTC_DRV_MAX77802
342a4d4121bSJavier Martinez Canillas	tristate "Maxim 77802 RTC"
343a4d4121bSJavier Martinez Canillas	depends on MFD_MAX77686
344a4d4121bSJavier Martinez Canillas	help
345a4d4121bSJavier Martinez Canillas	  If you say yes here you will get support for the
346a4d4121bSJavier Martinez Canillas	  RTC of Maxim MAX77802 PMIC.
347a4d4121bSJavier Martinez Canillas
348a4d4121bSJavier Martinez Canillas	  This driver can also be built as a module. If so, the module
349a4d4121bSJavier Martinez Canillas	  will be called rtc-max77802.
350a4d4121bSJavier Martinez Canillas
35109a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372
3525d4529beSPaul Mundt	tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
35309a21e56SAlessandro Zummo	help
35409a21e56SAlessandro Zummo	  If you say yes here you get support for the
3555d4529beSPaul Mundt	  Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
35609a21e56SAlessandro Zummo
35709a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
35809a21e56SAlessandro Zummo	  will be called rtc-rs5c372.
35909a21e56SAlessandro Zummo
36009a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208
36109b6bdb3SAlessandro Zummo	tristate "Intersil ISL1208"
36209a21e56SAlessandro Zummo	help
36309a21e56SAlessandro Zummo	  If you say yes here you get support for the
36409b6bdb3SAlessandro Zummo	  Intersil ISL1208 RTC chip.
36509a21e56SAlessandro Zummo
36609a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
36709a21e56SAlessandro Zummo	  will be called rtc-isl1208.
36809a21e56SAlessandro Zummo
369d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022
370d6c7428fSRoman Fietze	tristate "Intersil ISL12022"
371d6c7428fSRoman Fietze	help
372d6c7428fSRoman Fietze	  If you say yes here you get support for the
373d6c7428fSRoman Fietze	  Intersil ISL12022 RTC chip.
374d6c7428fSRoman Fietze
375d6c7428fSRoman Fietze	  This driver can also be built as a module. If so, the module
376d6c7428fSRoman Fietze	  will be called rtc-isl12022.
377d6c7428fSRoman Fietze
37870e12337SArnaud Ebalardconfig RTC_DRV_ISL12057
37970e12337SArnaud Ebalard       depends on I2C
38070e12337SArnaud Ebalard       select REGMAP_I2C
38170e12337SArnaud Ebalard       tristate "Intersil ISL12057"
38270e12337SArnaud Ebalard       help
38370e12337SArnaud Ebalard	  If you say yes here you get support for the Intersil ISL12057
38470e12337SArnaud Ebalard	  I2C RTC chip.
38570e12337SArnaud Ebalard
38670e12337SArnaud Ebalard	  This driver can also be built as a module. If so, the module
38770e12337SArnaud Ebalard	  will be called rtc-isl12057.
38870e12337SArnaud Ebalard
38909a21e56SAlessandro Zummoconfig RTC_DRV_X1205
39009a21e56SAlessandro Zummo	tristate "Xicor/Intersil X1205"
39109a21e56SAlessandro Zummo	help
39209a21e56SAlessandro Zummo	  If you say yes here you get support for the
39309a21e56SAlessandro Zummo	  Xicor/Intersil X1205 RTC chip.
39409a21e56SAlessandro Zummo
39509a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
39609a21e56SAlessandro Zummo	  will be called rtc-x1205.
39709a21e56SAlessandro Zummo
3980101e53cSLaxman Dewanganconfig RTC_DRV_PALMAS
3990101e53cSLaxman Dewangan	tristate "TI Palmas RTC driver"
4000101e53cSLaxman Dewangan	depends on MFD_PALMAS
4010101e53cSLaxman Dewangan	help
4020101e53cSLaxman Dewangan	  If you say yes here you get support for the RTC of TI PALMA series PMIC
4030101e53cSLaxman Dewangan	  chips.
4040101e53cSLaxman Dewangan
4050101e53cSLaxman Dewangan	  This driver can also be built as a module. If so, the module
4060101e53cSLaxman Dewangan	  will be called rtc-palma.
4070101e53cSLaxman Dewangan
40818cb6368SRenaud Cerratoconfig RTC_DRV_PCF2127
40918cb6368SRenaud Cerrato	tristate "NXP PCF2127"
41018cb6368SRenaud Cerrato	help
41118cb6368SRenaud Cerrato	  If you say yes here you get support for the NXP PCF2127/29 RTC
41218cb6368SRenaud Cerrato	  chips.
41318cb6368SRenaud Cerrato
41418cb6368SRenaud Cerrato	  This driver can also be built as a module. If so, the module
41518cb6368SRenaud Cerrato	  will be called rtc-pcf2127.
41618cb6368SRenaud Cerrato
417f803f0d0SThierry Redingconfig RTC_DRV_PCF8523
418f803f0d0SThierry Reding	tristate "NXP PCF8523"
419f803f0d0SThierry Reding	help
420f803f0d0SThierry Reding	  If you say yes here you get support for the NXP PCF8523 RTC
421f803f0d0SThierry Reding	  chips.
422f803f0d0SThierry Reding
423f803f0d0SThierry Reding	  This driver can also be built as a module. If so, the module
424f803f0d0SThierry Reding	  will be called rtc-pcf8523.
425f803f0d0SThierry Reding
42609a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563
42709a21e56SAlessandro Zummo	tristate "Philips PCF8563/Epson RTC8564"
42809a21e56SAlessandro Zummo	help
42909a21e56SAlessandro Zummo	  If you say yes here you get support for the
43009a21e56SAlessandro Zummo	  Philips PCF8563 RTC chip. The Epson RTC8564
43109a21e56SAlessandro Zummo	  should work as well.
43209a21e56SAlessandro Zummo
43309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
43409a21e56SAlessandro Zummo	  will be called rtc-pcf8563.
43509a21e56SAlessandro Zummo
436796b7abbSSøren Andersenconfig RTC_DRV_PCF85063
437796b7abbSSøren Andersen	tristate "nxp PCF85063"
438796b7abbSSøren Andersen	help
439796b7abbSSøren Andersen	  If you say yes here you get support for the PCF85063 RTC chip
440796b7abbSSøren Andersen
441796b7abbSSøren Andersen	  This driver can also be built as a module. If so, the module
442796b7abbSSøren Andersen	  will be called rtc-pcf85063.
443796b7abbSSøren Andersen
44409a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583
44509a21e56SAlessandro Zummo	tristate "Philips PCF8583"
44609a21e56SAlessandro Zummo	help
44709a21e56SAlessandro Zummo	  If you say yes here you get support for the Philips PCF8583
44809a21e56SAlessandro Zummo	  RTC chip found on Acorn RiscPCs. This driver supports the
44909a21e56SAlessandro Zummo	  platform specific method of retrieving the current year from
45009a21e56SAlessandro Zummo	  the RTC's SRAM. It will work on other platforms with the same
45109a21e56SAlessandro Zummo	  chip, but the year will probably have to be tweaked.
45209a21e56SAlessandro Zummo
45309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
45409a21e56SAlessandro Zummo	  will be called rtc-pcf8583.
45509a21e56SAlessandro Zummo
456caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80
4576b1a5235SWolfram Sang	tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible"
458caaff562SAtsushi Nemoto	help
459d3a126fcSSteven A. Falco	  If you say Y here you will get support for the ST M41T60
460d3a126fcSSteven A. Falco	  and M41T80 RTC chips series. Currently, the following chips are
461f30281f4SDaniel Glockner	  supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
4626b1a5235SWolfram Sang	  M41ST85, M41ST87, and MicroCrystal RV4162.
463caaff562SAtsushi Nemoto
464caaff562SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
465caaff562SAtsushi Nemoto	  will be called rtc-m41t80.
466caaff562SAtsushi Nemoto
467617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT
468d3a126fcSSteven A. Falco	bool "ST M41T65/M41T80 series RTC watchdog timer"
469617780d2SAtsushi Nemoto	depends on RTC_DRV_M41T80
470617780d2SAtsushi Nemoto	help
471617780d2SAtsushi Nemoto	  If you say Y here you will get support for the
472d3a126fcSSteven A. Falco	  watchdog timer in the ST M41T60 and M41T80 RTC chips series.
473617780d2SAtsushi Nemoto
4741ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K
4751ce7c83fSPiotr Ziecik	tristate "TI BQ32000"
4761ce7c83fSPiotr Ziecik	help
4771ce7c83fSPiotr Ziecik	  If you say Y here you will get support for the TI
4781ce7c83fSPiotr Ziecik	  BQ32000 I2C RTC chip.
4791ce7c83fSPiotr Ziecik
4801ce7c83fSPiotr Ziecik	  This driver can also be built as a module. If so, the module
4811ce7c83fSPiotr Ziecik	  will be called rtc-bq32k.
4821ce7c83fSPiotr Ziecik
483afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM
484afd8d0f9SDavid Brownell	tristate "TI DaVinci DM355 EVM RTC"
485afd8d0f9SDavid Brownell	depends on MFD_DM355EVM_MSP
486afd8d0f9SDavid Brownell	help
487afd8d0f9SDavid Brownell	  Supports the RTC firmware in the MSP430 on the DM355 EVM.
488afd8d0f9SDavid Brownell
4890c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330
4906341e62bSChristoph Jaeger	bool "TI TWL92330/Menelaus"
491bb35fb20SJan Engelhardt	depends on MENELAUS
4920c4a59feSTony Lindgren	help
4930c4a59feSTony Lindgren	  If you say yes here you get support for the RTC on the
49401dd2fbfSMatt LaPlante	  TWL92330 "Menelaus" power management chip, used with OMAP2
4950c4a59feSTony Lindgren	  platforms. The support is integrated with the rest of
4960c4a59feSTony Lindgren	  the Menelaus driver; it's not separate module.
4970c4a59feSTony Lindgren
498f96411abSDavid Brownellconfig RTC_DRV_TWL4030
499a6b49ffdSBalaji T K	tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0"
5006b8029faSVenu Byravarasu	depends on TWL4030_CORE
501f96411abSDavid Brownell	help
502f96411abSDavid Brownell	  If you say yes here you get support for the RTC on the
503a6b49ffdSBalaji T K	  TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms.
504f96411abSDavid Brownell
505f96411abSDavid Brownell	  This driver can also be built as a module. If so, the module
506a6b49ffdSBalaji T K	  will be called rtc-twl.
507f96411abSDavid Brownell
508dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X
509dc59ed38SLaxman Dewangan	tristate "TI TPS6586X RTC driver"
510dc59ed38SLaxman Dewangan	depends on MFD_TPS6586X
511dc59ed38SLaxman Dewangan	help
512a895d57dSMasanari Iida	  TI Power Management IC TPS6586X supports RTC functionality
513dc59ed38SLaxman Dewangan	  along with alarm. This driver supports the RTC driver for
514dc59ed38SLaxman Dewangan	  the TPS6586X RTC module.
515dc59ed38SLaxman Dewangan
5160e783980SVenu Byravarasuconfig RTC_DRV_TPS65910
5170e783980SVenu Byravarasu	tristate "TI TPS65910 RTC driver"
5180e783980SVenu Byravarasu	depends on RTC_CLASS && MFD_TPS65910
5190e783980SVenu Byravarasu	help
5200e783980SVenu Byravarasu	  If you say yes here you get support for the RTC on the
5210e783980SVenu Byravarasu	  TPS65910 chips.
5220e783980SVenu Byravarasu
5230e783980SVenu Byravarasu	  This driver can also be built as a module. If so, the module
5240e783980SVenu Byravarasu	  will be called rtc-tps65910.
5250e783980SVenu Byravarasu
52636d61824SLaxman Dewanganconfig RTC_DRV_TPS80031
52736d61824SLaxman Dewangan	tristate "TI TPS80031/TPS80032 RTC driver"
52836d61824SLaxman Dewangan	depends on MFD_TPS80031
52936d61824SLaxman Dewangan	help
530a895d57dSMasanari Iida	  TI Power Management IC TPS80031 supports RTC functionality
53136d61824SLaxman Dewangan	  along with alarm. This driver supports the RTC driver for
53236d61824SLaxman Dewangan	  the TPS80031 RTC module.
53336d61824SLaxman Dewangan
53490829c08SVenu Byravarasuconfig RTC_DRV_RC5T583
53590829c08SVenu Byravarasu	tristate "RICOH 5T583 RTC driver"
53690829c08SVenu Byravarasu	depends on MFD_RC5T583
53790829c08SVenu Byravarasu	help
53890829c08SVenu Byravarasu	  If you say yes here you get support for the RTC on the
53990829c08SVenu Byravarasu	  RICOH 5T583 chips.
54090829c08SVenu Byravarasu
54190829c08SVenu Byravarasu	  This driver can also be built as a module. If so, the module
54290829c08SVenu Byravarasu	  will be called rtc-rc5t583.
54390829c08SVenu Byravarasu
544c46288b0SByron Bradleyconfig RTC_DRV_S35390A
545c46288b0SByron Bradley	tristate "Seiko Instruments S-35390A"
546d479540dSRandy Dunlap	select BITREVERSE
547c46288b0SByron Bradley	help
548c46288b0SByron Bradley	  If you say yes here you will get support for the Seiko
549c46288b0SByron Bradley	  Instruments S-35390A.
550c46288b0SByron Bradley
551c46288b0SByron Bradley	  This driver can also be built as a module. If so the module
552c46288b0SByron Bradley	  will be called rtc-s35390a.
553c46288b0SByron Bradley
554c6d8f400SSergey Lapinconfig RTC_DRV_FM3130
555c6d8f400SSergey Lapin	tristate "Ramtron FM3130"
556c6d8f400SSergey Lapin	help
557c6d8f400SSergey Lapin	  If you say Y here you will get support for the
558c6d8f400SSergey Lapin	  Ramtron FM3130 RTC chips.
559c6d8f400SSergey Lapin	  Ramtron FM3130 is a chip with two separate devices inside,
560c6d8f400SSergey Lapin	  RTC clock and FRAM. This driver provides only RTC functionality.
561c6d8f400SSergey Lapin
562c6d8f400SSergey Lapin	  This driver can also be built as a module. If so the module
563c6d8f400SSergey Lapin	  will be called rtc-fm3130.
564c6d8f400SSergey Lapin
565a7fa9851SMartyn Welchconfig RTC_DRV_RX8581
566a7fa9851SMartyn Welch	tristate "Epson RX-8581"
567a7fa9851SMartyn Welch	help
568a7fa9851SMartyn Welch	  If you say yes here you will get support for the Epson RX-8581.
569a7fa9851SMartyn Welch
570a7fa9851SMartyn Welch	  This driver can also be built as a module. If so the module
571a7fa9851SMartyn Welch	  will be called rtc-rx8581.
572a7fa9851SMartyn Welch
5733c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025
5743c2b9075SWolfgang Grandegger	tristate "Epson RX-8025SA/NB"
5753c2b9075SWolfgang Grandegger	help
5763c2b9075SWolfgang Grandegger	  If you say yes here you get support for the Epson
5773c2b9075SWolfgang Grandegger	  RX-8025SA/NB RTC chips.
5783c2b9075SWolfgang Grandegger
5793c2b9075SWolfgang Grandegger	  This driver can also be built as a module. If so, the module
5803c2b9075SWolfgang Grandegger	  will be called rtc-rx8025.
5813c2b9075SWolfgang Grandegger
582ae3551f9SMike Rapoportconfig RTC_DRV_EM3027
583ae3551f9SMike Rapoport	tristate "EM Microelectronic EM3027"
584ae3551f9SMike Rapoport	help
585ae3551f9SMike Rapoport	  If you say yes here you get support for the EM
586ae3551f9SMike Rapoport	  Microelectronic EM3027 RTC chips.
587ae3551f9SMike Rapoport
588ae3551f9SMike Rapoport	  This driver can also be built as a module. If so, the module
589ae3551f9SMike Rapoport	  will be called rtc-em3027.
590ae3551f9SMike Rapoport
59152365230SHeiko Schocherconfig RTC_DRV_RV3029C2
59252365230SHeiko Schocher	tristate "Micro Crystal RTC"
59352365230SHeiko Schocher	help
59452365230SHeiko Schocher	  If you say yes here you get support for the Micro Crystal
59552365230SHeiko Schocher	  RV3029-C2 RTC chips.
59652365230SHeiko Schocher
59752365230SHeiko Schocher	  This driver can also be built as a module. If so, the module
59852365230SHeiko Schocher	  will be called rtc-rv3029c2.
59952365230SHeiko Schocher
6005bccae6eSSangbeom Kimconfig RTC_DRV_S5M
6010c5deb1eSKrzysztof Kozlowski	tristate "Samsung S2M/S5M series"
6025bccae6eSSangbeom Kim	depends on MFD_SEC_CORE
6035bccae6eSSangbeom Kim	help
6045bccae6eSSangbeom Kim	  If you say yes here you will get support for the
6050c5deb1eSKrzysztof Kozlowski	  RTC of Samsung S2MPS14 and S5M PMIC series.
6065bccae6eSSangbeom Kim
6075bccae6eSSangbeom Kim	  This driver can also be built as a module. If so, the module
6085bccae6eSSangbeom Kim	  will be called rtc-s5m.
6095bccae6eSSangbeom Kim
610bb35fb20SJan Engelhardtendif # I2C
611bb35fb20SJan Engelhardt
61209a21e56SAlessandro Zummocomment "SPI RTC drivers"
613bb35fb20SJan Engelhardt
614bb35fb20SJan Engelhardtif SPI_MASTER
61509a21e56SAlessandro Zummo
61674d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93
61774d34d4bSVoss, Nikolaus        tristate "ST M41T93"
61874d34d4bSVoss, Nikolaus        help
61974d34d4bSVoss, Nikolaus          If you say yes here you will get support for the
62074d34d4bSVoss, Nikolaus          ST M41T93 SPI RTC chip.
62174d34d4bSVoss, Nikolaus
62274d34d4bSVoss, Nikolaus          This driver can also be built as a module. If so, the module
62374d34d4bSVoss, Nikolaus          will be called rtc-m41t93.
62474d34d4bSVoss, Nikolaus
6258fc2c767SKim B. Heinoconfig RTC_DRV_M41T94
6268fc2c767SKim B. Heino	tristate "ST M41T94"
6278fc2c767SKim B. Heino	help
6288fc2c767SKim B. Heino	  If you say yes here you will get support for the
6298fc2c767SKim B. Heino	  ST M41T94 SPI RTC chip.
6308fc2c767SKim B. Heino
6318fc2c767SKim B. Heino	  This driver can also be built as a module. If so, the module
6328fc2c767SKim B. Heino	  will be called rtc-m41t94.
6338fc2c767SKim B. Heino
63453e84b67SDavid Brownellconfig RTC_DRV_DS1305
63553e84b67SDavid Brownell	tristate "Dallas/Maxim DS1305/DS1306"
63653e84b67SDavid Brownell	help
63753e84b67SDavid Brownell	  Select this driver to get support for the Dallas/Maxim DS1305
63853e84b67SDavid Brownell	  and DS1306 real time clock chips. These support a trickle
63953e84b67SDavid Brownell	  charger, alarms, and NVRAM in addition to the clock.
64053e84b67SDavid Brownell
64153e84b67SDavid Brownell	  This driver can also be built as a module. If so, the module
64253e84b67SDavid Brownell	  will be called rtc-ds1305.
64353e84b67SDavid Brownell
6441d6316f5SRaghavendra Ganigaconfig RTC_DRV_DS1343
6450dd449b1SRaghavendra Ganiga	select REGMAP_SPI
6461d6316f5SRaghavendra Ganiga	tristate "Dallas/Maxim DS1343/DS1344"
6471d6316f5SRaghavendra Ganiga	help
6481d6316f5SRaghavendra Ganiga	  If you say yes here you get support for the
6491d6316f5SRaghavendra Ganiga	  Dallas/Maxim DS1343 and DS1344 real time clock chips.
6501d6316f5SRaghavendra Ganiga	  Support for trickle charger, alarm is provided.
6511d6316f5SRaghavendra Ganiga
6521d6316f5SRaghavendra Ganiga	  This driver can also be built as a module. If so, the module
6531d6316f5SRaghavendra Ganiga	  will be called rtc-ds1343.
6541d6316f5SRaghavendra Ganiga
655617b26a0SRaghavendra Ganigaconfig RTC_DRV_DS1347
656617b26a0SRaghavendra Ganiga	tristate "Dallas/Maxim DS1347"
657617b26a0SRaghavendra Ganiga	help
658617b26a0SRaghavendra Ganiga	  If you say yes here you get support for the
659617b26a0SRaghavendra Ganiga	  Dallas/Maxim DS1347 chips.
660617b26a0SRaghavendra Ganiga
661617b26a0SRaghavendra Ganiga	  This driver only supports the RTC feature, and not other chip
662617b26a0SRaghavendra Ganiga	  features such as alarms.
663617b26a0SRaghavendra Ganiga
664617b26a0SRaghavendra Ganiga	  This driver can also be built as a module. If so, the module
665617b26a0SRaghavendra Ganiga	  will be called rtc-ds1347.
666617b26a0SRaghavendra Ganiga
66706de1808SMark Jacksonconfig RTC_DRV_DS1390
66806de1808SMark Jackson	tristate "Dallas/Maxim DS1390/93/94"
66906de1808SMark Jackson	help
6707b9b2ef1SAlessandro Zummo	  If you say yes here you get support for the
6717b9b2ef1SAlessandro Zummo	  Dallas/Maxim DS1390/93/94 chips.
67206de1808SMark Jackson
67306de1808SMark Jackson	  This driver only supports the RTC feature, and not other chip
67406de1808SMark Jackson	  features such as alarms and trickle charging.
67506de1808SMark Jackson
67606de1808SMark Jackson	  This driver can also be built as a module. If so, the module
67706de1808SMark Jackson	  will be called rtc-ds1390.
67806de1808SMark Jackson
67909b6bdb3SAlessandro Zummoconfig RTC_DRV_MAX6902
68009b6bdb3SAlessandro Zummo	tristate "Maxim MAX6902"
68109b6bdb3SAlessandro Zummo	help
68209b6bdb3SAlessandro Zummo	  If you say yes here you will get support for the
68309b6bdb3SAlessandro Zummo	  Maxim MAX6902 SPI RTC chip.
68409b6bdb3SAlessandro Zummo
68509b6bdb3SAlessandro Zummo	  This driver can also be built as a module. If so, the module
68609b6bdb3SAlessandro Zummo	  will be called rtc-max6902.
68709b6bdb3SAlessandro Zummo
6882805b969SMagnus Dammconfig RTC_DRV_R9701
6892805b969SMagnus Damm	tristate "Epson RTC-9701JE"
6902805b969SMagnus Damm	help
6912805b969SMagnus Damm	  If you say yes here you will get support for the
6922805b969SMagnus Damm	  Epson RTC-9701JE SPI RTC chip.
6932805b969SMagnus Damm
6942805b969SMagnus Damm	  This driver can also be built as a module. If so, the module
6952805b969SMagnus Damm	  will be called rtc-r9701.
6962805b969SMagnus Damm
69709a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348
69809a21e56SAlessandro Zummo	tristate "Ricoh RS5C348A/B"
69909a21e56SAlessandro Zummo	help
70009a21e56SAlessandro Zummo	  If you say yes here you get support for the
70109a21e56SAlessandro Zummo	  Ricoh RS5C348A and RS5C348B RTC chips.
70209a21e56SAlessandro Zummo
70309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
70409a21e56SAlessandro Zummo	  will be called rtc-rs5c348.
70509a21e56SAlessandro Zummo
7062f9b75e0SDennis Aberillaconfig RTC_DRV_DS3234
7072f9b75e0SDennis Aberilla	tristate "Maxim/Dallas DS3234"
7082f9b75e0SDennis Aberilla	help
7092f9b75e0SDennis Aberilla	  If you say yes here you get support for the
7102f9b75e0SDennis Aberilla	  Maxim/Dallas DS3234 SPI RTC chip.
7112f9b75e0SDennis Aberilla
7122f9b75e0SDennis Aberilla	  This driver can also be built as a module. If so, the module
7132f9b75e0SDennis Aberilla	  will be called rtc-ds3234.
7142f9b75e0SDennis Aberilla
7157f3923a1SChris Vergesconfig RTC_DRV_PCF2123
7167f3923a1SChris Verges	tristate "NXP PCF2123"
7177f3923a1SChris Verges	help
7187f3923a1SChris Verges	  If you say yes here you get support for the NXP PCF2123
7197f3923a1SChris Verges	  RTC chip.
7207f3923a1SChris Verges
7217f3923a1SChris Verges	  This driver can also be built as a module. If so, the module
7227f3923a1SChris Verges	  will be called rtc-pcf2123.
7237f3923a1SChris Verges
724cce2da9aSTorben Hohnconfig RTC_DRV_RX4581
725cce2da9aSTorben Hohn	tristate "Epson RX-4581"
726cce2da9aSTorben Hohn	help
727cce2da9aSTorben Hohn	  If you say yes here you will get support for the Epson RX-4581.
728cce2da9aSTorben Hohn
729cce2da9aSTorben Hohn	  This driver can also be built as a module. If so the module
730cce2da9aSTorben Hohn	  will be called rtc-rx4581.
731cce2da9aSTorben Hohn
7321fcbe42cSJosef Gajdusekconfig RTC_DRV_MCP795
7331fcbe42cSJosef Gajdusek	tristate "Microchip MCP795"
7341fcbe42cSJosef Gajdusek	help
7351fcbe42cSJosef Gajdusek	  If you say yes here you will get support for the Microchip MCP795.
7361fcbe42cSJosef Gajdusek
7371fcbe42cSJosef Gajdusek	  This driver can also be built as a module. If so the module
7381fcbe42cSJosef Gajdusek	  will be called rtc-mcp795.
7391fcbe42cSJosef Gajdusek
740bb35fb20SJan Engelhardtendif # SPI_MASTER
741bb35fb20SJan Engelhardt
74209a21e56SAlessandro Zummocomment "Platform RTC drivers"
7430c86edc0SAlessandro Zummo
7447be2c7c9SDavid Brownell# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
7457be2c7c9SDavid Brownell# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
7467be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device.
7477be2c7c9SDavid Brownell
7487be2c7c9SDavid Brownellconfig RTC_DRV_CMOS
74909a21e56SAlessandro Zummo	tristate "PC-style 'CMOS'"
75041c9dbf4SGeert Uytterhoeven	depends on X86 || ARM || M32R || PPC || MIPS || SPARC64
751c7500900SDavid Brownell	default y if X86
7527be2c7c9SDavid Brownell	help
7537be2c7c9SDavid Brownell	  Say "yes" here to get direct support for the real time clock
7547be2c7c9SDavid Brownell	  found in every PC or ACPI-based system, and some other boards.
7557be2c7c9SDavid Brownell	  Specifically the original MC146818, compatibles like those in
7567be2c7c9SDavid Brownell	  PC south bridges, the DS12887 or M48T86, some multifunction
7577be2c7c9SDavid Brownell	  or LPC bus chips, and so on.
7587be2c7c9SDavid Brownell
7597be2c7c9SDavid Brownell	  Your system will need to define the platform device used by
7607be2c7c9SDavid Brownell	  this driver, otherwise it won't be accessible. This means
7617be2c7c9SDavid Brownell	  you can safely enable this driver if you don't know whether
7627be2c7c9SDavid Brownell	  or not your board has this kind of hardware.
7637be2c7c9SDavid Brownell
7647be2c7c9SDavid Brownell	  This driver can also be built as a module. If so, the module
7657be2c7c9SDavid Brownell	  will be called rtc-cmos.
7667be2c7c9SDavid Brownell
76785d0b3a5SRichard Hendersonconfig RTC_DRV_ALPHA
76885d0b3a5SRichard Henderson	bool "Alpha PC-style CMOS"
76985d0b3a5SRichard Henderson	depends on ALPHA
77085d0b3a5SRichard Henderson	default y
77185d0b3a5SRichard Henderson	help
77285d0b3a5SRichard Henderson	  Direct support for the real-time clock found on every Alpha
77385d0b3a5SRichard Henderson	  system, specifically MC146818 compatibles.  If in doubt, say Y.
77485d0b3a5SRichard Henderson
7750146f261SFeng Tangconfig RTC_DRV_VRTC
776933b9463SAlan Cox	tristate "Virtual RTC for Intel MID platforms"
777933b9463SAlan Cox	depends on X86_INTEL_MID
778933b9463SAlan Cox	default y if X86_INTEL_MID
7790146f261SFeng Tang
7800146f261SFeng Tang	help
7810146f261SFeng Tang	Say "yes" here to get direct support for the real time clock
7820146f261SFeng Tang	found on Moorestown platforms. The VRTC is a emulated RTC that
7830146f261SFeng Tang	derives its clock source from a real RTC in the PMIC. The MC146818
7840146f261SFeng Tang	style programming interface is mostly conserved, but any
7850146f261SFeng Tang	updates are done via IPC calls to the system controller FW.
7860146f261SFeng Tang
787537739deSThomas Bogendoerferconfig RTC_DRV_DS1216
788537739deSThomas Bogendoerfer	tristate "Dallas DS1216"
789bb35fb20SJan Engelhardt	depends on SNI_RM
790537739deSThomas Bogendoerfer	help
791537739deSThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1216 RTC chips.
792537739deSThomas Bogendoerfer
7935f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286
7945f119f29SThomas Bogendoerfer	tristate "Dallas DS1286"
795706b632dSChen Gang	depends on HAS_IOMEM
7965f119f29SThomas Bogendoerfer	help
7975f119f29SThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1286 RTC chips.
7985f119f29SThomas Bogendoerfer
799739d340dSPaul Mundtconfig RTC_DRV_DS1302
800739d340dSPaul Mundt	tristate "Dallas DS1302"
801739d340dSPaul Mundt	depends on SH_SECUREEDGE5410
802739d340dSPaul Mundt	help
803739d340dSPaul Mundt	  If you say yes here you get support for the Dallas DS1302 RTC chips.
804739d340dSPaul Mundt
8058f26795aSAndrew Sharpconfig RTC_DRV_DS1511
8068f26795aSAndrew Sharp	tristate "Dallas DS1511"
807706b632dSChen Gang	depends on HAS_IOMEM
8088f26795aSAndrew Sharp	help
8098f26795aSAndrew Sharp	  If you say yes here you get support for the
8108f26795aSAndrew Sharp	  Dallas DS1511 timekeeping/watchdog chip.
8118f26795aSAndrew Sharp
8128f26795aSAndrew Sharp	  This driver can also be built as a module. If so, the module
8138f26795aSAndrew Sharp	  will be called rtc-ds1511.
8148f26795aSAndrew Sharp
8159bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553
81609b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1553"
817706b632dSChen Gang	depends on HAS_IOMEM
8189bf5b4f5SAtsushi Nemoto	help
8199bf5b4f5SAtsushi Nemoto	  If you say yes here you get support for the
82009b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1553 timekeeping chip.
8219bf5b4f5SAtsushi Nemoto
8229bf5b4f5SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
8239bf5b4f5SAtsushi Nemoto	  will be called rtc-ds1553.
8249bf5b4f5SAtsushi Nemoto
825aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685_FAMILY
826aaaf5fbfSJoshua Kinard	tristate "Dallas/Maxim DS1685 Family"
827aaaf5fbfSJoshua Kinard	help
828aaaf5fbfSJoshua Kinard	  If you say yes here you get support for the Dallas/Maxim DS1685
829aaaf5fbfSJoshua Kinard	  family of real time chips.  This family includes the DS1685/DS1687,
830aaaf5fbfSJoshua Kinard	  DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and
831aaaf5fbfSJoshua Kinard	  DS17885/DS17887 chips.
832aaaf5fbfSJoshua Kinard
833aaaf5fbfSJoshua Kinard	  This driver can also be built as a module. If so, the module
834aaaf5fbfSJoshua Kinard	  will be called rtc-ds1685.
835aaaf5fbfSJoshua Kinard
836aaaf5fbfSJoshua Kinardchoice
837aaaf5fbfSJoshua Kinard	prompt "Subtype"
838aaaf5fbfSJoshua Kinard	depends on RTC_DRV_DS1685_FAMILY
839aaaf5fbfSJoshua Kinard	default RTC_DRV_DS1685
840aaaf5fbfSJoshua Kinard
841aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685
842aaaf5fbfSJoshua Kinard	bool "DS1685/DS1687"
843aaaf5fbfSJoshua Kinard	help
844aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS1685/DS1687 real time
845aaaf5fbfSJoshua Kinard	  clock chip.
846aaaf5fbfSJoshua Kinard
847aaaf5fbfSJoshua Kinard	  This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30)
848aaaf5fbfSJoshua Kinard	  systems, as well as EPPC-405-UC modules by electronic system design
849aaaf5fbfSJoshua Kinard	  GmbH.
850aaaf5fbfSJoshua Kinard
851aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1689
852aaaf5fbfSJoshua Kinard	bool "DS1689/DS1693"
853aaaf5fbfSJoshua Kinard	help
854aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS1689/DS1693 real time
855aaaf5fbfSJoshua Kinard	  clock chip.
856aaaf5fbfSJoshua Kinard
857aaaf5fbfSJoshua Kinard	  This is an older RTC chip, supplanted by the DS1685/DS1687 above,
858aaaf5fbfSJoshua Kinard	  which supports a few minor features such as Vcc, Vbat, and Power
859aaaf5fbfSJoshua Kinard	  Cycle counters, plus a customer-specific, 8-byte ROM/Serial number.
860aaaf5fbfSJoshua Kinard
861aaaf5fbfSJoshua Kinard	  It also works for the even older DS1688/DS1691 RTC chips, which are
862aaaf5fbfSJoshua Kinard	  virtually the same and carry the same model number.  Both chips
863aaaf5fbfSJoshua Kinard	  have 114 bytes of user NVRAM.
864aaaf5fbfSJoshua Kinard
865aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17285
866aaaf5fbfSJoshua Kinard	bool "DS17285/DS17287"
867aaaf5fbfSJoshua Kinard	help
868aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS17285/DS17287 real time
869aaaf5fbfSJoshua Kinard	  clock chip.
870aaaf5fbfSJoshua Kinard
871aaaf5fbfSJoshua Kinard	  This chip features 2kb of extended NV-SRAM.  It may possibly be
872aaaf5fbfSJoshua Kinard	  found in some SGI O2 systems (rare).
873aaaf5fbfSJoshua Kinard
874aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17485
875aaaf5fbfSJoshua Kinard	bool "DS17485/DS17487"
876aaaf5fbfSJoshua Kinard	help
877aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS17485/DS17487 real time
878aaaf5fbfSJoshua Kinard	  clock chip.
879aaaf5fbfSJoshua Kinard
880aaaf5fbfSJoshua Kinard	  This chip features 4kb of extended NV-SRAM.
881aaaf5fbfSJoshua Kinard
882aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17885
883aaaf5fbfSJoshua Kinard	bool "DS17885/DS17887"
884aaaf5fbfSJoshua Kinard	help
885aaaf5fbfSJoshua Kinard	  This enables support for the Dallas/Maxim DS17885/DS17887 real time
886aaaf5fbfSJoshua Kinard	  clock chip.
887aaaf5fbfSJoshua Kinard
888aaaf5fbfSJoshua Kinard	  This chip features 8kb of extended NV-SRAM.
889aaaf5fbfSJoshua Kinard
890aaaf5fbfSJoshua Kinardendchoice
891aaaf5fbfSJoshua Kinard
892aaaf5fbfSJoshua Kinardconfig RTC_DS1685_PROC_REGS
893aaaf5fbfSJoshua Kinard	bool "Display register values in /proc"
894aaaf5fbfSJoshua Kinard	depends on RTC_DRV_DS1685_FAMILY && PROC_FS
895aaaf5fbfSJoshua Kinard	help
896aaaf5fbfSJoshua Kinard	  Enable this to display a readout of all of the RTC registers in
897aaaf5fbfSJoshua Kinard	  /proc/drivers/rtc.  Keep in mind that this can potentially lead
898aaaf5fbfSJoshua Kinard	  to lost interrupts, as reading Control Register C will clear
899aaaf5fbfSJoshua Kinard	  all pending IRQ flags.
900aaaf5fbfSJoshua Kinard
901aaaf5fbfSJoshua Kinard	  Unless you are debugging this driver, choose N.
902aaaf5fbfSJoshua Kinard
903aaaf5fbfSJoshua Kinardconfig RTC_DS1685_SYSFS_REGS
904aaaf5fbfSJoshua Kinard	bool "SysFS access to RTC register bits"
905aaaf5fbfSJoshua Kinard	depends on RTC_DRV_DS1685_FAMILY && SYSFS
906aaaf5fbfSJoshua Kinard	help
907aaaf5fbfSJoshua Kinard	  Enable this to provide access to the RTC control register bits
908aaaf5fbfSJoshua Kinard	  in /sys.  Some of the bits are read-write, others are read-only.
909aaaf5fbfSJoshua Kinard
910aaaf5fbfSJoshua Kinard	  Keep in mind that reading Control C's bits automatically clears
911aaaf5fbfSJoshua Kinard	  all pending IRQ flags - this can cause lost interrupts.
912aaaf5fbfSJoshua Kinard
913aaaf5fbfSJoshua Kinard	  If you know that you need access to these bits, choose Y, Else N.
914aaaf5fbfSJoshua Kinard
91509b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742
91609b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1742/1743"
917706b632dSChen Gang	depends on HAS_IOMEM
91809b6bdb3SAlessandro Zummo	help
91909b6bdb3SAlessandro Zummo	  If you say yes here you get support for the
92009b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1742/1743 timekeeping chip.
92109b6bdb3SAlessandro Zummo
92209b6bdb3SAlessandro Zummo	  This driver can also be built as a module. If so, the module
92309b6bdb3SAlessandro Zummo	  will be called rtc-ds1742.
92409b6bdb3SAlessandro Zummo
925ad0200f7SJean Delvareconfig RTC_DRV_DS2404
926ad0200f7SJean Delvare	tristate "Maxim/Dallas DS2404"
927ad0200f7SJean Delvare	help
928ad0200f7SJean Delvare	  If you say yes here you get support for the
929ad0200f7SJean Delvare	  Dallas DS2404 RTC chip.
930ad0200f7SJean Delvare
931ad0200f7SJean Delvare	  This driver can also be built as a module. If so, the module
932ad0200f7SJean Delvare	  will be called rtc-ds2404.
933ad0200f7SJean Delvare
934fef931ffSAshish Jangamconfig RTC_DRV_DA9052
935fef931ffSAshish Jangam	tristate "Dialog DA9052/DA9053 RTC"
936fef931ffSAshish Jangam	depends on PMIC_DA9052
937fef931ffSAshish Jangam	help
938fef931ffSAshish Jangam	  Say y here to support the RTC driver for Dialog Semiconductor
939fef931ffSAshish Jangam	  DA9052-BC and DA9053-AA/Bx PMICs.
940fef931ffSAshish Jangam
9416920d996SAshish Jangamconfig RTC_DRV_DA9055
9426920d996SAshish Jangam	tristate "Dialog Semiconductor DA9055 RTC"
9436920d996SAshish Jangam	depends on MFD_DA9055
9446920d996SAshish Jangam	help
9456920d996SAshish Jangam	  If you say yes here you will get support for the
9466920d996SAshish Jangam	  RTC of the Dialog DA9055 PMIC.
9476920d996SAshish Jangam
9486920d996SAshish Jangam	  This driver can also be built as a module. If so, the module
9496920d996SAshish Jangam	  will be called rtc-da9055
9506920d996SAshish Jangam
951c2a57550SOpensource [Steve Twiss]config RTC_DRV_DA9063
952c2a57550SOpensource [Steve Twiss]	tristate "Dialog Semiconductor DA9063 RTC"
953c2a57550SOpensource [Steve Twiss]	depends on MFD_DA9063
954c2a57550SOpensource [Steve Twiss]	help
955c2a57550SOpensource [Steve Twiss]	  If you say yes here you will get support for the RTC subsystem
956c2a57550SOpensource [Steve Twiss]	  of the Dialog Semiconductor DA9063.
957c2a57550SOpensource [Steve Twiss]
958c2a57550SOpensource [Steve Twiss]	  This driver can also be built as a module. If so, the module
959c2a57550SOpensource [Steve Twiss]	  will be called "rtc-da9063".
960c2a57550SOpensource [Steve Twiss]
9615e3fd9e5Sdann frazierconfig RTC_DRV_EFI
9625e3fd9e5Sdann frazier	tristate "EFI RTC"
9637efe6659SMatt Fleming	depends on EFI && !X86
9645e3fd9e5Sdann frazier	help
9655e3fd9e5Sdann frazier	  If you say yes here you will get support for the EFI
9665e3fd9e5Sdann frazier	  Real Time Clock.
9675e3fd9e5Sdann frazier
9685e3fd9e5Sdann frazier	  This driver can also be built as a module. If so, the module
9695e3fd9e5Sdann frazier	  will be called rtc-efi.
9705e3fd9e5Sdann frazier
97102964115SThomas Hommelconfig RTC_DRV_STK17TA8
97202964115SThomas Hommel	tristate "Simtek STK17TA8"
973706b632dSChen Gang	depends on HAS_IOMEM
97402964115SThomas Hommel	help
97502964115SThomas Hommel	  If you say yes here you get support for the
97602964115SThomas Hommel	  Simtek STK17TA8 timekeeping chip.
97702964115SThomas Hommel
97802964115SThomas Hommel	  This driver can also be built as a module. If so, the module
97902964115SThomas Hommel	  will be called rtc-stk17ta8.
98002964115SThomas Hommel
98109a21e56SAlessandro Zummoconfig RTC_DRV_M48T86
98209a21e56SAlessandro Zummo	tristate "ST M48T86/Dallas DS12887"
98309a21e56SAlessandro Zummo	help
98409a21e56SAlessandro Zummo	  If you say Y here you will get support for the
98509a21e56SAlessandro Zummo	  ST M48T86 and Dallas DS12887 RTC chips.
98609a21e56SAlessandro Zummo
98709a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
98809a21e56SAlessandro Zummo	  will be called rtc-m48t86.
98909a21e56SAlessandro Zummo
990d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35
991d1dbd82eSThomas Bogendoerfer	tristate "ST M48T35"
992706b632dSChen Gang	depends on HAS_IOMEM
993d1dbd82eSThomas Bogendoerfer	help
994d1dbd82eSThomas Bogendoerfer	  If you say Y here you will get support for the
995d1dbd82eSThomas Bogendoerfer	  ST M48T35 RTC chip.
996d1dbd82eSThomas Bogendoerfer
997d1dbd82eSThomas Bogendoerfer	  This driver can also be built as a module, if so, the module
998d1dbd82eSThomas Bogendoerfer	  will be called "rtc-m48t35".
999d1dbd82eSThomas Bogendoerfer
10002e774c7cSMark Zhanconfig RTC_DRV_M48T59
100194fe7424SKrzysztof Helt	tristate "ST M48T59/M48T08/M48T02"
1002706b632dSChen Gang	depends on HAS_IOMEM
10032e774c7cSMark Zhan	help
10042e774c7cSMark Zhan	  If you say Y here you will get support for the
100594fe7424SKrzysztof Helt	  ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
100694fe7424SKrzysztof Helt
100794fe7424SKrzysztof Helt	  These chips are usually found in Sun SPARC and UltraSPARC
100894fe7424SKrzysztof Helt	  workstations.
10092e774c7cSMark Zhan
10102e774c7cSMark Zhan	  This driver can also be built as a module, if so, the module
10112e774c7cSMark Zhan	  will be called "rtc-m48t59".
10122e774c7cSMark Zhan
10134f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242
10144f9b9bbaSGeert Uytterhoeven	tristate "Oki MSM6242"
1015706b632dSChen Gang	depends on HAS_IOMEM
10164f9b9bbaSGeert Uytterhoeven	help
10174f9b9bbaSGeert Uytterhoeven	  If you say yes here you get support for the Oki MSM6242
10184f9b9bbaSGeert Uytterhoeven	  timekeeping chip. It is used in some Amiga models (e.g. A2000).
10194f9b9bbaSGeert Uytterhoeven
10204f9b9bbaSGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
10214f9b9bbaSGeert Uytterhoeven	  will be called rtc-msm6242.
10224f9b9bbaSGeert Uytterhoeven
1023cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802
1024cca4c231SDavid S. Miller	tristate "TI BQ4802"
1025706b632dSChen Gang	depends on HAS_IOMEM
1026cca4c231SDavid S. Miller	help
1027cca4c231SDavid S. Miller	  If you say Y here you will get support for the TI
1028cca4c231SDavid S. Miller	  BQ4802 RTC chip.
1029cca4c231SDavid S. Miller
1030cca4c231SDavid S. Miller	  This driver can also be built as a module. If so, the module
1031cca4c231SDavid S. Miller	  will be called rtc-bq4802.
1032cca4c231SDavid S. Miller
10334f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01
10344f672ce2SGeert Uytterhoeven	tristate "Ricoh RP5C01"
1035706b632dSChen Gang	depends on HAS_IOMEM
10364f672ce2SGeert Uytterhoeven	help
10374f672ce2SGeert Uytterhoeven	  If you say yes here you get support for the Ricoh RP5C01
10384f672ce2SGeert Uytterhoeven	  timekeeping chip. It is used in some Amiga models (e.g. A3000
10394f672ce2SGeert Uytterhoeven	  and A4000).
10404f672ce2SGeert Uytterhoeven
10414f672ce2SGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
10424f672ce2SGeert Uytterhoeven	  will be called rtc-rp5c01.
10434f672ce2SGeert Uytterhoeven
104409a21e56SAlessandro Zummoconfig RTC_DRV_V3020
104509a21e56SAlessandro Zummo	tristate "EM Microelectronic V3020"
104609a21e56SAlessandro Zummo	help
104709a21e56SAlessandro Zummo	  If you say yes here you will get support for the
104809a21e56SAlessandro Zummo	  EM Microelectronic v3020 RTC chip.
104909a21e56SAlessandro Zummo
105009a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
105109a21e56SAlessandro Zummo	  will be called rtc-v3020.
105209a21e56SAlessandro Zummo
105335c86bf6SMark Brownconfig RTC_DRV_WM831X
105435c86bf6SMark Brown	tristate "Wolfson Microelectronics WM831x RTC"
105535c86bf6SMark Brown	depends on MFD_WM831X
105635c86bf6SMark Brown	help
105735c86bf6SMark Brown	  If you say yes here you will get support for the RTC subsystem
105835c86bf6SMark Brown	  of the Wolfson Microelectronics WM831X series PMICs.
105935c86bf6SMark Brown
106035c86bf6SMark Brown	  This driver can also be built as a module. If so, the module
106135c86bf6SMark Brown	  will be called "rtc-wm831x".
106235c86bf6SMark Brown
1063077eaf5bSMark Brownconfig RTC_DRV_WM8350
1064077eaf5bSMark Brown	tristate "Wolfson Microelectronics WM8350 RTC"
1065077eaf5bSMark Brown	depends on MFD_WM8350
1066077eaf5bSMark Brown	help
1067077eaf5bSMark Brown	  If you say yes here you will get support for the RTC subsystem
1068077eaf5bSMark Brown	  of the Wolfson Microelectronics WM8350.
1069077eaf5bSMark Brown
1070077eaf5bSMark Brown	  This driver can also be built as a module. If so, the module
1071077eaf5bSMark Brown	  will be called "rtc-wm8350".
1072077eaf5bSMark Brown
10730942a71eSRajeev Kumarconfig RTC_DRV_SPEAR
10740942a71eSRajeev Kumar	tristate "SPEAR ST RTC"
10750942a71eSRajeev Kumar	depends on PLAT_SPEAR
10760942a71eSRajeev Kumar	default y
10770942a71eSRajeev Kumar	help
10780942a71eSRajeev Kumar	 If you say Y here you will get support for the RTC found on
10790942a71eSRajeev Kumar	 spear
10800942a71eSRajeev Kumar
1081eae854b2SBalaji Raoconfig RTC_DRV_PCF50633
1082eae854b2SBalaji Rao	depends on MFD_PCF50633
1083eae854b2SBalaji Rao	tristate "NXP PCF50633 RTC"
1084eae854b2SBalaji Rao	help
1085eae854b2SBalaji Rao	  If you say yes here you get support for the RTC subsystem of the
1086eae854b2SBalaji Rao	  NXP PCF50633 used in embedded systems.
1087eae854b2SBalaji Rao
1088bd207cfbSLinus Walleijconfig RTC_DRV_AB3100
1089bd207cfbSLinus Walleij	tristate "ST-Ericsson AB3100 RTC"
1090bd207cfbSLinus Walleij	depends on AB3100_CORE
1091bd207cfbSLinus Walleij	default y if AB3100_CORE
1092bd207cfbSLinus Walleij	help
1093bd207cfbSLinus Walleij	  Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC
1094bd207cfbSLinus Walleij	  support. This chip contains a battery- and capacitor-backed RTC.
1095bd207cfbSLinus Walleij
10960af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500
10970af62f4dSVirupax Sadashivpetimath	tristate "ST-Ericsson AB8500 RTC"
10980af62f4dSVirupax Sadashivpetimath	depends on AB8500_CORE
1099651fb480SUlf Hansson	select RTC_INTF_DEV
1100dc43d4a2SRamesh Chandrasekaran	select RTC_INTF_DEV_UIE_EMUL
11010af62f4dSVirupax Sadashivpetimath	help
11020af62f4dSVirupax Sadashivpetimath	  Select this to enable the ST-Ericsson AB8500 power management IC RTC
11030af62f4dSVirupax Sadashivpetimath	  support. This chip contains a battery- and capacitor-backed RTC.
11040af62f4dSVirupax Sadashivpetimath
1105afd49a7eSWan ZongShunconfig RTC_DRV_NUC900
1106afd49a7eSWan ZongShun	tristate "NUC910/NUC920 RTC driver"
11076b8029faSVenu Byravarasu	depends on ARCH_W90X900
1108afd49a7eSWan ZongShun	help
1109afd49a7eSWan ZongShun	  If you say yes here you get support for the RTC subsystem of the
1110afd49a7eSWan ZongShun	  NUC910/NUC920 used in embedded systems.
1111bd207cfbSLinus Walleij
111216b1d26eSNeelesh Guptaconfig RTC_DRV_OPAL
111316b1d26eSNeelesh Gupta	tristate "IBM OPAL RTC driver"
111416b1d26eSNeelesh Gupta	depends on PPC_POWERNV
111516b1d26eSNeelesh Gupta	default y
111616b1d26eSNeelesh Gupta	help
111716b1d26eSNeelesh Gupta	  If you say yes here you get support for the PowerNV platform RTC
111816b1d26eSNeelesh Gupta	  driver based on OPAL interfaces.
111916b1d26eSNeelesh Gupta
112016b1d26eSNeelesh Gupta	  This driver can also be built as a module. If so, the module
112116b1d26eSNeelesh Gupta	  will be called rtc-opal.
112216b1d26eSNeelesh Gupta
112309a21e56SAlessandro Zummocomment "on-CPU RTC drivers"
112409a21e56SAlessandro Zummo
11258ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI
11268ecf6c54SMiguel Aguilar	tristate "TI DaVinci RTC"
11278ecf6c54SMiguel Aguilar	depends on ARCH_DAVINCI_DM365
11288ecf6c54SMiguel Aguilar	help
11298ecf6c54SMiguel Aguilar	  If you say yes here you get support for the RTC on the
11308ecf6c54SMiguel Aguilar	  DaVinci platforms (DM365).
11318ecf6c54SMiguel Aguilar
11328ecf6c54SMiguel Aguilar	  This driver can also be built as a module. If so, the module
11338ecf6c54SMiguel Aguilar	  will be called rtc-davinci.
11348ecf6c54SMiguel Aguilar
1135ba172208SBaruch Siachconfig RTC_DRV_DIGICOLOR
1136ba172208SBaruch Siach	tristate "Conexant Digicolor RTC"
1137ba172208SBaruch Siach	depends on ARCH_DIGICOLOR
1138ba172208SBaruch Siach	help
1139ba172208SBaruch Siach	  If you say yes here you get support for the RTC on Conexant
1140ba172208SBaruch Siach	  Digicolor platforms. This currently includes the CX92755 SoC.
1141ba172208SBaruch Siach
1142ba172208SBaruch Siach	  This driver can also be built as a module. If so, the module
1143ba172208SBaruch Siach	  will be called rtc-digicolor.
1144ba172208SBaruch Siach
1145b224b9acSFabio Estevamconfig RTC_DRV_IMXDI
1146b224b9acSFabio Estevam	tristate "Freescale IMX DryIce Real Time Clock"
1147ef216ad0SRoland Stigge	depends on ARCH_MXC
1148b224b9acSFabio Estevam	help
1149b224b9acSFabio Estevam	   Support for Freescale IMX DryIce RTC
1150b224b9acSFabio Estevam
1151b224b9acSFabio Estevam	   This driver can also be built as a module, if so, the module
1152b224b9acSFabio Estevam	   will be called "rtc-imxdi".
1153b224b9acSFabio Estevam
1154db68b189SDavid Brownellconfig RTC_DRV_OMAP
11558608976eSLokesh Vutla	tristate "TI OMAP Real Time Clock"
11568608976eSLokesh Vutla	depends on ARCH_OMAP || ARCH_DAVINCI
1157db68b189SDavid Brownell	help
1158427af9a6SAfzal Mohammed	  Say "yes" here to support the on chip real time clock
11598608976eSLokesh Vutla	  present on TI OMAP1, AM33xx, DA8xx/OMAP-L13x, AM43xx and DRA7xx.
1160427af9a6SAfzal Mohammed
1161427af9a6SAfzal Mohammed	  This driver can also be built as a module, if so, module
1162427af9a6SAfzal Mohammed	  will be called rtc-omap.
1163db68b189SDavid Brownell
116416f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC
116516f4efe7SAtul Dahiya	bool
116616f4efe7SAtul Dahiya	help
116716f4efe7SAtul Dahiya	  This will include RTC support for Samsung SoCs. If
116816f4efe7SAtul Dahiya	  you want to include RTC support for any machine, kindly
116916f4efe7SAtul Dahiya	  select this in the respective mach-XXXX/Kconfig file.
117016f4efe7SAtul Dahiya
11711add6781SBen Dooksconfig RTC_DRV_S3C
11721add6781SBen Dooks	tristate "Samsung S3C series SoC RTC"
1173b130d5c2SKukjin Kim	depends on ARCH_S3C64XX || HAVE_S3C_RTC
11741add6781SBen Dooks	help
11751add6781SBen Dooks	  RTC (Realtime Clock) driver for the clock inbuilt into the
11761add6781SBen Dooks	  Samsung S3C24XX series of SoCs. This can provide periodic
11771add6781SBen Dooks	  interrupt rates from 1Hz to 64Hz for user programs, and
11781add6781SBen Dooks	  wakeup from Alarm.
11791add6781SBen Dooks
11801add6781SBen Dooks	  The driver currently supports the common features on all the
11811add6781SBen Dooks	  S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
11821add6781SBen Dooks	  and S3C2442.
11831add6781SBen Dooks
11841add6781SBen Dooks	  This driver can also be build as a module. If so, the module
11851add6781SBen Dooks	  will be called rtc-s3c.
11861add6781SBen Dooks
1187fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX
1188fd507e2fSAlessandro Zummo	tristate "Cirrus Logic EP93XX"
1189bb35fb20SJan Engelhardt	depends on ARCH_EP93XX
1190fd507e2fSAlessandro Zummo	help
1191fd507e2fSAlessandro Zummo	  If you say yes here you get support for the
1192fd507e2fSAlessandro Zummo	  RTC embedded in the Cirrus Logic EP93XX processors.
1193fd507e2fSAlessandro Zummo
1194fd507e2fSAlessandro Zummo	  This driver can also be built as a module. If so, the module
1195fd507e2fSAlessandro Zummo	  will be called rtc-ep93xx.
1196fd507e2fSAlessandro Zummo
1197e842f1c8SRichard Purdieconfig RTC_DRV_SA1100
11983888c090SHaojian Zhuang	tristate "SA11x0/PXA2xx/PXA910"
11993888c090SHaojian Zhuang	depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP
1200e842f1c8SRichard Purdie	help
1201e842f1c8SRichard Purdie	  If you say Y here you will get access to the real time clock
1202e842f1c8SRichard Purdie	  built into your SA11x0 or PXA2xx CPU.
1203e842f1c8SRichard Purdie
1204e842f1c8SRichard Purdie	  To compile this driver as a module, choose M here: the
1205e842f1c8SRichard Purdie	  module will be called rtc-sa1100.
1206fd507e2fSAlessandro Zummo
1207317a6104SPaul Mundtconfig RTC_DRV_SH
1208317a6104SPaul Mundt	tristate "SuperH On-Chip RTC"
12096b8029faSVenu Byravarasu	depends on SUPERH && HAVE_CLK
1210317a6104SPaul Mundt	help
1211317a6104SPaul Mundt	  Say Y here to enable support for the on-chip RTC found in
1212317a6104SPaul Mundt	  most SuperH processors.
1213317a6104SPaul Mundt
1214317a6104SPaul Mundt 	  To compile this driver as a module, choose M here: the
1215317a6104SPaul Mundt	  module will be called rtc-sh.
1216317a6104SPaul Mundt
12178417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX
12183e16f6afSAlessandro Zummo	tristate "NEC VR41XX"
1219bb35fb20SJan Engelhardt	depends on CPU_VR41XX
12203e16f6afSAlessandro Zummo	help
12213e16f6afSAlessandro Zummo	  If you say Y here you will get access to the real time clock
12223e16f6afSAlessandro Zummo	  built into your NEC VR41XX CPU.
12233e16f6afSAlessandro Zummo
12243e16f6afSAlessandro Zummo	  To compile this driver as a module, choose M here: the
12253e16f6afSAlessandro Zummo	  module will be called rtc-vr41xx.
12268417eb7aSYoichi Yuasa
1227a190901cSRussell Kingconfig RTC_DRV_PL030
1228a190901cSRussell King	tristate "ARM AMBA PL030 RTC"
1229a190901cSRussell King	depends on ARM_AMBA
1230a190901cSRussell King	help
1231a190901cSRussell King	  If you say Y here you will get access to ARM AMBA
1232a190901cSRussell King	  PrimeCell PL030 RTC found on certain ARM SOCs.
1233a190901cSRussell King
1234a190901cSRussell King	  To compile this driver as a module, choose M here: the
1235a190901cSRussell King	  module will be called rtc-pl030.
1236a190901cSRussell King
12378ae6e163SDeepak Saxenaconfig RTC_DRV_PL031
12388ae6e163SDeepak Saxena	tristate "ARM AMBA PL031 RTC"
1239bb35fb20SJan Engelhardt	depends on ARM_AMBA
12408ae6e163SDeepak Saxena	help
12418ae6e163SDeepak Saxena	  If you say Y here you will get access to ARM AMBA
124209a21e56SAlessandro Zummo	  PrimeCell PL031 RTC found on certain ARM SOCs.
12438ae6e163SDeepak Saxena
12448ae6e163SDeepak Saxena	  To compile this driver as a module, choose M here: the
12458ae6e163SDeepak Saxena	  module will be called rtc-pl031.
12468ae6e163SDeepak Saxena
1247fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X
1248fa04e78bSHans-Christian Egtvedt	tristate "AT32AP700X series RTC"
1249bb35fb20SJan Engelhardt	depends on PLATFORM_AT32AP
1250fa04e78bSHans-Christian Egtvedt	help
1251fa04e78bSHans-Christian Egtvedt	  Driver for the internal RTC (Realtime Clock) on Atmel AVR32
1252fa04e78bSHans-Christian Egtvedt	  AT32AP700x family processors.
1253fa04e78bSHans-Christian Egtvedt
12547fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200
125524cecc1bSNicolas Ferre	tristate "AT91RM9200 or some AT91SAM9 RTC"
1256938f970eSNicolas Ferre	depends on ARCH_AT91
1257788b1fc6SAndrew Victor	help
12584cdf854fSDavid Brownell	  Driver for the internal RTC (Realtime Clock) module found on
125924cecc1bSNicolas Ferre	  Atmel AT91RM9200's and some  AT91SAM9 chips. On AT91SAM9 chips
12604cdf854fSDavid Brownell	  this is powered by the backup power supply.
12614cdf854fSDavid Brownell
12624cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9
12633969eb48SBoris BREZILLON	tristate "AT91SAM9 RTT as RTC"
1264ee72f18bSNicolas Ferre	depends on ARCH_AT91
126543e112bbSBoris BREZILLON	select MFD_SYSCON
12664cdf854fSDavid Brownell	help
12673969eb48SBoris BREZILLON	  Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which
12683969eb48SBoris BREZILLON	  can be used as an RTC thanks to the backup power supply (e.g. a
12693969eb48SBoris BREZILLON	  small coin cell battery) which keeps this block and the GPBR
12703969eb48SBoris BREZILLON	  (General Purpose Backup Registers) block powered when the device
12713969eb48SBoris BREZILLON	  is shutdown.
12723969eb48SBoris BREZILLON	  Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd
12733969eb48SBoris BREZILLON	  probably want to use the real RTC block instead of the "RTT as an
12743969eb48SBoris BREZILLON	  RTC" driver.
12754cdf854fSDavid Brownell
127645fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX
127745fd8a0cSManuel Lauss	tristate "Au1xxx Counter0 RTC support"
127842a4f17dSManuel Lauss	depends on MIPS_ALCHEMY
127945fd8a0cSManuel Lauss	help
128045fd8a0cSManuel Lauss	  This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
128145fd8a0cSManuel Lauss	  counter) to be used as a RTC.
128245fd8a0cSManuel Lauss
128345fd8a0cSManuel Lauss	  This driver can also be built as a module. If so, the module
128445fd8a0cSManuel Lauss	  will be called rtc-au1xxx.
128545fd8a0cSManuel Lauss
12868cc75c9aSWu, Bryanconfig RTC_DRV_BFIN
12878cc75c9aSWu, Bryan	tristate "Blackfin On-Chip RTC"
12887f604599SGraf Yang	depends on BLACKFIN && !BF561
12898cc75c9aSWu, Bryan	help
12908cc75c9aSWu, Bryan	  If you say yes here you will get support for the
12918cc75c9aSWu, Bryan	  Blackfin On-Chip Real Time Clock.
12928cc75c9aSWu, Bryan
12938cc75c9aSWu, Bryan	  This driver can also be built as a module. If so, the module
12948cc75c9aSWu, Bryan	  will be called rtc-bfin.
12958cc75c9aSWu, Bryan
1296e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313
1297e9f2bd81SNobuhiro Iwamatsu	tristate "Ricoh RS5C313"
1298bb35fb20SJan Engelhardt	depends on SH_LANDISK
1299e9f2bd81SNobuhiro Iwamatsu	help
1300e9f2bd81SNobuhiro Iwamatsu	  If you say yes here you get support for the Ricoh RS5C313 RTC chips.
1301e9f2bd81SNobuhiro Iwamatsu
13023afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC
13033afe6d04SGeert Uytterhoeven	tristate "Generic RTC support"
13043afe6d04SGeert Uytterhoeven	# Please consider writing a new RTC driver instead of using the generic
13053afe6d04SGeert Uytterhoeven	# RTC abstraction
130647c8a08bSPaul Mundt	depends on PARISC || M68K || PPC || SUPERH32
13079eb16864SKyle McMartin	help
13083afe6d04SGeert Uytterhoeven	  Say Y or M here to enable RTC support on systems using the generic
13093afe6d04SGeert Uytterhoeven	  RTC abstraction. If you do not know what you are doing, you should
13109eb16864SKyle McMartin	  just say Y.
13119eb16864SKyle McMartin
1312dc944368SRobert Jarzmikconfig RTC_DRV_PXA
1313dc944368SRobert Jarzmik       tristate "PXA27x/PXA3xx"
1314dc944368SRobert Jarzmik       depends on ARCH_PXA
1315dc944368SRobert Jarzmik       help
1316dc944368SRobert Jarzmik         If you say Y here you will get access to the real time clock
1317dc944368SRobert Jarzmik         built into your PXA27x or PXA3xx CPU.
1318dc944368SRobert Jarzmik
1319dc944368SRobert Jarzmik         This RTC driver uses PXA RTC registers available since pxa27x
1320dc944368SRobert Jarzmik         series (RDxR, RYxR) instead of legacy RCNR, RTAR.
1321dc944368SRobert Jarzmik
1322f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500
1323f77fbdf9SAlexey Charkov	tristate "VIA/WonderMedia 85xx SoC RTC"
1324f77fbdf9SAlexey Charkov	depends on ARCH_VT8500
1325f77fbdf9SAlexey Charkov	help
1326f77fbdf9SAlexey Charkov	  If you say Y here you will get access to the real time clock
1327f77fbdf9SAlexey Charkov	  built into your VIA VT8500 SoC or its relatives.
1328f77fbdf9SAlexey Charkov
1329dc944368SRobert Jarzmik
13307a138edeSDavid S. Millerconfig RTC_DRV_SUN4V
13317a138edeSDavid S. Miller	bool "SUN4V Hypervisor RTC"
13327a138edeSDavid S. Miller	depends on SPARC64
13337a138edeSDavid S. Miller	help
13347a138edeSDavid S. Miller	  If you say Y here you will get support for the Hypervisor
13357a138edeSDavid S. Miller	  based RTC on SUN4V systems.
13367a138edeSDavid S. Miller
13379765d2d9SChen-Yu Tsaiconfig RTC_DRV_SUN6I
13389765d2d9SChen-Yu Tsai	tristate "Allwinner A31 RTC"
13399765d2d9SChen-Yu Tsai	depends on MACH_SUN6I || MACH_SUN8I
13409765d2d9SChen-Yu Tsai	help
13419765d2d9SChen-Yu Tsai	  If you say Y here you will get support for the RTC found on
13429765d2d9SChen-Yu Tsai	  Allwinner A31.
13439765d2d9SChen-Yu Tsai
1344594c6fb9SCarlo Caioneconfig RTC_DRV_SUNXI
1345594c6fb9SCarlo Caione	tristate "Allwinner sun4i/sun7i RTC"
134664a1925cSChen-Yu Tsai	depends on MACH_SUN4I || MACH_SUN7I
1347594c6fb9SCarlo Caione	help
1348594c6fb9SCarlo Caione	  If you say Y here you will get support for the RTC found on
1349594c6fb9SCarlo Caione	  Allwinner A10/A20.
1350594c6fb9SCarlo Caione
1351de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE
1352de2cf332SDavid S. Miller	bool "Starfire RTC"
1353de2cf332SDavid S. Miller	depends on SPARC64
1354de2cf332SDavid S. Miller	help
1355de2cf332SDavid S. Miller	  If you say Y here you will get support for the RTC found on
1356de2cf332SDavid S. Miller	  Starfire systems.
1357de2cf332SDavid S. Miller
13580e149233SAtsushi Nemotoconfig RTC_DRV_TX4939
13590e149233SAtsushi Nemoto	tristate "TX4939 SoC"
13600e149233SAtsushi Nemoto	depends on SOC_TX4939
13610e149233SAtsushi Nemoto	help
13620e149233SAtsushi Nemoto	  Driver for the internal RTC (Realtime Clock) module found on
13630e149233SAtsushi Nemoto	  Toshiba TX4939 SoC.
13640e149233SAtsushi Nemoto
1365defb4514SSaeed Bisharaconfig RTC_DRV_MV
1366defb4514SSaeed Bishara	tristate "Marvell SoC RTC"
1367ace2c020SAndrew Lunn	depends on ARCH_DOVE || ARCH_MVEBU
1368defb4514SSaeed Bishara	help
1369defb4514SSaeed Bishara	  If you say yes here you will get support for the in-chip RTC
1370defb4514SSaeed Bishara	  that can be found in some of Marvell's SoC devices, such as
1371defb4514SSaeed Bishara	  the Kirkwood 88F6281 and 88F6192.
1372defb4514SSaeed Bishara
1373defb4514SSaeed Bishara	  This driver can also be built as a module. If so, the module
1374defb4514SSaeed Bishara	  will be called rtc-mv.
1375defb4514SSaeed Bishara
1376a3a42806SGregory CLEMENTconfig RTC_DRV_ARMADA38X
1377a3a42806SGregory CLEMENT	tristate "Armada 38x Marvell SoC RTC"
1378a3a42806SGregory CLEMENT	depends on ARCH_MVEBU
1379a3a42806SGregory CLEMENT	help
1380a3a42806SGregory CLEMENT	  If you say yes here you will get support for the in-chip RTC
1381a3a42806SGregory CLEMENT	  that can be found in the Armada 38x Marvell's SoC device
1382a3a42806SGregory CLEMENT
1383a3a42806SGregory CLEMENT	  This driver can also be built as a module. If so, the module
1384a3a42806SGregory CLEMENT	  will be called armada38x-rtc.
1385a3a42806SGregory CLEMENT
138698a9bb5bSHans Ulli Krollconfig RTC_DRV_GEMINI
138798a9bb5bSHans Ulli Kroll	tristate "Gemini SoC RTC"
138898a9bb5bSHans Ulli Kroll	depends on ARCH_GEMINI || COMPILE_TEST
138998a9bb5bSHans Ulli Kroll	depends on HAS_IOMEM
139098a9bb5bSHans Ulli Kroll	help
139198a9bb5bSHans Ulli Kroll	  If you say Y here you will get support for the
139298a9bb5bSHans Ulli Kroll	  RTC found on Gemini SoC's.
139398a9bb5bSHans Ulli Kroll
139498a9bb5bSHans Ulli Kroll	  This driver can also be built as a module. If so, the module
139598a9bb5bSHans Ulli Kroll	  will be called rtc-gemini.
139698a9bb5bSHans Ulli Kroll
13970b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3
13980b5f037aSGeert Uytterhoeven	tristate "PS3 RTC"
13990b5f037aSGeert Uytterhoeven	depends on PPC_PS3
14000b5f037aSGeert Uytterhoeven	help
14010b5f037aSGeert Uytterhoeven	  If you say yes here you will get support for the RTC on PS3.
14020b5f037aSGeert Uytterhoeven
14030b5f037aSGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
14040b5f037aSGeert Uytterhoeven	  will be called rtc-ps3.
14050b5f037aSGeert Uytterhoeven
1406aa958f57SLinus Walleijconfig RTC_DRV_COH901331
1407aa958f57SLinus Walleij	tristate "ST-Ericsson COH 901 331 RTC"
1408aa958f57SLinus Walleij	depends on ARCH_U300
1409aa958f57SLinus Walleij	help
1410aa958f57SLinus Walleij	  If you say Y here you will get access to ST-Ericsson
1411aa958f57SLinus Walleij	  COH 901 331 RTC clock found in some ST-Ericsson Mobile
1412aa958f57SLinus Walleij	  Platforms.
1413aa958f57SLinus Walleij
1414aa958f57SLinus Walleij	  This driver can also be built as a module. If so, the module
1415aa958f57SLinus Walleij	  will be called "rtc-coh901331".
1416aa958f57SLinus Walleij
1417aa958f57SLinus Walleij
1418df17f631Sdmitry pervushinconfig RTC_DRV_STMP
141946b21218SWolfram Sang	tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC"
142046b21218SWolfram Sang	depends on ARCH_MXS
142120d048acSAlexandre Belloni	select STMP_DEVICE
1422df17f631Sdmitry pervushin	help
1423df17f631Sdmitry pervushin	  If you say yes here you will get support for the onboard
142446b21218SWolfram Sang	  STMP3xxx/i.MX23/i.MX28 RTC.
1425df17f631Sdmitry pervushin
1426df17f631Sdmitry pervushin	  This driver can also be built as a module. If so, the module
1427df17f631Sdmitry pervushin	  will be called rtc-stmp3xxx.
1428df17f631Sdmitry pervushin
1429d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP
1430d3c7a3f7SDaniel Ribeiro	tristate "PCAP RTC"
1431d3c7a3f7SDaniel Ribeiro	depends on EZX_PCAP
1432d3c7a3f7SDaniel Ribeiro	help
1433d3c7a3f7SDaniel Ribeiro	  If you say Y here you will get support for the RTC found on
1434d3c7a3f7SDaniel Ribeiro	  the PCAP2 ASIC used on some Motorola phones.
1435d3c7a3f7SDaniel Ribeiro
14361c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX
14371c97872bSUwe Kleine-König	depends on MFD_MC13XXX
14381c97872bSUwe Kleine-König	tristate "Freescale MC13xxx RTC"
143943299f28SUwe Kleine-König	help
14401c97872bSUwe Kleine-König	  This enables support for the RTCs found on Freescale's PMICs
14411c97872bSUwe Kleine-König	  MC13783 and MC13892.
144243299f28SUwe Kleine-König
144350aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121
144450aae724SAnatolij Gustschin	tristate "Freescale MPC5121 built-in RTC"
1445955dbea3SDmitry Eremin-Solenikov	depends on PPC_MPC512x || PPC_MPC52xx
144650aae724SAnatolij Gustschin	help
144750aae724SAnatolij Gustschin	  If you say yes here you will get support for the
1448955dbea3SDmitry Eremin-Solenikov	  built-in RTC on MPC5121 or on MPC5200.
144950aae724SAnatolij Gustschin
145050aae724SAnatolij Gustschin	  This driver can also be built as a module. If so, the module
145150aae724SAnatolij Gustschin	  will be called rtc-mpc5121.
145250aae724SAnatolij Gustschin
14533bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740
14543bf0eea8SLars-Peter Clausen	tristate "Ingenic JZ4740 SoC"
14553bf0eea8SLars-Peter Clausen	depends on MACH_JZ4740
14563bf0eea8SLars-Peter Clausen	help
14573bf0eea8SLars-Peter Clausen	  If you say yes here you get support for the Ingenic JZ4740 SoC RTC
14583bf0eea8SLars-Peter Clausen	  controller.
14593bf0eea8SLars-Peter Clausen
14603bf0eea8SLars-Peter Clausen	  This driver can also be buillt as a module. If so, the module
14613bf0eea8SLars-Peter Clausen	  will be called rtc-jz4740.
14623bf0eea8SLars-Peter Clausen
14639aa449beSKevin Wellsconfig RTC_DRV_LPC32XX
14649aa449beSKevin Wells	depends on ARCH_LPC32XX
14659aa449beSKevin Wells	tristate "NXP LPC32XX RTC"
14669aa449beSKevin Wells	help
14679aa449beSKevin Wells	  This enables support for the NXP RTC in the LPC32XX
14689aa449beSKevin Wells
14699aa449beSKevin Wells	  This driver can also be buillt as a module. If so, the module
14709aa449beSKevin Wells	  will be called rtc-lpc32xx.
14719aa449beSKevin Wells
14729a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX
14739a9a54adSAnirudh Ghayal	tristate "Qualcomm PMIC8XXX RTC"
1474c8d523a4SStanimir Varbanov	depends on MFD_PM8XXX || MFD_SPMI_PMIC
14759a9a54adSAnirudh Ghayal	help
14769a9a54adSAnirudh Ghayal	  If you say yes here you get support for the
14779a9a54adSAnirudh Ghayal	  Qualcomm PMIC8XXX RTC.
14789a9a54adSAnirudh Ghayal
14799a9a54adSAnirudh Ghayal	  To compile this driver as a module, choose M here: the
14809a9a54adSAnirudh Ghayal	  module will be called rtc-pm8xxx.
14819a9a54adSAnirudh Ghayal
1482ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA
1483ff859ba6SAndrew Chew	tristate "NVIDIA Tegra Internal RTC driver"
14846b8029faSVenu Byravarasu	depends on ARCH_TEGRA
1485ff859ba6SAndrew Chew	help
1486ff859ba6SAndrew Chew	  If you say yes here you get support for the
1487ff859ba6SAndrew Chew	  Tegra 200 series internal RTC module.
1488ff859ba6SAndrew Chew
1489ff859ba6SAndrew Chew	  This drive can also be built as a module. If so, the module
1490ff859ba6SAndrew Chew	  will be called rtc-tegra.
1491ff859ba6SAndrew Chew
1492dd196a2bSChris Metcalfconfig RTC_DRV_TILE
1493dd196a2bSChris Metcalf	tristate "Tilera hypervisor RTC support"
1494dd196a2bSChris Metcalf	depends on TILE
1495dd196a2bSChris Metcalf	help
1496dd196a2bSChris Metcalf	  Enable support for the Linux driver side of the Tilera
1497dd196a2bSChris Metcalf	  hypervisor's real-time clock interface.
1498dd196a2bSChris Metcalf
14992809e80bSGuan Xuetaoconfig RTC_DRV_PUV3
15002809e80bSGuan Xuetao	tristate "PKUnity v3 RTC support"
15012809e80bSGuan Xuetao	depends on ARCH_PUV3
15022809e80bSGuan Xuetao	help
15032809e80bSGuan Xuetao	  This enables support for the RTC in the PKUnity-v3 SoCs.
15042809e80bSGuan Xuetao
15052809e80bSGuan Xuetao	  This drive can also be built as a module. If so, the module
15062809e80bSGuan Xuetao	  will be called rtc-puv3.
15072809e80bSGuan Xuetao
1508b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1
1509b4f0b880Szhao zhang	tristate "loongson1 RTC support"
1510b4f0b880Szhao zhang	depends on MACH_LOONGSON1
1511b4f0b880Szhao zhang	help
1512b4f0b880Szhao zhang	  This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year
1513b4f0b880Szhao zhang	  counter) to be used as a RTC.
1514b4f0b880Szhao zhang
1515b4f0b880Szhao zhang	  This driver can also be built as a module. If so, the module
1516b4f0b880Szhao zhang	  will be called rtc-ls1x.
1517b4f0b880Szhao zhang
151879811595SFabio Estevamconfig RTC_DRV_MXC
1519b224b9acSFabio Estevam	tristate "Freescale MXC Real Time Clock"
1520b224b9acSFabio Estevam	depends on ARCH_MXC
1521b224b9acSFabio Estevam	help
1522b224b9acSFabio Estevam	   If you say yes here you get support for the Freescale MXC
1523b224b9acSFabio Estevam	   RTC module.
1524b224b9acSFabio Estevam
1525b224b9acSFabio Estevam	   This driver can also be built as a module, if so, the module
1526b224b9acSFabio Estevam	   will be called "rtc-mxc".
1527b224b9acSFabio Estevam
1528179a502fSShawn Guoconfig RTC_DRV_SNVS
1529179a502fSShawn Guo	tristate "Freescale SNVS RTC support"
1530179a502fSShawn Guo	depends on HAS_IOMEM
1531179a502fSShawn Guo	depends on OF
1532179a502fSShawn Guo	help
1533179a502fSShawn Guo	   If you say yes here you get support for the Freescale SNVS
1534179a502fSShawn Guo	   Low Power (LP) RTC module.
1535179a502fSShawn Guo
1536179a502fSShawn Guo	   This driver can also be built as a module, if so, the module
1537179a502fSShawn Guo	   will be called "rtc-snvs".
1538179a502fSShawn Guo
1539e88b815eSXianglong Duconfig RTC_DRV_SIRFSOC
1540e88b815eSXianglong Du	tristate "SiRFSOC RTC"
1541e88b815eSXianglong Du	depends on ARCH_SIRF
1542e88b815eSXianglong Du	help
1543e88b815eSXianglong Du	  Say "yes" here to support the real time clock on SiRF SOC chips.
1544e88b815eSXianglong Du	  This driver can also be built as a module called rtc-sirfsoc.
1545e88b815eSXianglong Du
1546453b4c6dSJonas Jensenconfig RTC_DRV_MOXART
1547453b4c6dSJonas Jensen	tristate "MOXA ART RTC"
1548441fb768SJean Delvare	depends on ARCH_MOXART || COMPILE_TEST
1549453b4c6dSJonas Jensen	help
1550453b4c6dSJonas Jensen	   If you say yes here you get support for the MOXA ART
1551453b4c6dSJonas Jensen	   RTC module.
1552453b4c6dSJonas Jensen
1553453b4c6dSJonas Jensen	   This driver can also be built as a module. If so, the module
1554453b4c6dSJonas Jensen	   will be called rtc-moxart
1555453b4c6dSJonas Jensen
1556fc297911STianping Fangconfig RTC_DRV_MT6397
1557fc297911STianping Fang	tristate "Mediatek Real Time Clock driver"
1558fc297911STianping Fang	depends on MFD_MT6397 || COMPILE_TEST
1559fc297911STianping Fang	help
1560fc297911STianping Fang	  This selects the Mediatek(R) RTC driver. RTC is part of Mediatek
1561fc297911STianping Fang	  MT6397 PMIC. You should enable MT6397 PMIC MFD before select
1562fc297911STianping Fang	  Mediatek(R) RTC driver.
1563fc297911STianping Fang
1564fc297911STianping Fang	  If you want to use Mediatek(R) RTC interface, select Y or M here.
1565fc297911STianping Fang
1566f12d8695SLoc Hoconfig RTC_DRV_XGENE
1567f12d8695SLoc Ho	tristate "APM X-Gene RTC"
1568706b632dSChen Gang	depends on HAS_IOMEM
1569fdf8afa1SJean Delvare	depends on ARCH_XGENE || COMPILE_TEST
1570f12d8695SLoc Ho	help
1571f12d8695SLoc Ho	  If you say yes here you get support for the APM X-Gene SoC real time
1572f12d8695SLoc Ho	  clock.
1573f12d8695SLoc Ho
1574f12d8695SLoc Ho	  This driver can also be built as a module, if so, the module
1575f12d8695SLoc Ho	  will be called "rtc-xgene".
1576f12d8695SLoc Ho
157762e00cb9SAlexander Hollercomment "HID Sensor RTC drivers"
157862e00cb9SAlexander Holler
157962e00cb9SAlexander Hollerconfig RTC_DRV_HID_SENSOR_TIME
158062e00cb9SAlexander Holler	tristate "HID Sensor Time"
158162e00cb9SAlexander Holler	depends on USB_HID
158262e00cb9SAlexander Holler	select IIO
158362e00cb9SAlexander Holler	select HID_SENSOR_HUB
158462e00cb9SAlexander Holler	select HID_SENSOR_IIO_COMMON
158562e00cb9SAlexander Holler	help
158662e00cb9SAlexander Holler	  Say yes here to build support for the HID Sensors of type Time.
158762e00cb9SAlexander Holler	  This drivers makes such sensors available as RTCs.
158862e00cb9SAlexander Holler
158962e00cb9SAlexander Holler	  If this driver is compiled as a module, it will be named
159062e00cb9SAlexander Holler	  rtc-hid-sensor-time.
159162e00cb9SAlexander Holler
159262e00cb9SAlexander Holler
1593bb35fb20SJan Engelhardtendif # RTC_CLASS
1594