17be2c7c9SDavid Brownell# 2c58411e9SAlessandro Zummo# RTC class/drivers configuration 3c58411e9SAlessandro Zummo# 4c58411e9SAlessandro Zummo 5c58411e9SAlessandro Zummoconfig RTC_LIB 6b4d246b1SJohn Stultz bool 70c86edc0SAlessandro Zummo 8d6faca40SArnd Bergmannconfig RTC_MC146818_LIB 9d6faca40SArnd Bergmann bool 10d6faca40SArnd Bergmann select RTC_LIB 11d6faca40SArnd Bergmann 12bb35fb20SJan Engelhardtmenuconfig RTC_CLASS 13b4d246b1SJohn Stultz bool "Real Time Clock" 140c86edc0SAlessandro Zummo default n 153369465eSAl Viro depends on !S390 && !UML 160c86edc0SAlessandro Zummo select RTC_LIB 170c86edc0SAlessandro Zummo help 180c86edc0SAlessandro Zummo Generic RTC class support. If you say yes here, you will 190c86edc0SAlessandro Zummo be allowed to plug one or more RTCs to your system. You will 2027ae4104SAdrian Bunk probably want to enable one or more of the interfaces below. 210c86edc0SAlessandro Zummo 22bb35fb20SJan Engelhardtif RTC_CLASS 23bb35fb20SJan Engelhardt 240c86edc0SAlessandro Zummoconfig RTC_HCTOSYS 257ca1d488SDavid Brownell bool "Set system time from RTC on startup and resume" 260c86edc0SAlessandro Zummo default y 270c86edc0SAlessandro Zummo help 287ca1d488SDavid Brownell If you say yes here, the system time (wall clock) will be set using 297ca1d488SDavid Brownell the value read from a specified RTC device. This is useful to avoid 307ca1d488SDavid Brownell unnecessary fsck runs at boot time, and to network better. 310c86edc0SAlessandro Zummo 320c86edc0SAlessandro Zummoconfig RTC_HCTOSYS_DEVICE 337ca1d488SDavid Brownell string "RTC used to set the system time" 349c5150b3SXunlei Pang depends on RTC_HCTOSYS 350c86edc0SAlessandro Zummo default "rtc0" 360c86edc0SAlessandro Zummo help 377ca1d488SDavid Brownell The RTC device that will be used to (re)initialize the system 387ca1d488SDavid Brownell clock, usually rtc0. Initialization is done when the system 39779d2089SDavid Brownell starts up, and when it resumes from a low power state. This 40779d2089SDavid Brownell device should record time in UTC, since the kernel won't do 41779d2089SDavid Brownell timezone correction. 427ca1d488SDavid Brownell 4355ff1abaSDavid Brownell The driver for this RTC device must be loaded before late_initcall 4455ff1abaSDavid Brownell functions run, so it must usually be statically linked. 4555ff1abaSDavid Brownell 467ca1d488SDavid Brownell This clock should be battery-backed, so that it reads the correct 477ca1d488SDavid Brownell time when the system boots from a power-off state. Otherwise, your 487ca1d488SDavid Brownell system will need an external clock source (like an NTP server). 497ca1d488SDavid Brownell 507ca1d488SDavid Brownell If the clock you specify here is not battery backed, it may still 517ca1d488SDavid Brownell be useful to reinitialize system time when resuming from system 527ca1d488SDavid Brownell sleep states. Do not specify an RTC here unless it stays powered 537ca1d488SDavid Brownell during all this system's supported sleep states. 540c86edc0SAlessandro Zummo 559c5150b3SXunlei Pangconfig RTC_SYSTOHC 569c5150b3SXunlei Pang bool "Set the RTC time based on NTP synchronization" 579c5150b3SXunlei Pang default y 589c5150b3SXunlei Pang help 599c5150b3SXunlei Pang If you say yes here, the system time (wall clock) will be stored 609c5150b3SXunlei Pang in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11 619c5150b3SXunlei Pang minutes if userspace reports synchronized NTP status. 629c5150b3SXunlei Pang 639c5150b3SXunlei Pangconfig RTC_SYSTOHC_DEVICE 649c5150b3SXunlei Pang string "RTC used to synchronize NTP adjustment" 659c5150b3SXunlei Pang depends on RTC_SYSTOHC 669c5150b3SXunlei Pang default RTC_HCTOSYS_DEVICE if RTC_HCTOSYS 679c5150b3SXunlei Pang default "rtc0" 689c5150b3SXunlei Pang help 699c5150b3SXunlei Pang The RTC device used for NTP synchronization. The main difference 709c5150b3SXunlei Pang between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this 719c5150b3SXunlei Pang one can sleep when setting time, because it runs in the workqueue 729c5150b3SXunlei Pang context. 739c5150b3SXunlei Pang 749e86ecb6SDavid Brownellconfig RTC_DEBUG 759e86ecb6SDavid Brownell bool "RTC debug support" 769e86ecb6SDavid Brownell help 779e86ecb6SDavid Brownell Say yes here to enable debugging support in the RTC framework 789e86ecb6SDavid Brownell and individual RTC drivers. 799e86ecb6SDavid Brownell 800c86edc0SAlessandro Zummocomment "RTC interfaces" 810c86edc0SAlessandro Zummo 82c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS 836341e62bSChristoph Jaeger bool "/sys/class/rtc/rtcN (sysfs)" 84bb35fb20SJan Engelhardt depends on SYSFS 858dc08395SKevin Hilman default RTC_CLASS 86c5c3e192SAlessandro Zummo help 879e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using sysfs interfaces, 889e86ecb6SDavid Brownell /sys/class/rtc/rtc0 through /sys/.../rtcN. 89c5c3e192SAlessandro Zummo 90ae64d169SAlessandro Zummo If unsure, say Y. 91c5c3e192SAlessandro Zummo 92728a2947SAlessandro Zummoconfig RTC_INTF_PROC 936341e62bSChristoph Jaeger bool "/proc/driver/rtc (procfs for rtcN)" 94bb35fb20SJan Engelhardt depends on PROC_FS 958dc08395SKevin Hilman default RTC_CLASS 96728a2947SAlessandro Zummo help 9792589c98SKim, Milo Say yes here if you want to use your system clock RTC through 9892589c98SKim, Milo the proc interface, /proc/driver/rtc. 9992589c98SKim, Milo Other RTCs will not be available through that API. 10092589c98SKim, Milo If there is no RTC for the system clock, then the first RTC(rtc0) 10192589c98SKim, Milo is used by default. 102728a2947SAlessandro Zummo 103ae64d169SAlessandro Zummo If unsure, say Y. 104728a2947SAlessandro Zummo 105e824290eSAlessandro Zummoconfig RTC_INTF_DEV 1066341e62bSChristoph Jaeger bool "/dev/rtcN (character devices)" 1078dc08395SKevin Hilman default RTC_CLASS 108e824290eSAlessandro Zummo help 1099e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using the /dev 1109e86ecb6SDavid Brownell interfaces, which "udev" sets up as /dev/rtc0 through 111ae64d169SAlessandro Zummo /dev/rtcN. 112e824290eSAlessandro Zummo 113ae64d169SAlessandro Zummo You may want to set up a symbolic link so one of these 114ae64d169SAlessandro Zummo can be accessed as /dev/rtc, which is a name 115ae64d169SAlessandro Zummo expected by "hwclock" and some other programs. Recent 116ae64d169SAlessandro Zummo versions of "udev" are known to set up the symlink for you. 117ae64d169SAlessandro Zummo 118ae64d169SAlessandro Zummo If unsure, say Y. 119e824290eSAlessandro Zummo 1206e57b1d6SJohn Stultzconfig RTC_INTF_DEV_UIE_EMUL 1216e57b1d6SJohn Stultz bool "RTC UIE emulation on dev interface" 1226e57b1d6SJohn Stultz depends on RTC_INTF_DEV 1236e57b1d6SJohn Stultz help 1246e57b1d6SJohn Stultz Provides an emulation for RTC_UIE if the underlying rtc chip 1256e57b1d6SJohn Stultz driver does not expose RTC_UIE ioctls. Those requests generate 1266e57b1d6SJohn Stultz once-per-second update interrupts, used for synchronization. 1276e57b1d6SJohn Stultz 1286e57b1d6SJohn Stultz The emulation code will read the time from the hardware 1296e57b1d6SJohn Stultz clock several times per second, please enable this option 1306e57b1d6SJohn Stultz only if you know that you really need it. 1316e57b1d6SJohn Stultz 13209a21e56SAlessandro Zummoconfig RTC_DRV_TEST 13309a21e56SAlessandro Zummo tristate "Test driver/device" 13409a21e56SAlessandro Zummo help 13509a21e56SAlessandro Zummo If you say yes here you get support for the 13609a21e56SAlessandro Zummo RTC test driver. It's a software RTC which can be 13709a21e56SAlessandro Zummo used to test the RTC subsystem APIs. It gets 13809a21e56SAlessandro Zummo the time from the system clock. 13909a21e56SAlessandro Zummo You want this driver only if you are doing development 14009a21e56SAlessandro Zummo on the RTC subsystem. Please read the source code 14109a21e56SAlessandro Zummo for further details. 14209a21e56SAlessandro Zummo 14309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 14409a21e56SAlessandro Zummo will be called rtc-test. 14509a21e56SAlessandro Zummo 14609a21e56SAlessandro Zummocomment "I2C RTC drivers" 147bb35fb20SJan Engelhardt 148bb35fb20SJan Engelhardtif I2C 14909a21e56SAlessandro Zummo 150008b3040SHaojian Zhuangconfig RTC_DRV_88PM860X 151008b3040SHaojian Zhuang tristate "Marvell 88PM860x" 1523783055eSAlexandre Belloni depends on MFD_88PM860X 153008b3040SHaojian Zhuang help 154008b3040SHaojian Zhuang If you say yes here you get support for RTC function in Marvell 155008b3040SHaojian Zhuang 88PM860x chips. 156008b3040SHaojian Zhuang 157008b3040SHaojian Zhuang This driver can also be built as a module. If so, the module 158008b3040SHaojian Zhuang will be called rtc-88pm860x. 159008b3040SHaojian Zhuang 1602985c29cSQiao Zhouconfig RTC_DRV_88PM80X 1612985c29cSQiao Zhou tristate "Marvell 88PM80x" 1623783055eSAlexandre Belloni depends on MFD_88PM800 1632985c29cSQiao Zhou help 1642985c29cSQiao Zhou If you say yes here you get support for RTC function in Marvell 1652985c29cSQiao Zhou 88PM80x chips. 1662985c29cSQiao Zhou 1672985c29cSQiao Zhou This driver can also be built as a module. If so, the module 1682985c29cSQiao Zhou will be called rtc-88pm80x. 1692985c29cSQiao Zhou 1700b2f6228SArnaud Ebalardconfig RTC_DRV_ABB5ZES3 1710b2f6228SArnaud Ebalard select REGMAP_I2C 1720b2f6228SArnaud Ebalard tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3" 1730b2f6228SArnaud Ebalard help 1740b2f6228SArnaud Ebalard If you say yes here you get support for the Abracon 1750b2f6228SArnaud Ebalard AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip. 1760b2f6228SArnaud Ebalard 1770b2f6228SArnaud Ebalard This driver can also be built as a module. If so, the module 1780b2f6228SArnaud Ebalard will be called rtc-ab-b5ze-s3. 1790b2f6228SArnaud Ebalard 1804d61ff6bSPhilippe De Muyterconfig RTC_DRV_ABX80X 1814d61ff6bSPhilippe De Muyter tristate "Abracon ABx80x" 1824d61ff6bSPhilippe De Muyter help 1834d61ff6bSPhilippe De Muyter If you say yes here you get support for Abracon AB080X and AB180X 1844d61ff6bSPhilippe De Muyter families of ultra-low-power battery- and capacitor-backed real-time 1854d61ff6bSPhilippe De Muyter clock chips. 1864d61ff6bSPhilippe De Muyter 1874d61ff6bSPhilippe De Muyter This driver can also be built as a module. If so, the module 1884d61ff6bSPhilippe De Muyter will be called rtc-abx80x. 1894d61ff6bSPhilippe De Muyter 190d00a18a4SChen-Yu Tsaiconfig RTC_DRV_AC100 191d00a18a4SChen-Yu Tsai tristate "X-Powers AC100" 192d00a18a4SChen-Yu Tsai depends on MFD_AC100 193d00a18a4SChen-Yu Tsai help 194d00a18a4SChen-Yu Tsai If you say yes here you get support for the real-time clock found 195d00a18a4SChen-Yu Tsai in X-Powers AC100 family peripheral ICs. 196d00a18a4SChen-Yu Tsai 197d00a18a4SChen-Yu Tsai This driver can also be built as a module. If so, the module 198d00a18a4SChen-Yu Tsai will be called rtc-ac100. 199d00a18a4SChen-Yu Tsai 200*c4f07eceSBrian Norrisconfig RTC_DRV_BRCMSTB 201*c4f07eceSBrian Norris tristate "Broadcom STB wake-timer" 202*c4f07eceSBrian Norris depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST 203*c4f07eceSBrian Norris default ARCH_BRCMSTB || BMIPS_GENERIC 204*c4f07eceSBrian Norris help 205*c4f07eceSBrian Norris If you say yes here you get support for the wake-timer found on 206*c4f07eceSBrian Norris Broadcom STB SoCs (BCM7xxx). 207*c4f07eceSBrian Norris 208*c4f07eceSBrian Norris This driver can also be built as a module. If so, the module will 209*c4f07eceSBrian Norris be called rtc-brcmstb-waketimer. 210*c4f07eceSBrian Norris 211b4506261SLaxman Dewanganconfig RTC_DRV_AS3722 212b4506261SLaxman Dewangan tristate "ams AS3722 RTC driver" 213b4506261SLaxman Dewangan depends on MFD_AS3722 214b4506261SLaxman Dewangan help 215b4506261SLaxman Dewangan If you say yes here you get support for the RTC of ams AS3722 PMIC 216b4506261SLaxman Dewangan chips. 217b4506261SLaxman Dewangan 218b4506261SLaxman Dewangan This driver can also be built as a module. If so, the module 219b4506261SLaxman Dewangan will be called rtc-as3722. 220b4506261SLaxman Dewangan 22109a21e56SAlessandro Zummoconfig RTC_DRV_DS1307 22278aaa06dSAlexandre Belloni tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025, ISL12057" 22309a21e56SAlessandro Zummo help 22409a21e56SAlessandro Zummo If you say yes here you get support for various compatible RTC 22509a21e56SAlessandro Zummo chips (often with battery backup) connected with I2C. This driver 22609a21e56SAlessandro Zummo should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00, 22778aaa06dSAlexandre Belloni EPSON RX-8025, Intersil ISL12057 and probably other chips. In some 22878aaa06dSAlexandre Belloni cases the RTC must already have been initialized (by manufacturing or 22978aaa06dSAlexandre Belloni a bootloader). 23009a21e56SAlessandro Zummo 23109a21e56SAlessandro Zummo The first seven registers on these chips hold an RTC, and other 23209a21e56SAlessandro Zummo registers may add features such as NVRAM, a trickle charger for 233682d73f6SDavid Brownell the RTC/NVRAM backup power, and alarms. NVRAM is visible in 234682d73f6SDavid Brownell sysfs, but other chip features may not be available. 23509a21e56SAlessandro Zummo 23609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 23709a21e56SAlessandro Zummo will be called rtc-ds1307. 23809a21e56SAlessandro Zummo 239445c0207SAkinobu Mitaconfig RTC_DRV_DS1307_HWMON 240445c0207SAkinobu Mita bool "HWMON support for rtc-ds1307" 241445c0207SAkinobu Mita depends on RTC_DRV_DS1307 && HWMON 242445c0207SAkinobu Mita depends on !(RTC_DRV_DS1307=y && HWMON=m) 243445c0207SAkinobu Mita default y 244445c0207SAkinobu Mita help 245445c0207SAkinobu Mita Say Y here if you want to expose temperature sensor data on 246445c0207SAkinobu Mita rtc-ds1307 (only DS3231) 247445c0207SAkinobu Mita 24850d6c0eaSAlexandre Belloniconfig RTC_DRV_DS1307_CENTURY 24950d6c0eaSAlexandre Belloni bool "Century bit support for rtc-ds1307" 25050d6c0eaSAlexandre Belloni depends on RTC_DRV_DS1307 25150d6c0eaSAlexandre Belloni default n 25250d6c0eaSAlexandre Belloni help 25350d6c0eaSAlexandre Belloni The DS1307 driver suffered from a bug where it was enabling the 25450d6c0eaSAlexandre Belloni century bit inconditionnally but never used it when reading the time. 25550d6c0eaSAlexandre Belloni It made the driver unable to support dates beyond 2099. 25650d6c0eaSAlexandre Belloni Setting this option will add proper support for the century bit but if 25750d6c0eaSAlexandre Belloni the time was previously set using a kernel predating this option, 25850d6c0eaSAlexandre Belloni reading the date will return a date in the next century. 25950d6c0eaSAlexandre Belloni To solve that, you could boot a kernel without this option set, set 26050d6c0eaSAlexandre Belloni the RTC date and then boot a kernel with this option set. 26150d6c0eaSAlexandre Belloni 262bf4994d7SScott Woodconfig RTC_DRV_DS1374 26309b6bdb3SAlessandro Zummo tristate "Dallas/Maxim DS1374" 264bf4994d7SScott Wood help 265bf4994d7SScott Wood If you say yes here you get support for Dallas Semiconductor 266bf4994d7SScott Wood DS1374 real-time clock chips. If an interrupt is associated 267bf4994d7SScott Wood with the device, the alarm functionality is supported. 268bf4994d7SScott Wood 269bf4994d7SScott Wood This driver can also be built as a module. If so, the module 270bf4994d7SScott Wood will be called rtc-ds1374. 271bf4994d7SScott Wood 272920f91e5SSøren Andersenconfig RTC_DRV_DS1374_WDT 273920f91e5SSøren Andersen bool "Dallas/Maxim DS1374 watchdog timer" 274920f91e5SSøren Andersen depends on RTC_DRV_DS1374 275920f91e5SSøren Andersen help 276920f91e5SSøren Andersen If you say Y here you will get support for the 277920f91e5SSøren Andersen watchdog timer in the Dallas Semiconductor DS1374 278920f91e5SSøren Andersen real-time clock chips. 279920f91e5SSøren Andersen 28009a21e56SAlessandro Zummoconfig RTC_DRV_DS1672 28109a21e56SAlessandro Zummo tristate "Dallas/Maxim DS1672" 28209a21e56SAlessandro Zummo help 28309a21e56SAlessandro Zummo If you say yes here you get support for the 28409a21e56SAlessandro Zummo Dallas/Maxim DS1672 timekeeping chip. 28509a21e56SAlessandro Zummo 28609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 28709a21e56SAlessandro Zummo will be called rtc-ds1672. 28809a21e56SAlessandro Zummo 289dcaf0384SHeiko Stuebnerconfig RTC_DRV_HYM8563 290dcaf0384SHeiko Stuebner tristate "Haoyu Microelectronics HYM8563" 2913783055eSAlexandre Belloni depends on OF 292dcaf0384SHeiko Stuebner help 293dcaf0384SHeiko Stuebner Say Y to enable support for the HYM8563 I2C RTC chip. Apart 294dcaf0384SHeiko Stuebner from the usual rtc functions it provides a clock output of 295dcaf0384SHeiko Stuebner up to 32kHz. 296dcaf0384SHeiko Stuebner 297dcaf0384SHeiko Stuebner This driver can also be built as a module. If so, the module 298dcaf0384SHeiko Stuebner will be called rtc-hym8563. 299dcaf0384SHeiko Stuebner 30038ae176eSKim, Miloconfig RTC_DRV_LP8788 30138ae176eSKim, Milo tristate "TI LP8788 RTC driver" 30238ae176eSKim, Milo depends on MFD_LP8788 30338ae176eSKim, Milo help 30438ae176eSKim, Milo Say Y to enable support for the LP8788 RTC/ALARM driver. 30538ae176eSKim, Milo 30609a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900 30709b6bdb3SAlessandro Zummo tristate "Maxim MAX6900" 30809a21e56SAlessandro Zummo help 30909a21e56SAlessandro Zummo If you say yes here you will get support for the 31009a21e56SAlessandro Zummo Maxim MAX6900 I2C RTC chip. 31109a21e56SAlessandro Zummo 31209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 31309a21e56SAlessandro Zummo will be called rtc-max6900. 31409a21e56SAlessandro Zummo 31594c01ab6SStephen Warrenconfig RTC_DRV_MAX8907 31694c01ab6SStephen Warren tristate "Maxim MAX8907" 317959df777SKrzysztof Kozlowski depends on MFD_MAX8907 || COMPILE_TEST 31894c01ab6SStephen Warren help 31994c01ab6SStephen Warren If you say yes here you will get support for the 32094c01ab6SStephen Warren RTC of Maxim MAX8907 PMIC. 32194c01ab6SStephen Warren 32294c01ab6SStephen Warren This driver can also be built as a module. If so, the module 32394c01ab6SStephen Warren will be called rtc-max8907. 32494c01ab6SStephen Warren 325a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925 326a39069f6SHaojian Zhuang tristate "Maxim MAX8925" 327a39069f6SHaojian Zhuang depends on MFD_MAX8925 328a39069f6SHaojian Zhuang help 329a39069f6SHaojian Zhuang If you say yes here you will get support for the 330a39069f6SHaojian Zhuang RTC of Maxim MAX8925 PMIC. 331a39069f6SHaojian Zhuang 332a39069f6SHaojian Zhuang This driver can also be built as a module. If so, the module 333a39069f6SHaojian Zhuang will be called rtc-max8925. 334a39069f6SHaojian Zhuang 3359b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998 3369b16c0a4SJoonyoung Shim tristate "Maxim MAX8998" 3379b16c0a4SJoonyoung Shim depends on MFD_MAX8998 3389b16c0a4SJoonyoung Shim help 3399b16c0a4SJoonyoung Shim If you say yes here you will get support for the 3409b16c0a4SJoonyoung Shim RTC of Maxim MAX8998 PMIC. 3419b16c0a4SJoonyoung Shim 3429b16c0a4SJoonyoung Shim This driver can also be built as a module. If so, the module 3439b16c0a4SJoonyoung Shim will be called rtc-max8998. 3449b16c0a4SJoonyoung Shim 3455e0b2704SJonghwa Leeconfig RTC_DRV_MAX8997 3465e0b2704SJonghwa Lee tristate "Maxim MAX8997" 3475e0b2704SJonghwa Lee depends on MFD_MAX8997 3485e0b2704SJonghwa Lee help 3495e0b2704SJonghwa Lee If you say yes here you will get support for the 3505e0b2704SJonghwa Lee RTC of Maxim MAX8997 PMIC. 3515e0b2704SJonghwa Lee 3525e0b2704SJonghwa Lee This driver can also be built as a module. If so, the module 3535e0b2704SJonghwa Lee will be called rtc-max8997. 3545e0b2704SJonghwa Lee 355fca1dd03SJonghwa Leeconfig RTC_DRV_MAX77686 356fca1dd03SJonghwa Lee tristate "Maxim MAX77686" 357959df777SKrzysztof Kozlowski depends on MFD_MAX77686 || MFD_MAX77620 || COMPILE_TEST 358fca1dd03SJonghwa Lee help 359fca1dd03SJonghwa Lee If you say yes here you will get support for the 360726fe738SLaxman Dewangan RTC of Maxim MAX77686/MAX77620/MAX77802 PMIC. 361fca1dd03SJonghwa Lee 362fca1dd03SJonghwa Lee This driver can also be built as a module. If so, the module 363fca1dd03SJonghwa Lee will be called rtc-max77686. 364fca1dd03SJonghwa Lee 3653ca1e326SChris Zhongconfig RTC_DRV_RK808 3665d2fd5c7SWadim Egorov tristate "Rockchip RK808/RK818 RTC" 3673ca1e326SChris Zhong depends on MFD_RK808 3683ca1e326SChris Zhong help 3693ca1e326SChris Zhong If you say yes here you will get support for the 3705d2fd5c7SWadim Egorov RTC of RK808 and RK818 PMIC. 3713ca1e326SChris Zhong 3723ca1e326SChris Zhong This driver can also be built as a module. If so, the module 3733ca1e326SChris Zhong will be called rk808-rtc. 3743ca1e326SChris Zhong 37509a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372 3765d4529beSPaul Mundt tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A" 37709a21e56SAlessandro Zummo help 37809a21e56SAlessandro Zummo If you say yes here you get support for the 3795d4529beSPaul Mundt Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips. 38009a21e56SAlessandro Zummo 38109a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 38209a21e56SAlessandro Zummo will be called rtc-rs5c372. 38309a21e56SAlessandro Zummo 38409a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208 38509b6bdb3SAlessandro Zummo tristate "Intersil ISL1208" 38609a21e56SAlessandro Zummo help 38709a21e56SAlessandro Zummo If you say yes here you get support for the 38809b6bdb3SAlessandro Zummo Intersil ISL1208 RTC chip. 38909a21e56SAlessandro Zummo 39009a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 39109a21e56SAlessandro Zummo will be called rtc-isl1208. 39209a21e56SAlessandro Zummo 393d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022 394d6c7428fSRoman Fietze tristate "Intersil ISL12022" 395d6c7428fSRoman Fietze help 396d6c7428fSRoman Fietze If you say yes here you get support for the 397d6c7428fSRoman Fietze Intersil ISL12022 RTC chip. 398d6c7428fSRoman Fietze 399d6c7428fSRoman Fietze This driver can also be built as a module. If so, the module 400d6c7428fSRoman Fietze will be called rtc-isl12022. 401d6c7428fSRoman Fietze 40209a21e56SAlessandro Zummoconfig RTC_DRV_X1205 40309a21e56SAlessandro Zummo tristate "Xicor/Intersil X1205" 40409a21e56SAlessandro Zummo help 40509a21e56SAlessandro Zummo If you say yes here you get support for the 40609a21e56SAlessandro Zummo Xicor/Intersil X1205 RTC chip. 40709a21e56SAlessandro Zummo 40809a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 40909a21e56SAlessandro Zummo will be called rtc-x1205. 41009a21e56SAlessandro Zummo 411f803f0d0SThierry Redingconfig RTC_DRV_PCF8523 412f803f0d0SThierry Reding tristate "NXP PCF8523" 413f803f0d0SThierry Reding help 414f803f0d0SThierry Reding If you say yes here you get support for the NXP PCF8523 RTC 415f803f0d0SThierry Reding chips. 416f803f0d0SThierry Reding 417f803f0d0SThierry Reding This driver can also be built as a module. If so, the module 418f803f0d0SThierry Reding will be called rtc-pcf8523. 419f803f0d0SThierry Reding 420d084885eSSoren Brinkmannconfig RTC_DRV_PCF85063 421d084885eSSoren Brinkmann tristate "NXP PCF85063" 422d084885eSSoren Brinkmann help 423d084885eSSoren Brinkmann If you say yes here you get support for the PCF85063 RTC chip 424d084885eSSoren Brinkmann 425d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 426d084885eSSoren Brinkmann will be called rtc-pcf85063. 427d084885eSSoren Brinkmann 42809a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563 42909a21e56SAlessandro Zummo tristate "Philips PCF8563/Epson RTC8564" 43009a21e56SAlessandro Zummo help 43109a21e56SAlessandro Zummo If you say yes here you get support for the 43209a21e56SAlessandro Zummo Philips PCF8563 RTC chip. The Epson RTC8564 43309a21e56SAlessandro Zummo should work as well. 43409a21e56SAlessandro Zummo 43509a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 43609a21e56SAlessandro Zummo will be called rtc-pcf8563. 43709a21e56SAlessandro Zummo 43809a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583 43909a21e56SAlessandro Zummo tristate "Philips PCF8583" 44009a21e56SAlessandro Zummo help 44109a21e56SAlessandro Zummo If you say yes here you get support for the Philips PCF8583 44209a21e56SAlessandro Zummo RTC chip found on Acorn RiscPCs. This driver supports the 44309a21e56SAlessandro Zummo platform specific method of retrieving the current year from 44409a21e56SAlessandro Zummo the RTC's SRAM. It will work on other platforms with the same 44509a21e56SAlessandro Zummo chip, but the year will probably have to be tweaked. 44609a21e56SAlessandro Zummo 44709a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 44809a21e56SAlessandro Zummo will be called rtc-pcf8583. 44909a21e56SAlessandro Zummo 450caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80 4516b1a5235SWolfram Sang tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible" 452caaff562SAtsushi Nemoto help 453d3a126fcSSteven A. Falco If you say Y here you will get support for the ST M41T60 454d3a126fcSSteven A. Falco and M41T80 RTC chips series. Currently, the following chips are 455f30281f4SDaniel Glockner supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84, 4566b1a5235SWolfram Sang M41ST85, M41ST87, and MicroCrystal RV4162. 457caaff562SAtsushi Nemoto 458caaff562SAtsushi Nemoto This driver can also be built as a module. If so, the module 459caaff562SAtsushi Nemoto will be called rtc-m41t80. 460caaff562SAtsushi Nemoto 461617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT 462d3a126fcSSteven A. Falco bool "ST M41T65/M41T80 series RTC watchdog timer" 463617780d2SAtsushi Nemoto depends on RTC_DRV_M41T80 464617780d2SAtsushi Nemoto help 465617780d2SAtsushi Nemoto If you say Y here you will get support for the 466d3a126fcSSteven A. Falco watchdog timer in the ST M41T60 and M41T80 RTC chips series. 467617780d2SAtsushi Nemoto 4681ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K 4691ce7c83fSPiotr Ziecik tristate "TI BQ32000" 4701ce7c83fSPiotr Ziecik help 4711ce7c83fSPiotr Ziecik If you say Y here you will get support for the TI 4721ce7c83fSPiotr Ziecik BQ32000 I2C RTC chip. 4731ce7c83fSPiotr Ziecik 4741ce7c83fSPiotr Ziecik This driver can also be built as a module. If so, the module 4751ce7c83fSPiotr Ziecik will be called rtc-bq32k. 4761ce7c83fSPiotr Ziecik 477afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM 478afd8d0f9SDavid Brownell tristate "TI DaVinci DM355 EVM RTC" 479afd8d0f9SDavid Brownell depends on MFD_DM355EVM_MSP 480afd8d0f9SDavid Brownell help 481afd8d0f9SDavid Brownell Supports the RTC firmware in the MSP430 on the DM355 EVM. 482afd8d0f9SDavid Brownell 4830c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330 4846341e62bSChristoph Jaeger bool "TI TWL92330/Menelaus" 485bb35fb20SJan Engelhardt depends on MENELAUS 4860c4a59feSTony Lindgren help 4870c4a59feSTony Lindgren If you say yes here you get support for the RTC on the 48801dd2fbfSMatt LaPlante TWL92330 "Menelaus" power management chip, used with OMAP2 4890c4a59feSTony Lindgren platforms. The support is integrated with the rest of 4900c4a59feSTony Lindgren the Menelaus driver; it's not separate module. 4910c4a59feSTony Lindgren 492f96411abSDavid Brownellconfig RTC_DRV_TWL4030 493a6b49ffdSBalaji T K tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0" 4946b8029faSVenu Byravarasu depends on TWL4030_CORE 4951c02cbfeSNicolae Rosia depends on OF 496f96411abSDavid Brownell help 497f96411abSDavid Brownell If you say yes here you get support for the RTC on the 498a6b49ffdSBalaji T K TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms. 499f96411abSDavid Brownell 500f96411abSDavid Brownell This driver can also be built as a module. If so, the module 501a6b49ffdSBalaji T K will be called rtc-twl. 502f96411abSDavid Brownell 503d084885eSSoren Brinkmannconfig RTC_DRV_PALMAS 504d084885eSSoren Brinkmann tristate "TI Palmas RTC driver" 505d084885eSSoren Brinkmann depends on MFD_PALMAS 506d084885eSSoren Brinkmann help 507d084885eSSoren Brinkmann If you say yes here you get support for the RTC of TI PALMA series PMIC 508d084885eSSoren Brinkmann chips. 509d084885eSSoren Brinkmann 510d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 511d084885eSSoren Brinkmann will be called rtc-palma. 512d084885eSSoren Brinkmann 513dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X 514dc59ed38SLaxman Dewangan tristate "TI TPS6586X RTC driver" 515dc59ed38SLaxman Dewangan depends on MFD_TPS6586X 516dc59ed38SLaxman Dewangan help 517a895d57dSMasanari Iida TI Power Management IC TPS6586X supports RTC functionality 518dc59ed38SLaxman Dewangan along with alarm. This driver supports the RTC driver for 519dc59ed38SLaxman Dewangan the TPS6586X RTC module. 520dc59ed38SLaxman Dewangan 5210e783980SVenu Byravarasuconfig RTC_DRV_TPS65910 5220e783980SVenu Byravarasu tristate "TI TPS65910 RTC driver" 5230e783980SVenu Byravarasu depends on RTC_CLASS && MFD_TPS65910 5240e783980SVenu Byravarasu help 5250e783980SVenu Byravarasu If you say yes here you get support for the RTC on the 5260e783980SVenu Byravarasu TPS65910 chips. 5270e783980SVenu Byravarasu 5280e783980SVenu Byravarasu This driver can also be built as a module. If so, the module 5290e783980SVenu Byravarasu will be called rtc-tps65910. 5300e783980SVenu Byravarasu 53136d61824SLaxman Dewanganconfig RTC_DRV_TPS80031 53236d61824SLaxman Dewangan tristate "TI TPS80031/TPS80032 RTC driver" 53336d61824SLaxman Dewangan depends on MFD_TPS80031 53436d61824SLaxman Dewangan help 535a895d57dSMasanari Iida TI Power Management IC TPS80031 supports RTC functionality 53636d61824SLaxman Dewangan along with alarm. This driver supports the RTC driver for 53736d61824SLaxman Dewangan the TPS80031 RTC module. 53836d61824SLaxman Dewangan 53990829c08SVenu Byravarasuconfig RTC_DRV_RC5T583 54090829c08SVenu Byravarasu tristate "RICOH 5T583 RTC driver" 54190829c08SVenu Byravarasu depends on MFD_RC5T583 54290829c08SVenu Byravarasu help 54390829c08SVenu Byravarasu If you say yes here you get support for the RTC on the 54490829c08SVenu Byravarasu RICOH 5T583 chips. 54590829c08SVenu Byravarasu 54690829c08SVenu Byravarasu This driver can also be built as a module. If so, the module 54790829c08SVenu Byravarasu will be called rtc-rc5t583. 54890829c08SVenu Byravarasu 549c46288b0SByron Bradleyconfig RTC_DRV_S35390A 550c46288b0SByron Bradley tristate "Seiko Instruments S-35390A" 551d479540dSRandy Dunlap select BITREVERSE 552c46288b0SByron Bradley help 553c46288b0SByron Bradley If you say yes here you will get support for the Seiko 554c46288b0SByron Bradley Instruments S-35390A. 555c46288b0SByron Bradley 556c46288b0SByron Bradley This driver can also be built as a module. If so the module 557c46288b0SByron Bradley will be called rtc-s35390a. 558c46288b0SByron Bradley 559c6d8f400SSergey Lapinconfig RTC_DRV_FM3130 560c6d8f400SSergey Lapin tristate "Ramtron FM3130" 561c6d8f400SSergey Lapin help 562c6d8f400SSergey Lapin If you say Y here you will get support for the 563c6d8f400SSergey Lapin Ramtron FM3130 RTC chips. 564c6d8f400SSergey Lapin Ramtron FM3130 is a chip with two separate devices inside, 565c6d8f400SSergey Lapin RTC clock and FRAM. This driver provides only RTC functionality. 566c6d8f400SSergey Lapin 567c6d8f400SSergey Lapin This driver can also be built as a module. If so the module 568c6d8f400SSergey Lapin will be called rtc-fm3130. 569c6d8f400SSergey Lapin 570ed13d89bSAkshay Bhatconfig RTC_DRV_RX8010 571ed13d89bSAkshay Bhat tristate "Epson RX8010SJ" 572ed13d89bSAkshay Bhat depends on I2C 573ed13d89bSAkshay Bhat help 574ed13d89bSAkshay Bhat If you say yes here you get support for the Epson RX8010SJ RTC 575ed13d89bSAkshay Bhat chip. 576ed13d89bSAkshay Bhat 577ed13d89bSAkshay Bhat This driver can also be built as a module. If so, the module 578ed13d89bSAkshay Bhat will be called rtc-rx8010. 579ed13d89bSAkshay Bhat 580a7fa9851SMartyn Welchconfig RTC_DRV_RX8581 581a7fa9851SMartyn Welch tristate "Epson RX-8581" 582a7fa9851SMartyn Welch help 583a7fa9851SMartyn Welch If you say yes here you will get support for the Epson RX-8581. 584a7fa9851SMartyn Welch 585a7fa9851SMartyn Welch This driver can also be built as a module. If so the module 586a7fa9851SMartyn Welch will be called rtc-rx8581. 587a7fa9851SMartyn Welch 5883c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025 5893c2b9075SWolfgang Grandegger tristate "Epson RX-8025SA/NB" 5903c2b9075SWolfgang Grandegger help 5913c2b9075SWolfgang Grandegger If you say yes here you get support for the Epson 5923c2b9075SWolfgang Grandegger RX-8025SA/NB RTC chips. 5933c2b9075SWolfgang Grandegger 5943c2b9075SWolfgang Grandegger This driver can also be built as a module. If so, the module 5953c2b9075SWolfgang Grandegger will be called rtc-rx8025. 5963c2b9075SWolfgang Grandegger 597ae3551f9SMike Rapoportconfig RTC_DRV_EM3027 598ae3551f9SMike Rapoport tristate "EM Microelectronic EM3027" 599ae3551f9SMike Rapoport help 600ae3551f9SMike Rapoport If you say yes here you get support for the EM 601ae3551f9SMike Rapoport Microelectronic EM3027 RTC chips. 602ae3551f9SMike Rapoport 603ae3551f9SMike Rapoport This driver can also be built as a module. If so, the module 604ae3551f9SMike Rapoport will be called rtc-em3027. 605ae3551f9SMike Rapoport 6061e3929efSAlexandre Belloniconfig RTC_DRV_RV8803 60734166a00SBenoît Thébaudeau tristate "Micro Crystal RV8803, Epson RX8900" 6081e3929efSAlexandre Belloni help 60934166a00SBenoît Thébaudeau If you say yes here you get support for the Micro Crystal RV8803 and 61034166a00SBenoît Thébaudeau Epson RX8900 RTC chips. 6111e3929efSAlexandre Belloni 6121e3929efSAlexandre Belloni This driver can also be built as a module. If so, the module 6131e3929efSAlexandre Belloni will be called rtc-rv8803. 6141e3929efSAlexandre Belloni 6155bccae6eSSangbeom Kimconfig RTC_DRV_S5M 6160c5deb1eSKrzysztof Kozlowski tristate "Samsung S2M/S5M series" 617959df777SKrzysztof Kozlowski depends on MFD_SEC_CORE || COMPILE_TEST 618959df777SKrzysztof Kozlowski select REGMAP_IRQ 6195bccae6eSSangbeom Kim help 6205bccae6eSSangbeom Kim If you say yes here you will get support for the 6210c5deb1eSKrzysztof Kozlowski RTC of Samsung S2MPS14 and S5M PMIC series. 6225bccae6eSSangbeom Kim 6235bccae6eSSangbeom Kim This driver can also be built as a module. If so, the module 6245bccae6eSSangbeom Kim will be called rtc-s5m. 6255bccae6eSSangbeom Kim 626bb35fb20SJan Engelhardtendif # I2C 627bb35fb20SJan Engelhardt 62809a21e56SAlessandro Zummocomment "SPI RTC drivers" 629bb35fb20SJan Engelhardt 630bb35fb20SJan Engelhardtif SPI_MASTER 63109a21e56SAlessandro Zummo 63274d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93 63374d34d4bSVoss, Nikolaus tristate "ST M41T93" 63474d34d4bSVoss, Nikolaus help 63574d34d4bSVoss, Nikolaus If you say yes here you will get support for the 63674d34d4bSVoss, Nikolaus ST M41T93 SPI RTC chip. 63774d34d4bSVoss, Nikolaus 63874d34d4bSVoss, Nikolaus This driver can also be built as a module. If so, the module 63974d34d4bSVoss, Nikolaus will be called rtc-m41t93. 64074d34d4bSVoss, Nikolaus 6418fc2c767SKim B. Heinoconfig RTC_DRV_M41T94 6428fc2c767SKim B. Heino tristate "ST M41T94" 6438fc2c767SKim B. Heino help 6448fc2c767SKim B. Heino If you say yes here you will get support for the 6458fc2c767SKim B. Heino ST M41T94 SPI RTC chip. 6468fc2c767SKim B. Heino 6478fc2c767SKim B. Heino This driver can also be built as a module. If so, the module 6488fc2c767SKim B. Heino will be called rtc-m41t94. 6498fc2c767SKim B. Heino 650d25a5ed3SSergey Yanovichconfig RTC_DRV_DS1302 651d25a5ed3SSergey Yanovich tristate "Dallas/Maxim DS1302" 652d25a5ed3SSergey Yanovich depends on SPI 653d25a5ed3SSergey Yanovich help 654d25a5ed3SSergey Yanovich If you say yes here you get support for the Dallas DS1302 RTC chips. 655d25a5ed3SSergey Yanovich 656d25a5ed3SSergey Yanovich This driver can also be built as a module. If so, the module 657d25a5ed3SSergey Yanovich will be called rtc-ds1302. 658d25a5ed3SSergey Yanovich 65953e84b67SDavid Brownellconfig RTC_DRV_DS1305 66053e84b67SDavid Brownell tristate "Dallas/Maxim DS1305/DS1306" 66153e84b67SDavid Brownell help 66253e84b67SDavid Brownell Select this driver to get support for the Dallas/Maxim DS1305 66353e84b67SDavid Brownell and DS1306 real time clock chips. These support a trickle 66453e84b67SDavid Brownell charger, alarms, and NVRAM in addition to the clock. 66553e84b67SDavid Brownell 66653e84b67SDavid Brownell This driver can also be built as a module. If so, the module 66753e84b67SDavid Brownell will be called rtc-ds1305. 66853e84b67SDavid Brownell 6691d6316f5SRaghavendra Ganigaconfig RTC_DRV_DS1343 6700dd449b1SRaghavendra Ganiga select REGMAP_SPI 6711d6316f5SRaghavendra Ganiga tristate "Dallas/Maxim DS1343/DS1344" 6721d6316f5SRaghavendra Ganiga help 6731d6316f5SRaghavendra Ganiga If you say yes here you get support for the 6741d6316f5SRaghavendra Ganiga Dallas/Maxim DS1343 and DS1344 real time clock chips. 6751d6316f5SRaghavendra Ganiga Support for trickle charger, alarm is provided. 6761d6316f5SRaghavendra Ganiga 6771d6316f5SRaghavendra Ganiga This driver can also be built as a module. If so, the module 6781d6316f5SRaghavendra Ganiga will be called rtc-ds1343. 6791d6316f5SRaghavendra Ganiga 680617b26a0SRaghavendra Ganigaconfig RTC_DRV_DS1347 681ee85bb5bSRaghavendra Ganiga select REGMAP_SPI 682617b26a0SRaghavendra Ganiga tristate "Dallas/Maxim DS1347" 683617b26a0SRaghavendra Ganiga help 684617b26a0SRaghavendra Ganiga If you say yes here you get support for the 685617b26a0SRaghavendra Ganiga Dallas/Maxim DS1347 chips. 686617b26a0SRaghavendra Ganiga 687617b26a0SRaghavendra Ganiga This driver only supports the RTC feature, and not other chip 688617b26a0SRaghavendra Ganiga features such as alarms. 689617b26a0SRaghavendra Ganiga 690617b26a0SRaghavendra Ganiga This driver can also be built as a module. If so, the module 691617b26a0SRaghavendra Ganiga will be called rtc-ds1347. 692617b26a0SRaghavendra Ganiga 69306de1808SMark Jacksonconfig RTC_DRV_DS1390 69406de1808SMark Jackson tristate "Dallas/Maxim DS1390/93/94" 69506de1808SMark Jackson help 6967b9b2ef1SAlessandro Zummo If you say yes here you get support for the 6977b9b2ef1SAlessandro Zummo Dallas/Maxim DS1390/93/94 chips. 69806de1808SMark Jackson 699fa395fb8SIvan Grimaldi This driver supports the RTC feature and trickle charging but not 700fa395fb8SIvan Grimaldi other chip features such as alarms. 70106de1808SMark Jackson 70206de1808SMark Jackson This driver can also be built as a module. If so, the module 70306de1808SMark Jackson will be called rtc-ds1390. 70406de1808SMark Jackson 70506776c89SVenkat Prashanth B Uconfig RTC_DRV_MAX6916 70606776c89SVenkat Prashanth B U tristate "Maxim MAX6916" 70706776c89SVenkat Prashanth B U help 70806776c89SVenkat Prashanth B U If you say yes here you will get support for the 70906776c89SVenkat Prashanth B U Maxim MAX6916 SPI RTC chip. 71006776c89SVenkat Prashanth B U 71106776c89SVenkat Prashanth B U This driver only supports the RTC feature, and not other chip 71206776c89SVenkat Prashanth B U features such as alarms. 71306776c89SVenkat Prashanth B U 71406776c89SVenkat Prashanth B U This driver can also be built as a module. If so, the module 71506776c89SVenkat Prashanth B U will be called rtc-max6916. 71606776c89SVenkat Prashanth B U 7172805b969SMagnus Dammconfig RTC_DRV_R9701 7182805b969SMagnus Damm tristate "Epson RTC-9701JE" 7192805b969SMagnus Damm help 7202805b969SMagnus Damm If you say yes here you will get support for the 7212805b969SMagnus Damm Epson RTC-9701JE SPI RTC chip. 7222805b969SMagnus Damm 7232805b969SMagnus Damm This driver can also be built as a module. If so, the module 7242805b969SMagnus Damm will be called rtc-r9701. 7252805b969SMagnus Damm 726d084885eSSoren Brinkmannconfig RTC_DRV_RX4581 727d084885eSSoren Brinkmann tristate "Epson RX-4581" 728d084885eSSoren Brinkmann help 729d084885eSSoren Brinkmann If you say yes here you will get support for the Epson RX-4581. 730d084885eSSoren Brinkmann 731d084885eSSoren Brinkmann This driver can also be built as a module. If so the module 732d084885eSSoren Brinkmann will be called rtc-rx4581. 733d084885eSSoren Brinkmann 734d084885eSSoren Brinkmannconfig RTC_DRV_RX6110 735d084885eSSoren Brinkmann tristate "Epson RX-6110" 736d084885eSSoren Brinkmann select REGMAP_SPI 737d084885eSSoren Brinkmann help 738d084885eSSoren Brinkmann If you say yes here you will get support for the Epson RX-6610. 739d084885eSSoren Brinkmann 740d084885eSSoren Brinkmann This driver can also be built as a module. If so the module 741d084885eSSoren Brinkmann will be called rtc-rx6110. 742d084885eSSoren Brinkmann 74309a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348 74409a21e56SAlessandro Zummo tristate "Ricoh RS5C348A/B" 74509a21e56SAlessandro Zummo help 74609a21e56SAlessandro Zummo If you say yes here you get support for the 74709a21e56SAlessandro Zummo Ricoh RS5C348A and RS5C348B RTC chips. 74809a21e56SAlessandro Zummo 74909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 75009a21e56SAlessandro Zummo will be called rtc-rs5c348. 75109a21e56SAlessandro Zummo 752d084885eSSoren Brinkmannconfig RTC_DRV_MAX6902 753d084885eSSoren Brinkmann tristate "Maxim MAX6902" 754d084885eSSoren Brinkmann help 755d084885eSSoren Brinkmann If you say yes here you will get support for the 756d084885eSSoren Brinkmann Maxim MAX6902 SPI RTC chip. 757d084885eSSoren Brinkmann 758d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 759d084885eSSoren Brinkmann will be called rtc-max6902. 760d084885eSSoren Brinkmann 7617f3923a1SChris Vergesconfig RTC_DRV_PCF2123 7627f3923a1SChris Verges tristate "NXP PCF2123" 7637f3923a1SChris Verges help 7647f3923a1SChris Verges If you say yes here you get support for the NXP PCF2123 7657f3923a1SChris Verges RTC chip. 7667f3923a1SChris Verges 7677f3923a1SChris Verges This driver can also be built as a module. If so, the module 7687f3923a1SChris Verges will be called rtc-pcf2123. 7697f3923a1SChris Verges 7701fcbe42cSJosef Gajdusekconfig RTC_DRV_MCP795 7711fcbe42cSJosef Gajdusek tristate "Microchip MCP795" 7721fcbe42cSJosef Gajdusek help 7731fcbe42cSJosef Gajdusek If you say yes here you will get support for the Microchip MCP795. 7741fcbe42cSJosef Gajdusek 7751fcbe42cSJosef Gajdusek This driver can also be built as a module. If so the module 7761fcbe42cSJosef Gajdusek will be called rtc-mcp795. 7771fcbe42cSJosef Gajdusek 778bb35fb20SJan Engelhardtendif # SPI_MASTER 779bb35fb20SJan Engelhardt 780080481f5SAkinobu Mita# 781080481f5SAkinobu Mita# Helper to resolve issues with configs that have SPI enabled but I2C 782080481f5SAkinobu Mita# modular. See SND_SOC_I2C_AND_SPI for more information 783080481f5SAkinobu Mita# 784080481f5SAkinobu Mitaconfig RTC_I2C_AND_SPI 785080481f5SAkinobu Mita tristate 786080481f5SAkinobu Mita default m if I2C=m 787080481f5SAkinobu Mita default y if I2C=y 788080481f5SAkinobu Mita default y if SPI_MASTER=y 789080481f5SAkinobu Mita select REGMAP_I2C if I2C 790080481f5SAkinobu Mita select REGMAP_SPI if SPI_MASTER 791080481f5SAkinobu Mita 792080481f5SAkinobu Mitacomment "SPI and I2C RTC drivers" 793080481f5SAkinobu Mita 794080481f5SAkinobu Mitaconfig RTC_DRV_DS3232 795080481f5SAkinobu Mita tristate "Dallas/Maxim DS3232/DS3234" 796080481f5SAkinobu Mita depends on RTC_I2C_AND_SPI 797080481f5SAkinobu Mita help 798080481f5SAkinobu Mita If you say yes here you get support for Dallas Semiconductor 799080481f5SAkinobu Mita DS3232 and DS3234 real-time clock chips. If an interrupt is associated 800080481f5SAkinobu Mita with the device, the alarm functionality is supported. 801080481f5SAkinobu Mita 802080481f5SAkinobu Mita This driver can also be built as a module. If so, the module 803080481f5SAkinobu Mita will be called rtc-ds3232. 804080481f5SAkinobu Mita 8059408ec1aSAkinobu Mitaconfig RTC_DRV_PCF2127 8069408ec1aSAkinobu Mita tristate "NXP PCF2127" 8079408ec1aSAkinobu Mita depends on RTC_I2C_AND_SPI 8089408ec1aSAkinobu Mita help 8099408ec1aSAkinobu Mita If you say yes here you get support for the NXP PCF2127/29 RTC 8109408ec1aSAkinobu Mita chips. 8119408ec1aSAkinobu Mita 8129408ec1aSAkinobu Mita This driver can also be built as a module. If so, the module 8139408ec1aSAkinobu Mita will be called rtc-pcf2127. 8149408ec1aSAkinobu Mita 815c2a1c145SMylène Josserandconfig RTC_DRV_RV3029C2 816c2a1c145SMylène Josserand tristate "Micro Crystal RV3029/3049" 817c2a1c145SMylène Josserand depends on RTC_I2C_AND_SPI 818c2a1c145SMylène Josserand help 819c2a1c145SMylène Josserand If you say yes here you get support for the Micro Crystal 820c2a1c145SMylène Josserand RV3029 and RV3049 RTC chips. 821c2a1c145SMylène Josserand 822c2a1c145SMylène Josserand This driver can also be built as a module. If so, the module 823c2a1c145SMylène Josserand will be called rtc-rv3029c2. 824c2a1c145SMylène Josserand 825c2a1c145SMylène Josserandconfig RTC_DRV_RV3029_HWMON 826c2a1c145SMylène Josserand bool "HWMON support for RV3029/3049" 827c2a1c145SMylène Josserand depends on RTC_DRV_RV3029C2 && HWMON 828c2a1c145SMylène Josserand depends on !(RTC_DRV_RV3029C2=y && HWMON=m) 829c2a1c145SMylène Josserand default y 830c2a1c145SMylène Josserand help 831c2a1c145SMylène Josserand Say Y here if you want to expose temperature sensor data on 832c2a1c145SMylène Josserand rtc-rv3029. 833c2a1c145SMylène Josserand 83409a21e56SAlessandro Zummocomment "Platform RTC drivers" 8350c86edc0SAlessandro Zummo 836290cd0f0SChristoph Hellwig# this 'CMOS' RTC driver is arch dependent because it requires 837290cd0f0SChristoph Hellwig# <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a 8387be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device. 8397be2c7c9SDavid Brownell 8407be2c7c9SDavid Brownellconfig RTC_DRV_CMOS 84109a21e56SAlessandro Zummo tristate "PC-style 'CMOS'" 8425ee98ab3SArnd Bergmann depends on X86 || ARM || M32R || PPC || MIPS || SPARC64 || MN10300 843c7500900SDavid Brownell default y if X86 844d6faca40SArnd Bergmann select RTC_MC146818_LIB 8457be2c7c9SDavid Brownell help 8467be2c7c9SDavid Brownell Say "yes" here to get direct support for the real time clock 8477be2c7c9SDavid Brownell found in every PC or ACPI-based system, and some other boards. 8487be2c7c9SDavid Brownell Specifically the original MC146818, compatibles like those in 8497be2c7c9SDavid Brownell PC south bridges, the DS12887 or M48T86, some multifunction 8507be2c7c9SDavid Brownell or LPC bus chips, and so on. 8517be2c7c9SDavid Brownell 8527be2c7c9SDavid Brownell Your system will need to define the platform device used by 8537be2c7c9SDavid Brownell this driver, otherwise it won't be accessible. This means 8547be2c7c9SDavid Brownell you can safely enable this driver if you don't know whether 8557be2c7c9SDavid Brownell or not your board has this kind of hardware. 8567be2c7c9SDavid Brownell 8577be2c7c9SDavid Brownell This driver can also be built as a module. If so, the module 8587be2c7c9SDavid Brownell will be called rtc-cmos. 8597be2c7c9SDavid Brownell 86085d0b3a5SRichard Hendersonconfig RTC_DRV_ALPHA 86185d0b3a5SRichard Henderson bool "Alpha PC-style CMOS" 86285d0b3a5SRichard Henderson depends on ALPHA 863d6faca40SArnd Bergmann select RTC_MC146818_LIB 86485d0b3a5SRichard Henderson default y 86585d0b3a5SRichard Henderson help 86685d0b3a5SRichard Henderson Direct support for the real-time clock found on every Alpha 86785d0b3a5SRichard Henderson system, specifically MC146818 compatibles. If in doubt, say Y. 86885d0b3a5SRichard Henderson 8690146f261SFeng Tangconfig RTC_DRV_VRTC 870933b9463SAlan Cox tristate "Virtual RTC for Intel MID platforms" 871933b9463SAlan Cox depends on X86_INTEL_MID 872933b9463SAlan Cox default y if X86_INTEL_MID 8730146f261SFeng Tang 8740146f261SFeng Tang help 8750146f261SFeng Tang Say "yes" here to get direct support for the real time clock 8760146f261SFeng Tang found on Moorestown platforms. The VRTC is a emulated RTC that 8770146f261SFeng Tang derives its clock source from a real RTC in the PMIC. The MC146818 8780146f261SFeng Tang style programming interface is mostly conserved, but any 8790146f261SFeng Tang updates are done via IPC calls to the system controller FW. 8800146f261SFeng Tang 881537739deSThomas Bogendoerferconfig RTC_DRV_DS1216 882537739deSThomas Bogendoerfer tristate "Dallas DS1216" 883bb35fb20SJan Engelhardt depends on SNI_RM 884537739deSThomas Bogendoerfer help 885537739deSThomas Bogendoerfer If you say yes here you get support for the Dallas DS1216 RTC chips. 886537739deSThomas Bogendoerfer 8875f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286 8885f119f29SThomas Bogendoerfer tristate "Dallas DS1286" 889706b632dSChen Gang depends on HAS_IOMEM 8905f119f29SThomas Bogendoerfer help 8915f119f29SThomas Bogendoerfer If you say yes here you get support for the Dallas DS1286 RTC chips. 8925f119f29SThomas Bogendoerfer 8938f26795aSAndrew Sharpconfig RTC_DRV_DS1511 8948f26795aSAndrew Sharp tristate "Dallas DS1511" 895706b632dSChen Gang depends on HAS_IOMEM 8968f26795aSAndrew Sharp help 8978f26795aSAndrew Sharp If you say yes here you get support for the 8988f26795aSAndrew Sharp Dallas DS1511 timekeeping/watchdog chip. 8998f26795aSAndrew Sharp 9008f26795aSAndrew Sharp This driver can also be built as a module. If so, the module 9018f26795aSAndrew Sharp will be called rtc-ds1511. 9028f26795aSAndrew Sharp 9039bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553 90409b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1553" 905706b632dSChen Gang depends on HAS_IOMEM 9069bf5b4f5SAtsushi Nemoto help 9079bf5b4f5SAtsushi Nemoto If you say yes here you get support for the 90809b6bdb3SAlessandro Zummo Maxim/Dallas DS1553 timekeeping chip. 9099bf5b4f5SAtsushi Nemoto 9109bf5b4f5SAtsushi Nemoto This driver can also be built as a module. If so, the module 9119bf5b4f5SAtsushi Nemoto will be called rtc-ds1553. 9129bf5b4f5SAtsushi Nemoto 913aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685_FAMILY 914aaaf5fbfSJoshua Kinard tristate "Dallas/Maxim DS1685 Family" 915aaaf5fbfSJoshua Kinard help 916aaaf5fbfSJoshua Kinard If you say yes here you get support for the Dallas/Maxim DS1685 917aaaf5fbfSJoshua Kinard family of real time chips. This family includes the DS1685/DS1687, 918aaaf5fbfSJoshua Kinard DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and 919aaaf5fbfSJoshua Kinard DS17885/DS17887 chips. 920aaaf5fbfSJoshua Kinard 921aaaf5fbfSJoshua Kinard This driver can also be built as a module. If so, the module 922aaaf5fbfSJoshua Kinard will be called rtc-ds1685. 923aaaf5fbfSJoshua Kinard 924aaaf5fbfSJoshua Kinardchoice 925aaaf5fbfSJoshua Kinard prompt "Subtype" 926aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY 927aaaf5fbfSJoshua Kinard default RTC_DRV_DS1685 928aaaf5fbfSJoshua Kinard 929aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685 930aaaf5fbfSJoshua Kinard bool "DS1685/DS1687" 931aaaf5fbfSJoshua Kinard help 932aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1685/DS1687 real time 933aaaf5fbfSJoshua Kinard clock chip. 934aaaf5fbfSJoshua Kinard 935aaaf5fbfSJoshua Kinard This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30) 936aaaf5fbfSJoshua Kinard systems, as well as EPPC-405-UC modules by electronic system design 937aaaf5fbfSJoshua Kinard GmbH. 938aaaf5fbfSJoshua Kinard 939aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1689 940aaaf5fbfSJoshua Kinard bool "DS1689/DS1693" 941aaaf5fbfSJoshua Kinard help 942aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1689/DS1693 real time 943aaaf5fbfSJoshua Kinard clock chip. 944aaaf5fbfSJoshua Kinard 945aaaf5fbfSJoshua Kinard This is an older RTC chip, supplanted by the DS1685/DS1687 above, 946aaaf5fbfSJoshua Kinard which supports a few minor features such as Vcc, Vbat, and Power 947aaaf5fbfSJoshua Kinard Cycle counters, plus a customer-specific, 8-byte ROM/Serial number. 948aaaf5fbfSJoshua Kinard 949aaaf5fbfSJoshua Kinard It also works for the even older DS1688/DS1691 RTC chips, which are 950aaaf5fbfSJoshua Kinard virtually the same and carry the same model number. Both chips 951aaaf5fbfSJoshua Kinard have 114 bytes of user NVRAM. 952aaaf5fbfSJoshua Kinard 953aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17285 954aaaf5fbfSJoshua Kinard bool "DS17285/DS17287" 955aaaf5fbfSJoshua Kinard help 956aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17285/DS17287 real time 957aaaf5fbfSJoshua Kinard clock chip. 958aaaf5fbfSJoshua Kinard 959aaaf5fbfSJoshua Kinard This chip features 2kb of extended NV-SRAM. It may possibly be 960aaaf5fbfSJoshua Kinard found in some SGI O2 systems (rare). 961aaaf5fbfSJoshua Kinard 962aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17485 963aaaf5fbfSJoshua Kinard bool "DS17485/DS17487" 964aaaf5fbfSJoshua Kinard help 965aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17485/DS17487 real time 966aaaf5fbfSJoshua Kinard clock chip. 967aaaf5fbfSJoshua Kinard 968aaaf5fbfSJoshua Kinard This chip features 4kb of extended NV-SRAM. 969aaaf5fbfSJoshua Kinard 970aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17885 971aaaf5fbfSJoshua Kinard bool "DS17885/DS17887" 972aaaf5fbfSJoshua Kinard help 973aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17885/DS17887 real time 974aaaf5fbfSJoshua Kinard clock chip. 975aaaf5fbfSJoshua Kinard 976aaaf5fbfSJoshua Kinard This chip features 8kb of extended NV-SRAM. 977aaaf5fbfSJoshua Kinard 978aaaf5fbfSJoshua Kinardendchoice 979aaaf5fbfSJoshua Kinard 980aaaf5fbfSJoshua Kinardconfig RTC_DS1685_PROC_REGS 981aaaf5fbfSJoshua Kinard bool "Display register values in /proc" 982aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY && PROC_FS 983aaaf5fbfSJoshua Kinard help 984aaaf5fbfSJoshua Kinard Enable this to display a readout of all of the RTC registers in 985aaaf5fbfSJoshua Kinard /proc/drivers/rtc. Keep in mind that this can potentially lead 986aaaf5fbfSJoshua Kinard to lost interrupts, as reading Control Register C will clear 987aaaf5fbfSJoshua Kinard all pending IRQ flags. 988aaaf5fbfSJoshua Kinard 989aaaf5fbfSJoshua Kinard Unless you are debugging this driver, choose N. 990aaaf5fbfSJoshua Kinard 991aaaf5fbfSJoshua Kinardconfig RTC_DS1685_SYSFS_REGS 992aaaf5fbfSJoshua Kinard bool "SysFS access to RTC register bits" 993aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY && SYSFS 994aaaf5fbfSJoshua Kinard help 995aaaf5fbfSJoshua Kinard Enable this to provide access to the RTC control register bits 996aaaf5fbfSJoshua Kinard in /sys. Some of the bits are read-write, others are read-only. 997aaaf5fbfSJoshua Kinard 998aaaf5fbfSJoshua Kinard Keep in mind that reading Control C's bits automatically clears 999aaaf5fbfSJoshua Kinard all pending IRQ flags - this can cause lost interrupts. 1000aaaf5fbfSJoshua Kinard 1001aaaf5fbfSJoshua Kinard If you know that you need access to these bits, choose Y, Else N. 1002aaaf5fbfSJoshua Kinard 100309b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742 100409b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1742/1743" 1005706b632dSChen Gang depends on HAS_IOMEM 100609b6bdb3SAlessandro Zummo help 100709b6bdb3SAlessandro Zummo If you say yes here you get support for the 100809b6bdb3SAlessandro Zummo Maxim/Dallas DS1742/1743 timekeeping chip. 100909b6bdb3SAlessandro Zummo 101009b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 101109b6bdb3SAlessandro Zummo will be called rtc-ds1742. 101209b6bdb3SAlessandro Zummo 1013ad0200f7SJean Delvareconfig RTC_DRV_DS2404 1014ad0200f7SJean Delvare tristate "Maxim/Dallas DS2404" 1015ad0200f7SJean Delvare help 1016ad0200f7SJean Delvare If you say yes here you get support for the 1017ad0200f7SJean Delvare Dallas DS2404 RTC chip. 1018ad0200f7SJean Delvare 1019ad0200f7SJean Delvare This driver can also be built as a module. If so, the module 1020ad0200f7SJean Delvare will be called rtc-ds2404. 1021ad0200f7SJean Delvare 1022fef931ffSAshish Jangamconfig RTC_DRV_DA9052 1023fef931ffSAshish Jangam tristate "Dialog DA9052/DA9053 RTC" 1024fef931ffSAshish Jangam depends on PMIC_DA9052 1025fef931ffSAshish Jangam help 1026fef931ffSAshish Jangam Say y here to support the RTC driver for Dialog Semiconductor 1027fef931ffSAshish Jangam DA9052-BC and DA9053-AA/Bx PMICs. 1028fef931ffSAshish Jangam 10296920d996SAshish Jangamconfig RTC_DRV_DA9055 10306920d996SAshish Jangam tristate "Dialog Semiconductor DA9055 RTC" 10316920d996SAshish Jangam depends on MFD_DA9055 10326920d996SAshish Jangam help 10336920d996SAshish Jangam If you say yes here you will get support for the 10346920d996SAshish Jangam RTC of the Dialog DA9055 PMIC. 10356920d996SAshish Jangam 10366920d996SAshish Jangam This driver can also be built as a module. If so, the module 10376920d996SAshish Jangam will be called rtc-da9055 10386920d996SAshish Jangam 1039c2a57550SOpensource [Steve Twiss]config RTC_DRV_DA9063 104080ca3277SS Twiss tristate "Dialog Semiconductor DA9063/DA9062 RTC" 104180ca3277SS Twiss depends on MFD_DA9063 || MFD_DA9062 1042c2a57550SOpensource [Steve Twiss] help 1043c2a57550SOpensource [Steve Twiss] If you say yes here you will get support for the RTC subsystem 104480ca3277SS Twiss for the Dialog Semiconductor PMIC chips DA9063 and DA9062. 1045c2a57550SOpensource [Steve Twiss] 1046c2a57550SOpensource [Steve Twiss] This driver can also be built as a module. If so, the module 1047c2a57550SOpensource [Steve Twiss] will be called "rtc-da9063". 1048c2a57550SOpensource [Steve Twiss] 10495e3fd9e5Sdann frazierconfig RTC_DRV_EFI 10505e3fd9e5Sdann frazier tristate "EFI RTC" 10517efe6659SMatt Fleming depends on EFI && !X86 10525e3fd9e5Sdann frazier help 10535e3fd9e5Sdann frazier If you say yes here you will get support for the EFI 10545e3fd9e5Sdann frazier Real Time Clock. 10555e3fd9e5Sdann frazier 10565e3fd9e5Sdann frazier This driver can also be built as a module. If so, the module 10575e3fd9e5Sdann frazier will be called rtc-efi. 10585e3fd9e5Sdann frazier 105902964115SThomas Hommelconfig RTC_DRV_STK17TA8 106002964115SThomas Hommel tristate "Simtek STK17TA8" 1061706b632dSChen Gang depends on HAS_IOMEM 106202964115SThomas Hommel help 106302964115SThomas Hommel If you say yes here you get support for the 106402964115SThomas Hommel Simtek STK17TA8 timekeeping chip. 106502964115SThomas Hommel 106602964115SThomas Hommel This driver can also be built as a module. If so, the module 106702964115SThomas Hommel will be called rtc-stk17ta8. 106802964115SThomas Hommel 106909a21e56SAlessandro Zummoconfig RTC_DRV_M48T86 107009a21e56SAlessandro Zummo tristate "ST M48T86/Dallas DS12887" 107109a21e56SAlessandro Zummo help 107209a21e56SAlessandro Zummo If you say Y here you will get support for the 107309a21e56SAlessandro Zummo ST M48T86 and Dallas DS12887 RTC chips. 107409a21e56SAlessandro Zummo 107509a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 107609a21e56SAlessandro Zummo will be called rtc-m48t86. 107709a21e56SAlessandro Zummo 1078d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35 1079d1dbd82eSThomas Bogendoerfer tristate "ST M48T35" 1080706b632dSChen Gang depends on HAS_IOMEM 1081d1dbd82eSThomas Bogendoerfer help 1082d1dbd82eSThomas Bogendoerfer If you say Y here you will get support for the 1083d1dbd82eSThomas Bogendoerfer ST M48T35 RTC chip. 1084d1dbd82eSThomas Bogendoerfer 1085d1dbd82eSThomas Bogendoerfer This driver can also be built as a module, if so, the module 1086d1dbd82eSThomas Bogendoerfer will be called "rtc-m48t35". 1087d1dbd82eSThomas Bogendoerfer 10882e774c7cSMark Zhanconfig RTC_DRV_M48T59 108994fe7424SKrzysztof Helt tristate "ST M48T59/M48T08/M48T02" 1090706b632dSChen Gang depends on HAS_IOMEM 10912e774c7cSMark Zhan help 10922e774c7cSMark Zhan If you say Y here you will get support for the 109394fe7424SKrzysztof Helt ST M48T59 RTC chip and compatible ST M48T08 and M48T02. 109494fe7424SKrzysztof Helt 109594fe7424SKrzysztof Helt These chips are usually found in Sun SPARC and UltraSPARC 109694fe7424SKrzysztof Helt workstations. 10972e774c7cSMark Zhan 10982e774c7cSMark Zhan This driver can also be built as a module, if so, the module 10992e774c7cSMark Zhan will be called "rtc-m48t59". 11002e774c7cSMark Zhan 11014f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242 11024f9b9bbaSGeert Uytterhoeven tristate "Oki MSM6242" 1103706b632dSChen Gang depends on HAS_IOMEM 11044f9b9bbaSGeert Uytterhoeven help 11054f9b9bbaSGeert Uytterhoeven If you say yes here you get support for the Oki MSM6242 11064f9b9bbaSGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A2000). 11074f9b9bbaSGeert Uytterhoeven 11084f9b9bbaSGeert Uytterhoeven This driver can also be built as a module. If so, the module 11094f9b9bbaSGeert Uytterhoeven will be called rtc-msm6242. 11104f9b9bbaSGeert Uytterhoeven 1111cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802 1112cca4c231SDavid S. Miller tristate "TI BQ4802" 1113706b632dSChen Gang depends on HAS_IOMEM 1114cca4c231SDavid S. Miller help 1115cca4c231SDavid S. Miller If you say Y here you will get support for the TI 1116cca4c231SDavid S. Miller BQ4802 RTC chip. 1117cca4c231SDavid S. Miller 1118cca4c231SDavid S. Miller This driver can also be built as a module. If so, the module 1119cca4c231SDavid S. Miller will be called rtc-bq4802. 1120cca4c231SDavid S. Miller 11214f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01 11224f672ce2SGeert Uytterhoeven tristate "Ricoh RP5C01" 1123706b632dSChen Gang depends on HAS_IOMEM 11244f672ce2SGeert Uytterhoeven help 11254f672ce2SGeert Uytterhoeven If you say yes here you get support for the Ricoh RP5C01 11264f672ce2SGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A3000 11274f672ce2SGeert Uytterhoeven and A4000). 11284f672ce2SGeert Uytterhoeven 11294f672ce2SGeert Uytterhoeven This driver can also be built as a module. If so, the module 11304f672ce2SGeert Uytterhoeven will be called rtc-rp5c01. 11314f672ce2SGeert Uytterhoeven 113209a21e56SAlessandro Zummoconfig RTC_DRV_V3020 113309a21e56SAlessandro Zummo tristate "EM Microelectronic V3020" 113409a21e56SAlessandro Zummo help 113509a21e56SAlessandro Zummo If you say yes here you will get support for the 113609a21e56SAlessandro Zummo EM Microelectronic v3020 RTC chip. 113709a21e56SAlessandro Zummo 113809a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 113909a21e56SAlessandro Zummo will be called rtc-v3020. 114009a21e56SAlessandro Zummo 114135c86bf6SMark Brownconfig RTC_DRV_WM831X 114235c86bf6SMark Brown tristate "Wolfson Microelectronics WM831x RTC" 114335c86bf6SMark Brown depends on MFD_WM831X 114435c86bf6SMark Brown help 114535c86bf6SMark Brown If you say yes here you will get support for the RTC subsystem 114635c86bf6SMark Brown of the Wolfson Microelectronics WM831X series PMICs. 114735c86bf6SMark Brown 114835c86bf6SMark Brown This driver can also be built as a module. If so, the module 114935c86bf6SMark Brown will be called "rtc-wm831x". 115035c86bf6SMark Brown 1151077eaf5bSMark Brownconfig RTC_DRV_WM8350 1152077eaf5bSMark Brown tristate "Wolfson Microelectronics WM8350 RTC" 1153077eaf5bSMark Brown depends on MFD_WM8350 1154077eaf5bSMark Brown help 1155077eaf5bSMark Brown If you say yes here you will get support for the RTC subsystem 1156077eaf5bSMark Brown of the Wolfson Microelectronics WM8350. 1157077eaf5bSMark Brown 1158077eaf5bSMark Brown This driver can also be built as a module. If so, the module 1159077eaf5bSMark Brown will be called "rtc-wm8350". 1160077eaf5bSMark Brown 11610942a71eSRajeev Kumarconfig RTC_DRV_SPEAR 11620942a71eSRajeev Kumar tristate "SPEAR ST RTC" 11637a587eaeSAlexandre Belloni depends on PLAT_SPEAR || COMPILE_TEST 11640942a71eSRajeev Kumar default y 11650942a71eSRajeev Kumar help 11660942a71eSRajeev Kumar If you say Y here you will get support for the RTC found on 11670942a71eSRajeev Kumar spear 11680942a71eSRajeev Kumar 1169eae854b2SBalaji Raoconfig RTC_DRV_PCF50633 1170eae854b2SBalaji Rao depends on MFD_PCF50633 1171eae854b2SBalaji Rao tristate "NXP PCF50633 RTC" 1172eae854b2SBalaji Rao help 1173eae854b2SBalaji Rao If you say yes here you get support for the RTC subsystem of the 1174eae854b2SBalaji Rao NXP PCF50633 used in embedded systems. 1175eae854b2SBalaji Rao 1176bd207cfbSLinus Walleijconfig RTC_DRV_AB3100 1177bd207cfbSLinus Walleij tristate "ST-Ericsson AB3100 RTC" 1178bd207cfbSLinus Walleij depends on AB3100_CORE 1179bd207cfbSLinus Walleij default y if AB3100_CORE 1180bd207cfbSLinus Walleij help 1181bd207cfbSLinus Walleij Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC 1182bd207cfbSLinus Walleij support. This chip contains a battery- and capacitor-backed RTC. 1183bd207cfbSLinus Walleij 11840af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500 11850af62f4dSVirupax Sadashivpetimath tristate "ST-Ericsson AB8500 RTC" 11860af62f4dSVirupax Sadashivpetimath depends on AB8500_CORE 1187651fb480SUlf Hansson select RTC_INTF_DEV 1188dc43d4a2SRamesh Chandrasekaran select RTC_INTF_DEV_UIE_EMUL 11890af62f4dSVirupax Sadashivpetimath help 11900af62f4dSVirupax Sadashivpetimath Select this to enable the ST-Ericsson AB8500 power management IC RTC 11910af62f4dSVirupax Sadashivpetimath support. This chip contains a battery- and capacitor-backed RTC. 11920af62f4dSVirupax Sadashivpetimath 1193afd49a7eSWan ZongShunconfig RTC_DRV_NUC900 1194afd49a7eSWan ZongShun tristate "NUC910/NUC920 RTC driver" 11957a587eaeSAlexandre Belloni depends on ARCH_W90X900 || COMPILE_TEST 1196afd49a7eSWan ZongShun help 1197afd49a7eSWan ZongShun If you say yes here you get support for the RTC subsystem of the 1198afd49a7eSWan ZongShun NUC910/NUC920 used in embedded systems. 1199bd207cfbSLinus Walleij 120016b1d26eSNeelesh Guptaconfig RTC_DRV_OPAL 120116b1d26eSNeelesh Gupta tristate "IBM OPAL RTC driver" 120216b1d26eSNeelesh Gupta depends on PPC_POWERNV 120316b1d26eSNeelesh Gupta default y 120416b1d26eSNeelesh Gupta help 120516b1d26eSNeelesh Gupta If you say yes here you get support for the PowerNV platform RTC 120616b1d26eSNeelesh Gupta driver based on OPAL interfaces. 120716b1d26eSNeelesh Gupta 120816b1d26eSNeelesh Gupta This driver can also be built as a module. If so, the module 120916b1d26eSNeelesh Gupta will be called rtc-opal. 121016b1d26eSNeelesh Gupta 121111143c19SSuneel Garapaticonfig RTC_DRV_ZYNQMP 121211143c19SSuneel Garapati tristate "Xilinx Zynq Ultrascale+ MPSoC RTC" 121311143c19SSuneel Garapati depends on OF 121411143c19SSuneel Garapati help 121511143c19SSuneel Garapati If you say yes here you get support for the RTC controller found on 121611143c19SSuneel Garapati Xilinx Zynq Ultrascale+ MPSoC. 121711143c19SSuneel Garapati 121809a21e56SAlessandro Zummocomment "on-CPU RTC drivers" 121909a21e56SAlessandro Zummo 1220125e550fSOleksij Rempelconfig RTC_DRV_ASM9260 1221125e550fSOleksij Rempel tristate "Alphascale asm9260 RTC" 12227f742e8eSAlexandre Belloni depends on MACH_ASM9260 || COMPILE_TEST 1223125e550fSOleksij Rempel help 1224125e550fSOleksij Rempel If you say yes here you get support for the RTC on the 1225125e550fSOleksij Rempel Alphascale asm9260 SoC. 1226125e550fSOleksij Rempel 1227125e550fSOleksij Rempel This driver can also be built as a module. If so, the module 1228125e550fSOleksij Rempel will be called rtc-asm9260. 1229125e550fSOleksij Rempel 12308ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI 12318ecf6c54SMiguel Aguilar tristate "TI DaVinci RTC" 12327a587eaeSAlexandre Belloni depends on ARCH_DAVINCI_DM365 || COMPILE_TEST 12338ecf6c54SMiguel Aguilar help 12348ecf6c54SMiguel Aguilar If you say yes here you get support for the RTC on the 12358ecf6c54SMiguel Aguilar DaVinci platforms (DM365). 12368ecf6c54SMiguel Aguilar 12378ecf6c54SMiguel Aguilar This driver can also be built as a module. If so, the module 12388ecf6c54SMiguel Aguilar will be called rtc-davinci. 12398ecf6c54SMiguel Aguilar 1240ba172208SBaruch Siachconfig RTC_DRV_DIGICOLOR 1241ba172208SBaruch Siach tristate "Conexant Digicolor RTC" 12427a587eaeSAlexandre Belloni depends on ARCH_DIGICOLOR || COMPILE_TEST 1243ba172208SBaruch Siach help 1244ba172208SBaruch Siach If you say yes here you get support for the RTC on Conexant 1245ba172208SBaruch Siach Digicolor platforms. This currently includes the CX92755 SoC. 1246ba172208SBaruch Siach 1247ba172208SBaruch Siach This driver can also be built as a module. If so, the module 1248ba172208SBaruch Siach will be called rtc-digicolor. 1249ba172208SBaruch Siach 1250b224b9acSFabio Estevamconfig RTC_DRV_IMXDI 1251b224b9acSFabio Estevam tristate "Freescale IMX DryIce Real Time Clock" 1252ef216ad0SRoland Stigge depends on ARCH_MXC 1253b224b9acSFabio Estevam help 1254b224b9acSFabio Estevam Support for Freescale IMX DryIce RTC 1255b224b9acSFabio Estevam 1256b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1257b224b9acSFabio Estevam will be called "rtc-imxdi". 1258b224b9acSFabio Estevam 1259db68b189SDavid Brownellconfig RTC_DRV_OMAP 12608608976eSLokesh Vutla tristate "TI OMAP Real Time Clock" 12617a587eaeSAlexandre Belloni depends on ARCH_OMAP || ARCH_DAVINCI || COMPILE_TEST 126297ea1906SMarcin Niestroj depends on OF 126397ea1906SMarcin Niestroj depends on PINCTRL 126497ea1906SMarcin Niestroj select GENERIC_PINCONF 1265db68b189SDavid Brownell help 1266427af9a6SAfzal Mohammed Say "yes" here to support the on chip real time clock 12678608976eSLokesh Vutla present on TI OMAP1, AM33xx, DA8xx/OMAP-L13x, AM43xx and DRA7xx. 1268427af9a6SAfzal Mohammed 1269427af9a6SAfzal Mohammed This driver can also be built as a module, if so, module 1270427af9a6SAfzal Mohammed will be called rtc-omap. 1271db68b189SDavid Brownell 127216f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC 127316f4efe7SAtul Dahiya bool 127416f4efe7SAtul Dahiya help 127516f4efe7SAtul Dahiya This will include RTC support for Samsung SoCs. If 127616f4efe7SAtul Dahiya you want to include RTC support for any machine, kindly 127716f4efe7SAtul Dahiya select this in the respective mach-XXXX/Kconfig file. 127816f4efe7SAtul Dahiya 12791add6781SBen Dooksconfig RTC_DRV_S3C 12801add6781SBen Dooks tristate "Samsung S3C series SoC RTC" 12817a587eaeSAlexandre Belloni depends on ARCH_S3C64XX || HAVE_S3C_RTC || COMPILE_TEST 12821add6781SBen Dooks help 12831add6781SBen Dooks RTC (Realtime Clock) driver for the clock inbuilt into the 12841add6781SBen Dooks Samsung S3C24XX series of SoCs. This can provide periodic 12851add6781SBen Dooks interrupt rates from 1Hz to 64Hz for user programs, and 12861add6781SBen Dooks wakeup from Alarm. 12871add6781SBen Dooks 12881add6781SBen Dooks The driver currently supports the common features on all the 12891add6781SBen Dooks S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440 12901add6781SBen Dooks and S3C2442. 12911add6781SBen Dooks 12921add6781SBen Dooks This driver can also be build as a module. If so, the module 12931add6781SBen Dooks will be called rtc-s3c. 12941add6781SBen Dooks 1295fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX 1296fd507e2fSAlessandro Zummo tristate "Cirrus Logic EP93XX" 12977a587eaeSAlexandre Belloni depends on ARCH_EP93XX || COMPILE_TEST 1298fd507e2fSAlessandro Zummo help 1299fd507e2fSAlessandro Zummo If you say yes here you get support for the 1300fd507e2fSAlessandro Zummo RTC embedded in the Cirrus Logic EP93XX processors. 1301fd507e2fSAlessandro Zummo 1302fd507e2fSAlessandro Zummo This driver can also be built as a module. If so, the module 1303fd507e2fSAlessandro Zummo will be called rtc-ep93xx. 1304fd507e2fSAlessandro Zummo 1305e842f1c8SRichard Purdieconfig RTC_DRV_SA1100 13063888c090SHaojian Zhuang tristate "SA11x0/PXA2xx/PXA910" 13073888c090SHaojian Zhuang depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP 1308e842f1c8SRichard Purdie help 1309e842f1c8SRichard Purdie If you say Y here you will get access to the real time clock 1310e842f1c8SRichard Purdie built into your SA11x0 or PXA2xx CPU. 1311e842f1c8SRichard Purdie 1312e842f1c8SRichard Purdie To compile this driver as a module, choose M here: the 1313e842f1c8SRichard Purdie module will be called rtc-sa1100. 1314fd507e2fSAlessandro Zummo 1315317a6104SPaul Mundtconfig RTC_DRV_SH 1316317a6104SPaul Mundt tristate "SuperH On-Chip RTC" 1317dab5aec6SChris Brandt depends on SUPERH || ARCH_RENESAS 1318317a6104SPaul Mundt help 1319317a6104SPaul Mundt Say Y here to enable support for the on-chip RTC found in 1320dab5aec6SChris Brandt most SuperH processors. This RTC is also found in RZ/A SoCs. 1321317a6104SPaul Mundt 1322317a6104SPaul Mundt To compile this driver as a module, choose M here: the 1323317a6104SPaul Mundt module will be called rtc-sh. 1324317a6104SPaul Mundt 13258417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX 13263e16f6afSAlessandro Zummo tristate "NEC VR41XX" 13277a587eaeSAlexandre Belloni depends on CPU_VR41XX || COMPILE_TEST 13283e16f6afSAlessandro Zummo help 13293e16f6afSAlessandro Zummo If you say Y here you will get access to the real time clock 13303e16f6afSAlessandro Zummo built into your NEC VR41XX CPU. 13313e16f6afSAlessandro Zummo 13323e16f6afSAlessandro Zummo To compile this driver as a module, choose M here: the 13333e16f6afSAlessandro Zummo module will be called rtc-vr41xx. 13348417eb7aSYoichi Yuasa 1335a190901cSRussell Kingconfig RTC_DRV_PL030 1336a190901cSRussell King tristate "ARM AMBA PL030 RTC" 1337a190901cSRussell King depends on ARM_AMBA 1338a190901cSRussell King help 1339a190901cSRussell King If you say Y here you will get access to ARM AMBA 1340a190901cSRussell King PrimeCell PL030 RTC found on certain ARM SOCs. 1341a190901cSRussell King 1342a190901cSRussell King To compile this driver as a module, choose M here: the 1343a190901cSRussell King module will be called rtc-pl030. 1344a190901cSRussell King 13458ae6e163SDeepak Saxenaconfig RTC_DRV_PL031 13468ae6e163SDeepak Saxena tristate "ARM AMBA PL031 RTC" 1347bb35fb20SJan Engelhardt depends on ARM_AMBA 13488ae6e163SDeepak Saxena help 13498ae6e163SDeepak Saxena If you say Y here you will get access to ARM AMBA 135009a21e56SAlessandro Zummo PrimeCell PL031 RTC found on certain ARM SOCs. 13518ae6e163SDeepak Saxena 13528ae6e163SDeepak Saxena To compile this driver as a module, choose M here: the 13538ae6e163SDeepak Saxena module will be called rtc-pl031. 13548ae6e163SDeepak Saxena 1355fa04e78bSHans-Christian Egtvedtconfig RTC_DRV_AT32AP700X 1356fa04e78bSHans-Christian Egtvedt tristate "AT32AP700X series RTC" 13577a587eaeSAlexandre Belloni depends on PLATFORM_AT32AP || COMPILE_TEST 1358fa04e78bSHans-Christian Egtvedt help 1359fa04e78bSHans-Christian Egtvedt Driver for the internal RTC (Realtime Clock) on Atmel AVR32 1360fa04e78bSHans-Christian Egtvedt AT32AP700x family processors. 1361fa04e78bSHans-Christian Egtvedt 13627fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200 136324cecc1bSNicolas Ferre tristate "AT91RM9200 or some AT91SAM9 RTC" 13647a587eaeSAlexandre Belloni depends on ARCH_AT91 || COMPILE_TEST 1365788b1fc6SAndrew Victor help 13664cdf854fSDavid Brownell Driver for the internal RTC (Realtime Clock) module found on 136724cecc1bSNicolas Ferre Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips 13684cdf854fSDavid Brownell this is powered by the backup power supply. 13694cdf854fSDavid Brownell 13704cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9 13713969eb48SBoris BREZILLON tristate "AT91SAM9 RTT as RTC" 13727a587eaeSAlexandre Belloni depends on ARCH_AT91 || COMPILE_TEST 137343e112bbSBoris BREZILLON select MFD_SYSCON 13744cdf854fSDavid Brownell help 13753969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which 13763969eb48SBoris BREZILLON can be used as an RTC thanks to the backup power supply (e.g. a 13773969eb48SBoris BREZILLON small coin cell battery) which keeps this block and the GPBR 13783969eb48SBoris BREZILLON (General Purpose Backup Registers) block powered when the device 13793969eb48SBoris BREZILLON is shutdown. 13803969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd 13813969eb48SBoris BREZILLON probably want to use the real RTC block instead of the "RTT as an 13823969eb48SBoris BREZILLON RTC" driver. 13834cdf854fSDavid Brownell 138445fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX 138545fd8a0cSManuel Lauss tristate "Au1xxx Counter0 RTC support" 138642a4f17dSManuel Lauss depends on MIPS_ALCHEMY 138745fd8a0cSManuel Lauss help 138845fd8a0cSManuel Lauss This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year 138945fd8a0cSManuel Lauss counter) to be used as a RTC. 139045fd8a0cSManuel Lauss 139145fd8a0cSManuel Lauss This driver can also be built as a module. If so, the module 139245fd8a0cSManuel Lauss will be called rtc-au1xxx. 139345fd8a0cSManuel Lauss 13948cc75c9aSWu, Bryanconfig RTC_DRV_BFIN 13958cc75c9aSWu, Bryan tristate "Blackfin On-Chip RTC" 13967f604599SGraf Yang depends on BLACKFIN && !BF561 13978cc75c9aSWu, Bryan help 13988cc75c9aSWu, Bryan If you say yes here you will get support for the 13998cc75c9aSWu, Bryan Blackfin On-Chip Real Time Clock. 14008cc75c9aSWu, Bryan 14018cc75c9aSWu, Bryan This driver can also be built as a module. If so, the module 14028cc75c9aSWu, Bryan will be called rtc-bfin. 14038cc75c9aSWu, Bryan 1404e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313 1405e9f2bd81SNobuhiro Iwamatsu tristate "Ricoh RS5C313" 1406bb35fb20SJan Engelhardt depends on SH_LANDISK 1407e9f2bd81SNobuhiro Iwamatsu help 1408e9f2bd81SNobuhiro Iwamatsu If you say yes here you get support for the Ricoh RS5C313 RTC chips. 1409e9f2bd81SNobuhiro Iwamatsu 14103afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC 14113afe6d04SGeert Uytterhoeven tristate "Generic RTC support" 14123afe6d04SGeert Uytterhoeven # Please consider writing a new RTC driver instead of using the generic 14133afe6d04SGeert Uytterhoeven # RTC abstraction 14147a587eaeSAlexandre Belloni depends on PARISC || M68K || PPC || SUPERH32 || COMPILE_TEST 14159eb16864SKyle McMartin help 14163afe6d04SGeert Uytterhoeven Say Y or M here to enable RTC support on systems using the generic 14173afe6d04SGeert Uytterhoeven RTC abstraction. If you do not know what you are doing, you should 14189eb16864SKyle McMartin just say Y. 14199eb16864SKyle McMartin 1420dc944368SRobert Jarzmikconfig RTC_DRV_PXA 1421dc944368SRobert Jarzmik tristate "PXA27x/PXA3xx" 1422dc944368SRobert Jarzmik depends on ARCH_PXA 14233cdf4ad9SRob Herring select RTC_DRV_SA1100 1424dc944368SRobert Jarzmik help 1425dc944368SRobert Jarzmik If you say Y here you will get access to the real time clock 14263cdf4ad9SRob Herring built into your PXA27x or PXA3xx CPU. This RTC is actually 2 RTCs 14273cdf4ad9SRob Herring consisting of an SA1100 compatible RTC and the extended PXA RTC. 1428dc944368SRobert Jarzmik 1429dc944368SRobert Jarzmik This RTC driver uses PXA RTC registers available since pxa27x 1430dc944368SRobert Jarzmik series (RDxR, RYxR) instead of legacy RCNR, RTAR. 1431dc944368SRobert Jarzmik 1432f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500 1433f77fbdf9SAlexey Charkov tristate "VIA/WonderMedia 85xx SoC RTC" 14347a587eaeSAlexandre Belloni depends on ARCH_VT8500 || COMPILE_TEST 1435f77fbdf9SAlexey Charkov help 1436f77fbdf9SAlexey Charkov If you say Y here you will get access to the real time clock 1437f77fbdf9SAlexey Charkov built into your VIA VT8500 SoC or its relatives. 1438f77fbdf9SAlexey Charkov 1439dc944368SRobert Jarzmik 14407a138edeSDavid S. Millerconfig RTC_DRV_SUN4V 14417a138edeSDavid S. Miller bool "SUN4V Hypervisor RTC" 14427a138edeSDavid S. Miller depends on SPARC64 14437a138edeSDavid S. Miller help 14447a138edeSDavid S. Miller If you say Y here you will get support for the Hypervisor 14457a138edeSDavid S. Miller based RTC on SUN4V systems. 14467a138edeSDavid S. Miller 14479765d2d9SChen-Yu Tsaiconfig RTC_DRV_SUN6I 144837539414SMaxime Ripard bool "Allwinner A31 RTC" 144993946c49SAlexandre Belloni default MACH_SUN6I || MACH_SUN8I 145093946c49SAlexandre Belloni depends on COMMON_CLK 145193946c49SAlexandre Belloni depends on ARCH_SUNXI || COMPILE_TEST 14529765d2d9SChen-Yu Tsai help 14532863934eSAndre Przywara If you say Y here you will get support for the RTC found in 14542863934eSAndre Przywara some Allwinner SoCs like the A31 or the A64. 14559765d2d9SChen-Yu Tsai 1456594c6fb9SCarlo Caioneconfig RTC_DRV_SUNXI 1457594c6fb9SCarlo Caione tristate "Allwinner sun4i/sun7i RTC" 14587a587eaeSAlexandre Belloni depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST 1459594c6fb9SCarlo Caione help 1460594c6fb9SCarlo Caione If you say Y here you will get support for the RTC found on 1461594c6fb9SCarlo Caione Allwinner A10/A20. 1462594c6fb9SCarlo Caione 1463de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE 1464de2cf332SDavid S. Miller bool "Starfire RTC" 1465de2cf332SDavid S. Miller depends on SPARC64 1466de2cf332SDavid S. Miller help 1467de2cf332SDavid S. Miller If you say Y here you will get support for the RTC found on 1468de2cf332SDavid S. Miller Starfire systems. 1469de2cf332SDavid S. Miller 14700e149233SAtsushi Nemotoconfig RTC_DRV_TX4939 14710e149233SAtsushi Nemoto tristate "TX4939 SoC" 14720e149233SAtsushi Nemoto depends on SOC_TX4939 14730e149233SAtsushi Nemoto help 14740e149233SAtsushi Nemoto Driver for the internal RTC (Realtime Clock) module found on 14750e149233SAtsushi Nemoto Toshiba TX4939 SoC. 14760e149233SAtsushi Nemoto 1477defb4514SSaeed Bisharaconfig RTC_DRV_MV 1478defb4514SSaeed Bishara tristate "Marvell SoC RTC" 14797a587eaeSAlexandre Belloni depends on ARCH_DOVE || ARCH_MVEBU || COMPILE_TEST 1480defb4514SSaeed Bishara help 1481defb4514SSaeed Bishara If you say yes here you will get support for the in-chip RTC 1482defb4514SSaeed Bishara that can be found in some of Marvell's SoC devices, such as 1483defb4514SSaeed Bishara the Kirkwood 88F6281 and 88F6192. 1484defb4514SSaeed Bishara 1485defb4514SSaeed Bishara This driver can also be built as a module. If so, the module 1486defb4514SSaeed Bishara will be called rtc-mv. 1487defb4514SSaeed Bishara 1488a3a42806SGregory CLEMENTconfig RTC_DRV_ARMADA38X 1489a3a42806SGregory CLEMENT tristate "Armada 38x Marvell SoC RTC" 14907a587eaeSAlexandre Belloni depends on ARCH_MVEBU || COMPILE_TEST 1491a3a42806SGregory CLEMENT help 1492a3a42806SGregory CLEMENT If you say yes here you will get support for the in-chip RTC 1493a3a42806SGregory CLEMENT that can be found in the Armada 38x Marvell's SoC device 1494a3a42806SGregory CLEMENT 1495a3a42806SGregory CLEMENT This driver can also be built as a module. If so, the module 1496a3a42806SGregory CLEMENT will be called armada38x-rtc. 1497a3a42806SGregory CLEMENT 149898a9bb5bSHans Ulli Krollconfig RTC_DRV_GEMINI 149998a9bb5bSHans Ulli Kroll tristate "Gemini SoC RTC" 150098a9bb5bSHans Ulli Kroll depends on ARCH_GEMINI || COMPILE_TEST 150198a9bb5bSHans Ulli Kroll depends on HAS_IOMEM 150298a9bb5bSHans Ulli Kroll help 150398a9bb5bSHans Ulli Kroll If you say Y here you will get support for the 150498a9bb5bSHans Ulli Kroll RTC found on Gemini SoC's. 150598a9bb5bSHans Ulli Kroll 150698a9bb5bSHans Ulli Kroll This driver can also be built as a module. If so, the module 150798a9bb5bSHans Ulli Kroll will be called rtc-gemini. 150898a9bb5bSHans Ulli Kroll 15090b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3 15100b5f037aSGeert Uytterhoeven tristate "PS3 RTC" 15110b5f037aSGeert Uytterhoeven depends on PPC_PS3 15120b5f037aSGeert Uytterhoeven help 15130b5f037aSGeert Uytterhoeven If you say yes here you will get support for the RTC on PS3. 15140b5f037aSGeert Uytterhoeven 15150b5f037aSGeert Uytterhoeven This driver can also be built as a module. If so, the module 15160b5f037aSGeert Uytterhoeven will be called rtc-ps3. 15170b5f037aSGeert Uytterhoeven 1518aa958f57SLinus Walleijconfig RTC_DRV_COH901331 1519aa958f57SLinus Walleij tristate "ST-Ericsson COH 901 331 RTC" 15207a587eaeSAlexandre Belloni depends on ARCH_U300 || COMPILE_TEST 1521aa958f57SLinus Walleij help 1522aa958f57SLinus Walleij If you say Y here you will get access to ST-Ericsson 1523aa958f57SLinus Walleij COH 901 331 RTC clock found in some ST-Ericsson Mobile 1524aa958f57SLinus Walleij Platforms. 1525aa958f57SLinus Walleij 1526aa958f57SLinus Walleij This driver can also be built as a module. If so, the module 1527aa958f57SLinus Walleij will be called "rtc-coh901331". 1528aa958f57SLinus Walleij 1529aa958f57SLinus Walleij 1530df17f631Sdmitry pervushinconfig RTC_DRV_STMP 153146b21218SWolfram Sang tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC" 15327a587eaeSAlexandre Belloni depends on ARCH_MXS || COMPILE_TEST 153320d048acSAlexandre Belloni select STMP_DEVICE 1534df17f631Sdmitry pervushin help 1535df17f631Sdmitry pervushin If you say yes here you will get support for the onboard 153646b21218SWolfram Sang STMP3xxx/i.MX23/i.MX28 RTC. 1537df17f631Sdmitry pervushin 1538df17f631Sdmitry pervushin This driver can also be built as a module. If so, the module 1539df17f631Sdmitry pervushin will be called rtc-stmp3xxx. 1540df17f631Sdmitry pervushin 1541d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP 1542d3c7a3f7SDaniel Ribeiro tristate "PCAP RTC" 1543d3c7a3f7SDaniel Ribeiro depends on EZX_PCAP 1544d3c7a3f7SDaniel Ribeiro help 1545d3c7a3f7SDaniel Ribeiro If you say Y here you will get support for the RTC found on 1546d3c7a3f7SDaniel Ribeiro the PCAP2 ASIC used on some Motorola phones. 1547d3c7a3f7SDaniel Ribeiro 15481c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX 15491c97872bSUwe Kleine-König depends on MFD_MC13XXX 15501c97872bSUwe Kleine-König tristate "Freescale MC13xxx RTC" 155143299f28SUwe Kleine-König help 15521c97872bSUwe Kleine-König This enables support for the RTCs found on Freescale's PMICs 15531c97872bSUwe Kleine-König MC13783 and MC13892. 155443299f28SUwe Kleine-König 155550aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121 155650aae724SAnatolij Gustschin tristate "Freescale MPC5121 built-in RTC" 1557955dbea3SDmitry Eremin-Solenikov depends on PPC_MPC512x || PPC_MPC52xx 155850aae724SAnatolij Gustschin help 155950aae724SAnatolij Gustschin If you say yes here you will get support for the 1560955dbea3SDmitry Eremin-Solenikov built-in RTC on MPC5121 or on MPC5200. 156150aae724SAnatolij Gustschin 156250aae724SAnatolij Gustschin This driver can also be built as a module. If so, the module 156350aae724SAnatolij Gustschin will be called rtc-mpc5121. 156450aae724SAnatolij Gustschin 15653bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740 1566586655d2SAlexandre Belloni tristate "Ingenic JZ4740 SoC" 1567cd563200SPaul Cercueil depends on MACH_INGENIC || COMPILE_TEST 15683bf0eea8SLars-Peter Clausen help 1569cd563200SPaul Cercueil If you say yes here you get support for the Ingenic JZ47xx SoCs RTC 1570cd563200SPaul Cercueil controllers. 15713bf0eea8SLars-Peter Clausen 1572586655d2SAlexandre Belloni This driver can also be buillt as a module. If so, the module 1573586655d2SAlexandre Belloni will be called rtc-jz4740. 1574586655d2SAlexandre Belloni 1575c28b42e3SJoachim Eastwoodconfig RTC_DRV_LPC24XX 1576c28b42e3SJoachim Eastwood tristate "NXP RTC for LPC178x/18xx/408x/43xx" 1577c28b42e3SJoachim Eastwood depends on ARCH_LPC18XX || COMPILE_TEST 1578c28b42e3SJoachim Eastwood depends on OF && HAS_IOMEM 1579c28b42e3SJoachim Eastwood help 1580c28b42e3SJoachim Eastwood This enables support for the NXP RTC found which can be found on 1581c28b42e3SJoachim Eastwood NXP LPC178x/18xx/408x/43xx devices. 1582c28b42e3SJoachim Eastwood 1583c28b42e3SJoachim Eastwood If you have one of the devices above enable this driver to use 158472d3d79fSAlexandre Belloni the hardware RTC. This driver can also be built as a module. If 1585c28b42e3SJoachim Eastwood so, the module will be called rtc-lpc24xx. 1586c28b42e3SJoachim Eastwood 15879aa449beSKevin Wellsconfig RTC_DRV_LPC32XX 15887a587eaeSAlexandre Belloni depends on ARCH_LPC32XX || COMPILE_TEST 15899aa449beSKevin Wells tristate "NXP LPC32XX RTC" 15909aa449beSKevin Wells help 15919aa449beSKevin Wells This enables support for the NXP RTC in the LPC32XX 15929aa449beSKevin Wells 159372d3d79fSAlexandre Belloni This driver can also be built as a module. If so, the module 15949aa449beSKevin Wells will be called rtc-lpc32xx. 15959aa449beSKevin Wells 15969a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX 15979a9a54adSAnirudh Ghayal tristate "Qualcomm PMIC8XXX RTC" 15987a587eaeSAlexandre Belloni depends on MFD_PM8XXX || MFD_SPMI_PMIC || COMPILE_TEST 15999a9a54adSAnirudh Ghayal help 16009a9a54adSAnirudh Ghayal If you say yes here you get support for the 16019a9a54adSAnirudh Ghayal Qualcomm PMIC8XXX RTC. 16029a9a54adSAnirudh Ghayal 16039a9a54adSAnirudh Ghayal To compile this driver as a module, choose M here: the 16049a9a54adSAnirudh Ghayal module will be called rtc-pm8xxx. 16059a9a54adSAnirudh Ghayal 1606ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA 1607ff859ba6SAndrew Chew tristate "NVIDIA Tegra Internal RTC driver" 16087a587eaeSAlexandre Belloni depends on ARCH_TEGRA || COMPILE_TEST 1609ff859ba6SAndrew Chew help 1610ff859ba6SAndrew Chew If you say yes here you get support for the 1611ff859ba6SAndrew Chew Tegra 200 series internal RTC module. 1612ff859ba6SAndrew Chew 1613ff859ba6SAndrew Chew This drive can also be built as a module. If so, the module 1614ff859ba6SAndrew Chew will be called rtc-tegra. 1615ff859ba6SAndrew Chew 1616dd196a2bSChris Metcalfconfig RTC_DRV_TILE 1617dd196a2bSChris Metcalf tristate "Tilera hypervisor RTC support" 1618dd196a2bSChris Metcalf depends on TILE 1619dd196a2bSChris Metcalf help 1620dd196a2bSChris Metcalf Enable support for the Linux driver side of the Tilera 1621dd196a2bSChris Metcalf hypervisor's real-time clock interface. 1622dd196a2bSChris Metcalf 16232809e80bSGuan Xuetaoconfig RTC_DRV_PUV3 16242809e80bSGuan Xuetao tristate "PKUnity v3 RTC support" 16252809e80bSGuan Xuetao depends on ARCH_PUV3 16262809e80bSGuan Xuetao help 16272809e80bSGuan Xuetao This enables support for the RTC in the PKUnity-v3 SoCs. 16282809e80bSGuan Xuetao 16292809e80bSGuan Xuetao This drive can also be built as a module. If so, the module 16302809e80bSGuan Xuetao will be called rtc-puv3. 16312809e80bSGuan Xuetao 1632b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1 1633b4f0b880Szhao zhang tristate "loongson1 RTC support" 163430ad29bbSHuacai Chen depends on MACH_LOONGSON32 1635b4f0b880Szhao zhang help 1636b4f0b880Szhao zhang This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year 1637b4f0b880Szhao zhang counter) to be used as a RTC. 1638b4f0b880Szhao zhang 1639b4f0b880Szhao zhang This driver can also be built as a module. If so, the module 1640b4f0b880Szhao zhang will be called rtc-ls1x. 1641b4f0b880Szhao zhang 164279811595SFabio Estevamconfig RTC_DRV_MXC 1643b224b9acSFabio Estevam tristate "Freescale MXC Real Time Clock" 1644b224b9acSFabio Estevam depends on ARCH_MXC 1645b224b9acSFabio Estevam help 1646b224b9acSFabio Estevam If you say yes here you get support for the Freescale MXC 1647b224b9acSFabio Estevam RTC module. 1648b224b9acSFabio Estevam 1649b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1650b224b9acSFabio Estevam will be called "rtc-mxc". 1651b224b9acSFabio Estevam 1652179a502fSShawn Guoconfig RTC_DRV_SNVS 1653179a502fSShawn Guo tristate "Freescale SNVS RTC support" 16548a0fa184SShawn Guo select REGMAP_MMIO 1655179a502fSShawn Guo depends on HAS_IOMEM 1656179a502fSShawn Guo depends on OF 1657179a502fSShawn Guo help 1658179a502fSShawn Guo If you say yes here you get support for the Freescale SNVS 1659179a502fSShawn Guo Low Power (LP) RTC module. 1660179a502fSShawn Guo 1661179a502fSShawn Guo This driver can also be built as a module, if so, the module 1662179a502fSShawn Guo will be called "rtc-snvs". 1663179a502fSShawn Guo 1664e88b815eSXianglong Duconfig RTC_DRV_SIRFSOC 1665e88b815eSXianglong Du tristate "SiRFSOC RTC" 1666e88b815eSXianglong Du depends on ARCH_SIRF 1667e88b815eSXianglong Du help 1668e88b815eSXianglong Du Say "yes" here to support the real time clock on SiRF SOC chips. 1669e88b815eSXianglong Du This driver can also be built as a module called rtc-sirfsoc. 1670e88b815eSXianglong Du 1671b5b2bdfcSLee Jonesconfig RTC_DRV_ST_LPC 1672b5b2bdfcSLee Jones tristate "STMicroelectronics LPC RTC" 1673b5b2bdfcSLee Jones depends on ARCH_STI 1674b5b2bdfcSLee Jones depends on OF 1675b5b2bdfcSLee Jones help 1676b5b2bdfcSLee Jones Say Y here to include STMicroelectronics Low Power Controller 1677b5b2bdfcSLee Jones (LPC) based RTC support. 1678b5b2bdfcSLee Jones 1679b5b2bdfcSLee Jones To compile this driver as a module, choose M here: the 1680b5b2bdfcSLee Jones module will be called rtc-st-lpc. 1681b5b2bdfcSLee Jones 1682453b4c6dSJonas Jensenconfig RTC_DRV_MOXART 1683453b4c6dSJonas Jensen tristate "MOXA ART RTC" 1684441fb768SJean Delvare depends on ARCH_MOXART || COMPILE_TEST 1685453b4c6dSJonas Jensen help 1686453b4c6dSJonas Jensen If you say yes here you get support for the MOXA ART 1687453b4c6dSJonas Jensen RTC module. 1688453b4c6dSJonas Jensen 1689453b4c6dSJonas Jensen This driver can also be built as a module. If so, the module 1690453b4c6dSJonas Jensen will be called rtc-moxart 1691453b4c6dSJonas Jensen 1692fc297911STianping Fangconfig RTC_DRV_MT6397 1693fc297911STianping Fang tristate "Mediatek Real Time Clock driver" 169404d3ba70SArnd Bergmann depends on MFD_MT6397 || (COMPILE_TEST && IRQ_DOMAIN) 1695fc297911STianping Fang help 1696fc297911STianping Fang This selects the Mediatek(R) RTC driver. RTC is part of Mediatek 1697fc297911STianping Fang MT6397 PMIC. You should enable MT6397 PMIC MFD before select 1698fc297911STianping Fang Mediatek(R) RTC driver. 1699fc297911STianping Fang 1700fc297911STianping Fang If you want to use Mediatek(R) RTC interface, select Y or M here. 1701fc297911STianping Fang 1702f12d8695SLoc Hoconfig RTC_DRV_XGENE 1703f12d8695SLoc Ho tristate "APM X-Gene RTC" 1704706b632dSChen Gang depends on HAS_IOMEM 1705fdf8afa1SJean Delvare depends on ARCH_XGENE || COMPILE_TEST 1706f12d8695SLoc Ho help 1707f12d8695SLoc Ho If you say yes here you get support for the APM X-Gene SoC real time 1708f12d8695SLoc Ho clock. 1709f12d8695SLoc Ho 1710f12d8695SLoc Ho This driver can also be built as a module, if so, the module 1711f12d8695SLoc Ho will be called "rtc-xgene". 1712f12d8695SLoc Ho 171351aa905cSJoshua Hendersonconfig RTC_DRV_PIC32 171451aa905cSJoshua Henderson tristate "Microchip PIC32 RTC" 171551aa905cSJoshua Henderson depends on MACH_PIC32 171651aa905cSJoshua Henderson default y 171751aa905cSJoshua Henderson help 171851aa905cSJoshua Henderson If you say yes here you get support for the PIC32 RTC module. 171951aa905cSJoshua Henderson 172051aa905cSJoshua Henderson This driver can also be built as a module. If so, the module 172151aa905cSJoshua Henderson will be called rtc-pic32 172251aa905cSJoshua Henderson 17230b6a8f5cSAkinobu Mitaconfig RTC_DRV_R7301 17240b6a8f5cSAkinobu Mita tristate "EPSON TOYOCOM RTC-7301SF/DG" 17250b6a8f5cSAkinobu Mita select REGMAP_MMIO 17260b6a8f5cSAkinobu Mita depends on OF && HAS_IOMEM 17270b6a8f5cSAkinobu Mita help 17280b6a8f5cSAkinobu Mita If you say yes here you get support for the EPSON TOYOCOM 17290b6a8f5cSAkinobu Mita RTC-7301SF/DG chips. 17300b6a8f5cSAkinobu Mita 17310b6a8f5cSAkinobu Mita This driver can also be built as a module. If so, the module 17320b6a8f5cSAkinobu Mita will be called rtc-r7301. 17330b6a8f5cSAkinobu Mita 17344e64350fSAmelie Delaunayconfig RTC_DRV_STM32 17354e64350fSAmelie Delaunay tristate "STM32 RTC" 17364e64350fSAmelie Delaunay select REGMAP_MMIO 17374e64350fSAmelie Delaunay depends on ARCH_STM32 || COMPILE_TEST 17384e64350fSAmelie Delaunay help 17394e64350fSAmelie Delaunay If you say yes here you get support for the STM32 On-Chip 17404e64350fSAmelie Delaunay Real Time Clock. 17414e64350fSAmelie Delaunay 17424e64350fSAmelie Delaunay This driver can also be built as a module, if so, the module 17434e64350fSAmelie Delaunay will be called "rtc-stm32". 17444e64350fSAmelie Delaunay 1745dd3bf50bSSebastian Reichelconfig RTC_DRV_CPCAP 1746dd3bf50bSSebastian Reichel depends on MFD_CPCAP 1747dd3bf50bSSebastian Reichel tristate "Motorola CPCAP RTC" 1748dd3bf50bSSebastian Reichel help 1749dd3bf50bSSebastian Reichel Say y here for CPCAP rtc found on some Motorola phones 1750dd3bf50bSSebastian Reichel and tablets such as Droid 4. 1751dd3bf50bSSebastian Reichel 175262e00cb9SAlexander Hollercomment "HID Sensor RTC drivers" 175362e00cb9SAlexander Holler 175462e00cb9SAlexander Hollerconfig RTC_DRV_HID_SENSOR_TIME 175562e00cb9SAlexander Holler tristate "HID Sensor Time" 175662e00cb9SAlexander Holler depends on USB_HID 175762e00cb9SAlexander Holler select IIO 175862e00cb9SAlexander Holler select HID_SENSOR_HUB 175962e00cb9SAlexander Holler select HID_SENSOR_IIO_COMMON 176062e00cb9SAlexander Holler help 176162e00cb9SAlexander Holler Say yes here to build support for the HID Sensors of type Time. 176262e00cb9SAlexander Holler This drivers makes such sensors available as RTCs. 176362e00cb9SAlexander Holler 176462e00cb9SAlexander Holler If this driver is compiled as a module, it will be named 176562e00cb9SAlexander Holler rtc-hid-sensor-time. 176662e00cb9SAlexander Holler 176762e00cb9SAlexander Holler 1768bb35fb20SJan Engelhardtendif # RTC_CLASS 1769