Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# RTC class/drivers configuration
4#
5
6config RTC_LIB
7 bool
8
9config RTC_MC146818_LIB
10 bool
11 select RTC_LIB
12
13menuconfig RTC_CLASS
14 bool "Real Time Clock"
15 default n
16 depends on !S390
17 select RTC_LIB
18 help
19 Generic RTC class support. If you say yes here, you will
20 be allowed to plug one or more RTCs to your system. You will
21 probably want to enable one or more of the interfaces below.
22
23if RTC_CLASS
24
25config RTC_HCTOSYS
26 bool "Set system time from RTC on startup and resume"
27 default y
28 help
29 If you say yes here, the system time (wall clock) will be set using
30 the value read from a specified RTC device. This is useful to avoid
31 unnecessary fsck runs at boot time, and to network better.
32
33config RTC_HCTOSYS_DEVICE
34 string "RTC used to set the system time"
35 depends on RTC_HCTOSYS
36 default "rtc0"
37 help
38 The RTC device that will be used to (re)initialize the system
39 clock, usually rtc0. Initialization is done when the system
40 starts up, and when it resumes from a low power state. This
41 device should record time in UTC, since the kernel won't do
42 timezone correction.
43
44 This clock should be battery-backed, so that it reads the correct
45 time when the system boots from a power-off state. Otherwise, your
46 system will need an external clock source (like an NTP server).
47
48 If the clock you specify here is not battery backed, it may still
49 be useful to reinitialize system time when resuming from system
50 sleep states. Do not specify an RTC here unless it stays powered
51 during all this system's supported sleep states.
52
53config RTC_SYSTOHC
54 bool "Set the RTC time based on NTP synchronization"
55 default y
56 help
57 If you say yes here, the system time (wall clock) will be stored
58 in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11
59 minutes if userspace reports synchronized NTP status.
60
61config RTC_SYSTOHC_DEVICE
62 string "RTC used to synchronize NTP adjustment"
63 depends on RTC_SYSTOHC
64 default RTC_HCTOSYS_DEVICE if RTC_HCTOSYS
65 default "rtc0"
66 help
67 The RTC device used for NTP synchronization. The main difference
68 between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this
69 one can sleep when setting time, because it runs in the workqueue
70 context.
71
72config RTC_DEBUG
73 bool "RTC debug support"
74 help
75 Say yes here to enable debugging support in the RTC framework
76 and individual RTC drivers.
77
78config RTC_LIB_KUNIT_TEST
79 tristate "KUnit test for RTC lib functions" if !KUNIT_ALL_TESTS
80 depends on KUNIT
81 default KUNIT_ALL_TESTS
82 help
83 Enable this option to test RTC library functions.
84
85 If unsure, say N.
86
87config RTC_NVMEM
88 bool "RTC non volatile storage support"
89 select NVMEM
90 default RTC_CLASS
91 help
92 Say yes here to add support for the non volatile (often battery
93 backed) storage present on RTCs.
94
95comment "RTC interfaces"
96
97config RTC_INTF_SYSFS
98 bool "/sys/class/rtc/rtcN (sysfs)"
99 depends on SYSFS
100 default RTC_CLASS
101 help
102 Say yes here if you want to use your RTCs using sysfs interfaces,
103 /sys/class/rtc/rtc0 through /sys/.../rtcN.
104
105 If unsure, say Y.
106
107config RTC_INTF_PROC
108 bool "/proc/driver/rtc (procfs for rtcN)"
109 depends on PROC_FS
110 default RTC_CLASS
111 help
112 Say yes here if you want to use your system clock RTC through
113 the proc interface, /proc/driver/rtc.
114 Other RTCs will not be available through that API.
115 If there is no RTC for the system clock, then the first RTC(rtc0)
116 is used by default.
117
118 If unsure, say Y.
119
120config RTC_INTF_DEV
121 bool "/dev/rtcN (character devices)"
122 default RTC_CLASS
123 help
124 Say yes here if you want to use your RTCs using the /dev
125 interfaces, which "udev" sets up as /dev/rtc0 through
126 /dev/rtcN.
127
128 You may want to set up a symbolic link so one of these
129 can be accessed as /dev/rtc, which is a name
130 expected by "hwclock" and some other programs. Recent
131 versions of "udev" are known to set up the symlink for you.
132
133 If unsure, say Y.
134
135config RTC_INTF_DEV_UIE_EMUL
136 bool "RTC UIE emulation on dev interface"
137 depends on RTC_INTF_DEV
138 help
139 Provides an emulation for RTC_UIE if the underlying rtc chip
140 driver does not expose RTC_UIE ioctls. Those requests generate
141 once-per-second update interrupts, used for synchronization.
142
143 The emulation code will read the time from the hardware
144 clock several times per second, please enable this option
145 only if you know that you really need it.
146
147config RTC_DRV_TEST
148 tristate "Test driver/device"
149 help
150 If you say yes here you get support for the
151 RTC test driver. It's a software RTC which can be
152 used to test the RTC subsystem APIs. It gets
153 the time from the system clock.
154 You want this driver only if you are doing development
155 on the RTC subsystem. Please read the source code
156 for further details.
157
158 This driver can also be built as a module. If so, the module
159 will be called rtc-test.
160
161comment "I2C RTC drivers"
162
163if I2C
164
165config RTC_DRV_88PM860X
166 tristate "Marvell 88PM860x"
167 depends on MFD_88PM860X
168 help
169 If you say yes here you get support for RTC function in Marvell
170 88PM860x chips.
171
172 This driver can also be built as a module. If so, the module
173 will be called rtc-88pm860x.
174
175config RTC_DRV_88PM80X
176 tristate "Marvell 88PM80x"
177 depends on MFD_88PM800
178 help
179 If you say yes here you get support for RTC function in Marvell
180 88PM80x chips.
181
182 This driver can also be built as a module. If so, the module
183 will be called rtc-88pm80x.
184
185config RTC_DRV_ABB5ZES3
186 select REGMAP_I2C
187 tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3"
188 help
189 If you say yes here you get support for the Abracon
190 AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip.
191
192 This driver can also be built as a module. If so, the module
193 will be called rtc-ab-b5ze-s3.
194
195config RTC_DRV_ABEOZ9
196 select REGMAP_I2C
197 tristate "Abracon AB-RTCMC-32.768kHz-EOZ9"
198 help
199 If you say yes here you get support for the Abracon
200 AB-RTCMC-32.768kHz-EOA9 I2C RTC chip.
201
202 This driver can also be built as a module. If so, the module
203 will be called rtc-ab-e0z9.
204
205config RTC_DRV_ABX80X
206 tristate "Abracon ABx80x"
207 select WATCHDOG_CORE if WATCHDOG
208 help
209 If you say yes here you get support for Abracon AB080X and AB180X
210 families of ultra-low-power battery- and capacitor-backed real-time
211 clock chips.
212
213 This driver can also be built as a module. If so, the module
214 will be called rtc-abx80x.
215
216config RTC_DRV_AC100
217 tristate "X-Powers AC100"
218 depends on MFD_AC100
219 help
220 If you say yes here you get support for the real-time clock found
221 in X-Powers AC100 family peripheral ICs.
222
223 This driver can also be built as a module. If so, the module
224 will be called rtc-ac100.
225
226config RTC_DRV_BRCMSTB
227 tristate "Broadcom STB wake-timer"
228 depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST
229 default ARCH_BRCMSTB || BMIPS_GENERIC
230 help
231 If you say yes here you get support for the wake-timer found on
232 Broadcom STB SoCs (BCM7xxx).
233
234 This driver can also be built as a module. If so, the module will
235 be called rtc-brcmstb-waketimer.
236
237config RTC_DRV_AS3722
238 tristate "ams AS3722 RTC driver"
239 depends on MFD_AS3722
240 help
241 If you say yes here you get support for the RTC of ams AS3722 PMIC
242 chips.
243
244 This driver can also be built as a module. If so, the module
245 will be called rtc-as3722.
246
247config RTC_DRV_DS1307
248 tristate "Dallas/Maxim DS1307/37/38/39/40/41, ST M41T00, EPSON RX-8025, ISL12057"
249 select REGMAP_I2C
250 select WATCHDOG_CORE if WATCHDOG
251 help
252 If you say yes here you get support for various compatible RTC
253 chips (often with battery backup) connected with I2C. This driver
254 should handle DS1307, DS1337, DS1338, DS1339, DS1340, DS1341,
255 ST M41T00, EPSON RX-8025, Intersil ISL12057 and probably other chips.
256 In some cases the RTC must already have been initialized (by
257 manufacturing or a bootloader).
258
259 The first seven registers on these chips hold an RTC, and other
260 registers may add features such as NVRAM, a trickle charger for
261 the RTC/NVRAM backup power, and alarms. NVRAM is visible in
262 sysfs, but other chip features may not be available.
263
264 This driver can also be built as a module. If so, the module
265 will be called rtc-ds1307.
266
267config RTC_DRV_DS1307_CENTURY
268 bool "Century bit support for rtc-ds1307"
269 depends on RTC_DRV_DS1307
270 default n
271 help
272 The DS1307 driver suffered from a bug where it was enabling the
273 century bit inconditionnally but never used it when reading the time.
274 It made the driver unable to support dates beyond 2099.
275 Setting this option will add proper support for the century bit but if
276 the time was previously set using a kernel predating this option,
277 reading the date will return a date in the next century.
278 To solve that, you could boot a kernel without this option set, set
279 the RTC date and then boot a kernel with this option set.
280
281config RTC_DRV_DS1374
282 tristate "Dallas/Maxim DS1374"
283 help
284 If you say yes here you get support for Dallas Semiconductor
285 DS1374 real-time clock chips. If an interrupt is associated
286 with the device, the alarm functionality is supported.
287
288 This driver can also be built as a module. If so, the module
289 will be called rtc-ds1374.
290
291config RTC_DRV_DS1374_WDT
292 bool "Dallas/Maxim DS1374 watchdog timer"
293 depends on RTC_DRV_DS1374 && WATCHDOG
294 select WATCHDOG_CORE
295 help
296 If you say Y here you will get support for the
297 watchdog timer in the Dallas Semiconductor DS1374
298 real-time clock chips.
299
300config RTC_DRV_DS1672
301 tristate "Dallas/Maxim DS1672"
302 help
303 If you say yes here you get support for the
304 Dallas/Maxim DS1672 timekeeping chip.
305
306 This driver can also be built as a module. If so, the module
307 will be called rtc-ds1672.
308
309config RTC_DRV_HYM8563
310 tristate "Haoyu Microelectronics HYM8563"
311 depends on OF
312 help
313 Say Y to enable support for the HYM8563 I2C RTC chip. Apart
314 from the usual rtc functions it provides a clock output of
315 up to 32kHz.
316
317 This driver can also be built as a module. If so, the module
318 will be called rtc-hym8563.
319
320config RTC_DRV_LP8788
321 tristate "TI LP8788 RTC driver"
322 depends on MFD_LP8788
323 help
324 Say Y to enable support for the LP8788 RTC/ALARM driver.
325
326config RTC_DRV_MAX6900
327 tristate "Maxim MAX6900"
328 help
329 If you say yes here you will get support for the
330 Maxim MAX6900 I2C RTC chip.
331
332 This driver can also be built as a module. If so, the module
333 will be called rtc-max6900.
334
335config RTC_DRV_MAX8907
336 tristate "Maxim MAX8907"
337 depends on MFD_MAX8907 || COMPILE_TEST
338 select REGMAP_IRQ
339 help
340 If you say yes here you will get support for the
341 RTC of Maxim MAX8907 PMIC.
342
343 This driver can also be built as a module. If so, the module
344 will be called rtc-max8907.
345
346config RTC_DRV_MAX8925
347 tristate "Maxim MAX8925"
348 depends on MFD_MAX8925
349 help
350 If you say yes here you will get support for the
351 RTC of Maxim MAX8925 PMIC.
352
353 This driver can also be built as a module. If so, the module
354 will be called rtc-max8925.
355
356config RTC_DRV_MAX8998
357 tristate "Maxim MAX8998"
358 depends on MFD_MAX8998
359 help
360 If you say yes here you will get support for the
361 RTC of Maxim MAX8998 PMIC.
362
363 This driver can also be built as a module. If so, the module
364 will be called rtc-max8998.
365
366config RTC_DRV_MAX8997
367 tristate "Maxim MAX8997"
368 depends on MFD_MAX8997
369 help
370 If you say yes here you will get support for the
371 RTC of Maxim MAX8997 PMIC.
372
373 This driver can also be built as a module. If so, the module
374 will be called rtc-max8997.
375
376config RTC_DRV_MAX31335
377 tristate "Analog Devices MAX31335"
378 depends on I2C
379 depends on COMMON_CLK
380 depends on HWMON || HWMON=n
381 select REGMAP_I2C
382 help
383 If you say yes here you get support for the Analog Devices
384 MAX31335.
385
386 This driver can also be built as a module. If so, the module
387 will be called rtc-max31335.
388
389config RTC_DRV_MAX77686
390 tristate "Maxim MAX77686"
391 depends on MFD_MAX77686 || MFD_MAX77620 || MFD_MAX77714 || COMPILE_TEST
392 help
393 If you say yes here you will get support for the
394 RTC of Maxim MAX77686/MAX77620/MAX77802 PMIC.
395
396 This driver can also be built as a module. If so, the module
397 will be called rtc-max77686.
398
399config RTC_DRV_NCT3018Y
400 tristate "Nuvoton NCT3018Y"
401 depends on OF
402 help
403 If you say yes here you get support for the Nuvoton NCT3018Y I2C RTC
404 chip.
405
406 This driver can also be built as a module, if so, the module will be
407 called "rtc-nct3018y".
408
409config RTC_DRV_RK808
410 tristate "Rockchip RK805/RK808/RK809/RK817/RK818 RTC"
411 depends on MFD_RK8XX
412 help
413 If you say yes here you will get support for the
414 RTC of RK805, RK809 and RK817, RK808 and RK818 PMIC.
415
416 This driver can also be built as a module. If so, the module
417 will be called rk808-rtc.
418
419config RTC_DRV_RS5C372
420 tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
421 help
422 If you say yes here you get support for the
423 Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
424
425 This driver can also be built as a module. If so, the module
426 will be called rtc-rs5c372.
427
428config RTC_DRV_ISL1208
429 tristate "Intersil ISL1208"
430 help
431 If you say yes here you get support for the
432 Intersil ISL1208 RTC chip.
433
434 This driver can also be built as a module. If so, the module
435 will be called rtc-isl1208.
436
437config RTC_DRV_ISL12022
438 tristate "Intersil ISL12022"
439 select REGMAP_I2C
440 help
441 If you say yes here you get support for the
442 Intersil ISL12022 RTC chip.
443
444 This driver can also be built as a module. If so, the module
445 will be called rtc-isl12022.
446
447config RTC_DRV_ISL12026
448 tristate "Intersil ISL12026"
449 depends on OF
450 help
451 If you say yes here you get support for the
452 Intersil ISL12026 RTC chip.
453
454 This driver can also be built as a module. If so, the module
455 will be called rtc-isl12026.
456
457config RTC_DRV_X1205
458 tristate "Xicor/Intersil X1205"
459 help
460 If you say yes here you get support for the
461 Xicor/Intersil X1205 RTC chip.
462
463 This driver can also be built as a module. If so, the module
464 will be called rtc-x1205.
465
466config RTC_DRV_PCF8523
467 tristate "NXP PCF8523"
468 select REGMAP_I2C
469 help
470 If you say yes here you get support for the NXP PCF8523 RTC
471 chips.
472
473 This driver can also be built as a module. If so, the module
474 will be called rtc-pcf8523.
475
476config RTC_DRV_PCF85063
477 tristate "NXP PCF85063"
478 select REGMAP_I2C
479 help
480 If you say yes here you get support for the PCF85063 RTC chip
481
482 This driver can also be built as a module. If so, the module
483 will be called rtc-pcf85063.
484
485config RTC_DRV_PCF85363
486 tristate "NXP PCF85363"
487 select REGMAP_I2C
488 help
489 If you say yes here you get support for the PCF85363 RTC chip.
490
491 This driver can also be built as a module. If so, the module
492 will be called rtc-pcf85363.
493
494 The nvmem interface will be named pcf85363-#, where # is the
495 zero-based instance number.
496
497config RTC_DRV_PCF8563
498 tristate "Philips PCF8563/Epson RTC8564"
499 help
500 If you say yes here you get support for the
501 Philips PCF8563 RTC chip. The Epson RTC8564
502 should work as well.
503
504 This driver can also be built as a module. If so, the module
505 will be called rtc-pcf8563.
506
507config RTC_DRV_PCF8583
508 tristate "Philips PCF8583"
509 help
510 If you say yes here you get support for the Philips PCF8583
511 RTC chip found on Acorn RiscPCs. This driver supports the
512 platform specific method of retrieving the current year from
513 the RTC's SRAM. It will work on other platforms with the same
514 chip, but the year will probably have to be tweaked.
515
516 This driver can also be built as a module. If so, the module
517 will be called rtc-pcf8583.
518
519config RTC_DRV_M41T80
520 tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible"
521 help
522 If you say Y here you will get support for the ST M41T60
523 and M41T80 RTC chips series. Currently, the following chips are
524 supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
525 M41ST85, M41ST87, and MicroCrystal RV4162.
526
527 This driver can also be built as a module. If so, the module
528 will be called rtc-m41t80.
529
530config RTC_DRV_M41T80_WDT
531 bool "ST M41T65/M41T80 series RTC watchdog timer"
532 depends on RTC_DRV_M41T80
533 help
534 If you say Y here you will get support for the
535 watchdog timer in the ST M41T60 and M41T80 RTC chips series.
536
537config RTC_DRV_BD70528
538 tristate "ROHM BD71815 and BD71828 PMIC RTC"
539 depends on MFD_ROHM_BD71828
540 help
541 If you say Y here you will get support for the RTC
542 block on ROHM BD71815 and BD71828 Power Management IC.
543
544 This driver can also be built as a module. If so, the module
545 will be called rtc-bd70528.
546
547config RTC_DRV_BQ32K
548 tristate "TI BQ32000"
549 help
550 If you say Y here you will get support for the TI
551 BQ32000 I2C RTC chip.
552
553 This driver can also be built as a module. If so, the module
554 will be called rtc-bq32k.
555
556config RTC_DRV_TWL92330
557 bool "TI TWL92330/Menelaus"
558 depends on MENELAUS
559 help
560 If you say yes here you get support for the RTC on the
561 TWL92330 "Menelaus" power management chip, used with OMAP2
562 platforms. The support is integrated with the rest of
563 the Menelaus driver; it's not separate module.
564
565config RTC_DRV_TWL4030
566 tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0"
567 depends on TWL4030_CORE
568 depends on OF
569 help
570 If you say yes here you get support for the RTC on the
571 TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms.
572
573 This driver can also be built as a module. If so, the module
574 will be called rtc-twl.
575
576config RTC_DRV_PALMAS
577 tristate "TI Palmas RTC driver"
578 depends on MFD_PALMAS
579 help
580 If you say yes here you get support for the RTC of TI PALMA series PMIC
581 chips.
582
583 This driver can also be built as a module. If so, the module
584 will be called rtc-palma.
585
586config RTC_DRV_TPS6586X
587 tristate "TI TPS6586X RTC driver"
588 depends on MFD_TPS6586X
589 help
590 TI Power Management IC TPS6586X supports RTC functionality
591 along with alarm. This driver supports the RTC driver for
592 the TPS6586X RTC module.
593
594config RTC_DRV_TPS6594
595 tristate "TI TPS6594 RTC driver"
596 depends on MFD_TPS6594
597 default MFD_TPS6594
598 help
599 TI Power Management IC TPS6594 supports RTC functionality
600 along with alarm. This driver supports the RTC driver for
601 the TPS6594 RTC module.
602
603 This driver can also be built as a module. If so, the module
604 will be called rtc-tps6594.
605
606config RTC_DRV_TPS65910
607 tristate "TI TPS65910 RTC driver"
608 depends on MFD_TPS65910
609 help
610 If you say yes here you get support for the RTC on the
611 TPS65910 chips.
612
613 This driver can also be built as a module. If so, the module
614 will be called rtc-tps65910.
615
616config RTC_DRV_RC5T583
617 tristate "RICOH 5T583 RTC driver"
618 depends on MFD_RC5T583
619 help
620 If you say yes here you get support for the RTC on the
621 RICOH 5T583 chips.
622
623 This driver can also be built as a module. If so, the module
624 will be called rtc-rc5t583.
625
626config RTC_DRV_RC5T619
627 tristate "RICOH RC5T619 RTC driver"
628 depends on MFD_RN5T618
629 help
630 If you say yes here you get support for the RTC on the
631 RICOH RC5T619 chips.
632
633 This driver can also be built as a module. If so, the module
634 will be called rtc-rc5t619.
635
636config RTC_DRV_S35390A
637 tristate "Seiko Instruments S-35390A"
638 select BITREVERSE
639 help
640 If you say yes here you will get support for the Seiko
641 Instruments S-35390A.
642
643 This driver can also be built as a module. If so the module
644 will be called rtc-s35390a.
645
646config RTC_DRV_FM3130
647 tristate "Ramtron FM3130"
648 help
649 If you say Y here you will get support for the
650 Ramtron FM3130 RTC chips.
651 Ramtron FM3130 is a chip with two separate devices inside,
652 RTC clock and FRAM. This driver provides only RTC functionality.
653
654 This driver can also be built as a module. If so the module
655 will be called rtc-fm3130.
656
657config RTC_DRV_RX8010
658 tristate "Epson RX8010SJ"
659 select REGMAP_I2C
660 help
661 If you say yes here you get support for the Epson RX8010SJ RTC
662 chip.
663
664 This driver can also be built as a module. If so, the module
665 will be called rtc-rx8010.
666
667config RTC_DRV_RX8111
668 tristate "Epson RX8111"
669 select REGMAP_I2C
670 depends on I2C
671 help
672 If you say yes here you will get support for the Epson RX8111 RTC.
673
674 This driver can also be built as a module. If so, the module will be
675 called rtc-rx8111.
676
677config RTC_DRV_RX8581
678 tristate "Epson RX-8571/RX-8581"
679 select REGMAP_I2C
680 help
681 If you say yes here you will get support for the Epson RX-8571/
682 RX-8581.
683
684 This driver can also be built as a module. If so the module
685 will be called rtc-rx8581.
686
687config RTC_DRV_RX8025
688 tristate "Epson RX-8025SA/NB"
689 help
690 If you say yes here you get support for the Epson
691 RX-8025SA/NB RTC chips.
692
693 This driver can also be built as a module. If so, the module
694 will be called rtc-rx8025.
695
696config RTC_DRV_EM3027
697 tristate "EM Microelectronic EM3027"
698 help
699 If you say yes here you get support for the EM
700 Microelectronic EM3027 RTC chips.
701
702 This driver can also be built as a module. If so, the module
703 will be called rtc-em3027.
704
705config RTC_DRV_RV3028
706 tristate "Micro Crystal RV3028"
707 select REGMAP_I2C
708 help
709 If you say yes here you get support for the Micro Crystal
710 RV3028.
711
712 This driver can also be built as a module. If so, the module
713 will be called rtc-rv3028.
714
715config RTC_DRV_RV3032
716 tristate "Micro Crystal RV3032"
717 select REGMAP_I2C
718 help
719 If you say yes here you get support for the Micro Crystal
720 RV3032.
721
722 This driver can also be built as a module. If so, the module
723 will be called rtc-rv3032.
724
725config RTC_DRV_RV8803
726 tristate "Micro Crystal RV8803, Epson RX8900"
727 help
728 If you say yes here you get support for the Micro Crystal RV8803 and
729 Epson RX8900 RTC chips.
730
731 This driver can also be built as a module. If so, the module
732 will be called rtc-rv8803.
733
734config RTC_DRV_S5M
735 tristate "Samsung S2M/S5M series"
736 depends on MFD_SEC_CORE || COMPILE_TEST
737 select REGMAP_IRQ
738 select REGMAP_I2C
739 help
740 If you say yes here you will get support for the
741 RTC of Samsung S2MPS14 and S5M PMIC series.
742
743 This driver can also be built as a module. If so, the module
744 will be called rtc-s5m.
745
746config RTC_DRV_SD2405AL
747 tristate "DFRobot SD2405AL"
748 select REGMAP_I2C
749 help
750 If you say yes here you will get support for the
751 DFRobot SD2405AL I2C RTC Module.
752
753 This driver can also be built as a module. If so, the module
754 will be called rtc-sd2405al.
755
756config RTC_DRV_SD3078
757 tristate "ZXW Shenzhen whwave SD3078"
758 select REGMAP_I2C
759 help
760 If you say yes here you get support for the ZXW Shenzhen whwave
761 SD3078 RTC chips.
762
763 This driver can also be built as a module. If so, the module
764 will be called rtc-sd3078
765
766endif # I2C
767
768comment "SPI RTC drivers"
769
770if SPI_MASTER
771
772config RTC_DRV_M41T93
773 tristate "ST M41T93"
774 help
775 If you say yes here you will get support for the
776 ST M41T93 SPI RTC chip.
777
778 This driver can also be built as a module. If so, the module
779 will be called rtc-m41t93.
780
781config RTC_DRV_M41T94
782 tristate "ST M41T94"
783 help
784 If you say yes here you will get support for the
785 ST M41T94 SPI RTC chip.
786
787 This driver can also be built as a module. If so, the module
788 will be called rtc-m41t94.
789
790config RTC_DRV_DS1302
791 tristate "Dallas/Maxim DS1302"
792 depends on SPI
793 help
794 If you say yes here you get support for the Dallas DS1302 RTC chips.
795
796 This driver can also be built as a module. If so, the module
797 will be called rtc-ds1302.
798
799config RTC_DRV_DS1305
800 tristate "Dallas/Maxim DS1305/DS1306"
801 help
802 Select this driver to get support for the Dallas/Maxim DS1305
803 and DS1306 real time clock chips. These support a trickle
804 charger, alarms, and NVRAM in addition to the clock.
805
806 This driver can also be built as a module. If so, the module
807 will be called rtc-ds1305.
808
809config RTC_DRV_DS1343
810 select REGMAP_SPI
811 tristate "Dallas/Maxim DS1343/DS1344"
812 help
813 If you say yes here you get support for the
814 Dallas/Maxim DS1343 and DS1344 real time clock chips.
815 Support for trickle charger, alarm is provided.
816
817 This driver can also be built as a module. If so, the module
818 will be called rtc-ds1343.
819
820config RTC_DRV_DS1347
821 select REGMAP_SPI
822 tristate "Dallas/Maxim DS1347"
823 help
824 If you say yes here you get support for the
825 Dallas/Maxim DS1347 chips.
826
827 This driver only supports the RTC feature, and not other chip
828 features such as alarms.
829
830 This driver can also be built as a module. If so, the module
831 will be called rtc-ds1347.
832
833config RTC_DRV_DS1390
834 tristate "Dallas/Maxim DS1390/93/94"
835 help
836 If you say yes here you get support for the
837 Dallas/Maxim DS1390/93/94 chips.
838
839 This driver supports the RTC feature and trickle charging but not
840 other chip features such as alarms.
841
842 This driver can also be built as a module. If so, the module
843 will be called rtc-ds1390.
844
845config RTC_DRV_MAX6916
846 tristate "Maxim MAX6916"
847 help
848 If you say yes here you will get support for the
849 Maxim MAX6916 SPI RTC chip.
850
851 This driver only supports the RTC feature, and not other chip
852 features such as alarms.
853
854 This driver can also be built as a module. If so, the module
855 will be called rtc-max6916.
856
857config RTC_DRV_R9701
858 tristate "Epson RTC-9701JE"
859 help
860 If you say yes here you will get support for the
861 Epson RTC-9701JE SPI RTC chip.
862
863 This driver can also be built as a module. If so, the module
864 will be called rtc-r9701.
865
866config RTC_DRV_RX4581
867 tristate "Epson RX-4581"
868 help
869 If you say yes here you will get support for the Epson RX-4581.
870
871 This driver can also be built as a module. If so the module
872 will be called rtc-rx4581.
873
874config RTC_DRV_RS5C348
875 tristate "Ricoh RS5C348A/B"
876 help
877 If you say yes here you get support for the
878 Ricoh RS5C348A and RS5C348B RTC chips.
879
880 This driver can also be built as a module. If so, the module
881 will be called rtc-rs5c348.
882
883config RTC_DRV_MAX6902
884 tristate "Maxim MAX6902"
885 help
886 If you say yes here you will get support for the
887 Maxim MAX6902 SPI RTC chip.
888
889 This driver can also be built as a module. If so, the module
890 will be called rtc-max6902.
891
892config RTC_DRV_PCF2123
893 tristate "NXP PCF2123"
894 select REGMAP_SPI
895 help
896 If you say yes here you get support for the NXP PCF2123
897 RTC chip.
898
899 This driver can also be built as a module. If so, the module
900 will be called rtc-pcf2123.
901
902config RTC_DRV_MCP795
903 tristate "Microchip MCP795"
904 help
905 If you say yes here you will get support for the Microchip MCP795.
906
907 This driver can also be built as a module. If so the module
908 will be called rtc-mcp795.
909
910endif # SPI_MASTER
911
912#
913# Helper to resolve issues with configs that have SPI enabled but I2C
914# modular. See SND_SOC_I2C_AND_SPI for more information
915#
916config RTC_I2C_AND_SPI
917 tristate
918 default m if I2C=m
919 default y if I2C=y
920 default y if SPI_MASTER=y
921
922comment "SPI and I2C RTC drivers"
923
924config RTC_DRV_DS3232
925 tristate "Dallas/Maxim DS3232/DS3234"
926 depends on RTC_I2C_AND_SPI
927 select REGMAP_I2C if I2C
928 select REGMAP_SPI if SPI_MASTER
929 help
930 If you say yes here you get support for Dallas Semiconductor
931 DS3232 and DS3234 real-time clock chips. If an interrupt is associated
932 with the device, the alarm functionality is supported.
933
934 This driver can also be built as a module. If so, the module
935 will be called rtc-ds3232.
936
937config RTC_DRV_DS3232_HWMON
938 bool "HWMON support for Dallas/Maxim DS3232/DS3234"
939 depends on RTC_DRV_DS3232 && HWMON && !(RTC_DRV_DS3232=y && HWMON=m)
940 default y
941 help
942 Say Y here if you want to expose temperature sensor data on
943 rtc-ds3232
944
945config RTC_DRV_PCF2127
946 tristate "NXP PCF2127"
947 depends on RTC_I2C_AND_SPI
948 select REGMAP_I2C if I2C
949 select REGMAP_SPI if SPI_MASTER
950 select WATCHDOG_CORE if WATCHDOG
951 help
952 If you say yes here you get support for the NXP PCF2127/29/31 RTC
953 chips with integrated quartz crystal for industrial applications.
954 These chips also have watchdog timer and tamper switch detection
955 features.
956
957 PCF2127 has an additional feature of 512 bytes battery backed
958 memory that's accessible using nvmem interface.
959
960 This driver can also be built as a module. If so, the module
961 will be called rtc-pcf2127.
962
963config RTC_DRV_RV3029C2
964 tristate "Micro Crystal RV3029/3049"
965 depends on RTC_I2C_AND_SPI
966 select REGMAP_I2C if I2C
967 select REGMAP_SPI if SPI_MASTER
968 help
969 If you say yes here you get support for the Micro Crystal
970 RV3029 and RV3049 RTC chips.
971
972 This driver can also be built as a module. If so, the module
973 will be called rtc-rv3029c2.
974
975config RTC_DRV_RV3029_HWMON
976 bool "HWMON support for RV3029/3049"
977 depends on RTC_DRV_RV3029C2 && HWMON
978 depends on !(RTC_DRV_RV3029C2=y && HWMON=m)
979 default y
980 help
981 Say Y here if you want to expose temperature sensor data on
982 rtc-rv3029.
983
984config RTC_DRV_RX6110
985 tristate "Epson RX-6110"
986 depends on RTC_I2C_AND_SPI
987 select REGMAP_SPI if SPI_MASTER
988 select REGMAP_I2C if I2C
989 help
990 If you say yes here you will get support for the Epson RX-6110.
991
992 This driver can also be built as a module. If so the module
993 will be called rtc-rx6110.
994
995comment "Platform RTC drivers"
996
997# this 'CMOS' RTC driver is arch dependent because it requires
998# <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
999# global rtc_lock ... it's not yet just another platform_device.
1000
1001config RTC_DRV_CMOS
1002 tristate "PC-style 'CMOS'"
1003 depends on X86 || ARM || PPC || MIPS || SPARC64
1004 depends on HAS_IOPORT || MACH_DECSTATION
1005 default y if X86
1006 select RTC_MC146818_LIB
1007 help
1008 Say "yes" here to get direct support for the real time clock
1009 found in every PC or ACPI-based system, and some other boards.
1010 Specifically the original MC146818, compatibles like those in
1011 PC south bridges, the DS12887 or M48T86, some multifunction
1012 or LPC bus chips, and so on.
1013
1014 Your system will need to define the platform device used by
1015 this driver, otherwise it won't be accessible. This means
1016 you can safely enable this driver if you don't know whether
1017 or not your board has this kind of hardware.
1018
1019 This driver can also be built as a module. If so, the module
1020 will be called rtc-cmos.
1021
1022config RTC_DRV_ALPHA
1023 bool "Alpha PC-style CMOS"
1024 depends on ALPHA
1025 depends on HAS_IOPORT
1026 select RTC_MC146818_LIB
1027 default y
1028 help
1029 Direct support for the real-time clock found on every Alpha
1030 system, specifically MC146818 compatibles. If in doubt, say Y.
1031
1032config RTC_DRV_DS1216
1033 tristate "Dallas DS1216"
1034 depends on SNI_RM
1035 help
1036 If you say yes here you get support for the Dallas DS1216 RTC chips.
1037
1038config RTC_DRV_DS1286
1039 tristate "Dallas DS1286"
1040 depends on HAS_IOMEM
1041 help
1042 If you say yes here you get support for the Dallas DS1286 RTC chips.
1043
1044config RTC_DRV_DS1511
1045 tristate "Dallas DS1511"
1046 depends on HAS_IOMEM
1047 help
1048 If you say yes here you get support for the
1049 Dallas DS1511 timekeeping/watchdog chip.
1050
1051 This driver can also be built as a module. If so, the module
1052 will be called rtc-ds1511.
1053
1054config RTC_DRV_DS1553
1055 tristate "Maxim/Dallas DS1553"
1056 depends on HAS_IOMEM
1057 help
1058 If you say yes here you get support for the
1059 Maxim/Dallas DS1553 timekeeping chip.
1060
1061 This driver can also be built as a module. If so, the module
1062 will be called rtc-ds1553.
1063
1064config RTC_DRV_DS1685_FAMILY
1065 tristate "Dallas/Maxim DS1685 Family"
1066 depends on HAS_IOMEM
1067 help
1068 If you say yes here you get support for the Dallas/Maxim DS1685
1069 family of real time chips. This family includes the DS1685/DS1687,
1070 DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and
1071 DS17885/DS17887 chips.
1072
1073 This driver can also be built as a module. If so, the module
1074 will be called rtc-ds1685.
1075
1076choice
1077 prompt "Subtype"
1078 depends on RTC_DRV_DS1685_FAMILY
1079 default RTC_DRV_DS1685
1080
1081config RTC_DRV_DS1685
1082 bool "DS1685/DS1687"
1083 help
1084 This enables support for the Dallas/Maxim DS1685/DS1687 real time
1085 clock chip.
1086
1087 This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30)
1088 systems, as well as EPPC-405-UC modules by electronic system design
1089 GmbH.
1090
1091config RTC_DRV_DS1689
1092 bool "DS1689/DS1693"
1093 help
1094 This enables support for the Dallas/Maxim DS1689/DS1693 real time
1095 clock chip.
1096
1097 This is an older RTC chip, supplanted by the DS1685/DS1687 above,
1098 which supports a few minor features such as Vcc, Vbat, and Power
1099 Cycle counters, plus a customer-specific, 8-byte ROM/Serial number.
1100
1101 It also works for the even older DS1688/DS1691 RTC chips, which are
1102 virtually the same and carry the same model number. Both chips
1103 have 114 bytes of user NVRAM.
1104
1105config RTC_DRV_DS17285
1106 bool "DS17285/DS17287"
1107 help
1108 This enables support for the Dallas/Maxim DS17285/DS17287 real time
1109 clock chip.
1110
1111 This chip features 2kb of extended NV-SRAM. It may possibly be
1112 found in some SGI O2 systems (rare).
1113
1114config RTC_DRV_DS17485
1115 bool "DS17485/DS17487"
1116 help
1117 This enables support for the Dallas/Maxim DS17485/DS17487 real time
1118 clock chip.
1119
1120 This chip features 4kb of extended NV-SRAM.
1121
1122config RTC_DRV_DS17885
1123 bool "DS17885/DS17887"
1124 help
1125 This enables support for the Dallas/Maxim DS17885/DS17887 real time
1126 clock chip.
1127
1128 This chip features 8kb of extended NV-SRAM.
1129
1130endchoice
1131
1132config RTC_DRV_DS1742
1133 tristate "Maxim/Dallas DS1742/1743"
1134 depends on HAS_IOMEM
1135 help
1136 If you say yes here you get support for the
1137 Maxim/Dallas DS1742/1743 timekeeping chip.
1138
1139 This driver can also be built as a module. If so, the module
1140 will be called rtc-ds1742.
1141
1142config RTC_DRV_DS2404
1143 tristate "Maxim/Dallas DS2404"
1144 help
1145 If you say yes here you get support for the
1146 Dallas DS2404 RTC chip.
1147
1148 This driver can also be built as a module. If so, the module
1149 will be called rtc-ds2404.
1150
1151config RTC_DRV_DA9052
1152 tristate "Dialog DA9052/DA9053 RTC"
1153 depends on PMIC_DA9052
1154 help
1155 Say y here to support the RTC driver for Dialog Semiconductor
1156 DA9052-BC and DA9053-AA/Bx PMICs.
1157
1158config RTC_DRV_DA9055
1159 tristate "Dialog Semiconductor DA9055 RTC"
1160 depends on MFD_DA9055
1161 help
1162 If you say yes here you will get support for the
1163 RTC of the Dialog DA9055 PMIC.
1164
1165 This driver can also be built as a module. If so, the module
1166 will be called rtc-da9055
1167
1168config RTC_DRV_DA9063
1169 tristate "Dialog Semiconductor DA9063/DA9062 RTC"
1170 depends on MFD_DA9063 || MFD_DA9062
1171 help
1172 If you say yes here you will get support for the RTC subsystem
1173 for the Dialog Semiconductor PMIC chips DA9063 and DA9062.
1174
1175 This driver can also be built as a module. If so, the module
1176 will be called "rtc-da9063".
1177
1178config RTC_DRV_EFI
1179 tristate "EFI RTC"
1180 depends on EFI && !X86
1181 help
1182 If you say yes here you will get support for the EFI
1183 Real Time Clock.
1184
1185 This driver can also be built as a module. If so, the module
1186 will be called rtc-efi.
1187
1188config RTC_DRV_STK17TA8
1189 tristate "Simtek STK17TA8"
1190 depends on HAS_IOMEM
1191 help
1192 If you say yes here you get support for the
1193 Simtek STK17TA8 timekeeping chip.
1194
1195 This driver can also be built as a module. If so, the module
1196 will be called rtc-stk17ta8.
1197
1198config RTC_DRV_M48T86
1199 tristate "ST M48T86/Dallas DS12887"
1200 depends on HAS_IOMEM
1201 help
1202 If you say Y here you will get support for the
1203 ST M48T86 and Dallas DS12887 RTC chips.
1204
1205 This driver can also be built as a module. If so, the module
1206 will be called rtc-m48t86.
1207
1208config RTC_DRV_M48T35
1209 tristate "ST M48T35"
1210 depends on HAS_IOMEM
1211 help
1212 If you say Y here you will get support for the
1213 ST M48T35 RTC chip.
1214
1215 This driver can also be built as a module, if so, the module
1216 will be called "rtc-m48t35".
1217
1218config RTC_DRV_M48T59
1219 tristate "ST M48T59/M48T08/M48T02"
1220 depends on HAS_IOMEM
1221 help
1222 If you say Y here you will get support for the
1223 ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
1224
1225 These chips are usually found in Sun SPARC and UltraSPARC
1226 workstations.
1227
1228 This driver can also be built as a module, if so, the module
1229 will be called "rtc-m48t59".
1230
1231config RTC_DRV_MSM6242
1232 tristate "Oki MSM6242"
1233 depends on HAS_IOMEM
1234 help
1235 If you say yes here you get support for the Oki MSM6242
1236 timekeeping chip. It is used in some Amiga models (e.g. A2000).
1237
1238 This driver can also be built as a module. If so, the module
1239 will be called rtc-msm6242.
1240
1241config RTC_DRV_BQ4802
1242 tristate "TI BQ4802"
1243 depends on HAS_IOMEM && HAS_IOPORT
1244 depends on SPARC || COMPILE_TEST
1245 help
1246 If you say Y here you will get support for the TI
1247 BQ4802 RTC chip.
1248
1249 This driver can also be built as a module. If so, the module
1250 will be called rtc-bq4802.
1251
1252config RTC_DRV_RP5C01
1253 tristate "Ricoh RP5C01"
1254 depends on HAS_IOMEM
1255 help
1256 If you say yes here you get support for the Ricoh RP5C01
1257 timekeeping chip. It is used in some Amiga models (e.g. A3000
1258 and A4000).
1259
1260 This driver can also be built as a module. If so, the module
1261 will be called rtc-rp5c01.
1262
1263config RTC_DRV_GAMECUBE
1264 tristate "Nintendo GameCube, Wii and Wii U RTC"
1265 depends on GAMECUBE || WII || COMPILE_TEST
1266 select REGMAP
1267 help
1268 If you say yes here you will get support for the RTC subsystem
1269 of the Nintendo GameCube, Wii and Wii U.
1270
1271 This driver can also be built as a module. If so, the module
1272 will be called "rtc-gamecube".
1273
1274config RTC_DRV_WM831X
1275 tristate "Wolfson Microelectronics WM831x RTC"
1276 depends on MFD_WM831X
1277 help
1278 If you say yes here you will get support for the RTC subsystem
1279 of the Wolfson Microelectronics WM831X series PMICs.
1280
1281 This driver can also be built as a module. If so, the module
1282 will be called "rtc-wm831x".
1283
1284config RTC_DRV_WM8350
1285 tristate "Wolfson Microelectronics WM8350 RTC"
1286 depends on MFD_WM8350
1287 help
1288 If you say yes here you will get support for the RTC subsystem
1289 of the Wolfson Microelectronics WM8350.
1290
1291 This driver can also be built as a module. If so, the module
1292 will be called "rtc-wm8350".
1293
1294config RTC_DRV_SC27XX
1295 tristate "Spreadtrum SC27xx RTC"
1296 depends on MFD_SC27XX_PMIC || COMPILE_TEST
1297 help
1298 If you say Y here you will get support for the RTC subsystem
1299 of the Spreadtrum SC27xx series PMICs. The SC27xx series PMICs
1300 includes the SC2720, SC2721, SC2723, SC2730 and SC2731 chips.
1301
1302 This driver can also be built as a module. If so, the module
1303 will be called rtc-sc27xx.
1304
1305config RTC_DRV_SPEAR
1306 tristate "SPEAR ST RTC"
1307 depends on PLAT_SPEAR || COMPILE_TEST
1308 default y
1309 help
1310 If you say Y here you will get support for the RTC found on
1311 spear
1312
1313config RTC_DRV_PCF50633
1314 depends on MFD_PCF50633
1315 tristate "NXP PCF50633 RTC"
1316 help
1317 If you say yes here you get support for the RTC subsystem of the
1318 NXP PCF50633 used in embedded systems.
1319
1320config RTC_DRV_AB8500
1321 tristate "ST-Ericsson AB8500 RTC"
1322 depends on AB8500_CORE
1323 select RTC_INTF_DEV
1324 select RTC_INTF_DEV_UIE_EMUL
1325 help
1326 Select this to enable the ST-Ericsson AB8500 power management IC RTC
1327 support. This chip contains a battery- and capacitor-backed RTC.
1328
1329config RTC_DRV_OPAL
1330 tristate "IBM OPAL RTC driver"
1331 depends on PPC_POWERNV
1332 default y
1333 help
1334 If you say yes here you get support for the PowerNV platform RTC
1335 driver based on OPAL interfaces.
1336
1337 This driver can also be built as a module. If so, the module
1338 will be called rtc-opal.
1339
1340config RTC_DRV_OPTEE
1341 tristate "OP-TEE based RTC driver"
1342 depends on OPTEE
1343 help
1344 Select this to get support for OP-TEE based RTC control on SoCs where
1345 RTC are not accessible to the normal world (Linux).
1346
1347 This driver can also be built as a module. If so, the module
1348 will be called rtc-optee.
1349
1350config RTC_DRV_ZYNQMP
1351 tristate "Xilinx Zynq Ultrascale+ MPSoC RTC"
1352 depends on OF && HAS_IOMEM
1353 help
1354 If you say yes here you get support for the RTC controller found on
1355 Xilinx Zynq Ultrascale+ MPSoC.
1356
1357config RTC_DRV_CROS_EC
1358 tristate "Chrome OS EC RTC driver"
1359 depends on CROS_EC
1360 help
1361 If you say yes here you will get support for the
1362 Chrome OS Embedded Controller's RTC.
1363
1364 This driver can also be built as a module. If so, the module
1365 will be called rtc-cros-ec.
1366
1367config RTC_DRV_NTXEC
1368 tristate "Netronix embedded controller RTC"
1369 depends on MFD_NTXEC
1370 help
1371 Say yes here if you want to support the RTC functionality of the
1372 embedded controller found in certain e-book readers designed by the
1373 original design manufacturer Netronix.
1374
1375comment "on-CPU RTC drivers"
1376
1377config RTC_DRV_ASM9260
1378 tristate "Alphascale asm9260 RTC"
1379 depends on MACH_ASM9260 || COMPILE_TEST
1380 help
1381 If you say yes here you get support for the RTC on the
1382 Alphascale asm9260 SoC.
1383
1384 This driver can also be built as a module. If so, the module
1385 will be called rtc-asm9260.
1386
1387config RTC_DRV_DIGICOLOR
1388 tristate "Conexant Digicolor RTC"
1389 depends on ARCH_DIGICOLOR || COMPILE_TEST
1390 help
1391 If you say yes here you get support for the RTC on Conexant
1392 Digicolor platforms. This currently includes the CX92755 SoC.
1393
1394 This driver can also be built as a module. If so, the module
1395 will be called rtc-digicolor.
1396
1397config RTC_DRV_IMXDI
1398 tristate "Freescale IMX DryIce Real Time Clock"
1399 depends on ARCH_MXC || COMPILE_TEST
1400 depends on OF
1401 help
1402 Support for Freescale IMX DryIce RTC
1403
1404 This driver can also be built as a module, if so, the module
1405 will be called "rtc-imxdi".
1406
1407config RTC_DRV_FSL_FTM_ALARM
1408 tristate "Freescale FlexTimer alarm timer"
1409 depends on ARCH_LAYERSCAPE || SOC_LS1021A || COMPILE_TEST
1410 help
1411 For the FlexTimer in LS1012A, LS1021A, LS1028A, LS1043A, LS1046A,
1412 LS1088A, LS208xA, we can use FTM as the wakeup source.
1413
1414 Say y here to enable FTM alarm support. The FTM alarm provides
1415 alarm functions for wakeup system from deep sleep.
1416
1417 This driver can also be built as a module, if so, the module
1418 will be called "rtc-fsl-ftm-alarm".
1419
1420config RTC_DRV_MESON
1421 tristate "Amlogic Meson RTC"
1422 depends on (ARM && ARCH_MESON) || COMPILE_TEST
1423 select REGMAP_MMIO
1424 help
1425 Support for the RTC block on the Amlogic Meson6, Meson8, Meson8b
1426 and Meson8m2 SoCs.
1427
1428 This driver can also be built as a module, if so, the module
1429 will be called "rtc-meson".
1430
1431config RTC_DRV_MESON_VRTC
1432 tristate "Amlogic Meson Virtual RTC"
1433 depends on ARCH_MESON || COMPILE_TEST
1434 default m if ARCH_MESON
1435 help
1436 If you say yes here you will get support for the
1437 Virtual RTC of Amlogic SoCs.
1438
1439 This driver can also be built as a module. If so, the module
1440 will be called rtc-meson-vrtc.
1441
1442config RTC_DRV_OMAP
1443 tristate "TI OMAP Real Time Clock"
1444 depends on ARCH_OMAP || ARCH_DAVINCI || COMPILE_TEST
1445 depends on OF
1446 depends on PINCTRL
1447 select GENERIC_PINCONF
1448 help
1449 Say "yes" here to support the on chip real time clock
1450 present on TI OMAP1, AM33xx, DA8xx/OMAP-L13x, AM43xx and DRA7xx.
1451
1452 This driver can also be built as a module, if so, module
1453 will be called rtc-omap.
1454
1455config RTC_DRV_S3C
1456 tristate "Samsung S3C series SoC RTC"
1457 depends on ARCH_EXYNOS || ARCH_S3C64XX || ARCH_S5PV210 || \
1458 COMPILE_TEST
1459 help
1460 RTC (Realtime Clock) driver for the clock inbuilt into the
1461 Samsung S3C64XX series of SoCs. This can provide periodic
1462 interrupt rates from 1Hz to 64Hz for user programs, and
1463 wakeup from Alarm.
1464
1465 This driver can also be build as a module. If so, the module
1466 will be called rtc-s3c.
1467
1468config RTC_DRV_EP93XX
1469 tristate "Cirrus Logic EP93XX"
1470 depends on ARCH_EP93XX || COMPILE_TEST
1471 help
1472 If you say yes here you get support for the
1473 RTC embedded in the Cirrus Logic EP93XX processors.
1474
1475 This driver can also be built as a module. If so, the module
1476 will be called rtc-ep93xx.
1477
1478config RTC_DRV_SA1100
1479 tristate "SA11x0/PXA2xx/PXA910"
1480 depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP
1481 help
1482 If you say Y here you will get access to the real time clock
1483 built into your SA11x0 or PXA2xx CPU.
1484
1485 To compile this driver as a module, choose M here: the
1486 module will be called rtc-sa1100.
1487
1488config RTC_DRV_SH
1489 tristate "SuperH On-Chip RTC"
1490 depends on SUPERH || ARCH_RENESAS
1491 help
1492 Say Y here to enable support for the on-chip RTC found in
1493 most SuperH processors. This RTC is also found in RZ/A SoCs.
1494
1495 To compile this driver as a module, choose M here: the
1496 module will be called rtc-sh.
1497
1498config RTC_DRV_SUNPLUS
1499 tristate "Sunplus SP7021 RTC"
1500 depends on SOC_SP7021
1501 help
1502 Say 'yes' to get support for the real-time clock present in
1503 Sunplus SP7021 - a SoC for industrial applications. It provides
1504 RTC status check, timer/alarm functionalities, user data
1505 reservation with the battery over 2.5V, RTC power status check
1506 and battery charge.
1507
1508 This driver can also be built as a module. If so, the module
1509 will be called rtc-sunplus.
1510
1511config RTC_DRV_PL030
1512 tristate "ARM AMBA PL030 RTC"
1513 depends on ARM_AMBA
1514 help
1515 If you say Y here you will get access to ARM AMBA
1516 PrimeCell PL030 RTC found on certain ARM SOCs.
1517
1518 To compile this driver as a module, choose M here: the
1519 module will be called rtc-pl030.
1520
1521config RTC_DRV_PL031
1522 tristate "ARM AMBA PL031 RTC"
1523 depends on ARM_AMBA
1524 help
1525 If you say Y here you will get access to ARM AMBA
1526 PrimeCell PL031 RTC found on certain ARM SOCs.
1527
1528 To compile this driver as a module, choose M here: the
1529 module will be called rtc-pl031.
1530
1531config RTC_DRV_AT91RM9200
1532 tristate "AT91RM9200 or some AT91SAM9 RTC"
1533 depends on ARCH_AT91 || COMPILE_TEST
1534 depends on OF
1535 help
1536 Driver for the internal RTC (Realtime Clock) module found on
1537 Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips
1538 this is powered by the backup power supply.
1539
1540config RTC_DRV_AT91SAM9
1541 tristate "AT91SAM9 RTT as RTC"
1542 depends on ARCH_AT91 || COMPILE_TEST
1543 depends on OF && HAS_IOMEM
1544 select MFD_SYSCON
1545 help
1546 Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which
1547 can be used as an RTC thanks to the backup power supply (e.g. a
1548 small coin cell battery) which keeps this block and the GPBR
1549 (General Purpose Backup Registers) block powered when the device
1550 is shutdown.
1551 Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd
1552 probably want to use the real RTC block instead of the "RTT as an
1553 RTC" driver.
1554
1555config RTC_DRV_AU1XXX
1556 tristate "Au1xxx Counter0 RTC support"
1557 depends on MIPS_ALCHEMY
1558 help
1559 This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
1560 counter) to be used as a RTC.
1561
1562 This driver can also be built as a module. If so, the module
1563 will be called rtc-au1xxx.
1564
1565config RTC_DRV_RS5C313
1566 tristate "Ricoh RS5C313"
1567 depends on SH_LANDISK
1568 help
1569 If you say yes here you get support for the Ricoh RS5C313 RTC chips.
1570
1571config RTC_DRV_RZN1
1572 tristate "Renesas RZ/N1 RTC"
1573 depends on ARCH_RZN1 || COMPILE_TEST
1574 depends on OF && HAS_IOMEM
1575 help
1576 If you say yes here you get support for the Renesas RZ/N1 RTC.
1577
1578config RTC_DRV_GENERIC
1579 tristate "Generic RTC support"
1580 # Please consider writing a new RTC driver instead of using the generic
1581 # RTC abstraction
1582 depends on PARISC || M68K || PPC || SUPERH || COMPILE_TEST
1583 help
1584 Say Y or M here to enable RTC support on systems using the generic
1585 RTC abstraction. If you do not know what you are doing, you should
1586 just say Y.
1587
1588config RTC_DRV_PXA
1589 tristate "PXA27x/PXA3xx"
1590 depends on ARCH_PXA
1591 select RTC_DRV_SA1100
1592 help
1593 If you say Y here you will get access to the real time clock
1594 built into your PXA27x or PXA3xx CPU. This RTC is actually 2 RTCs
1595 consisting of an SA1100 compatible RTC and the extended PXA RTC.
1596
1597 This RTC driver uses PXA RTC registers available since pxa27x
1598 series (RDxR, RYxR) instead of legacy RCNR, RTAR.
1599
1600config RTC_DRV_VT8500
1601 tristate "VIA/WonderMedia 85xx SoC RTC"
1602 depends on ARCH_VT8500 || COMPILE_TEST
1603 help
1604 If you say Y here you will get access to the real time clock
1605 built into your VIA VT8500 SoC or its relatives.
1606
1607
1608config RTC_DRV_SUN4V
1609 bool "SUN4V Hypervisor RTC"
1610 depends on SPARC64
1611 help
1612 If you say Y here you will get support for the Hypervisor
1613 based RTC on SUN4V systems.
1614
1615config RTC_DRV_SUN6I
1616 bool "Allwinner A31 RTC"
1617 default MACH_SUN6I || MACH_SUN8I
1618 depends on COMMON_CLK
1619 depends on ARCH_SUNXI || COMPILE_TEST
1620 help
1621 If you say Y here you will get support for the RTC found in
1622 some Allwinner SoCs like the A31 or the A64.
1623
1624config RTC_DRV_SUNXI
1625 tristate "Allwinner sun4i/sun7i RTC"
1626 depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST
1627 help
1628 If you say Y here you will get support for the RTC found on
1629 Allwinner A10/A20.
1630
1631config RTC_DRV_STARFIRE
1632 bool "Starfire RTC"
1633 depends on SPARC64
1634 help
1635 If you say Y here you will get support for the RTC found on
1636 Starfire systems.
1637
1638config RTC_DRV_MV
1639 tristate "Marvell SoC RTC"
1640 depends on ARCH_DOVE || ARCH_MVEBU || COMPILE_TEST
1641 help
1642 If you say yes here you will get support for the in-chip RTC
1643 that can be found in some of Marvell's SoC devices, such as
1644 the Kirkwood 88F6281 and 88F6192.
1645
1646 This driver can also be built as a module. If so, the module
1647 will be called rtc-mv.
1648
1649config RTC_DRV_ARMADA38X
1650 tristate "Armada 38x Marvell SoC RTC"
1651 depends on ARCH_MVEBU || COMPILE_TEST
1652 depends on OF
1653 help
1654 If you say yes here you will get support for the in-chip RTC
1655 that can be found in the Armada 38x Marvell's SoC device
1656
1657 This driver can also be built as a module. If so, the module
1658 will be called armada38x-rtc.
1659
1660config RTC_DRV_CADENCE
1661 tristate "Cadence RTC driver"
1662 depends on OF && HAS_IOMEM
1663 help
1664 If you say Y here you will get access to Cadence RTC IP
1665 found on certain SOCs.
1666
1667 To compile this driver as a module, choose M here: the
1668 module will be called rtc-cadence.
1669
1670config RTC_DRV_FTRTC010
1671 tristate "Faraday Technology FTRTC010 RTC"
1672 depends on HAS_IOMEM
1673 default ARCH_GEMINI
1674 help
1675 If you say Y here you will get support for the
1676 Faraday Technolog FTRTC010 found on e.g. Gemini SoC's.
1677
1678 This driver can also be built as a module. If so, the module
1679 will be called rtc-ftrtc010.
1680
1681config RTC_DRV_PS3
1682 tristate "PS3 RTC"
1683 depends on PPC_PS3
1684 help
1685 If you say yes here you will get support for the RTC on PS3.
1686
1687 This driver can also be built as a module. If so, the module
1688 will be called rtc-ps3.
1689
1690config RTC_DRV_STMP
1691 tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC"
1692 depends on ARCH_MXS || COMPILE_TEST
1693 select STMP_DEVICE
1694 help
1695 If you say yes here you will get support for the onboard
1696 STMP3xxx/i.MX23/i.MX28 RTC.
1697
1698 This driver can also be built as a module. If so, the module
1699 will be called rtc-stmp3xxx.
1700
1701config RTC_DRV_PCAP
1702 tristate "PCAP RTC"
1703 depends on EZX_PCAP
1704 help
1705 If you say Y here you will get support for the RTC found on
1706 the PCAP2 ASIC used on some Motorola phones.
1707
1708config RTC_DRV_MC13XXX
1709 depends on MFD_MC13XXX
1710 tristate "Freescale MC13xxx RTC"
1711 help
1712 This enables support for the RTCs found on Freescale's PMICs
1713 MC13783 and MC13892.
1714
1715config RTC_DRV_MPC5121
1716 tristate "Freescale MPC5121 built-in RTC"
1717 depends on PPC_MPC512x || PPC_MPC52xx
1718 help
1719 If you say yes here you will get support for the
1720 built-in RTC on MPC5121 or on MPC5200.
1721
1722 This driver can also be built as a module. If so, the module
1723 will be called rtc-mpc5121.
1724
1725config RTC_DRV_JZ4740
1726 tristate "Ingenic JZ4740 SoC"
1727 depends on MIPS || COMPILE_TEST
1728 depends on OF && COMMON_CLK
1729 help
1730 If you say yes here you get support for the Ingenic JZ47xx SoCs RTC
1731 controllers.
1732
1733 This driver can also be built as a module. If so, the module
1734 will be called rtc-jz4740.
1735
1736config RTC_DRV_LOONGSON
1737 tristate "Loongson On-chip RTC"
1738 depends on MACH_LOONGSON32 || MACH_LOONGSON64 || COMPILE_TEST
1739 select REGMAP_MMIO
1740 help
1741 This is a driver for the Loongson on-chip Counter0 (Time-Of-Year
1742 counter) to be used as a RTC.
1743 It can be found on Loongson-1 series cpu, Loongson-2K series cpu
1744 and Loongson LS7A bridge chips.
1745
1746 This driver can also be built as a module. If so, the module
1747 will be called rtc-loongson.
1748
1749config RTC_DRV_LPC24XX
1750 tristate "NXP RTC for LPC178x/18xx/408x/43xx"
1751 depends on ARCH_LPC18XX || COMPILE_TEST
1752 depends on OF && HAS_IOMEM
1753 depends on COMMON_CLK
1754 help
1755 This enables support for the NXP RTC found which can be found on
1756 NXP LPC178x/18xx/408x/43xx devices.
1757
1758 If you have one of the devices above enable this driver to use
1759 the hardware RTC. This driver can also be built as a module. If
1760 so, the module will be called rtc-lpc24xx.
1761
1762config RTC_DRV_LPC32XX
1763 depends on ARCH_LPC32XX || COMPILE_TEST
1764 tristate "NXP LPC32XX RTC"
1765 help
1766 This enables support for the NXP RTC in the LPC32XX
1767
1768 This driver can also be built as a module. If so, the module
1769 will be called rtc-lpc32xx.
1770
1771config RTC_DRV_PM8XXX
1772 tristate "Qualcomm PMIC8XXX RTC"
1773 depends on MFD_PM8XXX || MFD_SPMI_PMIC || COMPILE_TEST
1774 help
1775 If you say yes here you get support for the
1776 Qualcomm PMIC8XXX RTC.
1777
1778 To compile this driver as a module, choose M here: the
1779 module will be called rtc-pm8xxx.
1780
1781config RTC_DRV_TEGRA
1782 tristate "NVIDIA Tegra Internal RTC driver"
1783 depends on ARCH_TEGRA || COMPILE_TEST
1784 help
1785 If you say yes here you get support for the
1786 Tegra 200 series internal RTC module.
1787
1788 This drive can also be built as a module. If so, the module
1789 will be called rtc-tegra.
1790
1791config RTC_DRV_MXC
1792 tristate "Freescale MXC Real Time Clock"
1793 depends on ARCH_MXC || COMPILE_TEST
1794 depends on HAS_IOMEM
1795 depends on OF
1796 help
1797 If you say yes here you get support for the Freescale MXC
1798 RTC module.
1799
1800 This driver can also be built as a module, if so, the module
1801 will be called "rtc-mxc".
1802
1803config RTC_DRV_MXC_V2
1804 tristate "Freescale MXC Real Time Clock for i.MX53"
1805 depends on ARCH_MXC || COMPILE_TEST
1806 depends on HAS_IOMEM
1807 depends on OF
1808 help
1809 If you say yes here you get support for the Freescale MXC
1810 SRTC module in i.MX53 processor.
1811
1812 This driver can also be built as a module, if so, the module
1813 will be called "rtc-mxc_v2".
1814
1815config RTC_DRV_SNVS
1816 tristate "Freescale SNVS RTC support"
1817 select REGMAP_MMIO
1818 depends on ARCH_MXC || COMPILE_TEST
1819 depends on HAS_IOMEM
1820 depends on OF
1821 help
1822 If you say yes here you get support for the Freescale SNVS
1823 Low Power (LP) RTC module.
1824
1825 This driver can also be built as a module, if so, the module
1826 will be called "rtc-snvs".
1827
1828config RTC_DRV_BBNSM
1829 tristate "NXP BBNSM RTC support"
1830 select REGMAP_MMIO
1831 depends on ARCH_MXC || COMPILE_TEST
1832 depends on HAS_IOMEM
1833 depends on OF
1834 help
1835 If you say yes here you get support for the NXP BBNSM RTC module.
1836
1837 This driver can also be built as a module, if so, the module
1838 will be called "rtc-bbnsm".
1839
1840config RTC_DRV_IMX_BBM_SCMI
1841 depends on IMX_SCMI_BBM_EXT || COMPILE_TEST
1842 default y if ARCH_MXC
1843 tristate "NXP i.MX BBM SCMI RTC support"
1844 help
1845 If you say yes here you get support for the NXP i.MX BBSM SCMI
1846 RTC module.
1847
1848 To compile this driver as a module, choose M here: the
1849 module will be called rtc-imx-sm-bbm.
1850
1851config RTC_DRV_IMX_SC
1852 depends on IMX_SCU
1853 depends on HAVE_ARM_SMCCC
1854 tristate "NXP i.MX System Controller RTC support"
1855 help
1856 If you say yes here you get support for the NXP i.MX System
1857 Controller RTC module.
1858
1859config RTC_DRV_ST_LPC
1860 tristate "STMicroelectronics LPC RTC"
1861 depends on ARCH_STI
1862 depends on OF
1863 help
1864 Say Y here to include STMicroelectronics Low Power Controller
1865 (LPC) based RTC support.
1866
1867 To compile this driver as a module, choose M here: the
1868 module will be called rtc-st-lpc.
1869
1870config RTC_DRV_MOXART
1871 tristate "MOXA ART RTC"
1872 depends on ARCH_MOXART || COMPILE_TEST
1873 help
1874 If you say yes here you get support for the MOXA ART
1875 RTC module.
1876
1877 This driver can also be built as a module. If so, the module
1878 will be called rtc-moxart
1879
1880config RTC_DRV_MT2712
1881 tristate "MediaTek MT2712 SoC based RTC"
1882 depends on ARCH_MEDIATEK || COMPILE_TEST
1883 help
1884 This enables support for the real time clock built in the MediaTek
1885 SoCs for MT2712.
1886
1887 This drive can also be built as a module. If so, the module
1888 will be called rtc-mt2712.
1889
1890config RTC_DRV_MT6397
1891 tristate "MediaTek PMIC based RTC"
1892 depends on MFD_MT6397 || COMPILE_TEST
1893 select IRQ_DOMAIN
1894 help
1895 This selects the MediaTek(R) RTC driver. RTC is part of MediaTek
1896 MT6397 PMIC. You should enable MT6397 PMIC MFD before select
1897 MediaTek(R) RTC driver.
1898
1899 If you want to use MediaTek(R) RTC interface, select Y or M here.
1900
1901config RTC_DRV_MT7622
1902 tristate "MediaTek SoC based RTC"
1903 depends on ARCH_MEDIATEK || COMPILE_TEST
1904 help
1905 This enables support for the real time clock built in the MediaTek
1906 SoCs.
1907
1908 This drive can also be built as a module. If so, the module
1909 will be called rtc-mt7622.
1910
1911config RTC_DRV_XGENE
1912 tristate "APM X-Gene RTC"
1913 depends on HAS_IOMEM
1914 depends on ARCH_XGENE || COMPILE_TEST
1915 help
1916 If you say yes here you get support for the APM X-Gene SoC real time
1917 clock.
1918
1919 This driver can also be built as a module, if so, the module
1920 will be called "rtc-xgene".
1921
1922config RTC_DRV_PIC32
1923 tristate "Microchip PIC32 RTC"
1924 depends on MACH_PIC32
1925 default y
1926 help
1927 If you say yes here you get support for the PIC32 RTC module.
1928
1929 This driver can also be built as a module. If so, the module
1930 will be called rtc-pic32
1931
1932config RTC_DRV_R7301
1933 tristate "EPSON TOYOCOM RTC-7301SF/DG"
1934 select REGMAP_MMIO
1935 depends on OF && HAS_IOMEM
1936 help
1937 If you say yes here you get support for the EPSON TOYOCOM
1938 RTC-7301SF/DG chips.
1939
1940 This driver can also be built as a module. If so, the module
1941 will be called rtc-r7301.
1942
1943config RTC_DRV_STM32
1944 tristate "STM32 RTC"
1945 select REGMAP_MMIO
1946 depends on ARCH_STM32 || COMPILE_TEST
1947 depends on OF
1948 depends on PINCTRL
1949 select PINMUX
1950 select PINCONF
1951 select GENERIC_PINCONF
1952 depends on COMMON_CLK
1953 help
1954 If you say yes here you get support for the STM32 On-Chip
1955 Real Time Clock.
1956
1957 This driver can also be built as a module, if so, the module
1958 will be called "rtc-stm32".
1959
1960config RTC_DRV_CPCAP
1961 depends on MFD_CPCAP
1962 tristate "Motorola CPCAP RTC"
1963 help
1964 Say y here for CPCAP rtc found on some Motorola phones
1965 and tablets such as Droid 4.
1966
1967config RTC_DRV_RTD119X
1968 bool "Realtek RTD129x RTC"
1969 depends on ARCH_REALTEK || COMPILE_TEST
1970 default ARCH_REALTEK
1971 help
1972 If you say yes here, you get support for the RTD1295 SoC
1973 Real Time Clock.
1974
1975config RTC_DRV_ASPEED
1976 tristate "ASPEED RTC"
1977 depends on OF
1978 depends on ARCH_ASPEED || COMPILE_TEST
1979 help
1980 If you say yes here you get support for the ASPEED BMC SoC real time
1981 clocks.
1982
1983 This driver can also be built as a module, if so, the module
1984 will be called "rtc-aspeed".
1985
1986config RTC_DRV_TI_K3
1987 tristate "TI K3 RTC"
1988 depends on ARCH_K3 || COMPILE_TEST
1989 select REGMAP_MMIO
1990 help
1991 If you say yes here you get support for the Texas Instruments's
1992 Real Time Clock for K3 architecture.
1993
1994 This driver can also be built as a module, if so, the module
1995 will be called "rtc-ti-k3".
1996
1997config RTC_DRV_MA35D1
1998 tristate "Nuvoton MA35D1 RTC"
1999 depends on ARCH_MA35 || COMPILE_TEST
2000 select REGMAP_MMIO
2001 help
2002 If you say yes here you get support for the Nuvoton MA35D1
2003 On-Chip Real Time Clock.
2004
2005 This driver can also be built as a module, if so, the module
2006 will be called "rtc-ma35d1".
2007
2008comment "HID Sensor RTC drivers"
2009
2010config RTC_DRV_HID_SENSOR_TIME
2011 tristate "HID Sensor Time"
2012 depends on USB_HID
2013 depends on HID_SENSOR_HUB && IIO
2014 select HID_SENSOR_IIO_COMMON
2015 help
2016 Say yes here to build support for the HID Sensors of type Time.
2017 This drivers makes such sensors available as RTCs.
2018
2019 If this driver is compiled as a module, it will be named
2020 rtc-hid-sensor-time.
2021
2022config RTC_DRV_GOLDFISH
2023 tristate "Goldfish Real Time Clock"
2024 depends on HAS_IOMEM
2025 help
2026 Say yes to enable RTC driver for the Goldfish based virtual platform.
2027
2028 Goldfish is a code name for the virtual platform developed by Google
2029 for Android emulation.
2030
2031config RTC_DRV_WILCO_EC
2032 tristate "Wilco EC RTC"
2033 depends on WILCO_EC
2034 default m
2035 help
2036 If you say yes here, you get read/write support for the Real Time
2037 Clock on the Wilco Embedded Controller (Wilco is a kind of Chromebook)
2038
2039 This can also be built as a module. If so, the module will
2040 be named "rtc_wilco_ec".
2041
2042config RTC_DRV_MSC313
2043 tristate "MStar MSC313 RTC"
2044 depends on ARCH_MSTARV7 || COMPILE_TEST
2045 help
2046 If you say yes here you get support for the Mstar MSC313e On-Chip
2047 Real Time Clock.
2048
2049 This driver can also be built as a module, if so, the module
2050 will be called "rtc-msc313".
2051
2052config RTC_DRV_POLARFIRE_SOC
2053 tristate "Microchip PolarFire SoC built-in RTC"
2054 depends on ARCH_MICROCHIP_POLARFIRE
2055 help
2056 If you say yes here you will get support for the
2057 built-in RTC on Polarfire SoC.
2058
2059 This driver can also be built as a module, if so, the module
2060 will be called "rtc-mpfs".
2061
2062config RTC_DRV_SSD202D
2063 tristate "SigmaStar SSD202D RTC"
2064 depends on ARCH_MSTARV7 || COMPILE_TEST
2065 default ARCH_MSTARV7
2066 help
2067 If you say yes here you get support for the SigmaStar SSD202D On-Chip
2068 Real Time Clock.
2069
2070 This driver can also be built as a module, if so, the module
2071 will be called "rtc-ssd20xd".
2072
2073endif # RTC_CLASS