xref: /linux/drivers/rtc/Kconfig (revision b224b9ac8c42afc40cba170187df3d0cdbb13c20)
17be2c7c9SDavid Brownell#
2c58411e9SAlessandro Zummo# RTC class/drivers configuration
3c58411e9SAlessandro Zummo#
4c58411e9SAlessandro Zummo
5c58411e9SAlessandro Zummoconfig RTC_LIB
6b4d246b1SJohn Stultz	bool
70c86edc0SAlessandro Zummo
8bb35fb20SJan Engelhardtmenuconfig RTC_CLASS
9b4d246b1SJohn Stultz	bool "Real Time Clock"
100c86edc0SAlessandro Zummo	default n
113369465eSAl Viro	depends on !S390 && !UML
120c86edc0SAlessandro Zummo	select RTC_LIB
130c86edc0SAlessandro Zummo	help
140c86edc0SAlessandro Zummo	  Generic RTC class support. If you say yes here, you will
150c86edc0SAlessandro Zummo 	  be allowed to plug one or more RTCs to your system. You will
1627ae4104SAdrian Bunk	  probably want to enable one or more of the interfaces below.
170c86edc0SAlessandro Zummo
18bb35fb20SJan Engelhardtif RTC_CLASS
19bb35fb20SJan Engelhardt
200c86edc0SAlessandro Zummoconfig RTC_HCTOSYS
217ca1d488SDavid Brownell	bool "Set system time from RTC on startup and resume"
220c86edc0SAlessandro Zummo	depends on RTC_CLASS = y
230c86edc0SAlessandro Zummo	default y
240c86edc0SAlessandro Zummo	help
257ca1d488SDavid Brownell	  If you say yes here, the system time (wall clock) will be set using
267ca1d488SDavid Brownell	  the value read from a specified RTC device. This is useful to avoid
277ca1d488SDavid Brownell	  unnecessary fsck runs at boot time, and to network better.
280c86edc0SAlessandro Zummo
290c86edc0SAlessandro Zummoconfig RTC_HCTOSYS_DEVICE
307ca1d488SDavid Brownell	string "RTC used to set the system time"
310c86edc0SAlessandro Zummo	depends on RTC_HCTOSYS = y
320c86edc0SAlessandro Zummo	default "rtc0"
330c86edc0SAlessandro Zummo	help
347ca1d488SDavid Brownell	  The RTC device that will be used to (re)initialize the system
357ca1d488SDavid Brownell	  clock, usually rtc0. Initialization is done when the system
36779d2089SDavid Brownell	  starts up, and when it resumes from a low power state. This
37779d2089SDavid Brownell	  device should record time in UTC, since the kernel won't do
38779d2089SDavid Brownell	  timezone correction.
397ca1d488SDavid Brownell
4055ff1abaSDavid Brownell	  The driver for this RTC device must be loaded before late_initcall
4155ff1abaSDavid Brownell	  functions run, so it must usually be statically linked.
4255ff1abaSDavid Brownell
437ca1d488SDavid Brownell	  This clock should be battery-backed, so that it reads the correct
447ca1d488SDavid Brownell	  time when the system boots from a power-off state. Otherwise, your
457ca1d488SDavid Brownell	  system will need an external clock source (like an NTP server).
467ca1d488SDavid Brownell
477ca1d488SDavid Brownell	  If the clock you specify here is not battery backed, it may still
487ca1d488SDavid Brownell	  be useful to reinitialize system time when resuming from system
497ca1d488SDavid Brownell	  sleep states. Do not specify an RTC here unless it stays powered
507ca1d488SDavid Brownell	  during all this system's supported sleep states.
510c86edc0SAlessandro Zummo
529e86ecb6SDavid Brownellconfig RTC_DEBUG
539e86ecb6SDavid Brownell	bool "RTC debug support"
549e86ecb6SDavid Brownell	depends on RTC_CLASS = y
559e86ecb6SDavid Brownell	help
569e86ecb6SDavid Brownell	  Say yes here to enable debugging support in the RTC framework
579e86ecb6SDavid Brownell	  and individual RTC drivers.
589e86ecb6SDavid Brownell
590c86edc0SAlessandro Zummocomment "RTC interfaces"
600c86edc0SAlessandro Zummo
61c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS
62e40659c5SDavid Brownell	boolean "/sys/class/rtc/rtcN (sysfs)"
63bb35fb20SJan Engelhardt	depends on SYSFS
64c5c3e192SAlessandro Zummo	default RTC_CLASS
65c5c3e192SAlessandro Zummo	help
669e86ecb6SDavid Brownell	  Say yes here if you want to use your RTCs using sysfs interfaces,
679e86ecb6SDavid Brownell	  /sys/class/rtc/rtc0 through /sys/.../rtcN.
68c5c3e192SAlessandro Zummo
69ae64d169SAlessandro Zummo	  If unsure, say Y.
70c5c3e192SAlessandro Zummo
71728a2947SAlessandro Zummoconfig RTC_INTF_PROC
72e40659c5SDavid Brownell	boolean "/proc/driver/rtc (procfs for rtc0)"
73bb35fb20SJan Engelhardt	depends on PROC_FS
74728a2947SAlessandro Zummo	default RTC_CLASS
75728a2947SAlessandro Zummo	help
769e86ecb6SDavid Brownell	  Say yes here if you want to use your first RTC through the proc
779e86ecb6SDavid Brownell	  interface, /proc/driver/rtc. Other RTCs will not be available
789e86ecb6SDavid Brownell	  through that API.
79728a2947SAlessandro Zummo
80ae64d169SAlessandro Zummo	  If unsure, say Y.
81728a2947SAlessandro Zummo
82e824290eSAlessandro Zummoconfig RTC_INTF_DEV
83e40659c5SDavid Brownell	boolean "/dev/rtcN (character devices)"
84e824290eSAlessandro Zummo	default RTC_CLASS
85e824290eSAlessandro Zummo	help
869e86ecb6SDavid Brownell	  Say yes here if you want to use your RTCs using the /dev
879e86ecb6SDavid Brownell	  interfaces, which "udev" sets up as /dev/rtc0 through
88ae64d169SAlessandro Zummo	  /dev/rtcN.
89e824290eSAlessandro Zummo
90ae64d169SAlessandro Zummo	  You may want to set up a symbolic link so one of these
91ae64d169SAlessandro Zummo	  can be accessed as /dev/rtc, which is a name
92ae64d169SAlessandro Zummo	  expected by "hwclock" and some other programs. Recent
93ae64d169SAlessandro Zummo	  versions of "udev" are known to set up the symlink for you.
94ae64d169SAlessandro Zummo
95ae64d169SAlessandro Zummo	  If unsure, say Y.
96e824290eSAlessandro Zummo
976e57b1d6SJohn Stultzconfig RTC_INTF_DEV_UIE_EMUL
986e57b1d6SJohn Stultz	bool "RTC UIE emulation on dev interface"
996e57b1d6SJohn Stultz	depends on RTC_INTF_DEV
1006e57b1d6SJohn Stultz	help
1016e57b1d6SJohn Stultz	  Provides an emulation for RTC_UIE if the underlying rtc chip
1026e57b1d6SJohn Stultz	  driver does not expose RTC_UIE ioctls. Those requests generate
1036e57b1d6SJohn Stultz	  once-per-second update interrupts, used for synchronization.
1046e57b1d6SJohn Stultz
1056e57b1d6SJohn Stultz	  The emulation code will read the time from the hardware
1066e57b1d6SJohn Stultz	  clock several times per second, please enable this option
1076e57b1d6SJohn Stultz	  only if you know that you really need it.
1086e57b1d6SJohn Stultz
10909a21e56SAlessandro Zummoconfig RTC_DRV_TEST
11009a21e56SAlessandro Zummo	tristate "Test driver/device"
11109a21e56SAlessandro Zummo	help
11209a21e56SAlessandro Zummo	  If you say yes here you get support for the
11309a21e56SAlessandro Zummo	  RTC test driver. It's a software RTC which can be
11409a21e56SAlessandro Zummo	  used to test the RTC subsystem APIs. It gets
11509a21e56SAlessandro Zummo	  the time from the system clock.
11609a21e56SAlessandro Zummo	  You want this driver only if you are doing development
11709a21e56SAlessandro Zummo	  on the RTC subsystem. Please read the source code
11809a21e56SAlessandro Zummo	  for further details.
11909a21e56SAlessandro Zummo
12009a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
12109a21e56SAlessandro Zummo	  will be called rtc-test.
12209a21e56SAlessandro Zummo
12309a21e56SAlessandro Zummocomment "I2C RTC drivers"
124bb35fb20SJan Engelhardt	depends on I2C
125bb35fb20SJan Engelhardt
126bb35fb20SJan Engelhardtif I2C
12709a21e56SAlessandro Zummo
128008b3040SHaojian Zhuangconfig RTC_DRV_88PM860X
129008b3040SHaojian Zhuang	tristate "Marvell 88PM860x"
130008b3040SHaojian Zhuang	depends on RTC_CLASS && I2C && MFD_88PM860X
131008b3040SHaojian Zhuang	help
132008b3040SHaojian Zhuang	  If you say yes here you get support for RTC function in Marvell
133008b3040SHaojian Zhuang	  88PM860x chips.
134008b3040SHaojian Zhuang
135008b3040SHaojian Zhuang	  This driver can also be built as a module. If so, the module
136008b3040SHaojian Zhuang	  will be called rtc-88pm860x.
137008b3040SHaojian Zhuang
13809a21e56SAlessandro Zummoconfig RTC_DRV_DS1307
139a2166858SMatthias Fuchs	tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025"
14009a21e56SAlessandro Zummo	help
14109a21e56SAlessandro Zummo	  If you say yes here you get support for various compatible RTC
14209a21e56SAlessandro Zummo	  chips (often with battery backup) connected with I2C. This driver
14309a21e56SAlessandro Zummo	  should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
144a2166858SMatthias Fuchs	  EPSON RX-8025 and probably other chips. In some cases the RTC
145a2166858SMatthias Fuchs	  must already have been initialized (by manufacturing or a
146a2166858SMatthias Fuchs	  bootloader).
14709a21e56SAlessandro Zummo
14809a21e56SAlessandro Zummo	  The first seven registers on these chips hold an RTC, and other
14909a21e56SAlessandro Zummo	  registers may add features such as NVRAM, a trickle charger for
150682d73f6SDavid Brownell	  the RTC/NVRAM backup power, and alarms. NVRAM is visible in
151682d73f6SDavid Brownell	  sysfs, but other chip features may not be available.
15209a21e56SAlessandro Zummo
15309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
15409a21e56SAlessandro Zummo	  will be called rtc-ds1307.
15509a21e56SAlessandro Zummo
156bf4994d7SScott Woodconfig RTC_DRV_DS1374
15709b6bdb3SAlessandro Zummo	tristate "Dallas/Maxim DS1374"
158bf4994d7SScott Wood	depends on RTC_CLASS && I2C
159bf4994d7SScott Wood	help
160bf4994d7SScott Wood	  If you say yes here you get support for Dallas Semiconductor
161bf4994d7SScott Wood	  DS1374 real-time clock chips. If an interrupt is associated
162bf4994d7SScott Wood	  with the device, the alarm functionality is supported.
163bf4994d7SScott Wood
164bf4994d7SScott Wood	  This driver can also be built as a module. If so, the module
165bf4994d7SScott Wood	  will be called rtc-ds1374.
166bf4994d7SScott Wood
16709a21e56SAlessandro Zummoconfig RTC_DRV_DS1672
16809a21e56SAlessandro Zummo	tristate "Dallas/Maxim DS1672"
16909a21e56SAlessandro Zummo	help
17009a21e56SAlessandro Zummo	  If you say yes here you get support for the
17109a21e56SAlessandro Zummo	  Dallas/Maxim DS1672 timekeeping chip.
17209a21e56SAlessandro Zummo
17309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
17409a21e56SAlessandro Zummo	  will be called rtc-ds1672.
17509a21e56SAlessandro Zummo
176c03675f0SRoy Zangconfig RTC_DRV_DS3232
177c03675f0SRoy Zang	tristate "Dallas/Maxim DS3232"
178c03675f0SRoy Zang	depends on RTC_CLASS && I2C
179c03675f0SRoy Zang	help
180c03675f0SRoy Zang	  If you say yes here you get support for Dallas Semiconductor
181f46418c5SLan Chunhe-B25806	  DS3232 real-time clock chips. If an interrupt is associated
182f46418c5SLan Chunhe-B25806	  with the device, the alarm functionality is supported.
183c03675f0SRoy Zang
184c03675f0SRoy Zang	  This driver can also be built as a module.  If so, the module
185c03675f0SRoy Zang	  will be called rtc-ds3232.
186c03675f0SRoy Zang
18709a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900
18809b6bdb3SAlessandro Zummo	tristate "Maxim MAX6900"
18909a21e56SAlessandro Zummo	help
19009a21e56SAlessandro Zummo	  If you say yes here you will get support for the
19109a21e56SAlessandro Zummo	  Maxim MAX6900 I2C RTC chip.
19209a21e56SAlessandro Zummo
19309a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
19409a21e56SAlessandro Zummo	  will be called rtc-max6900.
19509a21e56SAlessandro Zummo
196a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925
197a39069f6SHaojian Zhuang	tristate "Maxim MAX8925"
198a39069f6SHaojian Zhuang	depends on MFD_MAX8925
199a39069f6SHaojian Zhuang	help
200a39069f6SHaojian Zhuang	  If you say yes here you will get support for the
201a39069f6SHaojian Zhuang	  RTC of Maxim MAX8925 PMIC.
202a39069f6SHaojian Zhuang
203a39069f6SHaojian Zhuang	  This driver can also be built as a module. If so, the module
204a39069f6SHaojian Zhuang	  will be called rtc-max8925.
205a39069f6SHaojian Zhuang
2069b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998
2079b16c0a4SJoonyoung Shim	tristate "Maxim MAX8998"
2089b16c0a4SJoonyoung Shim	depends on MFD_MAX8998
2099b16c0a4SJoonyoung Shim	help
2109b16c0a4SJoonyoung Shim	  If you say yes here you will get support for the
2119b16c0a4SJoonyoung Shim	  RTC of Maxim MAX8998 PMIC.
2129b16c0a4SJoonyoung Shim
2139b16c0a4SJoonyoung Shim	  This driver can also be built as a module. If so, the module
2149b16c0a4SJoonyoung Shim	  will be called rtc-max8998.
2159b16c0a4SJoonyoung Shim
21609a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372
2175d4529beSPaul Mundt	tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
21809a21e56SAlessandro Zummo	help
21909a21e56SAlessandro Zummo	  If you say yes here you get support for the
2205d4529beSPaul Mundt	  Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
22109a21e56SAlessandro Zummo
22209a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
22309a21e56SAlessandro Zummo	  will be called rtc-rs5c372.
22409a21e56SAlessandro Zummo
22509a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208
22609b6bdb3SAlessandro Zummo	tristate "Intersil ISL1208"
22709a21e56SAlessandro Zummo	help
22809a21e56SAlessandro Zummo	  If you say yes here you get support for the
22909b6bdb3SAlessandro Zummo	  Intersil ISL1208 RTC chip.
23009a21e56SAlessandro Zummo
23109a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
23209a21e56SAlessandro Zummo	  will be called rtc-isl1208.
23309a21e56SAlessandro Zummo
234d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022
235d6c7428fSRoman Fietze	tristate "Intersil ISL12022"
236d6c7428fSRoman Fietze	help
237d6c7428fSRoman Fietze	  If you say yes here you get support for the
238d6c7428fSRoman Fietze	  Intersil ISL12022 RTC chip.
239d6c7428fSRoman Fietze
240d6c7428fSRoman Fietze	  This driver can also be built as a module. If so, the module
241d6c7428fSRoman Fietze	  will be called rtc-isl12022.
242d6c7428fSRoman Fietze
24309a21e56SAlessandro Zummoconfig RTC_DRV_X1205
24409a21e56SAlessandro Zummo	tristate "Xicor/Intersil X1205"
24509a21e56SAlessandro Zummo	help
24609a21e56SAlessandro Zummo	  If you say yes here you get support for the
24709a21e56SAlessandro Zummo	  Xicor/Intersil X1205 RTC chip.
24809a21e56SAlessandro Zummo
24909a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
25009a21e56SAlessandro Zummo	  will be called rtc-x1205.
25109a21e56SAlessandro Zummo
25209a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563
25309a21e56SAlessandro Zummo	tristate "Philips PCF8563/Epson RTC8564"
25409a21e56SAlessandro Zummo	help
25509a21e56SAlessandro Zummo	  If you say yes here you get support for the
25609a21e56SAlessandro Zummo	  Philips PCF8563 RTC chip. The Epson RTC8564
25709a21e56SAlessandro Zummo	  should work as well.
25809a21e56SAlessandro Zummo
25909a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
26009a21e56SAlessandro Zummo	  will be called rtc-pcf8563.
26109a21e56SAlessandro Zummo
26209a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583
26309a21e56SAlessandro Zummo	tristate "Philips PCF8583"
26409a21e56SAlessandro Zummo	help
26509a21e56SAlessandro Zummo	  If you say yes here you get support for the Philips PCF8583
26609a21e56SAlessandro Zummo	  RTC chip found on Acorn RiscPCs. This driver supports the
26709a21e56SAlessandro Zummo	  platform specific method of retrieving the current year from
26809a21e56SAlessandro Zummo	  the RTC's SRAM. It will work on other platforms with the same
26909a21e56SAlessandro Zummo	  chip, but the year will probably have to be tweaked.
27009a21e56SAlessandro Zummo
27109a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
27209a21e56SAlessandro Zummo	  will be called rtc-pcf8583.
27309a21e56SAlessandro Zummo
274caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80
275f30281f4SDaniel Glockner	tristate "ST M41T62/65/M41T80/81/82/83/84/85/87"
276caaff562SAtsushi Nemoto	help
277d3a126fcSSteven A. Falco	  If you say Y here you will get support for the ST M41T60
278d3a126fcSSteven A. Falco	  and M41T80 RTC chips series. Currently, the following chips are
279f30281f4SDaniel Glockner	  supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
280d3a126fcSSteven A. Falco	  M41ST85, and M41ST87.
281caaff562SAtsushi Nemoto
282caaff562SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
283caaff562SAtsushi Nemoto	  will be called rtc-m41t80.
284caaff562SAtsushi Nemoto
285617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT
286d3a126fcSSteven A. Falco	bool "ST M41T65/M41T80 series RTC watchdog timer"
287617780d2SAtsushi Nemoto	depends on RTC_DRV_M41T80
288617780d2SAtsushi Nemoto	help
289617780d2SAtsushi Nemoto	  If you say Y here you will get support for the
290d3a126fcSSteven A. Falco	  watchdog timer in the ST M41T60 and M41T80 RTC chips series.
291617780d2SAtsushi Nemoto
2921ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K
2931ce7c83fSPiotr Ziecik	tristate "TI BQ32000"
2941ce7c83fSPiotr Ziecik	help
2951ce7c83fSPiotr Ziecik	  If you say Y here you will get support for the TI
2961ce7c83fSPiotr Ziecik	  BQ32000 I2C RTC chip.
2971ce7c83fSPiotr Ziecik
2981ce7c83fSPiotr Ziecik	  This driver can also be built as a module. If so, the module
2991ce7c83fSPiotr Ziecik	  will be called rtc-bq32k.
3001ce7c83fSPiotr Ziecik
301afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM
302afd8d0f9SDavid Brownell	tristate "TI DaVinci DM355 EVM RTC"
303afd8d0f9SDavid Brownell	depends on MFD_DM355EVM_MSP
304afd8d0f9SDavid Brownell	help
305afd8d0f9SDavid Brownell	  Supports the RTC firmware in the MSP430 on the DM355 EVM.
306afd8d0f9SDavid Brownell
3070c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330
3080c4a59feSTony Lindgren	boolean "TI TWL92330/Menelaus"
309bb35fb20SJan Engelhardt	depends on MENELAUS
3100c4a59feSTony Lindgren	help
3110c4a59feSTony Lindgren	  If you say yes here you get support for the RTC on the
31201dd2fbfSMatt LaPlante	  TWL92330 "Menelaus" power management chip, used with OMAP2
3130c4a59feSTony Lindgren	  platforms. The support is integrated with the rest of
3140c4a59feSTony Lindgren	  the Menelaus driver; it's not separate module.
3150c4a59feSTony Lindgren
316f96411abSDavid Brownellconfig RTC_DRV_TWL4030
317a6b49ffdSBalaji T K	tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0"
318f96411abSDavid Brownell	depends on RTC_CLASS && TWL4030_CORE
319f96411abSDavid Brownell	help
320f96411abSDavid Brownell	  If you say yes here you get support for the RTC on the
321a6b49ffdSBalaji T K	  TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms.
322f96411abSDavid Brownell
323f96411abSDavid Brownell	  This driver can also be built as a module. If so, the module
324a6b49ffdSBalaji T K	  will be called rtc-twl.
325f96411abSDavid Brownell
326c46288b0SByron Bradleyconfig RTC_DRV_S35390A
327c46288b0SByron Bradley	tristate "Seiko Instruments S-35390A"
328d479540dSRandy Dunlap	select BITREVERSE
329c46288b0SByron Bradley	help
330c46288b0SByron Bradley	  If you say yes here you will get support for the Seiko
331c46288b0SByron Bradley	  Instruments S-35390A.
332c46288b0SByron Bradley
333c46288b0SByron Bradley	  This driver can also be built as a module. If so the module
334c46288b0SByron Bradley	  will be called rtc-s35390a.
335c46288b0SByron Bradley
336c6d8f400SSergey Lapinconfig RTC_DRV_FM3130
337c6d8f400SSergey Lapin	tristate "Ramtron FM3130"
338c6d8f400SSergey Lapin	help
339c6d8f400SSergey Lapin	  If you say Y here you will get support for the
340c6d8f400SSergey Lapin	  Ramtron FM3130 RTC chips.
341c6d8f400SSergey Lapin	  Ramtron FM3130 is a chip with two separate devices inside,
342c6d8f400SSergey Lapin	  RTC clock and FRAM. This driver provides only RTC functionality.
343c6d8f400SSergey Lapin
344c6d8f400SSergey Lapin	  This driver can also be built as a module. If so the module
345c6d8f400SSergey Lapin	  will be called rtc-fm3130.
346c6d8f400SSergey Lapin
347a7fa9851SMartyn Welchconfig RTC_DRV_RX8581
348a7fa9851SMartyn Welch	tristate "Epson RX-8581"
349a7fa9851SMartyn Welch	help
350a7fa9851SMartyn Welch	  If you say yes here you will get support for the Epson RX-8581.
351a7fa9851SMartyn Welch
352a7fa9851SMartyn Welch	  This driver can also be built as a module. If so the module
353a7fa9851SMartyn Welch	  will be called rtc-rx8581.
354a7fa9851SMartyn Welch
3553c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025
3563c2b9075SWolfgang Grandegger	tristate "Epson RX-8025SA/NB"
3573c2b9075SWolfgang Grandegger	help
3583c2b9075SWolfgang Grandegger	  If you say yes here you get support for the Epson
3593c2b9075SWolfgang Grandegger	  RX-8025SA/NB RTC chips.
3603c2b9075SWolfgang Grandegger
3613c2b9075SWolfgang Grandegger	  This driver can also be built as a module. If so, the module
3623c2b9075SWolfgang Grandegger	  will be called rtc-rx8025.
3633c2b9075SWolfgang Grandegger
364ae3551f9SMike Rapoportconfig RTC_DRV_EM3027
365ae3551f9SMike Rapoport	tristate "EM Microelectronic EM3027"
366ae3551f9SMike Rapoport	help
367ae3551f9SMike Rapoport	  If you say yes here you get support for the EM
368ae3551f9SMike Rapoport	  Microelectronic EM3027 RTC chips.
369ae3551f9SMike Rapoport
370ae3551f9SMike Rapoport	  This driver can also be built as a module. If so, the module
371ae3551f9SMike Rapoport	  will be called rtc-em3027.
372ae3551f9SMike Rapoport
37352365230SHeiko Schocherconfig RTC_DRV_RV3029C2
37452365230SHeiko Schocher	tristate "Micro Crystal RTC"
37552365230SHeiko Schocher	help
37652365230SHeiko Schocher	  If you say yes here you get support for the Micro Crystal
37752365230SHeiko Schocher	  RV3029-C2 RTC chips.
37852365230SHeiko Schocher
37952365230SHeiko Schocher	  This driver can also be built as a module. If so, the module
38052365230SHeiko Schocher	  will be called rtc-rv3029c2.
38152365230SHeiko Schocher
382bb35fb20SJan Engelhardtendif # I2C
383bb35fb20SJan Engelhardt
38409a21e56SAlessandro Zummocomment "SPI RTC drivers"
385bb35fb20SJan Engelhardt
386bb35fb20SJan Engelhardtif SPI_MASTER
38709a21e56SAlessandro Zummo
38874d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93
38974d34d4bSVoss, Nikolaus        tristate "ST M41T93"
39074d34d4bSVoss, Nikolaus        help
39174d34d4bSVoss, Nikolaus          If you say yes here you will get support for the
39274d34d4bSVoss, Nikolaus          ST M41T93 SPI RTC chip.
39374d34d4bSVoss, Nikolaus
39474d34d4bSVoss, Nikolaus          This driver can also be built as a module. If so, the module
39574d34d4bSVoss, Nikolaus          will be called rtc-m41t93.
39674d34d4bSVoss, Nikolaus
3978fc2c767SKim B. Heinoconfig RTC_DRV_M41T94
3988fc2c767SKim B. Heino	tristate "ST M41T94"
3998fc2c767SKim B. Heino	help
4008fc2c767SKim B. Heino	  If you say yes here you will get support for the
4018fc2c767SKim B. Heino	  ST M41T94 SPI RTC chip.
4028fc2c767SKim B. Heino
4038fc2c767SKim B. Heino	  This driver can also be built as a module. If so, the module
4048fc2c767SKim B. Heino	  will be called rtc-m41t94.
4058fc2c767SKim B. Heino
40653e84b67SDavid Brownellconfig RTC_DRV_DS1305
40753e84b67SDavid Brownell	tristate "Dallas/Maxim DS1305/DS1306"
40853e84b67SDavid Brownell	help
40953e84b67SDavid Brownell	  Select this driver to get support for the Dallas/Maxim DS1305
41053e84b67SDavid Brownell	  and DS1306 real time clock chips. These support a trickle
41153e84b67SDavid Brownell	  charger, alarms, and NVRAM in addition to the clock.
41253e84b67SDavid Brownell
41353e84b67SDavid Brownell	  This driver can also be built as a module. If so, the module
41453e84b67SDavid Brownell	  will be called rtc-ds1305.
41553e84b67SDavid Brownell
41606de1808SMark Jacksonconfig RTC_DRV_DS1390
41706de1808SMark Jackson	tristate "Dallas/Maxim DS1390/93/94"
41806de1808SMark Jackson	help
4197b9b2ef1SAlessandro Zummo	  If you say yes here you get support for the
4207b9b2ef1SAlessandro Zummo	  Dallas/Maxim DS1390/93/94 chips.
42106de1808SMark Jackson
42206de1808SMark Jackson	  This driver only supports the RTC feature, and not other chip
42306de1808SMark Jackson	  features such as alarms and trickle charging.
42406de1808SMark Jackson
42506de1808SMark Jackson	  This driver can also be built as a module. If so, the module
42606de1808SMark Jackson	  will be called rtc-ds1390.
42706de1808SMark Jackson
42809b6bdb3SAlessandro Zummoconfig RTC_DRV_MAX6902
42909b6bdb3SAlessandro Zummo	tristate "Maxim MAX6902"
43009b6bdb3SAlessandro Zummo	help
43109b6bdb3SAlessandro Zummo	  If you say yes here you will get support for the
43209b6bdb3SAlessandro Zummo	  Maxim MAX6902 SPI RTC chip.
43309b6bdb3SAlessandro Zummo
43409b6bdb3SAlessandro Zummo	  This driver can also be built as a module. If so, the module
43509b6bdb3SAlessandro Zummo	  will be called rtc-max6902.
43609b6bdb3SAlessandro Zummo
4372805b969SMagnus Dammconfig RTC_DRV_R9701
4382805b969SMagnus Damm	tristate "Epson RTC-9701JE"
4392805b969SMagnus Damm	help
4402805b969SMagnus Damm	  If you say yes here you will get support for the
4412805b969SMagnus Damm	  Epson RTC-9701JE SPI RTC chip.
4422805b969SMagnus Damm
4432805b969SMagnus Damm	  This driver can also be built as a module. If so, the module
4442805b969SMagnus Damm	  will be called rtc-r9701.
4452805b969SMagnus Damm
44609a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348
44709a21e56SAlessandro Zummo	tristate "Ricoh RS5C348A/B"
44809a21e56SAlessandro Zummo	help
44909a21e56SAlessandro Zummo	  If you say yes here you get support for the
45009a21e56SAlessandro Zummo	  Ricoh RS5C348A and RS5C348B RTC chips.
45109a21e56SAlessandro Zummo
45209a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
45309a21e56SAlessandro Zummo	  will be called rtc-rs5c348.
45409a21e56SAlessandro Zummo
4552f9b75e0SDennis Aberillaconfig RTC_DRV_DS3234
4562f9b75e0SDennis Aberilla	tristate "Maxim/Dallas DS3234"
4572f9b75e0SDennis Aberilla	help
4582f9b75e0SDennis Aberilla	  If you say yes here you get support for the
4592f9b75e0SDennis Aberilla	  Maxim/Dallas DS3234 SPI RTC chip.
4602f9b75e0SDennis Aberilla
4612f9b75e0SDennis Aberilla	  This driver can also be built as a module. If so, the module
4622f9b75e0SDennis Aberilla	  will be called rtc-ds3234.
4632f9b75e0SDennis Aberilla
4647f3923a1SChris Vergesconfig RTC_DRV_PCF2123
4657f3923a1SChris Verges	tristate "NXP PCF2123"
4667f3923a1SChris Verges	help
4677f3923a1SChris Verges	  If you say yes here you get support for the NXP PCF2123
4687f3923a1SChris Verges	  RTC chip.
4697f3923a1SChris Verges
4707f3923a1SChris Verges	  This driver can also be built as a module. If so, the module
4717f3923a1SChris Verges	  will be called rtc-pcf2123.
4727f3923a1SChris Verges
473bb35fb20SJan Engelhardtendif # SPI_MASTER
474bb35fb20SJan Engelhardt
47509a21e56SAlessandro Zummocomment "Platform RTC drivers"
4760c86edc0SAlessandro Zummo
4777be2c7c9SDavid Brownell# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
4787be2c7c9SDavid Brownell# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
4797be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device.
4807be2c7c9SDavid Brownell
4817be2c7c9SDavid Brownellconfig RTC_DRV_CMOS
48209a21e56SAlessandro Zummo	tristate "PC-style 'CMOS'"
4835ec87708SAndrew Morton	depends on X86 || ALPHA || ARM || M32R || ATARI || PPC || MIPS || SPARC64
484c7500900SDavid Brownell	default y if X86
4857be2c7c9SDavid Brownell	help
4867be2c7c9SDavid Brownell	  Say "yes" here to get direct support for the real time clock
4877be2c7c9SDavid Brownell	  found in every PC or ACPI-based system, and some other boards.
4887be2c7c9SDavid Brownell	  Specifically the original MC146818, compatibles like those in
4897be2c7c9SDavid Brownell	  PC south bridges, the DS12887 or M48T86, some multifunction
4907be2c7c9SDavid Brownell	  or LPC bus chips, and so on.
4917be2c7c9SDavid Brownell
4927be2c7c9SDavid Brownell	  Your system will need to define the platform device used by
4937be2c7c9SDavid Brownell	  this driver, otherwise it won't be accessible. This means
4947be2c7c9SDavid Brownell	  you can safely enable this driver if you don't know whether
4957be2c7c9SDavid Brownell	  or not your board has this kind of hardware.
4967be2c7c9SDavid Brownell
4977be2c7c9SDavid Brownell	  This driver can also be built as a module. If so, the module
4987be2c7c9SDavid Brownell	  will be called rtc-cmos.
4997be2c7c9SDavid Brownell
5000146f261SFeng Tangconfig RTC_DRV_VRTC
501933b9463SAlan Cox	tristate "Virtual RTC for Intel MID platforms"
502933b9463SAlan Cox	depends on X86_INTEL_MID
503933b9463SAlan Cox	default y if X86_INTEL_MID
5040146f261SFeng Tang
5050146f261SFeng Tang	help
5060146f261SFeng Tang	Say "yes" here to get direct support for the real time clock
5070146f261SFeng Tang	found on Moorestown platforms. The VRTC is a emulated RTC that
5080146f261SFeng Tang	derives its clock source from a real RTC in the PMIC. The MC146818
5090146f261SFeng Tang	style programming interface is mostly conserved, but any
5100146f261SFeng Tang	updates are done via IPC calls to the system controller FW.
5110146f261SFeng Tang
512537739deSThomas Bogendoerferconfig RTC_DRV_DS1216
513537739deSThomas Bogendoerfer	tristate "Dallas DS1216"
514bb35fb20SJan Engelhardt	depends on SNI_RM
515537739deSThomas Bogendoerfer	help
516537739deSThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1216 RTC chips.
517537739deSThomas Bogendoerfer
5185f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286
5195f119f29SThomas Bogendoerfer	tristate "Dallas DS1286"
5205f119f29SThomas Bogendoerfer	help
5215f119f29SThomas Bogendoerfer	  If you say yes here you get support for the Dallas DS1286 RTC chips.
5225f119f29SThomas Bogendoerfer
523739d340dSPaul Mundtconfig RTC_DRV_DS1302
524739d340dSPaul Mundt	tristate "Dallas DS1302"
525739d340dSPaul Mundt	depends on SH_SECUREEDGE5410
526739d340dSPaul Mundt	help
527739d340dSPaul Mundt	  If you say yes here you get support for the Dallas DS1302 RTC chips.
528739d340dSPaul Mundt
5298f26795aSAndrew Sharpconfig RTC_DRV_DS1511
5308f26795aSAndrew Sharp	tristate "Dallas DS1511"
5318f26795aSAndrew Sharp	depends on RTC_CLASS
5328f26795aSAndrew Sharp	help
5338f26795aSAndrew Sharp	  If you say yes here you get support for the
5348f26795aSAndrew Sharp	  Dallas DS1511 timekeeping/watchdog chip.
5358f26795aSAndrew Sharp
5368f26795aSAndrew Sharp	  This driver can also be built as a module. If so, the module
5378f26795aSAndrew Sharp	  will be called rtc-ds1511.
5388f26795aSAndrew Sharp
5399bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553
54009b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1553"
5419bf5b4f5SAtsushi Nemoto	help
5429bf5b4f5SAtsushi Nemoto	  If you say yes here you get support for the
54309b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1553 timekeeping chip.
5449bf5b4f5SAtsushi Nemoto
5459bf5b4f5SAtsushi Nemoto	  This driver can also be built as a module. If so, the module
5469bf5b4f5SAtsushi Nemoto	  will be called rtc-ds1553.
5479bf5b4f5SAtsushi Nemoto
54809b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742
54909b6bdb3SAlessandro Zummo	tristate "Maxim/Dallas DS1742/1743"
55009b6bdb3SAlessandro Zummo	help
55109b6bdb3SAlessandro Zummo	  If you say yes here you get support for the
55209b6bdb3SAlessandro Zummo	  Maxim/Dallas DS1742/1743 timekeeping chip.
55309b6bdb3SAlessandro Zummo
55409b6bdb3SAlessandro Zummo	  This driver can also be built as a module. If so, the module
55509b6bdb3SAlessandro Zummo	  will be called rtc-ds1742.
55609b6bdb3SAlessandro Zummo
557fef931ffSAshish Jangamconfig RTC_DRV_DA9052
558fef931ffSAshish Jangam	tristate "Dialog DA9052/DA9053 RTC"
559fef931ffSAshish Jangam	depends on PMIC_DA9052
560fef931ffSAshish Jangam	help
561fef931ffSAshish Jangam	  Say y here to support the RTC driver for Dialog Semiconductor
562fef931ffSAshish Jangam	  DA9052-BC and DA9053-AA/Bx PMICs.
563fef931ffSAshish Jangam
5645e3fd9e5Sdann frazierconfig RTC_DRV_EFI
5655e3fd9e5Sdann frazier	tristate "EFI RTC"
5665e3fd9e5Sdann frazier	depends on IA64
5675e3fd9e5Sdann frazier	help
5685e3fd9e5Sdann frazier	  If you say yes here you will get support for the EFI
5695e3fd9e5Sdann frazier	  Real Time Clock.
5705e3fd9e5Sdann frazier
5715e3fd9e5Sdann frazier	  This driver can also be built as a module. If so, the module
5725e3fd9e5Sdann frazier	  will be called rtc-efi.
5735e3fd9e5Sdann frazier
57402964115SThomas Hommelconfig RTC_DRV_STK17TA8
57502964115SThomas Hommel	tristate "Simtek STK17TA8"
57602964115SThomas Hommel	depends on RTC_CLASS
57702964115SThomas Hommel	help
57802964115SThomas Hommel	  If you say yes here you get support for the
57902964115SThomas Hommel	  Simtek STK17TA8 timekeeping chip.
58002964115SThomas Hommel
58102964115SThomas Hommel	  This driver can also be built as a module. If so, the module
58202964115SThomas Hommel	  will be called rtc-stk17ta8.
58302964115SThomas Hommel
58409a21e56SAlessandro Zummoconfig RTC_DRV_M48T86
58509a21e56SAlessandro Zummo	tristate "ST M48T86/Dallas DS12887"
58609a21e56SAlessandro Zummo	help
58709a21e56SAlessandro Zummo	  If you say Y here you will get support for the
58809a21e56SAlessandro Zummo	  ST M48T86 and Dallas DS12887 RTC chips.
58909a21e56SAlessandro Zummo
59009a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
59109a21e56SAlessandro Zummo	  will be called rtc-m48t86.
59209a21e56SAlessandro Zummo
593d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35
594d1dbd82eSThomas Bogendoerfer	tristate "ST M48T35"
595d1dbd82eSThomas Bogendoerfer	help
596d1dbd82eSThomas Bogendoerfer	  If you say Y here you will get support for the
597d1dbd82eSThomas Bogendoerfer	  ST M48T35 RTC chip.
598d1dbd82eSThomas Bogendoerfer
599d1dbd82eSThomas Bogendoerfer	  This driver can also be built as a module, if so, the module
600d1dbd82eSThomas Bogendoerfer	  will be called "rtc-m48t35".
601d1dbd82eSThomas Bogendoerfer
6022e774c7cSMark Zhanconfig RTC_DRV_M48T59
60394fe7424SKrzysztof Helt	tristate "ST M48T59/M48T08/M48T02"
6042e774c7cSMark Zhan	help
6052e774c7cSMark Zhan	  If you say Y here you will get support for the
60694fe7424SKrzysztof Helt	  ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
60794fe7424SKrzysztof Helt
60894fe7424SKrzysztof Helt	  These chips are usually found in Sun SPARC and UltraSPARC
60994fe7424SKrzysztof Helt	  workstations.
6102e774c7cSMark Zhan
6112e774c7cSMark Zhan	  This driver can also be built as a module, if so, the module
6122e774c7cSMark Zhan	  will be called "rtc-m48t59".
6132e774c7cSMark Zhan
6144f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242
6154f9b9bbaSGeert Uytterhoeven	tristate "Oki MSM6242"
6164f9b9bbaSGeert Uytterhoeven	help
6174f9b9bbaSGeert Uytterhoeven	  If you say yes here you get support for the Oki MSM6242
6184f9b9bbaSGeert Uytterhoeven	  timekeeping chip. It is used in some Amiga models (e.g. A2000).
6194f9b9bbaSGeert Uytterhoeven
6204f9b9bbaSGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
6214f9b9bbaSGeert Uytterhoeven	  will be called rtc-msm6242.
6224f9b9bbaSGeert Uytterhoeven
623cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802
624cca4c231SDavid S. Miller	tristate "TI BQ4802"
625cca4c231SDavid S. Miller	help
626cca4c231SDavid S. Miller	  If you say Y here you will get support for the TI
627cca4c231SDavid S. Miller	  BQ4802 RTC chip.
628cca4c231SDavid S. Miller
629cca4c231SDavid S. Miller	  This driver can also be built as a module. If so, the module
630cca4c231SDavid S. Miller	  will be called rtc-bq4802.
631cca4c231SDavid S. Miller
6324f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01
6334f672ce2SGeert Uytterhoeven	tristate "Ricoh RP5C01"
6344f672ce2SGeert Uytterhoeven	help
6354f672ce2SGeert Uytterhoeven	  If you say yes here you get support for the Ricoh RP5C01
6364f672ce2SGeert Uytterhoeven	  timekeeping chip. It is used in some Amiga models (e.g. A3000
6374f672ce2SGeert Uytterhoeven	  and A4000).
6384f672ce2SGeert Uytterhoeven
6394f672ce2SGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
6404f672ce2SGeert Uytterhoeven	  will be called rtc-rp5c01.
6414f672ce2SGeert Uytterhoeven
64209a21e56SAlessandro Zummoconfig RTC_DRV_V3020
64309a21e56SAlessandro Zummo	tristate "EM Microelectronic V3020"
64409a21e56SAlessandro Zummo	help
64509a21e56SAlessandro Zummo	  If you say yes here you will get support for the
64609a21e56SAlessandro Zummo	  EM Microelectronic v3020 RTC chip.
64709a21e56SAlessandro Zummo
64809a21e56SAlessandro Zummo	  This driver can also be built as a module. If so, the module
64909a21e56SAlessandro Zummo	  will be called rtc-v3020.
65009a21e56SAlessandro Zummo
65135c86bf6SMark Brownconfig RTC_DRV_WM831X
65235c86bf6SMark Brown	tristate "Wolfson Microelectronics WM831x RTC"
65335c86bf6SMark Brown	depends on MFD_WM831X
65435c86bf6SMark Brown	help
65535c86bf6SMark Brown	  If you say yes here you will get support for the RTC subsystem
65635c86bf6SMark Brown	  of the Wolfson Microelectronics WM831X series PMICs.
65735c86bf6SMark Brown
65835c86bf6SMark Brown	  This driver can also be built as a module. If so, the module
65935c86bf6SMark Brown	  will be called "rtc-wm831x".
66035c86bf6SMark Brown
661077eaf5bSMark Brownconfig RTC_DRV_WM8350
662077eaf5bSMark Brown	tristate "Wolfson Microelectronics WM8350 RTC"
663077eaf5bSMark Brown	depends on MFD_WM8350
664077eaf5bSMark Brown	help
665077eaf5bSMark Brown	  If you say yes here you will get support for the RTC subsystem
666077eaf5bSMark Brown	  of the Wolfson Microelectronics WM8350.
667077eaf5bSMark Brown
668077eaf5bSMark Brown	  This driver can also be built as a module. If so, the module
669077eaf5bSMark Brown	  will be called "rtc-wm8350".
670077eaf5bSMark Brown
6710942a71eSRajeev Kumarconfig RTC_DRV_SPEAR
6720942a71eSRajeev Kumar	tristate "SPEAR ST RTC"
6730942a71eSRajeev Kumar	depends on PLAT_SPEAR
6740942a71eSRajeev Kumar	default y
6750942a71eSRajeev Kumar	help
6760942a71eSRajeev Kumar	 If you say Y here you will get support for the RTC found on
6770942a71eSRajeev Kumar	 spear
6780942a71eSRajeev Kumar
679eae854b2SBalaji Raoconfig RTC_DRV_PCF50633
680eae854b2SBalaji Rao	depends on MFD_PCF50633
681eae854b2SBalaji Rao	tristate "NXP PCF50633 RTC"
682eae854b2SBalaji Rao	help
683eae854b2SBalaji Rao	  If you say yes here you get support for the RTC subsystem of the
684eae854b2SBalaji Rao	  NXP PCF50633 used in embedded systems.
685eae854b2SBalaji Rao
686bd207cfbSLinus Walleijconfig RTC_DRV_AB3100
687bd207cfbSLinus Walleij	tristate "ST-Ericsson AB3100 RTC"
688bd207cfbSLinus Walleij	depends on AB3100_CORE
689bd207cfbSLinus Walleij	default y if AB3100_CORE
690bd207cfbSLinus Walleij	help
691bd207cfbSLinus Walleij	  Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC
692bd207cfbSLinus Walleij	  support. This chip contains a battery- and capacitor-backed RTC.
693bd207cfbSLinus Walleij
6940af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500
6950af62f4dSVirupax Sadashivpetimath	tristate "ST-Ericsson AB8500 RTC"
6960af62f4dSVirupax Sadashivpetimath	depends on AB8500_CORE
6970af62f4dSVirupax Sadashivpetimath	help
6980af62f4dSVirupax Sadashivpetimath	  Select this to enable the ST-Ericsson AB8500 power management IC RTC
6990af62f4dSVirupax Sadashivpetimath	  support. This chip contains a battery- and capacitor-backed RTC.
7000af62f4dSVirupax Sadashivpetimath
701afd49a7eSWan ZongShunconfig RTC_DRV_NUC900
702afd49a7eSWan ZongShun	tristate "NUC910/NUC920 RTC driver"
703afd49a7eSWan ZongShun	depends on RTC_CLASS && ARCH_W90X900
704afd49a7eSWan ZongShun	help
705afd49a7eSWan ZongShun	  If you say yes here you get support for the RTC subsystem of the
706afd49a7eSWan ZongShun	  NUC910/NUC920 used in embedded systems.
707bd207cfbSLinus Walleij
70809a21e56SAlessandro Zummocomment "on-CPU RTC drivers"
70909a21e56SAlessandro Zummo
7108ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI
7118ecf6c54SMiguel Aguilar	tristate "TI DaVinci RTC"
7128ecf6c54SMiguel Aguilar	depends on ARCH_DAVINCI_DM365
7138ecf6c54SMiguel Aguilar	help
7148ecf6c54SMiguel Aguilar	  If you say yes here you get support for the RTC on the
7158ecf6c54SMiguel Aguilar	  DaVinci platforms (DM365).
7168ecf6c54SMiguel Aguilar
7178ecf6c54SMiguel Aguilar	  This driver can also be built as a module. If so, the module
7188ecf6c54SMiguel Aguilar	  will be called rtc-davinci.
7198ecf6c54SMiguel Aguilar
720*b224b9acSFabio Estevamconfig RTC_DRV_IMXDI
721*b224b9acSFabio Estevam	tristate "Freescale IMX DryIce Real Time Clock"
722*b224b9acSFabio Estevam	depends on SOC_IMX25
723*b224b9acSFabio Estevam	depends on RTC_CLASS
724*b224b9acSFabio Estevam	help
725*b224b9acSFabio Estevam	   Support for Freescale IMX DryIce RTC
726*b224b9acSFabio Estevam
727*b224b9acSFabio Estevam	   This driver can also be built as a module, if so, the module
728*b224b9acSFabio Estevam	   will be called "rtc-imxdi".
729*b224b9acSFabio Estevam
730db68b189SDavid Brownellconfig RTC_DRV_OMAP
731db68b189SDavid Brownell	tristate "TI OMAP1"
7328cfde8c1SMark A. Greer	depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730 || ARCH_DAVINCI_DA8XX
733db68b189SDavid Brownell	help
7348cfde8c1SMark A. Greer	  Say "yes" here to support the real time clock on TI OMAP1 and
7358cfde8c1SMark A. Greer	  DA8xx/OMAP-L13x chips.  This driver can also be built as a
7368cfde8c1SMark A. Greer	  module called rtc-omap.
737db68b189SDavid Brownell
73816f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC
73916f4efe7SAtul Dahiya	bool
74016f4efe7SAtul Dahiya	help
74116f4efe7SAtul Dahiya	  This will include RTC support for Samsung SoCs. If
74216f4efe7SAtul Dahiya	  you want to include RTC support for any machine, kindly
74316f4efe7SAtul Dahiya	  select this in the respective mach-XXXX/Kconfig file.
74416f4efe7SAtul Dahiya
7451add6781SBen Dooksconfig RTC_DRV_S3C
7461add6781SBen Dooks	tristate "Samsung S3C series SoC RTC"
747b130d5c2SKukjin Kim	depends on ARCH_S3C64XX || HAVE_S3C_RTC
7481add6781SBen Dooks	help
7491add6781SBen Dooks	  RTC (Realtime Clock) driver for the clock inbuilt into the
7501add6781SBen Dooks	  Samsung S3C24XX series of SoCs. This can provide periodic
7511add6781SBen Dooks	  interrupt rates from 1Hz to 64Hz for user programs, and
7521add6781SBen Dooks	  wakeup from Alarm.
7531add6781SBen Dooks
7541add6781SBen Dooks	  The driver currently supports the common features on all the
7551add6781SBen Dooks	  S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
7561add6781SBen Dooks	  and S3C2442.
7571add6781SBen Dooks
7581add6781SBen Dooks	  This driver can also be build as a module. If so, the module
7591add6781SBen Dooks	  will be called rtc-s3c.
7601add6781SBen Dooks
761fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX
762fd507e2fSAlessandro Zummo	tristate "Cirrus Logic EP93XX"
763bb35fb20SJan Engelhardt	depends on ARCH_EP93XX
764fd507e2fSAlessandro Zummo	help
765fd507e2fSAlessandro Zummo	  If you say yes here you get support for the
766fd507e2fSAlessandro Zummo	  RTC embedded in the Cirrus Logic EP93XX processors.
767fd507e2fSAlessandro Zummo
768fd507e2fSAlessandro Zummo	  This driver can also be built as a module. If so, the module
769fd507e2fSAlessandro Zummo	  will be called rtc-ep93xx.
770fd507e2fSAlessandro Zummo
771e842f1c8SRichard Purdieconfig RTC_DRV_SA1100
7723888c090SHaojian Zhuang	tristate "SA11x0/PXA2xx/PXA910"
7733888c090SHaojian Zhuang	depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP
774e842f1c8SRichard Purdie	help
775e842f1c8SRichard Purdie	  If you say Y here you will get access to the real time clock
776e842f1c8SRichard Purdie	  built into your SA11x0 or PXA2xx CPU.
777e842f1c8SRichard Purdie
778e842f1c8SRichard Purdie	  To compile this driver as a module, choose M here: the
779e842f1c8SRichard Purdie	  module will be called rtc-sa1100.
780fd507e2fSAlessandro Zummo
781317a6104SPaul Mundtconfig RTC_DRV_SH
782317a6104SPaul Mundt	tristate "SuperH On-Chip RTC"
783063adc75SPaul Mundt	depends on RTC_CLASS && SUPERH && HAVE_CLK
784317a6104SPaul Mundt	help
785317a6104SPaul Mundt	  Say Y here to enable support for the on-chip RTC found in
786317a6104SPaul Mundt	  most SuperH processors.
787317a6104SPaul Mundt
788317a6104SPaul Mundt 	  To compile this driver as a module, choose M here: the
789317a6104SPaul Mundt	  module will be called rtc-sh.
790317a6104SPaul Mundt
7918417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX
7923e16f6afSAlessandro Zummo	tristate "NEC VR41XX"
793bb35fb20SJan Engelhardt	depends on CPU_VR41XX
7943e16f6afSAlessandro Zummo	help
7953e16f6afSAlessandro Zummo	  If you say Y here you will get access to the real time clock
7963e16f6afSAlessandro Zummo	  built into your NEC VR41XX CPU.
7973e16f6afSAlessandro Zummo
7983e16f6afSAlessandro Zummo	  To compile this driver as a module, choose M here: the
7993e16f6afSAlessandro Zummo	  module will be called rtc-vr41xx.
8008417eb7aSYoichi Yuasa
801a190901cSRussell Kingconfig RTC_DRV_PL030
802a190901cSRussell King	tristate "ARM AMBA PL030 RTC"
803a190901cSRussell King	depends on ARM_AMBA
804a190901cSRussell King	help
805a190901cSRussell King	  If you say Y here you will get access to ARM AMBA
806a190901cSRussell King	  PrimeCell PL030 RTC found on certain ARM SOCs.
807a190901cSRussell King
808a190901cSRussell King	  To compile this driver as a module, choose M here: the
809a190901cSRussell King	  module will be called rtc-pl030.
810a190901cSRussell King
8118ae6e163SDeepak Saxenaconfig RTC_DRV_PL031
8128ae6e163SDeepak Saxena	tristate "ARM AMBA PL031 RTC"
813bb35fb20SJan Engelhardt	depends on ARM_AMBA
8148ae6e163SDeepak Saxena	help
8158ae6e163SDeepak Saxena	  If you say Y here you will get access to ARM AMBA
81609a21e56SAlessandro Zummo	  PrimeCell PL031 RTC found on certain ARM SOCs.
8178ae6e163SDeepak Saxena
8188ae6e163SDeepak Saxena	  To compile this driver as a module, choose M here: the
8198ae6e163SDeepak Saxena	  module will be called rtc-pl031.
8208ae6e163SDeepak Saxena
821fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X
822fa04e78bSHans-Christian Egtvedt	tristate "AT32AP700X series RTC"
823bb35fb20SJan Engelhardt	depends on PLATFORM_AT32AP
824fa04e78bSHans-Christian Egtvedt	help
825fa04e78bSHans-Christian Egtvedt	  Driver for the internal RTC (Realtime Clock) on Atmel AVR32
826fa04e78bSHans-Christian Egtvedt	  AT32AP700x family processors.
827fa04e78bSHans-Christian Egtvedt
8287fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200
82924cecc1bSNicolas Ferre	tristate "AT91RM9200 or some AT91SAM9 RTC"
830938f970eSNicolas Ferre	depends on ARCH_AT91
831788b1fc6SAndrew Victor	help
8324cdf854fSDavid Brownell	  Driver for the internal RTC (Realtime Clock) module found on
83324cecc1bSNicolas Ferre	  Atmel AT91RM9200's and some  AT91SAM9 chips. On AT91SAM9 chips
8344cdf854fSDavid Brownell	  this is powered by the backup power supply.
8354cdf854fSDavid Brownell
8364cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9
83724cecc1bSNicolas Ferre	tristate "AT91SAM9x/AT91CAP9 RTT as RTC"
8384cdf854fSDavid Brownell	depends on ARCH_AT91 && !(ARCH_AT91RM9200 || ARCH_AT91X40)
8394cdf854fSDavid Brownell	help
8406b71dbf6SStelian Pop	  RTC driver for the Atmel AT91SAM9x and AT91CAP9 internal RTT
8416b71dbf6SStelian Pop	  (Real Time Timer). These timers are powered by the backup power
8426b71dbf6SStelian Pop	  supply (such as a small coin cell battery), but do not need to
8436b71dbf6SStelian Pop	  be used as RTCs.
8444cdf854fSDavid Brownell
84524cecc1bSNicolas Ferre	  (On AT91SAM9rl and AT91SAM9G45 chips you probably want to use the
84624cecc1bSNicolas Ferre	  dedicated RTC module and leave the RTT available for other uses.)
8474cdf854fSDavid Brownell
8484cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_RTT
8494cdf854fSDavid Brownell	int
8504cdf854fSDavid Brownell	range 0 1
8514cdf854fSDavid Brownell	default 0
8524cdf854fSDavid Brownell	prompt "RTT module Number" if ARCH_AT91SAM9263
8534cdf854fSDavid Brownell	depends on RTC_DRV_AT91SAM9
8544cdf854fSDavid Brownell	help
8554cdf854fSDavid Brownell	  More than one RTT module is available. You can choose which
8564cdf854fSDavid Brownell	  one will be used as an RTC. The default of zero is normally
8574cdf854fSDavid Brownell	  OK to use, though some systems use that for non-RTC purposes.
8584cdf854fSDavid Brownell
8594cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_GPBR
8604cdf854fSDavid Brownell	int
8614cdf854fSDavid Brownell	range 0 3 if !ARCH_AT91SAM9263
8624cdf854fSDavid Brownell	range 0 15 if ARCH_AT91SAM9263
8634cdf854fSDavid Brownell	default 0
8644cdf854fSDavid Brownell	prompt "Backup Register Number"
8654cdf854fSDavid Brownell	depends on RTC_DRV_AT91SAM9
8664cdf854fSDavid Brownell	help
8674cdf854fSDavid Brownell	  The RTC driver needs to use one of the General Purpose Backup
8684cdf854fSDavid Brownell	  Registers (GPBRs) as well as the RTT. You can choose which one
8694cdf854fSDavid Brownell	  will be used. The default of zero is normally OK to use, but
8704cdf854fSDavid Brownell	  on some systems other software needs to use that register.
871788b1fc6SAndrew Victor
87245fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX
87345fd8a0cSManuel Lauss	tristate "Au1xxx Counter0 RTC support"
87442a4f17dSManuel Lauss	depends on MIPS_ALCHEMY
87545fd8a0cSManuel Lauss	help
87645fd8a0cSManuel Lauss	  This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
87745fd8a0cSManuel Lauss	  counter) to be used as a RTC.
87845fd8a0cSManuel Lauss
87945fd8a0cSManuel Lauss	  This driver can also be built as a module. If so, the module
88045fd8a0cSManuel Lauss	  will be called rtc-au1xxx.
88145fd8a0cSManuel Lauss
8828cc75c9aSWu, Bryanconfig RTC_DRV_BFIN
8838cc75c9aSWu, Bryan	tristate "Blackfin On-Chip RTC"
8847f604599SGraf Yang	depends on BLACKFIN && !BF561
8858cc75c9aSWu, Bryan	help
8868cc75c9aSWu, Bryan	  If you say yes here you will get support for the
8878cc75c9aSWu, Bryan	  Blackfin On-Chip Real Time Clock.
8888cc75c9aSWu, Bryan
8898cc75c9aSWu, Bryan	  This driver can also be built as a module. If so, the module
8908cc75c9aSWu, Bryan	  will be called rtc-bfin.
8918cc75c9aSWu, Bryan
892e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313
893e9f2bd81SNobuhiro Iwamatsu	tristate "Ricoh RS5C313"
894bb35fb20SJan Engelhardt	depends on SH_LANDISK
895e9f2bd81SNobuhiro Iwamatsu	help
896e9f2bd81SNobuhiro Iwamatsu	  If you say yes here you get support for the Ricoh RS5C313 RTC chips.
897e9f2bd81SNobuhiro Iwamatsu
8983afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC
8993afe6d04SGeert Uytterhoeven	tristate "Generic RTC support"
9003afe6d04SGeert Uytterhoeven	# Please consider writing a new RTC driver instead of using the generic
9013afe6d04SGeert Uytterhoeven	# RTC abstraction
90247c8a08bSPaul Mundt	depends on PARISC || M68K || PPC || SUPERH32
9039eb16864SKyle McMartin	help
9043afe6d04SGeert Uytterhoeven	  Say Y or M here to enable RTC support on systems using the generic
9053afe6d04SGeert Uytterhoeven	  RTC abstraction. If you do not know what you are doing, you should
9069eb16864SKyle McMartin	  just say Y.
9079eb16864SKyle McMartin
908dc944368SRobert Jarzmikconfig RTC_DRV_PXA
909dc944368SRobert Jarzmik       tristate "PXA27x/PXA3xx"
910dc944368SRobert Jarzmik       depends on ARCH_PXA
911dc944368SRobert Jarzmik       help
912dc944368SRobert Jarzmik         If you say Y here you will get access to the real time clock
913dc944368SRobert Jarzmik         built into your PXA27x or PXA3xx CPU.
914dc944368SRobert Jarzmik
915dc944368SRobert Jarzmik         This RTC driver uses PXA RTC registers available since pxa27x
916dc944368SRobert Jarzmik         series (RDxR, RYxR) instead of legacy RCNR, RTAR.
917dc944368SRobert Jarzmik
918f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500
919f77fbdf9SAlexey Charkov	tristate "VIA/WonderMedia 85xx SoC RTC"
920f77fbdf9SAlexey Charkov	depends on ARCH_VT8500
921f77fbdf9SAlexey Charkov	help
922f77fbdf9SAlexey Charkov	  If you say Y here you will get access to the real time clock
923f77fbdf9SAlexey Charkov	  built into your VIA VT8500 SoC or its relatives.
924f77fbdf9SAlexey Charkov
925dc944368SRobert Jarzmik
9267a138edeSDavid S. Millerconfig RTC_DRV_SUN4V
9277a138edeSDavid S. Miller	bool "SUN4V Hypervisor RTC"
9287a138edeSDavid S. Miller	depends on SPARC64
9297a138edeSDavid S. Miller	help
9307a138edeSDavid S. Miller	  If you say Y here you will get support for the Hypervisor
9317a138edeSDavid S. Miller	  based RTC on SUN4V systems.
9327a138edeSDavid S. Miller
933de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE
934de2cf332SDavid S. Miller	bool "Starfire RTC"
935de2cf332SDavid S. Miller	depends on SPARC64
936de2cf332SDavid S. Miller	help
937de2cf332SDavid S. Miller	  If you say Y here you will get support for the RTC found on
938de2cf332SDavid S. Miller	  Starfire systems.
939de2cf332SDavid S. Miller
9400e149233SAtsushi Nemotoconfig RTC_DRV_TX4939
9410e149233SAtsushi Nemoto	tristate "TX4939 SoC"
9420e149233SAtsushi Nemoto	depends on SOC_TX4939
9430e149233SAtsushi Nemoto	help
9440e149233SAtsushi Nemoto	  Driver for the internal RTC (Realtime Clock) module found on
9450e149233SAtsushi Nemoto	  Toshiba TX4939 SoC.
9460e149233SAtsushi Nemoto
947defb4514SSaeed Bisharaconfig RTC_DRV_MV
948defb4514SSaeed Bishara	tristate "Marvell SoC RTC"
949da43243eSSaeed Bishara	depends on ARCH_KIRKWOOD || ARCH_DOVE
950defb4514SSaeed Bishara	help
951defb4514SSaeed Bishara	  If you say yes here you will get support for the in-chip RTC
952defb4514SSaeed Bishara	  that can be found in some of Marvell's SoC devices, such as
953defb4514SSaeed Bishara	  the Kirkwood 88F6281 and 88F6192.
954defb4514SSaeed Bishara
955defb4514SSaeed Bishara	  This driver can also be built as a module. If so, the module
956defb4514SSaeed Bishara	  will be called rtc-mv.
957defb4514SSaeed Bishara
9580b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3
9590b5f037aSGeert Uytterhoeven	tristate "PS3 RTC"
9600b5f037aSGeert Uytterhoeven	depends on PPC_PS3
9610b5f037aSGeert Uytterhoeven	help
9620b5f037aSGeert Uytterhoeven	  If you say yes here you will get support for the RTC on PS3.
9630b5f037aSGeert Uytterhoeven
9640b5f037aSGeert Uytterhoeven	  This driver can also be built as a module. If so, the module
9650b5f037aSGeert Uytterhoeven	  will be called rtc-ps3.
9660b5f037aSGeert Uytterhoeven
967aa958f57SLinus Walleijconfig RTC_DRV_COH901331
968aa958f57SLinus Walleij	tristate "ST-Ericsson COH 901 331 RTC"
969aa958f57SLinus Walleij	depends on ARCH_U300
970aa958f57SLinus Walleij	help
971aa958f57SLinus Walleij	  If you say Y here you will get access to ST-Ericsson
972aa958f57SLinus Walleij	  COH 901 331 RTC clock found in some ST-Ericsson Mobile
973aa958f57SLinus Walleij	  Platforms.
974aa958f57SLinus Walleij
975aa958f57SLinus Walleij	  This driver can also be built as a module. If so, the module
976aa958f57SLinus Walleij	  will be called "rtc-coh901331".
977aa958f57SLinus Walleij
978aa958f57SLinus Walleij
979df17f631Sdmitry pervushinconfig RTC_DRV_STMP
98046b21218SWolfram Sang	tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC"
98146b21218SWolfram Sang	depends on ARCH_MXS
982df17f631Sdmitry pervushin	help
983df17f631Sdmitry pervushin	  If you say yes here you will get support for the onboard
98446b21218SWolfram Sang	  STMP3xxx/i.MX23/i.MX28 RTC.
985df17f631Sdmitry pervushin
986df17f631Sdmitry pervushin	  This driver can also be built as a module. If so, the module
987df17f631Sdmitry pervushin	  will be called rtc-stmp3xxx.
988df17f631Sdmitry pervushin
989d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP
990d3c7a3f7SDaniel Ribeiro	tristate "PCAP RTC"
991d3c7a3f7SDaniel Ribeiro	depends on EZX_PCAP
992d3c7a3f7SDaniel Ribeiro	help
993d3c7a3f7SDaniel Ribeiro	  If you say Y here you will get support for the RTC found on
994d3c7a3f7SDaniel Ribeiro	  the PCAP2 ASIC used on some Motorola phones.
995d3c7a3f7SDaniel Ribeiro
9961c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX
9971c97872bSUwe Kleine-König	depends on MFD_MC13XXX
9981c97872bSUwe Kleine-König	tristate "Freescale MC13xxx RTC"
99943299f28SUwe Kleine-König	help
10001c97872bSUwe Kleine-König	  This enables support for the RTCs found on Freescale's PMICs
10011c97872bSUwe Kleine-König	  MC13783 and MC13892.
100243299f28SUwe Kleine-König
100350aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121
100450aae724SAnatolij Gustschin	tristate "Freescale MPC5121 built-in RTC"
1005955dbea3SDmitry Eremin-Solenikov	depends on PPC_MPC512x || PPC_MPC52xx
100650aae724SAnatolij Gustschin	help
100750aae724SAnatolij Gustschin	  If you say yes here you will get support for the
1008955dbea3SDmitry Eremin-Solenikov	  built-in RTC on MPC5121 or on MPC5200.
100950aae724SAnatolij Gustschin
101050aae724SAnatolij Gustschin	  This driver can also be built as a module. If so, the module
101150aae724SAnatolij Gustschin	  will be called rtc-mpc5121.
101250aae724SAnatolij Gustschin
10133bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740
10143bf0eea8SLars-Peter Clausen	tristate "Ingenic JZ4740 SoC"
10153bf0eea8SLars-Peter Clausen	depends on RTC_CLASS
10163bf0eea8SLars-Peter Clausen	depends on MACH_JZ4740
10173bf0eea8SLars-Peter Clausen	help
10183bf0eea8SLars-Peter Clausen	  If you say yes here you get support for the Ingenic JZ4740 SoC RTC
10193bf0eea8SLars-Peter Clausen	  controller.
10203bf0eea8SLars-Peter Clausen
10213bf0eea8SLars-Peter Clausen	  This driver can also be buillt as a module. If so, the module
10223bf0eea8SLars-Peter Clausen	  will be called rtc-jz4740.
10233bf0eea8SLars-Peter Clausen
10249aa449beSKevin Wellsconfig RTC_DRV_LPC32XX
10259aa449beSKevin Wells	depends on ARCH_LPC32XX
10269aa449beSKevin Wells	tristate "NXP LPC32XX RTC"
10279aa449beSKevin Wells	help
10289aa449beSKevin Wells	  This enables support for the NXP RTC in the LPC32XX
10299aa449beSKevin Wells
10309aa449beSKevin Wells	  This driver can also be buillt as a module. If so, the module
10319aa449beSKevin Wells	  will be called rtc-lpc32xx.
10329aa449beSKevin Wells
10339a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX
10349a9a54adSAnirudh Ghayal	tristate "Qualcomm PMIC8XXX RTC"
10359a9a54adSAnirudh Ghayal	depends on MFD_PM8XXX
10369a9a54adSAnirudh Ghayal	help
10379a9a54adSAnirudh Ghayal	  If you say yes here you get support for the
10389a9a54adSAnirudh Ghayal	  Qualcomm PMIC8XXX RTC.
10399a9a54adSAnirudh Ghayal
10409a9a54adSAnirudh Ghayal	  To compile this driver as a module, choose M here: the
10419a9a54adSAnirudh Ghayal	  module will be called rtc-pm8xxx.
10429a9a54adSAnirudh Ghayal
1043ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA
1044ff859ba6SAndrew Chew	tristate "NVIDIA Tegra Internal RTC driver"
1045ff859ba6SAndrew Chew	depends on RTC_CLASS && ARCH_TEGRA
1046ff859ba6SAndrew Chew	help
1047ff859ba6SAndrew Chew	  If you say yes here you get support for the
1048ff859ba6SAndrew Chew	  Tegra 200 series internal RTC module.
1049ff859ba6SAndrew Chew
1050ff859ba6SAndrew Chew	  This drive can also be built as a module. If so, the module
1051ff859ba6SAndrew Chew	  will be called rtc-tegra.
1052ff859ba6SAndrew Chew
1053dd196a2bSChris Metcalfconfig RTC_DRV_TILE
1054dd196a2bSChris Metcalf	tristate "Tilera hypervisor RTC support"
1055dd196a2bSChris Metcalf	depends on TILE
1056dd196a2bSChris Metcalf	help
1057dd196a2bSChris Metcalf	  Enable support for the Linux driver side of the Tilera
1058dd196a2bSChris Metcalf	  hypervisor's real-time clock interface.
1059dd196a2bSChris Metcalf
10602809e80bSGuan Xuetaoconfig RTC_DRV_PUV3
10612809e80bSGuan Xuetao	tristate "PKUnity v3 RTC support"
10622809e80bSGuan Xuetao	depends on ARCH_PUV3
10632809e80bSGuan Xuetao	help
10642809e80bSGuan Xuetao	  This enables support for the RTC in the PKUnity-v3 SoCs.
10652809e80bSGuan Xuetao
10662809e80bSGuan Xuetao	  This drive can also be built as a module. If so, the module
10672809e80bSGuan Xuetao	  will be called rtc-puv3.
10682809e80bSGuan Xuetao
1069b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1
1070b4f0b880Szhao zhang	tristate "loongson1 RTC support"
1071b4f0b880Szhao zhang	depends on MACH_LOONGSON1
1072b4f0b880Szhao zhang	help
1073b4f0b880Szhao zhang	  This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year
1074b4f0b880Szhao zhang	  counter) to be used as a RTC.
1075b4f0b880Szhao zhang
1076b4f0b880Szhao zhang	  This driver can also be built as a module. If so, the module
1077b4f0b880Szhao zhang	  will be called rtc-ls1x.
1078b4f0b880Szhao zhang
1079*b224b9acSFabio Estevamconfig RTC_MXC
1080*b224b9acSFabio Estevam	tristate "Freescale MXC Real Time Clock"
1081*b224b9acSFabio Estevam	depends on ARCH_MXC
1082*b224b9acSFabio Estevam	depends on RTC_CLASS
1083*b224b9acSFabio Estevam	help
1084*b224b9acSFabio Estevam	   If you say yes here you get support for the Freescale MXC
1085*b224b9acSFabio Estevam	   RTC module.
1086*b224b9acSFabio Estevam
1087*b224b9acSFabio Estevam	   This driver can also be built as a module, if so, the module
1088*b224b9acSFabio Estevam	   will be called "rtc-mxc".
1089*b224b9acSFabio Estevam
1090bb35fb20SJan Engelhardtendif # RTC_CLASS
1091