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 686341e62bSChristoph Jaeger bool "/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 786341e62bSChristoph Jaeger bool "/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 916341e62bSChristoph Jaeger bool "/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 1560b2f6228SArnaud Ebalardconfig RTC_DRV_ABB5ZES3 1570b2f6228SArnaud Ebalard depends on I2C 1580b2f6228SArnaud Ebalard select REGMAP_I2C 1590b2f6228SArnaud Ebalard tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3" 1600b2f6228SArnaud Ebalard help 1610b2f6228SArnaud Ebalard If you say yes here you get support for the Abracon 1620b2f6228SArnaud Ebalard AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip. 1630b2f6228SArnaud Ebalard 1640b2f6228SArnaud Ebalard This driver can also be built as a module. If so, the module 1650b2f6228SArnaud Ebalard will be called rtc-ab-b5ze-s3. 1660b2f6228SArnaud Ebalard 167b4506261SLaxman Dewanganconfig RTC_DRV_AS3722 168b4506261SLaxman Dewangan tristate "ams AS3722 RTC driver" 169b4506261SLaxman Dewangan depends on MFD_AS3722 170b4506261SLaxman Dewangan help 171b4506261SLaxman Dewangan If you say yes here you get support for the RTC of ams AS3722 PMIC 172b4506261SLaxman Dewangan chips. 173b4506261SLaxman Dewangan 174b4506261SLaxman Dewangan This driver can also be built as a module. If so, the module 175b4506261SLaxman Dewangan will be called rtc-as3722. 176b4506261SLaxman Dewangan 17709a21e56SAlessandro Zummoconfig RTC_DRV_DS1307 178a2166858SMatthias Fuchs tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025" 17909a21e56SAlessandro Zummo help 18009a21e56SAlessandro Zummo If you say yes here you get support for various compatible RTC 18109a21e56SAlessandro Zummo chips (often with battery backup) connected with I2C. This driver 18209a21e56SAlessandro Zummo should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00, 183a2166858SMatthias Fuchs EPSON RX-8025 and probably other chips. In some cases the RTC 184a2166858SMatthias Fuchs must already have been initialized (by manufacturing or a 185a2166858SMatthias Fuchs bootloader). 18609a21e56SAlessandro Zummo 18709a21e56SAlessandro Zummo The first seven registers on these chips hold an RTC, and other 18809a21e56SAlessandro Zummo registers may add features such as NVRAM, a trickle charger for 189682d73f6SDavid Brownell the RTC/NVRAM backup power, and alarms. NVRAM is visible in 190682d73f6SDavid Brownell sysfs, but other chip features may not be available. 19109a21e56SAlessandro Zummo 19209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 19309a21e56SAlessandro Zummo will be called rtc-ds1307. 19409a21e56SAlessandro Zummo 195bf4994d7SScott Woodconfig RTC_DRV_DS1374 19609b6bdb3SAlessandro Zummo tristate "Dallas/Maxim DS1374" 1976b8029faSVenu Byravarasu depends on I2C 198bf4994d7SScott Wood help 199bf4994d7SScott Wood If you say yes here you get support for Dallas Semiconductor 200bf4994d7SScott Wood DS1374 real-time clock chips. If an interrupt is associated 201bf4994d7SScott Wood with the device, the alarm functionality is supported. 202bf4994d7SScott Wood 203bf4994d7SScott Wood This driver can also be built as a module. If so, the module 204bf4994d7SScott Wood will be called rtc-ds1374. 205bf4994d7SScott Wood 206920f91e5SSøren Andersenconfig RTC_DRV_DS1374_WDT 207920f91e5SSøren Andersen bool "Dallas/Maxim DS1374 watchdog timer" 208920f91e5SSøren Andersen depends on RTC_DRV_DS1374 209920f91e5SSøren Andersen help 210920f91e5SSøren Andersen If you say Y here you will get support for the 211920f91e5SSøren Andersen watchdog timer in the Dallas Semiconductor DS1374 212920f91e5SSøren Andersen real-time clock chips. 213920f91e5SSøren Andersen 21409a21e56SAlessandro Zummoconfig RTC_DRV_DS1672 21509a21e56SAlessandro Zummo tristate "Dallas/Maxim DS1672" 21609a21e56SAlessandro Zummo help 21709a21e56SAlessandro Zummo If you say yes here you get support for the 21809a21e56SAlessandro Zummo Dallas/Maxim DS1672 timekeeping chip. 21909a21e56SAlessandro Zummo 22009a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 22109a21e56SAlessandro Zummo will be called rtc-ds1672. 22209a21e56SAlessandro Zummo 223c03675f0SRoy Zangconfig RTC_DRV_DS3232 224c03675f0SRoy Zang tristate "Dallas/Maxim DS3232" 2256b8029faSVenu Byravarasu depends on I2C 226c03675f0SRoy Zang help 227c03675f0SRoy Zang If you say yes here you get support for Dallas Semiconductor 228f46418c5SLan Chunhe-B25806 DS3232 real-time clock chips. If an interrupt is associated 229f46418c5SLan Chunhe-B25806 with the device, the alarm functionality is supported. 230c03675f0SRoy Zang 231c03675f0SRoy Zang This driver can also be built as a module. If so, the module 232c03675f0SRoy Zang will be called rtc-ds3232. 233c03675f0SRoy Zang 234dcaf0384SHeiko Stuebnerconfig RTC_DRV_HYM8563 235dcaf0384SHeiko Stuebner tristate "Haoyu Microelectronics HYM8563" 236dcaf0384SHeiko Stuebner depends on I2C && OF 237dcaf0384SHeiko Stuebner help 238dcaf0384SHeiko Stuebner Say Y to enable support for the HYM8563 I2C RTC chip. Apart 239dcaf0384SHeiko Stuebner from the usual rtc functions it provides a clock output of 240dcaf0384SHeiko Stuebner up to 32kHz. 241dcaf0384SHeiko Stuebner 242dcaf0384SHeiko Stuebner This driver can also be built as a module. If so, the module 243dcaf0384SHeiko Stuebner will be called rtc-hym8563. 244dcaf0384SHeiko Stuebner 24538ae176eSKim, Miloconfig RTC_DRV_LP8788 24638ae176eSKim, Milo tristate "TI LP8788 RTC driver" 24738ae176eSKim, Milo depends on MFD_LP8788 24838ae176eSKim, Milo help 24938ae176eSKim, Milo Say Y to enable support for the LP8788 RTC/ALARM driver. 25038ae176eSKim, Milo 25109a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900 25209b6bdb3SAlessandro Zummo tristate "Maxim MAX6900" 25309a21e56SAlessandro Zummo help 25409a21e56SAlessandro Zummo If you say yes here you will get support for the 25509a21e56SAlessandro Zummo Maxim MAX6900 I2C RTC chip. 25609a21e56SAlessandro Zummo 25709a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 25809a21e56SAlessandro Zummo will be called rtc-max6900. 25909a21e56SAlessandro Zummo 26094c01ab6SStephen Warrenconfig RTC_DRV_MAX8907 26194c01ab6SStephen Warren tristate "Maxim MAX8907" 26294c01ab6SStephen Warren depends on MFD_MAX8907 26394c01ab6SStephen Warren help 26494c01ab6SStephen Warren If you say yes here you will get support for the 26594c01ab6SStephen Warren RTC of Maxim MAX8907 PMIC. 26694c01ab6SStephen Warren 26794c01ab6SStephen Warren This driver can also be built as a module. If so, the module 26894c01ab6SStephen Warren will be called rtc-max8907. 26994c01ab6SStephen Warren 270a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925 271a39069f6SHaojian Zhuang tristate "Maxim MAX8925" 272a39069f6SHaojian Zhuang depends on MFD_MAX8925 273a39069f6SHaojian Zhuang help 274a39069f6SHaojian Zhuang If you say yes here you will get support for the 275a39069f6SHaojian Zhuang RTC of Maxim MAX8925 PMIC. 276a39069f6SHaojian Zhuang 277a39069f6SHaojian Zhuang This driver can also be built as a module. If so, the module 278a39069f6SHaojian Zhuang will be called rtc-max8925. 279a39069f6SHaojian Zhuang 2809b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998 2819b16c0a4SJoonyoung Shim tristate "Maxim MAX8998" 2829b16c0a4SJoonyoung Shim depends on MFD_MAX8998 2839b16c0a4SJoonyoung Shim help 2849b16c0a4SJoonyoung Shim If you say yes here you will get support for the 2859b16c0a4SJoonyoung Shim RTC of Maxim MAX8998 PMIC. 2869b16c0a4SJoonyoung Shim 2879b16c0a4SJoonyoung Shim This driver can also be built as a module. If so, the module 2889b16c0a4SJoonyoung Shim will be called rtc-max8998. 2899b16c0a4SJoonyoung Shim 2905e0b2704SJonghwa Leeconfig RTC_DRV_MAX8997 2915e0b2704SJonghwa Lee tristate "Maxim MAX8997" 2925e0b2704SJonghwa Lee depends on MFD_MAX8997 2935e0b2704SJonghwa Lee help 2945e0b2704SJonghwa Lee If you say yes here you will get support for the 2955e0b2704SJonghwa Lee RTC of Maxim MAX8997 PMIC. 2965e0b2704SJonghwa Lee 2975e0b2704SJonghwa Lee This driver can also be built as a module. If so, the module 2985e0b2704SJonghwa Lee will be called rtc-max8997. 2995e0b2704SJonghwa Lee 300fca1dd03SJonghwa Leeconfig RTC_DRV_MAX77686 301fca1dd03SJonghwa Lee tristate "Maxim MAX77686" 302fca1dd03SJonghwa Lee depends on MFD_MAX77686 303fca1dd03SJonghwa Lee help 304fca1dd03SJonghwa Lee If you say yes here you will get support for the 305fca1dd03SJonghwa Lee RTC of Maxim MAX77686 PMIC. 306fca1dd03SJonghwa Lee 307fca1dd03SJonghwa Lee This driver can also be built as a module. If so, the module 308fca1dd03SJonghwa Lee will be called rtc-max77686. 309fca1dd03SJonghwa Lee 3103ca1e326SChris Zhongconfig RTC_DRV_RK808 3113ca1e326SChris Zhong tristate "Rockchip RK808 RTC" 3123ca1e326SChris Zhong depends on MFD_RK808 3133ca1e326SChris Zhong help 3143ca1e326SChris Zhong If you say yes here you will get support for the 3153ca1e326SChris Zhong RTC of RK808 PMIC. 3163ca1e326SChris Zhong 3173ca1e326SChris Zhong This driver can also be built as a module. If so, the module 3183ca1e326SChris Zhong will be called rk808-rtc. 3193ca1e326SChris Zhong 320a4d4121bSJavier Martinez Canillasconfig RTC_DRV_MAX77802 321a4d4121bSJavier Martinez Canillas tristate "Maxim 77802 RTC" 322a4d4121bSJavier Martinez Canillas depends on MFD_MAX77686 323a4d4121bSJavier Martinez Canillas help 324a4d4121bSJavier Martinez Canillas If you say yes here you will get support for the 325a4d4121bSJavier Martinez Canillas RTC of Maxim MAX77802 PMIC. 326a4d4121bSJavier Martinez Canillas 327a4d4121bSJavier Martinez Canillas This driver can also be built as a module. If so, the module 328a4d4121bSJavier Martinez Canillas will be called rtc-max77802. 329a4d4121bSJavier Martinez Canillas 33009a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372 3315d4529beSPaul Mundt tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A" 33209a21e56SAlessandro Zummo help 33309a21e56SAlessandro Zummo If you say yes here you get support for the 3345d4529beSPaul Mundt Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips. 33509a21e56SAlessandro Zummo 33609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 33709a21e56SAlessandro Zummo will be called rtc-rs5c372. 33809a21e56SAlessandro Zummo 33909a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208 34009b6bdb3SAlessandro Zummo tristate "Intersil ISL1208" 34109a21e56SAlessandro Zummo help 34209a21e56SAlessandro Zummo If you say yes here you get support for the 34309b6bdb3SAlessandro Zummo Intersil ISL1208 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-isl1208. 34709a21e56SAlessandro Zummo 348d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022 349d6c7428fSRoman Fietze tristate "Intersil ISL12022" 350d6c7428fSRoman Fietze help 351d6c7428fSRoman Fietze If you say yes here you get support for the 352d6c7428fSRoman Fietze Intersil ISL12022 RTC chip. 353d6c7428fSRoman Fietze 354d6c7428fSRoman Fietze This driver can also be built as a module. If so, the module 355d6c7428fSRoman Fietze will be called rtc-isl12022. 356d6c7428fSRoman Fietze 35770e12337SArnaud Ebalardconfig RTC_DRV_ISL12057 35870e12337SArnaud Ebalard depends on I2C 35970e12337SArnaud Ebalard select REGMAP_I2C 36070e12337SArnaud Ebalard tristate "Intersil ISL12057" 36170e12337SArnaud Ebalard help 36270e12337SArnaud Ebalard If you say yes here you get support for the Intersil ISL12057 36370e12337SArnaud Ebalard I2C RTC chip. 36470e12337SArnaud Ebalard 36570e12337SArnaud Ebalard This driver can also be built as a module. If so, the module 36670e12337SArnaud Ebalard will be called rtc-isl12057. 36770e12337SArnaud Ebalard 36809a21e56SAlessandro Zummoconfig RTC_DRV_X1205 36909a21e56SAlessandro Zummo tristate "Xicor/Intersil X1205" 37009a21e56SAlessandro Zummo help 37109a21e56SAlessandro Zummo If you say yes here you get support for the 37209a21e56SAlessandro Zummo Xicor/Intersil X1205 RTC chip. 37309a21e56SAlessandro Zummo 37409a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 37509a21e56SAlessandro Zummo will be called rtc-x1205. 37609a21e56SAlessandro Zummo 3770101e53cSLaxman Dewanganconfig RTC_DRV_PALMAS 3780101e53cSLaxman Dewangan tristate "TI Palmas RTC driver" 3790101e53cSLaxman Dewangan depends on MFD_PALMAS 3800101e53cSLaxman Dewangan help 3810101e53cSLaxman Dewangan If you say yes here you get support for the RTC of TI PALMA series PMIC 3820101e53cSLaxman Dewangan chips. 3830101e53cSLaxman Dewangan 3840101e53cSLaxman Dewangan This driver can also be built as a module. If so, the module 3850101e53cSLaxman Dewangan will be called rtc-palma. 3860101e53cSLaxman Dewangan 38718cb6368SRenaud Cerratoconfig RTC_DRV_PCF2127 38818cb6368SRenaud Cerrato tristate "NXP PCF2127" 38918cb6368SRenaud Cerrato help 39018cb6368SRenaud Cerrato If you say yes here you get support for the NXP PCF2127/29 RTC 39118cb6368SRenaud Cerrato chips. 39218cb6368SRenaud Cerrato 39318cb6368SRenaud Cerrato This driver can also be built as a module. If so, the module 39418cb6368SRenaud Cerrato will be called rtc-pcf2127. 39518cb6368SRenaud Cerrato 396f803f0d0SThierry Redingconfig RTC_DRV_PCF8523 397f803f0d0SThierry Reding tristate "NXP PCF8523" 398f803f0d0SThierry Reding help 399f803f0d0SThierry Reding If you say yes here you get support for the NXP PCF8523 RTC 400f803f0d0SThierry Reding chips. 401f803f0d0SThierry Reding 402f803f0d0SThierry Reding This driver can also be built as a module. If so, the module 403f803f0d0SThierry Reding will be called rtc-pcf8523. 404f803f0d0SThierry Reding 40509a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563 40609a21e56SAlessandro Zummo tristate "Philips PCF8563/Epson RTC8564" 40709a21e56SAlessandro Zummo help 40809a21e56SAlessandro Zummo If you say yes here you get support for the 40909a21e56SAlessandro Zummo Philips PCF8563 RTC chip. The Epson RTC8564 41009a21e56SAlessandro Zummo should work as well. 41109a21e56SAlessandro Zummo 41209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 41309a21e56SAlessandro Zummo will be called rtc-pcf8563. 41409a21e56SAlessandro Zummo 415796b7abbSSøren Andersenconfig RTC_DRV_PCF85063 416796b7abbSSøren Andersen tristate "nxp PCF85063" 417796b7abbSSøren Andersen help 418796b7abbSSøren Andersen If you say yes here you get support for the PCF85063 RTC chip 419796b7abbSSøren Andersen 420796b7abbSSøren Andersen This driver can also be built as a module. If so, the module 421796b7abbSSøren Andersen will be called rtc-pcf85063. 422796b7abbSSøren Andersen 42309a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583 42409a21e56SAlessandro Zummo tristate "Philips PCF8583" 42509a21e56SAlessandro Zummo help 42609a21e56SAlessandro Zummo If you say yes here you get support for the Philips PCF8583 42709a21e56SAlessandro Zummo RTC chip found on Acorn RiscPCs. This driver supports the 42809a21e56SAlessandro Zummo platform specific method of retrieving the current year from 42909a21e56SAlessandro Zummo the RTC's SRAM. It will work on other platforms with the same 43009a21e56SAlessandro Zummo chip, but the year will probably have to be tweaked. 43109a21e56SAlessandro Zummo 43209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 43309a21e56SAlessandro Zummo will be called rtc-pcf8583. 43409a21e56SAlessandro Zummo 435caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80 4366b1a5235SWolfram Sang tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible" 437caaff562SAtsushi Nemoto help 438d3a126fcSSteven A. Falco If you say Y here you will get support for the ST M41T60 439d3a126fcSSteven A. Falco and M41T80 RTC chips series. Currently, the following chips are 440f30281f4SDaniel Glockner supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84, 4416b1a5235SWolfram Sang M41ST85, M41ST87, and MicroCrystal RV4162. 442caaff562SAtsushi Nemoto 443caaff562SAtsushi Nemoto This driver can also be built as a module. If so, the module 444caaff562SAtsushi Nemoto will be called rtc-m41t80. 445caaff562SAtsushi Nemoto 446617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT 447d3a126fcSSteven A. Falco bool "ST M41T65/M41T80 series RTC watchdog timer" 448617780d2SAtsushi Nemoto depends on RTC_DRV_M41T80 449617780d2SAtsushi Nemoto help 450617780d2SAtsushi Nemoto If you say Y here you will get support for the 451d3a126fcSSteven A. Falco watchdog timer in the ST M41T60 and M41T80 RTC chips series. 452617780d2SAtsushi Nemoto 4531ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K 4541ce7c83fSPiotr Ziecik tristate "TI BQ32000" 4551ce7c83fSPiotr Ziecik help 4561ce7c83fSPiotr Ziecik If you say Y here you will get support for the TI 4571ce7c83fSPiotr Ziecik BQ32000 I2C RTC chip. 4581ce7c83fSPiotr Ziecik 4591ce7c83fSPiotr Ziecik This driver can also be built as a module. If so, the module 4601ce7c83fSPiotr Ziecik will be called rtc-bq32k. 4611ce7c83fSPiotr Ziecik 462afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM 463afd8d0f9SDavid Brownell tristate "TI DaVinci DM355 EVM RTC" 464afd8d0f9SDavid Brownell depends on MFD_DM355EVM_MSP 465afd8d0f9SDavid Brownell help 466afd8d0f9SDavid Brownell Supports the RTC firmware in the MSP430 on the DM355 EVM. 467afd8d0f9SDavid Brownell 4680c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330 4696341e62bSChristoph Jaeger bool "TI TWL92330/Menelaus" 470bb35fb20SJan Engelhardt depends on MENELAUS 4710c4a59feSTony Lindgren help 4720c4a59feSTony Lindgren If you say yes here you get support for the RTC on the 47301dd2fbfSMatt LaPlante TWL92330 "Menelaus" power management chip, used with OMAP2 4740c4a59feSTony Lindgren platforms. The support is integrated with the rest of 4750c4a59feSTony Lindgren the Menelaus driver; it's not separate module. 4760c4a59feSTony Lindgren 477f96411abSDavid Brownellconfig RTC_DRV_TWL4030 478a6b49ffdSBalaji T K tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0" 4796b8029faSVenu Byravarasu depends on TWL4030_CORE 480f96411abSDavid Brownell help 481f96411abSDavid Brownell If you say yes here you get support for the RTC on the 482a6b49ffdSBalaji T K TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms. 483f96411abSDavid Brownell 484f96411abSDavid Brownell This driver can also be built as a module. If so, the module 485a6b49ffdSBalaji T K will be called rtc-twl. 486f96411abSDavid Brownell 487dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X 488dc59ed38SLaxman Dewangan tristate "TI TPS6586X RTC driver" 489dc59ed38SLaxman Dewangan depends on MFD_TPS6586X 490dc59ed38SLaxman Dewangan help 491a895d57dSMasanari Iida TI Power Management IC TPS6586X supports RTC functionality 492dc59ed38SLaxman Dewangan along with alarm. This driver supports the RTC driver for 493dc59ed38SLaxman Dewangan the TPS6586X RTC module. 494dc59ed38SLaxman Dewangan 4950e783980SVenu Byravarasuconfig RTC_DRV_TPS65910 4960e783980SVenu Byravarasu tristate "TI TPS65910 RTC driver" 4970e783980SVenu Byravarasu depends on RTC_CLASS && MFD_TPS65910 4980e783980SVenu Byravarasu help 4990e783980SVenu Byravarasu If you say yes here you get support for the RTC on the 5000e783980SVenu Byravarasu TPS65910 chips. 5010e783980SVenu Byravarasu 5020e783980SVenu Byravarasu This driver can also be built as a module. If so, the module 5030e783980SVenu Byravarasu will be called rtc-tps65910. 5040e783980SVenu Byravarasu 50536d61824SLaxman Dewanganconfig RTC_DRV_TPS80031 50636d61824SLaxman Dewangan tristate "TI TPS80031/TPS80032 RTC driver" 50736d61824SLaxman Dewangan depends on MFD_TPS80031 50836d61824SLaxman Dewangan help 509a895d57dSMasanari Iida TI Power Management IC TPS80031 supports RTC functionality 51036d61824SLaxman Dewangan along with alarm. This driver supports the RTC driver for 51136d61824SLaxman Dewangan the TPS80031 RTC module. 51236d61824SLaxman Dewangan 51390829c08SVenu Byravarasuconfig RTC_DRV_RC5T583 51490829c08SVenu Byravarasu tristate "RICOH 5T583 RTC driver" 51590829c08SVenu Byravarasu depends on MFD_RC5T583 51690829c08SVenu Byravarasu help 51790829c08SVenu Byravarasu If you say yes here you get support for the RTC on the 51890829c08SVenu Byravarasu RICOH 5T583 chips. 51990829c08SVenu Byravarasu 52090829c08SVenu Byravarasu This driver can also be built as a module. If so, the module 52190829c08SVenu Byravarasu will be called rtc-rc5t583. 52290829c08SVenu Byravarasu 523c46288b0SByron Bradleyconfig RTC_DRV_S35390A 524c46288b0SByron Bradley tristate "Seiko Instruments S-35390A" 525d479540dSRandy Dunlap select BITREVERSE 526c46288b0SByron Bradley help 527c46288b0SByron Bradley If you say yes here you will get support for the Seiko 528c46288b0SByron Bradley Instruments S-35390A. 529c46288b0SByron Bradley 530c46288b0SByron Bradley This driver can also be built as a module. If so the module 531c46288b0SByron Bradley will be called rtc-s35390a. 532c46288b0SByron Bradley 533c6d8f400SSergey Lapinconfig RTC_DRV_FM3130 534c6d8f400SSergey Lapin tristate "Ramtron FM3130" 535c6d8f400SSergey Lapin help 536c6d8f400SSergey Lapin If you say Y here you will get support for the 537c6d8f400SSergey Lapin Ramtron FM3130 RTC chips. 538c6d8f400SSergey Lapin Ramtron FM3130 is a chip with two separate devices inside, 539c6d8f400SSergey Lapin RTC clock and FRAM. This driver provides only RTC functionality. 540c6d8f400SSergey Lapin 541c6d8f400SSergey Lapin This driver can also be built as a module. If so the module 542c6d8f400SSergey Lapin will be called rtc-fm3130. 543c6d8f400SSergey Lapin 544a7fa9851SMartyn Welchconfig RTC_DRV_RX8581 545a7fa9851SMartyn Welch tristate "Epson RX-8581" 546a7fa9851SMartyn Welch help 547a7fa9851SMartyn Welch If you say yes here you will get support for the Epson RX-8581. 548a7fa9851SMartyn Welch 549a7fa9851SMartyn Welch This driver can also be built as a module. If so the module 550a7fa9851SMartyn Welch will be called rtc-rx8581. 551a7fa9851SMartyn Welch 5523c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025 5533c2b9075SWolfgang Grandegger tristate "Epson RX-8025SA/NB" 5543c2b9075SWolfgang Grandegger help 5553c2b9075SWolfgang Grandegger If you say yes here you get support for the Epson 5563c2b9075SWolfgang Grandegger RX-8025SA/NB RTC chips. 5573c2b9075SWolfgang Grandegger 5583c2b9075SWolfgang Grandegger This driver can also be built as a module. If so, the module 5593c2b9075SWolfgang Grandegger will be called rtc-rx8025. 5603c2b9075SWolfgang Grandegger 561ae3551f9SMike Rapoportconfig RTC_DRV_EM3027 562ae3551f9SMike Rapoport tristate "EM Microelectronic EM3027" 563ae3551f9SMike Rapoport help 564ae3551f9SMike Rapoport If you say yes here you get support for the EM 565ae3551f9SMike Rapoport Microelectronic EM3027 RTC chips. 566ae3551f9SMike Rapoport 567ae3551f9SMike Rapoport This driver can also be built as a module. If so, the module 568ae3551f9SMike Rapoport will be called rtc-em3027. 569ae3551f9SMike Rapoport 57052365230SHeiko Schocherconfig RTC_DRV_RV3029C2 57152365230SHeiko Schocher tristate "Micro Crystal RTC" 57252365230SHeiko Schocher help 57352365230SHeiko Schocher If you say yes here you get support for the Micro Crystal 57452365230SHeiko Schocher RV3029-C2 RTC chips. 57552365230SHeiko Schocher 57652365230SHeiko Schocher This driver can also be built as a module. If so, the module 57752365230SHeiko Schocher will be called rtc-rv3029c2. 57852365230SHeiko Schocher 5795bccae6eSSangbeom Kimconfig RTC_DRV_S5M 5800c5deb1eSKrzysztof Kozlowski tristate "Samsung S2M/S5M series" 5815bccae6eSSangbeom Kim depends on MFD_SEC_CORE 5825bccae6eSSangbeom Kim help 5835bccae6eSSangbeom Kim If you say yes here you will get support for the 5840c5deb1eSKrzysztof Kozlowski RTC of Samsung S2MPS14 and S5M PMIC series. 5855bccae6eSSangbeom Kim 5865bccae6eSSangbeom Kim This driver can also be built as a module. If so, the module 5875bccae6eSSangbeom Kim will be called rtc-s5m. 5885bccae6eSSangbeom Kim 589bb35fb20SJan Engelhardtendif # I2C 590bb35fb20SJan Engelhardt 59109a21e56SAlessandro Zummocomment "SPI RTC drivers" 592bb35fb20SJan Engelhardt 593bb35fb20SJan Engelhardtif SPI_MASTER 59409a21e56SAlessandro Zummo 59574d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93 59674d34d4bSVoss, Nikolaus tristate "ST M41T93" 59774d34d4bSVoss, Nikolaus help 59874d34d4bSVoss, Nikolaus If you say yes here you will get support for the 59974d34d4bSVoss, Nikolaus ST M41T93 SPI RTC chip. 60074d34d4bSVoss, Nikolaus 60174d34d4bSVoss, Nikolaus This driver can also be built as a module. If so, the module 60274d34d4bSVoss, Nikolaus will be called rtc-m41t93. 60374d34d4bSVoss, Nikolaus 6048fc2c767SKim B. Heinoconfig RTC_DRV_M41T94 6058fc2c767SKim B. Heino tristate "ST M41T94" 6068fc2c767SKim B. Heino help 6078fc2c767SKim B. Heino If you say yes here you will get support for the 6088fc2c767SKim B. Heino ST M41T94 SPI RTC chip. 6098fc2c767SKim B. Heino 6108fc2c767SKim B. Heino This driver can also be built as a module. If so, the module 6118fc2c767SKim B. Heino will be called rtc-m41t94. 6128fc2c767SKim B. Heino 61353e84b67SDavid Brownellconfig RTC_DRV_DS1305 61453e84b67SDavid Brownell tristate "Dallas/Maxim DS1305/DS1306" 61553e84b67SDavid Brownell help 61653e84b67SDavid Brownell Select this driver to get support for the Dallas/Maxim DS1305 61753e84b67SDavid Brownell and DS1306 real time clock chips. These support a trickle 61853e84b67SDavid Brownell charger, alarms, and NVRAM in addition to the clock. 61953e84b67SDavid Brownell 62053e84b67SDavid Brownell This driver can also be built as a module. If so, the module 62153e84b67SDavid Brownell will be called rtc-ds1305. 62253e84b67SDavid Brownell 6231d6316f5SRaghavendra Ganigaconfig RTC_DRV_DS1343 6240dd449b1SRaghavendra Ganiga select REGMAP_SPI 6251d6316f5SRaghavendra Ganiga tristate "Dallas/Maxim DS1343/DS1344" 6261d6316f5SRaghavendra Ganiga help 6271d6316f5SRaghavendra Ganiga If you say yes here you get support for the 6281d6316f5SRaghavendra Ganiga Dallas/Maxim DS1343 and DS1344 real time clock chips. 6291d6316f5SRaghavendra Ganiga Support for trickle charger, alarm is provided. 6301d6316f5SRaghavendra Ganiga 6311d6316f5SRaghavendra Ganiga This driver can also be built as a module. If so, the module 6321d6316f5SRaghavendra Ganiga will be called rtc-ds1343. 6331d6316f5SRaghavendra Ganiga 634617b26a0SRaghavendra Ganigaconfig RTC_DRV_DS1347 635617b26a0SRaghavendra Ganiga tristate "Dallas/Maxim DS1347" 636617b26a0SRaghavendra Ganiga help 637617b26a0SRaghavendra Ganiga If you say yes here you get support for the 638617b26a0SRaghavendra Ganiga Dallas/Maxim DS1347 chips. 639617b26a0SRaghavendra Ganiga 640617b26a0SRaghavendra Ganiga This driver only supports the RTC feature, and not other chip 641617b26a0SRaghavendra Ganiga features such as alarms. 642617b26a0SRaghavendra Ganiga 643617b26a0SRaghavendra Ganiga This driver can also be built as a module. If so, the module 644617b26a0SRaghavendra Ganiga will be called rtc-ds1347. 645617b26a0SRaghavendra Ganiga 64606de1808SMark Jacksonconfig RTC_DRV_DS1390 64706de1808SMark Jackson tristate "Dallas/Maxim DS1390/93/94" 64806de1808SMark Jackson help 6497b9b2ef1SAlessandro Zummo If you say yes here you get support for the 6507b9b2ef1SAlessandro Zummo Dallas/Maxim DS1390/93/94 chips. 65106de1808SMark Jackson 65206de1808SMark Jackson This driver only supports the RTC feature, and not other chip 65306de1808SMark Jackson features such as alarms and trickle charging. 65406de1808SMark Jackson 65506de1808SMark Jackson This driver can also be built as a module. If so, the module 65606de1808SMark Jackson will be called rtc-ds1390. 65706de1808SMark Jackson 65809b6bdb3SAlessandro Zummoconfig RTC_DRV_MAX6902 65909b6bdb3SAlessandro Zummo tristate "Maxim MAX6902" 66009b6bdb3SAlessandro Zummo help 66109b6bdb3SAlessandro Zummo If you say yes here you will get support for the 66209b6bdb3SAlessandro Zummo Maxim MAX6902 SPI RTC chip. 66309b6bdb3SAlessandro Zummo 66409b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 66509b6bdb3SAlessandro Zummo will be called rtc-max6902. 66609b6bdb3SAlessandro Zummo 6672805b969SMagnus Dammconfig RTC_DRV_R9701 6682805b969SMagnus Damm tristate "Epson RTC-9701JE" 6692805b969SMagnus Damm help 6702805b969SMagnus Damm If you say yes here you will get support for the 6712805b969SMagnus Damm Epson RTC-9701JE SPI RTC chip. 6722805b969SMagnus Damm 6732805b969SMagnus Damm This driver can also be built as a module. If so, the module 6742805b969SMagnus Damm will be called rtc-r9701. 6752805b969SMagnus Damm 67609a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348 67709a21e56SAlessandro Zummo tristate "Ricoh RS5C348A/B" 67809a21e56SAlessandro Zummo help 67909a21e56SAlessandro Zummo If you say yes here you get support for the 68009a21e56SAlessandro Zummo Ricoh RS5C348A and RS5C348B RTC chips. 68109a21e56SAlessandro Zummo 68209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 68309a21e56SAlessandro Zummo will be called rtc-rs5c348. 68409a21e56SAlessandro Zummo 6852f9b75e0SDennis Aberillaconfig RTC_DRV_DS3234 6862f9b75e0SDennis Aberilla tristate "Maxim/Dallas DS3234" 6872f9b75e0SDennis Aberilla help 6882f9b75e0SDennis Aberilla If you say yes here you get support for the 6892f9b75e0SDennis Aberilla Maxim/Dallas DS3234 SPI RTC chip. 6902f9b75e0SDennis Aberilla 6912f9b75e0SDennis Aberilla This driver can also be built as a module. If so, the module 6922f9b75e0SDennis Aberilla will be called rtc-ds3234. 6932f9b75e0SDennis Aberilla 6947f3923a1SChris Vergesconfig RTC_DRV_PCF2123 6957f3923a1SChris Verges tristate "NXP PCF2123" 6967f3923a1SChris Verges help 6977f3923a1SChris Verges If you say yes here you get support for the NXP PCF2123 6987f3923a1SChris Verges RTC chip. 6997f3923a1SChris Verges 7007f3923a1SChris Verges This driver can also be built as a module. If so, the module 7017f3923a1SChris Verges will be called rtc-pcf2123. 7027f3923a1SChris Verges 703cce2da9aSTorben Hohnconfig RTC_DRV_RX4581 704cce2da9aSTorben Hohn tristate "Epson RX-4581" 705cce2da9aSTorben Hohn help 706cce2da9aSTorben Hohn If you say yes here you will get support for the Epson RX-4581. 707cce2da9aSTorben Hohn 708cce2da9aSTorben Hohn This driver can also be built as a module. If so the module 709cce2da9aSTorben Hohn will be called rtc-rx4581. 710cce2da9aSTorben Hohn 7111fcbe42cSJosef Gajdusekconfig RTC_DRV_MCP795 7121fcbe42cSJosef Gajdusek tristate "Microchip MCP795" 7131fcbe42cSJosef Gajdusek help 7141fcbe42cSJosef Gajdusek If you say yes here you will get support for the Microchip MCP795. 7151fcbe42cSJosef Gajdusek 7161fcbe42cSJosef Gajdusek This driver can also be built as a module. If so the module 7171fcbe42cSJosef Gajdusek will be called rtc-mcp795. 7181fcbe42cSJosef Gajdusek 719bb35fb20SJan Engelhardtendif # SPI_MASTER 720bb35fb20SJan Engelhardt 72109a21e56SAlessandro Zummocomment "Platform RTC drivers" 7220c86edc0SAlessandro Zummo 7237be2c7c9SDavid Brownell# this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h> 7247be2c7c9SDavid Brownell# requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a 7257be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device. 7267be2c7c9SDavid Brownell 7277be2c7c9SDavid Brownellconfig RTC_DRV_CMOS 72809a21e56SAlessandro Zummo tristate "PC-style 'CMOS'" 72941c9dbf4SGeert Uytterhoeven depends on X86 || ARM || M32R || PPC || MIPS || SPARC64 730c7500900SDavid Brownell default y if X86 7317be2c7c9SDavid Brownell help 7327be2c7c9SDavid Brownell Say "yes" here to get direct support for the real time clock 7337be2c7c9SDavid Brownell found in every PC or ACPI-based system, and some other boards. 7347be2c7c9SDavid Brownell Specifically the original MC146818, compatibles like those in 7357be2c7c9SDavid Brownell PC south bridges, the DS12887 or M48T86, some multifunction 7367be2c7c9SDavid Brownell or LPC bus chips, and so on. 7377be2c7c9SDavid Brownell 7387be2c7c9SDavid Brownell Your system will need to define the platform device used by 7397be2c7c9SDavid Brownell this driver, otherwise it won't be accessible. This means 7407be2c7c9SDavid Brownell you can safely enable this driver if you don't know whether 7417be2c7c9SDavid Brownell or not your board has this kind of hardware. 7427be2c7c9SDavid Brownell 7437be2c7c9SDavid Brownell This driver can also be built as a module. If so, the module 7447be2c7c9SDavid Brownell will be called rtc-cmos. 7457be2c7c9SDavid Brownell 74685d0b3a5SRichard Hendersonconfig RTC_DRV_ALPHA 74785d0b3a5SRichard Henderson bool "Alpha PC-style CMOS" 74885d0b3a5SRichard Henderson depends on ALPHA 74985d0b3a5SRichard Henderson default y 75085d0b3a5SRichard Henderson help 75185d0b3a5SRichard Henderson Direct support for the real-time clock found on every Alpha 75285d0b3a5SRichard Henderson system, specifically MC146818 compatibles. If in doubt, say Y. 75385d0b3a5SRichard Henderson 7540146f261SFeng Tangconfig RTC_DRV_VRTC 755933b9463SAlan Cox tristate "Virtual RTC for Intel MID platforms" 756933b9463SAlan Cox depends on X86_INTEL_MID 757933b9463SAlan Cox default y if X86_INTEL_MID 7580146f261SFeng Tang 7590146f261SFeng Tang help 7600146f261SFeng Tang Say "yes" here to get direct support for the real time clock 7610146f261SFeng Tang found on Moorestown platforms. The VRTC is a emulated RTC that 7620146f261SFeng Tang derives its clock source from a real RTC in the PMIC. The MC146818 7630146f261SFeng Tang style programming interface is mostly conserved, but any 7640146f261SFeng Tang updates are done via IPC calls to the system controller FW. 7650146f261SFeng Tang 766537739deSThomas Bogendoerferconfig RTC_DRV_DS1216 767537739deSThomas Bogendoerfer tristate "Dallas DS1216" 768bb35fb20SJan Engelhardt depends on SNI_RM 769537739deSThomas Bogendoerfer help 770537739deSThomas Bogendoerfer If you say yes here you get support for the Dallas DS1216 RTC chips. 771537739deSThomas Bogendoerfer 7725f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286 7735f119f29SThomas Bogendoerfer tristate "Dallas DS1286" 774706b632dSChen Gang depends on HAS_IOMEM 7755f119f29SThomas Bogendoerfer help 7765f119f29SThomas Bogendoerfer If you say yes here you get support for the Dallas DS1286 RTC chips. 7775f119f29SThomas Bogendoerfer 778739d340dSPaul Mundtconfig RTC_DRV_DS1302 779739d340dSPaul Mundt tristate "Dallas DS1302" 780739d340dSPaul Mundt depends on SH_SECUREEDGE5410 781739d340dSPaul Mundt help 782739d340dSPaul Mundt If you say yes here you get support for the Dallas DS1302 RTC chips. 783739d340dSPaul Mundt 7848f26795aSAndrew Sharpconfig RTC_DRV_DS1511 7858f26795aSAndrew Sharp tristate "Dallas DS1511" 786706b632dSChen Gang depends on HAS_IOMEM 7878f26795aSAndrew Sharp help 7888f26795aSAndrew Sharp If you say yes here you get support for the 7898f26795aSAndrew Sharp Dallas DS1511 timekeeping/watchdog chip. 7908f26795aSAndrew Sharp 7918f26795aSAndrew Sharp This driver can also be built as a module. If so, the module 7928f26795aSAndrew Sharp will be called rtc-ds1511. 7938f26795aSAndrew Sharp 7949bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553 79509b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1553" 796706b632dSChen Gang depends on HAS_IOMEM 7979bf5b4f5SAtsushi Nemoto help 7989bf5b4f5SAtsushi Nemoto If you say yes here you get support for the 79909b6bdb3SAlessandro Zummo Maxim/Dallas DS1553 timekeeping chip. 8009bf5b4f5SAtsushi Nemoto 8019bf5b4f5SAtsushi Nemoto This driver can also be built as a module. If so, the module 8029bf5b4f5SAtsushi Nemoto will be called rtc-ds1553. 8039bf5b4f5SAtsushi Nemoto 804aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685_FAMILY 805aaaf5fbfSJoshua Kinard tristate "Dallas/Maxim DS1685 Family" 806aaaf5fbfSJoshua Kinard help 807aaaf5fbfSJoshua Kinard If you say yes here you get support for the Dallas/Maxim DS1685 808aaaf5fbfSJoshua Kinard family of real time chips. This family includes the DS1685/DS1687, 809aaaf5fbfSJoshua Kinard DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and 810aaaf5fbfSJoshua Kinard DS17885/DS17887 chips. 811aaaf5fbfSJoshua Kinard 812aaaf5fbfSJoshua Kinard This driver can also be built as a module. If so, the module 813aaaf5fbfSJoshua Kinard will be called rtc-ds1685. 814aaaf5fbfSJoshua Kinard 815aaaf5fbfSJoshua Kinardchoice 816aaaf5fbfSJoshua Kinard prompt "Subtype" 817aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY 818aaaf5fbfSJoshua Kinard default RTC_DRV_DS1685 819aaaf5fbfSJoshua Kinard 820aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685 821aaaf5fbfSJoshua Kinard bool "DS1685/DS1687" 822aaaf5fbfSJoshua Kinard help 823aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1685/DS1687 real time 824aaaf5fbfSJoshua Kinard clock chip. 825aaaf5fbfSJoshua Kinard 826aaaf5fbfSJoshua Kinard This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30) 827aaaf5fbfSJoshua Kinard systems, as well as EPPC-405-UC modules by electronic system design 828aaaf5fbfSJoshua Kinard GmbH. 829aaaf5fbfSJoshua Kinard 830aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1689 831aaaf5fbfSJoshua Kinard bool "DS1689/DS1693" 832aaaf5fbfSJoshua Kinard help 833aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1689/DS1693 real time 834aaaf5fbfSJoshua Kinard clock chip. 835aaaf5fbfSJoshua Kinard 836aaaf5fbfSJoshua Kinard This is an older RTC chip, supplanted by the DS1685/DS1687 above, 837aaaf5fbfSJoshua Kinard which supports a few minor features such as Vcc, Vbat, and Power 838aaaf5fbfSJoshua Kinard Cycle counters, plus a customer-specific, 8-byte ROM/Serial number. 839aaaf5fbfSJoshua Kinard 840aaaf5fbfSJoshua Kinard It also works for the even older DS1688/DS1691 RTC chips, which are 841aaaf5fbfSJoshua Kinard virtually the same and carry the same model number. Both chips 842aaaf5fbfSJoshua Kinard have 114 bytes of user NVRAM. 843aaaf5fbfSJoshua Kinard 844aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17285 845aaaf5fbfSJoshua Kinard bool "DS17285/DS17287" 846aaaf5fbfSJoshua Kinard help 847aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17285/DS17287 real time 848aaaf5fbfSJoshua Kinard clock chip. 849aaaf5fbfSJoshua Kinard 850aaaf5fbfSJoshua Kinard This chip features 2kb of extended NV-SRAM. It may possibly be 851aaaf5fbfSJoshua Kinard found in some SGI O2 systems (rare). 852aaaf5fbfSJoshua Kinard 853aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17485 854aaaf5fbfSJoshua Kinard bool "DS17485/DS17487" 855aaaf5fbfSJoshua Kinard help 856aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17485/DS17487 real time 857aaaf5fbfSJoshua Kinard clock chip. 858aaaf5fbfSJoshua Kinard 859aaaf5fbfSJoshua Kinard This chip features 4kb of extended NV-SRAM. 860aaaf5fbfSJoshua Kinard 861aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17885 862aaaf5fbfSJoshua Kinard bool "DS17885/DS17887" 863aaaf5fbfSJoshua Kinard help 864aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17885/DS17887 real time 865aaaf5fbfSJoshua Kinard clock chip. 866aaaf5fbfSJoshua Kinard 867aaaf5fbfSJoshua Kinard This chip features 8kb of extended NV-SRAM. 868aaaf5fbfSJoshua Kinard 869aaaf5fbfSJoshua Kinardendchoice 870aaaf5fbfSJoshua Kinard 871aaaf5fbfSJoshua Kinardconfig RTC_DS1685_PROC_REGS 872aaaf5fbfSJoshua Kinard bool "Display register values in /proc" 873aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY && PROC_FS 874aaaf5fbfSJoshua Kinard help 875aaaf5fbfSJoshua Kinard Enable this to display a readout of all of the RTC registers in 876aaaf5fbfSJoshua Kinard /proc/drivers/rtc. Keep in mind that this can potentially lead 877aaaf5fbfSJoshua Kinard to lost interrupts, as reading Control Register C will clear 878aaaf5fbfSJoshua Kinard all pending IRQ flags. 879aaaf5fbfSJoshua Kinard 880aaaf5fbfSJoshua Kinard Unless you are debugging this driver, choose N. 881aaaf5fbfSJoshua Kinard 882aaaf5fbfSJoshua Kinardconfig RTC_DS1685_SYSFS_REGS 883aaaf5fbfSJoshua Kinard bool "SysFS access to RTC register bits" 884aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY && SYSFS 885aaaf5fbfSJoshua Kinard help 886aaaf5fbfSJoshua Kinard Enable this to provide access to the RTC control register bits 887aaaf5fbfSJoshua Kinard in /sys. Some of the bits are read-write, others are read-only. 888aaaf5fbfSJoshua Kinard 889aaaf5fbfSJoshua Kinard Keep in mind that reading Control C's bits automatically clears 890aaaf5fbfSJoshua Kinard all pending IRQ flags - this can cause lost interrupts. 891aaaf5fbfSJoshua Kinard 892aaaf5fbfSJoshua Kinard If you know that you need access to these bits, choose Y, Else N. 893aaaf5fbfSJoshua Kinard 89409b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742 89509b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1742/1743" 896706b632dSChen Gang depends on HAS_IOMEM 89709b6bdb3SAlessandro Zummo help 89809b6bdb3SAlessandro Zummo If you say yes here you get support for the 89909b6bdb3SAlessandro Zummo Maxim/Dallas DS1742/1743 timekeeping chip. 90009b6bdb3SAlessandro Zummo 90109b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 90209b6bdb3SAlessandro Zummo will be called rtc-ds1742. 90309b6bdb3SAlessandro Zummo 904ad0200f7SJean Delvareconfig RTC_DRV_DS2404 905ad0200f7SJean Delvare tristate "Maxim/Dallas DS2404" 906ad0200f7SJean Delvare help 907ad0200f7SJean Delvare If you say yes here you get support for the 908ad0200f7SJean Delvare Dallas DS2404 RTC chip. 909ad0200f7SJean Delvare 910ad0200f7SJean Delvare This driver can also be built as a module. If so, the module 911ad0200f7SJean Delvare will be called rtc-ds2404. 912ad0200f7SJean Delvare 913fef931ffSAshish Jangamconfig RTC_DRV_DA9052 914fef931ffSAshish Jangam tristate "Dialog DA9052/DA9053 RTC" 915fef931ffSAshish Jangam depends on PMIC_DA9052 916fef931ffSAshish Jangam help 917fef931ffSAshish Jangam Say y here to support the RTC driver for Dialog Semiconductor 918fef931ffSAshish Jangam DA9052-BC and DA9053-AA/Bx PMICs. 919fef931ffSAshish Jangam 9206920d996SAshish Jangamconfig RTC_DRV_DA9055 9216920d996SAshish Jangam tristate "Dialog Semiconductor DA9055 RTC" 9226920d996SAshish Jangam depends on MFD_DA9055 9236920d996SAshish Jangam help 9246920d996SAshish Jangam If you say yes here you will get support for the 9256920d996SAshish Jangam RTC of the Dialog DA9055 PMIC. 9266920d996SAshish Jangam 9276920d996SAshish Jangam This driver can also be built as a module. If so, the module 9286920d996SAshish Jangam will be called rtc-da9055 9296920d996SAshish Jangam 930c2a57550SOpensource [Steve Twiss]config RTC_DRV_DA9063 931c2a57550SOpensource [Steve Twiss] tristate "Dialog Semiconductor DA9063 RTC" 932c2a57550SOpensource [Steve Twiss] depends on MFD_DA9063 933c2a57550SOpensource [Steve Twiss] help 934c2a57550SOpensource [Steve Twiss] If you say yes here you will get support for the RTC subsystem 935c2a57550SOpensource [Steve Twiss] of the Dialog Semiconductor DA9063. 936c2a57550SOpensource [Steve Twiss] 937c2a57550SOpensource [Steve Twiss] This driver can also be built as a module. If so, the module 938c2a57550SOpensource [Steve Twiss] will be called "rtc-da9063". 939c2a57550SOpensource [Steve Twiss] 9405e3fd9e5Sdann frazierconfig RTC_DRV_EFI 9415e3fd9e5Sdann frazier tristate "EFI RTC" 9427efe6659SMatt Fleming depends on EFI && !X86 9435e3fd9e5Sdann frazier help 9445e3fd9e5Sdann frazier If you say yes here you will get support for the EFI 9455e3fd9e5Sdann frazier Real Time Clock. 9465e3fd9e5Sdann frazier 9475e3fd9e5Sdann frazier This driver can also be built as a module. If so, the module 9485e3fd9e5Sdann frazier will be called rtc-efi. 9495e3fd9e5Sdann frazier 95002964115SThomas Hommelconfig RTC_DRV_STK17TA8 95102964115SThomas Hommel tristate "Simtek STK17TA8" 952706b632dSChen Gang depends on HAS_IOMEM 95302964115SThomas Hommel help 95402964115SThomas Hommel If you say yes here you get support for the 95502964115SThomas Hommel Simtek STK17TA8 timekeeping chip. 95602964115SThomas Hommel 95702964115SThomas Hommel This driver can also be built as a module. If so, the module 95802964115SThomas Hommel will be called rtc-stk17ta8. 95902964115SThomas Hommel 96009a21e56SAlessandro Zummoconfig RTC_DRV_M48T86 96109a21e56SAlessandro Zummo tristate "ST M48T86/Dallas DS12887" 96209a21e56SAlessandro Zummo help 96309a21e56SAlessandro Zummo If you say Y here you will get support for the 96409a21e56SAlessandro Zummo ST M48T86 and Dallas DS12887 RTC chips. 96509a21e56SAlessandro Zummo 96609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 96709a21e56SAlessandro Zummo will be called rtc-m48t86. 96809a21e56SAlessandro Zummo 969d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35 970d1dbd82eSThomas Bogendoerfer tristate "ST M48T35" 971706b632dSChen Gang depends on HAS_IOMEM 972d1dbd82eSThomas Bogendoerfer help 973d1dbd82eSThomas Bogendoerfer If you say Y here you will get support for the 974d1dbd82eSThomas Bogendoerfer ST M48T35 RTC chip. 975d1dbd82eSThomas Bogendoerfer 976d1dbd82eSThomas Bogendoerfer This driver can also be built as a module, if so, the module 977d1dbd82eSThomas Bogendoerfer will be called "rtc-m48t35". 978d1dbd82eSThomas Bogendoerfer 9792e774c7cSMark Zhanconfig RTC_DRV_M48T59 98094fe7424SKrzysztof Helt tristate "ST M48T59/M48T08/M48T02" 981706b632dSChen Gang depends on HAS_IOMEM 9822e774c7cSMark Zhan help 9832e774c7cSMark Zhan If you say Y here you will get support for the 98494fe7424SKrzysztof Helt ST M48T59 RTC chip and compatible ST M48T08 and M48T02. 98594fe7424SKrzysztof Helt 98694fe7424SKrzysztof Helt These chips are usually found in Sun SPARC and UltraSPARC 98794fe7424SKrzysztof Helt workstations. 9882e774c7cSMark Zhan 9892e774c7cSMark Zhan This driver can also be built as a module, if so, the module 9902e774c7cSMark Zhan will be called "rtc-m48t59". 9912e774c7cSMark Zhan 9924f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242 9934f9b9bbaSGeert Uytterhoeven tristate "Oki MSM6242" 994706b632dSChen Gang depends on HAS_IOMEM 9954f9b9bbaSGeert Uytterhoeven help 9964f9b9bbaSGeert Uytterhoeven If you say yes here you get support for the Oki MSM6242 9974f9b9bbaSGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A2000). 9984f9b9bbaSGeert Uytterhoeven 9994f9b9bbaSGeert Uytterhoeven This driver can also be built as a module. If so, the module 10004f9b9bbaSGeert Uytterhoeven will be called rtc-msm6242. 10014f9b9bbaSGeert Uytterhoeven 1002cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802 1003cca4c231SDavid S. Miller tristate "TI BQ4802" 1004706b632dSChen Gang depends on HAS_IOMEM 1005cca4c231SDavid S. Miller help 1006cca4c231SDavid S. Miller If you say Y here you will get support for the TI 1007cca4c231SDavid S. Miller BQ4802 RTC chip. 1008cca4c231SDavid S. Miller 1009cca4c231SDavid S. Miller This driver can also be built as a module. If so, the module 1010cca4c231SDavid S. Miller will be called rtc-bq4802. 1011cca4c231SDavid S. Miller 10124f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01 10134f672ce2SGeert Uytterhoeven tristate "Ricoh RP5C01" 1014706b632dSChen Gang depends on HAS_IOMEM 10154f672ce2SGeert Uytterhoeven help 10164f672ce2SGeert Uytterhoeven If you say yes here you get support for the Ricoh RP5C01 10174f672ce2SGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A3000 10184f672ce2SGeert Uytterhoeven and A4000). 10194f672ce2SGeert Uytterhoeven 10204f672ce2SGeert Uytterhoeven This driver can also be built as a module. If so, the module 10214f672ce2SGeert Uytterhoeven will be called rtc-rp5c01. 10224f672ce2SGeert Uytterhoeven 102309a21e56SAlessandro Zummoconfig RTC_DRV_V3020 102409a21e56SAlessandro Zummo tristate "EM Microelectronic V3020" 102509a21e56SAlessandro Zummo help 102609a21e56SAlessandro Zummo If you say yes here you will get support for the 102709a21e56SAlessandro Zummo EM Microelectronic v3020 RTC chip. 102809a21e56SAlessandro Zummo 102909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 103009a21e56SAlessandro Zummo will be called rtc-v3020. 103109a21e56SAlessandro Zummo 103235c86bf6SMark Brownconfig RTC_DRV_WM831X 103335c86bf6SMark Brown tristate "Wolfson Microelectronics WM831x RTC" 103435c86bf6SMark Brown depends on MFD_WM831X 103535c86bf6SMark Brown help 103635c86bf6SMark Brown If you say yes here you will get support for the RTC subsystem 103735c86bf6SMark Brown of the Wolfson Microelectronics WM831X series PMICs. 103835c86bf6SMark Brown 103935c86bf6SMark Brown This driver can also be built as a module. If so, the module 104035c86bf6SMark Brown will be called "rtc-wm831x". 104135c86bf6SMark Brown 1042077eaf5bSMark Brownconfig RTC_DRV_WM8350 1043077eaf5bSMark Brown tristate "Wolfson Microelectronics WM8350 RTC" 1044077eaf5bSMark Brown depends on MFD_WM8350 1045077eaf5bSMark Brown help 1046077eaf5bSMark Brown If you say yes here you will get support for the RTC subsystem 1047077eaf5bSMark Brown of the Wolfson Microelectronics WM8350. 1048077eaf5bSMark Brown 1049077eaf5bSMark Brown This driver can also be built as a module. If so, the module 1050077eaf5bSMark Brown will be called "rtc-wm8350". 1051077eaf5bSMark Brown 10520942a71eSRajeev Kumarconfig RTC_DRV_SPEAR 10530942a71eSRajeev Kumar tristate "SPEAR ST RTC" 10540942a71eSRajeev Kumar depends on PLAT_SPEAR 10550942a71eSRajeev Kumar default y 10560942a71eSRajeev Kumar help 10570942a71eSRajeev Kumar If you say Y here you will get support for the RTC found on 10580942a71eSRajeev Kumar spear 10590942a71eSRajeev Kumar 1060eae854b2SBalaji Raoconfig RTC_DRV_PCF50633 1061eae854b2SBalaji Rao depends on MFD_PCF50633 1062eae854b2SBalaji Rao tristate "NXP PCF50633 RTC" 1063eae854b2SBalaji Rao help 1064eae854b2SBalaji Rao If you say yes here you get support for the RTC subsystem of the 1065eae854b2SBalaji Rao NXP PCF50633 used in embedded systems. 1066eae854b2SBalaji Rao 1067bd207cfbSLinus Walleijconfig RTC_DRV_AB3100 1068bd207cfbSLinus Walleij tristate "ST-Ericsson AB3100 RTC" 1069bd207cfbSLinus Walleij depends on AB3100_CORE 1070bd207cfbSLinus Walleij default y if AB3100_CORE 1071bd207cfbSLinus Walleij help 1072bd207cfbSLinus Walleij Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC 1073bd207cfbSLinus Walleij support. This chip contains a battery- and capacitor-backed RTC. 1074bd207cfbSLinus Walleij 10750af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500 10760af62f4dSVirupax Sadashivpetimath tristate "ST-Ericsson AB8500 RTC" 10770af62f4dSVirupax Sadashivpetimath depends on AB8500_CORE 1078651fb480SUlf Hansson select RTC_INTF_DEV 1079dc43d4a2SRamesh Chandrasekaran select RTC_INTF_DEV_UIE_EMUL 10800af62f4dSVirupax Sadashivpetimath help 10810af62f4dSVirupax Sadashivpetimath Select this to enable the ST-Ericsson AB8500 power management IC RTC 10820af62f4dSVirupax Sadashivpetimath support. This chip contains a battery- and capacitor-backed RTC. 10830af62f4dSVirupax Sadashivpetimath 1084afd49a7eSWan ZongShunconfig RTC_DRV_NUC900 1085afd49a7eSWan ZongShun tristate "NUC910/NUC920 RTC driver" 10866b8029faSVenu Byravarasu depends on ARCH_W90X900 1087afd49a7eSWan ZongShun help 1088afd49a7eSWan ZongShun If you say yes here you get support for the RTC subsystem of the 1089afd49a7eSWan ZongShun NUC910/NUC920 used in embedded systems. 1090bd207cfbSLinus Walleij 109116b1d26eSNeelesh Guptaconfig RTC_DRV_OPAL 109216b1d26eSNeelesh Gupta tristate "IBM OPAL RTC driver" 109316b1d26eSNeelesh Gupta depends on PPC_POWERNV 109416b1d26eSNeelesh Gupta default y 109516b1d26eSNeelesh Gupta help 109616b1d26eSNeelesh Gupta If you say yes here you get support for the PowerNV platform RTC 109716b1d26eSNeelesh Gupta driver based on OPAL interfaces. 109816b1d26eSNeelesh Gupta 109916b1d26eSNeelesh Gupta This driver can also be built as a module. If so, the module 110016b1d26eSNeelesh Gupta will be called rtc-opal. 110116b1d26eSNeelesh Gupta 110209a21e56SAlessandro Zummocomment "on-CPU RTC drivers" 110309a21e56SAlessandro Zummo 11048ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI 11058ecf6c54SMiguel Aguilar tristate "TI DaVinci RTC" 11068ecf6c54SMiguel Aguilar depends on ARCH_DAVINCI_DM365 11078ecf6c54SMiguel Aguilar help 11088ecf6c54SMiguel Aguilar If you say yes here you get support for the RTC on the 11098ecf6c54SMiguel Aguilar DaVinci platforms (DM365). 11108ecf6c54SMiguel Aguilar 11118ecf6c54SMiguel Aguilar This driver can also be built as a module. If so, the module 11128ecf6c54SMiguel Aguilar will be called rtc-davinci. 11138ecf6c54SMiguel Aguilar 1114*ba172208SBaruch Siachconfig RTC_DRV_DIGICOLOR 1115*ba172208SBaruch Siach tristate "Conexant Digicolor RTC" 1116*ba172208SBaruch Siach depends on ARCH_DIGICOLOR 1117*ba172208SBaruch Siach help 1118*ba172208SBaruch Siach If you say yes here you get support for the RTC on Conexant 1119*ba172208SBaruch Siach Digicolor platforms. This currently includes the CX92755 SoC. 1120*ba172208SBaruch Siach 1121*ba172208SBaruch Siach This driver can also be built as a module. If so, the module 1122*ba172208SBaruch Siach will be called rtc-digicolor. 1123*ba172208SBaruch Siach 1124b224b9acSFabio Estevamconfig RTC_DRV_IMXDI 1125b224b9acSFabio Estevam tristate "Freescale IMX DryIce Real Time Clock" 1126ef216ad0SRoland Stigge depends on ARCH_MXC 1127b224b9acSFabio Estevam help 1128b224b9acSFabio Estevam Support for Freescale IMX DryIce RTC 1129b224b9acSFabio Estevam 1130b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1131b224b9acSFabio Estevam will be called "rtc-imxdi". 1132b224b9acSFabio Estevam 1133db68b189SDavid Brownellconfig RTC_DRV_OMAP 1134db68b189SDavid Brownell tristate "TI OMAP1" 1135427af9a6SAfzal Mohammed depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730 || ARCH_DAVINCI_DA8XX || SOC_AM33XX 1136db68b189SDavid Brownell help 1137427af9a6SAfzal Mohammed Say "yes" here to support the on chip real time clock 1138427af9a6SAfzal Mohammed present on TI OMAP1, AM33xx and DA8xx/OMAP-L13x. 1139427af9a6SAfzal Mohammed 1140427af9a6SAfzal Mohammed This driver can also be built as a module, if so, module 1141427af9a6SAfzal Mohammed will be called rtc-omap. 1142db68b189SDavid Brownell 114316f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC 114416f4efe7SAtul Dahiya bool 114516f4efe7SAtul Dahiya help 114616f4efe7SAtul Dahiya This will include RTC support for Samsung SoCs. If 114716f4efe7SAtul Dahiya you want to include RTC support for any machine, kindly 114816f4efe7SAtul Dahiya select this in the respective mach-XXXX/Kconfig file. 114916f4efe7SAtul Dahiya 11501add6781SBen Dooksconfig RTC_DRV_S3C 11511add6781SBen Dooks tristate "Samsung S3C series SoC RTC" 1152b130d5c2SKukjin Kim depends on ARCH_S3C64XX || HAVE_S3C_RTC 11531add6781SBen Dooks help 11541add6781SBen Dooks RTC (Realtime Clock) driver for the clock inbuilt into the 11551add6781SBen Dooks Samsung S3C24XX series of SoCs. This can provide periodic 11561add6781SBen Dooks interrupt rates from 1Hz to 64Hz for user programs, and 11571add6781SBen Dooks wakeup from Alarm. 11581add6781SBen Dooks 11591add6781SBen Dooks The driver currently supports the common features on all the 11601add6781SBen Dooks S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440 11611add6781SBen Dooks and S3C2442. 11621add6781SBen Dooks 11631add6781SBen Dooks This driver can also be build as a module. If so, the module 11641add6781SBen Dooks will be called rtc-s3c. 11651add6781SBen Dooks 1166fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX 1167fd507e2fSAlessandro Zummo tristate "Cirrus Logic EP93XX" 1168bb35fb20SJan Engelhardt depends on ARCH_EP93XX 1169fd507e2fSAlessandro Zummo help 1170fd507e2fSAlessandro Zummo If you say yes here you get support for the 1171fd507e2fSAlessandro Zummo RTC embedded in the Cirrus Logic EP93XX processors. 1172fd507e2fSAlessandro Zummo 1173fd507e2fSAlessandro Zummo This driver can also be built as a module. If so, the module 1174fd507e2fSAlessandro Zummo will be called rtc-ep93xx. 1175fd507e2fSAlessandro Zummo 1176e842f1c8SRichard Purdieconfig RTC_DRV_SA1100 11773888c090SHaojian Zhuang tristate "SA11x0/PXA2xx/PXA910" 11783888c090SHaojian Zhuang depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP 1179e842f1c8SRichard Purdie help 1180e842f1c8SRichard Purdie If you say Y here you will get access to the real time clock 1181e842f1c8SRichard Purdie built into your SA11x0 or PXA2xx CPU. 1182e842f1c8SRichard Purdie 1183e842f1c8SRichard Purdie To compile this driver as a module, choose M here: the 1184e842f1c8SRichard Purdie module will be called rtc-sa1100. 1185fd507e2fSAlessandro Zummo 1186317a6104SPaul Mundtconfig RTC_DRV_SH 1187317a6104SPaul Mundt tristate "SuperH On-Chip RTC" 11886b8029faSVenu Byravarasu depends on SUPERH && HAVE_CLK 1189317a6104SPaul Mundt help 1190317a6104SPaul Mundt Say Y here to enable support for the on-chip RTC found in 1191317a6104SPaul Mundt most SuperH processors. 1192317a6104SPaul Mundt 1193317a6104SPaul Mundt To compile this driver as a module, choose M here: the 1194317a6104SPaul Mundt module will be called rtc-sh. 1195317a6104SPaul Mundt 11968417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX 11973e16f6afSAlessandro Zummo tristate "NEC VR41XX" 1198bb35fb20SJan Engelhardt depends on CPU_VR41XX 11993e16f6afSAlessandro Zummo help 12003e16f6afSAlessandro Zummo If you say Y here you will get access to the real time clock 12013e16f6afSAlessandro Zummo built into your NEC VR41XX CPU. 12023e16f6afSAlessandro Zummo 12033e16f6afSAlessandro Zummo To compile this driver as a module, choose M here: the 12043e16f6afSAlessandro Zummo module will be called rtc-vr41xx. 12058417eb7aSYoichi Yuasa 1206a190901cSRussell Kingconfig RTC_DRV_PL030 1207a190901cSRussell King tristate "ARM AMBA PL030 RTC" 1208a190901cSRussell King depends on ARM_AMBA 1209a190901cSRussell King help 1210a190901cSRussell King If you say Y here you will get access to ARM AMBA 1211a190901cSRussell King PrimeCell PL030 RTC found on certain ARM SOCs. 1212a190901cSRussell King 1213a190901cSRussell King To compile this driver as a module, choose M here: the 1214a190901cSRussell King module will be called rtc-pl030. 1215a190901cSRussell King 12168ae6e163SDeepak Saxenaconfig RTC_DRV_PL031 12178ae6e163SDeepak Saxena tristate "ARM AMBA PL031 RTC" 1218bb35fb20SJan Engelhardt depends on ARM_AMBA 12198ae6e163SDeepak Saxena help 12208ae6e163SDeepak Saxena If you say Y here you will get access to ARM AMBA 122109a21e56SAlessandro Zummo PrimeCell PL031 RTC found on certain ARM SOCs. 12228ae6e163SDeepak Saxena 12238ae6e163SDeepak Saxena To compile this driver as a module, choose M here: the 12248ae6e163SDeepak Saxena module will be called rtc-pl031. 12258ae6e163SDeepak Saxena 1226fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X 1227fa04e78bSHans-Christian Egtvedt tristate "AT32AP700X series RTC" 1228bb35fb20SJan Engelhardt depends on PLATFORM_AT32AP 1229fa04e78bSHans-Christian Egtvedt help 1230fa04e78bSHans-Christian Egtvedt Driver for the internal RTC (Realtime Clock) on Atmel AVR32 1231fa04e78bSHans-Christian Egtvedt AT32AP700x family processors. 1232fa04e78bSHans-Christian Egtvedt 12337fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200 123424cecc1bSNicolas Ferre tristate "AT91RM9200 or some AT91SAM9 RTC" 1235938f970eSNicolas Ferre depends on ARCH_AT91 1236788b1fc6SAndrew Victor help 12374cdf854fSDavid Brownell Driver for the internal RTC (Realtime Clock) module found on 123824cecc1bSNicolas Ferre Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips 12394cdf854fSDavid Brownell this is powered by the backup power supply. 12404cdf854fSDavid Brownell 12414cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9 12423969eb48SBoris BREZILLON tristate "AT91SAM9 RTT as RTC" 1243ee72f18bSNicolas Ferre depends on ARCH_AT91 124443e112bbSBoris BREZILLON select MFD_SYSCON 12454cdf854fSDavid Brownell help 12463969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which 12473969eb48SBoris BREZILLON can be used as an RTC thanks to the backup power supply (e.g. a 12483969eb48SBoris BREZILLON small coin cell battery) which keeps this block and the GPBR 12493969eb48SBoris BREZILLON (General Purpose Backup Registers) block powered when the device 12503969eb48SBoris BREZILLON is shutdown. 12513969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd 12523969eb48SBoris BREZILLON probably want to use the real RTC block instead of the "RTT as an 12533969eb48SBoris BREZILLON RTC" driver. 12544cdf854fSDavid Brownell 125545fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX 125645fd8a0cSManuel Lauss tristate "Au1xxx Counter0 RTC support" 125742a4f17dSManuel Lauss depends on MIPS_ALCHEMY 125845fd8a0cSManuel Lauss help 125945fd8a0cSManuel Lauss This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year 126045fd8a0cSManuel Lauss counter) to be used as a RTC. 126145fd8a0cSManuel Lauss 126245fd8a0cSManuel Lauss This driver can also be built as a module. If so, the module 126345fd8a0cSManuel Lauss will be called rtc-au1xxx. 126445fd8a0cSManuel Lauss 12658cc75c9aSWu, Bryanconfig RTC_DRV_BFIN 12668cc75c9aSWu, Bryan tristate "Blackfin On-Chip RTC" 12677f604599SGraf Yang depends on BLACKFIN && !BF561 12688cc75c9aSWu, Bryan help 12698cc75c9aSWu, Bryan If you say yes here you will get support for the 12708cc75c9aSWu, Bryan Blackfin On-Chip Real Time Clock. 12718cc75c9aSWu, Bryan 12728cc75c9aSWu, Bryan This driver can also be built as a module. If so, the module 12738cc75c9aSWu, Bryan will be called rtc-bfin. 12748cc75c9aSWu, Bryan 1275e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313 1276e9f2bd81SNobuhiro Iwamatsu tristate "Ricoh RS5C313" 1277bb35fb20SJan Engelhardt depends on SH_LANDISK 1278e9f2bd81SNobuhiro Iwamatsu help 1279e9f2bd81SNobuhiro Iwamatsu If you say yes here you get support for the Ricoh RS5C313 RTC chips. 1280e9f2bd81SNobuhiro Iwamatsu 12813afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC 12823afe6d04SGeert Uytterhoeven tristate "Generic RTC support" 12833afe6d04SGeert Uytterhoeven # Please consider writing a new RTC driver instead of using the generic 12843afe6d04SGeert Uytterhoeven # RTC abstraction 128547c8a08bSPaul Mundt depends on PARISC || M68K || PPC || SUPERH32 12869eb16864SKyle McMartin help 12873afe6d04SGeert Uytterhoeven Say Y or M here to enable RTC support on systems using the generic 12883afe6d04SGeert Uytterhoeven RTC abstraction. If you do not know what you are doing, you should 12899eb16864SKyle McMartin just say Y. 12909eb16864SKyle McMartin 1291dc944368SRobert Jarzmikconfig RTC_DRV_PXA 1292dc944368SRobert Jarzmik tristate "PXA27x/PXA3xx" 1293dc944368SRobert Jarzmik depends on ARCH_PXA 1294dc944368SRobert Jarzmik help 1295dc944368SRobert Jarzmik If you say Y here you will get access to the real time clock 1296dc944368SRobert Jarzmik built into your PXA27x or PXA3xx CPU. 1297dc944368SRobert Jarzmik 1298dc944368SRobert Jarzmik This RTC driver uses PXA RTC registers available since pxa27x 1299dc944368SRobert Jarzmik series (RDxR, RYxR) instead of legacy RCNR, RTAR. 1300dc944368SRobert Jarzmik 1301f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500 1302f77fbdf9SAlexey Charkov tristate "VIA/WonderMedia 85xx SoC RTC" 1303f77fbdf9SAlexey Charkov depends on ARCH_VT8500 1304f77fbdf9SAlexey Charkov help 1305f77fbdf9SAlexey Charkov If you say Y here you will get access to the real time clock 1306f77fbdf9SAlexey Charkov built into your VIA VT8500 SoC or its relatives. 1307f77fbdf9SAlexey Charkov 1308dc944368SRobert Jarzmik 13097a138edeSDavid S. Millerconfig RTC_DRV_SUN4V 13107a138edeSDavid S. Miller bool "SUN4V Hypervisor RTC" 13117a138edeSDavid S. Miller depends on SPARC64 13127a138edeSDavid S. Miller help 13137a138edeSDavid S. Miller If you say Y here you will get support for the Hypervisor 13147a138edeSDavid S. Miller based RTC on SUN4V systems. 13157a138edeSDavid S. Miller 13169765d2d9SChen-Yu Tsaiconfig RTC_DRV_SUN6I 13179765d2d9SChen-Yu Tsai tristate "Allwinner A31 RTC" 13189765d2d9SChen-Yu Tsai depends on MACH_SUN6I || MACH_SUN8I 13199765d2d9SChen-Yu Tsai help 13209765d2d9SChen-Yu Tsai If you say Y here you will get support for the RTC found on 13219765d2d9SChen-Yu Tsai Allwinner A31. 13229765d2d9SChen-Yu Tsai 1323594c6fb9SCarlo Caioneconfig RTC_DRV_SUNXI 1324594c6fb9SCarlo Caione tristate "Allwinner sun4i/sun7i RTC" 132564a1925cSChen-Yu Tsai depends on MACH_SUN4I || MACH_SUN7I 1326594c6fb9SCarlo Caione help 1327594c6fb9SCarlo Caione If you say Y here you will get support for the RTC found on 1328594c6fb9SCarlo Caione Allwinner A10/A20. 1329594c6fb9SCarlo Caione 1330de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE 1331de2cf332SDavid S. Miller bool "Starfire RTC" 1332de2cf332SDavid S. Miller depends on SPARC64 1333de2cf332SDavid S. Miller help 1334de2cf332SDavid S. Miller If you say Y here you will get support for the RTC found on 1335de2cf332SDavid S. Miller Starfire systems. 1336de2cf332SDavid S. Miller 13370e149233SAtsushi Nemotoconfig RTC_DRV_TX4939 13380e149233SAtsushi Nemoto tristate "TX4939 SoC" 13390e149233SAtsushi Nemoto depends on SOC_TX4939 13400e149233SAtsushi Nemoto help 13410e149233SAtsushi Nemoto Driver for the internal RTC (Realtime Clock) module found on 13420e149233SAtsushi Nemoto Toshiba TX4939 SoC. 13430e149233SAtsushi Nemoto 1344defb4514SSaeed Bisharaconfig RTC_DRV_MV 1345defb4514SSaeed Bishara tristate "Marvell SoC RTC" 1346ace2c020SAndrew Lunn depends on ARCH_DOVE || ARCH_MVEBU 1347defb4514SSaeed Bishara help 1348defb4514SSaeed Bishara If you say yes here you will get support for the in-chip RTC 1349defb4514SSaeed Bishara that can be found in some of Marvell's SoC devices, such as 1350defb4514SSaeed Bishara the Kirkwood 88F6281 and 88F6192. 1351defb4514SSaeed Bishara 1352defb4514SSaeed Bishara This driver can also be built as a module. If so, the module 1353defb4514SSaeed Bishara will be called rtc-mv. 1354defb4514SSaeed Bishara 1355a3a42806SGregory CLEMENTconfig RTC_DRV_ARMADA38X 1356a3a42806SGregory CLEMENT tristate "Armada 38x Marvell SoC RTC" 1357a3a42806SGregory CLEMENT depends on ARCH_MVEBU 1358a3a42806SGregory CLEMENT help 1359a3a42806SGregory CLEMENT If you say yes here you will get support for the in-chip RTC 1360a3a42806SGregory CLEMENT that can be found in the Armada 38x Marvell's SoC device 1361a3a42806SGregory CLEMENT 1362a3a42806SGregory CLEMENT This driver can also be built as a module. If so, the module 1363a3a42806SGregory CLEMENT will be called armada38x-rtc. 1364a3a42806SGregory CLEMENT 13650b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3 13660b5f037aSGeert Uytterhoeven tristate "PS3 RTC" 13670b5f037aSGeert Uytterhoeven depends on PPC_PS3 13680b5f037aSGeert Uytterhoeven help 13690b5f037aSGeert Uytterhoeven If you say yes here you will get support for the RTC on PS3. 13700b5f037aSGeert Uytterhoeven 13710b5f037aSGeert Uytterhoeven This driver can also be built as a module. If so, the module 13720b5f037aSGeert Uytterhoeven will be called rtc-ps3. 13730b5f037aSGeert Uytterhoeven 1374aa958f57SLinus Walleijconfig RTC_DRV_COH901331 1375aa958f57SLinus Walleij tristate "ST-Ericsson COH 901 331 RTC" 1376aa958f57SLinus Walleij depends on ARCH_U300 1377aa958f57SLinus Walleij help 1378aa958f57SLinus Walleij If you say Y here you will get access to ST-Ericsson 1379aa958f57SLinus Walleij COH 901 331 RTC clock found in some ST-Ericsson Mobile 1380aa958f57SLinus Walleij Platforms. 1381aa958f57SLinus Walleij 1382aa958f57SLinus Walleij This driver can also be built as a module. If so, the module 1383aa958f57SLinus Walleij will be called "rtc-coh901331". 1384aa958f57SLinus Walleij 1385aa958f57SLinus Walleij 1386df17f631Sdmitry pervushinconfig RTC_DRV_STMP 138746b21218SWolfram Sang tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC" 138846b21218SWolfram Sang depends on ARCH_MXS 1389df17f631Sdmitry pervushin help 1390df17f631Sdmitry pervushin If you say yes here you will get support for the onboard 139146b21218SWolfram Sang STMP3xxx/i.MX23/i.MX28 RTC. 1392df17f631Sdmitry pervushin 1393df17f631Sdmitry pervushin This driver can also be built as a module. If so, the module 1394df17f631Sdmitry pervushin will be called rtc-stmp3xxx. 1395df17f631Sdmitry pervushin 1396d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP 1397d3c7a3f7SDaniel Ribeiro tristate "PCAP RTC" 1398d3c7a3f7SDaniel Ribeiro depends on EZX_PCAP 1399d3c7a3f7SDaniel Ribeiro help 1400d3c7a3f7SDaniel Ribeiro If you say Y here you will get support for the RTC found on 1401d3c7a3f7SDaniel Ribeiro the PCAP2 ASIC used on some Motorola phones. 1402d3c7a3f7SDaniel Ribeiro 14031c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX 14041c97872bSUwe Kleine-König depends on MFD_MC13XXX 14051c97872bSUwe Kleine-König tristate "Freescale MC13xxx RTC" 140643299f28SUwe Kleine-König help 14071c97872bSUwe Kleine-König This enables support for the RTCs found on Freescale's PMICs 14081c97872bSUwe Kleine-König MC13783 and MC13892. 140943299f28SUwe Kleine-König 141050aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121 141150aae724SAnatolij Gustschin tristate "Freescale MPC5121 built-in RTC" 1412955dbea3SDmitry Eremin-Solenikov depends on PPC_MPC512x || PPC_MPC52xx 141350aae724SAnatolij Gustschin help 141450aae724SAnatolij Gustschin If you say yes here you will get support for the 1415955dbea3SDmitry Eremin-Solenikov built-in RTC on MPC5121 or on MPC5200. 141650aae724SAnatolij Gustschin 141750aae724SAnatolij Gustschin This driver can also be built as a module. If so, the module 141850aae724SAnatolij Gustschin will be called rtc-mpc5121. 141950aae724SAnatolij Gustschin 14203bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740 14213bf0eea8SLars-Peter Clausen tristate "Ingenic JZ4740 SoC" 14223bf0eea8SLars-Peter Clausen depends on MACH_JZ4740 14233bf0eea8SLars-Peter Clausen help 14243bf0eea8SLars-Peter Clausen If you say yes here you get support for the Ingenic JZ4740 SoC RTC 14253bf0eea8SLars-Peter Clausen controller. 14263bf0eea8SLars-Peter Clausen 14273bf0eea8SLars-Peter Clausen This driver can also be buillt as a module. If so, the module 14283bf0eea8SLars-Peter Clausen will be called rtc-jz4740. 14293bf0eea8SLars-Peter Clausen 14309aa449beSKevin Wellsconfig RTC_DRV_LPC32XX 14319aa449beSKevin Wells depends on ARCH_LPC32XX 14329aa449beSKevin Wells tristate "NXP LPC32XX RTC" 14339aa449beSKevin Wells help 14349aa449beSKevin Wells This enables support for the NXP RTC in the LPC32XX 14359aa449beSKevin Wells 14369aa449beSKevin Wells This driver can also be buillt as a module. If so, the module 14379aa449beSKevin Wells will be called rtc-lpc32xx. 14389aa449beSKevin Wells 14399a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX 14409a9a54adSAnirudh Ghayal tristate "Qualcomm PMIC8XXX RTC" 1441c8d523a4SStanimir Varbanov depends on MFD_PM8XXX || MFD_SPMI_PMIC 14429a9a54adSAnirudh Ghayal help 14439a9a54adSAnirudh Ghayal If you say yes here you get support for the 14449a9a54adSAnirudh Ghayal Qualcomm PMIC8XXX RTC. 14459a9a54adSAnirudh Ghayal 14469a9a54adSAnirudh Ghayal To compile this driver as a module, choose M here: the 14479a9a54adSAnirudh Ghayal module will be called rtc-pm8xxx. 14489a9a54adSAnirudh Ghayal 1449ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA 1450ff859ba6SAndrew Chew tristate "NVIDIA Tegra Internal RTC driver" 14516b8029faSVenu Byravarasu depends on ARCH_TEGRA 1452ff859ba6SAndrew Chew help 1453ff859ba6SAndrew Chew If you say yes here you get support for the 1454ff859ba6SAndrew Chew Tegra 200 series internal RTC module. 1455ff859ba6SAndrew Chew 1456ff859ba6SAndrew Chew This drive can also be built as a module. If so, the module 1457ff859ba6SAndrew Chew will be called rtc-tegra. 1458ff859ba6SAndrew Chew 1459dd196a2bSChris Metcalfconfig RTC_DRV_TILE 1460dd196a2bSChris Metcalf tristate "Tilera hypervisor RTC support" 1461dd196a2bSChris Metcalf depends on TILE 1462dd196a2bSChris Metcalf help 1463dd196a2bSChris Metcalf Enable support for the Linux driver side of the Tilera 1464dd196a2bSChris Metcalf hypervisor's real-time clock interface. 1465dd196a2bSChris Metcalf 14662809e80bSGuan Xuetaoconfig RTC_DRV_PUV3 14672809e80bSGuan Xuetao tristate "PKUnity v3 RTC support" 14682809e80bSGuan Xuetao depends on ARCH_PUV3 14692809e80bSGuan Xuetao help 14702809e80bSGuan Xuetao This enables support for the RTC in the PKUnity-v3 SoCs. 14712809e80bSGuan Xuetao 14722809e80bSGuan Xuetao This drive can also be built as a module. If so, the module 14732809e80bSGuan Xuetao will be called rtc-puv3. 14742809e80bSGuan Xuetao 1475b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1 1476b4f0b880Szhao zhang tristate "loongson1 RTC support" 1477b4f0b880Szhao zhang depends on MACH_LOONGSON1 1478b4f0b880Szhao zhang help 1479b4f0b880Szhao zhang This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year 1480b4f0b880Szhao zhang counter) to be used as a RTC. 1481b4f0b880Szhao zhang 1482b4f0b880Szhao zhang This driver can also be built as a module. If so, the module 1483b4f0b880Szhao zhang will be called rtc-ls1x. 1484b4f0b880Szhao zhang 148579811595SFabio Estevamconfig RTC_DRV_MXC 1486b224b9acSFabio Estevam tristate "Freescale MXC Real Time Clock" 1487b224b9acSFabio Estevam depends on ARCH_MXC 1488b224b9acSFabio Estevam help 1489b224b9acSFabio Estevam If you say yes here you get support for the Freescale MXC 1490b224b9acSFabio Estevam RTC module. 1491b224b9acSFabio Estevam 1492b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1493b224b9acSFabio Estevam will be called "rtc-mxc". 1494b224b9acSFabio Estevam 1495179a502fSShawn Guoconfig RTC_DRV_SNVS 1496179a502fSShawn Guo tristate "Freescale SNVS RTC support" 1497179a502fSShawn Guo depends on HAS_IOMEM 1498179a502fSShawn Guo depends on OF 1499179a502fSShawn Guo help 1500179a502fSShawn Guo If you say yes here you get support for the Freescale SNVS 1501179a502fSShawn Guo Low Power (LP) RTC module. 1502179a502fSShawn Guo 1503179a502fSShawn Guo This driver can also be built as a module, if so, the module 1504179a502fSShawn Guo will be called "rtc-snvs". 1505179a502fSShawn Guo 1506e88b815eSXianglong Duconfig RTC_DRV_SIRFSOC 1507e88b815eSXianglong Du tristate "SiRFSOC RTC" 1508e88b815eSXianglong Du depends on ARCH_SIRF 1509e88b815eSXianglong Du help 1510e88b815eSXianglong Du Say "yes" here to support the real time clock on SiRF SOC chips. 1511e88b815eSXianglong Du This driver can also be built as a module called rtc-sirfsoc. 1512e88b815eSXianglong Du 1513453b4c6dSJonas Jensenconfig RTC_DRV_MOXART 1514453b4c6dSJonas Jensen tristate "MOXA ART RTC" 1515441fb768SJean Delvare depends on ARCH_MOXART || COMPILE_TEST 1516453b4c6dSJonas Jensen help 1517453b4c6dSJonas Jensen If you say yes here you get support for the MOXA ART 1518453b4c6dSJonas Jensen RTC module. 1519453b4c6dSJonas Jensen 1520453b4c6dSJonas Jensen This driver can also be built as a module. If so, the module 1521453b4c6dSJonas Jensen will be called rtc-moxart 1522453b4c6dSJonas Jensen 1523f12d8695SLoc Hoconfig RTC_DRV_XGENE 1524f12d8695SLoc Ho tristate "APM X-Gene RTC" 1525706b632dSChen Gang depends on HAS_IOMEM 1526f12d8695SLoc Ho help 1527f12d8695SLoc Ho If you say yes here you get support for the APM X-Gene SoC real time 1528f12d8695SLoc Ho clock. 1529f12d8695SLoc Ho 1530f12d8695SLoc Ho This driver can also be built as a module, if so, the module 1531f12d8695SLoc Ho will be called "rtc-xgene". 1532f12d8695SLoc Ho 153362e00cb9SAlexander Hollercomment "HID Sensor RTC drivers" 153462e00cb9SAlexander Holler 153562e00cb9SAlexander Hollerconfig RTC_DRV_HID_SENSOR_TIME 153662e00cb9SAlexander Holler tristate "HID Sensor Time" 153762e00cb9SAlexander Holler depends on USB_HID 153862e00cb9SAlexander Holler select IIO 153962e00cb9SAlexander Holler select HID_SENSOR_HUB 154062e00cb9SAlexander Holler select HID_SENSOR_IIO_COMMON 154162e00cb9SAlexander Holler help 154262e00cb9SAlexander Holler Say yes here to build support for the HID Sensors of type Time. 154362e00cb9SAlexander Holler This drivers makes such sensors available as RTCs. 154462e00cb9SAlexander Holler 154562e00cb9SAlexander Holler If this driver is compiled as a module, it will be named 154662e00cb9SAlexander Holler rtc-hid-sensor-time. 154762e00cb9SAlexander Holler 154862e00cb9SAlexander Holler 1549bb35fb20SJan Engelhardtendif # RTC_CLASS 1550