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 default y 230c86edc0SAlessandro Zummo help 247ca1d488SDavid Brownell If you say yes here, the system time (wall clock) will be set using 257ca1d488SDavid Brownell the value read from a specified RTC device. This is useful to avoid 267ca1d488SDavid Brownell unnecessary fsck runs at boot time, and to network better. 270c86edc0SAlessandro Zummo 280c86edc0SAlessandro Zummoconfig RTC_HCTOSYS_DEVICE 297ca1d488SDavid Brownell string "RTC used to set the system time" 300c86edc0SAlessandro Zummo depends on RTC_HCTOSYS = y 310c86edc0SAlessandro Zummo default "rtc0" 320c86edc0SAlessandro Zummo help 337ca1d488SDavid Brownell The RTC device that will be used to (re)initialize the system 347ca1d488SDavid Brownell clock, usually rtc0. Initialization is done when the system 35779d2089SDavid Brownell starts up, and when it resumes from a low power state. This 36779d2089SDavid Brownell device should record time in UTC, since the kernel won't do 37779d2089SDavid Brownell timezone correction. 387ca1d488SDavid Brownell 3955ff1abaSDavid Brownell The driver for this RTC device must be loaded before late_initcall 4055ff1abaSDavid Brownell functions run, so it must usually be statically linked. 4155ff1abaSDavid Brownell 427ca1d488SDavid Brownell This clock should be battery-backed, so that it reads the correct 437ca1d488SDavid Brownell time when the system boots from a power-off state. Otherwise, your 447ca1d488SDavid Brownell system will need an external clock source (like an NTP server). 457ca1d488SDavid Brownell 467ca1d488SDavid Brownell If the clock you specify here is not battery backed, it may still 477ca1d488SDavid Brownell be useful to reinitialize system time when resuming from system 487ca1d488SDavid Brownell sleep states. Do not specify an RTC here unless it stays powered 497ca1d488SDavid Brownell during all this system's supported sleep states. 500c86edc0SAlessandro Zummo 519e86ecb6SDavid Brownellconfig RTC_DEBUG 529e86ecb6SDavid Brownell bool "RTC debug support" 539e86ecb6SDavid Brownell help 549e86ecb6SDavid Brownell Say yes here to enable debugging support in the RTC framework 559e86ecb6SDavid Brownell and individual RTC drivers. 569e86ecb6SDavid Brownell 570c86edc0SAlessandro Zummocomment "RTC interfaces" 580c86edc0SAlessandro Zummo 59c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS 60e40659c5SDavid Brownell boolean "/sys/class/rtc/rtcN (sysfs)" 61bb35fb20SJan Engelhardt depends on SYSFS 628dc08395SKevin Hilman default RTC_CLASS 63c5c3e192SAlessandro Zummo help 649e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using sysfs interfaces, 659e86ecb6SDavid Brownell /sys/class/rtc/rtc0 through /sys/.../rtcN. 66c5c3e192SAlessandro Zummo 67ae64d169SAlessandro Zummo If unsure, say Y. 68c5c3e192SAlessandro Zummo 69728a2947SAlessandro Zummoconfig RTC_INTF_PROC 7092589c98SKim, Milo boolean "/proc/driver/rtc (procfs for rtcN)" 71bb35fb20SJan Engelhardt depends on PROC_FS 728dc08395SKevin Hilman default RTC_CLASS 73728a2947SAlessandro Zummo help 7492589c98SKim, Milo Say yes here if you want to use your system clock RTC through 7592589c98SKim, Milo the proc interface, /proc/driver/rtc. 7692589c98SKim, Milo Other RTCs will not be available through that API. 7792589c98SKim, Milo If there is no RTC for the system clock, then the first RTC(rtc0) 7892589c98SKim, Milo is used by default. 79728a2947SAlessandro Zummo 80ae64d169SAlessandro Zummo If unsure, say Y. 81728a2947SAlessandro Zummo 82e824290eSAlessandro Zummoconfig RTC_INTF_DEV 83e40659c5SDavid Brownell boolean "/dev/rtcN (character devices)" 848dc08395SKevin Hilman 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" 1306b8029faSVenu Byravarasu depends on 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 1382985c29cSQiao Zhouconfig RTC_DRV_88PM80X 1392985c29cSQiao Zhou tristate "Marvell 88PM80x" 1406b8029faSVenu Byravarasu depends on I2C && MFD_88PM800 1412985c29cSQiao Zhou help 1422985c29cSQiao Zhou If you say yes here you get support for RTC function in Marvell 1432985c29cSQiao Zhou 88PM80x chips. 1442985c29cSQiao Zhou 1452985c29cSQiao Zhou This driver can also be built as a module. If so, the module 1462985c29cSQiao Zhou will be called rtc-88pm80x. 1472985c29cSQiao Zhou 14809a21e56SAlessandro Zummoconfig RTC_DRV_DS1307 149a2166858SMatthias Fuchs tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025" 15009a21e56SAlessandro Zummo help 15109a21e56SAlessandro Zummo If you say yes here you get support for various compatible RTC 15209a21e56SAlessandro Zummo chips (often with battery backup) connected with I2C. This driver 15309a21e56SAlessandro Zummo should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00, 154a2166858SMatthias Fuchs EPSON RX-8025 and probably other chips. In some cases the RTC 155a2166858SMatthias Fuchs must already have been initialized (by manufacturing or a 156a2166858SMatthias Fuchs bootloader). 15709a21e56SAlessandro Zummo 15809a21e56SAlessandro Zummo The first seven registers on these chips hold an RTC, and other 15909a21e56SAlessandro Zummo registers may add features such as NVRAM, a trickle charger for 160682d73f6SDavid Brownell the RTC/NVRAM backup power, and alarms. NVRAM is visible in 161682d73f6SDavid Brownell sysfs, but other chip features may not be available. 16209a21e56SAlessandro Zummo 16309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 16409a21e56SAlessandro Zummo will be called rtc-ds1307. 16509a21e56SAlessandro Zummo 166bf4994d7SScott Woodconfig RTC_DRV_DS1374 16709b6bdb3SAlessandro Zummo tristate "Dallas/Maxim DS1374" 1686b8029faSVenu Byravarasu depends on I2C 169bf4994d7SScott Wood help 170bf4994d7SScott Wood If you say yes here you get support for Dallas Semiconductor 171bf4994d7SScott Wood DS1374 real-time clock chips. If an interrupt is associated 172bf4994d7SScott Wood with the device, the alarm functionality is supported. 173bf4994d7SScott Wood 174bf4994d7SScott Wood This driver can also be built as a module. If so, the module 175bf4994d7SScott Wood will be called rtc-ds1374. 176bf4994d7SScott Wood 17709a21e56SAlessandro Zummoconfig RTC_DRV_DS1672 17809a21e56SAlessandro Zummo tristate "Dallas/Maxim DS1672" 17909a21e56SAlessandro Zummo help 18009a21e56SAlessandro Zummo If you say yes here you get support for the 18109a21e56SAlessandro Zummo Dallas/Maxim DS1672 timekeeping chip. 18209a21e56SAlessandro Zummo 18309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 18409a21e56SAlessandro Zummo will be called rtc-ds1672. 18509a21e56SAlessandro Zummo 186c03675f0SRoy Zangconfig RTC_DRV_DS3232 187c03675f0SRoy Zang tristate "Dallas/Maxim DS3232" 1886b8029faSVenu Byravarasu depends on I2C 189c03675f0SRoy Zang help 190c03675f0SRoy Zang If you say yes here you get support for Dallas Semiconductor 191f46418c5SLan Chunhe-B25806 DS3232 real-time clock chips. If an interrupt is associated 192f46418c5SLan Chunhe-B25806 with the device, the alarm functionality is supported. 193c03675f0SRoy Zang 194c03675f0SRoy Zang This driver can also be built as a module. If so, the module 195c03675f0SRoy Zang will be called rtc-ds3232. 196c03675f0SRoy Zang 19709a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900 19809b6bdb3SAlessandro Zummo tristate "Maxim MAX6900" 19909a21e56SAlessandro Zummo help 20009a21e56SAlessandro Zummo If you say yes here you will get support for the 20109a21e56SAlessandro Zummo Maxim MAX6900 I2C RTC chip. 20209a21e56SAlessandro Zummo 20309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 20409a21e56SAlessandro Zummo will be called rtc-max6900. 20509a21e56SAlessandro Zummo 20694c01ab6SStephen Warrenconfig RTC_DRV_MAX8907 20794c01ab6SStephen Warren tristate "Maxim MAX8907" 20894c01ab6SStephen Warren depends on MFD_MAX8907 20994c01ab6SStephen Warren help 21094c01ab6SStephen Warren If you say yes here you will get support for the 21194c01ab6SStephen Warren RTC of Maxim MAX8907 PMIC. 21294c01ab6SStephen Warren 21394c01ab6SStephen Warren This driver can also be built as a module. If so, the module 21494c01ab6SStephen Warren will be called rtc-max8907. 21594c01ab6SStephen Warren 216a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925 217a39069f6SHaojian Zhuang tristate "Maxim MAX8925" 218a39069f6SHaojian Zhuang depends on MFD_MAX8925 219a39069f6SHaojian Zhuang help 220a39069f6SHaojian Zhuang If you say yes here you will get support for the 221a39069f6SHaojian Zhuang RTC of Maxim MAX8925 PMIC. 222a39069f6SHaojian Zhuang 223a39069f6SHaojian Zhuang This driver can also be built as a module. If so, the module 224a39069f6SHaojian Zhuang will be called rtc-max8925. 225a39069f6SHaojian Zhuang 2269b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998 2279b16c0a4SJoonyoung Shim tristate "Maxim MAX8998" 2289b16c0a4SJoonyoung Shim depends on MFD_MAX8998 2299b16c0a4SJoonyoung Shim help 2309b16c0a4SJoonyoung Shim If you say yes here you will get support for the 2319b16c0a4SJoonyoung Shim RTC of Maxim MAX8998 PMIC. 2329b16c0a4SJoonyoung Shim 2339b16c0a4SJoonyoung Shim This driver can also be built as a module. If so, the module 2349b16c0a4SJoonyoung Shim will be called rtc-max8998. 2359b16c0a4SJoonyoung Shim 23609a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372 2375d4529beSPaul Mundt tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A" 23809a21e56SAlessandro Zummo help 23909a21e56SAlessandro Zummo If you say yes here you get support for the 2405d4529beSPaul Mundt Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips. 24109a21e56SAlessandro Zummo 24209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 24309a21e56SAlessandro Zummo will be called rtc-rs5c372. 24409a21e56SAlessandro Zummo 24509a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208 24609b6bdb3SAlessandro Zummo tristate "Intersil ISL1208" 24709a21e56SAlessandro Zummo help 24809a21e56SAlessandro Zummo If you say yes here you get support for the 24909b6bdb3SAlessandro Zummo Intersil ISL1208 RTC chip. 25009a21e56SAlessandro Zummo 25109a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 25209a21e56SAlessandro Zummo will be called rtc-isl1208. 25309a21e56SAlessandro Zummo 254d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022 255d6c7428fSRoman Fietze tristate "Intersil ISL12022" 256d6c7428fSRoman Fietze help 257d6c7428fSRoman Fietze If you say yes here you get support for the 258d6c7428fSRoman Fietze Intersil ISL12022 RTC chip. 259d6c7428fSRoman Fietze 260d6c7428fSRoman Fietze This driver can also be built as a module. If so, the module 261d6c7428fSRoman Fietze will be called rtc-isl12022. 262d6c7428fSRoman Fietze 26309a21e56SAlessandro Zummoconfig RTC_DRV_X1205 26409a21e56SAlessandro Zummo tristate "Xicor/Intersil X1205" 26509a21e56SAlessandro Zummo help 26609a21e56SAlessandro Zummo If you say yes here you get support for the 26709a21e56SAlessandro Zummo Xicor/Intersil X1205 RTC chip. 26809a21e56SAlessandro Zummo 26909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 27009a21e56SAlessandro Zummo will be called rtc-x1205. 27109a21e56SAlessandro Zummo 272f803f0d0SThierry Redingconfig RTC_DRV_PCF8523 273f803f0d0SThierry Reding tristate "NXP PCF8523" 274f803f0d0SThierry Reding help 275f803f0d0SThierry Reding If you say yes here you get support for the NXP PCF8523 RTC 276f803f0d0SThierry Reding chips. 277f803f0d0SThierry Reding 278f803f0d0SThierry Reding This driver can also be built as a module. If so, the module 279f803f0d0SThierry Reding will be called rtc-pcf8523. 280f803f0d0SThierry Reding 28109a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563 28209a21e56SAlessandro Zummo tristate "Philips PCF8563/Epson RTC8564" 28309a21e56SAlessandro Zummo help 28409a21e56SAlessandro Zummo If you say yes here you get support for the 28509a21e56SAlessandro Zummo Philips PCF8563 RTC chip. The Epson RTC8564 28609a21e56SAlessandro Zummo should work as well. 28709a21e56SAlessandro Zummo 28809a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 28909a21e56SAlessandro Zummo will be called rtc-pcf8563. 29009a21e56SAlessandro Zummo 29109a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583 29209a21e56SAlessandro Zummo tristate "Philips PCF8583" 29309a21e56SAlessandro Zummo help 29409a21e56SAlessandro Zummo If you say yes here you get support for the Philips PCF8583 29509a21e56SAlessandro Zummo RTC chip found on Acorn RiscPCs. This driver supports the 29609a21e56SAlessandro Zummo platform specific method of retrieving the current year from 29709a21e56SAlessandro Zummo the RTC's SRAM. It will work on other platforms with the same 29809a21e56SAlessandro Zummo chip, but the year will probably have to be tweaked. 29909a21e56SAlessandro Zummo 30009a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 30109a21e56SAlessandro Zummo will be called rtc-pcf8583. 30209a21e56SAlessandro Zummo 303caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80 304f30281f4SDaniel Glockner tristate "ST M41T62/65/M41T80/81/82/83/84/85/87" 305caaff562SAtsushi Nemoto help 306d3a126fcSSteven A. Falco If you say Y here you will get support for the ST M41T60 307d3a126fcSSteven A. Falco and M41T80 RTC chips series. Currently, the following chips are 308f30281f4SDaniel Glockner supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84, 309d3a126fcSSteven A. Falco M41ST85, and M41ST87. 310caaff562SAtsushi Nemoto 311caaff562SAtsushi Nemoto This driver can also be built as a module. If so, the module 312caaff562SAtsushi Nemoto will be called rtc-m41t80. 313caaff562SAtsushi Nemoto 314617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT 315d3a126fcSSteven A. Falco bool "ST M41T65/M41T80 series RTC watchdog timer" 316617780d2SAtsushi Nemoto depends on RTC_DRV_M41T80 317617780d2SAtsushi Nemoto help 318617780d2SAtsushi Nemoto If you say Y here you will get support for the 319d3a126fcSSteven A. Falco watchdog timer in the ST M41T60 and M41T80 RTC chips series. 320617780d2SAtsushi Nemoto 3211ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K 3221ce7c83fSPiotr Ziecik tristate "TI BQ32000" 3231ce7c83fSPiotr Ziecik help 3241ce7c83fSPiotr Ziecik If you say Y here you will get support for the TI 3251ce7c83fSPiotr Ziecik BQ32000 I2C RTC chip. 3261ce7c83fSPiotr Ziecik 3271ce7c83fSPiotr Ziecik This driver can also be built as a module. If so, the module 3281ce7c83fSPiotr Ziecik will be called rtc-bq32k. 3291ce7c83fSPiotr Ziecik 330afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM 331afd8d0f9SDavid Brownell tristate "TI DaVinci DM355 EVM RTC" 332afd8d0f9SDavid Brownell depends on MFD_DM355EVM_MSP 333afd8d0f9SDavid Brownell help 334afd8d0f9SDavid Brownell Supports the RTC firmware in the MSP430 on the DM355 EVM. 335afd8d0f9SDavid Brownell 3360c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330 3370c4a59feSTony Lindgren boolean "TI TWL92330/Menelaus" 338bb35fb20SJan Engelhardt depends on MENELAUS 3390c4a59feSTony Lindgren help 3400c4a59feSTony Lindgren If you say yes here you get support for the RTC on the 34101dd2fbfSMatt LaPlante TWL92330 "Menelaus" power management chip, used with OMAP2 3420c4a59feSTony Lindgren platforms. The support is integrated with the rest of 3430c4a59feSTony Lindgren the Menelaus driver; it's not separate module. 3440c4a59feSTony Lindgren 345f96411abSDavid Brownellconfig RTC_DRV_TWL4030 346a6b49ffdSBalaji T K tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0" 3476b8029faSVenu Byravarasu depends on TWL4030_CORE 348f96411abSDavid Brownell help 349f96411abSDavid Brownell If you say yes here you get support for the RTC on the 350a6b49ffdSBalaji T K TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms. 351f96411abSDavid Brownell 352f96411abSDavid Brownell This driver can also be built as a module. If so, the module 353a6b49ffdSBalaji T K will be called rtc-twl. 354f96411abSDavid Brownell 355*dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X 356*dc59ed38SLaxman Dewangan tristate "TI TPS6586X RTC driver" 357*dc59ed38SLaxman Dewangan depends on MFD_TPS6586X 358*dc59ed38SLaxman Dewangan help 359*dc59ed38SLaxman Dewangan TI Power Managment IC TPS6586X supports RTC functionality 360*dc59ed38SLaxman Dewangan along with alarm. This driver supports the RTC driver for 361*dc59ed38SLaxman Dewangan the TPS6586X RTC module. 362*dc59ed38SLaxman Dewangan 3630e783980SVenu Byravarasuconfig RTC_DRV_TPS65910 3640e783980SVenu Byravarasu tristate "TI TPS65910 RTC driver" 3650e783980SVenu Byravarasu depends on RTC_CLASS && MFD_TPS65910 3660e783980SVenu Byravarasu help 3670e783980SVenu Byravarasu If you say yes here you get support for the RTC on the 3680e783980SVenu Byravarasu TPS65910 chips. 3690e783980SVenu Byravarasu 3700e783980SVenu Byravarasu This driver can also be built as a module. If so, the module 3710e783980SVenu Byravarasu will be called rtc-tps65910. 3720e783980SVenu Byravarasu 37390829c08SVenu Byravarasuconfig RTC_DRV_RC5T583 37490829c08SVenu Byravarasu tristate "RICOH 5T583 RTC driver" 37590829c08SVenu Byravarasu depends on MFD_RC5T583 37690829c08SVenu Byravarasu help 37790829c08SVenu Byravarasu If you say yes here you get support for the RTC on the 37890829c08SVenu Byravarasu RICOH 5T583 chips. 37990829c08SVenu Byravarasu 38090829c08SVenu Byravarasu This driver can also be built as a module. If so, the module 38190829c08SVenu Byravarasu will be called rtc-rc5t583. 38290829c08SVenu Byravarasu 383c46288b0SByron Bradleyconfig RTC_DRV_S35390A 384c46288b0SByron Bradley tristate "Seiko Instruments S-35390A" 385d479540dSRandy Dunlap select BITREVERSE 386c46288b0SByron Bradley help 387c46288b0SByron Bradley If you say yes here you will get support for the Seiko 388c46288b0SByron Bradley Instruments S-35390A. 389c46288b0SByron Bradley 390c46288b0SByron Bradley This driver can also be built as a module. If so the module 391c46288b0SByron Bradley will be called rtc-s35390a. 392c46288b0SByron Bradley 393c6d8f400SSergey Lapinconfig RTC_DRV_FM3130 394c6d8f400SSergey Lapin tristate "Ramtron FM3130" 395c6d8f400SSergey Lapin help 396c6d8f400SSergey Lapin If you say Y here you will get support for the 397c6d8f400SSergey Lapin Ramtron FM3130 RTC chips. 398c6d8f400SSergey Lapin Ramtron FM3130 is a chip with two separate devices inside, 399c6d8f400SSergey Lapin RTC clock and FRAM. This driver provides only RTC functionality. 400c6d8f400SSergey Lapin 401c6d8f400SSergey Lapin This driver can also be built as a module. If so the module 402c6d8f400SSergey Lapin will be called rtc-fm3130. 403c6d8f400SSergey Lapin 404a7fa9851SMartyn Welchconfig RTC_DRV_RX8581 405a7fa9851SMartyn Welch tristate "Epson RX-8581" 406a7fa9851SMartyn Welch help 407a7fa9851SMartyn Welch If you say yes here you will get support for the Epson RX-8581. 408a7fa9851SMartyn Welch 409a7fa9851SMartyn Welch This driver can also be built as a module. If so the module 410a7fa9851SMartyn Welch will be called rtc-rx8581. 411a7fa9851SMartyn Welch 4123c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025 4133c2b9075SWolfgang Grandegger tristate "Epson RX-8025SA/NB" 4143c2b9075SWolfgang Grandegger help 4153c2b9075SWolfgang Grandegger If you say yes here you get support for the Epson 4163c2b9075SWolfgang Grandegger RX-8025SA/NB RTC chips. 4173c2b9075SWolfgang Grandegger 4183c2b9075SWolfgang Grandegger This driver can also be built as a module. If so, the module 4193c2b9075SWolfgang Grandegger will be called rtc-rx8025. 4203c2b9075SWolfgang Grandegger 421ae3551f9SMike Rapoportconfig RTC_DRV_EM3027 422ae3551f9SMike Rapoport tristate "EM Microelectronic EM3027" 423ae3551f9SMike Rapoport help 424ae3551f9SMike Rapoport If you say yes here you get support for the EM 425ae3551f9SMike Rapoport Microelectronic EM3027 RTC chips. 426ae3551f9SMike Rapoport 427ae3551f9SMike Rapoport This driver can also be built as a module. If so, the module 428ae3551f9SMike Rapoport will be called rtc-em3027. 429ae3551f9SMike Rapoport 43052365230SHeiko Schocherconfig RTC_DRV_RV3029C2 43152365230SHeiko Schocher tristate "Micro Crystal RTC" 43252365230SHeiko Schocher help 43352365230SHeiko Schocher If you say yes here you get support for the Micro Crystal 43452365230SHeiko Schocher RV3029-C2 RTC chips. 43552365230SHeiko Schocher 43652365230SHeiko Schocher This driver can also be built as a module. If so, the module 43752365230SHeiko Schocher will be called rtc-rv3029c2. 43852365230SHeiko Schocher 439bb35fb20SJan Engelhardtendif # I2C 440bb35fb20SJan Engelhardt 44109a21e56SAlessandro Zummocomment "SPI RTC drivers" 442bb35fb20SJan Engelhardt 443bb35fb20SJan Engelhardtif SPI_MASTER 44409a21e56SAlessandro Zummo 44574d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93 44674d34d4bSVoss, Nikolaus tristate "ST M41T93" 44774d34d4bSVoss, Nikolaus help 44874d34d4bSVoss, Nikolaus If you say yes here you will get support for the 44974d34d4bSVoss, Nikolaus ST M41T93 SPI RTC chip. 45074d34d4bSVoss, Nikolaus 45174d34d4bSVoss, Nikolaus This driver can also be built as a module. If so, the module 45274d34d4bSVoss, Nikolaus will be called rtc-m41t93. 45374d34d4bSVoss, Nikolaus 4548fc2c767SKim B. Heinoconfig RTC_DRV_M41T94 4558fc2c767SKim B. Heino tristate "ST M41T94" 4568fc2c767SKim B. Heino help 4578fc2c767SKim B. Heino If you say yes here you will get support for the 4588fc2c767SKim B. Heino ST M41T94 SPI RTC chip. 4598fc2c767SKim B. Heino 4608fc2c767SKim B. Heino This driver can also be built as a module. If so, the module 4618fc2c767SKim B. Heino will be called rtc-m41t94. 4628fc2c767SKim B. Heino 46353e84b67SDavid Brownellconfig RTC_DRV_DS1305 46453e84b67SDavid Brownell tristate "Dallas/Maxim DS1305/DS1306" 46553e84b67SDavid Brownell help 46653e84b67SDavid Brownell Select this driver to get support for the Dallas/Maxim DS1305 46753e84b67SDavid Brownell and DS1306 real time clock chips. These support a trickle 46853e84b67SDavid Brownell charger, alarms, and NVRAM in addition to the clock. 46953e84b67SDavid Brownell 47053e84b67SDavid Brownell This driver can also be built as a module. If so, the module 47153e84b67SDavid Brownell will be called rtc-ds1305. 47253e84b67SDavid Brownell 47306de1808SMark Jacksonconfig RTC_DRV_DS1390 47406de1808SMark Jackson tristate "Dallas/Maxim DS1390/93/94" 47506de1808SMark Jackson help 4767b9b2ef1SAlessandro Zummo If you say yes here you get support for the 4777b9b2ef1SAlessandro Zummo Dallas/Maxim DS1390/93/94 chips. 47806de1808SMark Jackson 47906de1808SMark Jackson This driver only supports the RTC feature, and not other chip 48006de1808SMark Jackson features such as alarms and trickle charging. 48106de1808SMark Jackson 48206de1808SMark Jackson This driver can also be built as a module. If so, the module 48306de1808SMark Jackson will be called rtc-ds1390. 48406de1808SMark Jackson 48509b6bdb3SAlessandro Zummoconfig RTC_DRV_MAX6902 48609b6bdb3SAlessandro Zummo tristate "Maxim MAX6902" 48709b6bdb3SAlessandro Zummo help 48809b6bdb3SAlessandro Zummo If you say yes here you will get support for the 48909b6bdb3SAlessandro Zummo Maxim MAX6902 SPI RTC chip. 49009b6bdb3SAlessandro Zummo 49109b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 49209b6bdb3SAlessandro Zummo will be called rtc-max6902. 49309b6bdb3SAlessandro Zummo 4942805b969SMagnus Dammconfig RTC_DRV_R9701 4952805b969SMagnus Damm tristate "Epson RTC-9701JE" 4962805b969SMagnus Damm help 4972805b969SMagnus Damm If you say yes here you will get support for the 4982805b969SMagnus Damm Epson RTC-9701JE SPI RTC chip. 4992805b969SMagnus Damm 5002805b969SMagnus Damm This driver can also be built as a module. If so, the module 5012805b969SMagnus Damm will be called rtc-r9701. 5022805b969SMagnus Damm 50309a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348 50409a21e56SAlessandro Zummo tristate "Ricoh RS5C348A/B" 50509a21e56SAlessandro Zummo help 50609a21e56SAlessandro Zummo If you say yes here you get support for the 50709a21e56SAlessandro Zummo Ricoh RS5C348A and RS5C348B RTC chips. 50809a21e56SAlessandro Zummo 50909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 51009a21e56SAlessandro Zummo will be called rtc-rs5c348. 51109a21e56SAlessandro Zummo 5122f9b75e0SDennis Aberillaconfig RTC_DRV_DS3234 5132f9b75e0SDennis Aberilla tristate "Maxim/Dallas DS3234" 5142f9b75e0SDennis Aberilla help 5152f9b75e0SDennis Aberilla If you say yes here you get support for the 5162f9b75e0SDennis Aberilla Maxim/Dallas DS3234 SPI RTC chip. 5172f9b75e0SDennis Aberilla 5182f9b75e0SDennis Aberilla This driver can also be built as a module. If so, the module 5192f9b75e0SDennis Aberilla will be called rtc-ds3234. 5202f9b75e0SDennis Aberilla 5217f3923a1SChris Vergesconfig RTC_DRV_PCF2123 5227f3923a1SChris Verges tristate "NXP PCF2123" 5237f3923a1SChris Verges help 5247f3923a1SChris Verges If you say yes here you get support for the NXP PCF2123 5257f3923a1SChris Verges RTC chip. 5267f3923a1SChris Verges 5277f3923a1SChris Verges This driver can also be built as a module. If so, the module 5287f3923a1SChris Verges will be called rtc-pcf2123. 5297f3923a1SChris Verges 530bb35fb20SJan Engelhardtendif # SPI_MASTER 531bb35fb20SJan Engelhardt 53209a21e56SAlessandro Zummocomment "Platform RTC drivers" 5330c86edc0SAlessandro Zummo 5347be2c7c9SDavid Brownell# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h> 5357be2c7c9SDavid Brownell# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a 5367be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device. 5377be2c7c9SDavid Brownell 5387be2c7c9SDavid Brownellconfig RTC_DRV_CMOS 53909a21e56SAlessandro Zummo tristate "PC-style 'CMOS'" 5405ec87708SAndrew Morton depends on X86 || ALPHA || ARM || M32R || ATARI || PPC || MIPS || SPARC64 541c7500900SDavid Brownell default y if X86 5427be2c7c9SDavid Brownell help 5437be2c7c9SDavid Brownell Say "yes" here to get direct support for the real time clock 5447be2c7c9SDavid Brownell found in every PC or ACPI-based system, and some other boards. 5457be2c7c9SDavid Brownell Specifically the original MC146818, compatibles like those in 5467be2c7c9SDavid Brownell PC south bridges, the DS12887 or M48T86, some multifunction 5477be2c7c9SDavid Brownell or LPC bus chips, and so on. 5487be2c7c9SDavid Brownell 5497be2c7c9SDavid Brownell Your system will need to define the platform device used by 5507be2c7c9SDavid Brownell this driver, otherwise it won't be accessible. This means 5517be2c7c9SDavid Brownell you can safely enable this driver if you don't know whether 5527be2c7c9SDavid Brownell or not your board has this kind of hardware. 5537be2c7c9SDavid Brownell 5547be2c7c9SDavid Brownell This driver can also be built as a module. If so, the module 5557be2c7c9SDavid Brownell will be called rtc-cmos. 5567be2c7c9SDavid Brownell 5570146f261SFeng Tangconfig RTC_DRV_VRTC 558933b9463SAlan Cox tristate "Virtual RTC for Intel MID platforms" 559933b9463SAlan Cox depends on X86_INTEL_MID 560933b9463SAlan Cox default y if X86_INTEL_MID 5610146f261SFeng Tang 5620146f261SFeng Tang help 5630146f261SFeng Tang Say "yes" here to get direct support for the real time clock 5640146f261SFeng Tang found on Moorestown platforms. The VRTC is a emulated RTC that 5650146f261SFeng Tang derives its clock source from a real RTC in the PMIC. The MC146818 5660146f261SFeng Tang style programming interface is mostly conserved, but any 5670146f261SFeng Tang updates are done via IPC calls to the system controller FW. 5680146f261SFeng Tang 569537739deSThomas Bogendoerferconfig RTC_DRV_DS1216 570537739deSThomas Bogendoerfer tristate "Dallas DS1216" 571bb35fb20SJan Engelhardt depends on SNI_RM 572537739deSThomas Bogendoerfer help 573537739deSThomas Bogendoerfer If you say yes here you get support for the Dallas DS1216 RTC chips. 574537739deSThomas Bogendoerfer 5755f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286 5765f119f29SThomas Bogendoerfer tristate "Dallas DS1286" 5775f119f29SThomas Bogendoerfer help 5785f119f29SThomas Bogendoerfer If you say yes here you get support for the Dallas DS1286 RTC chips. 5795f119f29SThomas Bogendoerfer 580739d340dSPaul Mundtconfig RTC_DRV_DS1302 581739d340dSPaul Mundt tristate "Dallas DS1302" 582739d340dSPaul Mundt depends on SH_SECUREEDGE5410 583739d340dSPaul Mundt help 584739d340dSPaul Mundt If you say yes here you get support for the Dallas DS1302 RTC chips. 585739d340dSPaul Mundt 5868f26795aSAndrew Sharpconfig RTC_DRV_DS1511 5878f26795aSAndrew Sharp tristate "Dallas DS1511" 5888f26795aSAndrew Sharp help 5898f26795aSAndrew Sharp If you say yes here you get support for the 5908f26795aSAndrew Sharp Dallas DS1511 timekeeping/watchdog chip. 5918f26795aSAndrew Sharp 5928f26795aSAndrew Sharp This driver can also be built as a module. If so, the module 5938f26795aSAndrew Sharp will be called rtc-ds1511. 5948f26795aSAndrew Sharp 5959bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553 59609b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1553" 5979bf5b4f5SAtsushi Nemoto help 5989bf5b4f5SAtsushi Nemoto If you say yes here you get support for the 59909b6bdb3SAlessandro Zummo Maxim/Dallas DS1553 timekeeping chip. 6009bf5b4f5SAtsushi Nemoto 6019bf5b4f5SAtsushi Nemoto This driver can also be built as a module. If so, the module 6029bf5b4f5SAtsushi Nemoto will be called rtc-ds1553. 6039bf5b4f5SAtsushi Nemoto 60409b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742 60509b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1742/1743" 60609b6bdb3SAlessandro Zummo help 60709b6bdb3SAlessandro Zummo If you say yes here you get support for the 60809b6bdb3SAlessandro Zummo Maxim/Dallas DS1742/1743 timekeeping chip. 60909b6bdb3SAlessandro Zummo 61009b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 61109b6bdb3SAlessandro Zummo will be called rtc-ds1742. 61209b6bdb3SAlessandro Zummo 613fef931ffSAshish Jangamconfig RTC_DRV_DA9052 614fef931ffSAshish Jangam tristate "Dialog DA9052/DA9053 RTC" 615fef931ffSAshish Jangam depends on PMIC_DA9052 616fef931ffSAshish Jangam help 617fef931ffSAshish Jangam Say y here to support the RTC driver for Dialog Semiconductor 618fef931ffSAshish Jangam DA9052-BC and DA9053-AA/Bx PMICs. 619fef931ffSAshish Jangam 6206920d996SAshish Jangamconfig RTC_DRV_DA9055 6216920d996SAshish Jangam tristate "Dialog Semiconductor DA9055 RTC" 6226920d996SAshish Jangam depends on MFD_DA9055 6236920d996SAshish Jangam help 6246920d996SAshish Jangam If you say yes here you will get support for the 6256920d996SAshish Jangam RTC of the Dialog DA9055 PMIC. 6266920d996SAshish Jangam 6276920d996SAshish Jangam This driver can also be built as a module. If so, the module 6286920d996SAshish Jangam will be called rtc-da9055 6296920d996SAshish Jangam 6305e3fd9e5Sdann frazierconfig RTC_DRV_EFI 6315e3fd9e5Sdann frazier tristate "EFI RTC" 6325e3fd9e5Sdann frazier depends on IA64 6335e3fd9e5Sdann frazier help 6345e3fd9e5Sdann frazier If you say yes here you will get support for the EFI 6355e3fd9e5Sdann frazier Real Time Clock. 6365e3fd9e5Sdann frazier 6375e3fd9e5Sdann frazier This driver can also be built as a module. If so, the module 6385e3fd9e5Sdann frazier will be called rtc-efi. 6395e3fd9e5Sdann frazier 64002964115SThomas Hommelconfig RTC_DRV_STK17TA8 64102964115SThomas Hommel tristate "Simtek STK17TA8" 64202964115SThomas Hommel help 64302964115SThomas Hommel If you say yes here you get support for the 64402964115SThomas Hommel Simtek STK17TA8 timekeeping chip. 64502964115SThomas Hommel 64602964115SThomas Hommel This driver can also be built as a module. If so, the module 64702964115SThomas Hommel will be called rtc-stk17ta8. 64802964115SThomas Hommel 64909a21e56SAlessandro Zummoconfig RTC_DRV_M48T86 65009a21e56SAlessandro Zummo tristate "ST M48T86/Dallas DS12887" 65109a21e56SAlessandro Zummo help 65209a21e56SAlessandro Zummo If you say Y here you will get support for the 65309a21e56SAlessandro Zummo ST M48T86 and Dallas DS12887 RTC chips. 65409a21e56SAlessandro Zummo 65509a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 65609a21e56SAlessandro Zummo will be called rtc-m48t86. 65709a21e56SAlessandro Zummo 658d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35 659d1dbd82eSThomas Bogendoerfer tristate "ST M48T35" 660d1dbd82eSThomas Bogendoerfer help 661d1dbd82eSThomas Bogendoerfer If you say Y here you will get support for the 662d1dbd82eSThomas Bogendoerfer ST M48T35 RTC chip. 663d1dbd82eSThomas Bogendoerfer 664d1dbd82eSThomas Bogendoerfer This driver can also be built as a module, if so, the module 665d1dbd82eSThomas Bogendoerfer will be called "rtc-m48t35". 666d1dbd82eSThomas Bogendoerfer 6672e774c7cSMark Zhanconfig RTC_DRV_M48T59 66894fe7424SKrzysztof Helt tristate "ST M48T59/M48T08/M48T02" 6692e774c7cSMark Zhan help 6702e774c7cSMark Zhan If you say Y here you will get support for the 67194fe7424SKrzysztof Helt ST M48T59 RTC chip and compatible ST M48T08 and M48T02. 67294fe7424SKrzysztof Helt 67394fe7424SKrzysztof Helt These chips are usually found in Sun SPARC and UltraSPARC 67494fe7424SKrzysztof Helt workstations. 6752e774c7cSMark Zhan 6762e774c7cSMark Zhan This driver can also be built as a module, if so, the module 6772e774c7cSMark Zhan will be called "rtc-m48t59". 6782e774c7cSMark Zhan 6794f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242 6804f9b9bbaSGeert Uytterhoeven tristate "Oki MSM6242" 6814f9b9bbaSGeert Uytterhoeven help 6824f9b9bbaSGeert Uytterhoeven If you say yes here you get support for the Oki MSM6242 6834f9b9bbaSGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A2000). 6844f9b9bbaSGeert Uytterhoeven 6854f9b9bbaSGeert Uytterhoeven This driver can also be built as a module. If so, the module 6864f9b9bbaSGeert Uytterhoeven will be called rtc-msm6242. 6874f9b9bbaSGeert Uytterhoeven 688cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802 689cca4c231SDavid S. Miller tristate "TI BQ4802" 690cca4c231SDavid S. Miller help 691cca4c231SDavid S. Miller If you say Y here you will get support for the TI 692cca4c231SDavid S. Miller BQ4802 RTC chip. 693cca4c231SDavid S. Miller 694cca4c231SDavid S. Miller This driver can also be built as a module. If so, the module 695cca4c231SDavid S. Miller will be called rtc-bq4802. 696cca4c231SDavid S. Miller 6974f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01 6984f672ce2SGeert Uytterhoeven tristate "Ricoh RP5C01" 6994f672ce2SGeert Uytterhoeven help 7004f672ce2SGeert Uytterhoeven If you say yes here you get support for the Ricoh RP5C01 7014f672ce2SGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A3000 7024f672ce2SGeert Uytterhoeven and A4000). 7034f672ce2SGeert Uytterhoeven 7044f672ce2SGeert Uytterhoeven This driver can also be built as a module. If so, the module 7054f672ce2SGeert Uytterhoeven will be called rtc-rp5c01. 7064f672ce2SGeert Uytterhoeven 70709a21e56SAlessandro Zummoconfig RTC_DRV_V3020 70809a21e56SAlessandro Zummo tristate "EM Microelectronic V3020" 70909a21e56SAlessandro Zummo help 71009a21e56SAlessandro Zummo If you say yes here you will get support for the 71109a21e56SAlessandro Zummo EM Microelectronic v3020 RTC chip. 71209a21e56SAlessandro Zummo 71309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 71409a21e56SAlessandro Zummo will be called rtc-v3020. 71509a21e56SAlessandro Zummo 7167418a119SSven Schnelleconfig RTC_DRV_DS2404 7177418a119SSven Schnelle tristate "Dallas DS2404" 7187418a119SSven Schnelle help 7197418a119SSven Schnelle If you say yes here you get support for the 7207418a119SSven Schnelle Dallas DS2404 RTC chip. 7217418a119SSven Schnelle 7227418a119SSven Schnelle This driver can also be built as a module. If so, the module 7237418a119SSven Schnelle will be called rtc-ds2404. 7247418a119SSven Schnelle 72535c86bf6SMark Brownconfig RTC_DRV_WM831X 72635c86bf6SMark Brown tristate "Wolfson Microelectronics WM831x RTC" 72735c86bf6SMark Brown depends on MFD_WM831X 72835c86bf6SMark Brown help 72935c86bf6SMark Brown If you say yes here you will get support for the RTC subsystem 73035c86bf6SMark Brown of the Wolfson Microelectronics WM831X series PMICs. 73135c86bf6SMark Brown 73235c86bf6SMark Brown This driver can also be built as a module. If so, the module 73335c86bf6SMark Brown will be called "rtc-wm831x". 73435c86bf6SMark Brown 735077eaf5bSMark Brownconfig RTC_DRV_WM8350 736077eaf5bSMark Brown tristate "Wolfson Microelectronics WM8350 RTC" 737077eaf5bSMark Brown depends on MFD_WM8350 738077eaf5bSMark Brown help 739077eaf5bSMark Brown If you say yes here you will get support for the RTC subsystem 740077eaf5bSMark Brown of the Wolfson Microelectronics WM8350. 741077eaf5bSMark Brown 742077eaf5bSMark Brown This driver can also be built as a module. If so, the module 743077eaf5bSMark Brown will be called "rtc-wm8350". 744077eaf5bSMark Brown 7450942a71eSRajeev Kumarconfig RTC_DRV_SPEAR 7460942a71eSRajeev Kumar tristate "SPEAR ST RTC" 7470942a71eSRajeev Kumar depends on PLAT_SPEAR 7480942a71eSRajeev Kumar default y 7490942a71eSRajeev Kumar help 7500942a71eSRajeev Kumar If you say Y here you will get support for the RTC found on 7510942a71eSRajeev Kumar spear 7520942a71eSRajeev Kumar 753eae854b2SBalaji Raoconfig RTC_DRV_PCF50633 754eae854b2SBalaji Rao depends on MFD_PCF50633 755eae854b2SBalaji Rao tristate "NXP PCF50633 RTC" 756eae854b2SBalaji Rao help 757eae854b2SBalaji Rao If you say yes here you get support for the RTC subsystem of the 758eae854b2SBalaji Rao NXP PCF50633 used in embedded systems. 759eae854b2SBalaji Rao 760bd207cfbSLinus Walleijconfig RTC_DRV_AB3100 761bd207cfbSLinus Walleij tristate "ST-Ericsson AB3100 RTC" 762bd207cfbSLinus Walleij depends on AB3100_CORE 763bd207cfbSLinus Walleij default y if AB3100_CORE 764bd207cfbSLinus Walleij help 765bd207cfbSLinus Walleij Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC 766bd207cfbSLinus Walleij support. This chip contains a battery- and capacitor-backed RTC. 767bd207cfbSLinus Walleij 7680af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500 7690af62f4dSVirupax Sadashivpetimath tristate "ST-Ericsson AB8500 RTC" 7700af62f4dSVirupax Sadashivpetimath depends on AB8500_CORE 771651fb480SUlf Hansson select RTC_INTF_DEV 772dc43d4a2SRamesh Chandrasekaran select RTC_INTF_DEV_UIE_EMUL 7730af62f4dSVirupax Sadashivpetimath help 7740af62f4dSVirupax Sadashivpetimath Select this to enable the ST-Ericsson AB8500 power management IC RTC 7750af62f4dSVirupax Sadashivpetimath support. This chip contains a battery- and capacitor-backed RTC. 7760af62f4dSVirupax Sadashivpetimath 777afd49a7eSWan ZongShunconfig RTC_DRV_NUC900 778afd49a7eSWan ZongShun tristate "NUC910/NUC920 RTC driver" 7796b8029faSVenu Byravarasu depends on ARCH_W90X900 780afd49a7eSWan ZongShun help 781afd49a7eSWan ZongShun If you say yes here you get support for the RTC subsystem of the 782afd49a7eSWan ZongShun NUC910/NUC920 used in embedded systems. 783bd207cfbSLinus Walleij 78409a21e56SAlessandro Zummocomment "on-CPU RTC drivers" 78509a21e56SAlessandro Zummo 7868ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI 7878ecf6c54SMiguel Aguilar tristate "TI DaVinci RTC" 7888ecf6c54SMiguel Aguilar depends on ARCH_DAVINCI_DM365 7898ecf6c54SMiguel Aguilar help 7908ecf6c54SMiguel Aguilar If you say yes here you get support for the RTC on the 7918ecf6c54SMiguel Aguilar DaVinci platforms (DM365). 7928ecf6c54SMiguel Aguilar 7938ecf6c54SMiguel Aguilar This driver can also be built as a module. If so, the module 7948ecf6c54SMiguel Aguilar will be called rtc-davinci. 7958ecf6c54SMiguel Aguilar 796b224b9acSFabio Estevamconfig RTC_DRV_IMXDI 797b224b9acSFabio Estevam tristate "Freescale IMX DryIce Real Time Clock" 798ef216ad0SRoland Stigge depends on ARCH_MXC 799b224b9acSFabio Estevam help 800b224b9acSFabio Estevam Support for Freescale IMX DryIce RTC 801b224b9acSFabio Estevam 802b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 803b224b9acSFabio Estevam will be called "rtc-imxdi". 804b224b9acSFabio Estevam 805db68b189SDavid Brownellconfig RTC_DRV_OMAP 806db68b189SDavid Brownell tristate "TI OMAP1" 807427af9a6SAfzal Mohammed depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730 || ARCH_DAVINCI_DA8XX || SOC_AM33XX 808db68b189SDavid Brownell help 809427af9a6SAfzal Mohammed Say "yes" here to support the on chip real time clock 810427af9a6SAfzal Mohammed present on TI OMAP1, AM33xx and DA8xx/OMAP-L13x. 811427af9a6SAfzal Mohammed 812427af9a6SAfzal Mohammed This driver can also be built as a module, if so, module 813427af9a6SAfzal Mohammed will be called rtc-omap. 814db68b189SDavid Brownell 81516f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC 81616f4efe7SAtul Dahiya bool 81716f4efe7SAtul Dahiya help 81816f4efe7SAtul Dahiya This will include RTC support for Samsung SoCs. If 81916f4efe7SAtul Dahiya you want to include RTC support for any machine, kindly 82016f4efe7SAtul Dahiya select this in the respective mach-XXXX/Kconfig file. 82116f4efe7SAtul Dahiya 8221add6781SBen Dooksconfig RTC_DRV_S3C 8231add6781SBen Dooks tristate "Samsung S3C series SoC RTC" 824b130d5c2SKukjin Kim depends on ARCH_S3C64XX || HAVE_S3C_RTC 8251add6781SBen Dooks help 8261add6781SBen Dooks RTC (Realtime Clock) driver for the clock inbuilt into the 8271add6781SBen Dooks Samsung S3C24XX series of SoCs. This can provide periodic 8281add6781SBen Dooks interrupt rates from 1Hz to 64Hz for user programs, and 8291add6781SBen Dooks wakeup from Alarm. 8301add6781SBen Dooks 8311add6781SBen Dooks The driver currently supports the common features on all the 8321add6781SBen Dooks S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440 8331add6781SBen Dooks and S3C2442. 8341add6781SBen Dooks 8351add6781SBen Dooks This driver can also be build as a module. If so, the module 8361add6781SBen Dooks will be called rtc-s3c. 8371add6781SBen Dooks 838fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX 839fd507e2fSAlessandro Zummo tristate "Cirrus Logic EP93XX" 840bb35fb20SJan Engelhardt depends on ARCH_EP93XX 841fd507e2fSAlessandro Zummo help 842fd507e2fSAlessandro Zummo If you say yes here you get support for the 843fd507e2fSAlessandro Zummo RTC embedded in the Cirrus Logic EP93XX processors. 844fd507e2fSAlessandro Zummo 845fd507e2fSAlessandro Zummo This driver can also be built as a module. If so, the module 846fd507e2fSAlessandro Zummo will be called rtc-ep93xx. 847fd507e2fSAlessandro Zummo 848e842f1c8SRichard Purdieconfig RTC_DRV_SA1100 8493888c090SHaojian Zhuang tristate "SA11x0/PXA2xx/PXA910" 8503888c090SHaojian Zhuang depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP 851e842f1c8SRichard Purdie help 852e842f1c8SRichard Purdie If you say Y here you will get access to the real time clock 853e842f1c8SRichard Purdie built into your SA11x0 or PXA2xx CPU. 854e842f1c8SRichard Purdie 855e842f1c8SRichard Purdie To compile this driver as a module, choose M here: the 856e842f1c8SRichard Purdie module will be called rtc-sa1100. 857fd507e2fSAlessandro Zummo 858317a6104SPaul Mundtconfig RTC_DRV_SH 859317a6104SPaul Mundt tristate "SuperH On-Chip RTC" 8606b8029faSVenu Byravarasu depends on SUPERH && HAVE_CLK 861317a6104SPaul Mundt help 862317a6104SPaul Mundt Say Y here to enable support for the on-chip RTC found in 863317a6104SPaul Mundt most SuperH processors. 864317a6104SPaul Mundt 865317a6104SPaul Mundt To compile this driver as a module, choose M here: the 866317a6104SPaul Mundt module will be called rtc-sh. 867317a6104SPaul Mundt 8688417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX 8693e16f6afSAlessandro Zummo tristate "NEC VR41XX" 870bb35fb20SJan Engelhardt depends on CPU_VR41XX 8713e16f6afSAlessandro Zummo help 8723e16f6afSAlessandro Zummo If you say Y here you will get access to the real time clock 8733e16f6afSAlessandro Zummo built into your NEC VR41XX CPU. 8743e16f6afSAlessandro Zummo 8753e16f6afSAlessandro Zummo To compile this driver as a module, choose M here: the 8763e16f6afSAlessandro Zummo module will be called rtc-vr41xx. 8778417eb7aSYoichi Yuasa 878a190901cSRussell Kingconfig RTC_DRV_PL030 879a190901cSRussell King tristate "ARM AMBA PL030 RTC" 880a190901cSRussell King depends on ARM_AMBA 881a190901cSRussell King help 882a190901cSRussell King If you say Y here you will get access to ARM AMBA 883a190901cSRussell King PrimeCell PL030 RTC found on certain ARM SOCs. 884a190901cSRussell King 885a190901cSRussell King To compile this driver as a module, choose M here: the 886a190901cSRussell King module will be called rtc-pl030. 887a190901cSRussell King 8888ae6e163SDeepak Saxenaconfig RTC_DRV_PL031 8898ae6e163SDeepak Saxena tristate "ARM AMBA PL031 RTC" 890bb35fb20SJan Engelhardt depends on ARM_AMBA 8918ae6e163SDeepak Saxena help 8928ae6e163SDeepak Saxena If you say Y here you will get access to ARM AMBA 89309a21e56SAlessandro Zummo PrimeCell PL031 RTC found on certain ARM SOCs. 8948ae6e163SDeepak Saxena 8958ae6e163SDeepak Saxena To compile this driver as a module, choose M here: the 8968ae6e163SDeepak Saxena module will be called rtc-pl031. 8978ae6e163SDeepak Saxena 898fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X 899fa04e78bSHans-Christian Egtvedt tristate "AT32AP700X series RTC" 900bb35fb20SJan Engelhardt depends on PLATFORM_AT32AP 901fa04e78bSHans-Christian Egtvedt help 902fa04e78bSHans-Christian Egtvedt Driver for the internal RTC (Realtime Clock) on Atmel AVR32 903fa04e78bSHans-Christian Egtvedt AT32AP700x family processors. 904fa04e78bSHans-Christian Egtvedt 9057fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200 90624cecc1bSNicolas Ferre tristate "AT91RM9200 or some AT91SAM9 RTC" 907938f970eSNicolas Ferre depends on ARCH_AT91 908788b1fc6SAndrew Victor help 9094cdf854fSDavid Brownell Driver for the internal RTC (Realtime Clock) module found on 91024cecc1bSNicolas Ferre Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips 9114cdf854fSDavid Brownell this is powered by the backup power supply. 9124cdf854fSDavid Brownell 9134cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9 91424cecc1bSNicolas Ferre tristate "AT91SAM9x/AT91CAP9 RTT as RTC" 9154cdf854fSDavid Brownell depends on ARCH_AT91 && !(ARCH_AT91RM9200 || ARCH_AT91X40) 9164cdf854fSDavid Brownell help 9176b71dbf6SStelian Pop RTC driver for the Atmel AT91SAM9x and AT91CAP9 internal RTT 9186b71dbf6SStelian Pop (Real Time Timer). These timers are powered by the backup power 9196b71dbf6SStelian Pop supply (such as a small coin cell battery), but do not need to 9206b71dbf6SStelian Pop be used as RTCs. 9214cdf854fSDavid Brownell 92224cecc1bSNicolas Ferre (On AT91SAM9rl and AT91SAM9G45 chips you probably want to use the 92324cecc1bSNicolas Ferre dedicated RTC module and leave the RTT available for other uses.) 9244cdf854fSDavid Brownell 9254cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_RTT 9264cdf854fSDavid Brownell int 9274cdf854fSDavid Brownell range 0 1 9284cdf854fSDavid Brownell default 0 9294cdf854fSDavid Brownell prompt "RTT module Number" if ARCH_AT91SAM9263 9304cdf854fSDavid Brownell depends on RTC_DRV_AT91SAM9 9314cdf854fSDavid Brownell help 9324cdf854fSDavid Brownell More than one RTT module is available. You can choose which 9334cdf854fSDavid Brownell one will be used as an RTC. The default of zero is normally 9344cdf854fSDavid Brownell OK to use, though some systems use that for non-RTC purposes. 9354cdf854fSDavid Brownell 9364cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_GPBR 9374cdf854fSDavid Brownell int 9384cdf854fSDavid Brownell range 0 3 if !ARCH_AT91SAM9263 9394cdf854fSDavid Brownell range 0 15 if ARCH_AT91SAM9263 9404cdf854fSDavid Brownell default 0 9414cdf854fSDavid Brownell prompt "Backup Register Number" 9424cdf854fSDavid Brownell depends on RTC_DRV_AT91SAM9 9434cdf854fSDavid Brownell help 9444cdf854fSDavid Brownell The RTC driver needs to use one of the General Purpose Backup 9454cdf854fSDavid Brownell Registers (GPBRs) as well as the RTT. You can choose which one 9464cdf854fSDavid Brownell will be used. The default of zero is normally OK to use, but 9474cdf854fSDavid Brownell on some systems other software needs to use that register. 948788b1fc6SAndrew Victor 94945fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX 95045fd8a0cSManuel Lauss tristate "Au1xxx Counter0 RTC support" 95142a4f17dSManuel Lauss depends on MIPS_ALCHEMY 95245fd8a0cSManuel Lauss help 95345fd8a0cSManuel Lauss This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year 95445fd8a0cSManuel Lauss counter) to be used as a RTC. 95545fd8a0cSManuel Lauss 95645fd8a0cSManuel Lauss This driver can also be built as a module. If so, the module 95745fd8a0cSManuel Lauss will be called rtc-au1xxx. 95845fd8a0cSManuel Lauss 9598cc75c9aSWu, Bryanconfig RTC_DRV_BFIN 9608cc75c9aSWu, Bryan tristate "Blackfin On-Chip RTC" 9617f604599SGraf Yang depends on BLACKFIN && !BF561 9628cc75c9aSWu, Bryan help 9638cc75c9aSWu, Bryan If you say yes here you will get support for the 9648cc75c9aSWu, Bryan Blackfin On-Chip Real Time Clock. 9658cc75c9aSWu, Bryan 9668cc75c9aSWu, Bryan This driver can also be built as a module. If so, the module 9678cc75c9aSWu, Bryan will be called rtc-bfin. 9688cc75c9aSWu, Bryan 969e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313 970e9f2bd81SNobuhiro Iwamatsu tristate "Ricoh RS5C313" 971bb35fb20SJan Engelhardt depends on SH_LANDISK 972e9f2bd81SNobuhiro Iwamatsu help 973e9f2bd81SNobuhiro Iwamatsu If you say yes here you get support for the Ricoh RS5C313 RTC chips. 974e9f2bd81SNobuhiro Iwamatsu 9753afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC 9763afe6d04SGeert Uytterhoeven tristate "Generic RTC support" 9773afe6d04SGeert Uytterhoeven # Please consider writing a new RTC driver instead of using the generic 9783afe6d04SGeert Uytterhoeven # RTC abstraction 97947c8a08bSPaul Mundt depends on PARISC || M68K || PPC || SUPERH32 9809eb16864SKyle McMartin help 9813afe6d04SGeert Uytterhoeven Say Y or M here to enable RTC support on systems using the generic 9823afe6d04SGeert Uytterhoeven RTC abstraction. If you do not know what you are doing, you should 9839eb16864SKyle McMartin just say Y. 9849eb16864SKyle McMartin 985dc944368SRobert Jarzmikconfig RTC_DRV_PXA 986dc944368SRobert Jarzmik tristate "PXA27x/PXA3xx" 987dc944368SRobert Jarzmik depends on ARCH_PXA 988dc944368SRobert Jarzmik help 989dc944368SRobert Jarzmik If you say Y here you will get access to the real time clock 990dc944368SRobert Jarzmik built into your PXA27x or PXA3xx CPU. 991dc944368SRobert Jarzmik 992dc944368SRobert Jarzmik This RTC driver uses PXA RTC registers available since pxa27x 993dc944368SRobert Jarzmik series (RDxR, RYxR) instead of legacy RCNR, RTAR. 994dc944368SRobert Jarzmik 995f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500 996f77fbdf9SAlexey Charkov tristate "VIA/WonderMedia 85xx SoC RTC" 997f77fbdf9SAlexey Charkov depends on ARCH_VT8500 998f77fbdf9SAlexey Charkov help 999f77fbdf9SAlexey Charkov If you say Y here you will get access to the real time clock 1000f77fbdf9SAlexey Charkov built into your VIA VT8500 SoC or its relatives. 1001f77fbdf9SAlexey Charkov 1002dc944368SRobert Jarzmik 10037a138edeSDavid S. Millerconfig RTC_DRV_SUN4V 10047a138edeSDavid S. Miller bool "SUN4V Hypervisor RTC" 10057a138edeSDavid S. Miller depends on SPARC64 10067a138edeSDavid S. Miller help 10077a138edeSDavid S. Miller If you say Y here you will get support for the Hypervisor 10087a138edeSDavid S. Miller based RTC on SUN4V systems. 10097a138edeSDavid S. Miller 1010de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE 1011de2cf332SDavid S. Miller bool "Starfire RTC" 1012de2cf332SDavid S. Miller depends on SPARC64 1013de2cf332SDavid S. Miller help 1014de2cf332SDavid S. Miller If you say Y here you will get support for the RTC found on 1015de2cf332SDavid S. Miller Starfire systems. 1016de2cf332SDavid S. Miller 10170e149233SAtsushi Nemotoconfig RTC_DRV_TX4939 10180e149233SAtsushi Nemoto tristate "TX4939 SoC" 10190e149233SAtsushi Nemoto depends on SOC_TX4939 10200e149233SAtsushi Nemoto help 10210e149233SAtsushi Nemoto Driver for the internal RTC (Realtime Clock) module found on 10220e149233SAtsushi Nemoto Toshiba TX4939 SoC. 10230e149233SAtsushi Nemoto 1024defb4514SSaeed Bisharaconfig RTC_DRV_MV 1025defb4514SSaeed Bishara tristate "Marvell SoC RTC" 1026da43243eSSaeed Bishara depends on ARCH_KIRKWOOD || ARCH_DOVE 1027defb4514SSaeed Bishara help 1028defb4514SSaeed Bishara If you say yes here you will get support for the in-chip RTC 1029defb4514SSaeed Bishara that can be found in some of Marvell's SoC devices, such as 1030defb4514SSaeed Bishara the Kirkwood 88F6281 and 88F6192. 1031defb4514SSaeed Bishara 1032defb4514SSaeed Bishara This driver can also be built as a module. If so, the module 1033defb4514SSaeed Bishara will be called rtc-mv. 1034defb4514SSaeed Bishara 10350b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3 10360b5f037aSGeert Uytterhoeven tristate "PS3 RTC" 10370b5f037aSGeert Uytterhoeven depends on PPC_PS3 10380b5f037aSGeert Uytterhoeven help 10390b5f037aSGeert Uytterhoeven If you say yes here you will get support for the RTC on PS3. 10400b5f037aSGeert Uytterhoeven 10410b5f037aSGeert Uytterhoeven This driver can also be built as a module. If so, the module 10420b5f037aSGeert Uytterhoeven will be called rtc-ps3. 10430b5f037aSGeert Uytterhoeven 1044aa958f57SLinus Walleijconfig RTC_DRV_COH901331 1045aa958f57SLinus Walleij tristate "ST-Ericsson COH 901 331 RTC" 1046aa958f57SLinus Walleij depends on ARCH_U300 1047aa958f57SLinus Walleij help 1048aa958f57SLinus Walleij If you say Y here you will get access to ST-Ericsson 1049aa958f57SLinus Walleij COH 901 331 RTC clock found in some ST-Ericsson Mobile 1050aa958f57SLinus Walleij Platforms. 1051aa958f57SLinus Walleij 1052aa958f57SLinus Walleij This driver can also be built as a module. If so, the module 1053aa958f57SLinus Walleij will be called "rtc-coh901331". 1054aa958f57SLinus Walleij 1055aa958f57SLinus Walleij 1056df17f631Sdmitry pervushinconfig RTC_DRV_STMP 105746b21218SWolfram Sang tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC" 105846b21218SWolfram Sang depends on ARCH_MXS 1059df17f631Sdmitry pervushin help 1060df17f631Sdmitry pervushin If you say yes here you will get support for the onboard 106146b21218SWolfram Sang STMP3xxx/i.MX23/i.MX28 RTC. 1062df17f631Sdmitry pervushin 1063df17f631Sdmitry pervushin This driver can also be built as a module. If so, the module 1064df17f631Sdmitry pervushin will be called rtc-stmp3xxx. 1065df17f631Sdmitry pervushin 1066d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP 1067d3c7a3f7SDaniel Ribeiro tristate "PCAP RTC" 1068d3c7a3f7SDaniel Ribeiro depends on EZX_PCAP 1069d3c7a3f7SDaniel Ribeiro help 1070d3c7a3f7SDaniel Ribeiro If you say Y here you will get support for the RTC found on 1071d3c7a3f7SDaniel Ribeiro the PCAP2 ASIC used on some Motorola phones. 1072d3c7a3f7SDaniel Ribeiro 10731c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX 10741c97872bSUwe Kleine-König depends on MFD_MC13XXX 10751c97872bSUwe Kleine-König tristate "Freescale MC13xxx RTC" 107643299f28SUwe Kleine-König help 10771c97872bSUwe Kleine-König This enables support for the RTCs found on Freescale's PMICs 10781c97872bSUwe Kleine-König MC13783 and MC13892. 107943299f28SUwe Kleine-König 108050aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121 108150aae724SAnatolij Gustschin tristate "Freescale MPC5121 built-in RTC" 1082955dbea3SDmitry Eremin-Solenikov depends on PPC_MPC512x || PPC_MPC52xx 108350aae724SAnatolij Gustschin help 108450aae724SAnatolij Gustschin If you say yes here you will get support for the 1085955dbea3SDmitry Eremin-Solenikov built-in RTC on MPC5121 or on MPC5200. 108650aae724SAnatolij Gustschin 108750aae724SAnatolij Gustschin This driver can also be built as a module. If so, the module 108850aae724SAnatolij Gustschin will be called rtc-mpc5121. 108950aae724SAnatolij Gustschin 10903bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740 10913bf0eea8SLars-Peter Clausen tristate "Ingenic JZ4740 SoC" 10923bf0eea8SLars-Peter Clausen depends on MACH_JZ4740 10933bf0eea8SLars-Peter Clausen help 10943bf0eea8SLars-Peter Clausen If you say yes here you get support for the Ingenic JZ4740 SoC RTC 10953bf0eea8SLars-Peter Clausen controller. 10963bf0eea8SLars-Peter Clausen 10973bf0eea8SLars-Peter Clausen This driver can also be buillt as a module. If so, the module 10983bf0eea8SLars-Peter Clausen will be called rtc-jz4740. 10993bf0eea8SLars-Peter Clausen 11009aa449beSKevin Wellsconfig RTC_DRV_LPC32XX 11019aa449beSKevin Wells depends on ARCH_LPC32XX 11029aa449beSKevin Wells tristate "NXP LPC32XX RTC" 11039aa449beSKevin Wells help 11049aa449beSKevin Wells This enables support for the NXP RTC in the LPC32XX 11059aa449beSKevin Wells 11069aa449beSKevin Wells This driver can also be buillt as a module. If so, the module 11079aa449beSKevin Wells will be called rtc-lpc32xx. 11089aa449beSKevin Wells 11099a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX 11109a9a54adSAnirudh Ghayal tristate "Qualcomm PMIC8XXX RTC" 11119a9a54adSAnirudh Ghayal depends on MFD_PM8XXX 11129a9a54adSAnirudh Ghayal help 11139a9a54adSAnirudh Ghayal If you say yes here you get support for the 11149a9a54adSAnirudh Ghayal Qualcomm PMIC8XXX RTC. 11159a9a54adSAnirudh Ghayal 11169a9a54adSAnirudh Ghayal To compile this driver as a module, choose M here: the 11179a9a54adSAnirudh Ghayal module will be called rtc-pm8xxx. 11189a9a54adSAnirudh Ghayal 1119ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA 1120ff859ba6SAndrew Chew tristate "NVIDIA Tegra Internal RTC driver" 11216b8029faSVenu Byravarasu depends on ARCH_TEGRA 1122ff859ba6SAndrew Chew help 1123ff859ba6SAndrew Chew If you say yes here you get support for the 1124ff859ba6SAndrew Chew Tegra 200 series internal RTC module. 1125ff859ba6SAndrew Chew 1126ff859ba6SAndrew Chew This drive can also be built as a module. If so, the module 1127ff859ba6SAndrew Chew will be called rtc-tegra. 1128ff859ba6SAndrew Chew 1129dd196a2bSChris Metcalfconfig RTC_DRV_TILE 1130dd196a2bSChris Metcalf tristate "Tilera hypervisor RTC support" 1131dd196a2bSChris Metcalf depends on TILE 1132dd196a2bSChris Metcalf help 1133dd196a2bSChris Metcalf Enable support for the Linux driver side of the Tilera 1134dd196a2bSChris Metcalf hypervisor's real-time clock interface. 1135dd196a2bSChris Metcalf 11362809e80bSGuan Xuetaoconfig RTC_DRV_PUV3 11372809e80bSGuan Xuetao tristate "PKUnity v3 RTC support" 11382809e80bSGuan Xuetao depends on ARCH_PUV3 11392809e80bSGuan Xuetao help 11402809e80bSGuan Xuetao This enables support for the RTC in the PKUnity-v3 SoCs. 11412809e80bSGuan Xuetao 11422809e80bSGuan Xuetao This drive can also be built as a module. If so, the module 11432809e80bSGuan Xuetao will be called rtc-puv3. 11442809e80bSGuan Xuetao 1145b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1 1146b4f0b880Szhao zhang tristate "loongson1 RTC support" 1147b4f0b880Szhao zhang depends on MACH_LOONGSON1 1148b4f0b880Szhao zhang help 1149b4f0b880Szhao zhang This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year 1150b4f0b880Szhao zhang counter) to be used as a RTC. 1151b4f0b880Szhao zhang 1152b4f0b880Szhao zhang This driver can also be built as a module. If so, the module 1153b4f0b880Szhao zhang will be called rtc-ls1x. 1154b4f0b880Szhao zhang 115579811595SFabio Estevamconfig RTC_DRV_MXC 1156b224b9acSFabio Estevam tristate "Freescale MXC Real Time Clock" 1157b224b9acSFabio Estevam depends on ARCH_MXC 1158b224b9acSFabio Estevam help 1159b224b9acSFabio Estevam If you say yes here you get support for the Freescale MXC 1160b224b9acSFabio Estevam RTC module. 1161b224b9acSFabio Estevam 1162b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1163b224b9acSFabio Estevam will be called "rtc-mxc". 1164b224b9acSFabio Estevam 1165179a502fSShawn Guoconfig RTC_DRV_SNVS 1166179a502fSShawn Guo tristate "Freescale SNVS RTC support" 1167179a502fSShawn Guo depends on HAS_IOMEM 1168179a502fSShawn Guo depends on OF 1169179a502fSShawn Guo help 1170179a502fSShawn Guo If you say yes here you get support for the Freescale SNVS 1171179a502fSShawn Guo Low Power (LP) RTC module. 1172179a502fSShawn Guo 1173179a502fSShawn Guo This driver can also be built as a module, if so, the module 1174179a502fSShawn Guo will be called "rtc-snvs". 1175179a502fSShawn Guo 1176bb35fb20SJan Engelhardtendif # RTC_CLASS 1177