xref: /openbmc/linux/drivers/rtc/Kconfig (revision ae64d16956718bfd11955217f603b27a781c0cb1)
17be2c7c9SDavid Brownell#
2c58411e9SAlessandro Zummo# RTC class/drivers configuration
3c58411e9SAlessandro Zummo#
4c58411e9SAlessandro Zummo
5c58411e9SAlessandro Zummoconfig RTC_LIB
6c58411e9SAlessandro Zummo	tristate
70c86edc0SAlessandro Zummo
8bb35fb20SJan Engelhardtmenuconfig RTC_CLASS
9bb35fb20SJan Engelhardt	tristate "Real Time Clock"
100c86edc0SAlessandro Zummo	default n
11bb35fb20SJan Engelhardt	depends on !S390
120c86edc0SAlessandro Zummo	select RTC_LIB
130c86edc0SAlessandro Zummo	help
140c86edc0SAlessandro Zummo	  Generic RTC class support. If you say yes here, you will
150c86edc0SAlessandro Zummo 	  be allowed to plug one or more RTCs to your system. You will
1627ae4104SAdrian Bunk	  probably want to enable one or more of the interfaces below.
170c86edc0SAlessandro Zummo
180c86edc0SAlessandro Zummo	  This driver can also be built as a module. If so, the module
1944e0451dSAlessandro Zummo	  will be called rtc-core.
200c86edc0SAlessandro Zummo
21bb35fb20SJan Engelhardtif RTC_CLASS
22bb35fb20SJan Engelhardt
230c86edc0SAlessandro Zummoconfig RTC_HCTOSYS
247ca1d488SDavid Brownell	bool "Set system time from RTC on startup and resume"
250c86edc0SAlessandro Zummo	depends on RTC_CLASS = y
260c86edc0SAlessandro Zummo	default y
270c86edc0SAlessandro Zummo	help
287ca1d488SDavid Brownell	  If you say yes here, the system time (wall clock) will be set using
297ca1d488SDavid Brownell	  the value read from a specified RTC device. This is useful to avoid
307ca1d488SDavid Brownell	  unnecessary fsck runs at boot time, and to network better.
310c86edc0SAlessandro Zummo
320c86edc0SAlessandro Zummoconfig RTC_HCTOSYS_DEVICE
337ca1d488SDavid Brownell	string "RTC used to set the system time"
340c86edc0SAlessandro Zummo	depends on RTC_HCTOSYS = y
350c86edc0SAlessandro Zummo	default "rtc0"
360c86edc0SAlessandro Zummo	help
377ca1d488SDavid Brownell	  The RTC device that will be used to (re)initialize the system
387ca1d488SDavid Brownell	  clock, usually rtc0. Initialization is done when the system
39779d2089SDavid Brownell	  starts up, and when it resumes from a low power state. This
40779d2089SDavid Brownell	  device should record time in UTC, since the kernel won't do
41779d2089SDavid Brownell	  timezone correction.
427ca1d488SDavid Brownell
4355ff1abaSDavid Brownell	  The driver for this RTC device must be loaded before late_initcall
4455ff1abaSDavid Brownell	  functions run, so it must usually be statically linked.
4555ff1abaSDavid Brownell
467ca1d488SDavid Brownell	  This clock should be battery-backed, so that it reads the correct
477ca1d488SDavid Brownell	  time when the system boots from a power-off state. Otherwise, your
487ca1d488SDavid Brownell	  system will need an external clock source (like an NTP server).
497ca1d488SDavid Brownell
507ca1d488SDavid Brownell	  If the clock you specify here is not battery backed, it may still
517ca1d488SDavid Brownell	  be useful to reinitialize system time when resuming from system
527ca1d488SDavid Brownell	  sleep states. Do not specify an RTC here unless it stays powered
537ca1d488SDavid Brownell	  during all this system's supported sleep states.
540c86edc0SAlessandro Zummo
559e86ecb6SDavid Brownellconfig RTC_DEBUG
569e86ecb6SDavid Brownell	bool "RTC debug support"
579e86ecb6SDavid Brownell	depends on RTC_CLASS = y
589e86ecb6SDavid Brownell	help
599e86ecb6SDavid Brownell	  Say yes here to enable debugging support in the RTC framework
609e86ecb6SDavid Brownell	  and individual RTC drivers.
619e86ecb6SDavid Brownell
620c86edc0SAlessandro Zummocomment "RTC interfaces"
630c86edc0SAlessandro Zummo
64c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS
65e40659c5SDavid Brownell	boolean "/sys/class/rtc/rtcN (sysfs)"
66bb35fb20SJan Engelhardt	depends on SYSFS
67c5c3e192SAlessandro Zummo	default RTC_CLASS
68c5c3e192SAlessandro Zummo	help
699e86ecb6SDavid Brownell	  Say yes here if you want to use your RTCs using sysfs interfaces,
709e86ecb6SDavid Brownell	  /sys/class/rtc/rtc0 through /sys/.../rtcN.
71c5c3e192SAlessandro Zummo
72*ae64d169SAlessandro Zummo	  If unsure, say Y.
73c5c3e192SAlessandro Zummo
74728a2947SAlessandro Zummoconfig RTC_INTF_PROC
75e40659c5SDavid Brownell	boolean "/proc/driver/rtc (procfs for rtc0)"
76bb35fb20SJan Engelhardt	depends on PROC_FS
77728a2947SAlessandro Zummo	default RTC_CLASS
78728a2947SAlessandro Zummo	help
799e86ecb6SDavid Brownell	  Say yes here if you want to use your first RTC through the proc
809e86ecb6SDavid Brownell	  interface, /proc/driver/rtc. Other RTCs will not be available
819e86ecb6SDavid Brownell	  through that API.
82728a2947SAlessandro Zummo
83*ae64d169SAlessandro Zummo	  If unsure, say Y.
84728a2947SAlessandro Zummo
85e824290eSAlessandro Zummoconfig RTC_INTF_DEV
86e40659c5SDavid Brownell	boolean "/dev/rtcN (character devices)"
87e824290eSAlessandro Zummo	default RTC_CLASS
88e824290eSAlessandro Zummo	help
899e86ecb6SDavid Brownell	  Say yes here if you want to use your RTCs using the /dev
909e86ecb6SDavid Brownell	  interfaces, which "udev" sets up as /dev/rtc0 through
91*ae64d169SAlessandro Zummo	  /dev/rtcN.
92e824290eSAlessandro Zummo
93*ae64d169SAlessandro Zummo	  You may want to set up a symbolic link so one of these
94*ae64d169SAlessandro Zummo	  can be accessed as /dev/rtc, which is a name
95*ae64d169SAlessandro Zummo	  expected by "hwclock" and some other programs. Recent
96*ae64d169SAlessandro Zummo	  versions of "udev" are known to set up the symlink for you.
97*ae64d169SAlessandro Zummo
98*ae64d169SAlessandro Zummo	  If unsure, say Y.
99e824290eSAlessandro Zummo
100655066c3SAtsushi Nemotoconfig RTC_INTF_DEV_UIE_EMUL
101655066c3SAtsushi Nemoto	bool "RTC UIE emulation on dev interface"
102655066c3SAtsushi Nemoto	depends on RTC_INTF_DEV
103655066c3SAtsushi Nemoto	help
1043dde6ad8SDavid Sterba	  Provides an emulation for RTC_UIE if the underlying rtc chip
1059e86ecb6SDavid Brownell	  driver does not expose RTC_UIE ioctls. Those requests generate
1069e86ecb6SDavid Brownell	  once-per-second update interrupts, used for synchronization.
107099e6576SAlessandro Zummo
108099e6576SAlessandro Zummo	  The emulation code will read the time from the hardware
109099e6576SAlessandro Zummo	  clock several times per second, please enable this option
110099e6576SAlessandro Zummo	  only if you know that you really need it.
111655066c3SAtsushi Nemoto
11209a21e56SAlessandro Zummoconfig RTC_DRV_TEST
11309a21e56SAlessandro Zummo	tristate "Test driver/device"
11409a21e56SAlessandro Zummo	help
11509a21e56SAlessandro Zummo	  If you say yes here you get support for the
11609a21e56SAlessandro Zummo	  RTC test driver. It's a software RTC which can be
11709a21e56SAlessandro Zummo	  used to test the RTC subsystem APIs. It gets
11809a21e56SAlessandro Zummo	  the time from the system clock.
11909a21e56SAlessandro Zummo	  You want this driver only if you are doing development
12009a21e56SAlessandro Zummo	  on the RTC subsystem. Please read the source code
12109a21e56SAlessandro Zummo	  for further details.
12209a21e56SAlessandro Zummo
12309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
12409a21e56SAlessandro Zummo	  will be called rtc-test.
12509a21e56SAlessandro Zummo
12609a21e56SAlessandro Zummocomment "I2C RTC drivers"
127bb35fb20SJan Engelhardt	depends on I2C
128bb35fb20SJan Engelhardt
129bb35fb20SJan Engelhardtif I2C
13009a21e56SAlessandro Zummo
13109a21e56SAlessandro Zummoconfig RTC_DRV_DS1307
13209a21e56SAlessandro Zummo	tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00"
13309a21e56SAlessandro Zummo	help
13409a21e56SAlessandro Zummo	  If you say yes here you get support for various compatible RTC
13509a21e56SAlessandro Zummo	  chips (often with battery backup) connected with I2C. This driver
13609a21e56SAlessandro Zummo	  should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
13709a21e56SAlessandro Zummo	  and probably other chips. In some cases the RTC must already
13809a21e56SAlessandro Zummo	  have been initialized (by manufacturing or a bootloader).
13909a21e56SAlessandro Zummo
14009a21e56SAlessandro Zummo	  The first seven registers on these chips hold an RTC, and other
14109a21e56SAlessandro Zummo	  registers may add features such as NVRAM, a trickle charger for
142682d73f6SDavid Brownell	  the RTC/NVRAM backup power, and alarms. NVRAM is visible in
143682d73f6SDavid Brownell	  sysfs, but other chip features may not be available.
14409a21e56SAlessandro Zummo
14509a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
14609a21e56SAlessandro Zummo	  will be called rtc-ds1307.
14709a21e56SAlessandro Zummo
148bf4994d7SScott Woodconfig RTC_DRV_DS1374
14909b6bdb3SAlessandro Zummo	tristate "Dallas/Maxim DS1374"
150bf4994d7SScott Wood	depends on RTC_CLASS && I2C
151bf4994d7SScott Wood	help
152bf4994d7SScott Wood	  If you say yes here you get support for Dallas Semiconductor
153bf4994d7SScott Wood	  DS1374 real-time clock chips. If an interrupt is associated
154bf4994d7SScott Wood	  with the device, the alarm functionality is supported.
155bf4994d7SScott Wood
156bf4994d7SScott Wood	  This driver can also be built as a module. If so, the module
157bf4994d7SScott Wood	  will be called rtc-ds1374.
158bf4994d7SScott Wood
15909a21e56SAlessandro Zummoconfig RTC_DRV_DS1672
16009a21e56SAlessandro Zummo	tristate "Dallas/Maxim DS1672"
16109a21e56SAlessandro Zummo	help
16209a21e56SAlessandro Zummo	  If you say yes here you get support for the
16309a21e56SAlessandro Zummo	  Dallas/Maxim DS1672 timekeeping chip.
16409a21e56SAlessandro Zummo
16509a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
16609a21e56SAlessandro Zummo	  will be called rtc-ds1672.
16709a21e56SAlessandro Zummo
16809a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900
16909b6bdb3SAlessandro Zummo	tristate "Maxim MAX6900"
17009a21e56SAlessandro Zummo	help
17109a21e56SAlessandro Zummo	  If you say yes here you will get support for the
17209a21e56SAlessandro Zummo	  Maxim MAX6900 I2C RTC chip.
17309a21e56SAlessandro Zummo
17409a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
17509a21e56SAlessandro Zummo	  will be called rtc-max6900.
17609a21e56SAlessandro Zummo
17709a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372
1785d4529beSPaul Mundt	tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
17909a21e56SAlessandro Zummo	help
18009a21e56SAlessandro Zummo	  If you say yes here you get support for the
1815d4529beSPaul Mundt	  Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
18209a21e56SAlessandro Zummo
18309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
18409a21e56SAlessandro Zummo	  will be called rtc-rs5c372.
18509a21e56SAlessandro Zummo
18609a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208
18709b6bdb3SAlessandro Zummo	tristate "Intersil ISL1208"
18809a21e56SAlessandro Zummo	help
18909a21e56SAlessandro Zummo	  If you say yes here you get support for the
19009b6bdb3SAlessandro Zummo	  Intersil ISL1208 RTC chip.
19109a21e56SAlessandro Zummo
19209a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
19309a21e56SAlessandro Zummo	  will be called rtc-isl1208.
19409a21e56SAlessandro Zummo
19509a21e56SAlessandro Zummoconfig RTC_DRV_X1205
19609a21e56SAlessandro Zummo	tristate "Xicor/Intersil X1205"
19709a21e56SAlessandro Zummo	help
19809a21e56SAlessandro Zummo	  If you say yes here you get support for the
19909a21e56SAlessandro Zummo	  Xicor/Intersil X1205 RTC chip.
20009a21e56SAlessandro Zummo
20109a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
20209a21e56SAlessandro Zummo	  will be called rtc-x1205.
20309a21e56SAlessandro Zummo
20409a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563
20509a21e56SAlessandro Zummo	tristate "Philips PCF8563/Epson RTC8564"
20609a21e56SAlessandro Zummo	help
20709a21e56SAlessandro Zummo	  If you say yes here you get support for the
20809a21e56SAlessandro Zummo	  Philips PCF8563 RTC chip. The Epson RTC8564
20909a21e56SAlessandro Zummo	  should work as well.
21009a21e56SAlessandro Zummo
21109a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
21209a21e56SAlessandro Zummo	  will be called rtc-pcf8563.
21309a21e56SAlessandro Zummo
21409a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583
21509a21e56SAlessandro Zummo	tristate "Philips PCF8583"
21609a21e56SAlessandro Zummo	help
21709a21e56SAlessandro Zummo	  If you say yes here you get support for the Philips PCF8583
21809a21e56SAlessandro Zummo	  RTC chip found on Acorn RiscPCs. This driver supports the
21909a21e56SAlessandro Zummo	  platform specific method of retrieving the current year from
22009a21e56SAlessandro Zummo	  the RTC's SRAM. It will work on other platforms with the same
22109a21e56SAlessandro Zummo	  chip, but the year will probably have to be tweaked.
22209a21e56SAlessandro Zummo
22309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
22409a21e56SAlessandro Zummo	  will be called rtc-pcf8583.
22509a21e56SAlessandro Zummo
226caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80
227d3a126fcSSteven A. Falco	tristate "ST M41T65/M41T80/81/82/83/84/85/87"
228caaff562SAtsushi Nemoto	help
229d3a126fcSSteven A. Falco	  If you say Y here you will get support for the ST M41T60
230d3a126fcSSteven A. Falco	  and M41T80 RTC chips series. Currently, the following chips are
231d3a126fcSSteven A. Falco	  supported: M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
232d3a126fcSSteven A. Falco	  M41ST85, and M41ST87.
233caaff562SAtsushi Nemoto
234caaff562SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
235caaff562SAtsushi Nemoto	  will be called rtc-m41t80.
236caaff562SAtsushi Nemoto
237617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT
238d3a126fcSSteven A. Falco	bool "ST M41T65/M41T80 series RTC watchdog timer"
239617780d2SAtsushi Nemoto	depends on RTC_DRV_M41T80
240617780d2SAtsushi Nemoto	help
241617780d2SAtsushi Nemoto	  If you say Y here you will get support for the
242d3a126fcSSteven A. Falco	  watchdog timer in the ST M41T60 and M41T80 RTC chips series.
243617780d2SAtsushi Nemoto
2440c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330
2450c4a59feSTony Lindgren	boolean "TI TWL92330/Menelaus"
246bb35fb20SJan Engelhardt	depends on MENELAUS
2470c4a59feSTony Lindgren	help
2480c4a59feSTony Lindgren	  If you say yes here you get support for the RTC on the
24901dd2fbfSMatt LaPlante	  TWL92330 "Menelaus" power management chip, used with OMAP2
2500c4a59feSTony Lindgren	  platforms. The support is integrated with the rest of
2510c4a59feSTony Lindgren	  the Menelaus driver; it's not separate module.
2520c4a59feSTony Lindgren
253f96411abSDavid Brownellconfig RTC_DRV_TWL4030
254f96411abSDavid Brownell	tristate "TI TWL4030/TWL5030/TPS659x0"
255f96411abSDavid Brownell	depends on RTC_CLASS && TWL4030_CORE
256f96411abSDavid Brownell	help
257f96411abSDavid Brownell	  If you say yes here you get support for the RTC on the
258f96411abSDavid Brownell	  TWL4030 family chips, used mostly with OMAP3 platforms.
259f96411abSDavid Brownell
260f96411abSDavid Brownell	  This driver can also be built as a module. If so, the module
261f96411abSDavid Brownell	  will be called rtc-twl4030.
262f96411abSDavid Brownell
263c46288b0SByron Bradleyconfig RTC_DRV_S35390A
264c46288b0SByron Bradley	tristate "Seiko Instruments S-35390A"
265d479540dSRandy Dunlap	select BITREVERSE
266c46288b0SByron Bradley	help
267c46288b0SByron Bradley	  If you say yes here you will get support for the Seiko
268c46288b0SByron Bradley	  Instruments S-35390A.
269c46288b0SByron Bradley
270c46288b0SByron Bradley	  This driver can also be built as a module. If so the module
271c46288b0SByron Bradley	  will be called rtc-s35390a.
272c46288b0SByron Bradley
273c6d8f400SSergey Lapinconfig RTC_DRV_FM3130
274c6d8f400SSergey Lapin	tristate "Ramtron FM3130"
275c6d8f400SSergey Lapin	help
276c6d8f400SSergey Lapin	  If you say Y here you will get support for the
277c6d8f400SSergey Lapin	  Ramtron FM3130 RTC chips.
278c6d8f400SSergey Lapin	  Ramtron FM3130 is a chip with two separate devices inside,
279c6d8f400SSergey Lapin	  RTC clock and FRAM. This driver provides only RTC functionality.
280c6d8f400SSergey Lapin
281c6d8f400SSergey Lapin	  This driver can also be built as a module. If so the module
282c6d8f400SSergey Lapin	  will be called rtc-fm3130.
283c6d8f400SSergey Lapin
284a7fa9851SMartyn Welchconfig RTC_DRV_RX8581
285a7fa9851SMartyn Welch	tristate "Epson RX-8581"
286a7fa9851SMartyn Welch	help
287a7fa9851SMartyn Welch	  If you say yes here you will get support for the Epson RX-8581.
288a7fa9851SMartyn Welch
289a7fa9851SMartyn Welch	  This driver can also be built as a module. If so the module
290a7fa9851SMartyn Welch	  will be called rtc-rx8581.
291a7fa9851SMartyn Welch
292bb35fb20SJan Engelhardtendif # I2C
293bb35fb20SJan Engelhardt
29409a21e56SAlessandro Zummocomment "SPI RTC drivers"
295bb35fb20SJan Engelhardt
296bb35fb20SJan Engelhardtif SPI_MASTER
29709a21e56SAlessandro Zummo
2988fc2c767SKim B. Heinoconfig RTC_DRV_M41T94
2998fc2c767SKim B. Heino	tristate "ST M41T94"
3008fc2c767SKim B. Heino	help
3018fc2c767SKim B. Heino	  If you say yes here you will get support for the
3028fc2c767SKim B. Heino	  ST M41T94 SPI RTC chip.
3038fc2c767SKim B. Heino
3048fc2c767SKim B. Heino	  This driver can also be built as a module. If so, the module
3058fc2c767SKim B. Heino	  will be called rtc-m41t94.
3068fc2c767SKim B. Heino
30753e84b67SDavid Brownellconfig RTC_DRV_DS1305
30853e84b67SDavid Brownell	tristate "Dallas/Maxim DS1305/DS1306"
30953e84b67SDavid Brownell	help
31053e84b67SDavid Brownell	  Select this driver to get support for the Dallas/Maxim DS1305
31153e84b67SDavid Brownell	  and DS1306 real time clock chips. These support a trickle
31253e84b67SDavid Brownell	  charger, alarms, and NVRAM in addition to the clock.
31353e84b67SDavid Brownell
31453e84b67SDavid Brownell	  This driver can also be built as a module. If so, the module
31553e84b67SDavid Brownell	  will be called rtc-ds1305.
31653e84b67SDavid Brownell
31706de1808SMark Jacksonconfig RTC_DRV_DS1390
31806de1808SMark Jackson	tristate "Dallas/Maxim DS1390/93/94"
31906de1808SMark Jackson	help
3207b9b2ef1SAlessandro Zummo	  If you say yes here you get support for the
3217b9b2ef1SAlessandro Zummo	  Dallas/Maxim DS1390/93/94 chips.
32206de1808SMark Jackson
32306de1808SMark Jackson	  This driver only supports the RTC feature, and not other chip
32406de1808SMark Jackson	  features such as alarms and trickle charging.
32506de1808SMark Jackson
32606de1808SMark Jackson	  This driver can also be built as a module. If so, the module
32706de1808SMark Jackson	  will be called rtc-ds1390.
32806de1808SMark Jackson
32909b6bdb3SAlessandro Zummoconfig RTC_DRV_MAX6902
33009b6bdb3SAlessandro Zummo	tristate "Maxim MAX6902"
33109b6bdb3SAlessandro Zummo	help
33209b6bdb3SAlessandro Zummo	  If you say yes here you will get support for the
33309b6bdb3SAlessandro Zummo	  Maxim MAX6902 SPI RTC chip.
33409b6bdb3SAlessandro Zummo
33509b6bdb3SAlessandro Zummo	  This driver can also be built as a module. If so, the module
33609b6bdb3SAlessandro Zummo	  will be called rtc-max6902.
33709b6bdb3SAlessandro Zummo
3382805b969SMagnus Dammconfig RTC_DRV_R9701
3392805b969SMagnus Damm	tristate "Epson RTC-9701JE"
3402805b969SMagnus Damm	help
3412805b969SMagnus Damm	  If you say yes here you will get support for the
3422805b969SMagnus Damm	  Epson RTC-9701JE SPI RTC chip.
3432805b969SMagnus Damm
3442805b969SMagnus Damm	  This driver can also be built as a module. If so, the module
3452805b969SMagnus Damm	  will be called rtc-r9701.
3462805b969SMagnus Damm
34709a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348
34809a21e56SAlessandro Zummo	tristate "Ricoh RS5C348A/B"
34909a21e56SAlessandro Zummo	help
35009a21e56SAlessandro Zummo	  If you say yes here you get support for the
35109a21e56SAlessandro Zummo	  Ricoh RS5C348A and RS5C348B RTC chips.
35209a21e56SAlessandro Zummo
35309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
35409a21e56SAlessandro Zummo	  will be called rtc-rs5c348.
35509a21e56SAlessandro Zummo
3562f9b75e0SDennis Aberillaconfig RTC_DRV_DS3234
3572f9b75e0SDennis Aberilla	tristate "Maxim/Dallas DS3234"
3582f9b75e0SDennis Aberilla	help
3592f9b75e0SDennis Aberilla	  If you say yes here you get support for the
3602f9b75e0SDennis Aberilla	  Maxim/Dallas DS3234 SPI RTC chip.
3612f9b75e0SDennis Aberilla
3622f9b75e0SDennis Aberilla	  This driver can also be built as a module. If so, the module
3632f9b75e0SDennis Aberilla	  will be called rtc-ds3234.
3642f9b75e0SDennis Aberilla
365bb35fb20SJan Engelhardtendif # SPI_MASTER
366bb35fb20SJan Engelhardt
36709a21e56SAlessandro Zummocomment "Platform RTC drivers"
3680c86edc0SAlessandro Zummo
3697be2c7c9SDavid Brownell# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
3707be2c7c9SDavid Brownell# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
3717be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device.
3727be2c7c9SDavid Brownell
3737be2c7c9SDavid Brownellconfig RTC_DRV_CMOS
37409a21e56SAlessandro Zummo	tristate "PC-style 'CMOS'"
3755ec87708SAndrew Morton	depends on X86 || ALPHA || ARM || M32R || ATARI || PPC || MIPS || SPARC64
376c7500900SDavid Brownell	default y if X86
3777be2c7c9SDavid Brownell	help
3787be2c7c9SDavid Brownell	  Say "yes" here to get direct support for the real time clock
3797be2c7c9SDavid Brownell	  found in every PC or ACPI-based system, and some other boards.
3807be2c7c9SDavid Brownell	  Specifically the original MC146818, compatibles like those in
3817be2c7c9SDavid Brownell	  PC south bridges, the DS12887 or M48T86, some multifunction
3827be2c7c9SDavid Brownell	  or LPC bus chips, and so on.
3837be2c7c9SDavid Brownell
3847be2c7c9SDavid Brownell	  Your system will need to define the platform device used by
3857be2c7c9SDavid Brownell	  this driver, otherwise it won't be accessible. This means
3867be2c7c9SDavid Brownell	  you can safely enable this driver if you don't know whether
3877be2c7c9SDavid Brownell	  or not your board has this kind of hardware.
3887be2c7c9SDavid Brownell
3897be2c7c9SDavid Brownell	  This driver can also be built as a module. If so, the module
3907be2c7c9SDavid Brownell	  will be called rtc-cmos.
3917be2c7c9SDavid Brownell
392537739deSThomas Bogendoerferconfig RTC_DRV_DS1216
393537739deSThomas Bogendoerfer	tristate "Dallas DS1216"
394bb35fb20SJan Engelhardt	depends on SNI_RM
395537739deSThomas Bogendoerfer	help
396537739deSThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1216 RTC chips.
397537739deSThomas Bogendoerfer
3985f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286
3995f119f29SThomas Bogendoerfer	tristate "Dallas DS1286"
4005f119f29SThomas Bogendoerfer	help
4015f119f29SThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1286 RTC chips.
4025f119f29SThomas Bogendoerfer
403739d340dSPaul Mundtconfig RTC_DRV_DS1302
404739d340dSPaul Mundt	tristate "Dallas DS1302"
405739d340dSPaul Mundt	depends on SH_SECUREEDGE5410
406739d340dSPaul Mundt	help
407739d340dSPaul Mundt	  If you say yes here you get support for the Dallas DS1302 RTC chips.
408739d340dSPaul Mundt
4098f26795aSAndrew Sharpconfig RTC_DRV_DS1511
4108f26795aSAndrew Sharp	tristate "Dallas DS1511"
4118f26795aSAndrew Sharp	depends on RTC_CLASS
4128f26795aSAndrew Sharp	help
4138f26795aSAndrew Sharp	  If you say yes here you get support for the
4148f26795aSAndrew Sharp	  Dallas DS1511 timekeeping/watchdog chip.
4158f26795aSAndrew Sharp
4168f26795aSAndrew Sharp	  This driver can also be built as a module. If so, the module
4178f26795aSAndrew Sharp	  will be called rtc-ds1511.
4188f26795aSAndrew Sharp
4199bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553
42009b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1553"
4219bf5b4f5SAtsushi Nemoto	help
4229bf5b4f5SAtsushi Nemoto	  If you say yes here you get support for the
42309b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1553 timekeeping chip.
4249bf5b4f5SAtsushi Nemoto
4259bf5b4f5SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
4269bf5b4f5SAtsushi Nemoto	  will be called rtc-ds1553.
4279bf5b4f5SAtsushi Nemoto
42809b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742
42909b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1742/1743"
43009b6bdb3SAlessandro Zummo	help
43109b6bdb3SAlessandro Zummo	  If you say yes here you get support for the
43209b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1742/1743 timekeeping chip.
43309b6bdb3SAlessandro Zummo
43409b6bdb3SAlessandro Zummo	  This driver can also be built as a module. If so, the module
43509b6bdb3SAlessandro Zummo	  will be called rtc-ds1742.
43609b6bdb3SAlessandro Zummo
43702964115SThomas Hommelconfig RTC_DRV_STK17TA8
43802964115SThomas Hommel	tristate "Simtek STK17TA8"
43902964115SThomas Hommel	depends on RTC_CLASS
44002964115SThomas Hommel	help
44102964115SThomas Hommel	  If you say yes here you get support for the
44202964115SThomas Hommel	  Simtek STK17TA8 timekeeping chip.
44302964115SThomas Hommel
44402964115SThomas Hommel	  This driver can also be built as a module. If so, the module
44502964115SThomas Hommel	  will be called rtc-stk17ta8.
44602964115SThomas Hommel
44709a21e56SAlessandro Zummoconfig RTC_DRV_M48T86
44809a21e56SAlessandro Zummo	tristate "ST M48T86/Dallas DS12887"
44909a21e56SAlessandro Zummo	help
45009a21e56SAlessandro Zummo	  If you say Y here you will get support for the
45109a21e56SAlessandro Zummo	  ST M48T86 and Dallas DS12887 RTC chips.
45209a21e56SAlessandro Zummo
45309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
45409a21e56SAlessandro Zummo	  will be called rtc-m48t86.
45509a21e56SAlessandro Zummo
456d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35
457d1dbd82eSThomas Bogendoerfer	tristate "ST M48T35"
458d1dbd82eSThomas Bogendoerfer	help
459d1dbd82eSThomas Bogendoerfer	  If you say Y here you will get support for the
460d1dbd82eSThomas Bogendoerfer	  ST M48T35 RTC chip.
461d1dbd82eSThomas Bogendoerfer
462d1dbd82eSThomas Bogendoerfer	  This driver can also be built as a module, if so, the module
463d1dbd82eSThomas Bogendoerfer	  will be called "rtc-m48t35".
464d1dbd82eSThomas Bogendoerfer
4652e774c7cSMark Zhanconfig RTC_DRV_M48T59
46694fe7424SKrzysztof Helt	tristate "ST M48T59/M48T08/M48T02"
4672e774c7cSMark Zhan	help
4682e774c7cSMark Zhan	  If you say Y here you will get support for the
46994fe7424SKrzysztof Helt	  ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
47094fe7424SKrzysztof Helt
47194fe7424SKrzysztof Helt	  These chips are usually found in Sun SPARC and UltraSPARC
47294fe7424SKrzysztof Helt	  workstations.
4732e774c7cSMark Zhan
4742e774c7cSMark Zhan	  This driver can also be built as a module, if so, the module
4752e774c7cSMark Zhan	  will be called "rtc-m48t59".
4762e774c7cSMark Zhan
477cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802
478cca4c231SDavid S. Miller	tristate "TI BQ4802"
479cca4c231SDavid S. Miller	help
480cca4c231SDavid S. Miller	  If you say Y here you will get support for the TI
481cca4c231SDavid S. Miller	  BQ4802 RTC chip.
482cca4c231SDavid S. Miller
483cca4c231SDavid S. Miller	  This driver can also be built as a module. If so, the module
484cca4c231SDavid S. Miller	  will be called rtc-bq4802.
485cca4c231SDavid S. Miller
48609a21e56SAlessandro Zummoconfig RTC_DRV_V3020
48709a21e56SAlessandro Zummo	tristate "EM Microelectronic V3020"
48809a21e56SAlessandro Zummo	help
48909a21e56SAlessandro Zummo	  If you say yes here you will get support for the
49009a21e56SAlessandro Zummo	  EM Microelectronic v3020 RTC chip.
49109a21e56SAlessandro Zummo
49209a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
49309a21e56SAlessandro Zummo	  will be called rtc-v3020.
49409a21e56SAlessandro Zummo
495077eaf5bSMark Brownconfig RTC_DRV_WM8350
496077eaf5bSMark Brown	tristate "Wolfson Microelectronics WM8350 RTC"
497077eaf5bSMark Brown	depends on MFD_WM8350
498077eaf5bSMark Brown	help
499077eaf5bSMark Brown	  If you say yes here you will get support for the RTC subsystem
500077eaf5bSMark Brown	  of the Wolfson Microelectronics WM8350.
501077eaf5bSMark Brown
502077eaf5bSMark Brown	  This driver can also be built as a module. If so, the module
503077eaf5bSMark Brown	  will be called "rtc-wm8350".
504077eaf5bSMark Brown
50509a21e56SAlessandro Zummocomment "on-CPU RTC drivers"
50609a21e56SAlessandro Zummo
507db68b189SDavid Brownellconfig RTC_DRV_OMAP
508db68b189SDavid Brownell	tristate "TI OMAP1"
509bb35fb20SJan Engelhardt	depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730
510db68b189SDavid Brownell	help
511db68b189SDavid Brownell	  Say "yes" here to support the real time clock on TI OMAP1 chips.
512db68b189SDavid Brownell	  This driver can also be built as a module called rtc-omap.
513db68b189SDavid Brownell
5141add6781SBen Dooksconfig RTC_DRV_S3C
5151add6781SBen Dooks	tristate "Samsung S3C series SoC RTC"
516bb35fb20SJan Engelhardt	depends on ARCH_S3C2410
5171add6781SBen Dooks	help
5181add6781SBen Dooks	  RTC (Realtime Clock) driver for the clock inbuilt into the
5191add6781SBen Dooks	  Samsung S3C24XX series of SoCs. This can provide periodic
5201add6781SBen Dooks	  interrupt rates from 1Hz to 64Hz for user programs, and
5211add6781SBen Dooks	  wakeup from Alarm.
5221add6781SBen Dooks
5231add6781SBen Dooks	  The driver currently supports the common features on all the
5241add6781SBen Dooks	  S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
5251add6781SBen Dooks	  and S3C2442.
5261add6781SBen Dooks
5271add6781SBen Dooks	  This driver can also be build as a module. If so, the module
5281add6781SBen Dooks	  will be called rtc-s3c.
5291add6781SBen Dooks
530fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX
531fd507e2fSAlessandro Zummo	tristate "Cirrus Logic EP93XX"
532bb35fb20SJan Engelhardt	depends on ARCH_EP93XX
533fd507e2fSAlessandro Zummo	help
534fd507e2fSAlessandro Zummo	  If you say yes here you get support for the
535fd507e2fSAlessandro Zummo	  RTC embedded in the Cirrus Logic EP93XX processors.
536fd507e2fSAlessandro Zummo
537fd507e2fSAlessandro Zummo	  This driver can also be built as a module. If so, the module
538fd507e2fSAlessandro Zummo	  will be called rtc-ep93xx.
539fd507e2fSAlessandro Zummo
540e842f1c8SRichard Purdieconfig RTC_DRV_SA1100
541e842f1c8SRichard Purdie	tristate "SA11x0/PXA2xx"
542bb35fb20SJan Engelhardt	depends on ARCH_SA1100 || ARCH_PXA
543e842f1c8SRichard Purdie	help
544e842f1c8SRichard Purdie	  If you say Y here you will get access to the real time clock
545e842f1c8SRichard Purdie	  built into your SA11x0 or PXA2xx CPU.
546e842f1c8SRichard Purdie
547e842f1c8SRichard Purdie	  To compile this driver as a module, choose M here: the
548e842f1c8SRichard Purdie	  module will be called rtc-sa1100.
549fd507e2fSAlessandro Zummo
550317a6104SPaul Mundtconfig RTC_DRV_SH
551317a6104SPaul Mundt	tristate "SuperH On-Chip RTC"
552ff1b7506SPaul Mundt	depends on RTC_CLASS && SUPERH
553317a6104SPaul Mundt	help
554317a6104SPaul Mundt	  Say Y here to enable support for the on-chip RTC found in
555317a6104SPaul Mundt	  most SuperH processors.
556317a6104SPaul Mundt
557317a6104SPaul Mundt 	  To compile this driver as a module, choose M here: the
558317a6104SPaul Mundt	  module will be called rtc-sh.
559317a6104SPaul Mundt
5608417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX
5613e16f6afSAlessandro Zummo	tristate "NEC VR41XX"
562bb35fb20SJan Engelhardt	depends on CPU_VR41XX
5633e16f6afSAlessandro Zummo	help
5643e16f6afSAlessandro Zummo	  If you say Y here you will get access to the real time clock
5653e16f6afSAlessandro Zummo	  built into your NEC VR41XX CPU.
5663e16f6afSAlessandro Zummo
5673e16f6afSAlessandro Zummo	  To compile this driver as a module, choose M here: the
5683e16f6afSAlessandro Zummo	  module will be called rtc-vr41xx.
5698417eb7aSYoichi Yuasa
570a190901cSRussell Kingconfig RTC_DRV_PL030
571a190901cSRussell King	tristate "ARM AMBA PL030 RTC"
572a190901cSRussell King	depends on ARM_AMBA
573a190901cSRussell King	help
574a190901cSRussell King	  If you say Y here you will get access to ARM AMBA
575a190901cSRussell King	  PrimeCell PL030 RTC found on certain ARM SOCs.
576a190901cSRussell King
577a190901cSRussell King	  To compile this driver as a module, choose M here: the
578a190901cSRussell King	  module will be called rtc-pl030.
579a190901cSRussell King
5808ae6e163SDeepak Saxenaconfig RTC_DRV_PL031
5818ae6e163SDeepak Saxena	tristate "ARM AMBA PL031 RTC"
582bb35fb20SJan Engelhardt	depends on ARM_AMBA
5838ae6e163SDeepak Saxena	help
5848ae6e163SDeepak Saxena	  If you say Y here you will get access to ARM AMBA
58509a21e56SAlessandro Zummo	  PrimeCell PL031 RTC found on certain ARM SOCs.
5868ae6e163SDeepak Saxena
5878ae6e163SDeepak Saxena	  To compile this driver as a module, choose M here: the
5888ae6e163SDeepak Saxena	  module will be called rtc-pl031.
5898ae6e163SDeepak Saxena
590fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X
591fa04e78bSHans-Christian Egtvedt	tristate "AT32AP700X series RTC"
592bb35fb20SJan Engelhardt	depends on PLATFORM_AT32AP
593fa04e78bSHans-Christian Egtvedt	help
594fa04e78bSHans-Christian Egtvedt	  Driver for the internal RTC (Realtime Clock) on Atmel AVR32
595fa04e78bSHans-Christian Egtvedt	  AT32AP700x family processors.
596fa04e78bSHans-Christian Egtvedt
5977fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200
5984cdf854fSDavid Brownell	tristate "AT91RM9200 or AT91SAM9RL"
5994cdf854fSDavid Brownell	depends on ARCH_AT91RM9200 || ARCH_AT91SAM9RL
600788b1fc6SAndrew Victor	help
6014cdf854fSDavid Brownell	  Driver for the internal RTC (Realtime Clock) module found on
6024cdf854fSDavid Brownell	  Atmel AT91RM9200's and AT91SAM9RL chips. On SAM9RL chips
6034cdf854fSDavid Brownell	  this is powered by the backup power supply.
6044cdf854fSDavid Brownell
6054cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9
6066b71dbf6SStelian Pop	tristate "AT91SAM9x/AT91CAP9"
6074cdf854fSDavid Brownell	depends on ARCH_AT91 && !(ARCH_AT91RM9200 || ARCH_AT91X40)
6084cdf854fSDavid Brownell	help
6096b71dbf6SStelian Pop	  RTC driver for the Atmel AT91SAM9x and AT91CAP9 internal RTT
6106b71dbf6SStelian Pop	  (Real Time Timer). These timers are powered by the backup power
6116b71dbf6SStelian Pop	  supply (such as a small coin cell battery), but do not need to
6126b71dbf6SStelian Pop	  be used as RTCs.
6134cdf854fSDavid Brownell
6144cdf854fSDavid Brownell	  (On AT91SAM9rl chips you probably want to use the dedicated RTC
6154cdf854fSDavid Brownell	  module and leave the RTT available for other uses.)
6164cdf854fSDavid Brownell
6174cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_RTT
6184cdf854fSDavid Brownell	int
6194cdf854fSDavid Brownell	range 0 1
6204cdf854fSDavid Brownell	default 0
6214cdf854fSDavid Brownell	prompt "RTT module Number" if ARCH_AT91SAM9263
6224cdf854fSDavid Brownell	depends on RTC_DRV_AT91SAM9
6234cdf854fSDavid Brownell	help
6244cdf854fSDavid Brownell	  More than one RTT module is available. You can choose which
6254cdf854fSDavid Brownell	  one will be used as an RTC. The default of zero is normally
6264cdf854fSDavid Brownell	  OK to use, though some systems use that for non-RTC purposes.
6274cdf854fSDavid Brownell
6284cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_GPBR
6294cdf854fSDavid Brownell	int
6304cdf854fSDavid Brownell	range 0 3 if !ARCH_AT91SAM9263
6314cdf854fSDavid Brownell	range 0 15 if ARCH_AT91SAM9263
6324cdf854fSDavid Brownell	default 0
6334cdf854fSDavid Brownell	prompt "Backup Register Number"
6344cdf854fSDavid Brownell	depends on RTC_DRV_AT91SAM9
6354cdf854fSDavid Brownell	help
6364cdf854fSDavid Brownell	  The RTC driver needs to use one of the General Purpose Backup
6374cdf854fSDavid Brownell	  Registers (GPBRs) as well as the RTT. You can choose which one
6384cdf854fSDavid Brownell	  will be used. The default of zero is normally OK to use, but
6394cdf854fSDavid Brownell	  on some systems other software needs to use that register.
640788b1fc6SAndrew Victor
6418cc75c9aSWu, Bryanconfig RTC_DRV_BFIN
6428cc75c9aSWu, Bryan	tristate "Blackfin On-Chip RTC"
6437f604599SGraf Yang	depends on BLACKFIN && !BF561
6448cc75c9aSWu, Bryan	help
6458cc75c9aSWu, Bryan	  If you say yes here you will get support for the
6468cc75c9aSWu, Bryan	  Blackfin On-Chip Real Time Clock.
6478cc75c9aSWu, Bryan
6488cc75c9aSWu, Bryan	  This driver can also be built as a module. If so, the module
6498cc75c9aSWu, Bryan	  will be called rtc-bfin.
6508cc75c9aSWu, Bryan
651e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313
652e9f2bd81SNobuhiro Iwamatsu	tristate "Ricoh RS5C313"
653bb35fb20SJan Engelhardt	depends on SH_LANDISK
654e9f2bd81SNobuhiro Iwamatsu	help
655e9f2bd81SNobuhiro Iwamatsu	  If you say yes here you get support for the Ricoh RS5C313 RTC chips.
656e9f2bd81SNobuhiro Iwamatsu
6579eb16864SKyle McMartinconfig RTC_DRV_PARISC
6589eb16864SKyle McMartin	tristate "PA-RISC firmware RTC support"
6599eb16864SKyle McMartin	depends on PARISC
6609eb16864SKyle McMartin	help
6619eb16864SKyle McMartin	  Say Y or M here to enable RTC support on PA-RISC systems using
6629eb16864SKyle McMartin	  firmware calls. If you do not know what you are doing, you should
6639eb16864SKyle McMartin	  just say Y.
6649eb16864SKyle McMartin
665aabe1885SDavid Woodhouseconfig RTC_DRV_PPC
666aabe1885SDavid Woodhouse       tristate "PowerPC machine dependent RTC support"
66703274572SKumar Gala       depends on PPC
668aabe1885SDavid Woodhouse       help
669aabe1885SDavid Woodhouse	 The PowerPC kernel has machine-specific functions for accessing
670aabe1885SDavid Woodhouse	 the RTC. This exposes that functionality through the generic RTC
671aabe1885SDavid Woodhouse	 class.
672aabe1885SDavid Woodhouse
673dc944368SRobert Jarzmikconfig RTC_DRV_PXA
674dc944368SRobert Jarzmik       tristate "PXA27x/PXA3xx"
675dc944368SRobert Jarzmik       depends on ARCH_PXA
676dc944368SRobert Jarzmik       help
677dc944368SRobert Jarzmik         If you say Y here you will get access to the real time clock
678dc944368SRobert Jarzmik         built into your PXA27x or PXA3xx CPU.
679dc944368SRobert Jarzmik
680dc944368SRobert Jarzmik         This RTC driver uses PXA RTC registers available since pxa27x
681dc944368SRobert Jarzmik         series (RDxR, RYxR) instead of legacy RCNR, RTAR.
682dc944368SRobert Jarzmik
683dc944368SRobert Jarzmik
6847a138edeSDavid S. Millerconfig RTC_DRV_SUN4V
6857a138edeSDavid S. Miller	bool "SUN4V Hypervisor RTC"
6867a138edeSDavid S. Miller	depends on SPARC64
6877a138edeSDavid S. Miller	help
6887a138edeSDavid S. Miller	  If you say Y here you will get support for the Hypervisor
6897a138edeSDavid S. Miller	  based RTC on SUN4V systems.
6907a138edeSDavid S. Miller
691de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE
692de2cf332SDavid S. Miller	bool "Starfire RTC"
693de2cf332SDavid S. Miller	depends on SPARC64
694de2cf332SDavid S. Miller	help
695de2cf332SDavid S. Miller	  If you say Y here you will get support for the RTC found on
696de2cf332SDavid S. Miller	  Starfire systems.
697de2cf332SDavid S. Miller
698bb35fb20SJan Engelhardtendif # RTC_CLASS
699