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 28023f333aSJason Gunthorpeconfig RTC_SYSTOHC 29023f333aSJason Gunthorpe bool "Set the RTC time based on NTP synchronization" 30023f333aSJason Gunthorpe default y 31023f333aSJason Gunthorpe help 32023f333aSJason Gunthorpe If you say yes here, the system time (wall clock) will be stored 33023f333aSJason Gunthorpe in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11 34023f333aSJason Gunthorpe minutes if userspace reports synchronized NTP status. 35023f333aSJason Gunthorpe 360c86edc0SAlessandro Zummoconfig RTC_HCTOSYS_DEVICE 377ca1d488SDavid Brownell string "RTC used to set the system time" 38023f333aSJason Gunthorpe depends on RTC_HCTOSYS = y || RTC_SYSTOHC = y 390c86edc0SAlessandro Zummo default "rtc0" 400c86edc0SAlessandro Zummo help 417ca1d488SDavid Brownell The RTC device that will be used to (re)initialize the system 427ca1d488SDavid Brownell clock, usually rtc0. Initialization is done when the system 43779d2089SDavid Brownell starts up, and when it resumes from a low power state. This 44779d2089SDavid Brownell device should record time in UTC, since the kernel won't do 45779d2089SDavid Brownell timezone correction. 467ca1d488SDavid Brownell 4755ff1abaSDavid Brownell The driver for this RTC device must be loaded before late_initcall 4855ff1abaSDavid Brownell functions run, so it must usually be statically linked. 4955ff1abaSDavid Brownell 507ca1d488SDavid Brownell This clock should be battery-backed, so that it reads the correct 517ca1d488SDavid Brownell time when the system boots from a power-off state. Otherwise, your 527ca1d488SDavid Brownell system will need an external clock source (like an NTP server). 537ca1d488SDavid Brownell 547ca1d488SDavid Brownell If the clock you specify here is not battery backed, it may still 557ca1d488SDavid Brownell be useful to reinitialize system time when resuming from system 567ca1d488SDavid Brownell sleep states. Do not specify an RTC here unless it stays powered 577ca1d488SDavid Brownell during all this system's supported sleep states. 580c86edc0SAlessandro Zummo 599e86ecb6SDavid Brownellconfig RTC_DEBUG 609e86ecb6SDavid Brownell bool "RTC debug support" 619e86ecb6SDavid Brownell help 629e86ecb6SDavid Brownell Say yes here to enable debugging support in the RTC framework 639e86ecb6SDavid Brownell and individual RTC drivers. 649e86ecb6SDavid Brownell 650c86edc0SAlessandro Zummocomment "RTC interfaces" 660c86edc0SAlessandro Zummo 67c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS 68e40659c5SDavid Brownell boolean "/sys/class/rtc/rtcN (sysfs)" 69bb35fb20SJan Engelhardt depends on SYSFS 708dc08395SKevin Hilman default RTC_CLASS 71c5c3e192SAlessandro Zummo help 729e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using sysfs interfaces, 739e86ecb6SDavid Brownell /sys/class/rtc/rtc0 through /sys/.../rtcN. 74c5c3e192SAlessandro Zummo 75ae64d169SAlessandro Zummo If unsure, say Y. 76c5c3e192SAlessandro Zummo 77728a2947SAlessandro Zummoconfig RTC_INTF_PROC 7892589c98SKim, Milo boolean "/proc/driver/rtc (procfs for rtcN)" 79bb35fb20SJan Engelhardt depends on PROC_FS 808dc08395SKevin Hilman default RTC_CLASS 81728a2947SAlessandro Zummo help 8292589c98SKim, Milo Say yes here if you want to use your system clock RTC through 8392589c98SKim, Milo the proc interface, /proc/driver/rtc. 8492589c98SKim, Milo Other RTCs will not be available through that API. 8592589c98SKim, Milo If there is no RTC for the system clock, then the first RTC(rtc0) 8692589c98SKim, Milo is used by default. 87728a2947SAlessandro Zummo 88ae64d169SAlessandro Zummo If unsure, say Y. 89728a2947SAlessandro Zummo 90e824290eSAlessandro Zummoconfig RTC_INTF_DEV 91e40659c5SDavid Brownell boolean "/dev/rtcN (character devices)" 928dc08395SKevin Hilman default RTC_CLASS 93e824290eSAlessandro Zummo help 949e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using the /dev 959e86ecb6SDavid Brownell interfaces, which "udev" sets up as /dev/rtc0 through 96ae64d169SAlessandro Zummo /dev/rtcN. 97e824290eSAlessandro Zummo 98ae64d169SAlessandro Zummo You may want to set up a symbolic link so one of these 99ae64d169SAlessandro Zummo can be accessed as /dev/rtc, which is a name 100ae64d169SAlessandro Zummo expected by "hwclock" and some other programs. Recent 101ae64d169SAlessandro Zummo versions of "udev" are known to set up the symlink for you. 102ae64d169SAlessandro Zummo 103ae64d169SAlessandro Zummo If unsure, say Y. 104e824290eSAlessandro Zummo 1056e57b1d6SJohn Stultzconfig RTC_INTF_DEV_UIE_EMUL 1066e57b1d6SJohn Stultz bool "RTC UIE emulation on dev interface" 1076e57b1d6SJohn Stultz depends on RTC_INTF_DEV 1086e57b1d6SJohn Stultz help 1096e57b1d6SJohn Stultz Provides an emulation for RTC_UIE if the underlying rtc chip 1106e57b1d6SJohn Stultz driver does not expose RTC_UIE ioctls. Those requests generate 1116e57b1d6SJohn Stultz once-per-second update interrupts, used for synchronization. 1126e57b1d6SJohn Stultz 1136e57b1d6SJohn Stultz The emulation code will read the time from the hardware 1146e57b1d6SJohn Stultz clock several times per second, please enable this option 1156e57b1d6SJohn Stultz only if you know that you really need it. 1166e57b1d6SJohn Stultz 11709a21e56SAlessandro Zummoconfig RTC_DRV_TEST 11809a21e56SAlessandro Zummo tristate "Test driver/device" 11909a21e56SAlessandro Zummo help 12009a21e56SAlessandro Zummo If you say yes here you get support for the 12109a21e56SAlessandro Zummo RTC test driver. It's a software RTC which can be 12209a21e56SAlessandro Zummo used to test the RTC subsystem APIs. It gets 12309a21e56SAlessandro Zummo the time from the system clock. 12409a21e56SAlessandro Zummo You want this driver only if you are doing development 12509a21e56SAlessandro Zummo on the RTC subsystem. Please read the source code 12609a21e56SAlessandro Zummo for further details. 12709a21e56SAlessandro Zummo 12809a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 12909a21e56SAlessandro Zummo will be called rtc-test. 13009a21e56SAlessandro Zummo 13109a21e56SAlessandro Zummocomment "I2C RTC drivers" 132bb35fb20SJan Engelhardt depends on I2C 133bb35fb20SJan Engelhardt 134bb35fb20SJan Engelhardtif I2C 13509a21e56SAlessandro Zummo 136008b3040SHaojian Zhuangconfig RTC_DRV_88PM860X 137008b3040SHaojian Zhuang tristate "Marvell 88PM860x" 1386b8029faSVenu Byravarasu depends on I2C && MFD_88PM860X 139008b3040SHaojian Zhuang help 140008b3040SHaojian Zhuang If you say yes here you get support for RTC function in Marvell 141008b3040SHaojian Zhuang 88PM860x chips. 142008b3040SHaojian Zhuang 143008b3040SHaojian Zhuang This driver can also be built as a module. If so, the module 144008b3040SHaojian Zhuang will be called rtc-88pm860x. 145008b3040SHaojian Zhuang 1462985c29cSQiao Zhouconfig RTC_DRV_88PM80X 1472985c29cSQiao Zhou tristate "Marvell 88PM80x" 1486b8029faSVenu Byravarasu depends on I2C && MFD_88PM800 1492985c29cSQiao Zhou help 1502985c29cSQiao Zhou If you say yes here you get support for RTC function in Marvell 1512985c29cSQiao Zhou 88PM80x chips. 1522985c29cSQiao Zhou 1532985c29cSQiao Zhou This driver can also be built as a module. If so, the module 1542985c29cSQiao Zhou will be called rtc-88pm80x. 1552985c29cSQiao Zhou 156b4506261SLaxman Dewanganconfig RTC_DRV_AS3722 157b4506261SLaxman Dewangan tristate "ams AS3722 RTC driver" 158b4506261SLaxman Dewangan depends on MFD_AS3722 159b4506261SLaxman Dewangan help 160b4506261SLaxman Dewangan If you say yes here you get support for the RTC of ams AS3722 PMIC 161b4506261SLaxman Dewangan chips. 162b4506261SLaxman Dewangan 163b4506261SLaxman Dewangan This driver can also be built as a module. If so, the module 164b4506261SLaxman Dewangan will be called rtc-as3722. 165b4506261SLaxman Dewangan 16609a21e56SAlessandro Zummoconfig RTC_DRV_DS1307 167a2166858SMatthias Fuchs tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025" 16809a21e56SAlessandro Zummo help 16909a21e56SAlessandro Zummo If you say yes here you get support for various compatible RTC 17009a21e56SAlessandro Zummo chips (often with battery backup) connected with I2C. This driver 17109a21e56SAlessandro Zummo should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00, 172a2166858SMatthias Fuchs EPSON RX-8025 and probably other chips. In some cases the RTC 173a2166858SMatthias Fuchs must already have been initialized (by manufacturing or a 174a2166858SMatthias Fuchs bootloader). 17509a21e56SAlessandro Zummo 17609a21e56SAlessandro Zummo The first seven registers on these chips hold an RTC, and other 17709a21e56SAlessandro Zummo registers may add features such as NVRAM, a trickle charger for 178682d73f6SDavid Brownell the RTC/NVRAM backup power, and alarms. NVRAM is visible in 179682d73f6SDavid Brownell sysfs, but other chip features may not be available. 18009a21e56SAlessandro Zummo 18109a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 18209a21e56SAlessandro Zummo will be called rtc-ds1307. 18309a21e56SAlessandro Zummo 184bf4994d7SScott Woodconfig RTC_DRV_DS1374 18509b6bdb3SAlessandro Zummo tristate "Dallas/Maxim DS1374" 1866b8029faSVenu Byravarasu depends on I2C 187bf4994d7SScott Wood help 188bf4994d7SScott Wood If you say yes here you get support for Dallas Semiconductor 189bf4994d7SScott Wood DS1374 real-time clock chips. If an interrupt is associated 190bf4994d7SScott Wood with the device, the alarm functionality is supported. 191bf4994d7SScott Wood 192bf4994d7SScott Wood This driver can also be built as a module. If so, the module 193bf4994d7SScott Wood will be called rtc-ds1374. 194bf4994d7SScott Wood 19509a21e56SAlessandro Zummoconfig RTC_DRV_DS1672 19609a21e56SAlessandro Zummo tristate "Dallas/Maxim DS1672" 19709a21e56SAlessandro Zummo help 19809a21e56SAlessandro Zummo If you say yes here you get support for the 19909a21e56SAlessandro Zummo Dallas/Maxim DS1672 timekeeping chip. 20009a21e56SAlessandro Zummo 20109a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 20209a21e56SAlessandro Zummo will be called rtc-ds1672. 20309a21e56SAlessandro Zummo 204c03675f0SRoy Zangconfig RTC_DRV_DS3232 205c03675f0SRoy Zang tristate "Dallas/Maxim DS3232" 2066b8029faSVenu Byravarasu depends on I2C 207c03675f0SRoy Zang help 208c03675f0SRoy Zang If you say yes here you get support for Dallas Semiconductor 209f46418c5SLan Chunhe-B25806 DS3232 real-time clock chips. If an interrupt is associated 210f46418c5SLan Chunhe-B25806 with the device, the alarm functionality is supported. 211c03675f0SRoy Zang 212c03675f0SRoy Zang This driver can also be built as a module. If so, the module 213c03675f0SRoy Zang will be called rtc-ds3232. 214c03675f0SRoy Zang 215dcaf0384SHeiko Stuebnerconfig RTC_DRV_HYM8563 216dcaf0384SHeiko Stuebner tristate "Haoyu Microelectronics HYM8563" 217dcaf0384SHeiko Stuebner depends on I2C && OF 218dcaf0384SHeiko Stuebner help 219dcaf0384SHeiko Stuebner Say Y to enable support for the HYM8563 I2C RTC chip. Apart 220dcaf0384SHeiko Stuebner from the usual rtc functions it provides a clock output of 221dcaf0384SHeiko Stuebner up to 32kHz. 222dcaf0384SHeiko Stuebner 223dcaf0384SHeiko Stuebner This driver can also be built as a module. If so, the module 224dcaf0384SHeiko Stuebner will be called rtc-hym8563. 225dcaf0384SHeiko Stuebner 22638ae176eSKim, Miloconfig RTC_DRV_LP8788 22738ae176eSKim, Milo tristate "TI LP8788 RTC driver" 22838ae176eSKim, Milo depends on MFD_LP8788 22938ae176eSKim, Milo help 23038ae176eSKim, Milo Say Y to enable support for the LP8788 RTC/ALARM driver. 23138ae176eSKim, Milo 23209a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900 23309b6bdb3SAlessandro Zummo tristate "Maxim MAX6900" 23409a21e56SAlessandro Zummo help 23509a21e56SAlessandro Zummo If you say yes here you will get support for the 23609a21e56SAlessandro Zummo Maxim MAX6900 I2C RTC chip. 23709a21e56SAlessandro Zummo 23809a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 23909a21e56SAlessandro Zummo will be called rtc-max6900. 24009a21e56SAlessandro Zummo 24194c01ab6SStephen Warrenconfig RTC_DRV_MAX8907 24294c01ab6SStephen Warren tristate "Maxim MAX8907" 24394c01ab6SStephen Warren depends on MFD_MAX8907 24494c01ab6SStephen Warren help 24594c01ab6SStephen Warren If you say yes here you will get support for the 24694c01ab6SStephen Warren RTC of Maxim MAX8907 PMIC. 24794c01ab6SStephen Warren 24894c01ab6SStephen Warren This driver can also be built as a module. If so, the module 24994c01ab6SStephen Warren will be called rtc-max8907. 25094c01ab6SStephen Warren 251a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925 252a39069f6SHaojian Zhuang tristate "Maxim MAX8925" 253a39069f6SHaojian Zhuang depends on MFD_MAX8925 254a39069f6SHaojian Zhuang help 255a39069f6SHaojian Zhuang If you say yes here you will get support for the 256a39069f6SHaojian Zhuang RTC of Maxim MAX8925 PMIC. 257a39069f6SHaojian Zhuang 258a39069f6SHaojian Zhuang This driver can also be built as a module. If so, the module 259a39069f6SHaojian Zhuang will be called rtc-max8925. 260a39069f6SHaojian Zhuang 2619b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998 2629b16c0a4SJoonyoung Shim tristate "Maxim MAX8998" 2639b16c0a4SJoonyoung Shim depends on MFD_MAX8998 2649b16c0a4SJoonyoung Shim help 2659b16c0a4SJoonyoung Shim If you say yes here you will get support for the 2669b16c0a4SJoonyoung Shim RTC of Maxim MAX8998 PMIC. 2679b16c0a4SJoonyoung Shim 2689b16c0a4SJoonyoung Shim This driver can also be built as a module. If so, the module 2699b16c0a4SJoonyoung Shim will be called rtc-max8998. 2709b16c0a4SJoonyoung Shim 2715e0b2704SJonghwa Leeconfig RTC_DRV_MAX8997 2725e0b2704SJonghwa Lee tristate "Maxim MAX8997" 2735e0b2704SJonghwa Lee depends on MFD_MAX8997 2745e0b2704SJonghwa Lee help 2755e0b2704SJonghwa Lee If you say yes here you will get support for the 2765e0b2704SJonghwa Lee RTC of Maxim MAX8997 PMIC. 2775e0b2704SJonghwa Lee 2785e0b2704SJonghwa Lee This driver can also be built as a module. If so, the module 2795e0b2704SJonghwa Lee will be called rtc-max8997. 2805e0b2704SJonghwa Lee 281fca1dd03SJonghwa Leeconfig RTC_DRV_MAX77686 282fca1dd03SJonghwa Lee tristate "Maxim MAX77686" 283fca1dd03SJonghwa Lee depends on MFD_MAX77686 284fca1dd03SJonghwa Lee help 285fca1dd03SJonghwa Lee If you say yes here you will get support for the 286fca1dd03SJonghwa Lee RTC of Maxim MAX77686 PMIC. 287fca1dd03SJonghwa Lee 288fca1dd03SJonghwa Lee This driver can also be built as a module. If so, the module 289fca1dd03SJonghwa Lee will be called rtc-max77686. 290fca1dd03SJonghwa Lee 291*3ca1e326SChris Zhongconfig RTC_DRV_RK808 292*3ca1e326SChris Zhong tristate "Rockchip RK808 RTC" 293*3ca1e326SChris Zhong depends on MFD_RK808 294*3ca1e326SChris Zhong help 295*3ca1e326SChris Zhong If you say yes here you will get support for the 296*3ca1e326SChris Zhong RTC of RK808 PMIC. 297*3ca1e326SChris Zhong 298*3ca1e326SChris Zhong This driver can also be built as a module. If so, the module 299*3ca1e326SChris Zhong will be called rk808-rtc. 300*3ca1e326SChris Zhong 30109a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372 3025d4529beSPaul Mundt tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A" 30309a21e56SAlessandro Zummo help 30409a21e56SAlessandro Zummo If you say yes here you get support for the 3055d4529beSPaul Mundt Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips. 30609a21e56SAlessandro Zummo 30709a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 30809a21e56SAlessandro Zummo will be called rtc-rs5c372. 30909a21e56SAlessandro Zummo 31009a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208 31109b6bdb3SAlessandro Zummo tristate "Intersil ISL1208" 31209a21e56SAlessandro Zummo help 31309a21e56SAlessandro Zummo If you say yes here you get support for the 31409b6bdb3SAlessandro Zummo Intersil ISL1208 RTC chip. 31509a21e56SAlessandro Zummo 31609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 31709a21e56SAlessandro Zummo will be called rtc-isl1208. 31809a21e56SAlessandro Zummo 319d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022 320d6c7428fSRoman Fietze tristate "Intersil ISL12022" 321d6c7428fSRoman Fietze help 322d6c7428fSRoman Fietze If you say yes here you get support for the 323d6c7428fSRoman Fietze Intersil ISL12022 RTC chip. 324d6c7428fSRoman Fietze 325d6c7428fSRoman Fietze This driver can also be built as a module. If so, the module 326d6c7428fSRoman Fietze will be called rtc-isl12022. 327d6c7428fSRoman Fietze 32870e12337SArnaud Ebalardconfig RTC_DRV_ISL12057 32970e12337SArnaud Ebalard depends on I2C 33070e12337SArnaud Ebalard select REGMAP_I2C 33170e12337SArnaud Ebalard tristate "Intersil ISL12057" 33270e12337SArnaud Ebalard help 33370e12337SArnaud Ebalard If you say yes here you get support for the Intersil ISL12057 33470e12337SArnaud Ebalard I2C RTC chip. 33570e12337SArnaud Ebalard 33670e12337SArnaud Ebalard This driver can also be built as a module. If so, the module 33770e12337SArnaud Ebalard will be called rtc-isl12057. 33870e12337SArnaud Ebalard 33909a21e56SAlessandro Zummoconfig RTC_DRV_X1205 34009a21e56SAlessandro Zummo tristate "Xicor/Intersil X1205" 34109a21e56SAlessandro Zummo help 34209a21e56SAlessandro Zummo If you say yes here you get support for the 34309a21e56SAlessandro Zummo Xicor/Intersil X1205 RTC chip. 34409a21e56SAlessandro Zummo 34509a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 34609a21e56SAlessandro Zummo will be called rtc-x1205. 34709a21e56SAlessandro Zummo 3480101e53cSLaxman Dewanganconfig RTC_DRV_PALMAS 3490101e53cSLaxman Dewangan tristate "TI Palmas RTC driver" 3500101e53cSLaxman Dewangan depends on MFD_PALMAS 3510101e53cSLaxman Dewangan help 3520101e53cSLaxman Dewangan If you say yes here you get support for the RTC of TI PALMA series PMIC 3530101e53cSLaxman Dewangan chips. 3540101e53cSLaxman Dewangan 3550101e53cSLaxman Dewangan This driver can also be built as a module. If so, the module 3560101e53cSLaxman Dewangan will be called rtc-palma. 3570101e53cSLaxman Dewangan 35818cb6368SRenaud Cerratoconfig RTC_DRV_PCF2127 35918cb6368SRenaud Cerrato tristate "NXP PCF2127" 36018cb6368SRenaud Cerrato help 36118cb6368SRenaud Cerrato If you say yes here you get support for the NXP PCF2127/29 RTC 36218cb6368SRenaud Cerrato chips. 36318cb6368SRenaud Cerrato 36418cb6368SRenaud Cerrato This driver can also be built as a module. If so, the module 36518cb6368SRenaud Cerrato will be called rtc-pcf2127. 36618cb6368SRenaud Cerrato 367f803f0d0SThierry Redingconfig RTC_DRV_PCF8523 368f803f0d0SThierry Reding tristate "NXP PCF8523" 369f803f0d0SThierry Reding help 370f803f0d0SThierry Reding If you say yes here you get support for the NXP PCF8523 RTC 371f803f0d0SThierry Reding chips. 372f803f0d0SThierry Reding 373f803f0d0SThierry Reding This driver can also be built as a module. If so, the module 374f803f0d0SThierry Reding will be called rtc-pcf8523. 375f803f0d0SThierry Reding 37609a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563 37709a21e56SAlessandro Zummo tristate "Philips PCF8563/Epson RTC8564" 37809a21e56SAlessandro Zummo help 37909a21e56SAlessandro Zummo If you say yes here you get support for the 38009a21e56SAlessandro Zummo Philips PCF8563 RTC chip. The Epson RTC8564 38109a21e56SAlessandro Zummo should work as well. 38209a21e56SAlessandro Zummo 38309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 38409a21e56SAlessandro Zummo will be called rtc-pcf8563. 38509a21e56SAlessandro Zummo 386796b7abbSSøren Andersenconfig RTC_DRV_PCF85063 387796b7abbSSøren Andersen tristate "nxp PCF85063" 388796b7abbSSøren Andersen help 389796b7abbSSøren Andersen If you say yes here you get support for the PCF85063 RTC chip 390796b7abbSSøren Andersen 391796b7abbSSøren Andersen This driver can also be built as a module. If so, the module 392796b7abbSSøren Andersen will be called rtc-pcf85063. 393796b7abbSSøren Andersen 39409a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583 39509a21e56SAlessandro Zummo tristate "Philips PCF8583" 39609a21e56SAlessandro Zummo help 39709a21e56SAlessandro Zummo If you say yes here you get support for the Philips PCF8583 39809a21e56SAlessandro Zummo RTC chip found on Acorn RiscPCs. This driver supports the 39909a21e56SAlessandro Zummo platform specific method of retrieving the current year from 40009a21e56SAlessandro Zummo the RTC's SRAM. It will work on other platforms with the same 40109a21e56SAlessandro Zummo chip, but the year will probably have to be tweaked. 40209a21e56SAlessandro Zummo 40309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 40409a21e56SAlessandro Zummo will be called rtc-pcf8583. 40509a21e56SAlessandro Zummo 406caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80 4076b1a5235SWolfram Sang tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible" 408caaff562SAtsushi Nemoto help 409d3a126fcSSteven A. Falco If you say Y here you will get support for the ST M41T60 410d3a126fcSSteven A. Falco and M41T80 RTC chips series. Currently, the following chips are 411f30281f4SDaniel Glockner supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84, 4126b1a5235SWolfram Sang M41ST85, M41ST87, and MicroCrystal RV4162. 413caaff562SAtsushi Nemoto 414caaff562SAtsushi Nemoto This driver can also be built as a module. If so, the module 415caaff562SAtsushi Nemoto will be called rtc-m41t80. 416caaff562SAtsushi Nemoto 417617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT 418d3a126fcSSteven A. Falco bool "ST M41T65/M41T80 series RTC watchdog timer" 419617780d2SAtsushi Nemoto depends on RTC_DRV_M41T80 420617780d2SAtsushi Nemoto help 421617780d2SAtsushi Nemoto If you say Y here you will get support for the 422d3a126fcSSteven A. Falco watchdog timer in the ST M41T60 and M41T80 RTC chips series. 423617780d2SAtsushi Nemoto 4241ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K 4251ce7c83fSPiotr Ziecik tristate "TI BQ32000" 4261ce7c83fSPiotr Ziecik help 4271ce7c83fSPiotr Ziecik If you say Y here you will get support for the TI 4281ce7c83fSPiotr Ziecik BQ32000 I2C RTC chip. 4291ce7c83fSPiotr Ziecik 4301ce7c83fSPiotr Ziecik This driver can also be built as a module. If so, the module 4311ce7c83fSPiotr Ziecik will be called rtc-bq32k. 4321ce7c83fSPiotr Ziecik 433afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM 434afd8d0f9SDavid Brownell tristate "TI DaVinci DM355 EVM RTC" 435afd8d0f9SDavid Brownell depends on MFD_DM355EVM_MSP 436afd8d0f9SDavid Brownell help 437afd8d0f9SDavid Brownell Supports the RTC firmware in the MSP430 on the DM355 EVM. 438afd8d0f9SDavid Brownell 4390c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330 4400c4a59feSTony Lindgren boolean "TI TWL92330/Menelaus" 441bb35fb20SJan Engelhardt depends on MENELAUS 4420c4a59feSTony Lindgren help 4430c4a59feSTony Lindgren If you say yes here you get support for the RTC on the 44401dd2fbfSMatt LaPlante TWL92330 "Menelaus" power management chip, used with OMAP2 4450c4a59feSTony Lindgren platforms. The support is integrated with the rest of 4460c4a59feSTony Lindgren the Menelaus driver; it's not separate module. 4470c4a59feSTony Lindgren 448f96411abSDavid Brownellconfig RTC_DRV_TWL4030 449a6b49ffdSBalaji T K tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0" 4506b8029faSVenu Byravarasu depends on TWL4030_CORE 451f96411abSDavid Brownell help 452f96411abSDavid Brownell If you say yes here you get support for the RTC on the 453a6b49ffdSBalaji T K TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms. 454f96411abSDavid Brownell 455f96411abSDavid Brownell This driver can also be built as a module. If so, the module 456a6b49ffdSBalaji T K will be called rtc-twl. 457f96411abSDavid Brownell 458dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X 459dc59ed38SLaxman Dewangan tristate "TI TPS6586X RTC driver" 460dc59ed38SLaxman Dewangan depends on MFD_TPS6586X 461dc59ed38SLaxman Dewangan help 462a895d57dSMasanari Iida TI Power Management IC TPS6586X supports RTC functionality 463dc59ed38SLaxman Dewangan along with alarm. This driver supports the RTC driver for 464dc59ed38SLaxman Dewangan the TPS6586X RTC module. 465dc59ed38SLaxman Dewangan 4660e783980SVenu Byravarasuconfig RTC_DRV_TPS65910 4670e783980SVenu Byravarasu tristate "TI TPS65910 RTC driver" 4680e783980SVenu Byravarasu depends on RTC_CLASS && MFD_TPS65910 4690e783980SVenu Byravarasu help 4700e783980SVenu Byravarasu If you say yes here you get support for the RTC on the 4710e783980SVenu Byravarasu TPS65910 chips. 4720e783980SVenu Byravarasu 4730e783980SVenu Byravarasu This driver can also be built as a module. If so, the module 4740e783980SVenu Byravarasu will be called rtc-tps65910. 4750e783980SVenu Byravarasu 47636d61824SLaxman Dewanganconfig RTC_DRV_TPS80031 47736d61824SLaxman Dewangan tristate "TI TPS80031/TPS80032 RTC driver" 47836d61824SLaxman Dewangan depends on MFD_TPS80031 47936d61824SLaxman Dewangan help 480a895d57dSMasanari Iida TI Power Management IC TPS80031 supports RTC functionality 48136d61824SLaxman Dewangan along with alarm. This driver supports the RTC driver for 48236d61824SLaxman Dewangan the TPS80031 RTC module. 48336d61824SLaxman Dewangan 48490829c08SVenu Byravarasuconfig RTC_DRV_RC5T583 48590829c08SVenu Byravarasu tristate "RICOH 5T583 RTC driver" 48690829c08SVenu Byravarasu depends on MFD_RC5T583 48790829c08SVenu Byravarasu help 48890829c08SVenu Byravarasu If you say yes here you get support for the RTC on the 48990829c08SVenu Byravarasu RICOH 5T583 chips. 49090829c08SVenu Byravarasu 49190829c08SVenu Byravarasu This driver can also be built as a module. If so, the module 49290829c08SVenu Byravarasu will be called rtc-rc5t583. 49390829c08SVenu Byravarasu 494c46288b0SByron Bradleyconfig RTC_DRV_S35390A 495c46288b0SByron Bradley tristate "Seiko Instruments S-35390A" 496d479540dSRandy Dunlap select BITREVERSE 497c46288b0SByron Bradley help 498c46288b0SByron Bradley If you say yes here you will get support for the Seiko 499c46288b0SByron Bradley Instruments S-35390A. 500c46288b0SByron Bradley 501c46288b0SByron Bradley This driver can also be built as a module. If so the module 502c46288b0SByron Bradley will be called rtc-s35390a. 503c46288b0SByron Bradley 504c6d8f400SSergey Lapinconfig RTC_DRV_FM3130 505c6d8f400SSergey Lapin tristate "Ramtron FM3130" 506c6d8f400SSergey Lapin help 507c6d8f400SSergey Lapin If you say Y here you will get support for the 508c6d8f400SSergey Lapin Ramtron FM3130 RTC chips. 509c6d8f400SSergey Lapin Ramtron FM3130 is a chip with two separate devices inside, 510c6d8f400SSergey Lapin RTC clock and FRAM. This driver provides only RTC functionality. 511c6d8f400SSergey Lapin 512c6d8f400SSergey Lapin This driver can also be built as a module. If so the module 513c6d8f400SSergey Lapin will be called rtc-fm3130. 514c6d8f400SSergey Lapin 515a7fa9851SMartyn Welchconfig RTC_DRV_RX8581 516a7fa9851SMartyn Welch tristate "Epson RX-8581" 517a7fa9851SMartyn Welch help 518a7fa9851SMartyn Welch If you say yes here you will get support for the Epson RX-8581. 519a7fa9851SMartyn Welch 520a7fa9851SMartyn Welch This driver can also be built as a module. If so the module 521a7fa9851SMartyn Welch will be called rtc-rx8581. 522a7fa9851SMartyn Welch 5233c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025 5243c2b9075SWolfgang Grandegger tristate "Epson RX-8025SA/NB" 5253c2b9075SWolfgang Grandegger help 5263c2b9075SWolfgang Grandegger If you say yes here you get support for the Epson 5273c2b9075SWolfgang Grandegger RX-8025SA/NB RTC chips. 5283c2b9075SWolfgang Grandegger 5293c2b9075SWolfgang Grandegger This driver can also be built as a module. If so, the module 5303c2b9075SWolfgang Grandegger will be called rtc-rx8025. 5313c2b9075SWolfgang Grandegger 532ae3551f9SMike Rapoportconfig RTC_DRV_EM3027 533ae3551f9SMike Rapoport tristate "EM Microelectronic EM3027" 534ae3551f9SMike Rapoport help 535ae3551f9SMike Rapoport If you say yes here you get support for the EM 536ae3551f9SMike Rapoport Microelectronic EM3027 RTC chips. 537ae3551f9SMike Rapoport 538ae3551f9SMike Rapoport This driver can also be built as a module. If so, the module 539ae3551f9SMike Rapoport will be called rtc-em3027. 540ae3551f9SMike Rapoport 54152365230SHeiko Schocherconfig RTC_DRV_RV3029C2 54252365230SHeiko Schocher tristate "Micro Crystal RTC" 54352365230SHeiko Schocher help 54452365230SHeiko Schocher If you say yes here you get support for the Micro Crystal 54552365230SHeiko Schocher RV3029-C2 RTC chips. 54652365230SHeiko Schocher 54752365230SHeiko Schocher This driver can also be built as a module. If so, the module 54852365230SHeiko Schocher will be called rtc-rv3029c2. 54952365230SHeiko Schocher 5505bccae6eSSangbeom Kimconfig RTC_DRV_S5M 5510c5deb1eSKrzysztof Kozlowski tristate "Samsung S2M/S5M series" 5525bccae6eSSangbeom Kim depends on MFD_SEC_CORE 5535bccae6eSSangbeom Kim help 5545bccae6eSSangbeom Kim If you say yes here you will get support for the 5550c5deb1eSKrzysztof Kozlowski RTC of Samsung S2MPS14 and S5M PMIC series. 5565bccae6eSSangbeom Kim 5575bccae6eSSangbeom Kim This driver can also be built as a module. If so, the module 5585bccae6eSSangbeom Kim will be called rtc-s5m. 5595bccae6eSSangbeom Kim 560bb35fb20SJan Engelhardtendif # I2C 561bb35fb20SJan Engelhardt 56209a21e56SAlessandro Zummocomment "SPI RTC drivers" 563bb35fb20SJan Engelhardt 564bb35fb20SJan Engelhardtif SPI_MASTER 56509a21e56SAlessandro Zummo 56674d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93 56774d34d4bSVoss, Nikolaus tristate "ST M41T93" 56874d34d4bSVoss, Nikolaus help 56974d34d4bSVoss, Nikolaus If you say yes here you will get support for the 57074d34d4bSVoss, Nikolaus ST M41T93 SPI RTC chip. 57174d34d4bSVoss, Nikolaus 57274d34d4bSVoss, Nikolaus This driver can also be built as a module. If so, the module 57374d34d4bSVoss, Nikolaus will be called rtc-m41t93. 57474d34d4bSVoss, Nikolaus 5758fc2c767SKim B. Heinoconfig RTC_DRV_M41T94 5768fc2c767SKim B. Heino tristate "ST M41T94" 5778fc2c767SKim B. Heino help 5788fc2c767SKim B. Heino If you say yes here you will get support for the 5798fc2c767SKim B. Heino ST M41T94 SPI RTC chip. 5808fc2c767SKim B. Heino 5818fc2c767SKim B. Heino This driver can also be built as a module. If so, the module 5828fc2c767SKim B. Heino will be called rtc-m41t94. 5838fc2c767SKim B. Heino 58453e84b67SDavid Brownellconfig RTC_DRV_DS1305 58553e84b67SDavid Brownell tristate "Dallas/Maxim DS1305/DS1306" 58653e84b67SDavid Brownell help 58753e84b67SDavid Brownell Select this driver to get support for the Dallas/Maxim DS1305 58853e84b67SDavid Brownell and DS1306 real time clock chips. These support a trickle 58953e84b67SDavid Brownell charger, alarms, and NVRAM in addition to the clock. 59053e84b67SDavid Brownell 59153e84b67SDavid Brownell This driver can also be built as a module. If so, the module 59253e84b67SDavid Brownell will be called rtc-ds1305. 59353e84b67SDavid Brownell 5941d6316f5SRaghavendra Ganigaconfig RTC_DRV_DS1343 5950dd449b1SRaghavendra Ganiga select REGMAP_SPI 5961d6316f5SRaghavendra Ganiga tristate "Dallas/Maxim DS1343/DS1344" 5971d6316f5SRaghavendra Ganiga help 5981d6316f5SRaghavendra Ganiga If you say yes here you get support for the 5991d6316f5SRaghavendra Ganiga Dallas/Maxim DS1343 and DS1344 real time clock chips. 6001d6316f5SRaghavendra Ganiga Support for trickle charger, alarm is provided. 6011d6316f5SRaghavendra Ganiga 6021d6316f5SRaghavendra Ganiga This driver can also be built as a module. If so, the module 6031d6316f5SRaghavendra Ganiga will be called rtc-ds1343. 6041d6316f5SRaghavendra Ganiga 605617b26a0SRaghavendra Ganigaconfig RTC_DRV_DS1347 606617b26a0SRaghavendra Ganiga tristate "Dallas/Maxim DS1347" 607617b26a0SRaghavendra Ganiga help 608617b26a0SRaghavendra Ganiga If you say yes here you get support for the 609617b26a0SRaghavendra Ganiga Dallas/Maxim DS1347 chips. 610617b26a0SRaghavendra Ganiga 611617b26a0SRaghavendra Ganiga This driver only supports the RTC feature, and not other chip 612617b26a0SRaghavendra Ganiga features such as alarms. 613617b26a0SRaghavendra Ganiga 614617b26a0SRaghavendra Ganiga This driver can also be built as a module. If so, the module 615617b26a0SRaghavendra Ganiga will be called rtc-ds1347. 616617b26a0SRaghavendra Ganiga 61706de1808SMark Jacksonconfig RTC_DRV_DS1390 61806de1808SMark Jackson tristate "Dallas/Maxim DS1390/93/94" 61906de1808SMark Jackson help 6207b9b2ef1SAlessandro Zummo If you say yes here you get support for the 6217b9b2ef1SAlessandro Zummo Dallas/Maxim DS1390/93/94 chips. 62206de1808SMark Jackson 62306de1808SMark Jackson This driver only supports the RTC feature, and not other chip 62406de1808SMark Jackson features such as alarms and trickle charging. 62506de1808SMark Jackson 62606de1808SMark Jackson This driver can also be built as a module. If so, the module 62706de1808SMark Jackson will be called rtc-ds1390. 62806de1808SMark Jackson 62909b6bdb3SAlessandro Zummoconfig RTC_DRV_MAX6902 63009b6bdb3SAlessandro Zummo tristate "Maxim MAX6902" 63109b6bdb3SAlessandro Zummo help 63209b6bdb3SAlessandro Zummo If you say yes here you will get support for the 63309b6bdb3SAlessandro Zummo Maxim MAX6902 SPI RTC chip. 63409b6bdb3SAlessandro Zummo 63509b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 63609b6bdb3SAlessandro Zummo will be called rtc-max6902. 63709b6bdb3SAlessandro Zummo 6382805b969SMagnus Dammconfig RTC_DRV_R9701 6392805b969SMagnus Damm tristate "Epson RTC-9701JE" 6402805b969SMagnus Damm help 6412805b969SMagnus Damm If you say yes here you will get support for the 6422805b969SMagnus Damm Epson RTC-9701JE SPI RTC chip. 6432805b969SMagnus Damm 6442805b969SMagnus Damm This driver can also be built as a module. If so, the module 6452805b969SMagnus Damm will be called rtc-r9701. 6462805b969SMagnus Damm 64709a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348 64809a21e56SAlessandro Zummo tristate "Ricoh RS5C348A/B" 64909a21e56SAlessandro Zummo help 65009a21e56SAlessandro Zummo If you say yes here you get support for the 65109a21e56SAlessandro Zummo Ricoh RS5C348A and RS5C348B RTC chips. 65209a21e56SAlessandro Zummo 65309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 65409a21e56SAlessandro Zummo will be called rtc-rs5c348. 65509a21e56SAlessandro Zummo 6562f9b75e0SDennis Aberillaconfig RTC_DRV_DS3234 6572f9b75e0SDennis Aberilla tristate "Maxim/Dallas DS3234" 6582f9b75e0SDennis Aberilla help 6592f9b75e0SDennis Aberilla If you say yes here you get support for the 6602f9b75e0SDennis Aberilla Maxim/Dallas DS3234 SPI RTC chip. 6612f9b75e0SDennis Aberilla 6622f9b75e0SDennis Aberilla This driver can also be built as a module. If so, the module 6632f9b75e0SDennis Aberilla will be called rtc-ds3234. 6642f9b75e0SDennis Aberilla 6657f3923a1SChris Vergesconfig RTC_DRV_PCF2123 6667f3923a1SChris Verges tristate "NXP PCF2123" 6677f3923a1SChris Verges help 6687f3923a1SChris Verges If you say yes here you get support for the NXP PCF2123 6697f3923a1SChris Verges RTC chip. 6707f3923a1SChris Verges 6717f3923a1SChris Verges This driver can also be built as a module. If so, the module 6727f3923a1SChris Verges will be called rtc-pcf2123. 6737f3923a1SChris Verges 674cce2da9aSTorben Hohnconfig RTC_DRV_RX4581 675cce2da9aSTorben Hohn tristate "Epson RX-4581" 676cce2da9aSTorben Hohn help 677cce2da9aSTorben Hohn If you say yes here you will get support for the Epson RX-4581. 678cce2da9aSTorben Hohn 679cce2da9aSTorben Hohn This driver can also be built as a module. If so the module 680cce2da9aSTorben Hohn will be called rtc-rx4581. 681cce2da9aSTorben Hohn 6821fcbe42cSJosef Gajdusekconfig RTC_DRV_MCP795 6831fcbe42cSJosef Gajdusek tristate "Microchip MCP795" 6841fcbe42cSJosef Gajdusek help 6851fcbe42cSJosef Gajdusek If you say yes here you will get support for the Microchip MCP795. 6861fcbe42cSJosef Gajdusek 6871fcbe42cSJosef Gajdusek This driver can also be built as a module. If so the module 6881fcbe42cSJosef Gajdusek will be called rtc-mcp795. 6891fcbe42cSJosef Gajdusek 690bb35fb20SJan Engelhardtendif # SPI_MASTER 691bb35fb20SJan Engelhardt 69209a21e56SAlessandro Zummocomment "Platform RTC drivers" 6930c86edc0SAlessandro Zummo 6947be2c7c9SDavid Brownell# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h> 6957be2c7c9SDavid Brownell# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a 6967be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device. 6977be2c7c9SDavid Brownell 6987be2c7c9SDavid Brownellconfig RTC_DRV_CMOS 69909a21e56SAlessandro Zummo tristate "PC-style 'CMOS'" 70041c9dbf4SGeert Uytterhoeven depends on X86 || ARM || M32R || PPC || MIPS || SPARC64 701c7500900SDavid Brownell default y if X86 7027be2c7c9SDavid Brownell help 7037be2c7c9SDavid Brownell Say "yes" here to get direct support for the real time clock 7047be2c7c9SDavid Brownell found in every PC or ACPI-based system, and some other boards. 7057be2c7c9SDavid Brownell Specifically the original MC146818, compatibles like those in 7067be2c7c9SDavid Brownell PC south bridges, the DS12887 or M48T86, some multifunction 7077be2c7c9SDavid Brownell or LPC bus chips, and so on. 7087be2c7c9SDavid Brownell 7097be2c7c9SDavid Brownell Your system will need to define the platform device used by 7107be2c7c9SDavid Brownell this driver, otherwise it won't be accessible. This means 7117be2c7c9SDavid Brownell you can safely enable this driver if you don't know whether 7127be2c7c9SDavid Brownell or not your board has this kind of hardware. 7137be2c7c9SDavid Brownell 7147be2c7c9SDavid Brownell This driver can also be built as a module. If so, the module 7157be2c7c9SDavid Brownell will be called rtc-cmos. 7167be2c7c9SDavid Brownell 71785d0b3a5SRichard Hendersonconfig RTC_DRV_ALPHA 71885d0b3a5SRichard Henderson bool "Alpha PC-style CMOS" 71985d0b3a5SRichard Henderson depends on ALPHA 72085d0b3a5SRichard Henderson default y 72185d0b3a5SRichard Henderson help 72285d0b3a5SRichard Henderson Direct support for the real-time clock found on every Alpha 72385d0b3a5SRichard Henderson system, specifically MC146818 compatibles. If in doubt, say Y. 72485d0b3a5SRichard Henderson 7250146f261SFeng Tangconfig RTC_DRV_VRTC 726933b9463SAlan Cox tristate "Virtual RTC for Intel MID platforms" 727933b9463SAlan Cox depends on X86_INTEL_MID 728933b9463SAlan Cox default y if X86_INTEL_MID 7290146f261SFeng Tang 7300146f261SFeng Tang help 7310146f261SFeng Tang Say "yes" here to get direct support for the real time clock 7320146f261SFeng Tang found on Moorestown platforms. The VRTC is a emulated RTC that 7330146f261SFeng Tang derives its clock source from a real RTC in the PMIC. The MC146818 7340146f261SFeng Tang style programming interface is mostly conserved, but any 7350146f261SFeng Tang updates are done via IPC calls to the system controller FW. 7360146f261SFeng Tang 737537739deSThomas Bogendoerferconfig RTC_DRV_DS1216 738537739deSThomas Bogendoerfer tristate "Dallas DS1216" 739bb35fb20SJan Engelhardt depends on SNI_RM 740537739deSThomas Bogendoerfer help 741537739deSThomas Bogendoerfer If you say yes here you get support for the Dallas DS1216 RTC chips. 742537739deSThomas Bogendoerfer 7435f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286 7445f119f29SThomas Bogendoerfer tristate "Dallas DS1286" 7455f119f29SThomas Bogendoerfer help 7465f119f29SThomas Bogendoerfer If you say yes here you get support for the Dallas DS1286 RTC chips. 7475f119f29SThomas Bogendoerfer 748739d340dSPaul Mundtconfig RTC_DRV_DS1302 749739d340dSPaul Mundt tristate "Dallas DS1302" 750739d340dSPaul Mundt depends on SH_SECUREEDGE5410 751739d340dSPaul Mundt help 752739d340dSPaul Mundt If you say yes here you get support for the Dallas DS1302 RTC chips. 753739d340dSPaul Mundt 7548f26795aSAndrew Sharpconfig RTC_DRV_DS1511 7558f26795aSAndrew Sharp tristate "Dallas DS1511" 7568f26795aSAndrew Sharp help 7578f26795aSAndrew Sharp If you say yes here you get support for the 7588f26795aSAndrew Sharp Dallas DS1511 timekeeping/watchdog chip. 7598f26795aSAndrew Sharp 7608f26795aSAndrew Sharp This driver can also be built as a module. If so, the module 7618f26795aSAndrew Sharp will be called rtc-ds1511. 7628f26795aSAndrew Sharp 7639bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553 76409b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1553" 7659bf5b4f5SAtsushi Nemoto help 7669bf5b4f5SAtsushi Nemoto If you say yes here you get support for the 76709b6bdb3SAlessandro Zummo Maxim/Dallas DS1553 timekeeping chip. 7689bf5b4f5SAtsushi Nemoto 7699bf5b4f5SAtsushi Nemoto This driver can also be built as a module. If so, the module 7709bf5b4f5SAtsushi Nemoto will be called rtc-ds1553. 7719bf5b4f5SAtsushi Nemoto 77209b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742 77309b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1742/1743" 77409b6bdb3SAlessandro Zummo help 77509b6bdb3SAlessandro Zummo If you say yes here you get support for the 77609b6bdb3SAlessandro Zummo Maxim/Dallas DS1742/1743 timekeeping chip. 77709b6bdb3SAlessandro Zummo 77809b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 77909b6bdb3SAlessandro Zummo will be called rtc-ds1742. 78009b6bdb3SAlessandro Zummo 781ad0200f7SJean Delvareconfig RTC_DRV_DS2404 782ad0200f7SJean Delvare tristate "Maxim/Dallas DS2404" 783ad0200f7SJean Delvare help 784ad0200f7SJean Delvare If you say yes here you get support for the 785ad0200f7SJean Delvare Dallas DS2404 RTC chip. 786ad0200f7SJean Delvare 787ad0200f7SJean Delvare This driver can also be built as a module. If so, the module 788ad0200f7SJean Delvare will be called rtc-ds2404. 789ad0200f7SJean Delvare 790fef931ffSAshish Jangamconfig RTC_DRV_DA9052 791fef931ffSAshish Jangam tristate "Dialog DA9052/DA9053 RTC" 792fef931ffSAshish Jangam depends on PMIC_DA9052 793fef931ffSAshish Jangam help 794fef931ffSAshish Jangam Say y here to support the RTC driver for Dialog Semiconductor 795fef931ffSAshish Jangam DA9052-BC and DA9053-AA/Bx PMICs. 796fef931ffSAshish Jangam 7976920d996SAshish Jangamconfig RTC_DRV_DA9055 7986920d996SAshish Jangam tristate "Dialog Semiconductor DA9055 RTC" 7996920d996SAshish Jangam depends on MFD_DA9055 8006920d996SAshish Jangam help 8016920d996SAshish Jangam If you say yes here you will get support for the 8026920d996SAshish Jangam RTC of the Dialog DA9055 PMIC. 8036920d996SAshish Jangam 8046920d996SAshish Jangam This driver can also be built as a module. If so, the module 8056920d996SAshish Jangam will be called rtc-da9055 8066920d996SAshish Jangam 807c2a57550SOpensource [Steve Twiss]config RTC_DRV_DA9063 808c2a57550SOpensource [Steve Twiss] tristate "Dialog Semiconductor DA9063 RTC" 809c2a57550SOpensource [Steve Twiss] depends on MFD_DA9063 810c2a57550SOpensource [Steve Twiss] help 811c2a57550SOpensource [Steve Twiss] If you say yes here you will get support for the RTC subsystem 812c2a57550SOpensource [Steve Twiss] of the Dialog Semiconductor DA9063. 813c2a57550SOpensource [Steve Twiss] 814c2a57550SOpensource [Steve Twiss] This driver can also be built as a module. If so, the module 815c2a57550SOpensource [Steve Twiss] will be called "rtc-da9063". 816c2a57550SOpensource [Steve Twiss] 8175e3fd9e5Sdann frazierconfig RTC_DRV_EFI 8185e3fd9e5Sdann frazier tristate "EFI RTC" 819da167ad7SMark Salter depends on EFI 8205e3fd9e5Sdann frazier help 8215e3fd9e5Sdann frazier If you say yes here you will get support for the EFI 8225e3fd9e5Sdann frazier Real Time Clock. 8235e3fd9e5Sdann frazier 8245e3fd9e5Sdann frazier This driver can also be built as a module. If so, the module 8255e3fd9e5Sdann frazier will be called rtc-efi. 8265e3fd9e5Sdann frazier 82702964115SThomas Hommelconfig RTC_DRV_STK17TA8 82802964115SThomas Hommel tristate "Simtek STK17TA8" 82902964115SThomas Hommel help 83002964115SThomas Hommel If you say yes here you get support for the 83102964115SThomas Hommel Simtek STK17TA8 timekeeping chip. 83202964115SThomas Hommel 83302964115SThomas Hommel This driver can also be built as a module. If so, the module 83402964115SThomas Hommel will be called rtc-stk17ta8. 83502964115SThomas Hommel 83609a21e56SAlessandro Zummoconfig RTC_DRV_M48T86 83709a21e56SAlessandro Zummo tristate "ST M48T86/Dallas DS12887" 83809a21e56SAlessandro Zummo help 83909a21e56SAlessandro Zummo If you say Y here you will get support for the 84009a21e56SAlessandro Zummo ST M48T86 and Dallas DS12887 RTC chips. 84109a21e56SAlessandro Zummo 84209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 84309a21e56SAlessandro Zummo will be called rtc-m48t86. 84409a21e56SAlessandro Zummo 845d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35 846d1dbd82eSThomas Bogendoerfer tristate "ST M48T35" 847d1dbd82eSThomas Bogendoerfer help 848d1dbd82eSThomas Bogendoerfer If you say Y here you will get support for the 849d1dbd82eSThomas Bogendoerfer ST M48T35 RTC chip. 850d1dbd82eSThomas Bogendoerfer 851d1dbd82eSThomas Bogendoerfer This driver can also be built as a module, if so, the module 852d1dbd82eSThomas Bogendoerfer will be called "rtc-m48t35". 853d1dbd82eSThomas Bogendoerfer 8542e774c7cSMark Zhanconfig RTC_DRV_M48T59 85594fe7424SKrzysztof Helt tristate "ST M48T59/M48T08/M48T02" 8562e774c7cSMark Zhan help 8572e774c7cSMark Zhan If you say Y here you will get support for the 85894fe7424SKrzysztof Helt ST M48T59 RTC chip and compatible ST M48T08 and M48T02. 85994fe7424SKrzysztof Helt 86094fe7424SKrzysztof Helt These chips are usually found in Sun SPARC and UltraSPARC 86194fe7424SKrzysztof Helt workstations. 8622e774c7cSMark Zhan 8632e774c7cSMark Zhan This driver can also be built as a module, if so, the module 8642e774c7cSMark Zhan will be called "rtc-m48t59". 8652e774c7cSMark Zhan 8664f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242 8674f9b9bbaSGeert Uytterhoeven tristate "Oki MSM6242" 8684f9b9bbaSGeert Uytterhoeven help 8694f9b9bbaSGeert Uytterhoeven If you say yes here you get support for the Oki MSM6242 8704f9b9bbaSGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A2000). 8714f9b9bbaSGeert Uytterhoeven 8724f9b9bbaSGeert Uytterhoeven This driver can also be built as a module. If so, the module 8734f9b9bbaSGeert Uytterhoeven will be called rtc-msm6242. 8744f9b9bbaSGeert Uytterhoeven 875cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802 876cca4c231SDavid S. Miller tristate "TI BQ4802" 877cca4c231SDavid S. Miller help 878cca4c231SDavid S. Miller If you say Y here you will get support for the TI 879cca4c231SDavid S. Miller BQ4802 RTC chip. 880cca4c231SDavid S. Miller 881cca4c231SDavid S. Miller This driver can also be built as a module. If so, the module 882cca4c231SDavid S. Miller will be called rtc-bq4802. 883cca4c231SDavid S. Miller 8844f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01 8854f672ce2SGeert Uytterhoeven tristate "Ricoh RP5C01" 8864f672ce2SGeert Uytterhoeven help 8874f672ce2SGeert Uytterhoeven If you say yes here you get support for the Ricoh RP5C01 8884f672ce2SGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A3000 8894f672ce2SGeert Uytterhoeven and A4000). 8904f672ce2SGeert Uytterhoeven 8914f672ce2SGeert Uytterhoeven This driver can also be built as a module. If so, the module 8924f672ce2SGeert Uytterhoeven will be called rtc-rp5c01. 8934f672ce2SGeert Uytterhoeven 89409a21e56SAlessandro Zummoconfig RTC_DRV_V3020 89509a21e56SAlessandro Zummo tristate "EM Microelectronic V3020" 89609a21e56SAlessandro Zummo help 89709a21e56SAlessandro Zummo If you say yes here you will get support for the 89809a21e56SAlessandro Zummo EM Microelectronic v3020 RTC chip. 89909a21e56SAlessandro Zummo 90009a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 90109a21e56SAlessandro Zummo will be called rtc-v3020. 90209a21e56SAlessandro Zummo 90335c86bf6SMark Brownconfig RTC_DRV_WM831X 90435c86bf6SMark Brown tristate "Wolfson Microelectronics WM831x RTC" 90535c86bf6SMark Brown depends on MFD_WM831X 90635c86bf6SMark Brown help 90735c86bf6SMark Brown If you say yes here you will get support for the RTC subsystem 90835c86bf6SMark Brown of the Wolfson Microelectronics WM831X series PMICs. 90935c86bf6SMark Brown 91035c86bf6SMark Brown This driver can also be built as a module. If so, the module 91135c86bf6SMark Brown will be called "rtc-wm831x". 91235c86bf6SMark Brown 913077eaf5bSMark Brownconfig RTC_DRV_WM8350 914077eaf5bSMark Brown tristate "Wolfson Microelectronics WM8350 RTC" 915077eaf5bSMark Brown depends on MFD_WM8350 916077eaf5bSMark Brown help 917077eaf5bSMark Brown If you say yes here you will get support for the RTC subsystem 918077eaf5bSMark Brown of the Wolfson Microelectronics WM8350. 919077eaf5bSMark Brown 920077eaf5bSMark Brown This driver can also be built as a module. If so, the module 921077eaf5bSMark Brown will be called "rtc-wm8350". 922077eaf5bSMark Brown 9230942a71eSRajeev Kumarconfig RTC_DRV_SPEAR 9240942a71eSRajeev Kumar tristate "SPEAR ST RTC" 9250942a71eSRajeev Kumar depends on PLAT_SPEAR 9260942a71eSRajeev Kumar default y 9270942a71eSRajeev Kumar help 9280942a71eSRajeev Kumar If you say Y here you will get support for the RTC found on 9290942a71eSRajeev Kumar spear 9300942a71eSRajeev Kumar 931eae854b2SBalaji Raoconfig RTC_DRV_PCF50633 932eae854b2SBalaji Rao depends on MFD_PCF50633 933eae854b2SBalaji Rao tristate "NXP PCF50633 RTC" 934eae854b2SBalaji Rao help 935eae854b2SBalaji Rao If you say yes here you get support for the RTC subsystem of the 936eae854b2SBalaji Rao NXP PCF50633 used in embedded systems. 937eae854b2SBalaji Rao 938bd207cfbSLinus Walleijconfig RTC_DRV_AB3100 939bd207cfbSLinus Walleij tristate "ST-Ericsson AB3100 RTC" 940bd207cfbSLinus Walleij depends on AB3100_CORE 941bd207cfbSLinus Walleij default y if AB3100_CORE 942bd207cfbSLinus Walleij help 943bd207cfbSLinus Walleij Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC 944bd207cfbSLinus Walleij support. This chip contains a battery- and capacitor-backed RTC. 945bd207cfbSLinus Walleij 9460af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500 9470af62f4dSVirupax Sadashivpetimath tristate "ST-Ericsson AB8500 RTC" 9480af62f4dSVirupax Sadashivpetimath depends on AB8500_CORE 949651fb480SUlf Hansson select RTC_INTF_DEV 950dc43d4a2SRamesh Chandrasekaran select RTC_INTF_DEV_UIE_EMUL 9510af62f4dSVirupax Sadashivpetimath help 9520af62f4dSVirupax Sadashivpetimath Select this to enable the ST-Ericsson AB8500 power management IC RTC 9530af62f4dSVirupax Sadashivpetimath support. This chip contains a battery- and capacitor-backed RTC. 9540af62f4dSVirupax Sadashivpetimath 955afd49a7eSWan ZongShunconfig RTC_DRV_NUC900 956afd49a7eSWan ZongShun tristate "NUC910/NUC920 RTC driver" 9576b8029faSVenu Byravarasu depends on ARCH_W90X900 958afd49a7eSWan ZongShun help 959afd49a7eSWan ZongShun If you say yes here you get support for the RTC subsystem of the 960afd49a7eSWan ZongShun NUC910/NUC920 used in embedded systems. 961bd207cfbSLinus Walleij 96209a21e56SAlessandro Zummocomment "on-CPU RTC drivers" 96309a21e56SAlessandro Zummo 9648ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI 9658ecf6c54SMiguel Aguilar tristate "TI DaVinci RTC" 9668ecf6c54SMiguel Aguilar depends on ARCH_DAVINCI_DM365 9678ecf6c54SMiguel Aguilar help 9688ecf6c54SMiguel Aguilar If you say yes here you get support for the RTC on the 9698ecf6c54SMiguel Aguilar DaVinci platforms (DM365). 9708ecf6c54SMiguel Aguilar 9718ecf6c54SMiguel Aguilar This driver can also be built as a module. If so, the module 9728ecf6c54SMiguel Aguilar will be called rtc-davinci. 9738ecf6c54SMiguel Aguilar 974b224b9acSFabio Estevamconfig RTC_DRV_IMXDI 975b224b9acSFabio Estevam tristate "Freescale IMX DryIce Real Time Clock" 976ef216ad0SRoland Stigge depends on ARCH_MXC 977b224b9acSFabio Estevam help 978b224b9acSFabio Estevam Support for Freescale IMX DryIce RTC 979b224b9acSFabio Estevam 980b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 981b224b9acSFabio Estevam will be called "rtc-imxdi". 982b224b9acSFabio Estevam 983db68b189SDavid Brownellconfig RTC_DRV_OMAP 984db68b189SDavid Brownell tristate "TI OMAP1" 985427af9a6SAfzal Mohammed depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730 || ARCH_DAVINCI_DA8XX || SOC_AM33XX 986db68b189SDavid Brownell help 987427af9a6SAfzal Mohammed Say "yes" here to support the on chip real time clock 988427af9a6SAfzal Mohammed present on TI OMAP1, AM33xx and DA8xx/OMAP-L13x. 989427af9a6SAfzal Mohammed 990427af9a6SAfzal Mohammed This driver can also be built as a module, if so, module 991427af9a6SAfzal Mohammed will be called rtc-omap. 992db68b189SDavid Brownell 99316f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC 99416f4efe7SAtul Dahiya bool 99516f4efe7SAtul Dahiya help 99616f4efe7SAtul Dahiya This will include RTC support for Samsung SoCs. If 99716f4efe7SAtul Dahiya you want to include RTC support for any machine, kindly 99816f4efe7SAtul Dahiya select this in the respective mach-XXXX/Kconfig file. 99916f4efe7SAtul Dahiya 10001add6781SBen Dooksconfig RTC_DRV_S3C 10011add6781SBen Dooks tristate "Samsung S3C series SoC RTC" 1002b130d5c2SKukjin Kim depends on ARCH_S3C64XX || HAVE_S3C_RTC 10031add6781SBen Dooks help 10041add6781SBen Dooks RTC (Realtime Clock) driver for the clock inbuilt into the 10051add6781SBen Dooks Samsung S3C24XX series of SoCs. This can provide periodic 10061add6781SBen Dooks interrupt rates from 1Hz to 64Hz for user programs, and 10071add6781SBen Dooks wakeup from Alarm. 10081add6781SBen Dooks 10091add6781SBen Dooks The driver currently supports the common features on all the 10101add6781SBen Dooks S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440 10111add6781SBen Dooks and S3C2442. 10121add6781SBen Dooks 10131add6781SBen Dooks This driver can also be build as a module. If so, the module 10141add6781SBen Dooks will be called rtc-s3c. 10151add6781SBen Dooks 1016fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX 1017fd507e2fSAlessandro Zummo tristate "Cirrus Logic EP93XX" 1018bb35fb20SJan Engelhardt depends on ARCH_EP93XX 1019fd507e2fSAlessandro Zummo help 1020fd507e2fSAlessandro Zummo If you say yes here you get support for the 1021fd507e2fSAlessandro Zummo RTC embedded in the Cirrus Logic EP93XX processors. 1022fd507e2fSAlessandro Zummo 1023fd507e2fSAlessandro Zummo This driver can also be built as a module. If so, the module 1024fd507e2fSAlessandro Zummo will be called rtc-ep93xx. 1025fd507e2fSAlessandro Zummo 1026e842f1c8SRichard Purdieconfig RTC_DRV_SA1100 10273888c090SHaojian Zhuang tristate "SA11x0/PXA2xx/PXA910" 10283888c090SHaojian Zhuang depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP 1029e842f1c8SRichard Purdie help 1030e842f1c8SRichard Purdie If you say Y here you will get access to the real time clock 1031e842f1c8SRichard Purdie built into your SA11x0 or PXA2xx CPU. 1032e842f1c8SRichard Purdie 1033e842f1c8SRichard Purdie To compile this driver as a module, choose M here: the 1034e842f1c8SRichard Purdie module will be called rtc-sa1100. 1035fd507e2fSAlessandro Zummo 1036317a6104SPaul Mundtconfig RTC_DRV_SH 1037317a6104SPaul Mundt tristate "SuperH On-Chip RTC" 10386b8029faSVenu Byravarasu depends on SUPERH && HAVE_CLK 1039317a6104SPaul Mundt help 1040317a6104SPaul Mundt Say Y here to enable support for the on-chip RTC found in 1041317a6104SPaul Mundt most SuperH processors. 1042317a6104SPaul Mundt 1043317a6104SPaul Mundt To compile this driver as a module, choose M here: the 1044317a6104SPaul Mundt module will be called rtc-sh. 1045317a6104SPaul Mundt 10468417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX 10473e16f6afSAlessandro Zummo tristate "NEC VR41XX" 1048bb35fb20SJan Engelhardt depends on CPU_VR41XX 10493e16f6afSAlessandro Zummo help 10503e16f6afSAlessandro Zummo If you say Y here you will get access to the real time clock 10513e16f6afSAlessandro Zummo built into your NEC VR41XX CPU. 10523e16f6afSAlessandro Zummo 10533e16f6afSAlessandro Zummo To compile this driver as a module, choose M here: the 10543e16f6afSAlessandro Zummo module will be called rtc-vr41xx. 10558417eb7aSYoichi Yuasa 1056a190901cSRussell Kingconfig RTC_DRV_PL030 1057a190901cSRussell King tristate "ARM AMBA PL030 RTC" 1058a190901cSRussell King depends on ARM_AMBA 1059a190901cSRussell King help 1060a190901cSRussell King If you say Y here you will get access to ARM AMBA 1061a190901cSRussell King PrimeCell PL030 RTC found on certain ARM SOCs. 1062a190901cSRussell King 1063a190901cSRussell King To compile this driver as a module, choose M here: the 1064a190901cSRussell King module will be called rtc-pl030. 1065a190901cSRussell King 10668ae6e163SDeepak Saxenaconfig RTC_DRV_PL031 10678ae6e163SDeepak Saxena tristate "ARM AMBA PL031 RTC" 1068bb35fb20SJan Engelhardt depends on ARM_AMBA 10698ae6e163SDeepak Saxena help 10708ae6e163SDeepak Saxena If you say Y here you will get access to ARM AMBA 107109a21e56SAlessandro Zummo PrimeCell PL031 RTC found on certain ARM SOCs. 10728ae6e163SDeepak Saxena 10738ae6e163SDeepak Saxena To compile this driver as a module, choose M here: the 10748ae6e163SDeepak Saxena module will be called rtc-pl031. 10758ae6e163SDeepak Saxena 1076fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X 1077fa04e78bSHans-Christian Egtvedt tristate "AT32AP700X series RTC" 1078bb35fb20SJan Engelhardt depends on PLATFORM_AT32AP 1079fa04e78bSHans-Christian Egtvedt help 1080fa04e78bSHans-Christian Egtvedt Driver for the internal RTC (Realtime Clock) on Atmel AVR32 1081fa04e78bSHans-Christian Egtvedt AT32AP700x family processors. 1082fa04e78bSHans-Christian Egtvedt 10837fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200 108424cecc1bSNicolas Ferre tristate "AT91RM9200 or some AT91SAM9 RTC" 1085938f970eSNicolas Ferre depends on ARCH_AT91 1086788b1fc6SAndrew Victor help 10874cdf854fSDavid Brownell Driver for the internal RTC (Realtime Clock) module found on 108824cecc1bSNicolas Ferre Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips 10894cdf854fSDavid Brownell this is powered by the backup power supply. 10904cdf854fSDavid Brownell 10914cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9 109224cecc1bSNicolas Ferre tristate "AT91SAM9x/AT91CAP9 RTT as RTC" 10934cdf854fSDavid Brownell depends on ARCH_AT91 && !(ARCH_AT91RM9200 || ARCH_AT91X40) 10944cdf854fSDavid Brownell help 10956b71dbf6SStelian Pop RTC driver for the Atmel AT91SAM9x and AT91CAP9 internal RTT 10966b71dbf6SStelian Pop (Real Time Timer). These timers are powered by the backup power 10976b71dbf6SStelian Pop supply (such as a small coin cell battery), but do not need to 10986b71dbf6SStelian Pop be used as RTCs. 10994cdf854fSDavid Brownell 110024cecc1bSNicolas Ferre (On AT91SAM9rl and AT91SAM9G45 chips you probably want to use the 110124cecc1bSNicolas Ferre dedicated RTC module and leave the RTT available for other uses.) 11024cdf854fSDavid Brownell 11034cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_RTT 11044cdf854fSDavid Brownell int 11054cdf854fSDavid Brownell range 0 1 11064cdf854fSDavid Brownell default 0 11074cdf854fSDavid Brownell prompt "RTT module Number" if ARCH_AT91SAM9263 11084cdf854fSDavid Brownell depends on RTC_DRV_AT91SAM9 11094cdf854fSDavid Brownell help 11104cdf854fSDavid Brownell More than one RTT module is available. You can choose which 11114cdf854fSDavid Brownell one will be used as an RTC. The default of zero is normally 11124cdf854fSDavid Brownell OK to use, though some systems use that for non-RTC purposes. 11134cdf854fSDavid Brownell 11144cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9_GPBR 11154cdf854fSDavid Brownell int 11164cdf854fSDavid Brownell range 0 3 if !ARCH_AT91SAM9263 11174cdf854fSDavid Brownell range 0 15 if ARCH_AT91SAM9263 11184cdf854fSDavid Brownell default 0 11194cdf854fSDavid Brownell prompt "Backup Register Number" 11204cdf854fSDavid Brownell depends on RTC_DRV_AT91SAM9 11214cdf854fSDavid Brownell help 11224cdf854fSDavid Brownell The RTC driver needs to use one of the General Purpose Backup 11234cdf854fSDavid Brownell Registers (GPBRs) as well as the RTT. You can choose which one 11244cdf854fSDavid Brownell will be used. The default of zero is normally OK to use, but 11254cdf854fSDavid Brownell on some systems other software needs to use that register. 1126788b1fc6SAndrew Victor 112745fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX 112845fd8a0cSManuel Lauss tristate "Au1xxx Counter0 RTC support" 112942a4f17dSManuel Lauss depends on MIPS_ALCHEMY 113045fd8a0cSManuel Lauss help 113145fd8a0cSManuel Lauss This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year 113245fd8a0cSManuel Lauss counter) to be used as a RTC. 113345fd8a0cSManuel Lauss 113445fd8a0cSManuel Lauss This driver can also be built as a module. If so, the module 113545fd8a0cSManuel Lauss will be called rtc-au1xxx. 113645fd8a0cSManuel Lauss 11378cc75c9aSWu, Bryanconfig RTC_DRV_BFIN 11388cc75c9aSWu, Bryan tristate "Blackfin On-Chip RTC" 11397f604599SGraf Yang depends on BLACKFIN && !BF561 11408cc75c9aSWu, Bryan help 11418cc75c9aSWu, Bryan If you say yes here you will get support for the 11428cc75c9aSWu, Bryan Blackfin On-Chip Real Time Clock. 11438cc75c9aSWu, Bryan 11448cc75c9aSWu, Bryan This driver can also be built as a module. If so, the module 11458cc75c9aSWu, Bryan will be called rtc-bfin. 11468cc75c9aSWu, Bryan 1147e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313 1148e9f2bd81SNobuhiro Iwamatsu tristate "Ricoh RS5C313" 1149bb35fb20SJan Engelhardt depends on SH_LANDISK 1150e9f2bd81SNobuhiro Iwamatsu help 1151e9f2bd81SNobuhiro Iwamatsu If you say yes here you get support for the Ricoh RS5C313 RTC chips. 1152e9f2bd81SNobuhiro Iwamatsu 11533afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC 11543afe6d04SGeert Uytterhoeven tristate "Generic RTC support" 11553afe6d04SGeert Uytterhoeven # Please consider writing a new RTC driver instead of using the generic 11563afe6d04SGeert Uytterhoeven # RTC abstraction 115747c8a08bSPaul Mundt depends on PARISC || M68K || PPC || SUPERH32 11589eb16864SKyle McMartin help 11593afe6d04SGeert Uytterhoeven Say Y or M here to enable RTC support on systems using the generic 11603afe6d04SGeert Uytterhoeven RTC abstraction. If you do not know what you are doing, you should 11619eb16864SKyle McMartin just say Y. 11629eb16864SKyle McMartin 1163dc944368SRobert Jarzmikconfig RTC_DRV_PXA 1164dc944368SRobert Jarzmik tristate "PXA27x/PXA3xx" 1165dc944368SRobert Jarzmik depends on ARCH_PXA 1166dc944368SRobert Jarzmik help 1167dc944368SRobert Jarzmik If you say Y here you will get access to the real time clock 1168dc944368SRobert Jarzmik built into your PXA27x or PXA3xx CPU. 1169dc944368SRobert Jarzmik 1170dc944368SRobert Jarzmik This RTC driver uses PXA RTC registers available since pxa27x 1171dc944368SRobert Jarzmik series (RDxR, RYxR) instead of legacy RCNR, RTAR. 1172dc944368SRobert Jarzmik 1173f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500 1174f77fbdf9SAlexey Charkov tristate "VIA/WonderMedia 85xx SoC RTC" 1175f77fbdf9SAlexey Charkov depends on ARCH_VT8500 1176f77fbdf9SAlexey Charkov help 1177f77fbdf9SAlexey Charkov If you say Y here you will get access to the real time clock 1178f77fbdf9SAlexey Charkov built into your VIA VT8500 SoC or its relatives. 1179f77fbdf9SAlexey Charkov 1180dc944368SRobert Jarzmik 11817a138edeSDavid S. Millerconfig RTC_DRV_SUN4V 11827a138edeSDavid S. Miller bool "SUN4V Hypervisor RTC" 11837a138edeSDavid S. Miller depends on SPARC64 11847a138edeSDavid S. Miller help 11857a138edeSDavid S. Miller If you say Y here you will get support for the Hypervisor 11867a138edeSDavid S. Miller based RTC on SUN4V systems. 11877a138edeSDavid S. Miller 11889765d2d9SChen-Yu Tsaiconfig RTC_DRV_SUN6I 11899765d2d9SChen-Yu Tsai tristate "Allwinner A31 RTC" 11909765d2d9SChen-Yu Tsai depends on MACH_SUN6I || MACH_SUN8I 11919765d2d9SChen-Yu Tsai help 11929765d2d9SChen-Yu Tsai If you say Y here you will get support for the RTC found on 11939765d2d9SChen-Yu Tsai Allwinner A31. 11949765d2d9SChen-Yu Tsai 1195594c6fb9SCarlo Caioneconfig RTC_DRV_SUNXI 1196594c6fb9SCarlo Caione tristate "Allwinner sun4i/sun7i RTC" 119764a1925cSChen-Yu Tsai depends on MACH_SUN4I || MACH_SUN7I 1198594c6fb9SCarlo Caione help 1199594c6fb9SCarlo Caione If you say Y here you will get support for the RTC found on 1200594c6fb9SCarlo Caione Allwinner A10/A20. 1201594c6fb9SCarlo Caione 1202de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE 1203de2cf332SDavid S. Miller bool "Starfire RTC" 1204de2cf332SDavid S. Miller depends on SPARC64 1205de2cf332SDavid S. Miller help 1206de2cf332SDavid S. Miller If you say Y here you will get support for the RTC found on 1207de2cf332SDavid S. Miller Starfire systems. 1208de2cf332SDavid S. Miller 12090e149233SAtsushi Nemotoconfig RTC_DRV_TX4939 12100e149233SAtsushi Nemoto tristate "TX4939 SoC" 12110e149233SAtsushi Nemoto depends on SOC_TX4939 12120e149233SAtsushi Nemoto help 12130e149233SAtsushi Nemoto Driver for the internal RTC (Realtime Clock) module found on 12140e149233SAtsushi Nemoto Toshiba TX4939 SoC. 12150e149233SAtsushi Nemoto 1216defb4514SSaeed Bisharaconfig RTC_DRV_MV 1217defb4514SSaeed Bishara tristate "Marvell SoC RTC" 1218ace2c020SAndrew Lunn depends on ARCH_DOVE || ARCH_MVEBU 1219defb4514SSaeed Bishara help 1220defb4514SSaeed Bishara If you say yes here you will get support for the in-chip RTC 1221defb4514SSaeed Bishara that can be found in some of Marvell's SoC devices, such as 1222defb4514SSaeed Bishara the Kirkwood 88F6281 and 88F6192. 1223defb4514SSaeed Bishara 1224defb4514SSaeed Bishara This driver can also be built as a module. If so, the module 1225defb4514SSaeed Bishara will be called rtc-mv. 1226defb4514SSaeed Bishara 12270b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3 12280b5f037aSGeert Uytterhoeven tristate "PS3 RTC" 12290b5f037aSGeert Uytterhoeven depends on PPC_PS3 12300b5f037aSGeert Uytterhoeven help 12310b5f037aSGeert Uytterhoeven If you say yes here you will get support for the RTC on PS3. 12320b5f037aSGeert Uytterhoeven 12330b5f037aSGeert Uytterhoeven This driver can also be built as a module. If so, the module 12340b5f037aSGeert Uytterhoeven will be called rtc-ps3. 12350b5f037aSGeert Uytterhoeven 1236aa958f57SLinus Walleijconfig RTC_DRV_COH901331 1237aa958f57SLinus Walleij tristate "ST-Ericsson COH 901 331 RTC" 1238aa958f57SLinus Walleij depends on ARCH_U300 1239aa958f57SLinus Walleij help 1240aa958f57SLinus Walleij If you say Y here you will get access to ST-Ericsson 1241aa958f57SLinus Walleij COH 901 331 RTC clock found in some ST-Ericsson Mobile 1242aa958f57SLinus Walleij Platforms. 1243aa958f57SLinus Walleij 1244aa958f57SLinus Walleij This driver can also be built as a module. If so, the module 1245aa958f57SLinus Walleij will be called "rtc-coh901331". 1246aa958f57SLinus Walleij 1247aa958f57SLinus Walleij 1248df17f631Sdmitry pervushinconfig RTC_DRV_STMP 124946b21218SWolfram Sang tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC" 125046b21218SWolfram Sang depends on ARCH_MXS 1251df17f631Sdmitry pervushin help 1252df17f631Sdmitry pervushin If you say yes here you will get support for the onboard 125346b21218SWolfram Sang STMP3xxx/i.MX23/i.MX28 RTC. 1254df17f631Sdmitry pervushin 1255df17f631Sdmitry pervushin This driver can also be built as a module. If so, the module 1256df17f631Sdmitry pervushin will be called rtc-stmp3xxx. 1257df17f631Sdmitry pervushin 1258d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP 1259d3c7a3f7SDaniel Ribeiro tristate "PCAP RTC" 1260d3c7a3f7SDaniel Ribeiro depends on EZX_PCAP 1261d3c7a3f7SDaniel Ribeiro help 1262d3c7a3f7SDaniel Ribeiro If you say Y here you will get support for the RTC found on 1263d3c7a3f7SDaniel Ribeiro the PCAP2 ASIC used on some Motorola phones. 1264d3c7a3f7SDaniel Ribeiro 12651c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX 12661c97872bSUwe Kleine-König depends on MFD_MC13XXX 12671c97872bSUwe Kleine-König tristate "Freescale MC13xxx RTC" 126843299f28SUwe Kleine-König help 12691c97872bSUwe Kleine-König This enables support for the RTCs found on Freescale's PMICs 12701c97872bSUwe Kleine-König MC13783 and MC13892. 127143299f28SUwe Kleine-König 127250aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121 127350aae724SAnatolij Gustschin tristate "Freescale MPC5121 built-in RTC" 1274955dbea3SDmitry Eremin-Solenikov depends on PPC_MPC512x || PPC_MPC52xx 127550aae724SAnatolij Gustschin help 127650aae724SAnatolij Gustschin If you say yes here you will get support for the 1277955dbea3SDmitry Eremin-Solenikov built-in RTC on MPC5121 or on MPC5200. 127850aae724SAnatolij Gustschin 127950aae724SAnatolij Gustschin This driver can also be built as a module. If so, the module 128050aae724SAnatolij Gustschin will be called rtc-mpc5121. 128150aae724SAnatolij Gustschin 12823bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740 12833bf0eea8SLars-Peter Clausen tristate "Ingenic JZ4740 SoC" 12843bf0eea8SLars-Peter Clausen depends on MACH_JZ4740 12853bf0eea8SLars-Peter Clausen help 12863bf0eea8SLars-Peter Clausen If you say yes here you get support for the Ingenic JZ4740 SoC RTC 12873bf0eea8SLars-Peter Clausen controller. 12883bf0eea8SLars-Peter Clausen 12893bf0eea8SLars-Peter Clausen This driver can also be buillt as a module. If so, the module 12903bf0eea8SLars-Peter Clausen will be called rtc-jz4740. 12913bf0eea8SLars-Peter Clausen 12929aa449beSKevin Wellsconfig RTC_DRV_LPC32XX 12939aa449beSKevin Wells depends on ARCH_LPC32XX 12949aa449beSKevin Wells tristate "NXP LPC32XX RTC" 12959aa449beSKevin Wells help 12969aa449beSKevin Wells This enables support for the NXP RTC in the LPC32XX 12979aa449beSKevin Wells 12989aa449beSKevin Wells This driver can also be buillt as a module. If so, the module 12999aa449beSKevin Wells will be called rtc-lpc32xx. 13009aa449beSKevin Wells 13019a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX 13029a9a54adSAnirudh Ghayal tristate "Qualcomm PMIC8XXX RTC" 13039a9a54adSAnirudh Ghayal depends on MFD_PM8XXX 13049a9a54adSAnirudh Ghayal help 13059a9a54adSAnirudh Ghayal If you say yes here you get support for the 13069a9a54adSAnirudh Ghayal Qualcomm PMIC8XXX RTC. 13079a9a54adSAnirudh Ghayal 13089a9a54adSAnirudh Ghayal To compile this driver as a module, choose M here: the 13099a9a54adSAnirudh Ghayal module will be called rtc-pm8xxx. 13109a9a54adSAnirudh Ghayal 1311ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA 1312ff859ba6SAndrew Chew tristate "NVIDIA Tegra Internal RTC driver" 13136b8029faSVenu Byravarasu depends on ARCH_TEGRA 1314ff859ba6SAndrew Chew help 1315ff859ba6SAndrew Chew If you say yes here you get support for the 1316ff859ba6SAndrew Chew Tegra 200 series internal RTC module. 1317ff859ba6SAndrew Chew 1318ff859ba6SAndrew Chew This drive can also be built as a module. If so, the module 1319ff859ba6SAndrew Chew will be called rtc-tegra. 1320ff859ba6SAndrew Chew 1321dd196a2bSChris Metcalfconfig RTC_DRV_TILE 1322dd196a2bSChris Metcalf tristate "Tilera hypervisor RTC support" 1323dd196a2bSChris Metcalf depends on TILE 1324dd196a2bSChris Metcalf help 1325dd196a2bSChris Metcalf Enable support for the Linux driver side of the Tilera 1326dd196a2bSChris Metcalf hypervisor's real-time clock interface. 1327dd196a2bSChris Metcalf 13282809e80bSGuan Xuetaoconfig RTC_DRV_PUV3 13292809e80bSGuan Xuetao tristate "PKUnity v3 RTC support" 13302809e80bSGuan Xuetao depends on ARCH_PUV3 13312809e80bSGuan Xuetao help 13322809e80bSGuan Xuetao This enables support for the RTC in the PKUnity-v3 SoCs. 13332809e80bSGuan Xuetao 13342809e80bSGuan Xuetao This drive can also be built as a module. If so, the module 13352809e80bSGuan Xuetao will be called rtc-puv3. 13362809e80bSGuan Xuetao 1337b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1 1338b4f0b880Szhao zhang tristate "loongson1 RTC support" 1339b4f0b880Szhao zhang depends on MACH_LOONGSON1 1340b4f0b880Szhao zhang help 1341b4f0b880Szhao zhang This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year 1342b4f0b880Szhao zhang counter) to be used as a RTC. 1343b4f0b880Szhao zhang 1344b4f0b880Szhao zhang This driver can also be built as a module. If so, the module 1345b4f0b880Szhao zhang will be called rtc-ls1x. 1346b4f0b880Szhao zhang 134779811595SFabio Estevamconfig RTC_DRV_MXC 1348b224b9acSFabio Estevam tristate "Freescale MXC Real Time Clock" 1349b224b9acSFabio Estevam depends on ARCH_MXC 1350b224b9acSFabio Estevam help 1351b224b9acSFabio Estevam If you say yes here you get support for the Freescale MXC 1352b224b9acSFabio Estevam RTC module. 1353b224b9acSFabio Estevam 1354b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1355b224b9acSFabio Estevam will be called "rtc-mxc". 1356b224b9acSFabio Estevam 1357179a502fSShawn Guoconfig RTC_DRV_SNVS 1358179a502fSShawn Guo tristate "Freescale SNVS RTC support" 1359179a502fSShawn Guo depends on HAS_IOMEM 1360179a502fSShawn Guo depends on OF 1361179a502fSShawn Guo help 1362179a502fSShawn Guo If you say yes here you get support for the Freescale SNVS 1363179a502fSShawn Guo Low Power (LP) RTC module. 1364179a502fSShawn Guo 1365179a502fSShawn Guo This driver can also be built as a module, if so, the module 1366179a502fSShawn Guo will be called "rtc-snvs". 1367179a502fSShawn Guo 1368e88b815eSXianglong Duconfig RTC_DRV_SIRFSOC 1369e88b815eSXianglong Du tristate "SiRFSOC RTC" 1370e88b815eSXianglong Du depends on ARCH_SIRF 1371e88b815eSXianglong Du help 1372e88b815eSXianglong Du Say "yes" here to support the real time clock on SiRF SOC chips. 1373e88b815eSXianglong Du This driver can also be built as a module called rtc-sirfsoc. 1374e88b815eSXianglong Du 1375453b4c6dSJonas Jensenconfig RTC_DRV_MOXART 1376453b4c6dSJonas Jensen tristate "MOXA ART RTC" 1377441fb768SJean Delvare depends on ARCH_MOXART || COMPILE_TEST 1378453b4c6dSJonas Jensen help 1379453b4c6dSJonas Jensen If you say yes here you get support for the MOXA ART 1380453b4c6dSJonas Jensen RTC module. 1381453b4c6dSJonas Jensen 1382453b4c6dSJonas Jensen This driver can also be built as a module. If so, the module 1383453b4c6dSJonas Jensen will be called rtc-moxart 1384453b4c6dSJonas Jensen 1385f12d8695SLoc Hoconfig RTC_DRV_XGENE 1386f12d8695SLoc Ho tristate "APM X-Gene RTC" 1387f12d8695SLoc Ho help 1388f12d8695SLoc Ho If you say yes here you get support for the APM X-Gene SoC real time 1389f12d8695SLoc Ho clock. 1390f12d8695SLoc Ho 1391f12d8695SLoc Ho This driver can also be built as a module, if so, the module 1392f12d8695SLoc Ho will be called "rtc-xgene". 1393f12d8695SLoc Ho 139462e00cb9SAlexander Hollercomment "HID Sensor RTC drivers" 139562e00cb9SAlexander Holler 139662e00cb9SAlexander Hollerconfig RTC_DRV_HID_SENSOR_TIME 139762e00cb9SAlexander Holler tristate "HID Sensor Time" 139862e00cb9SAlexander Holler depends on USB_HID 139962e00cb9SAlexander Holler select IIO 140062e00cb9SAlexander Holler select HID_SENSOR_HUB 140162e00cb9SAlexander Holler select HID_SENSOR_IIO_COMMON 140262e00cb9SAlexander Holler help 140362e00cb9SAlexander Holler Say yes here to build support for the HID Sensors of type Time. 140462e00cb9SAlexander Holler This drivers makes such sensors available as RTCs. 140562e00cb9SAlexander Holler 140662e00cb9SAlexander Holler If this driver is compiled as a module, it will be named 140762e00cb9SAlexander Holler rtc-hid-sensor-time. 140862e00cb9SAlexander Holler 140962e00cb9SAlexander Holler 1410bb35fb20SJan Engelhardtendif # RTC_CLASS 1411