blob: 6db0a9d75f8d534b08b1afc84b0be0485ced8646 [file] [log] [blame]
David Brownell7be2c7c2007-02-10 01:46:02 -08001#
Alessandro Zummoc58411e2006-03-27 01:16:34 -08002# RTC class/drivers configuration
3#
4
5config RTC_LIB
John Stultzb4d246b2011-04-29 15:03:11 -07006 bool
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08007
Jan Engelhardtbb35fb22007-07-31 00:39:46 -07008menuconfig RTC_CLASS
John Stultzb4d246b2011-04-29 15:03:11 -07009 bool "Real Time Clock"
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080010 default n
Al Viro33694652011-08-18 20:11:59 +010011 depends on !S390 && !UML
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080012 select RTC_LIB
13 help
14 Generic RTC class support. If you say yes here, you will
Alexandre Belloni98ab2c92015-05-09 21:21:54 +020015 be allowed to plug one or more RTCs to your system. You will
Adrian Bunk27ae4102006-06-30 18:18:41 +020016 probably want to enable one or more of the interfaces below.
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080017
Jan Engelhardtbb35fb22007-07-31 00:39:46 -070018if RTC_CLASS
19
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080020config RTC_HCTOSYS
David Brownell7ca1d482007-05-08 00:33:42 -070021 bool "Set system time from RTC on startup and resume"
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080022 default y
23 help
David Brownell7ca1d482007-05-08 00:33:42 -070024 If you say yes here, the system time (wall clock) will be set using
25 the value read from a specified RTC device. This is useful to avoid
26 unnecessary fsck runs at boot time, and to network better.
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080027
28config RTC_HCTOSYS_DEVICE
David Brownell7ca1d482007-05-08 00:33:42 -070029 string "RTC used to set the system time"
Xunlei Pang9c5150b2015-06-12 11:10:16 +080030 depends on RTC_HCTOSYS
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080031 default "rtc0"
32 help
David Brownell7ca1d482007-05-08 00:33:42 -070033 The RTC device that will be used to (re)initialize the system
Alessandro Zummoae64d162009-01-06 14:42:17 -080034 clock, usually rtc0. Initialization is done when the system
35 starts up, and when it resumes from a low power state. This
David Brownell779d2082007-11-14 16:58:29 -080036 device should record time in UTC, since the kernel won't do
37 timezone correction.
David Brownell7ca1d482007-05-08 00:33:42 -070038
David Brownell55ff1ab2007-07-21 04:37:56 -070039 The driver for this RTC device must be loaded before late_initcall
40 functions run, so it must usually be statically linked.
41
David Brownell7ca1d482007-05-08 00:33:42 -070042 This clock should be battery-backed, so that it reads the correct
Alessandro Zummoae64d162009-01-06 14:42:17 -080043 time when the system boots from a power-off state. Otherwise, your
David Brownell7ca1d482007-05-08 00:33:42 -070044 system will need an external clock source (like an NTP server).
45
46 If the clock you specify here is not battery backed, it may still
47 be useful to reinitialize system time when resuming from system
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -080048 sleep states. Do not specify an RTC here unless it stays powered
David Brownell7ca1d482007-05-08 00:33:42 -070049 during all this system's supported sleep states.
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080050
Xunlei Pang9c5150b2015-06-12 11:10:16 +080051config RTC_SYSTOHC
52 bool "Set the RTC time based on NTP synchronization"
53 default y
54 help
55 If you say yes here, the system time (wall clock) will be stored
56 in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11
57 minutes if userspace reports synchronized NTP status.
58
59config RTC_SYSTOHC_DEVICE
60 string "RTC used to synchronize NTP adjustment"
61 depends on RTC_SYSTOHC
62 default RTC_HCTOSYS_DEVICE if RTC_HCTOSYS
63 default "rtc0"
64 help
65 The RTC device used for NTP synchronization. The main difference
66 between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this
67 one can sleep when setting time, because it runs in the workqueue
68 context.
69
David Brownell9e86ecb2006-09-30 23:28:14 -070070config RTC_DEBUG
71 bool "RTC debug support"
David Brownell9e86ecb2006-09-30 23:28:14 -070072 help
73 Say yes here to enable debugging support in the RTC framework
74 and individual RTC drivers.
75
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080076comment "RTC interfaces"
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080077
Alessandro Zummoc5c3e192006-03-27 01:16:39 -080078config RTC_INTF_SYSFS
Christoph Jaeger6341e622014-12-20 15:41:11 -050079 bool "/sys/class/rtc/rtcN (sysfs)"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -070080 depends on SYSFS
Kevin Hilman8dc08392012-10-10 15:54:06 -070081 default RTC_CLASS
Alessandro Zummoc5c3e192006-03-27 01:16:39 -080082 help
David Brownell9e86ecb2006-09-30 23:28:14 -070083 Say yes here if you want to use your RTCs using sysfs interfaces,
84 /sys/class/rtc/rtc0 through /sys/.../rtcN.
Alessandro Zummoc5c3e192006-03-27 01:16:39 -080085
Alessandro Zummoae64d162009-01-06 14:42:17 -080086 If unsure, say Y.
Alessandro Zummoc5c3e192006-03-27 01:16:39 -080087
Alessandro Zummo728a2942006-03-27 01:16:40 -080088config RTC_INTF_PROC
Christoph Jaeger6341e622014-12-20 15:41:11 -050089 bool "/proc/driver/rtc (procfs for rtcN)"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -070090 depends on PROC_FS
Kevin Hilman8dc08392012-10-10 15:54:06 -070091 default RTC_CLASS
Alessandro Zummo728a2942006-03-27 01:16:40 -080092 help
Kim, Milo92589c92012-10-04 17:13:45 -070093 Say yes here if you want to use your system clock RTC through
94 the proc interface, /proc/driver/rtc.
95 Other RTCs will not be available through that API.
96 If there is no RTC for the system clock, then the first RTC(rtc0)
97 is used by default.
Alessandro Zummo728a2942006-03-27 01:16:40 -080098
Alessandro Zummoae64d162009-01-06 14:42:17 -080099 If unsure, say Y.
Alessandro Zummo728a2942006-03-27 01:16:40 -0800100
Alessandro Zummoe8242902006-03-27 01:16:41 -0800101config RTC_INTF_DEV
Christoph Jaeger6341e622014-12-20 15:41:11 -0500102 bool "/dev/rtcN (character devices)"
Kevin Hilman8dc08392012-10-10 15:54:06 -0700103 default RTC_CLASS
Alessandro Zummoe8242902006-03-27 01:16:41 -0800104 help
David Brownell9e86ecb2006-09-30 23:28:14 -0700105 Say yes here if you want to use your RTCs using the /dev
106 interfaces, which "udev" sets up as /dev/rtc0 through
Alessandro Zummoae64d162009-01-06 14:42:17 -0800107 /dev/rtcN.
Alessandro Zummoe8242902006-03-27 01:16:41 -0800108
Alessandro Zummoae64d162009-01-06 14:42:17 -0800109 You may want to set up a symbolic link so one of these
110 can be accessed as /dev/rtc, which is a name
111 expected by "hwclock" and some other programs. Recent
112 versions of "udev" are known to set up the symlink for you.
113
114 If unsure, say Y.
Alessandro Zummoe8242902006-03-27 01:16:41 -0800115
John Stultz6e57b1d2011-02-11 17:45:40 -0800116config RTC_INTF_DEV_UIE_EMUL
117 bool "RTC UIE emulation on dev interface"
118 depends on RTC_INTF_DEV
119 help
120 Provides an emulation for RTC_UIE if the underlying rtc chip
121 driver does not expose RTC_UIE ioctls. Those requests generate
122 once-per-second update interrupts, used for synchronization.
123
124 The emulation code will read the time from the hardware
125 clock several times per second, please enable this option
126 only if you know that you really need it.
127
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700128config RTC_DRV_TEST
129 tristate "Test driver/device"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700130 help
131 If you say yes here you get support for the
132 RTC test driver. It's a software RTC which can be
133 used to test the RTC subsystem APIs. It gets
134 the time from the system clock.
135 You want this driver only if you are doing development
136 on the RTC subsystem. Please read the source code
137 for further details.
138
139 This driver can also be built as a module. If so, the module
140 will be called rtc-test.
141
142comment "I2C RTC drivers"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -0700143 depends on I2C
144
145if I2C
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700146
Haojian Zhuang008b3042011-05-06 17:21:20 +0800147config RTC_DRV_88PM860X
148 tristate "Marvell 88PM860x"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -0700149 depends on I2C && MFD_88PM860X
Haojian Zhuang008b3042011-05-06 17:21:20 +0800150 help
151 If you say yes here you get support for RTC function in Marvell
152 88PM860x chips.
153
154 This driver can also be built as a module. If so, the module
155 will be called rtc-88pm860x.
156
Qiao Zhou2985c292012-07-09 14:37:34 +0800157config RTC_DRV_88PM80X
158 tristate "Marvell 88PM80x"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -0700159 depends on I2C && MFD_88PM800
Qiao Zhou2985c292012-07-09 14:37:34 +0800160 help
161 If you say yes here you get support for RTC function in Marvell
162 88PM80x chips.
163
164 This driver can also be built as a module. If so, the module
165 will be called rtc-88pm80x.
166
Arnaud Ebalard0b2f6222015-02-13 14:41:00 -0800167config RTC_DRV_ABB5ZES3
Alexandre Belloni98ab2c92015-05-09 21:21:54 +0200168 depends on I2C
169 select REGMAP_I2C
170 tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3"
171 help
Arnaud Ebalard0b2f6222015-02-13 14:41:00 -0800172 If you say yes here you get support for the Abracon
173 AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip.
174
175 This driver can also be built as a module. If so, the module
176 will be called rtc-ab-b5ze-s3.
177
Philippe De Muyter4d61ff62015-05-05 16:23:44 -0700178config RTC_DRV_ABX80X
179 tristate "Abracon ABx80x"
180 help
181 If you say yes here you get support for Abracon AB080X and AB180X
182 families of ultra-low-power battery- and capacitor-backed real-time
183 clock chips.
184
185 This driver can also be built as a module. If so, the module
186 will be called rtc-abx80x.
187
Laxman Dewanganb4506262013-11-12 15:11:05 -0800188config RTC_DRV_AS3722
189 tristate "ams AS3722 RTC driver"
190 depends on MFD_AS3722
191 help
192 If you say yes here you get support for the RTC of ams AS3722 PMIC
193 chips.
194
195 This driver can also be built as a module. If so, the module
196 will be called rtc-as3722.
197
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700198config RTC_DRV_DS1307
Matthias Fuchsa2166852009-03-31 15:24:58 -0700199 tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700200 help
201 If you say yes here you get support for various compatible RTC
Alessandro Zummoae64d162009-01-06 14:42:17 -0800202 chips (often with battery backup) connected with I2C. This driver
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700203 should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
Matthias Fuchsa2166852009-03-31 15:24:58 -0700204 EPSON RX-8025 and probably other chips. In some cases the RTC
205 must already have been initialized (by manufacturing or a
206 bootloader).
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700207
208 The first seven registers on these chips hold an RTC, and other
209 registers may add features such as NVRAM, a trickle charger for
Alessandro Zummoae64d162009-01-06 14:42:17 -0800210 the RTC/NVRAM backup power, and alarms. NVRAM is visible in
David Brownell682d73f2007-11-14 16:58:32 -0800211 sysfs, but other chip features may not be available.
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700212
213 This driver can also be built as a module. If so, the module
214 will be called rtc-ds1307.
215
Scott Woodbf4994d2007-10-16 01:28:19 -0700216config RTC_DRV_DS1374
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800217 tristate "Dallas/Maxim DS1374"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -0700218 depends on I2C
Scott Woodbf4994d2007-10-16 01:28:19 -0700219 help
220 If you say yes here you get support for Dallas Semiconductor
Alessandro Zummoae64d162009-01-06 14:42:17 -0800221 DS1374 real-time clock chips. If an interrupt is associated
Scott Woodbf4994d2007-10-16 01:28:19 -0700222 with the device, the alarm functionality is supported.
223
Alessandro Zummoae64d162009-01-06 14:42:17 -0800224 This driver can also be built as a module. If so, the module
Scott Woodbf4994d2007-10-16 01:28:19 -0700225 will be called rtc-ds1374.
226
Søren Andersen920f91e2014-12-10 15:53:54 -0800227config RTC_DRV_DS1374_WDT
228 bool "Dallas/Maxim DS1374 watchdog timer"
229 depends on RTC_DRV_DS1374
230 help
231 If you say Y here you will get support for the
232 watchdog timer in the Dallas Semiconductor DS1374
233 real-time clock chips.
234
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700235config RTC_DRV_DS1672
236 tristate "Dallas/Maxim DS1672"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700237 help
238 If you say yes here you get support for the
239 Dallas/Maxim DS1672 timekeeping chip.
240
241 This driver can also be built as a module. If so, the module
242 will be called rtc-ds1672.
243
Roy Zangc03675f2010-08-10 18:02:20 -0700244config RTC_DRV_DS3232
245 tristate "Dallas/Maxim DS3232"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -0700246 depends on I2C
Roy Zangc03675f2010-08-10 18:02:20 -0700247 help
248 If you say yes here you get support for Dallas Semiconductor
Lan Chunhe-B25806f46418c2010-10-27 15:33:12 -0700249 DS3232 real-time clock chips. If an interrupt is associated
250 with the device, the alarm functionality is supported.
Roy Zangc03675f2010-08-10 18:02:20 -0700251
252 This driver can also be built as a module. If so, the module
253 will be called rtc-ds3232.
254
Heiko Stuebnerdcaf0382014-01-23 15:55:10 -0800255config RTC_DRV_HYM8563
256 tristate "Haoyu Microelectronics HYM8563"
257 depends on I2C && OF
258 help
259 Say Y to enable support for the HYM8563 I2C RTC chip. Apart
260 from the usual rtc functions it provides a clock output of
261 up to 32kHz.
262
263 This driver can also be built as a module. If so, the module
264 will be called rtc-hym8563.
265
Kim, Milo38ae1762013-02-21 16:44:32 -0800266config RTC_DRV_LP8788
267 tristate "TI LP8788 RTC driver"
268 depends on MFD_LP8788
269 help
270 Say Y to enable support for the LP8788 RTC/ALARM driver.
271
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700272config RTC_DRV_MAX6900
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800273 tristate "Maxim MAX6900"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700274 help
275 If you say yes here you will get support for the
276 Maxim MAX6900 I2C RTC chip.
277
278 This driver can also be built as a module. If so, the module
279 will be called rtc-max6900.
280
Stephen Warren94c01ab2012-10-04 17:13:56 -0700281config RTC_DRV_MAX8907
282 tristate "Maxim MAX8907"
283 depends on MFD_MAX8907
284 help
285 If you say yes here you will get support for the
286 RTC of Maxim MAX8907 PMIC.
287
288 This driver can also be built as a module. If so, the module
289 will be called rtc-max8907.
290
Haojian Zhuanga39069f2010-01-25 06:30:29 -0500291config RTC_DRV_MAX8925
292 tristate "Maxim MAX8925"
293 depends on MFD_MAX8925
294 help
295 If you say yes here you will get support for the
296 RTC of Maxim MAX8925 PMIC.
297
298 This driver can also be built as a module. If so, the module
299 will be called rtc-max8925.
300
Joonyoung Shim9b16c0a2010-08-06 11:28:08 +0900301config RTC_DRV_MAX8998
302 tristate "Maxim MAX8998"
303 depends on MFD_MAX8998
304 help
305 If you say yes here you will get support for the
306 RTC of Maxim MAX8998 PMIC.
307
308 This driver can also be built as a module. If so, the module
309 will be called rtc-max8998.
310
Jonghwa Lee5e0b2702013-02-21 16:45:07 -0800311config RTC_DRV_MAX8997
312 tristate "Maxim MAX8997"
313 depends on MFD_MAX8997
314 help
315 If you say yes here you will get support for the
316 RTC of Maxim MAX8997 PMIC.
317
318 This driver can also be built as a module. If so, the module
319 will be called rtc-max8997.
320
Jonghwa Leefca1dd02013-02-21 16:44:26 -0800321config RTC_DRV_MAX77686
322 tristate "Maxim MAX77686"
323 depends on MFD_MAX77686
324 help
325 If you say yes here you will get support for the
326 RTC of Maxim MAX77686 PMIC.
327
328 This driver can also be built as a module. If so, the module
329 will be called rtc-max77686.
330
Chris Zhong3ca1e322014-10-13 15:52:42 -0700331config RTC_DRV_RK808
332 tristate "Rockchip RK808 RTC"
333 depends on MFD_RK808
334 help
335 If you say yes here you will get support for the
336 RTC of RK808 PMIC.
337
338 This driver can also be built as a module. If so, the module
339 will be called rk808-rtc.
340
Javier Martinez Canillasa4d41212014-10-13 15:53:05 -0700341config RTC_DRV_MAX77802
342 tristate "Maxim 77802 RTC"
343 depends on MFD_MAX77686
344 help
345 If you say yes here you will get support for the
346 RTC of Maxim MAX77802 PMIC.
347
348 This driver can also be built as a module. If so, the module
349 will be called rtc-max77802.
350
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700351config RTC_DRV_RS5C372
Paul Mundt5d4529b2008-10-21 20:12:59 +0900352 tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700353 help
354 If you say yes here you get support for the
Paul Mundt5d4529b2008-10-21 20:12:59 +0900355 Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700356
357 This driver can also be built as a module. If so, the module
358 will be called rtc-rs5c372.
359
360config RTC_DRV_ISL1208
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800361 tristate "Intersil ISL1208"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700362 help
363 If you say yes here you get support for the
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800364 Intersil ISL1208 RTC chip.
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700365
366 This driver can also be built as a module. If so, the module
367 will be called rtc-isl1208.
368
Roman Fietzed6c74282010-08-10 18:02:14 -0700369config RTC_DRV_ISL12022
370 tristate "Intersil ISL12022"
371 help
372 If you say yes here you get support for the
373 Intersil ISL12022 RTC chip.
374
375 This driver can also be built as a module. If so, the module
376 will be called rtc-isl12022.
377
Arnaud Ebalard70e12332013-12-19 23:27:28 +0100378config RTC_DRV_ISL12057
Alexandre Belloni98ab2c92015-05-09 21:21:54 +0200379 depends on I2C
380 select REGMAP_I2C
381 tristate "Intersil ISL12057"
382 help
Arnaud Ebalard70e12332013-12-19 23:27:28 +0100383 If you say yes here you get support for the Intersil ISL12057
384 I2C RTC chip.
385
386 This driver can also be built as a module. If so, the module
387 will be called rtc-isl12057.
388
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700389config RTC_DRV_X1205
390 tristate "Xicor/Intersil X1205"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700391 help
392 If you say yes here you get support for the
393 Xicor/Intersil X1205 RTC chip.
394
395 This driver can also be built as a module. If so, the module
396 will be called rtc-x1205.
397
Laxman Dewangan0101e532013-01-03 16:17:00 +0530398config RTC_DRV_PALMAS
399 tristate "TI Palmas RTC driver"
400 depends on MFD_PALMAS
401 help
402 If you say yes here you get support for the RTC of TI PALMA series PMIC
403 chips.
404
405 This driver can also be built as a module. If so, the module
406 will be called rtc-palma.
407
Renaud Cerrato18cb6362013-07-03 15:08:01 -0700408config RTC_DRV_PCF2127
409 tristate "NXP PCF2127"
410 help
411 If you say yes here you get support for the NXP PCF2127/29 RTC
412 chips.
413
414 This driver can also be built as a module. If so, the module
415 will be called rtc-pcf2127.
416
Thierry Redingf803f0d2012-12-17 16:02:44 -0800417config RTC_DRV_PCF8523
418 tristate "NXP PCF8523"
419 help
420 If you say yes here you get support for the NXP PCF8523 RTC
421 chips.
422
423 This driver can also be built as a module. If so, the module
424 will be called rtc-pcf8523.
425
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700426config RTC_DRV_PCF8563
427 tristate "Philips PCF8563/Epson RTC8564"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700428 help
429 If you say yes here you get support for the
430 Philips PCF8563 RTC chip. The Epson RTC8564
431 should work as well.
432
433 This driver can also be built as a module. If so, the module
434 will be called rtc-pcf8563.
435
Søren Andersen796b7ab2014-08-08 14:20:22 -0700436config RTC_DRV_PCF85063
437 tristate "nxp PCF85063"
438 help
439 If you say yes here you get support for the PCF85063 RTC chip
440
441 This driver can also be built as a module. If so, the module
442 will be called rtc-pcf85063.
443
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700444config RTC_DRV_PCF8583
445 tristate "Philips PCF8583"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700446 help
447 If you say yes here you get support for the Philips PCF8583
448 RTC chip found on Acorn RiscPCs. This driver supports the
449 platform specific method of retrieving the current year from
450 the RTC's SRAM. It will work on other platforms with the same
451 chip, but the year will probably have to be tweaked.
452
453 This driver can also be built as a module. If so, the module
454 will be called rtc-pcf8583.
455
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700456config RTC_DRV_M41T80
Wolfram Sang6b1a5232014-06-06 14:35:47 -0700457 tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible"
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700458 help
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700459 If you say Y here you will get support for the ST M41T60
460 and M41T80 RTC chips series. Currently, the following chips are
Daniel Glocknerf30281f2009-04-02 16:57:03 -0700461 supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
Wolfram Sang6b1a5232014-06-06 14:35:47 -0700462 M41ST85, M41ST87, and MicroCrystal RV4162.
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700463
464 This driver can also be built as a module. If so, the module
465 will be called rtc-m41t80.
466
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700467config RTC_DRV_M41T80_WDT
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700468 bool "ST M41T65/M41T80 series RTC watchdog timer"
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700469 depends on RTC_DRV_M41T80
470 help
471 If you say Y here you will get support for the
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700472 watchdog timer in the ST M41T60 and M41T80 RTC chips series.
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700473
Piotr Ziecik1ce7c832009-12-15 16:46:12 -0800474config RTC_DRV_BQ32K
475 tristate "TI BQ32000"
476 help
477 If you say Y here you will get support for the TI
478 BQ32000 I2C RTC chip.
479
480 This driver can also be built as a module. If so, the module
481 will be called rtc-bq32k.
482
David Brownellafd8d0f2009-02-04 15:12:01 -0800483config RTC_DRV_DM355EVM
484 tristate "TI DaVinci DM355 EVM RTC"
485 depends on MFD_DM355EVM_MSP
486 help
487 Supports the RTC firmware in the MSP430 on the DM355 EVM.
488
Tony Lindgren0c4a59f2007-07-17 04:06:09 -0700489config RTC_DRV_TWL92330
Christoph Jaeger6341e622014-12-20 15:41:11 -0500490 bool "TI TWL92330/Menelaus"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -0700491 depends on MENELAUS
Tony Lindgren0c4a59f2007-07-17 04:06:09 -0700492 help
493 If you say yes here you get support for the RTC on the
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200494 TWL92330 "Menelaus" power management chip, used with OMAP2
Alessandro Zummoae64d162009-01-06 14:42:17 -0800495 platforms. The support is integrated with the rest of
Tony Lindgren0c4a59f2007-07-17 04:06:09 -0700496 the Menelaus driver; it's not separate module.
497
David Brownellf96411a2008-10-20 23:50:05 +0200498config RTC_DRV_TWL4030
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100499 tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -0700500 depends on TWL4030_CORE
David Brownellf96411a2008-10-20 23:50:05 +0200501 help
502 If you say yes here you get support for the RTC on the
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100503 TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms.
David Brownellf96411a2008-10-20 23:50:05 +0200504
505 This driver can also be built as a module. If so, the module
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100506 will be called rtc-twl.
David Brownellf96411a2008-10-20 23:50:05 +0200507
Laxman Dewangandc59ed32013-01-04 15:35:44 -0800508config RTC_DRV_TPS6586X
509 tristate "TI TPS6586X RTC driver"
510 depends on MFD_TPS6586X
511 help
Masanari Iidaa895d572013-04-09 02:06:50 +0900512 TI Power Management IC TPS6586X supports RTC functionality
Laxman Dewangandc59ed32013-01-04 15:35:44 -0800513 along with alarm. This driver supports the RTC driver for
514 the TPS6586X RTC module.
515
Venu Byravarasu0e783982012-10-04 17:13:55 -0700516config RTC_DRV_TPS65910
517 tristate "TI TPS65910 RTC driver"
518 depends on RTC_CLASS && MFD_TPS65910
519 help
520 If you say yes here you get support for the RTC on the
521 TPS65910 chips.
522
523 This driver can also be built as a module. If so, the module
524 will be called rtc-tps65910.
525
Laxman Dewangan36d61822013-02-21 16:44:34 -0800526config RTC_DRV_TPS80031
527 tristate "TI TPS80031/TPS80032 RTC driver"
528 depends on MFD_TPS80031
529 help
Masanari Iidaa895d572013-04-09 02:06:50 +0900530 TI Power Management IC TPS80031 supports RTC functionality
Laxman Dewangan36d61822013-02-21 16:44:34 -0800531 along with alarm. This driver supports the RTC driver for
532 the TPS80031 RTC module.
533
Venu Byravarasu90829c02012-10-04 17:14:04 -0700534config RTC_DRV_RC5T583
535 tristate "RICOH 5T583 RTC driver"
536 depends on MFD_RC5T583
537 help
538 If you say yes here you get support for the RTC on the
539 RICOH 5T583 chips.
540
541 This driver can also be built as a module. If so, the module
542 will be called rtc-rc5t583.
543
Byron Bradleyc46288b2008-03-04 14:28:25 -0800544config RTC_DRV_S35390A
545 tristate "Seiko Instruments S-35390A"
Randy Dunlapd4795402008-04-10 21:29:18 -0700546 select BITREVERSE
Byron Bradleyc46288b2008-03-04 14:28:25 -0800547 help
548 If you say yes here you will get support for the Seiko
549 Instruments S-35390A.
550
551 This driver can also be built as a module. If so the module
552 will be called rtc-s35390a.
553
Sergey Lapinc6d8f402008-06-12 15:21:55 -0700554config RTC_DRV_FM3130
555 tristate "Ramtron FM3130"
556 help
557 If you say Y here you will get support for the
558 Ramtron FM3130 RTC chips.
559 Ramtron FM3130 is a chip with two separate devices inside,
560 RTC clock and FRAM. This driver provides only RTC functionality.
561
562 This driver can also be built as a module. If so the module
563 will be called rtc-fm3130.
564
Martyn Welcha7fa9852008-11-12 13:27:06 -0800565config RTC_DRV_RX8581
566 tristate "Epson RX-8581"
567 help
568 If you say yes here you will get support for the Epson RX-8581.
569
570 This driver can also be built as a module. If so the module
571 will be called rtc-rx8581.
572
Wolfgang Grandegger3c2b9072009-06-17 16:26:11 -0700573config RTC_DRV_RX8025
574 tristate "Epson RX-8025SA/NB"
575 help
576 If you say yes here you get support for the Epson
577 RX-8025SA/NB RTC chips.
578
579 This driver can also be built as a module. If so, the module
580 will be called rtc-rx8025.
581
Mike Rapoportae3551f2011-05-26 16:25:04 -0700582config RTC_DRV_EM3027
583 tristate "EM Microelectronic EM3027"
584 help
585 If you say yes here you get support for the EM
586 Microelectronic EM3027 RTC chips.
587
588 This driver can also be built as a module. If so, the module
589 will be called rtc-em3027.
590
Heiko Schocher52365232011-05-26 16:25:05 -0700591config RTC_DRV_RV3029C2
592 tristate "Micro Crystal RTC"
593 help
594 If you say yes here you get support for the Micro Crystal
595 RV3029-C2 RTC chips.
596
597 This driver can also be built as a module. If so, the module
598 will be called rtc-rv3029c2.
599
Sangbeom Kim5bccae62013-11-12 15:11:04 -0800600config RTC_DRV_S5M
Krzysztof Kozlowski0c5deb12014-06-10 15:18:46 -0700601 tristate "Samsung S2M/S5M series"
Sangbeom Kim5bccae62013-11-12 15:11:04 -0800602 depends on MFD_SEC_CORE
603 help
604 If you say yes here you will get support for the
Krzysztof Kozlowski0c5deb12014-06-10 15:18:46 -0700605 RTC of Samsung S2MPS14 and S5M PMIC series.
Sangbeom Kim5bccae62013-11-12 15:11:04 -0800606
607 This driver can also be built as a module. If so, the module
608 will be called rtc-s5m.
609
Jan Engelhardtbb35fb22007-07-31 00:39:46 -0700610endif # I2C
611
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700612comment "SPI RTC drivers"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -0700613
614if SPI_MASTER
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700615
Voss, Nikolaus74d34d42011-05-26 16:25:07 -0700616config RTC_DRV_M41T93
Alexandre Belloni98ab2c92015-05-09 21:21:54 +0200617 tristate "ST M41T93"
618 help
619 If you say yes here you will get support for the
620 ST M41T93 SPI RTC chip.
Voss, Nikolaus74d34d42011-05-26 16:25:07 -0700621
Alexandre Belloni98ab2c92015-05-09 21:21:54 +0200622 This driver can also be built as a module. If so, the module
623 will be called rtc-m41t93.
Voss, Nikolaus74d34d42011-05-26 16:25:07 -0700624
Kim B. Heino8fc2c762008-07-23 21:30:34 -0700625config RTC_DRV_M41T94
626 tristate "ST M41T94"
627 help
628 If you say yes here you will get support for the
629 ST M41T94 SPI RTC chip.
630
631 This driver can also be built as a module. If so, the module
632 will be called rtc-m41t94.
633
David Brownell53e84b62008-07-23 21:30:36 -0700634config RTC_DRV_DS1305
635 tristate "Dallas/Maxim DS1305/DS1306"
636 help
637 Select this driver to get support for the Dallas/Maxim DS1305
Alessandro Zummoae64d162009-01-06 14:42:17 -0800638 and DS1306 real time clock chips. These support a trickle
David Brownell53e84b62008-07-23 21:30:36 -0700639 charger, alarms, and NVRAM in addition to the clock.
640
641 This driver can also be built as a module. If so, the module
642 will be called rtc-ds1305.
643
Raghavendra Ganiga1d6316f2014-06-06 14:35:59 -0700644config RTC_DRV_DS1343
Raghavendra Ganiga0dd449b2014-06-06 14:36:00 -0700645 select REGMAP_SPI
Raghavendra Ganiga1d6316f2014-06-06 14:35:59 -0700646 tristate "Dallas/Maxim DS1343/DS1344"
647 help
648 If you say yes here you get support for the
649 Dallas/Maxim DS1343 and DS1344 real time clock chips.
650 Support for trickle charger, alarm is provided.
651
652 This driver can also be built as a module. If so, the module
653 will be called rtc-ds1343.
654
Raghavendra Ganiga617b26a2014-04-03 14:50:16 -0700655config RTC_DRV_DS1347
656 tristate "Dallas/Maxim DS1347"
657 help
658 If you say yes here you get support for the
659 Dallas/Maxim DS1347 chips.
660
661 This driver only supports the RTC feature, and not other chip
662 features such as alarms.
663
664 This driver can also be built as a module. If so, the module
665 will be called rtc-ds1347.
666
Mark Jackson06de1802008-11-12 13:27:07 -0800667config RTC_DRV_DS1390
668 tristate "Dallas/Maxim DS1390/93/94"
669 help
Alessandro Zummo7b9b2ef2009-01-06 14:42:16 -0800670 If you say yes here you get support for the
671 Dallas/Maxim DS1390/93/94 chips.
Mark Jackson06de1802008-11-12 13:27:07 -0800672
673 This driver only supports the RTC feature, and not other chip
674 features such as alarms and trickle charging.
675
676 This driver can also be built as a module. If so, the module
677 will be called rtc-ds1390.
678
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800679config RTC_DRV_MAX6902
680 tristate "Maxim MAX6902"
681 help
682 If you say yes here you will get support for the
683 Maxim MAX6902 SPI RTC chip.
684
685 This driver can also be built as a module. If so, the module
686 will be called rtc-max6902.
687
Magnus Damm2805b962008-02-06 01:38:53 -0800688config RTC_DRV_R9701
689 tristate "Epson RTC-9701JE"
690 help
691 If you say yes here you will get support for the
692 Epson RTC-9701JE SPI RTC chip.
693
694 This driver can also be built as a module. If so, the module
695 will be called rtc-r9701.
696
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700697config RTC_DRV_RS5C348
698 tristate "Ricoh RS5C348A/B"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700699 help
700 If you say yes here you get support for the
701 Ricoh RS5C348A and RS5C348B RTC chips.
702
703 This driver can also be built as a module. If so, the module
704 will be called rtc-rs5c348.
705
Dennis Aberilla2f9b75e2008-10-15 22:02:57 -0700706config RTC_DRV_DS3234
707 tristate "Maxim/Dallas DS3234"
708 help
709 If you say yes here you get support for the
710 Maxim/Dallas DS3234 SPI RTC chip.
711
712 This driver can also be built as a module. If so, the module
713 will be called rtc-ds3234.
714
Chris Verges7f3923a2009-09-22 16:46:20 -0700715config RTC_DRV_PCF2123
716 tristate "NXP PCF2123"
717 help
718 If you say yes here you get support for the NXP PCF2123
719 RTC chip.
720
721 This driver can also be built as a module. If so, the module
722 will be called rtc-pcf2123.
723
Torben Hohncce2da92013-02-21 16:44:40 -0800724config RTC_DRV_RX4581
725 tristate "Epson RX-4581"
726 help
727 If you say yes here you will get support for the Epson RX-4581.
728
729 This driver can also be built as a module. If so the module
730 will be called rtc-rx4581.
731
Josef Gajdusek1fcbe422014-06-06 14:36:02 -0700732config RTC_DRV_MCP795
733 tristate "Microchip MCP795"
734 help
735 If you say yes here you will get support for the Microchip MCP795.
736
737 This driver can also be built as a module. If so the module
738 will be called rtc-mcp795.
739
Jan Engelhardtbb35fb22007-07-31 00:39:46 -0700740endif # SPI_MASTER
741
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700742comment "Platform RTC drivers"
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800743
David Brownell7be2c7c2007-02-10 01:46:02 -0800744# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
745# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
746# global rtc_lock ... it's not yet just another platform_device.
747
748config RTC_DRV_CMOS
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700749 tristate "PC-style 'CMOS'"
Geert Uytterhoeven41c9dbf2014-01-23 15:55:12 -0800750 depends on X86 || ARM || M32R || PPC || MIPS || SPARC64
David Brownellc7500902008-04-28 02:11:52 -0700751 default y if X86
David Brownell7be2c7c2007-02-10 01:46:02 -0800752 help
753 Say "yes" here to get direct support for the real time clock
754 found in every PC or ACPI-based system, and some other boards.
755 Specifically the original MC146818, compatibles like those in
756 PC south bridges, the DS12887 or M48T86, some multifunction
757 or LPC bus chips, and so on.
758
759 Your system will need to define the platform device used by
Alessandro Zummoae64d162009-01-06 14:42:17 -0800760 this driver, otherwise it won't be accessible. This means
David Brownell7be2c7c2007-02-10 01:46:02 -0800761 you can safely enable this driver if you don't know whether
762 or not your board has this kind of hardware.
763
764 This driver can also be built as a module. If so, the module
765 will be called rtc-cmos.
766
Richard Henderson85d0b3a2013-07-13 15:49:45 -0700767config RTC_DRV_ALPHA
768 bool "Alpha PC-style CMOS"
769 depends on ALPHA
770 default y
771 help
772 Direct support for the real-time clock found on every Alpha
773 system, specifically MC146818 compatibles. If in doubt, say Y.
774
Feng Tang0146f262010-11-10 17:29:17 +0000775config RTC_DRV_VRTC
Alan Cox933b9462011-12-17 17:43:40 +0000776 tristate "Virtual RTC for Intel MID platforms"
777 depends on X86_INTEL_MID
778 default y if X86_INTEL_MID
Feng Tang0146f262010-11-10 17:29:17 +0000779
780 help
781 Say "yes" here to get direct support for the real time clock
782 found on Moorestown platforms. The VRTC is a emulated RTC that
783 derives its clock source from a real RTC in the PMIC. The MC146818
784 style programming interface is mostly conserved, but any
785 updates are done via IPC calls to the system controller FW.
786
Thomas Bogendoerfer537739d2007-07-17 04:05:06 -0700787config RTC_DRV_DS1216
788 tristate "Dallas DS1216"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -0700789 depends on SNI_RM
Thomas Bogendoerfer537739d2007-07-17 04:05:06 -0700790 help
791 If you say yes here you get support for the Dallas DS1216 RTC chips.
792
Thomas Bogendoerfer5f119f22008-10-14 17:16:59 +0200793config RTC_DRV_DS1286
794 tristate "Dallas DS1286"
Chen Gang706b6322014-10-13 15:53:14 -0700795 depends on HAS_IOMEM
Thomas Bogendoerfer5f119f22008-10-14 17:16:59 +0200796 help
797 If you say yes here you get support for the Dallas DS1286 RTC chips.
798
Paul Mundt739d3402008-02-06 01:38:44 -0800799config RTC_DRV_DS1302
800 tristate "Dallas DS1302"
801 depends on SH_SECUREEDGE5410
802 help
803 If you say yes here you get support for the Dallas DS1302 RTC chips.
804
Andrew Sharp8f267952008-02-06 01:38:46 -0800805config RTC_DRV_DS1511
806 tristate "Dallas DS1511"
Chen Gang706b6322014-10-13 15:53:14 -0700807 depends on HAS_IOMEM
Andrew Sharp8f267952008-02-06 01:38:46 -0800808 help
809 If you say yes here you get support for the
810 Dallas DS1511 timekeeping/watchdog chip.
811
812 This driver can also be built as a module. If so, the module
813 will be called rtc-ds1511.
814
Atsushi Nemoto9bf5b4f2006-06-25 05:48:28 -0700815config RTC_DRV_DS1553
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800816 tristate "Maxim/Dallas DS1553"
Chen Gang706b6322014-10-13 15:53:14 -0700817 depends on HAS_IOMEM
Atsushi Nemoto9bf5b4f2006-06-25 05:48:28 -0700818 help
819 If you say yes here you get support for the
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800820 Maxim/Dallas DS1553 timekeeping chip.
Atsushi Nemoto9bf5b4f2006-06-25 05:48:28 -0700821
822 This driver can also be built as a module. If so, the module
823 will be called rtc-ds1553.
824
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -0800825config RTC_DRV_DS1685_FAMILY
826 tristate "Dallas/Maxim DS1685 Family"
827 help
828 If you say yes here you get support for the Dallas/Maxim DS1685
829 family of real time chips. This family includes the DS1685/DS1687,
830 DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and
831 DS17885/DS17887 chips.
832
833 This driver can also be built as a module. If so, the module
834 will be called rtc-ds1685.
835
836choice
837 prompt "Subtype"
838 depends on RTC_DRV_DS1685_FAMILY
839 default RTC_DRV_DS1685
840
841config RTC_DRV_DS1685
842 bool "DS1685/DS1687"
843 help
844 This enables support for the Dallas/Maxim DS1685/DS1687 real time
845 clock chip.
846
847 This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30)
848 systems, as well as EPPC-405-UC modules by electronic system design
849 GmbH.
850
851config RTC_DRV_DS1689
852 bool "DS1689/DS1693"
853 help
854 This enables support for the Dallas/Maxim DS1689/DS1693 real time
855 clock chip.
856
857 This is an older RTC chip, supplanted by the DS1685/DS1687 above,
858 which supports a few minor features such as Vcc, Vbat, and Power
859 Cycle counters, plus a customer-specific, 8-byte ROM/Serial number.
860
861 It also works for the even older DS1688/DS1691 RTC chips, which are
862 virtually the same and carry the same model number. Both chips
863 have 114 bytes of user NVRAM.
864
865config RTC_DRV_DS17285
866 bool "DS17285/DS17287"
867 help
868 This enables support for the Dallas/Maxim DS17285/DS17287 real time
869 clock chip.
870
871 This chip features 2kb of extended NV-SRAM. It may possibly be
872 found in some SGI O2 systems (rare).
873
874config RTC_DRV_DS17485
875 bool "DS17485/DS17487"
876 help
877 This enables support for the Dallas/Maxim DS17485/DS17487 real time
878 clock chip.
879
880 This chip features 4kb of extended NV-SRAM.
881
882config RTC_DRV_DS17885
883 bool "DS17885/DS17887"
884 help
885 This enables support for the Dallas/Maxim DS17885/DS17887 real time
886 clock chip.
887
888 This chip features 8kb of extended NV-SRAM.
889
890endchoice
891
892config RTC_DS1685_PROC_REGS
893 bool "Display register values in /proc"
894 depends on RTC_DRV_DS1685_FAMILY && PROC_FS
895 help
896 Enable this to display a readout of all of the RTC registers in
897 /proc/drivers/rtc. Keep in mind that this can potentially lead
898 to lost interrupts, as reading Control Register C will clear
899 all pending IRQ flags.
900
901 Unless you are debugging this driver, choose N.
902
903config RTC_DS1685_SYSFS_REGS
904 bool "SysFS access to RTC register bits"
905 depends on RTC_DRV_DS1685_FAMILY && SYSFS
906 help
907 Enable this to provide access to the RTC control register bits
908 in /sys. Some of the bits are read-write, others are read-only.
909
910 Keep in mind that reading Control C's bits automatically clears
911 all pending IRQ flags - this can cause lost interrupts.
912
913 If you know that you need access to these bits, choose Y, Else N.
914
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800915config RTC_DRV_DS1742
916 tristate "Maxim/Dallas DS1742/1743"
Chen Gang706b6322014-10-13 15:53:14 -0700917 depends on HAS_IOMEM
Alessandro Zummo09b6bdb3b2008-02-06 01:38:40 -0800918 help
919 If you say yes here you get support for the
920 Maxim/Dallas DS1742/1743 timekeeping chip.
921
922 This driver can also be built as a module. If so, the module
923 will be called rtc-ds1742.
924
Jean Delvaread0200f2014-08-08 14:20:03 -0700925config RTC_DRV_DS2404
926 tristate "Maxim/Dallas DS2404"
927 help
928 If you say yes here you get support for the
929 Dallas DS2404 RTC chip.
930
931 This driver can also be built as a module. If so, the module
932 will be called rtc-ds2404.
933
Ashish Jangamfef931f2012-03-23 15:02:36 -0700934config RTC_DRV_DA9052
935 tristate "Dialog DA9052/DA9053 RTC"
936 depends on PMIC_DA9052
937 help
938 Say y here to support the RTC driver for Dialog Semiconductor
939 DA9052-BC and DA9053-AA/Bx PMICs.
940
Ashish Jangam6920d992012-12-17 16:02:53 -0800941config RTC_DRV_DA9055
942 tristate "Dialog Semiconductor DA9055 RTC"
943 depends on MFD_DA9055
944 help
945 If you say yes here you will get support for the
946 RTC of the Dialog DA9055 PMIC.
947
948 This driver can also be built as a module. If so, the module
949 will be called rtc-da9055
950
Opensource [Steve Twiss]c2a57552014-06-06 14:36:03 -0700951config RTC_DRV_DA9063
952 tristate "Dialog Semiconductor DA9063 RTC"
953 depends on MFD_DA9063
954 help
955 If you say yes here you will get support for the RTC subsystem
956 of the Dialog Semiconductor DA9063.
957
958 This driver can also be built as a module. If so, the module
959 will be called "rtc-da9063".
960
dann frazier5e3fd9e2009-03-31 15:24:48 -0700961config RTC_DRV_EFI
962 tristate "EFI RTC"
Matt Fleming7efe6652014-10-03 13:06:33 +0100963 depends on EFI && !X86
dann frazier5e3fd9e2009-03-31 15:24:48 -0700964 help
965 If you say yes here you will get support for the EFI
966 Real Time Clock.
967
968 This driver can also be built as a module. If so, the module
969 will be called rtc-efi.
970
Thomas Hommel02964112007-07-21 04:37:58 -0700971config RTC_DRV_STK17TA8
972 tristate "Simtek STK17TA8"
Chen Gang706b6322014-10-13 15:53:14 -0700973 depends on HAS_IOMEM
Thomas Hommel02964112007-07-21 04:37:58 -0700974 help
975 If you say yes here you get support for the
976 Simtek STK17TA8 timekeeping chip.
977
978 This driver can also be built as a module. If so, the module
979 will be called rtc-stk17ta8.
980
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700981config RTC_DRV_M48T86
982 tristate "ST M48T86/Dallas DS12887"
Alessandro Zummo09a21e52007-05-08 00:33:48 -0700983 help
984 If you say Y here you will get support for the
985 ST M48T86 and Dallas DS12887 RTC chips.
986
987 This driver can also be built as a module. If so, the module
988 will be called rtc-m48t86.
989
Thomas Bogendoerferd1dbd82e2008-10-14 17:17:32 +0200990config RTC_DRV_M48T35
991 tristate "ST M48T35"
Chen Gang706b6322014-10-13 15:53:14 -0700992 depends on HAS_IOMEM
Thomas Bogendoerferd1dbd82e2008-10-14 17:17:32 +0200993 help
994 If you say Y here you will get support for the
995 ST M48T35 RTC chip.
996
997 This driver can also be built as a module, if so, the module
998 will be called "rtc-m48t35".
999
Mark Zhan2e774c72007-07-17 04:05:05 -07001000config RTC_DRV_M48T59
Krzysztof Helt94fe7422008-09-03 15:12:34 -07001001 tristate "ST M48T59/M48T08/M48T02"
Chen Gang706b6322014-10-13 15:53:14 -07001002 depends on HAS_IOMEM
Mark Zhan2e774c72007-07-17 04:05:05 -07001003 help
1004 If you say Y here you will get support for the
Krzysztof Helt94fe7422008-09-03 15:12:34 -07001005 ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
1006
1007 These chips are usually found in Sun SPARC and UltraSPARC
1008 workstations.
Mark Zhan2e774c72007-07-17 04:05:05 -07001009
1010 This driver can also be built as a module, if so, the module
1011 will be called "rtc-m48t59".
1012
Geert Uytterhoeven4f9b9bb2009-03-18 23:29:27 +01001013config RTC_DRV_MSM6242
1014 tristate "Oki MSM6242"
Chen Gang706b6322014-10-13 15:53:14 -07001015 depends on HAS_IOMEM
Geert Uytterhoeven4f9b9bb2009-03-18 23:29:27 +01001016 help
1017 If you say yes here you get support for the Oki MSM6242
1018 timekeeping chip. It is used in some Amiga models (e.g. A2000).
1019
1020 This driver can also be built as a module. If so, the module
1021 will be called rtc-msm6242.
1022
David S. Millercca4c232008-08-29 01:29:53 -07001023config RTC_DRV_BQ4802
1024 tristate "TI BQ4802"
Chen Gang706b6322014-10-13 15:53:14 -07001025 depends on HAS_IOMEM
David S. Millercca4c232008-08-29 01:29:53 -07001026 help
1027 If you say Y here you will get support for the TI
1028 BQ4802 RTC chip.
1029
1030 This driver can also be built as a module. If so, the module
1031 will be called rtc-bq4802.
1032
Geert Uytterhoeven4f672ce2009-03-18 23:29:27 +01001033config RTC_DRV_RP5C01
1034 tristate "Ricoh RP5C01"
Chen Gang706b6322014-10-13 15:53:14 -07001035 depends on HAS_IOMEM
Geert Uytterhoeven4f672ce2009-03-18 23:29:27 +01001036 help
1037 If you say yes here you get support for the Ricoh RP5C01
1038 timekeeping chip. It is used in some Amiga models (e.g. A3000
1039 and A4000).
1040
1041 This driver can also be built as a module. If so, the module
1042 will be called rtc-rp5c01.
1043
Alessandro Zummo09a21e52007-05-08 00:33:48 -07001044config RTC_DRV_V3020
1045 tristate "EM Microelectronic V3020"
Alessandro Zummo09a21e52007-05-08 00:33:48 -07001046 help
1047 If you say yes here you will get support for the
1048 EM Microelectronic v3020 RTC chip.
1049
1050 This driver can also be built as a module. If so, the module
1051 will be called rtc-v3020.
1052
Mark Brown35c86bf2009-08-27 19:59:05 +02001053config RTC_DRV_WM831X
1054 tristate "Wolfson Microelectronics WM831x RTC"
1055 depends on MFD_WM831X
1056 help
1057 If you say yes here you will get support for the RTC subsystem
1058 of the Wolfson Microelectronics WM831X series PMICs.
1059
1060 This driver can also be built as a module. If so, the module
1061 will be called "rtc-wm831x".
1062
Mark Brown077eaf52008-11-12 13:27:04 -08001063config RTC_DRV_WM8350
1064 tristate "Wolfson Microelectronics WM8350 RTC"
1065 depends on MFD_WM8350
1066 help
1067 If you say yes here you will get support for the RTC subsystem
1068 of the Wolfson Microelectronics WM8350.
1069
1070 This driver can also be built as a module. If so, the module
1071 will be called "rtc-wm8350".
1072
Rajeev Kumar0942a712011-05-26 16:25:09 -07001073config RTC_DRV_SPEAR
1074 tristate "SPEAR ST RTC"
1075 depends on PLAT_SPEAR
1076 default y
1077 help
1078 If you say Y here you will get support for the RTC found on
1079 spear
1080
Balaji Raoeae854b2009-01-09 01:50:51 +01001081config RTC_DRV_PCF50633
1082 depends on MFD_PCF50633
1083 tristate "NXP PCF50633 RTC"
1084 help
1085 If you say yes here you get support for the RTC subsystem of the
1086 NXP PCF50633 used in embedded systems.
1087
Linus Walleijbd207cf2009-08-30 23:49:04 +02001088config RTC_DRV_AB3100
1089 tristate "ST-Ericsson AB3100 RTC"
1090 depends on AB3100_CORE
1091 default y if AB3100_CORE
1092 help
1093 Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC
1094 support. This chip contains a battery- and capacitor-backed RTC.
1095
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -07001096config RTC_DRV_AB8500
1097 tristate "ST-Ericsson AB8500 RTC"
1098 depends on AB8500_CORE
Ulf Hansson651fb482012-10-04 17:14:32 -07001099 select RTC_INTF_DEV
Ramesh Chandrasekarandc43d4a2012-07-30 14:41:41 -07001100 select RTC_INTF_DEV_UIE_EMUL
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -07001101 help
1102 Select this to enable the ST-Ericsson AB8500 power management IC RTC
1103 support. This chip contains a battery- and capacitor-backed RTC.
1104
Wan ZongShunafd49a7e2009-12-15 16:46:17 -08001105config RTC_DRV_NUC900
1106 tristate "NUC910/NUC920 RTC driver"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -07001107 depends on ARCH_W90X900
Wan ZongShunafd49a7e2009-12-15 16:46:17 -08001108 help
1109 If you say yes here you get support for the RTC subsystem of the
1110 NUC910/NUC920 used in embedded systems.
Linus Walleijbd207cf2009-08-30 23:49:04 +02001111
Neelesh Gupta16b1d262014-10-14 14:08:36 +05301112config RTC_DRV_OPAL
1113 tristate "IBM OPAL RTC driver"
1114 depends on PPC_POWERNV
1115 default y
1116 help
1117 If you say yes here you get support for the PowerNV platform RTC
1118 driver based on OPAL interfaces.
1119
1120 This driver can also be built as a module. If so, the module
1121 will be called rtc-opal.
1122
Alessandro Zummo09a21e52007-05-08 00:33:48 -07001123comment "on-CPU RTC drivers"
Alessandro Zummo09a21e52007-05-08 00:33:48 -07001124
Miguel Aguilar8ecf6c52009-11-05 08:51:34 -06001125config RTC_DRV_DAVINCI
1126 tristate "TI DaVinci RTC"
1127 depends on ARCH_DAVINCI_DM365
1128 help
1129 If you say yes here you get support for the RTC on the
1130 DaVinci platforms (DM365).
1131
1132 This driver can also be built as a module. If so, the module
1133 will be called rtc-davinci.
1134
Baruch Siachba172202015-04-16 12:45:40 -07001135config RTC_DRV_DIGICOLOR
1136 tristate "Conexant Digicolor RTC"
1137 depends on ARCH_DIGICOLOR
1138 help
1139 If you say yes here you get support for the RTC on Conexant
1140 Digicolor platforms. This currently includes the CX92755 SoC.
1141
1142 This driver can also be built as a module. If so, the module
1143 will be called rtc-digicolor.
1144
Fabio Estevamb224b9a2012-05-29 15:07:37 -07001145config RTC_DRV_IMXDI
1146 tristate "Freescale IMX DryIce Real Time Clock"
Roland Stiggeef216ad2012-12-17 16:02:22 -08001147 depends on ARCH_MXC
Fabio Estevamb224b9a2012-05-29 15:07:37 -07001148 help
1149 Support for Freescale IMX DryIce RTC
1150
1151 This driver can also be built as a module, if so, the module
1152 will be called "rtc-imxdi".
1153
David Brownelldb68b182006-12-06 20:38:36 -08001154config RTC_DRV_OMAP
Lokesh Vutla86089762015-04-16 12:46:03 -07001155 tristate "TI OMAP Real Time Clock"
1156 depends on ARCH_OMAP || ARCH_DAVINCI
David Brownelldb68b182006-12-06 20:38:36 -08001157 help
Afzal Mohammed427af9a2012-12-17 16:02:17 -08001158 Say "yes" here to support the on chip real time clock
Lokesh Vutla86089762015-04-16 12:46:03 -07001159 present on TI OMAP1, AM33xx, DA8xx/OMAP-L13x, AM43xx and DRA7xx.
Afzal Mohammed427af9a2012-12-17 16:02:17 -08001160
1161 This driver can also be built as a module, if so, module
1162 will be called rtc-omap.
David Brownelldb68b182006-12-06 20:38:36 -08001163
Atul Dahiya16f4efe2010-07-20 16:38:49 +05301164config HAVE_S3C_RTC
1165 bool
1166 help
1167 This will include RTC support for Samsung SoCs. If
1168 you want to include RTC support for any machine, kindly
1169 select this in the respective mach-XXXX/Kconfig file.
1170
Ben Dooks1add6782006-07-01 04:36:26 -07001171config RTC_DRV_S3C
1172 tristate "Samsung S3C series SoC RTC"
Kukjin Kimb130d5c2012-02-03 14:29:23 +09001173 depends on ARCH_S3C64XX || HAVE_S3C_RTC
Ben Dooks1add6782006-07-01 04:36:26 -07001174 help
1175 RTC (Realtime Clock) driver for the clock inbuilt into the
1176 Samsung S3C24XX series of SoCs. This can provide periodic
1177 interrupt rates from 1Hz to 64Hz for user programs, and
1178 wakeup from Alarm.
1179
1180 The driver currently supports the common features on all the
1181 S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
1182 and S3C2442.
1183
1184 This driver can also be build as a module. If so, the module
1185 will be called rtc-s3c.
1186
Alessandro Zummofd507e22006-03-27 01:16:45 -08001187config RTC_DRV_EP93XX
1188 tristate "Cirrus Logic EP93XX"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -07001189 depends on ARCH_EP93XX
Alessandro Zummofd507e22006-03-27 01:16:45 -08001190 help
1191 If you say yes here you get support for the
1192 RTC embedded in the Cirrus Logic EP93XX processors.
1193
1194 This driver can also be built as a module. If so, the module
1195 will be called rtc-ep93xx.
1196
Richard Purdiee842f1c2006-03-27 01:16:46 -08001197config RTC_DRV_SA1100
Haojian Zhuang3888c092012-02-21 11:51:13 +08001198 tristate "SA11x0/PXA2xx/PXA910"
1199 depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP
Richard Purdiee842f1c2006-03-27 01:16:46 -08001200 help
1201 If you say Y here you will get access to the real time clock
1202 built into your SA11x0 or PXA2xx CPU.
1203
1204 To compile this driver as a module, choose M here: the
1205 module will be called rtc-sa1100.
Alessandro Zummofd507e22006-03-27 01:16:45 -08001206
Paul Mundt317a6102006-09-27 17:13:19 +09001207config RTC_DRV_SH
1208 tristate "SuperH On-Chip RTC"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -07001209 depends on SUPERH && HAVE_CLK
Paul Mundt317a6102006-09-27 17:13:19 +09001210 help
1211 Say Y here to enable support for the on-chip RTC found in
1212 most SuperH processors.
1213
Alexandre Belloni98ab2c92015-05-09 21:21:54 +02001214 To compile this driver as a module, choose M here: the
Paul Mundt317a6102006-09-27 17:13:19 +09001215 module will be called rtc-sh.
1216
Yoichi Yuasa8417eb72006-04-10 22:54:47 -07001217config RTC_DRV_VR41XX
Alessandro Zummo3e16f6a2006-04-10 22:54:48 -07001218 tristate "NEC VR41XX"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -07001219 depends on CPU_VR41XX
Alessandro Zummo3e16f6a2006-04-10 22:54:48 -07001220 help
1221 If you say Y here you will get access to the real time clock
1222 built into your NEC VR41XX CPU.
1223
1224 To compile this driver as a module, choose M here: the
1225 module will be called rtc-vr41xx.
Yoichi Yuasa8417eb72006-04-10 22:54:47 -07001226
Russell Kinga1909012008-04-20 12:08:36 +01001227config RTC_DRV_PL030
1228 tristate "ARM AMBA PL030 RTC"
1229 depends on ARM_AMBA
1230 help
1231 If you say Y here you will get access to ARM AMBA
1232 PrimeCell PL030 RTC found on certain ARM SOCs.
1233
1234 To compile this driver as a module, choose M here: the
1235 module will be called rtc-pl030.
1236
Deepak Saxena8ae6e162006-06-25 05:47:38 -07001237config RTC_DRV_PL031
1238 tristate "ARM AMBA PL031 RTC"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -07001239 depends on ARM_AMBA
Deepak Saxena8ae6e162006-06-25 05:47:38 -07001240 help
1241 If you say Y here you will get access to ARM AMBA
Alessandro Zummo09a21e52007-05-08 00:33:48 -07001242 PrimeCell PL031 RTC found on certain ARM SOCs.
Deepak Saxena8ae6e162006-06-25 05:47:38 -07001243
1244 To compile this driver as a module, choose M here: the
1245 module will be called rtc-pl031.
1246
Hans-Christian Egtvedtfa04e782007-07-17 04:05:00 -07001247config RTC_DRV_AT32AP700X
1248 tristate "AT32AP700X series RTC"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -07001249 depends on PLATFORM_AT32AP
Hans-Christian Egtvedtfa04e782007-07-17 04:05:00 -07001250 help
1251 Driver for the internal RTC (Realtime Clock) on Atmel AVR32
1252 AT32AP700x family processors.
1253
Andrew Victor7fc39f62006-12-10 02:19:03 -08001254config RTC_DRV_AT91RM9200
Nicolas Ferre24cecc12010-10-22 19:12:52 +02001255 tristate "AT91RM9200 or some AT91SAM9 RTC"
Nicolas Ferre938f9702012-03-15 14:38:09 +01001256 depends on ARCH_AT91
Andrew Victor788b1fc2006-06-25 05:48:27 -07001257 help
David Brownell4cdf8542008-02-06 01:38:59 -08001258 Driver for the internal RTC (Realtime Clock) module found on
Nicolas Ferre24cecc12010-10-22 19:12:52 +02001259 Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips
David Brownell4cdf8542008-02-06 01:38:59 -08001260 this is powered by the backup power supply.
1261
1262config RTC_DRV_AT91SAM9
Boris BREZILLON3969eb42014-09-23 13:16:05 +02001263 tristate "AT91SAM9 RTT as RTC"
Nicolas Ferreee72f182014-11-21 16:34:08 +01001264 depends on ARCH_AT91
Boris BREZILLON43e112b2014-09-23 13:14:44 +02001265 select MFD_SYSCON
David Brownell4cdf8542008-02-06 01:38:59 -08001266 help
Boris BREZILLON3969eb42014-09-23 13:16:05 +02001267 Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which
1268 can be used as an RTC thanks to the backup power supply (e.g. a
1269 small coin cell battery) which keeps this block and the GPBR
1270 (General Purpose Backup Registers) block powered when the device
1271 is shutdown.
1272 Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd
1273 probably want to use the real RTC block instead of the "RTT as an
1274 RTC" driver.
David Brownell4cdf8542008-02-06 01:38:59 -08001275
Manuel Lauss45fd8a02009-01-06 14:42:18 -08001276config RTC_DRV_AU1XXX
1277 tristate "Au1xxx Counter0 RTC support"
Manuel Lauss42a4f172010-07-15 21:45:04 +02001278 depends on MIPS_ALCHEMY
Manuel Lauss45fd8a02009-01-06 14:42:18 -08001279 help
1280 This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
1281 counter) to be used as a RTC.
1282
1283 This driver can also be built as a module. If so, the module
1284 will be called rtc-au1xxx.
1285
Wu, Bryan8cc75c92007-05-06 14:50:32 -07001286config RTC_DRV_BFIN
1287 tristate "Blackfin On-Chip RTC"
Graf Yang7f604592008-08-20 14:09:02 -07001288 depends on BLACKFIN && !BF561
Wu, Bryan8cc75c92007-05-06 14:50:32 -07001289 help
1290 If you say yes here you will get support for the
1291 Blackfin On-Chip Real Time Clock.
1292
1293 This driver can also be built as a module. If so, the module
1294 will be called rtc-bfin.
1295
Nobuhiro Iwamatsue9f2bd82007-05-08 00:26:37 -07001296config RTC_DRV_RS5C313
1297 tristate "Ricoh RS5C313"
Jan Engelhardtbb35fb22007-07-31 00:39:46 -07001298 depends on SH_LANDISK
Nobuhiro Iwamatsue9f2bd82007-05-08 00:26:37 -07001299 help
1300 If you say yes here you get support for the Ricoh RS5C313 RTC chips.
1301
Geert Uytterhoeven3afe6d02009-02-19 16:46:49 +01001302config RTC_DRV_GENERIC
1303 tristate "Generic RTC support"
1304 # Please consider writing a new RTC driver instead of using the generic
1305 # RTC abstraction
Paul Mundt47c8a082009-04-27 17:34:39 +09001306 depends on PARISC || M68K || PPC || SUPERH32
Kyle McMartin9eb16862008-09-10 14:24:07 +00001307 help
Geert Uytterhoeven3afe6d02009-02-19 16:46:49 +01001308 Say Y or M here to enable RTC support on systems using the generic
1309 RTC abstraction. If you do not know what you are doing, you should
Kyle McMartin9eb16862008-09-10 14:24:07 +00001310 just say Y.
1311
Robert Jarzmikdc944362009-01-06 14:42:14 -08001312config RTC_DRV_PXA
Alexandre Belloni98ab2c92015-05-09 21:21:54 +02001313 tristate "PXA27x/PXA3xx"
1314 depends on ARCH_PXA
1315 help
1316 If you say Y here you will get access to the real time clock
1317 built into your PXA27x or PXA3xx CPU.
Robert Jarzmikdc944362009-01-06 14:42:14 -08001318
Alexandre Belloni98ab2c92015-05-09 21:21:54 +02001319 This RTC driver uses PXA RTC registers available since pxa27x
1320 series (RDxR, RYxR) instead of legacy RCNR, RTAR.
Robert Jarzmikdc944362009-01-06 14:42:14 -08001321
Alexey Charkovf77fbdf2011-05-26 16:25:03 -07001322config RTC_DRV_VT8500
1323 tristate "VIA/WonderMedia 85xx SoC RTC"
1324 depends on ARCH_VT8500
1325 help
1326 If you say Y here you will get access to the real time clock
1327 built into your VIA VT8500 SoC or its relatives.
1328
Robert Jarzmikdc944362009-01-06 14:42:14 -08001329
David S. Miller7a138ed2008-08-29 01:32:43 -07001330config RTC_DRV_SUN4V
1331 bool "SUN4V Hypervisor RTC"
1332 depends on SPARC64
1333 help
1334 If you say Y here you will get support for the Hypervisor
1335 based RTC on SUN4V systems.
1336
Chen-Yu Tsai9765d2d2014-08-26 11:54:55 +08001337config RTC_DRV_SUN6I
1338 tristate "Allwinner A31 RTC"
1339 depends on MACH_SUN6I || MACH_SUN8I
1340 help
1341 If you say Y here you will get support for the RTC found on
1342 Allwinner A31.
1343
Carlo Caione594c6fb2013-11-16 18:33:54 +01001344config RTC_DRV_SUNXI
1345 tristate "Allwinner sun4i/sun7i RTC"
Chen-Yu Tsai64a19252014-08-26 11:54:56 +08001346 depends on MACH_SUN4I || MACH_SUN7I
Carlo Caione594c6fb2013-11-16 18:33:54 +01001347 help
1348 If you say Y here you will get support for the RTC found on
1349 Allwinner A10/A20.
1350
David S. Millerde2cf332008-08-28 23:02:36 -07001351config RTC_DRV_STARFIRE
1352 bool "Starfire RTC"
1353 depends on SPARC64
1354 help
1355 If you say Y here you will get support for the RTC found on
1356 Starfire systems.
1357
Atsushi Nemoto0e149232009-01-06 14:42:22 -08001358config RTC_DRV_TX4939
1359 tristate "TX4939 SoC"
1360 depends on SOC_TX4939
1361 help
1362 Driver for the internal RTC (Realtime Clock) module found on
1363 Toshiba TX4939 SoC.
1364
Saeed Bisharadefb4512009-01-06 14:42:24 -08001365config RTC_DRV_MV
1366 tristate "Marvell SoC RTC"
Andrew Lunnace2c022014-08-30 18:46:10 +02001367 depends on ARCH_DOVE || ARCH_MVEBU
Saeed Bisharadefb4512009-01-06 14:42:24 -08001368 help
1369 If you say yes here you will get support for the in-chip RTC
1370 that can be found in some of Marvell's SoC devices, such as
1371 the Kirkwood 88F6281 and 88F6192.
1372
1373 This driver can also be built as a module. If so, the module
1374 will be called rtc-mv.
1375
Gregory CLEMENTa3a42802015-02-13 14:41:11 -08001376config RTC_DRV_ARMADA38X
1377 tristate "Armada 38x Marvell SoC RTC"
1378 depends on ARCH_MVEBU
1379 help
1380 If you say yes here you will get support for the in-chip RTC
1381 that can be found in the Armada 38x Marvell's SoC device
1382
1383 This driver can also be built as a module. If so, the module
1384 will be called armada38x-rtc.
1385
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001386config RTC_DRV_GEMINI
1387 tristate "Gemini SoC RTC"
1388 depends on ARCH_GEMINI || COMPILE_TEST
1389 depends on HAS_IOMEM
1390 help
1391 If you say Y here you will get support for the
1392 RTC found on Gemini SoC's.
1393
1394 This driver can also be built as a module. If so, the module
1395 will be called rtc-gemini.
1396
Geert Uytterhoeven0b5f0372009-02-24 14:04:20 +01001397config RTC_DRV_PS3
1398 tristate "PS3 RTC"
1399 depends on PPC_PS3
1400 help
1401 If you say yes here you will get support for the RTC on PS3.
1402
1403 This driver can also be built as a module. If so, the module
1404 will be called rtc-ps3.
1405
Linus Walleijaa958f52009-09-22 16:46:24 -07001406config RTC_DRV_COH901331
1407 tristate "ST-Ericsson COH 901 331 RTC"
1408 depends on ARCH_U300
1409 help
1410 If you say Y here you will get access to ST-Ericsson
1411 COH 901 331 RTC clock found in some ST-Ericsson Mobile
1412 Platforms.
1413
1414 This driver can also be built as a module. If so, the module
1415 will be called "rtc-coh901331".
1416
1417
dmitry pervushindf17f632009-09-22 16:46:26 -07001418config RTC_DRV_STMP
Wolfram Sang46b21212011-05-25 12:56:50 +02001419 tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC"
1420 depends on ARCH_MXS
Alexandre Belloni20d048a2015-05-03 11:29:44 +02001421 select STMP_DEVICE
dmitry pervushindf17f632009-09-22 16:46:26 -07001422 help
1423 If you say yes here you will get support for the onboard
Wolfram Sang46b21212011-05-25 12:56:50 +02001424 STMP3xxx/i.MX23/i.MX28 RTC.
dmitry pervushindf17f632009-09-22 16:46:26 -07001425
1426 This driver can also be built as a module. If so, the module
1427 will be called rtc-stmp3xxx.
1428
Daniel Ribeirod3c7a3f2009-09-22 16:46:27 -07001429config RTC_DRV_PCAP
1430 tristate "PCAP RTC"
1431 depends on EZX_PCAP
1432 help
1433 If you say Y here you will get support for the RTC found on
1434 the PCAP2 ASIC used on some Motorola phones.
1435
Uwe Kleine-König1c978722010-10-28 12:30:53 +02001436config RTC_DRV_MC13XXX
1437 depends on MFD_MC13XXX
1438 tristate "Freescale MC13xxx RTC"
Uwe Kleine-König43299f2852009-12-15 16:46:09 -08001439 help
Uwe Kleine-König1c978722010-10-28 12:30:53 +02001440 This enables support for the RTCs found on Freescale's PMICs
1441 MC13783 and MC13892.
Uwe Kleine-König43299f2852009-12-15 16:46:09 -08001442
Anatolij Gustschin50aae722010-02-16 10:47:35 -07001443config RTC_DRV_MPC5121
1444 tristate "Freescale MPC5121 built-in RTC"
Dmitry Eremin-Solenikov955dbea2011-07-25 17:13:30 -07001445 depends on PPC_MPC512x || PPC_MPC52xx
Anatolij Gustschin50aae722010-02-16 10:47:35 -07001446 help
1447 If you say yes here you will get support for the
Dmitry Eremin-Solenikov955dbea2011-07-25 17:13:30 -07001448 built-in RTC on MPC5121 or on MPC5200.
Anatolij Gustschin50aae722010-02-16 10:47:35 -07001449
1450 This driver can also be built as a module. If so, the module
1451 will be called rtc-mpc5121.
1452
Lars-Peter Clausen3bf0eea2010-06-19 18:29:50 +00001453config RTC_DRV_JZ4740
1454 tristate "Ingenic JZ4740 SoC"
Lars-Peter Clausen3bf0eea2010-06-19 18:29:50 +00001455 depends on MACH_JZ4740
1456 help
1457 If you say yes here you get support for the Ingenic JZ4740 SoC RTC
1458 controller.
1459
1460 This driver can also be buillt as a module. If so, the module
1461 will be called rtc-jz4740.
1462
Kevin Wells9aa449b2010-10-27 15:33:01 -07001463config RTC_DRV_LPC32XX
1464 depends on ARCH_LPC32XX
1465 tristate "NXP LPC32XX RTC"
1466 help
1467 This enables support for the NXP RTC in the LPC32XX
1468
1469 This driver can also be buillt as a module. If so, the module
1470 will be called rtc-lpc32xx.
1471
Anirudh Ghayal9a9a54a2011-07-25 17:13:33 -07001472config RTC_DRV_PM8XXX
1473 tristate "Qualcomm PMIC8XXX RTC"
Stanimir Varbanovc8d523a2014-10-29 14:50:33 -07001474 depends on MFD_PM8XXX || MFD_SPMI_PMIC
Anirudh Ghayal9a9a54a2011-07-25 17:13:33 -07001475 help
1476 If you say yes here you get support for the
1477 Qualcomm PMIC8XXX RTC.
1478
1479 To compile this driver as a module, choose M here: the
1480 module will be called rtc-pm8xxx.
1481
Andrew Chewff859ba2011-03-22 16:34:55 -07001482config RTC_DRV_TEGRA
1483 tristate "NVIDIA Tegra Internal RTC driver"
Venu Byravarasu6b8029f2012-10-04 17:13:59 -07001484 depends on ARCH_TEGRA
Andrew Chewff859ba2011-03-22 16:34:55 -07001485 help
1486 If you say yes here you get support for the
1487 Tegra 200 series internal RTC module.
1488
1489 This drive can also be built as a module. If so, the module
1490 will be called rtc-tegra.
1491
Chris Metcalfdd196a22011-05-09 13:28:43 -04001492config RTC_DRV_TILE
1493 tristate "Tilera hypervisor RTC support"
1494 depends on TILE
1495 help
1496 Enable support for the Linux driver side of the Tilera
1497 hypervisor's real-time clock interface.
1498
Guan Xuetao2809e802011-05-26 16:43:27 +08001499config RTC_DRV_PUV3
1500 tristate "PKUnity v3 RTC support"
1501 depends on ARCH_PUV3
1502 help
1503 This enables support for the RTC in the PKUnity-v3 SoCs.
1504
1505 This drive can also be built as a module. If so, the module
1506 will be called rtc-puv3.
1507
zhao zhangb4f0b882012-03-23 15:02:32 -07001508config RTC_DRV_LOONGSON1
1509 tristate "loongson1 RTC support"
1510 depends on MACH_LOONGSON1
1511 help
1512 This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year
1513 counter) to be used as a RTC.
1514
1515 This driver can also be built as a module. If so, the module
1516 will be called rtc-ls1x.
1517
Fabio Estevam79811592012-05-29 15:07:37 -07001518config RTC_DRV_MXC
Fabio Estevamb224b9a2012-05-29 15:07:37 -07001519 tristate "Freescale MXC Real Time Clock"
1520 depends on ARCH_MXC
Fabio Estevamb224b9a2012-05-29 15:07:37 -07001521 help
1522 If you say yes here you get support for the Freescale MXC
1523 RTC module.
1524
1525 This driver can also be built as a module, if so, the module
1526 will be called "rtc-mxc".
1527
Shawn Guo179a5022012-10-04 17:13:49 -07001528config RTC_DRV_SNVS
1529 tristate "Freescale SNVS RTC support"
1530 depends on HAS_IOMEM
1531 depends on OF
1532 help
1533 If you say yes here you get support for the Freescale SNVS
1534 Low Power (LP) RTC module.
1535
1536 This driver can also be built as a module, if so, the module
1537 will be called "rtc-snvs".
1538
Xianglong Due88b8152013-07-03 15:08:04 -07001539config RTC_DRV_SIRFSOC
1540 tristate "SiRFSOC RTC"
1541 depends on ARCH_SIRF
1542 help
1543 Say "yes" here to support the real time clock on SiRF SOC chips.
1544 This driver can also be built as a module called rtc-sirfsoc.
1545
Jonas Jensen453b4c62013-09-11 14:24:17 -07001546config RTC_DRV_MOXART
1547 tristate "MOXA ART RTC"
Jean Delvare441fb762014-08-08 14:20:05 -07001548 depends on ARCH_MOXART || COMPILE_TEST
Jonas Jensen453b4c62013-09-11 14:24:17 -07001549 help
1550 If you say yes here you get support for the MOXA ART
1551 RTC module.
1552
1553 This driver can also be built as a module. If so, the module
1554 will be called rtc-moxart
1555
Tianping Fangfc297912015-05-06 15:23:41 +08001556config RTC_DRV_MT6397
1557 tristate "Mediatek Real Time Clock driver"
1558 depends on MFD_MT6397 || COMPILE_TEST
1559 help
1560 This selects the Mediatek(R) RTC driver. RTC is part of Mediatek
1561 MT6397 PMIC. You should enable MT6397 PMIC MFD before select
1562 Mediatek(R) RTC driver.
1563
1564 If you want to use Mediatek(R) RTC interface, select Y or M here.
1565
Loc Hof12d8692014-06-06 14:35:42 -07001566config RTC_DRV_XGENE
1567 tristate "APM X-Gene RTC"
Chen Gang706b6322014-10-13 15:53:14 -07001568 depends on HAS_IOMEM
Jean Delvarefdf8afa2015-05-06 09:24:42 +02001569 depends on ARCH_XGENE || COMPILE_TEST
Loc Hof12d8692014-06-06 14:35:42 -07001570 help
1571 If you say yes here you get support for the APM X-Gene SoC real time
1572 clock.
1573
1574 This driver can also be built as a module, if so, the module
1575 will be called "rtc-xgene".
1576
Alexander Holler62e00cb2012-12-15 12:45:00 +00001577comment "HID Sensor RTC drivers"
1578
1579config RTC_DRV_HID_SENSOR_TIME
1580 tristate "HID Sensor Time"
1581 depends on USB_HID
1582 select IIO
1583 select HID_SENSOR_HUB
1584 select HID_SENSOR_IIO_COMMON
1585 help
1586 Say yes here to build support for the HID Sensors of type Time.
1587 This drivers makes such sensors available as RTCs.
1588
1589 If this driver is compiled as a module, it will be named
1590 rtc-hid-sensor-time.
1591
1592
Jan Engelhardtbb35fb22007-07-31 00:39:46 -07001593endif # RTC_CLASS