add rtc and update i2s
[firefly-linux-kernel-4.4.55.git] / drivers / rtc / Kconfig
1 #
2 # RTC class/drivers configuration
3 #
4
5 config RTC_LIB
6         tristate
7
8 menuconfig RTC_CLASS
9         tristate "Real Time Clock"
10         default n
11         depends on !S390
12         select RTC_LIB
13         help
14           Generic RTC class support. If you say yes here, you will
15           be allowed to plug one or more RTCs to your system. You will
16           probably want to enable one or more of the interfaces below.
17
18           This driver can also be built as a module. If so, the module
19           will be called rtc-core.
20
21 if RTC_CLASS
22
23 config RTC_HCTOSYS
24         bool "Set system time from RTC on startup and resume"
25         depends on RTC_CLASS = y
26         default y
27         help
28           If you say yes here, the system time (wall clock) will be set using
29           the value read from a specified RTC device. This is useful to avoid
30           unnecessary fsck runs at boot time, and to network better.
31
32 config RTC_HCTOSYS_DEVICE
33         string "RTC used to set the system time"
34         depends on RTC_HCTOSYS = y
35         default "rtc0"
36         help
37           The RTC device that will be used to (re)initialize the system
38           clock, usually rtc0. Initialization is done when the system
39           starts up, and when it resumes from a low power state. This
40           device should record time in UTC, since the kernel won't do
41           timezone correction.
42
43           The driver for this RTC device must be loaded before late_initcall
44           functions run, so it must usually be statically linked.
45
46           This clock should be battery-backed, so that it reads the correct
47           time when the system boots from a power-off state. Otherwise, your
48           system will need an external clock source (like an NTP server).
49
50           If the clock you specify here is not battery backed, it may still
51           be useful to reinitialize system time when resuming from system
52           sleep states. Do not specify an RTC here unless it stays powered
53           during all this system's supported sleep states.
54
55 config RTC_DEBUG
56         bool "RTC debug support"
57         depends on RTC_CLASS = y
58         help
59           Say yes here to enable debugging support in the RTC framework
60           and individual RTC drivers.
61
62 comment "RTC interfaces"
63
64 config RTC_INTF_SYSFS
65         boolean "/sys/class/rtc/rtcN (sysfs)"
66         depends on SYSFS
67         default RTC_CLASS
68         help
69           Say yes here if you want to use your RTCs using sysfs interfaces,
70           /sys/class/rtc/rtc0 through /sys/.../rtcN.
71
72           If unsure, say Y.
73
74 config RTC_INTF_PROC
75         boolean "/proc/driver/rtc (procfs for rtc0)"
76         depends on PROC_FS
77         default RTC_CLASS
78         help
79           Say yes here if you want to use your first RTC through the proc
80           interface, /proc/driver/rtc. Other RTCs will not be available
81           through that API.
82
83           If unsure, say Y.
84
85 config RTC_INTF_DEV
86         boolean "/dev/rtcN (character devices)"
87         default RTC_CLASS
88         help
89           Say yes here if you want to use your RTCs using the /dev
90           interfaces, which "udev" sets up as /dev/rtc0 through
91           /dev/rtcN.
92
93           You may want to set up a symbolic link so one of these
94           can be accessed as /dev/rtc, which is a name
95           expected by "hwclock" and some other programs. Recent
96           versions of "udev" are known to set up the symlink for you.
97
98           If unsure, say Y.
99
100 config RTC_INTF_DEV_UIE_EMUL
101         bool "RTC UIE emulation on dev interface"
102         depends on RTC_INTF_DEV
103         help
104           Provides an emulation for RTC_UIE if the underlying rtc chip
105           driver does not expose RTC_UIE ioctls. Those requests generate
106           once-per-second update interrupts, used for synchronization.
107
108           The emulation code will read the time from the hardware
109           clock several times per second, please enable this option
110           only if you know that you really need it.
111
112 config RTC_INTF_ALARM
113         bool "Android alarm driver"
114         depends on RTC_CLASS
115         default y
116         help
117           Provides non-wakeup and rtc backed wakeup alarms based on rtc or
118           elapsed realtime, and a non-wakeup alarm on the monotonic clock.
119           Also provides an interface to set the wall time which must be used
120           for elapsed realtime to work.
121
122 config RTC_INTF_ALARM_DEV
123         bool "Android alarm device"
124         depends on RTC_INTF_ALARM
125         default y
126         help
127           Exports the alarm interface to user-space.
128
129
130 config RTC_DRV_TEST
131         tristate "Test driver/device"
132         help
133           If you say yes here you get support for the
134           RTC test driver. It's a software RTC which can be
135           used to test the RTC subsystem APIs. It gets
136           the time from the system clock.
137           You want this driver only if you are doing development
138           on the RTC subsystem. Please read the source code
139           for further details.
140
141           This driver can also be built as a module. If so, the module
142           will be called rtc-test.
143
144 comment "I2C RTC drivers"
145         depends on I2C
146
147 if I2C
148
149 config RTC_HYM8563
150         tristate "RK2818 or RK29 extern HYM8563 RTC"
151         depends on I2C_RK2818 || I2C_RK29
152         help
153           If you say yes here you will get support for the
154           HYM8563 I2C RTC chip.
155           This driver can also be built as a module. If so, the module
156           will be called rtc-HYM8563.
157
158 config RTC_DRV_DS1307
159         tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025"
160         help
161           If you say yes here you get support for various compatible RTC
162           chips (often with battery backup) connected with I2C. This driver
163           should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
164           EPSON RX-8025 and probably other chips. In some cases the RTC
165           must already have been initialized (by manufacturing or a
166           bootloader).
167
168           The first seven registers on these chips hold an RTC, and other
169           registers may add features such as NVRAM, a trickle charger for
170           the RTC/NVRAM backup power, and alarms. NVRAM is visible in
171           sysfs, but other chip features may not be available.
172
173           This driver can also be built as a module. If so, the module
174           will be called rtc-ds1307.
175
176 config RTC_DRV_DS1374
177         tristate "Dallas/Maxim DS1374"
178         depends on RTC_CLASS && I2C
179         help
180           If you say yes here you get support for Dallas Semiconductor
181           DS1374 real-time clock chips. If an interrupt is associated
182           with the device, the alarm functionality is supported.
183
184           This driver can also be built as a module. If so, the module
185           will be called rtc-ds1374.
186
187 config RTC_DRV_DS1672
188         tristate "Dallas/Maxim DS1672"
189         help
190           If you say yes here you get support for the
191           Dallas/Maxim DS1672 timekeeping chip.
192
193           This driver can also be built as a module. If so, the module
194           will be called rtc-ds1672.
195
196 config RTC_DRV_MAX6900
197         tristate "Maxim MAX6900"
198         help
199           If you say yes here you will get support for the
200           Maxim MAX6900 I2C RTC chip.
201
202           This driver can also be built as a module. If so, the module
203           will be called rtc-max6900.
204
205 config RTC_DRV_RS5C372
206         tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
207         help
208           If you say yes here you get support for the
209           Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
210
211           This driver can also be built as a module. If so, the module
212           will be called rtc-rs5c372.
213
214 config RTC_DRV_ISL1208
215         tristate "Intersil ISL1208"
216         help
217           If you say yes here you get support for the
218           Intersil ISL1208 RTC chip.
219
220           This driver can also be built as a module. If so, the module
221           will be called rtc-isl1208.
222
223 config RTC_DRV_X1205
224         tristate "Xicor/Intersil X1205"
225         help
226           If you say yes here you get support for the
227           Xicor/Intersil X1205 RTC chip.
228
229           This driver can also be built as a module. If so, the module
230           will be called rtc-x1205.
231
232 config RTC_DRV_PCF8563
233         tristate "Philips PCF8563/Epson RTC8564"
234         help
235           If you say yes here you get support for the
236           Philips PCF8563 RTC chip. The Epson RTC8564
237           should work as well.
238
239           This driver can also be built as a module. If so, the module
240           will be called rtc-pcf8563.
241
242 config RTC_DRV_PCF8583
243         tristate "Philips PCF8583"
244         help
245           If you say yes here you get support for the Philips PCF8583
246           RTC chip found on Acorn RiscPCs. This driver supports the
247           platform specific method of retrieving the current year from
248           the RTC's SRAM. It will work on other platforms with the same
249           chip, but the year will probably have to be tweaked.
250
251           This driver can also be built as a module. If so, the module
252           will be called rtc-pcf8583.
253
254 config RTC_DRV_M41T80
255         tristate "ST M41T62/65/M41T80/81/82/83/84/85/87"
256         help
257           If you say Y here you will get support for the ST M41T60
258           and M41T80 RTC chips series. Currently, the following chips are
259           supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
260           M41ST85, and M41ST87.
261
262           This driver can also be built as a module. If so, the module
263           will be called rtc-m41t80.
264
265 config RTC_DRV_M41T80_WDT
266         bool "ST M41T65/M41T80 series RTC watchdog timer"
267         depends on RTC_DRV_M41T80
268         help
269           If you say Y here you will get support for the
270           watchdog timer in the ST M41T60 and M41T80 RTC chips series.
271
272 config RTC_DRV_DM355EVM
273         tristate "TI DaVinci DM355 EVM RTC"
274         depends on MFD_DM355EVM_MSP
275         help
276           Supports the RTC firmware in the MSP430 on the DM355 EVM.
277
278 config RTC_DRV_TWL92330
279         boolean "TI TWL92330/Menelaus"
280         depends on MENELAUS
281         help
282           If you say yes here you get support for the RTC on the
283           TWL92330 "Menelaus" power management chip, used with OMAP2
284           platforms. The support is integrated with the rest of
285           the Menelaus driver; it's not separate module.
286
287 config RTC_DRV_TWL4030
288         tristate "TI TWL4030/TWL5030/TPS659x0"
289         depends on RTC_CLASS && TWL4030_CORE
290         help
291           If you say yes here you get support for the RTC on the
292           TWL4030 family chips, used mostly with OMAP3 platforms.
293
294           This driver can also be built as a module. If so, the module
295           will be called rtc-twl4030.
296
297 config RTC_DRV_S35390A
298         tristate "Seiko Instruments S-35390A"
299         select BITREVERSE
300         help
301           If you say yes here you will get support for the Seiko
302           Instruments S-35390A.
303
304           This driver can also be built as a module. If so the module
305           will be called rtc-s35390a.
306
307 config RTC_DRV_S35392A
308         tristate "Seiko Instruments S-35392A"
309         select BITREVERSE
310         help
311           If you say yes here you will get support for the Seiko
312           Instruments S-35392A.
313
314           This driver can also be built as a module. If so the module
315           will be called rtc-s35392a.
316           
317 config RTC_DRV_FM3130
318         tristate "Ramtron FM3130"
319         help
320           If you say Y here you will get support for the
321           Ramtron FM3130 RTC chips.
322           Ramtron FM3130 is a chip with two separate devices inside,
323           RTC clock and FRAM. This driver provides only RTC functionality.
324
325           This driver can also be built as a module. If so the module
326           will be called rtc-fm3130.
327
328 config RTC_DRV_RX8581
329         tristate "Epson RX-8581"
330         help
331           If you say yes here you will get support for the Epson RX-8581.
332
333           This driver can also be built as a module. If so the module
334           will be called rtc-rx8581.
335
336 config RTC_DRV_RX8025
337         tristate "Epson RX-8025SA/NB"
338         help
339           If you say yes here you get support for the Epson
340           RX-8025SA/NB RTC chips.
341
342           This driver can also be built as a module. If so, the module
343           will be called rtc-rx8025.
344
345 endif # I2C
346
347 comment "SPI RTC drivers"
348
349 if SPI_MASTER
350
351 config RTC_DRV_M41T94
352         tristate "ST M41T94"
353         help
354           If you say yes here you will get support for the
355           ST M41T94 SPI RTC chip.
356
357           This driver can also be built as a module. If so, the module
358           will be called rtc-m41t94.
359
360 config RTC_DRV_DS1305
361         tristate "Dallas/Maxim DS1305/DS1306"
362         help
363           Select this driver to get support for the Dallas/Maxim DS1305
364           and DS1306 real time clock chips. These support a trickle
365           charger, alarms, and NVRAM in addition to the clock.
366
367           This driver can also be built as a module. If so, the module
368           will be called rtc-ds1305.
369
370 config RTC_DRV_DS1390
371         tristate "Dallas/Maxim DS1390/93/94"
372         help
373           If you say yes here you get support for the
374           Dallas/Maxim DS1390/93/94 chips.
375
376           This driver only supports the RTC feature, and not other chip
377           features such as alarms and trickle charging.
378
379           This driver can also be built as a module. If so, the module
380           will be called rtc-ds1390.
381
382 config RTC_DRV_MAX6902
383         tristate "Maxim MAX6902"
384         help
385           If you say yes here you will get support for the
386           Maxim MAX6902 SPI RTC chip.
387
388           This driver can also be built as a module. If so, the module
389           will be called rtc-max6902.
390
391 config RTC_DRV_R9701
392         tristate "Epson RTC-9701JE"
393         help
394           If you say yes here you will get support for the
395           Epson RTC-9701JE SPI RTC chip.
396
397           This driver can also be built as a module. If so, the module
398           will be called rtc-r9701.
399
400 config RTC_DRV_RS5C348
401         tristate "Ricoh RS5C348A/B"
402         help
403           If you say yes here you get support for the
404           Ricoh RS5C348A and RS5C348B RTC chips.
405
406           This driver can also be built as a module. If so, the module
407           will be called rtc-rs5c348.
408
409 config RTC_DRV_DS3234
410         tristate "Maxim/Dallas DS3234"
411         help
412           If you say yes here you get support for the
413           Maxim/Dallas DS3234 SPI RTC chip.
414
415           This driver can also be built as a module. If so, the module
416           will be called rtc-ds3234.
417
418 config RTC_DRV_PCF2123
419         tristate "NXP PCF2123"
420         help
421           If you say yes here you get support for the NXP PCF2123
422           RTC chip.
423
424           This driver can also be built as a module. If so, the module
425           will be called rtc-pcf2123.
426
427 endif # SPI_MASTER
428
429 comment "Platform RTC drivers"
430
431 # this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
432 # requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
433 # global rtc_lock ... it's not yet just another platform_device.
434
435 config RTC_DRV_CMOS
436         tristate "PC-style 'CMOS'"
437         depends on X86 || ALPHA || ARM || M32R || ATARI || PPC || MIPS || SPARC64
438         default y if X86
439         help
440           Say "yes" here to get direct support for the real time clock
441           found in every PC or ACPI-based system, and some other boards.
442           Specifically the original MC146818, compatibles like those in
443           PC south bridges, the DS12887 or M48T86, some multifunction
444           or LPC bus chips, and so on.
445
446           Your system will need to define the platform device used by
447           this driver, otherwise it won't be accessible. This means
448           you can safely enable this driver if you don't know whether
449           or not your board has this kind of hardware.
450
451           This driver can also be built as a module. If so, the module
452           will be called rtc-cmos.
453
454 config RTC_DRV_DS1216
455         tristate "Dallas DS1216"
456         depends on SNI_RM
457         help
458           If you say yes here you get support for the Dallas DS1216 RTC chips.
459
460 config RTC_DRV_DS1286
461         tristate "Dallas DS1286"
462         help
463           If you say yes here you get support for the Dallas DS1286 RTC chips.
464
465 config RTC_DRV_DS1302
466         tristate "Dallas DS1302"
467         depends on SH_SECUREEDGE5410
468         help
469           If you say yes here you get support for the Dallas DS1302 RTC chips.
470
471 config RTC_DRV_DS1511
472         tristate "Dallas DS1511"
473         depends on RTC_CLASS
474         help
475           If you say yes here you get support for the
476           Dallas DS1511 timekeeping/watchdog chip.
477
478           This driver can also be built as a module. If so, the module
479           will be called rtc-ds1511.
480
481 config RTC_DRV_DS1553
482         tristate "Maxim/Dallas DS1553"
483         help
484           If you say yes here you get support for the
485           Maxim/Dallas DS1553 timekeeping chip.
486
487           This driver can also be built as a module. If so, the module
488           will be called rtc-ds1553.
489
490 config RTC_DRV_DS1742
491         tristate "Maxim/Dallas DS1742/1743"
492         help
493           If you say yes here you get support for the
494           Maxim/Dallas DS1742/1743 timekeeping chip.
495
496           This driver can also be built as a module. If so, the module
497           will be called rtc-ds1742.
498
499 config RTC_DRV_EFI
500         tristate "EFI RTC"
501         depends on IA64
502         help
503           If you say yes here you will get support for the EFI
504           Real Time Clock.
505
506           This driver can also be built as a module. If so, the module
507           will be called rtc-efi.
508
509 config RTC_DRV_STK17TA8
510         tristate "Simtek STK17TA8"
511         depends on RTC_CLASS
512         help
513           If you say yes here you get support for the
514           Simtek STK17TA8 timekeeping chip.
515
516           This driver can also be built as a module. If so, the module
517           will be called rtc-stk17ta8.
518
519 config RTC_DRV_M48T86
520         tristate "ST M48T86/Dallas DS12887"
521         help
522           If you say Y here you will get support for the
523           ST M48T86 and Dallas DS12887 RTC chips.
524
525           This driver can also be built as a module. If so, the module
526           will be called rtc-m48t86.
527
528 config RTC_DRV_M48T35
529         tristate "ST M48T35"
530         help
531           If you say Y here you will get support for the
532           ST M48T35 RTC chip.
533
534           This driver can also be built as a module, if so, the module
535           will be called "rtc-m48t35".
536
537 config RTC_DRV_M48T59
538         tristate "ST M48T59/M48T08/M48T02"
539         help
540           If you say Y here you will get support for the
541           ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
542
543           These chips are usually found in Sun SPARC and UltraSPARC
544           workstations.
545
546           This driver can also be built as a module, if so, the module
547           will be called "rtc-m48t59".
548
549 config RTC_MXC
550         tristate "Freescale MXC Real Time Clock"
551         depends on ARCH_MXC
552         depends on RTC_CLASS
553         help
554            If you say yes here you get support for the Freescale MXC
555            RTC module.
556
557            This driver can also be built as a module, if so, the module
558            will be called "rtc-mxc".
559
560 config RTC_DRV_BQ4802
561         tristate "TI BQ4802"
562         help
563           If you say Y here you will get support for the TI
564           BQ4802 RTC chip.
565
566           This driver can also be built as a module. If so, the module
567           will be called rtc-bq4802.
568
569 config RTC_DRV_V3020
570         tristate "EM Microelectronic V3020"
571         help
572           If you say yes here you will get support for the
573           EM Microelectronic v3020 RTC chip.
574
575           This driver can also be built as a module. If so, the module
576           will be called rtc-v3020.
577
578 config RTC_DRV_WM831X
579         tristate "Wolfson Microelectronics WM831x RTC"
580         depends on MFD_WM831X
581         help
582           If you say yes here you will get support for the RTC subsystem
583           of the Wolfson Microelectronics WM831X series PMICs.
584
585           This driver can also be built as a module. If so, the module
586           will be called "rtc-wm831x".
587
588 config RTC_DRV_WM8350
589         tristate "Wolfson Microelectronics WM8350 RTC"
590         depends on MFD_WM8350
591         help
592           If you say yes here you will get support for the RTC subsystem
593           of the Wolfson Microelectronics WM8350.
594
595           This driver can also be built as a module. If so, the module
596           will be called "rtc-wm8350".
597
598 config RTC_DRV_PCF50633
599         depends on MFD_PCF50633
600         tristate "NXP PCF50633 RTC"
601         help
602           If you say yes here you get support for the RTC subsystem of the
603           NXP PCF50633 used in embedded systems.
604
605 config RTC_DRV_AB3100
606         tristate "ST-Ericsson AB3100 RTC"
607         depends on AB3100_CORE
608         default y if AB3100_CORE
609         help
610           Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC
611           support. This chip contains a battery- and capacitor-backed RTC.
612
613
614 comment "on-CPU RTC drivers"
615
616 config RTC_DRV_OMAP
617         tristate "TI OMAP1"
618         depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730
619         help
620           Say "yes" here to support the real time clock on TI OMAP1 chips.
621           This driver can also be built as a module called rtc-omap.
622
623 config RTC_DRV_S3C
624         tristate "Samsung S3C series SoC RTC"
625         depends on ARCH_S3C2410
626         help
627           RTC (Realtime Clock) driver for the clock inbuilt into the
628           Samsung S3C24XX series of SoCs. This can provide periodic
629           interrupt rates from 1Hz to 64Hz for user programs, and
630           wakeup from Alarm.
631
632           The driver currently supports the common features on all the
633           S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
634           and S3C2442.
635
636           This driver can also be build as a module. If so, the module
637           will be called rtc-s3c.
638
639 config RTC_DRV_EP93XX
640         tristate "Cirrus Logic EP93XX"
641         depends on ARCH_EP93XX
642         help
643           If you say yes here you get support for the
644           RTC embedded in the Cirrus Logic EP93XX processors.
645
646           This driver can also be built as a module. If so, the module
647           will be called rtc-ep93xx.
648
649 config RTC_DRV_SA1100
650         tristate "SA11x0/PXA2xx"
651         depends on ARCH_SA1100 || ARCH_PXA
652         help
653           If you say Y here you will get access to the real time clock
654           built into your SA11x0 or PXA2xx CPU.
655
656           To compile this driver as a module, choose M here: the
657           module will be called rtc-sa1100.
658
659 config RTC_DRV_SH
660         tristate "SuperH On-Chip RTC"
661         depends on RTC_CLASS && SUPERH && HAVE_CLK
662         help
663           Say Y here to enable support for the on-chip RTC found in
664           most SuperH processors.
665
666           To compile this driver as a module, choose M here: the
667           module will be called rtc-sh.
668
669 config RTC_DRV_VR41XX
670         tristate "NEC VR41XX"
671         depends on CPU_VR41XX
672         help
673           If you say Y here you will get access to the real time clock
674           built into your NEC VR41XX CPU.
675
676           To compile this driver as a module, choose M here: the
677           module will be called rtc-vr41xx.
678
679 config RTC_DRV_PL030
680         tristate "ARM AMBA PL030 RTC"
681         depends on ARM_AMBA
682         help
683           If you say Y here you will get access to ARM AMBA
684           PrimeCell PL030 RTC found on certain ARM SOCs.
685
686           To compile this driver as a module, choose M here: the
687           module will be called rtc-pl030.
688
689 config RTC_DRV_PL031
690         tristate "ARM AMBA PL031 RTC"
691         depends on ARM_AMBA
692         help
693           If you say Y here you will get access to ARM AMBA
694           PrimeCell PL031 RTC found on certain ARM SOCs.
695
696           To compile this driver as a module, choose M here: the
697           module will be called rtc-pl031.
698
699 config RTC_DRV_AT32AP700X
700         tristate "AT32AP700X series RTC"
701         depends on PLATFORM_AT32AP
702         help
703           Driver for the internal RTC (Realtime Clock) on Atmel AVR32
704           AT32AP700x family processors.
705
706 config RTC_DRV_AT91RM9200
707         tristate "AT91RM9200 or AT91SAM9RL"
708         depends on ARCH_AT91RM9200 || ARCH_AT91SAM9RL
709         help
710           Driver for the internal RTC (Realtime Clock) module found on
711           Atmel AT91RM9200's and AT91SAM9RL chips. On SAM9RL chips
712           this is powered by the backup power supply.
713
714 config RTC_DRV_AT91SAM9
715         tristate "AT91SAM9x/AT91CAP9"
716         depends on ARCH_AT91 && !(ARCH_AT91RM9200 || ARCH_AT91X40)
717         help
718           RTC driver for the Atmel AT91SAM9x and AT91CAP9 internal RTT
719           (Real Time Timer). These timers are powered by the backup power
720           supply (such as a small coin cell battery), but do not need to
721           be used as RTCs.
722
723           (On AT91SAM9rl chips you probably want to use the dedicated RTC
724           module and leave the RTT available for other uses.)
725
726 config RTC_DRV_AT91SAM9_RTT
727         int
728         range 0 1
729         default 0
730         prompt "RTT module Number" if ARCH_AT91SAM9263
731         depends on RTC_DRV_AT91SAM9
732         help
733           More than one RTT module is available. You can choose which
734           one will be used as an RTC. The default of zero is normally
735           OK to use, though some systems use that for non-RTC purposes.
736
737 config RTC_DRV_AT91SAM9_GPBR
738         int
739         range 0 3 if !ARCH_AT91SAM9263
740         range 0 15 if ARCH_AT91SAM9263
741         default 0
742         prompt "Backup Register Number"
743         depends on RTC_DRV_AT91SAM9
744         help
745           The RTC driver needs to use one of the General Purpose Backup
746           Registers (GPBRs) as well as the RTT. You can choose which one
747           will be used. The default of zero is normally OK to use, but
748           on some systems other software needs to use that register.
749
750 config RTC_DRV_AU1XXX
751         tristate "Au1xxx Counter0 RTC support"
752         depends on SOC_AU1X00
753         help
754           This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
755           counter) to be used as a RTC.
756
757           This driver can also be built as a module. If so, the module
758           will be called rtc-au1xxx.
759
760 config RTC_DRV_BFIN
761         tristate "Blackfin On-Chip RTC"
762         depends on BLACKFIN && !BF561
763         help
764           If you say yes here you will get support for the
765           Blackfin On-Chip Real Time Clock.
766
767           This driver can also be built as a module. If so, the module
768           will be called rtc-bfin.
769
770 config RTC_DRV_RS5C313
771         tristate "Ricoh RS5C313"
772         depends on SH_LANDISK
773         help
774           If you say yes here you get support for the Ricoh RS5C313 RTC chips.
775
776 config RTC_DRV_GENERIC
777         tristate "Generic RTC support"
778         # Please consider writing a new RTC driver instead of using the generic
779         # RTC abstraction
780         depends on PARISC || M68K || PPC || SUPERH32
781         help
782           Say Y or M here to enable RTC support on systems using the generic
783           RTC abstraction. If you do not know what you are doing, you should
784           just say Y.
785
786 config RTC_DRV_PXA
787        tristate "PXA27x/PXA3xx"
788        depends on ARCH_PXA
789        help
790          If you say Y here you will get access to the real time clock
791          built into your PXA27x or PXA3xx CPU.
792
793          This RTC driver uses PXA RTC registers available since pxa27x
794          series (RDxR, RYxR) instead of legacy RCNR, RTAR.
795
796
797 config RTC_DRV_SUN4V
798         bool "SUN4V Hypervisor RTC"
799         depends on SPARC64
800         help
801           If you say Y here you will get support for the Hypervisor
802           based RTC on SUN4V systems.
803
804 config RTC_DRV_STARFIRE
805         bool "Starfire RTC"
806         depends on SPARC64
807         help
808           If you say Y here you will get support for the RTC found on
809           Starfire systems.
810
811 config RTC_DRV_TX4939
812         tristate "TX4939 SoC"
813         depends on SOC_TX4939
814         help
815           Driver for the internal RTC (Realtime Clock) module found on
816           Toshiba TX4939 SoC.
817
818 config RTC_DRV_MV
819         tristate "Marvell SoC RTC"
820         depends on ARCH_KIRKWOOD
821         help
822           If you say yes here you will get support for the in-chip RTC
823           that can be found in some of Marvell's SoC devices, such as
824           the Kirkwood 88F6281 and 88F6192.
825
826           This driver can also be built as a module. If so, the module
827           will be called rtc-mv.
828
829 config RTC_DRV_PS3
830         tristate "PS3 RTC"
831         depends on PPC_PS3
832         help
833           If you say yes here you will get support for the RTC on PS3.
834
835           This driver can also be built as a module. If so, the module
836           will be called rtc-ps3.
837
838 config RTC_DRV_COH901331
839         tristate "ST-Ericsson COH 901 331 RTC"
840         depends on ARCH_U300
841         help
842           If you say Y here you will get access to ST-Ericsson
843           COH 901 331 RTC clock found in some ST-Ericsson Mobile
844           Platforms.
845
846           This driver can also be built as a module. If so, the module
847           will be called "rtc-coh901331".
848
849
850 config RTC_DRV_STMP
851         tristate "Freescale STMP3xxx RTC"
852         depends on ARCH_STMP3XXX
853         help
854           If you say yes here you will get support for the onboard
855           STMP3xxx RTC.
856
857           This driver can also be built as a module. If so, the module
858           will be called rtc-stmp3xxx.
859
860 config RTC_DRV_PCAP
861         tristate "PCAP RTC"
862         depends on EZX_PCAP
863         help
864           If you say Y here you will get support for the RTC found on
865           the PCAP2 ASIC used on some Motorola phones.
866
867 endif # RTC_CLASS