1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 27be2c7c9SDavid Brownell# 3c58411e9SAlessandro Zummo# RTC class/drivers configuration 4c58411e9SAlessandro Zummo# 5c58411e9SAlessandro Zummo 6c58411e9SAlessandro Zummoconfig RTC_LIB 7b4d246b1SJohn Stultz bool 80c86edc0SAlessandro Zummo 9d6faca40SArnd Bergmannconfig RTC_MC146818_LIB 10d6faca40SArnd Bergmann bool 11d6faca40SArnd Bergmann select RTC_LIB 12d6faca40SArnd Bergmann 13bb35fb20SJan Engelhardtmenuconfig RTC_CLASS 14b4d246b1SJohn Stultz bool "Real Time Clock" 150c86edc0SAlessandro Zummo default n 169c795799SJohannes Berg depends on !S390 170c86edc0SAlessandro Zummo select RTC_LIB 180c86edc0SAlessandro Zummo help 190c86edc0SAlessandro Zummo Generic RTC class support. If you say yes here, you will 200c86edc0SAlessandro Zummo be allowed to plug one or more RTCs to your system. You will 2127ae4104SAdrian Bunk probably want to enable one or more of the interfaces below. 220c86edc0SAlessandro Zummo 23bb35fb20SJan Engelhardtif RTC_CLASS 24bb35fb20SJan Engelhardt 250c86edc0SAlessandro Zummoconfig RTC_HCTOSYS 267ca1d488SDavid Brownell bool "Set system time from RTC on startup and resume" 270c86edc0SAlessandro Zummo default y 280c86edc0SAlessandro Zummo help 297ca1d488SDavid Brownell If you say yes here, the system time (wall clock) will be set using 307ca1d488SDavid Brownell the value read from a specified RTC device. This is useful to avoid 317ca1d488SDavid Brownell unnecessary fsck runs at boot time, and to network better. 320c86edc0SAlessandro Zummo 330c86edc0SAlessandro Zummoconfig RTC_HCTOSYS_DEVICE 347ca1d488SDavid Brownell string "RTC used to set the system time" 359c5150b3SXunlei Pang depends on RTC_HCTOSYS 360c86edc0SAlessandro Zummo default "rtc0" 370c86edc0SAlessandro Zummo help 387ca1d488SDavid Brownell The RTC device that will be used to (re)initialize the system 397ca1d488SDavid Brownell clock, usually rtc0. Initialization is done when the system 40779d2089SDavid Brownell starts up, and when it resumes from a low power state. This 41779d2089SDavid Brownell device should record time in UTC, since the kernel won't do 42779d2089SDavid Brownell timezone correction. 437ca1d488SDavid Brownell 447ca1d488SDavid Brownell This clock should be battery-backed, so that it reads the correct 457ca1d488SDavid Brownell time when the system boots from a power-off state. Otherwise, your 467ca1d488SDavid Brownell system will need an external clock source (like an NTP server). 477ca1d488SDavid Brownell 487ca1d488SDavid Brownell If the clock you specify here is not battery backed, it may still 497ca1d488SDavid Brownell be useful to reinitialize system time when resuming from system 507ca1d488SDavid Brownell sleep states. Do not specify an RTC here unless it stays powered 517ca1d488SDavid Brownell during all this system's supported sleep states. 520c86edc0SAlessandro Zummo 539c5150b3SXunlei Pangconfig RTC_SYSTOHC 549c5150b3SXunlei Pang bool "Set the RTC time based on NTP synchronization" 559c5150b3SXunlei Pang default y 569c5150b3SXunlei Pang help 579c5150b3SXunlei Pang If you say yes here, the system time (wall clock) will be stored 589c5150b3SXunlei Pang in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11 599c5150b3SXunlei Pang minutes if userspace reports synchronized NTP status. 609c5150b3SXunlei Pang 619c5150b3SXunlei Pangconfig RTC_SYSTOHC_DEVICE 629c5150b3SXunlei Pang string "RTC used to synchronize NTP adjustment" 639c5150b3SXunlei Pang depends on RTC_SYSTOHC 649c5150b3SXunlei Pang default RTC_HCTOSYS_DEVICE if RTC_HCTOSYS 659c5150b3SXunlei Pang default "rtc0" 669c5150b3SXunlei Pang help 679c5150b3SXunlei Pang The RTC device used for NTP synchronization. The main difference 689c5150b3SXunlei Pang between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this 699c5150b3SXunlei Pang one can sleep when setting time, because it runs in the workqueue 709c5150b3SXunlei Pang context. 719c5150b3SXunlei Pang 729e86ecb6SDavid Brownellconfig RTC_DEBUG 739e86ecb6SDavid Brownell bool "RTC debug support" 749e86ecb6SDavid Brownell help 759e86ecb6SDavid Brownell Say yes here to enable debugging support in the RTC framework 769e86ecb6SDavid Brownell and individual RTC drivers. 779e86ecb6SDavid Brownell 78b02c9646SAlexandre Belloniconfig RTC_LIB_KUNIT_TEST 79b02c9646SAlexandre Belloni tristate "KUnit test for RTC lib functions" if !KUNIT_ALL_TESTS 80b02c9646SAlexandre Belloni depends on KUNIT 81b02c9646SAlexandre Belloni default KUNIT_ALL_TESTS 82b02c9646SAlexandre Belloni help 83b02c9646SAlexandre Belloni Enable this option to test RTC library functions. 84b02c9646SAlexandre Belloni 85b02c9646SAlexandre Belloni If unsure, say N. 86b02c9646SAlexandre Belloni 87697e5a47SAlexandre Belloniconfig RTC_NVMEM 88697e5a47SAlexandre Belloni bool "RTC non volatile storage support" 89697e5a47SAlexandre Belloni select NVMEM 90697e5a47SAlexandre Belloni default RTC_CLASS 91697e5a47SAlexandre Belloni help 92697e5a47SAlexandre Belloni Say yes here to add support for the non volatile (often battery 93697e5a47SAlexandre Belloni backed) storage present on RTCs. 94697e5a47SAlexandre Belloni 950c86edc0SAlessandro Zummocomment "RTC interfaces" 960c86edc0SAlessandro Zummo 97c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS 986341e62bSChristoph Jaeger bool "/sys/class/rtc/rtcN (sysfs)" 99bb35fb20SJan Engelhardt depends on SYSFS 1008dc08395SKevin Hilman default RTC_CLASS 101c5c3e192SAlessandro Zummo help 1029e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using sysfs interfaces, 1039e86ecb6SDavid Brownell /sys/class/rtc/rtc0 through /sys/.../rtcN. 104c5c3e192SAlessandro Zummo 105ae64d169SAlessandro Zummo If unsure, say Y. 106c5c3e192SAlessandro Zummo 107728a2947SAlessandro Zummoconfig RTC_INTF_PROC 1086341e62bSChristoph Jaeger bool "/proc/driver/rtc (procfs for rtcN)" 109bb35fb20SJan Engelhardt depends on PROC_FS 1108dc08395SKevin Hilman default RTC_CLASS 111728a2947SAlessandro Zummo help 11292589c98SKim, Milo Say yes here if you want to use your system clock RTC through 11392589c98SKim, Milo the proc interface, /proc/driver/rtc. 11492589c98SKim, Milo Other RTCs will not be available through that API. 11592589c98SKim, Milo If there is no RTC for the system clock, then the first RTC(rtc0) 11692589c98SKim, Milo is used by default. 117728a2947SAlessandro Zummo 118ae64d169SAlessandro Zummo If unsure, say Y. 119728a2947SAlessandro Zummo 120e824290eSAlessandro Zummoconfig RTC_INTF_DEV 1216341e62bSChristoph Jaeger bool "/dev/rtcN (character devices)" 1228dc08395SKevin Hilman default RTC_CLASS 123e824290eSAlessandro Zummo help 1249e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using the /dev 1259e86ecb6SDavid Brownell interfaces, which "udev" sets up as /dev/rtc0 through 126ae64d169SAlessandro Zummo /dev/rtcN. 127e824290eSAlessandro Zummo 128ae64d169SAlessandro Zummo You may want to set up a symbolic link so one of these 129ae64d169SAlessandro Zummo can be accessed as /dev/rtc, which is a name 130ae64d169SAlessandro Zummo expected by "hwclock" and some other programs. Recent 131ae64d169SAlessandro Zummo versions of "udev" are known to set up the symlink for you. 132ae64d169SAlessandro Zummo 133ae64d169SAlessandro Zummo If unsure, say Y. 134e824290eSAlessandro Zummo 1356e57b1d6SJohn Stultzconfig RTC_INTF_DEV_UIE_EMUL 1366e57b1d6SJohn Stultz bool "RTC UIE emulation on dev interface" 1376e57b1d6SJohn Stultz depends on RTC_INTF_DEV 1386e57b1d6SJohn Stultz help 1396e57b1d6SJohn Stultz Provides an emulation for RTC_UIE if the underlying rtc chip 1406e57b1d6SJohn Stultz driver does not expose RTC_UIE ioctls. Those requests generate 1416e57b1d6SJohn Stultz once-per-second update interrupts, used for synchronization. 1426e57b1d6SJohn Stultz 1436e57b1d6SJohn Stultz The emulation code will read the time from the hardware 1446e57b1d6SJohn Stultz clock several times per second, please enable this option 1456e57b1d6SJohn Stultz only if you know that you really need it. 1466e57b1d6SJohn Stultz 14709a21e56SAlessandro Zummoconfig RTC_DRV_TEST 14809a21e56SAlessandro Zummo tristate "Test driver/device" 14909a21e56SAlessandro Zummo help 15009a21e56SAlessandro Zummo If you say yes here you get support for the 15109a21e56SAlessandro Zummo RTC test driver. It's a software RTC which can be 15209a21e56SAlessandro Zummo used to test the RTC subsystem APIs. It gets 15309a21e56SAlessandro Zummo the time from the system clock. 15409a21e56SAlessandro Zummo You want this driver only if you are doing development 15509a21e56SAlessandro Zummo on the RTC subsystem. Please read the source code 15609a21e56SAlessandro Zummo for further details. 15709a21e56SAlessandro Zummo 15809a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 15909a21e56SAlessandro Zummo will be called rtc-test. 16009a21e56SAlessandro Zummo 16109a21e56SAlessandro Zummocomment "I2C RTC drivers" 162bb35fb20SJan Engelhardt 163bb35fb20SJan Engelhardtif I2C 16409a21e56SAlessandro Zummo 165008b3040SHaojian Zhuangconfig RTC_DRV_88PM860X 166008b3040SHaojian Zhuang tristate "Marvell 88PM860x" 1673783055eSAlexandre Belloni depends on MFD_88PM860X 168008b3040SHaojian Zhuang help 169008b3040SHaojian Zhuang If you say yes here you get support for RTC function in Marvell 170008b3040SHaojian Zhuang 88PM860x chips. 171008b3040SHaojian Zhuang 172008b3040SHaojian Zhuang This driver can also be built as a module. If so, the module 173008b3040SHaojian Zhuang will be called rtc-88pm860x. 174008b3040SHaojian Zhuang 1752985c29cSQiao Zhouconfig RTC_DRV_88PM80X 1762985c29cSQiao Zhou tristate "Marvell 88PM80x" 1773783055eSAlexandre Belloni depends on MFD_88PM800 1782985c29cSQiao Zhou help 1792985c29cSQiao Zhou If you say yes here you get support for RTC function in Marvell 1802985c29cSQiao Zhou 88PM80x chips. 1812985c29cSQiao Zhou 1822985c29cSQiao Zhou This driver can also be built as a module. If so, the module 1832985c29cSQiao Zhou will be called rtc-88pm80x. 1842985c29cSQiao Zhou 18582ee16cfSKarel Balejconfig RTC_DRV_88PM886 18682ee16cfSKarel Balej tristate "Marvell 88PM886 RTC driver" 18782ee16cfSKarel Balej depends on MFD_88PM886_PMIC 18882ee16cfSKarel Balej help 18982ee16cfSKarel Balej If you say yes here you will get support for the RTC function in the 19082ee16cfSKarel Balej Marvell 88PM886 chip. 19182ee16cfSKarel Balej 19282ee16cfSKarel Balej This driver can also be built as a module. If so, the module 19382ee16cfSKarel Balej will be called rtc-88pm886. 19482ee16cfSKarel Balej 1950b2f6228SArnaud Ebalardconfig RTC_DRV_ABB5ZES3 1960b2f6228SArnaud Ebalard select REGMAP_I2C 1970b2f6228SArnaud Ebalard tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3" 1980b2f6228SArnaud Ebalard help 1990b2f6228SArnaud Ebalard If you say yes here you get support for the Abracon 2000b2f6228SArnaud Ebalard AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip. 2010b2f6228SArnaud Ebalard 2020b2f6228SArnaud Ebalard This driver can also be built as a module. If so, the module 2030b2f6228SArnaud Ebalard will be called rtc-ab-b5ze-s3. 2040b2f6228SArnaud Ebalard 20567075b63SArtem Panfilovconfig RTC_DRV_ABEOZ9 20667075b63SArtem Panfilov select REGMAP_I2C 20767075b63SArtem Panfilov tristate "Abracon AB-RTCMC-32.768kHz-EOZ9" 20867075b63SArtem Panfilov help 20967075b63SArtem Panfilov If you say yes here you get support for the Abracon 21067075b63SArtem Panfilov AB-RTCMC-32.768kHz-EOA9 I2C RTC chip. 21167075b63SArtem Panfilov 21267075b63SArtem Panfilov This driver can also be built as a module. If so, the module 21367075b63SArtem Panfilov will be called rtc-ab-e0z9. 21467075b63SArtem Panfilov 2154d61ff6bSPhilippe De Muyterconfig RTC_DRV_ABX80X 2164d61ff6bSPhilippe De Muyter tristate "Abracon ABx80x" 217749e36d0SJeremy Gebben select WATCHDOG_CORE if WATCHDOG 2184d61ff6bSPhilippe De Muyter help 2194d61ff6bSPhilippe De Muyter If you say yes here you get support for Abracon AB080X and AB180X 2204d61ff6bSPhilippe De Muyter families of ultra-low-power battery- and capacitor-backed real-time 2214d61ff6bSPhilippe De Muyter clock chips. 2224d61ff6bSPhilippe De Muyter 2234d61ff6bSPhilippe De Muyter This driver can also be built as a module. If so, the module 2244d61ff6bSPhilippe De Muyter will be called rtc-abx80x. 2254d61ff6bSPhilippe De Muyter 226d00a18a4SChen-Yu Tsaiconfig RTC_DRV_AC100 227d00a18a4SChen-Yu Tsai tristate "X-Powers AC100" 228d00a18a4SChen-Yu Tsai depends on MFD_AC100 229d00a18a4SChen-Yu Tsai help 230d00a18a4SChen-Yu Tsai If you say yes here you get support for the real-time clock found 231d00a18a4SChen-Yu Tsai in X-Powers AC100 family peripheral ICs. 232d00a18a4SChen-Yu Tsai 233d00a18a4SChen-Yu Tsai This driver can also be built as a module. If so, the module 234d00a18a4SChen-Yu Tsai will be called rtc-ac100. 235d00a18a4SChen-Yu Tsai 236c4f07eceSBrian Norrisconfig RTC_DRV_BRCMSTB 237c4f07eceSBrian Norris tristate "Broadcom STB wake-timer" 238c4f07eceSBrian Norris depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST 239c4f07eceSBrian Norris default ARCH_BRCMSTB || BMIPS_GENERIC 240c4f07eceSBrian Norris help 241c4f07eceSBrian Norris If you say yes here you get support for the wake-timer found on 242c4f07eceSBrian Norris Broadcom STB SoCs (BCM7xxx). 243c4f07eceSBrian Norris 244c4f07eceSBrian Norris This driver can also be built as a module. If so, the module will 245c4f07eceSBrian Norris be called rtc-brcmstb-waketimer. 246c4f07eceSBrian Norris 247b4506261SLaxman Dewanganconfig RTC_DRV_AS3722 248b4506261SLaxman Dewangan tristate "ams AS3722 RTC driver" 249b4506261SLaxman Dewangan depends on MFD_AS3722 250b4506261SLaxman Dewangan help 251b4506261SLaxman Dewangan If you say yes here you get support for the RTC of ams AS3722 PMIC 252b4506261SLaxman Dewangan chips. 253b4506261SLaxman Dewangan 254b4506261SLaxman Dewangan This driver can also be built as a module. If so, the module 255b4506261SLaxman Dewangan will be called rtc-as3722. 256b4506261SLaxman Dewangan 25709a21e56SAlessandro Zummoconfig RTC_DRV_DS1307 2580759c886SNikita Yushchenko tristate "Dallas/Maxim DS1307/37/38/39/40/41, ST M41T00, EPSON RX-8025, ISL12057" 259578c2b66SAlexandre Belloni select REGMAP_I2C 260fd90d48dSChris Packham select WATCHDOG_CORE if WATCHDOG 26109a21e56SAlessandro Zummo help 26209a21e56SAlessandro Zummo If you say yes here you get support for various compatible RTC 26309a21e56SAlessandro Zummo chips (often with battery backup) connected with I2C. This driver 2640759c886SNikita Yushchenko should handle DS1307, DS1337, DS1338, DS1339, DS1340, DS1341, 2650759c886SNikita Yushchenko ST M41T00, EPSON RX-8025, Intersil ISL12057 and probably other chips. 2660759c886SNikita Yushchenko In some cases the RTC must already have been initialized (by 2670759c886SNikita Yushchenko manufacturing or a bootloader). 26809a21e56SAlessandro Zummo 26909a21e56SAlessandro Zummo The first seven registers on these chips hold an RTC, and other 27009a21e56SAlessandro Zummo registers may add features such as NVRAM, a trickle charger for 271682d73f6SDavid Brownell the RTC/NVRAM backup power, and alarms. NVRAM is visible in 272682d73f6SDavid Brownell sysfs, but other chip features may not be available. 27309a21e56SAlessandro Zummo 27409a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 27509a21e56SAlessandro Zummo will be called rtc-ds1307. 27609a21e56SAlessandro Zummo 27750d6c0eaSAlexandre Belloniconfig RTC_DRV_DS1307_CENTURY 27850d6c0eaSAlexandre Belloni bool "Century bit support for rtc-ds1307" 27950d6c0eaSAlexandre Belloni depends on RTC_DRV_DS1307 28050d6c0eaSAlexandre Belloni default n 28150d6c0eaSAlexandre Belloni help 28250d6c0eaSAlexandre Belloni The DS1307 driver suffered from a bug where it was enabling the 28350d6c0eaSAlexandre Belloni century bit inconditionnally but never used it when reading the time. 28450d6c0eaSAlexandre Belloni It made the driver unable to support dates beyond 2099. 28550d6c0eaSAlexandre Belloni Setting this option will add proper support for the century bit but if 28650d6c0eaSAlexandre Belloni the time was previously set using a kernel predating this option, 28750d6c0eaSAlexandre Belloni reading the date will return a date in the next century. 28850d6c0eaSAlexandre Belloni To solve that, you could boot a kernel without this option set, set 28950d6c0eaSAlexandre Belloni the RTC date and then boot a kernel with this option set. 29050d6c0eaSAlexandre Belloni 291bf4994d7SScott Woodconfig RTC_DRV_DS1374 29209b6bdb3SAlessandro Zummo tristate "Dallas/Maxim DS1374" 293bf4994d7SScott Wood help 294bf4994d7SScott Wood If you say yes here you get support for Dallas Semiconductor 295bf4994d7SScott Wood DS1374 real-time clock chips. If an interrupt is associated 296bf4994d7SScott Wood with the device, the alarm functionality is supported. 297bf4994d7SScott Wood 298bf4994d7SScott Wood This driver can also be built as a module. If so, the module 299bf4994d7SScott Wood will be called rtc-ds1374. 300bf4994d7SScott Wood 301920f91e5SSøren Andersenconfig RTC_DRV_DS1374_WDT 302920f91e5SSøren Andersen bool "Dallas/Maxim DS1374 watchdog timer" 303c7f3be4cSAlexandre Belloni depends on RTC_DRV_DS1374 && WATCHDOG 304c7f3be4cSAlexandre Belloni select WATCHDOG_CORE 305920f91e5SSøren Andersen help 306920f91e5SSøren Andersen If you say Y here you will get support for the 307920f91e5SSøren Andersen watchdog timer in the Dallas Semiconductor DS1374 308920f91e5SSøren Andersen real-time clock chips. 309920f91e5SSøren Andersen 31009a21e56SAlessandro Zummoconfig RTC_DRV_DS1672 31109a21e56SAlessandro Zummo tristate "Dallas/Maxim DS1672" 31209a21e56SAlessandro Zummo help 31309a21e56SAlessandro Zummo If you say yes here you get support for the 31409a21e56SAlessandro Zummo Dallas/Maxim DS1672 timekeeping chip. 31509a21e56SAlessandro Zummo 31609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 31709a21e56SAlessandro Zummo will be called rtc-ds1672. 31809a21e56SAlessandro Zummo 319dcaf0384SHeiko Stuebnerconfig RTC_DRV_HYM8563 320dcaf0384SHeiko Stuebner tristate "Haoyu Microelectronics HYM8563" 3213783055eSAlexandre Belloni depends on OF 322dcaf0384SHeiko Stuebner help 323dcaf0384SHeiko Stuebner Say Y to enable support for the HYM8563 I2C RTC chip. Apart 324dcaf0384SHeiko Stuebner from the usual rtc functions it provides a clock output of 325dcaf0384SHeiko Stuebner up to 32kHz. 326dcaf0384SHeiko Stuebner 327dcaf0384SHeiko Stuebner This driver can also be built as a module. If so, the module 328dcaf0384SHeiko Stuebner will be called rtc-hym8563. 329dcaf0384SHeiko Stuebner 33038ae176eSKim, Miloconfig RTC_DRV_LP8788 33138ae176eSKim, Milo tristate "TI LP8788 RTC driver" 33238ae176eSKim, Milo depends on MFD_LP8788 33338ae176eSKim, Milo help 33438ae176eSKim, Milo Say Y to enable support for the LP8788 RTC/ALARM driver. 33538ae176eSKim, Milo 33609a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900 33709b6bdb3SAlessandro Zummo tristate "Maxim MAX6900" 33809a21e56SAlessandro Zummo help 33909a21e56SAlessandro Zummo If you say yes here you will get support for the 34009a21e56SAlessandro Zummo Maxim MAX6900 I2C RTC chip. 34109a21e56SAlessandro Zummo 34209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 34309a21e56SAlessandro Zummo will be called rtc-max6900. 34409a21e56SAlessandro Zummo 34594c01ab6SStephen Warrenconfig RTC_DRV_MAX8907 34694c01ab6SStephen Warren tristate "Maxim MAX8907" 347959df777SKrzysztof Kozlowski depends on MFD_MAX8907 || COMPILE_TEST 348c05a31f4SCorentin Labbe select REGMAP_IRQ 34994c01ab6SStephen Warren help 35094c01ab6SStephen Warren If you say yes here you will get support for the 35194c01ab6SStephen Warren RTC of Maxim MAX8907 PMIC. 35294c01ab6SStephen Warren 35394c01ab6SStephen Warren This driver can also be built as a module. If so, the module 35494c01ab6SStephen Warren will be called rtc-max8907. 35594c01ab6SStephen Warren 356a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925 357a39069f6SHaojian Zhuang tristate "Maxim MAX8925" 358a39069f6SHaojian Zhuang depends on MFD_MAX8925 359a39069f6SHaojian Zhuang help 360a39069f6SHaojian Zhuang If you say yes here you will get support for the 361a39069f6SHaojian Zhuang RTC of Maxim MAX8925 PMIC. 362a39069f6SHaojian Zhuang 363a39069f6SHaojian Zhuang This driver can also be built as a module. If so, the module 364a39069f6SHaojian Zhuang will be called rtc-max8925. 365a39069f6SHaojian Zhuang 3669b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998 3679b16c0a4SJoonyoung Shim tristate "Maxim MAX8998" 3689b16c0a4SJoonyoung Shim depends on MFD_MAX8998 3699b16c0a4SJoonyoung Shim help 3709b16c0a4SJoonyoung Shim If you say yes here you will get support for the 3719b16c0a4SJoonyoung Shim RTC of Maxim MAX8998 PMIC. 3729b16c0a4SJoonyoung Shim 3739b16c0a4SJoonyoung Shim This driver can also be built as a module. If so, the module 3749b16c0a4SJoonyoung Shim will be called rtc-max8998. 3759b16c0a4SJoonyoung Shim 3765e0b2704SJonghwa Leeconfig RTC_DRV_MAX8997 3775e0b2704SJonghwa Lee tristate "Maxim MAX8997" 3785e0b2704SJonghwa Lee depends on MFD_MAX8997 3795e0b2704SJonghwa Lee help 3805e0b2704SJonghwa Lee If you say yes here you will get support for the 3815e0b2704SJonghwa Lee RTC of Maxim MAX8997 PMIC. 3825e0b2704SJonghwa Lee 3835e0b2704SJonghwa Lee This driver can also be built as a module. If so, the module 3845e0b2704SJonghwa Lee will be called rtc-max8997. 3855e0b2704SJonghwa Lee 386dedaf03bSAntoniu Miclausconfig RTC_DRV_MAX31335 387dedaf03bSAntoniu Miclaus tristate "Analog Devices MAX31335" 388dedaf03bSAntoniu Miclaus depends on I2C 389dedaf03bSAntoniu Miclaus depends on COMMON_CLK 390dedaf03bSAntoniu Miclaus depends on HWMON || HWMON=n 391dedaf03bSAntoniu Miclaus select REGMAP_I2C 392dedaf03bSAntoniu Miclaus help 393dedaf03bSAntoniu Miclaus If you say yes here you get support for the Analog Devices 394dedaf03bSAntoniu Miclaus MAX31335. 395dedaf03bSAntoniu Miclaus 396dedaf03bSAntoniu Miclaus This driver can also be built as a module. If so, the module 397dedaf03bSAntoniu Miclaus will be called rtc-max31335. 398dedaf03bSAntoniu Miclaus 399fca1dd03SJonghwa Leeconfig RTC_DRV_MAX77686 400fca1dd03SJonghwa Lee tristate "Maxim MAX77686" 401c58e4963SLuca Ceresoli depends on MFD_MAX77686 || MFD_MAX77620 || MFD_MAX77714 || COMPILE_TEST 402fca1dd03SJonghwa Lee help 403fca1dd03SJonghwa Lee If you say yes here you will get support for the 404726fe738SLaxman Dewangan RTC of Maxim MAX77686/MAX77620/MAX77802 PMIC. 405fca1dd03SJonghwa Lee 406fca1dd03SJonghwa Lee This driver can also be built as a module. If so, the module 407fca1dd03SJonghwa Lee will be called rtc-max77686. 408fca1dd03SJonghwa Lee 409a6de182dSAlex Elderconfig RTC_DRV_SPACEMIT_P1 410a6de182dSAlex Elder tristate "SpacemiT P1 RTC" 411a6de182dSAlex Elder depends on ARCH_SPACEMIT || COMPILE_TEST 412a6de182dSAlex Elder select MFD_SPACEMIT_P1 413a6de182dSAlex Elder default ARCH_SPACEMIT 414a6de182dSAlex Elder help 415a6de182dSAlex Elder Enable support for the RTC function in the SpacemiT P1 PMIC. 416a6de182dSAlex Elder This driver can also be built as a module, which will be called 417a6de182dSAlex Elder "spacemit-p1-rtc". 418a6de182dSAlex Elder 4195adbaed1SMia Linconfig RTC_DRV_NCT3018Y 4205adbaed1SMia Lin tristate "Nuvoton NCT3018Y" 4215adbaed1SMia Lin depends on OF 4225adbaed1SMia Lin help 4235adbaed1SMia Lin If you say yes here you get support for the Nuvoton NCT3018Y I2C RTC 4245adbaed1SMia Lin chip. 4255adbaed1SMia Lin 4265adbaed1SMia Lin This driver can also be built as a module, if so, the module will be 4275adbaed1SMia Lin called "rtc-nct3018y". 4285adbaed1SMia Lin 429d463bb14SMing Yuconfig RTC_DRV_NCT6694 430d463bb14SMing Yu tristate "Nuvoton NCT6694 RTC support" 431d463bb14SMing Yu depends on MFD_NCT6694 432d463bb14SMing Yu help 433d463bb14SMing Yu If you say yes to this option, support will be included for Nuvoton 434d463bb14SMing Yu NCT6694, a USB device to RTC. 435d463bb14SMing Yu 436d463bb14SMing Yu This driver can also be built as a module. If so, the module will 437d463bb14SMing Yu be called rtc-nct6694. 438d463bb14SMing Yu 4393ca1e326SChris Zhongconfig RTC_DRV_RK808 440dc79054aSTony Xie tristate "Rockchip RK805/RK808/RK809/RK817/RK818 RTC" 441c20e8c5bSSebastian Reichel depends on MFD_RK8XX 4423ca1e326SChris Zhong help 4433ca1e326SChris Zhong If you say yes here you will get support for the 444dc79054aSTony Xie RTC of RK805, RK809 and RK817, RK808 and RK818 PMIC. 4453ca1e326SChris Zhong 4463ca1e326SChris Zhong This driver can also be built as a module. If so, the module 4473ca1e326SChris Zhong will be called rk808-rtc. 4483ca1e326SChris Zhong 44909a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372 4505d4529beSPaul Mundt tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A" 45109a21e56SAlessandro Zummo help 45209a21e56SAlessandro Zummo If you say yes here you get support for the 4535d4529beSPaul Mundt Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips. 45409a21e56SAlessandro Zummo 45509a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 45609a21e56SAlessandro Zummo will be called rtc-rs5c372. 45709a21e56SAlessandro Zummo 45809a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208 45909b6bdb3SAlessandro Zummo tristate "Intersil ISL1208" 46009a21e56SAlessandro Zummo help 46109a21e56SAlessandro Zummo If you say yes here you get support for the 46209b6bdb3SAlessandro Zummo Intersil ISL1208 RTC chip. 46309a21e56SAlessandro Zummo 46409a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 46509a21e56SAlessandro Zummo will be called rtc-isl1208. 46609a21e56SAlessandro Zummo 467d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022 468d6c7428fSRoman Fietze tristate "Intersil ISL12022" 469b1a1baa6SRasmus Villemoes select REGMAP_I2C 470d6c7428fSRoman Fietze help 471d6c7428fSRoman Fietze If you say yes here you get support for the 472d6c7428fSRoman Fietze Intersil ISL12022 RTC chip. 473d6c7428fSRoman Fietze 474d6c7428fSRoman Fietze This driver can also be built as a module. If so, the module 475d6c7428fSRoman Fietze will be called rtc-isl12022. 476d6c7428fSRoman Fietze 4774731a431SDavid Daneyconfig RTC_DRV_ISL12026 4784731a431SDavid Daney tristate "Intersil ISL12026" 479bb0a1799SJean Delvare depends on OF 4804731a431SDavid Daney help 4814731a431SDavid Daney If you say yes here you get support for the 4824731a431SDavid Daney Intersil ISL12026 RTC chip. 4834731a431SDavid Daney 4844731a431SDavid Daney This driver can also be built as a module. If so, the module 4854731a431SDavid Daney will be called rtc-isl12026. 4864731a431SDavid Daney 48709a21e56SAlessandro Zummoconfig RTC_DRV_X1205 48809a21e56SAlessandro Zummo tristate "Xicor/Intersil X1205" 48909a21e56SAlessandro Zummo help 49009a21e56SAlessandro Zummo If you say yes here you get support for the 49109a21e56SAlessandro Zummo Xicor/Intersil X1205 RTC chip. 49209a21e56SAlessandro Zummo 49309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 49409a21e56SAlessandro Zummo will be called rtc-x1205. 49509a21e56SAlessandro Zummo 496f803f0d0SThierry Redingconfig RTC_DRV_PCF8523 497f803f0d0SThierry Reding tristate "NXP PCF8523" 49891f3849dSAlexandre Belloni select REGMAP_I2C 499f803f0d0SThierry Reding help 500f803f0d0SThierry Reding If you say yes here you get support for the NXP PCF8523 RTC 501f803f0d0SThierry Reding chips. 502f803f0d0SThierry Reding 503f803f0d0SThierry Reding This driver can also be built as a module. If so, the module 504f803f0d0SThierry Reding will be called rtc-pcf8523. 505f803f0d0SThierry Reding 506a9687aa2SEric Nelsonconfig RTC_DRV_PCF85363 507a9687aa2SEric Nelson tristate "NXP PCF85363" 508a9687aa2SEric Nelson select REGMAP_I2C 509a9687aa2SEric Nelson help 510a9687aa2SEric Nelson If you say yes here you get support for the PCF85363 RTC chip. 511a9687aa2SEric Nelson 512a9687aa2SEric Nelson This driver can also be built as a module. If so, the module 513a9687aa2SEric Nelson will be called rtc-pcf85363. 514a9687aa2SEric Nelson 515a9687aa2SEric Nelson The nvmem interface will be named pcf85363-#, where # is the 516a9687aa2SEric Nelson zero-based instance number. 517a9687aa2SEric Nelson 51809a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563 51909a21e56SAlessandro Zummo tristate "Philips PCF8563/Epson RTC8564" 52000f1bb9bSNobuhiro Iwamatsu select REGMAP_I2C 52109a21e56SAlessandro Zummo help 52209a21e56SAlessandro Zummo If you say yes here you get support for the 52309a21e56SAlessandro Zummo Philips PCF8563 RTC chip. The Epson RTC8564 52409a21e56SAlessandro Zummo should work as well. 52509a21e56SAlessandro Zummo 52609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 52709a21e56SAlessandro Zummo will be called rtc-pcf8563. 52809a21e56SAlessandro Zummo 52909a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583 53009a21e56SAlessandro Zummo tristate "Philips PCF8583" 53109a21e56SAlessandro Zummo help 53209a21e56SAlessandro Zummo If you say yes here you get support for the Philips PCF8583 53309a21e56SAlessandro Zummo RTC chip found on Acorn RiscPCs. This driver supports the 53409a21e56SAlessandro Zummo platform specific method of retrieving the current year from 53509a21e56SAlessandro Zummo the RTC's SRAM. It will work on other platforms with the same 53609a21e56SAlessandro Zummo chip, but the year will probably have to be tweaked. 53709a21e56SAlessandro Zummo 53809a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 53909a21e56SAlessandro Zummo will be called rtc-pcf8583. 54009a21e56SAlessandro Zummo 541caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80 5426b1a5235SWolfram Sang tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible" 543caaff562SAtsushi Nemoto help 544d3a126fcSSteven A. Falco If you say Y here you will get support for the ST M41T60 545d3a126fcSSteven A. Falco and M41T80 RTC chips series. Currently, the following chips are 546f30281f4SDaniel Glockner supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84, 5476b1a5235SWolfram Sang M41ST85, M41ST87, and MicroCrystal RV4162. 548caaff562SAtsushi Nemoto 549caaff562SAtsushi Nemoto This driver can also be built as a module. If so, the module 550caaff562SAtsushi Nemoto will be called rtc-m41t80. 551caaff562SAtsushi Nemoto 552617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT 553d3a126fcSSteven A. Falco bool "ST M41T65/M41T80 series RTC watchdog timer" 554617780d2SAtsushi Nemoto depends on RTC_DRV_M41T80 555617780d2SAtsushi Nemoto help 556617780d2SAtsushi Nemoto If you say Y here you will get support for the 557d3a126fcSSteven A. Falco watchdog timer in the ST M41T60 and M41T80 RTC chips series. 558fe5a591bSMatti Vaittinen 55932a4a4ebSMatti Vaittinenconfig RTC_DRV_BD70528 560e5e33525SMatti Vaittinen tristate "ROHM BD71815 and BD71828 PMIC RTC" 561e5e33525SMatti Vaittinen depends on MFD_ROHM_BD71828 56232a4a4ebSMatti Vaittinen help 56332a4a4ebSMatti Vaittinen If you say Y here you will get support for the RTC 564e5e33525SMatti Vaittinen block on ROHM BD71815 and BD71828 Power Management IC. 56532a4a4ebSMatti Vaittinen 56632a4a4ebSMatti Vaittinen This driver can also be built as a module. If so, the module 56732a4a4ebSMatti Vaittinen will be called rtc-bd70528. 568617780d2SAtsushi Nemoto 5691ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K 5701ce7c83fSPiotr Ziecik tristate "TI BQ32000" 5711ce7c83fSPiotr Ziecik help 5721ce7c83fSPiotr Ziecik If you say Y here you will get support for the TI 5731ce7c83fSPiotr Ziecik BQ32000 I2C RTC chip. 5741ce7c83fSPiotr Ziecik 5751ce7c83fSPiotr Ziecik This driver can also be built as a module. If so, the module 5761ce7c83fSPiotr Ziecik will be called rtc-bq32k. 5771ce7c83fSPiotr Ziecik 5780c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330 5796341e62bSChristoph Jaeger bool "TI TWL92330/Menelaus" 580bb35fb20SJan Engelhardt depends on MENELAUS 5810c4a59feSTony Lindgren help 5820c4a59feSTony Lindgren If you say yes here you get support for the RTC on the 58301dd2fbfSMatt LaPlante TWL92330 "Menelaus" power management chip, used with OMAP2 5840c4a59feSTony Lindgren platforms. The support is integrated with the rest of 5850c4a59feSTony Lindgren the Menelaus driver; it's not separate module. 5860c4a59feSTony Lindgren 587f96411abSDavid Brownellconfig RTC_DRV_TWL4030 588a6b49ffdSBalaji T K tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0" 5896b8029faSVenu Byravarasu depends on TWL4030_CORE 5901c02cbfeSNicolae Rosia depends on OF 591f96411abSDavid Brownell help 592f96411abSDavid Brownell If you say yes here you get support for the RTC on the 593a6b49ffdSBalaji T K TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms. 594f96411abSDavid Brownell 595f96411abSDavid Brownell This driver can also be built as a module. If so, the module 596a6b49ffdSBalaji T K will be called rtc-twl. 597f96411abSDavid Brownell 598d084885eSSoren Brinkmannconfig RTC_DRV_PALMAS 599d084885eSSoren Brinkmann tristate "TI Palmas RTC driver" 600d084885eSSoren Brinkmann depends on MFD_PALMAS 601d084885eSSoren Brinkmann help 602d084885eSSoren Brinkmann If you say yes here you get support for the RTC of TI PALMA series PMIC 603d084885eSSoren Brinkmann chips. 604d084885eSSoren Brinkmann 605d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 606d084885eSSoren Brinkmann will be called rtc-palma. 607d084885eSSoren Brinkmann 608dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X 609dc59ed38SLaxman Dewangan tristate "TI TPS6586X RTC driver" 610dc59ed38SLaxman Dewangan depends on MFD_TPS6586X 611dc59ed38SLaxman Dewangan help 612a895d57dSMasanari Iida TI Power Management IC TPS6586X supports RTC functionality 613dc59ed38SLaxman Dewangan along with alarm. This driver supports the RTC driver for 614dc59ed38SLaxman Dewangan the TPS6586X RTC module. 615dc59ed38SLaxman Dewangan 6169f67c1e6SEsteban Blancconfig RTC_DRV_TPS6594 6179f67c1e6SEsteban Blanc tristate "TI TPS6594 RTC driver" 6189f67c1e6SEsteban Blanc depends on MFD_TPS6594 6199f67c1e6SEsteban Blanc default MFD_TPS6594 6209f67c1e6SEsteban Blanc help 6219f67c1e6SEsteban Blanc TI Power Management IC TPS6594 supports RTC functionality 6229f67c1e6SEsteban Blanc along with alarm. This driver supports the RTC driver for 6239f67c1e6SEsteban Blanc the TPS6594 RTC module. 6249f67c1e6SEsteban Blanc 6259f67c1e6SEsteban Blanc This driver can also be built as a module. If so, the module 6269f67c1e6SEsteban Blanc will be called rtc-tps6594. 6279f67c1e6SEsteban Blanc 6280e783980SVenu Byravarasuconfig RTC_DRV_TPS65910 6290e783980SVenu Byravarasu tristate "TI TPS65910 RTC driver" 6309c3f0795SMichał Mirosław depends on MFD_TPS65910 6310e783980SVenu Byravarasu help 6320e783980SVenu Byravarasu If you say yes here you get support for the RTC on the 6330e783980SVenu Byravarasu TPS65910 chips. 6340e783980SVenu Byravarasu 6350e783980SVenu Byravarasu This driver can also be built as a module. If so, the module 6360e783980SVenu Byravarasu will be called rtc-tps65910. 6370e783980SVenu Byravarasu 63890829c08SVenu Byravarasuconfig RTC_DRV_RC5T583 63990829c08SVenu Byravarasu tristate "RICOH 5T583 RTC driver" 64090829c08SVenu Byravarasu depends on MFD_RC5T583 64190829c08SVenu Byravarasu help 64290829c08SVenu Byravarasu If you say yes here you get support for the RTC on the 64390829c08SVenu Byravarasu RICOH 5T583 chips. 64490829c08SVenu Byravarasu 64590829c08SVenu Byravarasu This driver can also be built as a module. If so, the module 64690829c08SVenu Byravarasu will be called rtc-rc5t583. 64790829c08SVenu Byravarasu 648540d1e15SAndreas Kemnadeconfig RTC_DRV_RC5T619 649540d1e15SAndreas Kemnade tristate "RICOH RC5T619 RTC driver" 650540d1e15SAndreas Kemnade depends on MFD_RN5T618 651540d1e15SAndreas Kemnade help 652540d1e15SAndreas Kemnade If you say yes here you get support for the RTC on the 653540d1e15SAndreas Kemnade RICOH RC5T619 chips. 654540d1e15SAndreas Kemnade 655540d1e15SAndreas Kemnade This driver can also be built as a module. If so, the module 656540d1e15SAndreas Kemnade will be called rtc-rc5t619. 657540d1e15SAndreas Kemnade 658c46288b0SByron Bradleyconfig RTC_DRV_S35390A 659c46288b0SByron Bradley tristate "Seiko Instruments S-35390A" 660d479540dSRandy Dunlap select BITREVERSE 661c46288b0SByron Bradley help 662c46288b0SByron Bradley If you say yes here you will get support for the Seiko 663c46288b0SByron Bradley Instruments S-35390A. 664c46288b0SByron Bradley 665c46288b0SByron Bradley This driver can also be built as a module. If so the module 666c46288b0SByron Bradley will be called rtc-s35390a. 667c46288b0SByron Bradley 668c6d8f400SSergey Lapinconfig RTC_DRV_FM3130 669c6d8f400SSergey Lapin tristate "Ramtron FM3130" 670c6d8f400SSergey Lapin help 671c6d8f400SSergey Lapin If you say Y here you will get support for the 672c6d8f400SSergey Lapin Ramtron FM3130 RTC chips. 673c6d8f400SSergey Lapin Ramtron FM3130 is a chip with two separate devices inside, 674c6d8f400SSergey Lapin RTC clock and FRAM. This driver provides only RTC functionality. 675c6d8f400SSergey Lapin 676c6d8f400SSergey Lapin This driver can also be built as a module. If so the module 677c6d8f400SSergey Lapin will be called rtc-fm3130. 678c6d8f400SSergey Lapin 679ed13d89bSAkshay Bhatconfig RTC_DRV_RX8010 680ed13d89bSAkshay Bhat tristate "Epson RX8010SJ" 6810c45d3e2SYu-Tung Chang select REGMAP_I2C 682ed13d89bSAkshay Bhat help 683ed13d89bSAkshay Bhat If you say yes here you get support for the Epson RX8010SJ RTC 684ed13d89bSAkshay Bhat chip. 685ed13d89bSAkshay Bhat 686ed13d89bSAkshay Bhat This driver can also be built as a module. If so, the module 687ed13d89bSAkshay Bhat will be called rtc-rx8010. 688ed13d89bSAkshay Bhat 689f8c81d15SWaqar Hameedconfig RTC_DRV_RX8111 690f8c81d15SWaqar Hameed tristate "Epson RX8111" 691f8c81d15SWaqar Hameed select REGMAP_I2C 692f8c81d15SWaqar Hameed depends on I2C 693f8c81d15SWaqar Hameed help 694f8c81d15SWaqar Hameed If you say yes here you will get support for the Epson RX8111 RTC. 695f8c81d15SWaqar Hameed 696f8c81d15SWaqar Hameed This driver can also be built as a module. If so, the module will be 697f8c81d15SWaqar Hameed called rtc-rx8111. 698f8c81d15SWaqar Hameed 699a7fa9851SMartyn Welchconfig RTC_DRV_RX8581 70051f896ffSBiju Das tristate "Epson RX-8571/RX-8581" 701578c2b66SAlexandre Belloni select REGMAP_I2C 702a7fa9851SMartyn Welch help 70351f896ffSBiju Das If you say yes here you will get support for the Epson RX-8571/ 70451f896ffSBiju Das RX-8581. 705a7fa9851SMartyn Welch 706a7fa9851SMartyn Welch This driver can also be built as a module. If so the module 707a7fa9851SMartyn Welch will be called rtc-rx8581. 708a7fa9851SMartyn Welch 7093c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025 7103c2b9075SWolfgang Grandegger tristate "Epson RX-8025SA/NB" 7113c2b9075SWolfgang Grandegger help 7123c2b9075SWolfgang Grandegger If you say yes here you get support for the Epson 7133c2b9075SWolfgang Grandegger RX-8025SA/NB RTC chips. 7143c2b9075SWolfgang Grandegger 7153c2b9075SWolfgang Grandegger This driver can also be built as a module. If so, the module 7163c2b9075SWolfgang Grandegger will be called rtc-rx8025. 7173c2b9075SWolfgang Grandegger 718ae3551f9SMike Rapoportconfig RTC_DRV_EM3027 719ae3551f9SMike Rapoport tristate "EM Microelectronic EM3027" 720ae3551f9SMike Rapoport help 721ae3551f9SMike Rapoport If you say yes here you get support for the EM 722ae3551f9SMike Rapoport Microelectronic EM3027 RTC chips. 723ae3551f9SMike Rapoport 724ae3551f9SMike Rapoport This driver can also be built as a module. If so, the module 725ae3551f9SMike Rapoport will be called rtc-em3027. 726ae3551f9SMike Rapoport 727e6e7376cSAlexandre Belloniconfig RTC_DRV_RV3028 728e6e7376cSAlexandre Belloni tristate "Micro Crystal RV3028" 729578c2b66SAlexandre Belloni select REGMAP_I2C 730e6e7376cSAlexandre Belloni help 731e6e7376cSAlexandre Belloni If you say yes here you get support for the Micro Crystal 732e6e7376cSAlexandre Belloni RV3028. 733e6e7376cSAlexandre Belloni 734e6e7376cSAlexandre Belloni This driver can also be built as a module. If so, the module 735e6e7376cSAlexandre Belloni will be called rtc-rv3028. 736e6e7376cSAlexandre Belloni 7372eeaa532SAlexandre Belloniconfig RTC_DRV_RV3032 7382eeaa532SAlexandre Belloni tristate "Micro Crystal RV3032" 7392eeaa532SAlexandre Belloni select REGMAP_I2C 7402eeaa532SAlexandre Belloni help 7412eeaa532SAlexandre Belloni If you say yes here you get support for the Micro Crystal 7422eeaa532SAlexandre Belloni RV3032. 7432eeaa532SAlexandre Belloni 7442eeaa532SAlexandre Belloni This driver can also be built as a module. If so, the module 7452eeaa532SAlexandre Belloni will be called rtc-rv3032. 7462eeaa532SAlexandre Belloni 7471e3929efSAlexandre Belloniconfig RTC_DRV_RV8803 74834166a00SBenoît Thébaudeau tristate "Micro Crystal RV8803, Epson RX8900" 7491e3929efSAlexandre Belloni help 75034166a00SBenoît Thébaudeau If you say yes here you get support for the Micro Crystal RV8803 and 75134166a00SBenoît Thébaudeau Epson RX8900 RTC chips. 7521e3929efSAlexandre Belloni 7531e3929efSAlexandre Belloni This driver can also be built as a module. If so, the module 7541e3929efSAlexandre Belloni will be called rtc-rv8803. 7551e3929efSAlexandre Belloni 7565bccae6eSSangbeom Kimconfig RTC_DRV_S5M 7570c5deb1eSKrzysztof Kozlowski tristate "Samsung S2M/S5M series" 758959df777SKrzysztof Kozlowski depends on MFD_SEC_CORE || COMPILE_TEST 759959df777SKrzysztof Kozlowski select REGMAP_IRQ 7601f0cbda3SBartosz Golaszewski select REGMAP_I2C 7615bccae6eSSangbeom Kim help 7625bccae6eSSangbeom Kim If you say yes here you will get support for the 7630c5deb1eSKrzysztof Kozlowski RTC of Samsung S2MPS14 and S5M PMIC series. 7645bccae6eSSangbeom Kim 7655bccae6eSSangbeom Kim This driver can also be built as a module. If so, the module 7665bccae6eSSangbeom Kim will be called rtc-s5m. 7675bccae6eSSangbeom Kim 7685af858acSTóth Jánosconfig RTC_DRV_SD2405AL 7695af858acSTóth János tristate "DFRobot SD2405AL" 7705af858acSTóth János select REGMAP_I2C 7715af858acSTóth János help 7725af858acSTóth János If you say yes here you will get support for the 7735af858acSTóth János DFRobot SD2405AL I2C RTC Module. 7745af858acSTóth János 7755af858acSTóth János This driver can also be built as a module. If so, the module 7765af858acSTóth János will be called rtc-sd2405al. 7775af858acSTóth János 7781d67a232SDianlong Liconfig RTC_DRV_SD3078 77922e7d514SAlexandre Belloni tristate "ZXW Shenzhen whwave SD3078" 780578c2b66SAlexandre Belloni select REGMAP_I2C 7811d67a232SDianlong Li help 78222e7d514SAlexandre Belloni If you say yes here you get support for the ZXW Shenzhen whwave 7831d67a232SDianlong Li SD3078 RTC chips. 7841d67a232SDianlong Li 7851d67a232SDianlong Li This driver can also be built as a module. If so, the module 7861d67a232SDianlong Li will be called rtc-sd3078 7871d67a232SDianlong Li 788bb35fb20SJan Engelhardtendif # I2C 789bb35fb20SJan Engelhardt 79009a21e56SAlessandro Zummocomment "SPI RTC drivers" 791bb35fb20SJan Engelhardt 792bb35fb20SJan Engelhardtif SPI_MASTER 79309a21e56SAlessandro Zummo 79474d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93 79574d34d4bSVoss, Nikolaus tristate "ST M41T93" 79674d34d4bSVoss, Nikolaus help 79774d34d4bSVoss, Nikolaus If you say yes here you will get support for the 79874d34d4bSVoss, Nikolaus ST M41T93 SPI RTC chip. 79974d34d4bSVoss, Nikolaus 80074d34d4bSVoss, Nikolaus This driver can also be built as a module. If so, the module 80174d34d4bSVoss, Nikolaus will be called rtc-m41t93. 80274d34d4bSVoss, Nikolaus 8038fc2c767SKim B. Heinoconfig RTC_DRV_M41T94 8048fc2c767SKim B. Heino tristate "ST M41T94" 8058fc2c767SKim B. Heino help 8068fc2c767SKim B. Heino If you say yes here you will get support for the 8078fc2c767SKim B. Heino ST M41T94 SPI RTC chip. 8088fc2c767SKim B. Heino 8098fc2c767SKim B. Heino This driver can also be built as a module. If so, the module 8108fc2c767SKim B. Heino will be called rtc-m41t94. 8118fc2c767SKim B. Heino 812d25a5ed3SSergey Yanovichconfig RTC_DRV_DS1302 813d25a5ed3SSergey Yanovich tristate "Dallas/Maxim DS1302" 814d25a5ed3SSergey Yanovich depends on SPI 815d25a5ed3SSergey Yanovich help 816d25a5ed3SSergey Yanovich If you say yes here you get support for the Dallas DS1302 RTC chips. 817d25a5ed3SSergey Yanovich 818d25a5ed3SSergey Yanovich This driver can also be built as a module. If so, the module 819d25a5ed3SSergey Yanovich will be called rtc-ds1302. 820d25a5ed3SSergey Yanovich 82153e84b67SDavid Brownellconfig RTC_DRV_DS1305 82253e84b67SDavid Brownell tristate "Dallas/Maxim DS1305/DS1306" 82353e84b67SDavid Brownell help 82453e84b67SDavid Brownell Select this driver to get support for the Dallas/Maxim DS1305 82553e84b67SDavid Brownell and DS1306 real time clock chips. These support a trickle 82653e84b67SDavid Brownell charger, alarms, and NVRAM in addition to the clock. 82753e84b67SDavid Brownell 82853e84b67SDavid Brownell This driver can also be built as a module. If so, the module 82953e84b67SDavid Brownell will be called rtc-ds1305. 83053e84b67SDavid Brownell 8311d6316f5SRaghavendra Ganigaconfig RTC_DRV_DS1343 8320dd449b1SRaghavendra Ganiga select REGMAP_SPI 8331d6316f5SRaghavendra Ganiga tristate "Dallas/Maxim DS1343/DS1344" 8341d6316f5SRaghavendra Ganiga help 8351d6316f5SRaghavendra Ganiga If you say yes here you get support for the 8361d6316f5SRaghavendra Ganiga Dallas/Maxim DS1343 and DS1344 real time clock chips. 8371d6316f5SRaghavendra Ganiga Support for trickle charger, alarm is provided. 8381d6316f5SRaghavendra Ganiga 8391d6316f5SRaghavendra Ganiga This driver can also be built as a module. If so, the module 8401d6316f5SRaghavendra Ganiga will be called rtc-ds1343. 8411d6316f5SRaghavendra Ganiga 842617b26a0SRaghavendra Ganigaconfig RTC_DRV_DS1347 843ee85bb5bSRaghavendra Ganiga select REGMAP_SPI 844617b26a0SRaghavendra Ganiga tristate "Dallas/Maxim DS1347" 845617b26a0SRaghavendra Ganiga help 846617b26a0SRaghavendra Ganiga If you say yes here you get support for the 847617b26a0SRaghavendra Ganiga Dallas/Maxim DS1347 chips. 848617b26a0SRaghavendra Ganiga 849617b26a0SRaghavendra Ganiga This driver only supports the RTC feature, and not other chip 850617b26a0SRaghavendra Ganiga features such as alarms. 851617b26a0SRaghavendra Ganiga 852617b26a0SRaghavendra Ganiga This driver can also be built as a module. If so, the module 853617b26a0SRaghavendra Ganiga will be called rtc-ds1347. 854617b26a0SRaghavendra Ganiga 85506de1808SMark Jacksonconfig RTC_DRV_DS1390 85606de1808SMark Jackson tristate "Dallas/Maxim DS1390/93/94" 85706de1808SMark Jackson help 8587b9b2ef1SAlessandro Zummo If you say yes here you get support for the 8597b9b2ef1SAlessandro Zummo Dallas/Maxim DS1390/93/94 chips. 86006de1808SMark Jackson 861fa395fb8SIvan Grimaldi This driver supports the RTC feature and trickle charging but not 862fa395fb8SIvan Grimaldi other chip features such as alarms. 86306de1808SMark Jackson 86406de1808SMark Jackson This driver can also be built as a module. If so, the module 86506de1808SMark Jackson will be called rtc-ds1390. 86606de1808SMark Jackson 86706776c89SVenkat Prashanth B Uconfig RTC_DRV_MAX6916 86806776c89SVenkat Prashanth B U tristate "Maxim MAX6916" 86906776c89SVenkat Prashanth B U help 87006776c89SVenkat Prashanth B U If you say yes here you will get support for the 87106776c89SVenkat Prashanth B U Maxim MAX6916 SPI RTC chip. 87206776c89SVenkat Prashanth B U 87306776c89SVenkat Prashanth B U This driver only supports the RTC feature, and not other chip 87406776c89SVenkat Prashanth B U features such as alarms. 87506776c89SVenkat Prashanth B U 87606776c89SVenkat Prashanth B U This driver can also be built as a module. If so, the module 87706776c89SVenkat Prashanth B U will be called rtc-max6916. 87806776c89SVenkat Prashanth B U 8792805b969SMagnus Dammconfig RTC_DRV_R9701 8802805b969SMagnus Damm tristate "Epson RTC-9701JE" 8812805b969SMagnus Damm help 8822805b969SMagnus Damm If you say yes here you will get support for the 8832805b969SMagnus Damm Epson RTC-9701JE SPI RTC chip. 8842805b969SMagnus Damm 8852805b969SMagnus Damm This driver can also be built as a module. If so, the module 8862805b969SMagnus Damm will be called rtc-r9701. 8872805b969SMagnus Damm 888d084885eSSoren Brinkmannconfig RTC_DRV_RX4581 889d084885eSSoren Brinkmann tristate "Epson RX-4581" 890d084885eSSoren Brinkmann help 891d084885eSSoren Brinkmann If you say yes here you will get support for the Epson RX-4581. 892d084885eSSoren Brinkmann 893d084885eSSoren Brinkmann This driver can also be built as a module. If so the module 894d084885eSSoren Brinkmann will be called rtc-rx4581. 895d084885eSSoren Brinkmann 89609a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348 89709a21e56SAlessandro Zummo tristate "Ricoh RS5C348A/B" 89809a21e56SAlessandro Zummo help 89909a21e56SAlessandro Zummo If you say yes here you get support for the 90009a21e56SAlessandro Zummo Ricoh RS5C348A and RS5C348B RTC chips. 90109a21e56SAlessandro Zummo 90209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 90309a21e56SAlessandro Zummo will be called rtc-rs5c348. 90409a21e56SAlessandro Zummo 905d084885eSSoren Brinkmannconfig RTC_DRV_MAX6902 906d084885eSSoren Brinkmann tristate "Maxim MAX6902" 907d084885eSSoren Brinkmann help 908d084885eSSoren Brinkmann If you say yes here you will get support for the 909d084885eSSoren Brinkmann Maxim MAX6902 SPI RTC chip. 910d084885eSSoren Brinkmann 911d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 912d084885eSSoren Brinkmann will be called rtc-max6902. 913d084885eSSoren Brinkmann 9147f3923a1SChris Vergesconfig RTC_DRV_PCF2123 9157f3923a1SChris Verges tristate "NXP PCF2123" 916f2f5cb6aSYueHaibing select REGMAP_SPI 9177f3923a1SChris Verges help 9187f3923a1SChris Verges If you say yes here you get support for the NXP PCF2123 9197f3923a1SChris Verges RTC chip. 9207f3923a1SChris Verges 9217f3923a1SChris Verges This driver can also be built as a module. If so, the module 9227f3923a1SChris Verges will be called rtc-pcf2123. 9237f3923a1SChris Verges 9241fcbe42cSJosef Gajdusekconfig RTC_DRV_MCP795 9251fcbe42cSJosef Gajdusek tristate "Microchip MCP795" 9261fcbe42cSJosef Gajdusek help 9271fcbe42cSJosef Gajdusek If you say yes here you will get support for the Microchip MCP795. 9281fcbe42cSJosef Gajdusek 9291fcbe42cSJosef Gajdusek This driver can also be built as a module. If so the module 9301fcbe42cSJosef Gajdusek will be called rtc-mcp795. 9311fcbe42cSJosef Gajdusek 932bb35fb20SJan Engelhardtendif # SPI_MASTER 933bb35fb20SJan Engelhardt 934080481f5SAkinobu Mita# 935080481f5SAkinobu Mita# Helper to resolve issues with configs that have SPI enabled but I2C 936080481f5SAkinobu Mita# modular. See SND_SOC_I2C_AND_SPI for more information 937080481f5SAkinobu Mita# 938080481f5SAkinobu Mitaconfig RTC_I2C_AND_SPI 939080481f5SAkinobu Mita tristate 940080481f5SAkinobu Mita default m if I2C=m 941080481f5SAkinobu Mita default y if I2C=y 942080481f5SAkinobu Mita default y if SPI_MASTER=y 943080481f5SAkinobu Mita 944080481f5SAkinobu Mitacomment "SPI and I2C RTC drivers" 945080481f5SAkinobu Mita 946080481f5SAkinobu Mitaconfig RTC_DRV_DS3232 947080481f5SAkinobu Mita tristate "Dallas/Maxim DS3232/DS3234" 948080481f5SAkinobu Mita depends on RTC_I2C_AND_SPI 94934719de9SGeert Uytterhoeven select REGMAP_I2C if I2C 95034719de9SGeert Uytterhoeven select REGMAP_SPI if SPI_MASTER 951080481f5SAkinobu Mita help 952080481f5SAkinobu Mita If you say yes here you get support for Dallas Semiconductor 953080481f5SAkinobu Mita DS3232 and DS3234 real-time clock chips. If an interrupt is associated 954080481f5SAkinobu Mita with the device, the alarm functionality is supported. 955080481f5SAkinobu Mita 956080481f5SAkinobu Mita This driver can also be built as a module. If so, the module 957080481f5SAkinobu Mita will be called rtc-ds3232. 958080481f5SAkinobu Mita 959c35c4195SKirill Esipovconfig RTC_DRV_DS3232_HWMON 960c35c4195SKirill Esipov bool "HWMON support for Dallas/Maxim DS3232/DS3234" 961c35c4195SKirill Esipov depends on RTC_DRV_DS3232 && HWMON && !(RTC_DRV_DS3232=y && HWMON=m) 962c35c4195SKirill Esipov default y 963c35c4195SKirill Esipov help 964c35c4195SKirill Esipov Say Y here if you want to expose temperature sensor data on 965c35c4195SKirill Esipov rtc-ds3232 966c35c4195SKirill Esipov 9679408ec1aSAkinobu Mitaconfig RTC_DRV_PCF2127 9689408ec1aSAkinobu Mita tristate "NXP PCF2127" 9699408ec1aSAkinobu Mita depends on RTC_I2C_AND_SPI 97034719de9SGeert Uytterhoeven select REGMAP_I2C if I2C 97134719de9SGeert Uytterhoeven select REGMAP_SPI if SPI_MASTER 97228abbba3SBruno Thomsen select WATCHDOG_CORE if WATCHDOG 9739408ec1aSAkinobu Mita help 974afc505bfSHugo Villeneuve If you say yes here you get support for the NXP PCF2127/29/31 RTC 9750e735eaaSBruno Thomsen chips with integrated quartz crystal for industrial applications. 976afc505bfSHugo Villeneuve These chips also have watchdog timer and tamper switch detection 9770e735eaaSBruno Thomsen features. 9780e735eaaSBruno Thomsen 9790e735eaaSBruno Thomsen PCF2127 has an additional feature of 512 bytes battery backed 9800e735eaaSBruno Thomsen memory that's accessible using nvmem interface. 9819408ec1aSAkinobu Mita 9829408ec1aSAkinobu Mita This driver can also be built as a module. If so, the module 9839408ec1aSAkinobu Mita will be called rtc-pcf2127. 9849408ec1aSAkinobu Mita 985a3c7f7e1SAntoni Pokusinskiconfig RTC_DRV_PCF85063 986a3c7f7e1SAntoni Pokusinski tristate "NXP PCF85063" 987a3c7f7e1SAntoni Pokusinski depends on RTC_I2C_AND_SPI 988a3c7f7e1SAntoni Pokusinski select REGMAP_I2C if I2C 989a3c7f7e1SAntoni Pokusinski select REGMAP_SPI if SPI_MASTER 990a3c7f7e1SAntoni Pokusinski help 991a3c7f7e1SAntoni Pokusinski If you say yes here you get support for the PCF85063 and RV8063 992a3c7f7e1SAntoni Pokusinski RTC chips. 993a3c7f7e1SAntoni Pokusinski 994a3c7f7e1SAntoni Pokusinski This driver can also be built as a module. If so, the module 995a3c7f7e1SAntoni Pokusinski will be called rtc-pcf85063. 996a3c7f7e1SAntoni Pokusinski 997c2a1c145SMylène Josserandconfig RTC_DRV_RV3029C2 998c2a1c145SMylène Josserand tristate "Micro Crystal RV3029/3049" 999c2a1c145SMylène Josserand depends on RTC_I2C_AND_SPI 100034719de9SGeert Uytterhoeven select REGMAP_I2C if I2C 100134719de9SGeert Uytterhoeven select REGMAP_SPI if SPI_MASTER 1002c2a1c145SMylène Josserand help 1003c2a1c145SMylène Josserand If you say yes here you get support for the Micro Crystal 1004c2a1c145SMylène Josserand RV3029 and RV3049 RTC chips. 1005c2a1c145SMylène Josserand 1006c2a1c145SMylène Josserand This driver can also be built as a module. If so, the module 1007c2a1c145SMylène Josserand will be called rtc-rv3029c2. 1008c2a1c145SMylène Josserand 1009c2a1c145SMylène Josserandconfig RTC_DRV_RV3029_HWMON 1010c2a1c145SMylène Josserand bool "HWMON support for RV3029/3049" 1011c2a1c145SMylène Josserand depends on RTC_DRV_RV3029C2 && HWMON 1012c2a1c145SMylène Josserand depends on !(RTC_DRV_RV3029C2=y && HWMON=m) 1013c2a1c145SMylène Josserand default y 1014c2a1c145SMylène Josserand help 1015c2a1c145SMylène Josserand Say Y here if you want to expose temperature sensor data on 1016c2a1c145SMylène Josserand rtc-rv3029. 1017c2a1c145SMylène Josserand 1018afa819c2SClaudius Heineconfig RTC_DRV_RX6110 1019afa819c2SClaudius Heine tristate "Epson RX-6110" 1020afa819c2SClaudius Heine depends on RTC_I2C_AND_SPI 1021afa819c2SClaudius Heine select REGMAP_SPI if SPI_MASTER 1022afa819c2SClaudius Heine select REGMAP_I2C if I2C 1023afa819c2SClaudius Heine help 1024afa819c2SClaudius Heine If you say yes here you will get support for the Epson RX-6110. 1025afa819c2SClaudius Heine 1026afa819c2SClaudius Heine This driver can also be built as a module. If so the module 1027afa819c2SClaudius Heine will be called rtc-rx6110. 1028afa819c2SClaudius Heine 102909a21e56SAlessandro Zummocomment "Platform RTC drivers" 10300c86edc0SAlessandro Zummo 1031290cd0f0SChristoph Hellwig# this 'CMOS' RTC driver is arch dependent because it requires 1032290cd0f0SChristoph Hellwig# <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a 10337be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device. 10347be2c7c9SDavid Brownell 10357be2c7c9SDavid Brownellconfig RTC_DRV_CMOS 103609a21e56SAlessandro Zummo tristate "PC-style 'CMOS'" 1037a687a533SArnd Bergmann depends on X86 || ARM || PPC || MIPS || SPARC64 10388bb12adbSNiklas Schnelle depends on HAS_IOPORT || MACH_DECSTATION 1039c7500900SDavid Brownell default y if X86 1040d6faca40SArnd Bergmann select RTC_MC146818_LIB 10417be2c7c9SDavid Brownell help 10427be2c7c9SDavid Brownell Say "yes" here to get direct support for the real time clock 10437be2c7c9SDavid Brownell found in every PC or ACPI-based system, and some other boards. 10447be2c7c9SDavid Brownell Specifically the original MC146818, compatibles like those in 10457be2c7c9SDavid Brownell PC south bridges, the DS12887 or M48T86, some multifunction 10467be2c7c9SDavid Brownell or LPC bus chips, and so on. 10477be2c7c9SDavid Brownell 10487be2c7c9SDavid Brownell Your system will need to define the platform device used by 10497be2c7c9SDavid Brownell this driver, otherwise it won't be accessible. This means 10507be2c7c9SDavid Brownell you can safely enable this driver if you don't know whether 10517be2c7c9SDavid Brownell or not your board has this kind of hardware. 10527be2c7c9SDavid Brownell 10537be2c7c9SDavid Brownell This driver can also be built as a module. If so, the module 10547be2c7c9SDavid Brownell will be called rtc-cmos. 10557be2c7c9SDavid Brownell 105685d0b3a5SRichard Hendersonconfig RTC_DRV_ALPHA 105785d0b3a5SRichard Henderson bool "Alpha PC-style CMOS" 105885d0b3a5SRichard Henderson depends on ALPHA 10598bb12adbSNiklas Schnelle depends on HAS_IOPORT 1060d6faca40SArnd Bergmann select RTC_MC146818_LIB 106185d0b3a5SRichard Henderson default y 106285d0b3a5SRichard Henderson help 106385d0b3a5SRichard Henderson Direct support for the real-time clock found on every Alpha 106485d0b3a5SRichard Henderson system, specifically MC146818 compatibles. If in doubt, say Y. 106585d0b3a5SRichard Henderson 1066537739deSThomas Bogendoerferconfig RTC_DRV_DS1216 1067537739deSThomas Bogendoerfer tristate "Dallas DS1216" 1068bb35fb20SJan Engelhardt depends on SNI_RM 1069537739deSThomas Bogendoerfer help 1070537739deSThomas Bogendoerfer If you say yes here you get support for the Dallas DS1216 RTC chips. 1071537739deSThomas Bogendoerfer 10725f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286 10735f119f29SThomas Bogendoerfer tristate "Dallas DS1286" 1074706b632dSChen Gang depends on HAS_IOMEM 10755f119f29SThomas Bogendoerfer help 10765f119f29SThomas Bogendoerfer If you say yes here you get support for the Dallas DS1286 RTC chips. 10775f119f29SThomas Bogendoerfer 10788f26795aSAndrew Sharpconfig RTC_DRV_DS1511 10798f26795aSAndrew Sharp tristate "Dallas DS1511" 1080706b632dSChen Gang depends on HAS_IOMEM 10818f26795aSAndrew Sharp help 10828f26795aSAndrew Sharp If you say yes here you get support for the 10838f26795aSAndrew Sharp Dallas DS1511 timekeeping/watchdog chip. 10848f26795aSAndrew Sharp 10858f26795aSAndrew Sharp This driver can also be built as a module. If so, the module 10868f26795aSAndrew Sharp will be called rtc-ds1511. 10878f26795aSAndrew Sharp 10889bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553 108909b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1553" 1090706b632dSChen Gang depends on HAS_IOMEM 10919bf5b4f5SAtsushi Nemoto help 10929bf5b4f5SAtsushi Nemoto If you say yes here you get support for the 109309b6bdb3SAlessandro Zummo Maxim/Dallas DS1553 timekeeping chip. 10949bf5b4f5SAtsushi Nemoto 10959bf5b4f5SAtsushi Nemoto This driver can also be built as a module. If so, the module 10969bf5b4f5SAtsushi Nemoto will be called rtc-ds1553. 10979bf5b4f5SAtsushi Nemoto 1098aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685_FAMILY 1099aaaf5fbfSJoshua Kinard tristate "Dallas/Maxim DS1685 Family" 11009c795799SJohannes Berg depends on HAS_IOMEM 1101aaaf5fbfSJoshua Kinard help 1102aaaf5fbfSJoshua Kinard If you say yes here you get support for the Dallas/Maxim DS1685 1103aaaf5fbfSJoshua Kinard family of real time chips. This family includes the DS1685/DS1687, 1104aaaf5fbfSJoshua Kinard DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and 1105aaaf5fbfSJoshua Kinard DS17885/DS17887 chips. 1106aaaf5fbfSJoshua Kinard 1107aaaf5fbfSJoshua Kinard This driver can also be built as a module. If so, the module 1108aaaf5fbfSJoshua Kinard will be called rtc-ds1685. 1109aaaf5fbfSJoshua Kinard 1110aaaf5fbfSJoshua Kinardchoice 1111aaaf5fbfSJoshua Kinard prompt "Subtype" 1112aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY 1113aaaf5fbfSJoshua Kinard default RTC_DRV_DS1685 1114aaaf5fbfSJoshua Kinard 1115aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685 1116aaaf5fbfSJoshua Kinard bool "DS1685/DS1687" 1117aaaf5fbfSJoshua Kinard help 1118aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1685/DS1687 real time 1119aaaf5fbfSJoshua Kinard clock chip. 1120aaaf5fbfSJoshua Kinard 1121aaaf5fbfSJoshua Kinard This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30) 1122aaaf5fbfSJoshua Kinard systems, as well as EPPC-405-UC modules by electronic system design 1123aaaf5fbfSJoshua Kinard GmbH. 1124aaaf5fbfSJoshua Kinard 1125aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1689 1126aaaf5fbfSJoshua Kinard bool "DS1689/DS1693" 1127aaaf5fbfSJoshua Kinard help 1128aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1689/DS1693 real time 1129aaaf5fbfSJoshua Kinard clock chip. 1130aaaf5fbfSJoshua Kinard 1131aaaf5fbfSJoshua Kinard This is an older RTC chip, supplanted by the DS1685/DS1687 above, 1132aaaf5fbfSJoshua Kinard which supports a few minor features such as Vcc, Vbat, and Power 1133aaaf5fbfSJoshua Kinard Cycle counters, plus a customer-specific, 8-byte ROM/Serial number. 1134aaaf5fbfSJoshua Kinard 1135aaaf5fbfSJoshua Kinard It also works for the even older DS1688/DS1691 RTC chips, which are 1136aaaf5fbfSJoshua Kinard virtually the same and carry the same model number. Both chips 1137aaaf5fbfSJoshua Kinard have 114 bytes of user NVRAM. 1138aaaf5fbfSJoshua Kinard 1139aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17285 1140aaaf5fbfSJoshua Kinard bool "DS17285/DS17287" 1141aaaf5fbfSJoshua Kinard help 1142aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17285/DS17287 real time 1143aaaf5fbfSJoshua Kinard clock chip. 1144aaaf5fbfSJoshua Kinard 1145aaaf5fbfSJoshua Kinard This chip features 2kb of extended NV-SRAM. It may possibly be 1146aaaf5fbfSJoshua Kinard found in some SGI O2 systems (rare). 1147aaaf5fbfSJoshua Kinard 1148aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17485 1149aaaf5fbfSJoshua Kinard bool "DS17485/DS17487" 1150aaaf5fbfSJoshua Kinard help 1151aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17485/DS17487 real time 1152aaaf5fbfSJoshua Kinard clock chip. 1153aaaf5fbfSJoshua Kinard 1154aaaf5fbfSJoshua Kinard This chip features 4kb of extended NV-SRAM. 1155aaaf5fbfSJoshua Kinard 1156aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17885 1157aaaf5fbfSJoshua Kinard bool "DS17885/DS17887" 1158aaaf5fbfSJoshua Kinard help 1159aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17885/DS17887 real time 1160aaaf5fbfSJoshua Kinard clock chip. 1161aaaf5fbfSJoshua Kinard 1162aaaf5fbfSJoshua Kinard This chip features 8kb of extended NV-SRAM. 1163aaaf5fbfSJoshua Kinard 1164aaaf5fbfSJoshua Kinardendchoice 1165aaaf5fbfSJoshua Kinard 116609b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742 116709b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1742/1743" 1168706b632dSChen Gang depends on HAS_IOMEM 116909b6bdb3SAlessandro Zummo help 117009b6bdb3SAlessandro Zummo If you say yes here you get support for the 117109b6bdb3SAlessandro Zummo Maxim/Dallas DS1742/1743 timekeeping chip. 117209b6bdb3SAlessandro Zummo 117309b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 117409b6bdb3SAlessandro Zummo will be called rtc-ds1742. 117509b6bdb3SAlessandro Zummo 1176ad0200f7SJean Delvareconfig RTC_DRV_DS2404 1177ad0200f7SJean Delvare tristate "Maxim/Dallas DS2404" 1178ad0200f7SJean Delvare help 1179ad0200f7SJean Delvare If you say yes here you get support for the 1180ad0200f7SJean Delvare Dallas DS2404 RTC chip. 1181ad0200f7SJean Delvare 1182ad0200f7SJean Delvare This driver can also be built as a module. If so, the module 1183ad0200f7SJean Delvare will be called rtc-ds2404. 1184ad0200f7SJean Delvare 1185fef931ffSAshish Jangamconfig RTC_DRV_DA9052 1186fef931ffSAshish Jangam tristate "Dialog DA9052/DA9053 RTC" 1187fef931ffSAshish Jangam depends on PMIC_DA9052 1188fef931ffSAshish Jangam help 1189fef931ffSAshish Jangam Say y here to support the RTC driver for Dialog Semiconductor 1190fef931ffSAshish Jangam DA9052-BC and DA9053-AA/Bx PMICs. 1191fef931ffSAshish Jangam 11926920d996SAshish Jangamconfig RTC_DRV_DA9055 11936920d996SAshish Jangam tristate "Dialog Semiconductor DA9055 RTC" 11946920d996SAshish Jangam depends on MFD_DA9055 11956920d996SAshish Jangam help 11966920d996SAshish Jangam If you say yes here you will get support for the 11976920d996SAshish Jangam RTC of the Dialog DA9055 PMIC. 11986920d996SAshish Jangam 11996920d996SAshish Jangam This driver can also be built as a module. If so, the module 12006920d996SAshish Jangam will be called rtc-da9055 12016920d996SAshish Jangam 1202c2a57550SOpensource [Steve Twiss]config RTC_DRV_DA9063 120380ca3277SS Twiss tristate "Dialog Semiconductor DA9063/DA9062 RTC" 120480ca3277SS Twiss depends on MFD_DA9063 || MFD_DA9062 1205c2a57550SOpensource [Steve Twiss] help 1206c2a57550SOpensource [Steve Twiss] If you say yes here you will get support for the RTC subsystem 120780ca3277SS Twiss for the Dialog Semiconductor PMIC chips DA9063 and DA9062. 1208c2a57550SOpensource [Steve Twiss] 1209c2a57550SOpensource [Steve Twiss] This driver can also be built as a module. If so, the module 1210c2a57550SOpensource [Steve Twiss] will be called "rtc-da9063". 1211c2a57550SOpensource [Steve Twiss] 12125e3fd9e5Sdann frazierconfig RTC_DRV_EFI 12135e3fd9e5Sdann frazier tristate "EFI RTC" 12147efe6659SMatt Fleming depends on EFI && !X86 12155e3fd9e5Sdann frazier help 12165e3fd9e5Sdann frazier If you say yes here you will get support for the EFI 12175e3fd9e5Sdann frazier Real Time Clock. 12185e3fd9e5Sdann frazier 12195e3fd9e5Sdann frazier This driver can also be built as a module. If so, the module 12205e3fd9e5Sdann frazier will be called rtc-efi. 12215e3fd9e5Sdann frazier 122202964115SThomas Hommelconfig RTC_DRV_STK17TA8 122302964115SThomas Hommel tristate "Simtek STK17TA8" 1224706b632dSChen Gang depends on HAS_IOMEM 122502964115SThomas Hommel help 122602964115SThomas Hommel If you say yes here you get support for the 122702964115SThomas Hommel Simtek STK17TA8 timekeeping chip. 122802964115SThomas Hommel 122902964115SThomas Hommel This driver can also be built as a module. If so, the module 123002964115SThomas Hommel will be called rtc-stk17ta8. 123102964115SThomas Hommel 123209a21e56SAlessandro Zummoconfig RTC_DRV_M48T86 123309a21e56SAlessandro Zummo tristate "ST M48T86/Dallas DS12887" 12349c795799SJohannes Berg depends on HAS_IOMEM 123509a21e56SAlessandro Zummo help 123609a21e56SAlessandro Zummo If you say Y here you will get support for the 123709a21e56SAlessandro Zummo ST M48T86 and Dallas DS12887 RTC chips. 123809a21e56SAlessandro Zummo 123909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 124009a21e56SAlessandro Zummo will be called rtc-m48t86. 124109a21e56SAlessandro Zummo 1242d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35 1243d1dbd82eSThomas Bogendoerfer tristate "ST M48T35" 1244706b632dSChen Gang depends on HAS_IOMEM 1245d1dbd82eSThomas Bogendoerfer help 1246d1dbd82eSThomas Bogendoerfer If you say Y here you will get support for the 1247d1dbd82eSThomas Bogendoerfer ST M48T35 RTC chip. 1248d1dbd82eSThomas Bogendoerfer 1249d1dbd82eSThomas Bogendoerfer This driver can also be built as a module, if so, the module 1250d1dbd82eSThomas Bogendoerfer will be called "rtc-m48t35". 1251d1dbd82eSThomas Bogendoerfer 12522e774c7cSMark Zhanconfig RTC_DRV_M48T59 125394fe7424SKrzysztof Helt tristate "ST M48T59/M48T08/M48T02" 1254706b632dSChen Gang depends on HAS_IOMEM 12552e774c7cSMark Zhan help 12562e774c7cSMark Zhan If you say Y here you will get support for the 125794fe7424SKrzysztof Helt ST M48T59 RTC chip and compatible ST M48T08 and M48T02. 125894fe7424SKrzysztof Helt 125994fe7424SKrzysztof Helt These chips are usually found in Sun SPARC and UltraSPARC 126094fe7424SKrzysztof Helt workstations. 12612e774c7cSMark Zhan 12622e774c7cSMark Zhan This driver can also be built as a module, if so, the module 12632e774c7cSMark Zhan will be called "rtc-m48t59". 12642e774c7cSMark Zhan 12654f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242 12664f9b9bbaSGeert Uytterhoeven tristate "Oki MSM6242" 1267706b632dSChen Gang depends on HAS_IOMEM 12684f9b9bbaSGeert Uytterhoeven help 12694f9b9bbaSGeert Uytterhoeven If you say yes here you get support for the Oki MSM6242 12704f9b9bbaSGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A2000). 12714f9b9bbaSGeert Uytterhoeven 12724f9b9bbaSGeert Uytterhoeven This driver can also be built as a module. If so, the module 12734f9b9bbaSGeert Uytterhoeven will be called rtc-msm6242. 12744f9b9bbaSGeert Uytterhoeven 1275cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802 1276cca4c231SDavid S. Miller tristate "TI BQ4802" 12778bb12adbSNiklas Schnelle depends on HAS_IOMEM && HAS_IOPORT 1278766c3f8aSArnd Bergmann depends on SPARC || COMPILE_TEST 1279cca4c231SDavid S. Miller help 1280cca4c231SDavid S. Miller If you say Y here you will get support for the TI 1281cca4c231SDavid S. Miller BQ4802 RTC chip. 1282cca4c231SDavid S. Miller 1283cca4c231SDavid S. Miller This driver can also be built as a module. If so, the module 1284cca4c231SDavid S. Miller will be called rtc-bq4802. 1285cca4c231SDavid S. Miller 12864f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01 12874f672ce2SGeert Uytterhoeven tristate "Ricoh RP5C01" 1288706b632dSChen Gang depends on HAS_IOMEM 12894f672ce2SGeert Uytterhoeven help 12904f672ce2SGeert Uytterhoeven If you say yes here you get support for the Ricoh RP5C01 12914f672ce2SGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A3000 12924f672ce2SGeert Uytterhoeven and A4000). 12934f672ce2SGeert Uytterhoeven 12944f672ce2SGeert Uytterhoeven This driver can also be built as a module. If so, the module 12954f672ce2SGeert Uytterhoeven will be called rtc-rp5c01. 12964f672ce2SGeert Uytterhoeven 129786559400SEmmanuel Gil Peyrotconfig RTC_DRV_GAMECUBE 129886559400SEmmanuel Gil Peyrot tristate "Nintendo GameCube, Wii and Wii U RTC" 129986559400SEmmanuel Gil Peyrot depends on GAMECUBE || WII || COMPILE_TEST 130086559400SEmmanuel Gil Peyrot select REGMAP 130186559400SEmmanuel Gil Peyrot help 130286559400SEmmanuel Gil Peyrot If you say yes here you will get support for the RTC subsystem 130386559400SEmmanuel Gil Peyrot of the Nintendo GameCube, Wii and Wii U. 130486559400SEmmanuel Gil Peyrot 130586559400SEmmanuel Gil Peyrot This driver can also be built as a module. If so, the module 130686559400SEmmanuel Gil Peyrot will be called "rtc-gamecube". 130786559400SEmmanuel Gil Peyrot 130835c86bf6SMark Brownconfig RTC_DRV_WM831X 130935c86bf6SMark Brown tristate "Wolfson Microelectronics WM831x RTC" 131035c86bf6SMark Brown depends on MFD_WM831X 131135c86bf6SMark Brown help 131235c86bf6SMark Brown If you say yes here you will get support for the RTC subsystem 131335c86bf6SMark Brown of the Wolfson Microelectronics WM831X series PMICs. 131435c86bf6SMark Brown 131535c86bf6SMark Brown This driver can also be built as a module. If so, the module 131635c86bf6SMark Brown will be called "rtc-wm831x". 131735c86bf6SMark Brown 1318077eaf5bSMark Brownconfig RTC_DRV_WM8350 1319077eaf5bSMark Brown tristate "Wolfson Microelectronics WM8350 RTC" 1320077eaf5bSMark Brown depends on MFD_WM8350 1321077eaf5bSMark Brown help 1322077eaf5bSMark Brown If you say yes here you will get support for the RTC subsystem 1323077eaf5bSMark Brown of the Wolfson Microelectronics WM8350. 1324077eaf5bSMark Brown 1325077eaf5bSMark Brown This driver can also be built as a module. If so, the module 1326077eaf5bSMark Brown will be called "rtc-wm8350". 1327077eaf5bSMark Brown 1328495bbde5SBaolin Wangconfig RTC_DRV_SC27XX 1329495bbde5SBaolin Wang tristate "Spreadtrum SC27xx RTC" 1330495bbde5SBaolin Wang depends on MFD_SC27XX_PMIC || COMPILE_TEST 1331495bbde5SBaolin Wang help 1332495bbde5SBaolin Wang If you say Y here you will get support for the RTC subsystem 1333495bbde5SBaolin Wang of the Spreadtrum SC27xx series PMICs. The SC27xx series PMICs 1334495bbde5SBaolin Wang includes the SC2720, SC2721, SC2723, SC2730 and SC2731 chips. 1335495bbde5SBaolin Wang 1336495bbde5SBaolin Wang This driver can also be built as a module. If so, the module 1337495bbde5SBaolin Wang will be called rtc-sc27xx. 1338495bbde5SBaolin Wang 13390942a71eSRajeev Kumarconfig RTC_DRV_SPEAR 13400942a71eSRajeev Kumar tristate "SPEAR ST RTC" 13417a587eaeSAlexandre Belloni depends on PLAT_SPEAR || COMPILE_TEST 13427158c61aSGeert Uytterhoeven default PLAT_SPEAR 13430942a71eSRajeev Kumar help 13440942a71eSRajeev Kumar If you say Y here you will get support for the RTC found on 13450942a71eSRajeev Kumar spear 13460942a71eSRajeev Kumar 13470af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500 13480af62f4dSVirupax Sadashivpetimath tristate "ST-Ericsson AB8500 RTC" 13490af62f4dSVirupax Sadashivpetimath depends on AB8500_CORE 1350651fb480SUlf Hansson select RTC_INTF_DEV 1351dc43d4a2SRamesh Chandrasekaran select RTC_INTF_DEV_UIE_EMUL 13520af62f4dSVirupax Sadashivpetimath help 13530af62f4dSVirupax Sadashivpetimath Select this to enable the ST-Ericsson AB8500 power management IC RTC 13540af62f4dSVirupax Sadashivpetimath support. This chip contains a battery- and capacitor-backed RTC. 13550af62f4dSVirupax Sadashivpetimath 135616b1d26eSNeelesh Guptaconfig RTC_DRV_OPAL 135716b1d26eSNeelesh Gupta tristate "IBM OPAL RTC driver" 135816b1d26eSNeelesh Gupta depends on PPC_POWERNV 135916b1d26eSNeelesh Gupta default y 136016b1d26eSNeelesh Gupta help 136116b1d26eSNeelesh Gupta If you say yes here you get support for the PowerNV platform RTC 136216b1d26eSNeelesh Gupta driver based on OPAL interfaces. 136316b1d26eSNeelesh Gupta 136416b1d26eSNeelesh Gupta This driver can also be built as a module. If so, the module 136516b1d26eSNeelesh Gupta will be called rtc-opal. 136616b1d26eSNeelesh Gupta 136781c2f059SClément Légerconfig RTC_DRV_OPTEE 136881c2f059SClément Léger tristate "OP-TEE based RTC driver" 136981c2f059SClément Léger depends on OPTEE 137081c2f059SClément Léger help 137181c2f059SClément Léger Select this to get support for OP-TEE based RTC control on SoCs where 137281c2f059SClément Léger RTC are not accessible to the normal world (Linux). 137381c2f059SClément Léger 137481c2f059SClément Léger This driver can also be built as a module. If so, the module 137581c2f059SClément Léger will be called rtc-optee. 137681c2f059SClément Léger 137711143c19SSuneel Garapaticonfig RTC_DRV_ZYNQMP 137811143c19SSuneel Garapati tristate "Xilinx Zynq Ultrascale+ MPSoC RTC" 1379ddd05215SDavid Gow depends on OF && HAS_IOMEM 138011143c19SSuneel Garapati help 138111143c19SSuneel Garapati If you say yes here you get support for the RTC controller found on 138211143c19SSuneel Garapati Xilinx Zynq Ultrascale+ MPSoC. 138311143c19SSuneel Garapati 13846f2a71a3SStephen Barberconfig RTC_DRV_CROS_EC 13856f2a71a3SStephen Barber tristate "Chrome OS EC RTC driver" 138647f11e0bSEnric Balletbo i Serra depends on CROS_EC 13876f2a71a3SStephen Barber help 13886f2a71a3SStephen Barber If you say yes here you will get support for the 13896f2a71a3SStephen Barber Chrome OS Embedded Controller's RTC. 13906f2a71a3SStephen Barber 13916f2a71a3SStephen Barber This driver can also be built as a module. If so, the module 13926f2a71a3SStephen Barber will be called rtc-cros-ec. 13936f2a71a3SStephen Barber 1394435af897SJonathan Neuschäferconfig RTC_DRV_NTXEC 1395435af897SJonathan Neuschäfer tristate "Netronix embedded controller RTC" 1396435af897SJonathan Neuschäfer depends on MFD_NTXEC 1397435af897SJonathan Neuschäfer help 1398435af897SJonathan Neuschäfer Say yes here if you want to support the RTC functionality of the 1399435af897SJonathan Neuschäfer embedded controller found in certain e-book readers designed by the 1400435af897SJonathan Neuschäfer original design manufacturer Netronix. 1401435af897SJonathan Neuschäfer 140209a21e56SAlessandro Zummocomment "on-CPU RTC drivers" 140309a21e56SAlessandro Zummo 1404125e550fSOleksij Rempelconfig RTC_DRV_ASM9260 1405125e550fSOleksij Rempel tristate "Alphascale asm9260 RTC" 14067f742e8eSAlexandre Belloni depends on MACH_ASM9260 || COMPILE_TEST 1407125e550fSOleksij Rempel help 1408125e550fSOleksij Rempel If you say yes here you get support for the RTC on the 1409125e550fSOleksij Rempel Alphascale asm9260 SoC. 1410125e550fSOleksij Rempel 1411125e550fSOleksij Rempel This driver can also be built as a module. If so, the module 1412125e550fSOleksij Rempel will be called rtc-asm9260. 1413125e550fSOleksij Rempel 1414d9f82683SJingbao Qiuconfig RTC_DRV_CV1800 1415d9f82683SJingbao Qiu tristate "Sophgo CV1800 RTC" 1416d9f82683SJingbao Qiu depends on SOPHGO_CV1800_RTCSYS || COMPILE_TEST 1417d9f82683SJingbao Qiu select MFD_SYSCON 1418d9f82683SJingbao Qiu select REGMAP 1419d9f82683SJingbao Qiu help 1420d9f82683SJingbao Qiu If you say yes here you get support the RTC driver for Sophgo CV1800 1421d9f82683SJingbao Qiu series SoC. 1422d9f82683SJingbao Qiu 1423d9f82683SJingbao Qiu This driver can also be built as a module. If so, the module will be 1424d9f82683SJingbao Qiu called rtc-cv1800. 1425d9f82683SJingbao Qiu 1426ba172208SBaruch Siachconfig RTC_DRV_DIGICOLOR 1427ba172208SBaruch Siach tristate "Conexant Digicolor RTC" 14287a587eaeSAlexandre Belloni depends on ARCH_DIGICOLOR || COMPILE_TEST 1429ba172208SBaruch Siach help 1430ba172208SBaruch Siach If you say yes here you get support for the RTC on Conexant 1431ba172208SBaruch Siach Digicolor platforms. This currently includes the CX92755 SoC. 1432ba172208SBaruch Siach 1433ba172208SBaruch Siach This driver can also be built as a module. If so, the module 1434ba172208SBaruch Siach will be called rtc-digicolor. 1435ba172208SBaruch Siach 1436b224b9acSFabio Estevamconfig RTC_DRV_IMXDI 1437b224b9acSFabio Estevam tristate "Freescale IMX DryIce Real Time Clock" 14382e2ad639SUwe Kleine-König depends on ARCH_MXC || COMPILE_TEST 1439198da7beSFabio Estevam depends on OF 1440b224b9acSFabio Estevam help 1441b224b9acSFabio Estevam Support for Freescale IMX DryIce RTC 1442b224b9acSFabio Estevam 1443b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1444b224b9acSFabio Estevam will be called "rtc-imxdi". 1445b224b9acSFabio Estevam 14467b0b551dSBiwen Liconfig RTC_DRV_FSL_FTM_ALARM 14477b0b551dSBiwen Li tristate "Freescale FlexTimer alarm timer" 14487098f536SAlexandre Belloni depends on ARCH_LAYERSCAPE || SOC_LS1021A || COMPILE_TEST 14497b0b551dSBiwen Li help 14507b0b551dSBiwen Li For the FlexTimer in LS1012A, LS1021A, LS1028A, LS1043A, LS1046A, 14517b0b551dSBiwen Li LS1088A, LS208xA, we can use FTM as the wakeup source. 14527b0b551dSBiwen Li 14537b0b551dSBiwen Li Say y here to enable FTM alarm support. The FTM alarm provides 14547b0b551dSBiwen Li alarm functions for wakeup system from deep sleep. 14557b0b551dSBiwen Li 14567b0b551dSBiwen Li This driver can also be built as a module, if so, the module 14577b0b551dSBiwen Li will be called "rtc-fsl-ftm-alarm". 14587b0b551dSBiwen Li 1459d8fe6009SMartin Blumenstinglconfig RTC_DRV_MESON 1460d8fe6009SMartin Blumenstingl tristate "Amlogic Meson RTC" 1461d8fe6009SMartin Blumenstingl depends on (ARM && ARCH_MESON) || COMPILE_TEST 1462d8fe6009SMartin Blumenstingl select REGMAP_MMIO 1463d8fe6009SMartin Blumenstingl help 1464d8fe6009SMartin Blumenstingl Support for the RTC block on the Amlogic Meson6, Meson8, Meson8b 1465d8fe6009SMartin Blumenstingl and Meson8m2 SoCs. 1466d8fe6009SMartin Blumenstingl 1467d8fe6009SMartin Blumenstingl This driver can also be built as a module, if so, the module 1468d8fe6009SMartin Blumenstingl will be called "rtc-meson". 1469d8fe6009SMartin Blumenstingl 1470cb0b97d6SAlexandre Belloniconfig RTC_DRV_MESON_VRTC 1471cb0b97d6SAlexandre Belloni tristate "Amlogic Meson Virtual RTC" 1472cb0b97d6SAlexandre Belloni depends on ARCH_MESON || COMPILE_TEST 1473cb0b97d6SAlexandre Belloni default m if ARCH_MESON 1474cb0b97d6SAlexandre Belloni help 1475cb0b97d6SAlexandre Belloni If you say yes here you will get support for the 1476cb0b97d6SAlexandre Belloni Virtual RTC of Amlogic SoCs. 1477cb0b97d6SAlexandre Belloni 1478cb0b97d6SAlexandre Belloni This driver can also be built as a module. If so, the module 1479cb0b97d6SAlexandre Belloni will be called rtc-meson-vrtc. 1480cb0b97d6SAlexandre Belloni 1481db68b189SDavid Brownellconfig RTC_DRV_OMAP 14828608976eSLokesh Vutla tristate "TI OMAP Real Time Clock" 14837a587eaeSAlexandre Belloni depends on ARCH_OMAP || ARCH_DAVINCI || COMPILE_TEST 148497ea1906SMarcin Niestroj depends on OF 148597ea1906SMarcin Niestroj depends on PINCTRL 148697ea1906SMarcin Niestroj select GENERIC_PINCONF 1487db68b189SDavid Brownell help 1488427af9a6SAfzal Mohammed Say "yes" here to support the on chip real time clock 14898608976eSLokesh Vutla present on TI OMAP1, AM33xx, DA8xx/OMAP-L13x, AM43xx and DRA7xx. 1490427af9a6SAfzal Mohammed 1491427af9a6SAfzal Mohammed This driver can also be built as a module, if so, module 1492427af9a6SAfzal Mohammed will be called rtc-omap. 1493db68b189SDavid Brownell 14941add6781SBen Dooksconfig RTC_DRV_S3C 14951add6781SBen Dooks tristate "Samsung S3C series SoC RTC" 14961ea35b35SArnd Bergmann depends on ARCH_EXYNOS || ARCH_S3C64XX || ARCH_S5PV210 || \ 1497d96890fcSWill McVicker COMPILE_TEST 14981add6781SBen Dooks help 14991add6781SBen Dooks RTC (Realtime Clock) driver for the clock inbuilt into the 15001ea35b35SArnd Bergmann Samsung S3C64XX series of SoCs. This can provide periodic 15011add6781SBen Dooks interrupt rates from 1Hz to 64Hz for user programs, and 15021add6781SBen Dooks wakeup from Alarm. 15031add6781SBen Dooks 15041add6781SBen Dooks This driver can also be build as a module. If so, the module 15051add6781SBen Dooks will be called rtc-s3c. 15061add6781SBen Dooks 1507fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX 1508fd507e2fSAlessandro Zummo tristate "Cirrus Logic EP93XX" 15097a587eaeSAlexandre Belloni depends on ARCH_EP93XX || COMPILE_TEST 1510fd507e2fSAlessandro Zummo help 1511fd507e2fSAlessandro Zummo If you say yes here you get support for the 1512fd507e2fSAlessandro Zummo RTC embedded in the Cirrus Logic EP93XX processors. 1513fd507e2fSAlessandro Zummo 1514fd507e2fSAlessandro Zummo This driver can also be built as a module. If so, the module 1515fd507e2fSAlessandro Zummo will be called rtc-ep93xx. 1516fd507e2fSAlessandro Zummo 1517e842f1c8SRichard Purdieconfig RTC_DRV_SA1100 15183888c090SHaojian Zhuang tristate "SA11x0/PXA2xx/PXA910" 15193888c090SHaojian Zhuang depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP 1520e842f1c8SRichard Purdie help 1521e842f1c8SRichard Purdie If you say Y here you will get access to the real time clock 1522e842f1c8SRichard Purdie built into your SA11x0 or PXA2xx CPU. 1523e842f1c8SRichard Purdie 1524e842f1c8SRichard Purdie To compile this driver as a module, choose M here: the 1525e842f1c8SRichard Purdie module will be called rtc-sa1100. 1526fd507e2fSAlessandro Zummo 1527317a6104SPaul Mundtconfig RTC_DRV_SH 1528317a6104SPaul Mundt tristate "SuperH On-Chip RTC" 1529dab5aec6SChris Brandt depends on SUPERH || ARCH_RENESAS 1530317a6104SPaul Mundt help 1531317a6104SPaul Mundt Say Y here to enable support for the on-chip RTC found in 1532dab5aec6SChris Brandt most SuperH processors. This RTC is also found in RZ/A SoCs. 1533317a6104SPaul Mundt 1534317a6104SPaul Mundt To compile this driver as a module, choose M here: the 1535317a6104SPaul Mundt module will be called rtc-sh. 1536317a6104SPaul Mundt 1537fad6cbe9SVincent Shihconfig RTC_DRV_SUNPLUS 1538fad6cbe9SVincent Shih tristate "Sunplus SP7021 RTC" 1539fad6cbe9SVincent Shih depends on SOC_SP7021 1540fad6cbe9SVincent Shih help 1541fad6cbe9SVincent Shih Say 'yes' to get support for the real-time clock present in 1542fad6cbe9SVincent Shih Sunplus SP7021 - a SoC for industrial applications. It provides 1543fad6cbe9SVincent Shih RTC status check, timer/alarm functionalities, user data 1544fad6cbe9SVincent Shih reservation with the battery over 2.5V, RTC power status check 1545fad6cbe9SVincent Shih and battery charge. 1546fad6cbe9SVincent Shih 1547fad6cbe9SVincent Shih This driver can also be built as a module. If so, the module 1548fad6cbe9SVincent Shih will be called rtc-sunplus. 1549fad6cbe9SVincent Shih 1550a190901cSRussell Kingconfig RTC_DRV_PL030 1551a190901cSRussell King tristate "ARM AMBA PL030 RTC" 1552a190901cSRussell King depends on ARM_AMBA 1553a190901cSRussell King help 1554a190901cSRussell King If you say Y here you will get access to ARM AMBA 1555a190901cSRussell King PrimeCell PL030 RTC found on certain ARM SOCs. 1556a190901cSRussell King 1557a190901cSRussell King To compile this driver as a module, choose M here: the 1558a190901cSRussell King module will be called rtc-pl030. 1559a190901cSRussell King 15608ae6e163SDeepak Saxenaconfig RTC_DRV_PL031 15618ae6e163SDeepak Saxena tristate "ARM AMBA PL031 RTC" 1562bb35fb20SJan Engelhardt depends on ARM_AMBA 15638ae6e163SDeepak Saxena help 15648ae6e163SDeepak Saxena If you say Y here you will get access to ARM AMBA 156509a21e56SAlessandro Zummo PrimeCell PL031 RTC found on certain ARM SOCs. 15668ae6e163SDeepak Saxena 15678ae6e163SDeepak Saxena To compile this driver as a module, choose M here: the 15688ae6e163SDeepak Saxena module will be called rtc-pl031. 15698ae6e163SDeepak Saxena 15707fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200 157124cecc1bSNicolas Ferre tristate "AT91RM9200 or some AT91SAM9 RTC" 15727a587eaeSAlexandre Belloni depends on ARCH_AT91 || COMPILE_TEST 1573288d9cf1SClaudiu Beznea depends on OF 1574788b1fc6SAndrew Victor help 15754cdf854fSDavid Brownell Driver for the internal RTC (Realtime Clock) module found on 157624cecc1bSNicolas Ferre Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips 15774cdf854fSDavid Brownell this is powered by the backup power supply. 15784cdf854fSDavid Brownell 15794cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9 15803969eb48SBoris BREZILLON tristate "AT91SAM9 RTT as RTC" 15817a587eaeSAlexandre Belloni depends on ARCH_AT91 || COMPILE_TEST 15821a76a77cSAlexandre Belloni depends on OF && HAS_IOMEM 158343e112bbSBoris BREZILLON select MFD_SYSCON 15844cdf854fSDavid Brownell help 15853969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which 15863969eb48SBoris BREZILLON can be used as an RTC thanks to the backup power supply (e.g. a 15873969eb48SBoris BREZILLON small coin cell battery) which keeps this block and the GPBR 15883969eb48SBoris BREZILLON (General Purpose Backup Registers) block powered when the device 15893969eb48SBoris BREZILLON is shutdown. 15903969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd 15913969eb48SBoris BREZILLON probably want to use the real RTC block instead of the "RTT as an 15923969eb48SBoris BREZILLON RTC" driver. 15934cdf854fSDavid Brownell 159445fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX 159545fd8a0cSManuel Lauss tristate "Au1xxx Counter0 RTC support" 159642a4f17dSManuel Lauss depends on MIPS_ALCHEMY 159745fd8a0cSManuel Lauss help 159845fd8a0cSManuel Lauss This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year 159945fd8a0cSManuel Lauss counter) to be used as a RTC. 160045fd8a0cSManuel Lauss 160145fd8a0cSManuel Lauss This driver can also be built as a module. If so, the module 160245fd8a0cSManuel Lauss will be called rtc-au1xxx. 160345fd8a0cSManuel Lauss 1604e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313 1605e9f2bd81SNobuhiro Iwamatsu tristate "Ricoh RS5C313" 1606bb35fb20SJan Engelhardt depends on SH_LANDISK 1607e9f2bd81SNobuhiro Iwamatsu help 1608e9f2bd81SNobuhiro Iwamatsu If you say yes here you get support for the Ricoh RS5C313 RTC chips. 1609e9f2bd81SNobuhiro Iwamatsu 1610deeb4b53SMichel Polletconfig RTC_DRV_RZN1 1611deeb4b53SMichel Pollet tristate "Renesas RZ/N1 RTC" 1612deeb4b53SMichel Pollet depends on ARCH_RZN1 || COMPILE_TEST 1613deeb4b53SMichel Pollet depends on OF && HAS_IOMEM 1614deeb4b53SMichel Pollet help 1615deeb4b53SMichel Pollet If you say yes here you get support for the Renesas RZ/N1 RTC. 1616deeb4b53SMichel Pollet 16173afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC 16183afe6d04SGeert Uytterhoeven tristate "Generic RTC support" 16193afe6d04SGeert Uytterhoeven # Please consider writing a new RTC driver instead of using the generic 16203afe6d04SGeert Uytterhoeven # RTC abstraction 162137744feeSArnd Bergmann depends on PARISC || M68K || PPC || SUPERH || COMPILE_TEST 16229eb16864SKyle McMartin help 16233afe6d04SGeert Uytterhoeven Say Y or M here to enable RTC support on systems using the generic 16243afe6d04SGeert Uytterhoeven RTC abstraction. If you do not know what you are doing, you should 16259eb16864SKyle McMartin just say Y. 16269eb16864SKyle McMartin 1627dc944368SRobert Jarzmikconfig RTC_DRV_PXA 1628dc944368SRobert Jarzmik tristate "PXA27x/PXA3xx" 1629dc944368SRobert Jarzmik depends on ARCH_PXA 16303cdf4ad9SRob Herring select RTC_DRV_SA1100 1631dc944368SRobert Jarzmik help 1632dc944368SRobert Jarzmik If you say Y here you will get access to the real time clock 16333cdf4ad9SRob Herring built into your PXA27x or PXA3xx CPU. This RTC is actually 2 RTCs 16343cdf4ad9SRob Herring consisting of an SA1100 compatible RTC and the extended PXA RTC. 1635dc944368SRobert Jarzmik 1636dc944368SRobert Jarzmik This RTC driver uses PXA RTC registers available since pxa27x 1637dc944368SRobert Jarzmik series (RDxR, RYxR) instead of legacy RCNR, RTAR. 1638dc944368SRobert Jarzmik 1639f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500 1640f77fbdf9SAlexey Charkov tristate "VIA/WonderMedia 85xx SoC RTC" 16417a587eaeSAlexandre Belloni depends on ARCH_VT8500 || COMPILE_TEST 1642f77fbdf9SAlexey Charkov help 1643f77fbdf9SAlexey Charkov If you say Y here you will get access to the real time clock 1644f77fbdf9SAlexey Charkov built into your VIA VT8500 SoC or its relatives. 1645f77fbdf9SAlexey Charkov 1646dc944368SRobert Jarzmik 16477a138edeSDavid S. Millerconfig RTC_DRV_SUN4V 16487a138edeSDavid S. Miller bool "SUN4V Hypervisor RTC" 16497a138edeSDavid S. Miller depends on SPARC64 16507a138edeSDavid S. Miller help 16517a138edeSDavid S. Miller If you say Y here you will get support for the Hypervisor 16527a138edeSDavid S. Miller based RTC on SUN4V systems. 16537a138edeSDavid S. Miller 16549765d2d9SChen-Yu Tsaiconfig RTC_DRV_SUN6I 165537539414SMaxime Ripard bool "Allwinner A31 RTC" 165693946c49SAlexandre Belloni default MACH_SUN6I || MACH_SUN8I 165793946c49SAlexandre Belloni depends on COMMON_CLK 165893946c49SAlexandre Belloni depends on ARCH_SUNXI || COMPILE_TEST 16599765d2d9SChen-Yu Tsai help 16602863934eSAndre Przywara If you say Y here you will get support for the RTC found in 16612863934eSAndre Przywara some Allwinner SoCs like the A31 or the A64. 16629765d2d9SChen-Yu Tsai 1663594c6fb9SCarlo Caioneconfig RTC_DRV_SUNXI 1664594c6fb9SCarlo Caione tristate "Allwinner sun4i/sun7i RTC" 16657a587eaeSAlexandre Belloni depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST 1666594c6fb9SCarlo Caione help 1667594c6fb9SCarlo Caione If you say Y here you will get support for the RTC found on 1668594c6fb9SCarlo Caione Allwinner A10/A20. 1669594c6fb9SCarlo Caione 1670de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE 1671de2cf332SDavid S. Miller bool "Starfire RTC" 1672de2cf332SDavid S. Miller depends on SPARC64 1673de2cf332SDavid S. Miller help 1674de2cf332SDavid S. Miller If you say Y here you will get support for the RTC found on 1675de2cf332SDavid S. Miller Starfire systems. 1676de2cf332SDavid S. Miller 1677defb4514SSaeed Bisharaconfig RTC_DRV_MV 1678defb4514SSaeed Bishara tristate "Marvell SoC RTC" 16797a587eaeSAlexandre Belloni depends on ARCH_DOVE || ARCH_MVEBU || COMPILE_TEST 1680defb4514SSaeed Bishara help 1681defb4514SSaeed Bishara If you say yes here you will get support for the in-chip RTC 1682defb4514SSaeed Bishara that can be found in some of Marvell's SoC devices, such as 1683defb4514SSaeed Bishara the Kirkwood 88F6281 and 88F6192. 1684defb4514SSaeed Bishara 1685defb4514SSaeed Bishara This driver can also be built as a module. If so, the module 1686defb4514SSaeed Bishara will be called rtc-mv. 1687defb4514SSaeed Bishara 1688a3a42806SGregory CLEMENTconfig RTC_DRV_ARMADA38X 1689a3a42806SGregory CLEMENT tristate "Armada 38x Marvell SoC RTC" 16907a587eaeSAlexandre Belloni depends on ARCH_MVEBU || COMPILE_TEST 16918792bab9SAlexandre Belloni depends on OF 1692a3a42806SGregory CLEMENT help 1693a3a42806SGregory CLEMENT If you say yes here you will get support for the in-chip RTC 1694a3a42806SGregory CLEMENT that can be found in the Armada 38x Marvell's SoC device 1695a3a42806SGregory CLEMENT 1696a3a42806SGregory CLEMENT This driver can also be built as a module. If so, the module 1697a3a42806SGregory CLEMENT will be called armada38x-rtc. 1698a3a42806SGregory CLEMENT 169942986fb8SJan Kotasconfig RTC_DRV_CADENCE 170042986fb8SJan Kotas tristate "Cadence RTC driver" 170142986fb8SJan Kotas depends on OF && HAS_IOMEM 170242986fb8SJan Kotas help 170342986fb8SJan Kotas If you say Y here you will get access to Cadence RTC IP 170442986fb8SJan Kotas found on certain SOCs. 170542986fb8SJan Kotas 170642986fb8SJan Kotas To compile this driver as a module, choose M here: the 170742986fb8SJan Kotas module will be called rtc-cadence. 170842986fb8SJan Kotas 17091d61d259SLinus Walleijconfig RTC_DRV_FTRTC010 17101d61d259SLinus Walleij tristate "Faraday Technology FTRTC010 RTC" 171198a9bb5bSHans Ulli Kroll depends on HAS_IOMEM 17121d61d259SLinus Walleij default ARCH_GEMINI 171398a9bb5bSHans Ulli Kroll help 171498a9bb5bSHans Ulli Kroll If you say Y here you will get support for the 17151d61d259SLinus Walleij Faraday Technolog FTRTC010 found on e.g. Gemini SoC's. 171698a9bb5bSHans Ulli Kroll 171798a9bb5bSHans Ulli Kroll This driver can also be built as a module. If so, the module 17181d61d259SLinus Walleij will be called rtc-ftrtc010. 171998a9bb5bSHans Ulli Kroll 17200b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3 17210b5f037aSGeert Uytterhoeven tristate "PS3 RTC" 17220b5f037aSGeert Uytterhoeven depends on PPC_PS3 17230b5f037aSGeert Uytterhoeven help 17240b5f037aSGeert Uytterhoeven If you say yes here you will get support for the RTC on PS3. 17250b5f037aSGeert Uytterhoeven 17260b5f037aSGeert Uytterhoeven This driver can also be built as a module. If so, the module 17270b5f037aSGeert Uytterhoeven will be called rtc-ps3. 17280b5f037aSGeert Uytterhoeven 1729df17f631Sdmitry pervushinconfig RTC_DRV_STMP 173046b21218SWolfram Sang tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC" 17317a587eaeSAlexandre Belloni depends on ARCH_MXS || COMPILE_TEST 173220d048acSAlexandre Belloni select STMP_DEVICE 1733df17f631Sdmitry pervushin help 1734df17f631Sdmitry pervushin If you say yes here you will get support for the onboard 173546b21218SWolfram Sang STMP3xxx/i.MX23/i.MX28 RTC. 1736df17f631Sdmitry pervushin 1737df17f631Sdmitry pervushin This driver can also be built as a module. If so, the module 1738df17f631Sdmitry pervushin will be called rtc-stmp3xxx. 1739df17f631Sdmitry pervushin 1740d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP 1741d3c7a3f7SDaniel Ribeiro tristate "PCAP RTC" 1742d3c7a3f7SDaniel Ribeiro depends on EZX_PCAP 1743d3c7a3f7SDaniel Ribeiro help 1744d3c7a3f7SDaniel Ribeiro If you say Y here you will get support for the RTC found on 1745d3c7a3f7SDaniel Ribeiro the PCAP2 ASIC used on some Motorola phones. 1746d3c7a3f7SDaniel Ribeiro 17471c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX 17481c97872bSUwe Kleine-König depends on MFD_MC13XXX 17491c97872bSUwe Kleine-König tristate "Freescale MC13xxx RTC" 175043299f28SUwe Kleine-König help 17511c97872bSUwe Kleine-König This enables support for the RTCs found on Freescale's PMICs 17521c97872bSUwe Kleine-König MC13783 and MC13892. 175343299f28SUwe Kleine-König 175450aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121 175550aae724SAnatolij Gustschin tristate "Freescale MPC5121 built-in RTC" 1756955dbea3SDmitry Eremin-Solenikov depends on PPC_MPC512x || PPC_MPC52xx 175750aae724SAnatolij Gustschin help 175850aae724SAnatolij Gustschin If you say yes here you will get support for the 1759955dbea3SDmitry Eremin-Solenikov built-in RTC on MPC5121 or on MPC5200. 176050aae724SAnatolij Gustschin 176150aae724SAnatolij Gustschin This driver can also be built as a module. If so, the module 176250aae724SAnatolij Gustschin will be called rtc-mpc5121. 176350aae724SAnatolij Gustschin 17643bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740 1765586655d2SAlexandre Belloni tristate "Ingenic JZ4740 SoC" 17661e6e4e16SPaul Cercueil depends on MIPS || COMPILE_TEST 17675ddfa148SPaul Cercueil depends on OF && COMMON_CLK 17683bf0eea8SLars-Peter Clausen help 1769cd563200SPaul Cercueil If you say yes here you get support for the Ingenic JZ47xx SoCs RTC 1770cd563200SPaul Cercueil controllers. 17713bf0eea8SLars-Peter Clausen 1772b9ef8608SMathieu Malaterre This driver can also be built as a module. If so, the module 1773586655d2SAlexandre Belloni will be called rtc-jz4740. 1774586655d2SAlexandre Belloni 17751b733a9eSBinbin Zhouconfig RTC_DRV_LOONGSON 17761b733a9eSBinbin Zhou tristate "Loongson On-chip RTC" 17771b733a9eSBinbin Zhou depends on MACH_LOONGSON32 || MACH_LOONGSON64 || COMPILE_TEST 17781b733a9eSBinbin Zhou select REGMAP_MMIO 17791b733a9eSBinbin Zhou help 17801b733a9eSBinbin Zhou This is a driver for the Loongson on-chip Counter0 (Time-Of-Year 17811b733a9eSBinbin Zhou counter) to be used as a RTC. 17821b733a9eSBinbin Zhou It can be found on Loongson-1 series cpu, Loongson-2K series cpu 17831b733a9eSBinbin Zhou and Loongson LS7A bridge chips. 17841b733a9eSBinbin Zhou 17851b733a9eSBinbin Zhou This driver can also be built as a module. If so, the module 17861b733a9eSBinbin Zhou will be called rtc-loongson. 17871b733a9eSBinbin Zhou 1788c28b42e3SJoachim Eastwoodconfig RTC_DRV_LPC24XX 1789c28b42e3SJoachim Eastwood tristate "NXP RTC for LPC178x/18xx/408x/43xx" 1790c28b42e3SJoachim Eastwood depends on ARCH_LPC18XX || COMPILE_TEST 1791c28b42e3SJoachim Eastwood depends on OF && HAS_IOMEM 1792cd0d7d66SAntoniu Miclaus depends on COMMON_CLK 1793c28b42e3SJoachim Eastwood help 1794c28b42e3SJoachim Eastwood This enables support for the NXP RTC found which can be found on 1795c28b42e3SJoachim Eastwood NXP LPC178x/18xx/408x/43xx devices. 1796c28b42e3SJoachim Eastwood 1797c28b42e3SJoachim Eastwood If you have one of the devices above enable this driver to use 179872d3d79fSAlexandre Belloni the hardware RTC. This driver can also be built as a module. If 1799c28b42e3SJoachim Eastwood so, the module will be called rtc-lpc24xx. 1800c28b42e3SJoachim Eastwood 18019aa449beSKevin Wellsconfig RTC_DRV_LPC32XX 18027a587eaeSAlexandre Belloni depends on ARCH_LPC32XX || COMPILE_TEST 18039aa449beSKevin Wells tristate "NXP LPC32XX RTC" 18049aa449beSKevin Wells help 18059aa449beSKevin Wells This enables support for the NXP RTC in the LPC32XX 18069aa449beSKevin Wells 180772d3d79fSAlexandre Belloni This driver can also be built as a module. If so, the module 18089aa449beSKevin Wells will be called rtc-lpc32xx. 18099aa449beSKevin Wells 18109a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX 18119a9a54adSAnirudh Ghayal tristate "Qualcomm PMIC8XXX RTC" 18127a587eaeSAlexandre Belloni depends on MFD_PM8XXX || MFD_SPMI_PMIC || COMPILE_TEST 18139a9a54adSAnirudh Ghayal help 18149a9a54adSAnirudh Ghayal If you say yes here you get support for the 18159a9a54adSAnirudh Ghayal Qualcomm PMIC8XXX RTC. 18169a9a54adSAnirudh Ghayal 18179a9a54adSAnirudh Ghayal To compile this driver as a module, choose M here: the 18189a9a54adSAnirudh Ghayal module will be called rtc-pm8xxx. 18199a9a54adSAnirudh Ghayal 1820ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA 1821ff859ba6SAndrew Chew tristate "NVIDIA Tegra Internal RTC driver" 18227a587eaeSAlexandre Belloni depends on ARCH_TEGRA || COMPILE_TEST 1823ff859ba6SAndrew Chew help 1824ff859ba6SAndrew Chew If you say yes here you get support for the 1825ff859ba6SAndrew Chew Tegra 200 series internal RTC module. 1826ff859ba6SAndrew Chew 1827ff859ba6SAndrew Chew This drive can also be built as a module. If so, the module 1828ff859ba6SAndrew Chew will be called rtc-tegra. 1829ff859ba6SAndrew Chew 183079811595SFabio Estevamconfig RTC_DRV_MXC 1831b224b9acSFabio Estevam tristate "Freescale MXC Real Time Clock" 18320020868fSAlexandre Belloni depends on ARCH_MXC || COMPILE_TEST 18330020868fSAlexandre Belloni depends on HAS_IOMEM 18340020868fSAlexandre Belloni depends on OF 1835b224b9acSFabio Estevam help 1836b224b9acSFabio Estevam If you say yes here you get support for the Freescale MXC 1837b224b9acSFabio Estevam RTC module. 1838b224b9acSFabio Estevam 1839b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1840b224b9acSFabio Estevam will be called "rtc-mxc". 1841b224b9acSFabio Estevam 184283c880f7SPatrick Bruennconfig RTC_DRV_MXC_V2 184383c880f7SPatrick Bruenn tristate "Freescale MXC Real Time Clock for i.MX53" 18440020868fSAlexandre Belloni depends on ARCH_MXC || COMPILE_TEST 18450020868fSAlexandre Belloni depends on HAS_IOMEM 18460020868fSAlexandre Belloni depends on OF 184783c880f7SPatrick Bruenn help 184883c880f7SPatrick Bruenn If you say yes here you get support for the Freescale MXC 184983c880f7SPatrick Bruenn SRTC module in i.MX53 processor. 185083c880f7SPatrick Bruenn 185183c880f7SPatrick Bruenn This driver can also be built as a module, if so, the module 185283c880f7SPatrick Bruenn will be called "rtc-mxc_v2". 185383c880f7SPatrick Bruenn 1854179a502fSShawn Guoconfig RTC_DRV_SNVS 1855179a502fSShawn Guo tristate "Freescale SNVS RTC support" 18568a0fa184SShawn Guo select REGMAP_MMIO 1857b427ca8cSAnson Huang depends on ARCH_MXC || COMPILE_TEST 1858179a502fSShawn Guo depends on HAS_IOMEM 1859179a502fSShawn Guo depends on OF 1860179a502fSShawn Guo help 1861179a502fSShawn Guo If you say yes here you get support for the Freescale SNVS 1862179a502fSShawn Guo Low Power (LP) RTC module. 1863179a502fSShawn Guo 1864179a502fSShawn Guo This driver can also be built as a module, if so, the module 1865179a502fSShawn Guo will be called "rtc-snvs". 1866179a502fSShawn Guo 1867eb7b8585SJacky Baiconfig RTC_DRV_BBNSM 1868eb7b8585SJacky Bai tristate "NXP BBNSM RTC support" 1869eb7b8585SJacky Bai select REGMAP_MMIO 1870eb7b8585SJacky Bai depends on ARCH_MXC || COMPILE_TEST 1871eb7b8585SJacky Bai depends on HAS_IOMEM 1872eb7b8585SJacky Bai depends on OF 1873eb7b8585SJacky Bai help 1874eb7b8585SJacky Bai If you say yes here you get support for the NXP BBNSM RTC module. 1875eb7b8585SJacky Bai 1876eb7b8585SJacky Bai This driver can also be built as a module, if so, the module 1877eb7b8585SJacky Bai will be called "rtc-bbnsm". 1878eb7b8585SJacky Bai 18793008598eSPeng Fanconfig RTC_DRV_IMX_BBM_SCMI 18803008598eSPeng Fan depends on IMX_SCMI_BBM_EXT || COMPILE_TEST 18813008598eSPeng Fan default y if ARCH_MXC 18823008598eSPeng Fan tristate "NXP i.MX BBM SCMI RTC support" 18833008598eSPeng Fan help 18843008598eSPeng Fan If you say yes here you get support for the NXP i.MX BBSM SCMI 18853008598eSPeng Fan RTC module. 18863008598eSPeng Fan 18873008598eSPeng Fan To compile this driver as a module, choose M here: the 18883008598eSPeng Fan module will be called rtc-imx-sm-bbm. 18893008598eSPeng Fan 1890e01b5781SAnson Huangconfig RTC_DRV_IMX_SC 1891e01b5781SAnson Huang depends on IMX_SCU 18927dd63ec0SAlexandre Belloni depends on HAVE_ARM_SMCCC 1893e01b5781SAnson Huang tristate "NXP i.MX System Controller RTC support" 1894e01b5781SAnson Huang help 1895e01b5781SAnson Huang If you say yes here you get support for the NXP i.MX System 1896e01b5781SAnson Huang Controller RTC module. 1897e01b5781SAnson Huang 1898b5b2bdfcSLee Jonesconfig RTC_DRV_ST_LPC 1899b5b2bdfcSLee Jones tristate "STMicroelectronics LPC RTC" 1900b5b2bdfcSLee Jones depends on ARCH_STI 1901b5b2bdfcSLee Jones depends on OF 1902b5b2bdfcSLee Jones help 1903b5b2bdfcSLee Jones Say Y here to include STMicroelectronics Low Power Controller 1904b5b2bdfcSLee Jones (LPC) based RTC support. 1905b5b2bdfcSLee Jones 1906b5b2bdfcSLee Jones To compile this driver as a module, choose M here: the 1907b5b2bdfcSLee Jones module will be called rtc-st-lpc. 1908b5b2bdfcSLee Jones 1909453b4c6dSJonas Jensenconfig RTC_DRV_MOXART 1910453b4c6dSJonas Jensen tristate "MOXA ART RTC" 1911441fb768SJean Delvare depends on ARCH_MOXART || COMPILE_TEST 1912453b4c6dSJonas Jensen help 1913453b4c6dSJonas Jensen If you say yes here you get support for the MOXA ART 1914453b4c6dSJonas Jensen RTC module. 1915453b4c6dSJonas Jensen 1916453b4c6dSJonas Jensen This driver can also be built as a module. If so, the module 1917453b4c6dSJonas Jensen will be called rtc-moxart 1918453b4c6dSJonas Jensen 191964823360SRan Biconfig RTC_DRV_MT2712 192064823360SRan Bi tristate "MediaTek MT2712 SoC based RTC" 192164823360SRan Bi depends on ARCH_MEDIATEK || COMPILE_TEST 192264823360SRan Bi help 192364823360SRan Bi This enables support for the real time clock built in the MediaTek 192464823360SRan Bi SoCs for MT2712. 192564823360SRan Bi 192664823360SRan Bi This drive can also be built as a module. If so, the module 192764823360SRan Bi will be called rtc-mt2712. 192864823360SRan Bi 1929fc297911STianping Fangconfig RTC_DRV_MT6397 1930d00a7ed2SSean Wang tristate "MediaTek PMIC based RTC" 1931544c42f7SRandy Dunlap depends on MFD_MT6397 || COMPILE_TEST 1932544c42f7SRandy Dunlap select IRQ_DOMAIN 1933fc297911STianping Fang help 1934d00a7ed2SSean Wang This selects the MediaTek(R) RTC driver. RTC is part of MediaTek 1935fc297911STianping Fang MT6397 PMIC. You should enable MT6397 PMIC MFD before select 1936d00a7ed2SSean Wang MediaTek(R) RTC driver. 1937fc297911STianping Fang 1938d00a7ed2SSean Wang If you want to use MediaTek(R) RTC interface, select Y or M here. 1939fc297911STianping Fang 1940ba5d0181SSean Wangconfig RTC_DRV_MT7622 1941ba5d0181SSean Wang tristate "MediaTek SoC based RTC" 1942ba5d0181SSean Wang depends on ARCH_MEDIATEK || COMPILE_TEST 1943ba5d0181SSean Wang help 1944ba5d0181SSean Wang This enables support for the real time clock built in the MediaTek 1945ba5d0181SSean Wang SoCs. 1946ba5d0181SSean Wang 1947ba5d0181SSean Wang This drive can also be built as a module. If so, the module 1948ba5d0181SSean Wang will be called rtc-mt7622. 1949ba5d0181SSean Wang 1950f12d8695SLoc Hoconfig RTC_DRV_XGENE 1951f12d8695SLoc Ho tristate "APM X-Gene RTC" 1952706b632dSChen Gang depends on HAS_IOMEM 1953fdf8afa1SJean Delvare depends on ARCH_XGENE || COMPILE_TEST 1954f12d8695SLoc Ho help 1955f12d8695SLoc Ho If you say yes here you get support for the APM X-Gene SoC real time 1956f12d8695SLoc Ho clock. 1957f12d8695SLoc Ho 1958f12d8695SLoc Ho This driver can also be built as a module, if so, the module 1959f12d8695SLoc Ho will be called "rtc-xgene". 1960f12d8695SLoc Ho 196151aa905cSJoshua Hendersonconfig RTC_DRV_PIC32 196251aa905cSJoshua Henderson tristate "Microchip PIC32 RTC" 196351aa905cSJoshua Henderson depends on MACH_PIC32 196451aa905cSJoshua Henderson default y 196551aa905cSJoshua Henderson help 196651aa905cSJoshua Henderson If you say yes here you get support for the PIC32 RTC module. 196751aa905cSJoshua Henderson 196851aa905cSJoshua Henderson This driver can also be built as a module. If so, the module 196951aa905cSJoshua Henderson will be called rtc-pic32 197051aa905cSJoshua Henderson 19710b6a8f5cSAkinobu Mitaconfig RTC_DRV_R7301 19720b6a8f5cSAkinobu Mita tristate "EPSON TOYOCOM RTC-7301SF/DG" 19730b6a8f5cSAkinobu Mita select REGMAP_MMIO 19740b6a8f5cSAkinobu Mita depends on OF && HAS_IOMEM 19750b6a8f5cSAkinobu Mita help 19760b6a8f5cSAkinobu Mita If you say yes here you get support for the EPSON TOYOCOM 19770b6a8f5cSAkinobu Mita RTC-7301SF/DG chips. 19780b6a8f5cSAkinobu Mita 19790b6a8f5cSAkinobu Mita This driver can also be built as a module. If so, the module 19800b6a8f5cSAkinobu Mita will be called rtc-r7301. 19810b6a8f5cSAkinobu Mita 19824e64350fSAmelie Delaunayconfig RTC_DRV_STM32 19834e64350fSAmelie Delaunay tristate "STM32 RTC" 19844e64350fSAmelie Delaunay select REGMAP_MMIO 19854e64350fSAmelie Delaunay depends on ARCH_STM32 || COMPILE_TEST 198616ad2bc0SValentin Caron depends on OF 198716ad2bc0SValentin Caron depends on PINCTRL 198816ad2bc0SValentin Caron select PINMUX 198916ad2bc0SValentin Caron select PINCONF 199016ad2bc0SValentin Caron select GENERIC_PINCONF 1991bb7b0df2SValentin Caron depends on COMMON_CLK 19924e64350fSAmelie Delaunay help 19934e64350fSAmelie Delaunay If you say yes here you get support for the STM32 On-Chip 19944e64350fSAmelie Delaunay Real Time Clock. 19954e64350fSAmelie Delaunay 19964e64350fSAmelie Delaunay This driver can also be built as a module, if so, the module 19974e64350fSAmelie Delaunay will be called "rtc-stm32". 19984e64350fSAmelie Delaunay 1999dd3bf50bSSebastian Reichelconfig RTC_DRV_CPCAP 2000dd3bf50bSSebastian Reichel depends on MFD_CPCAP 2001dd3bf50bSSebastian Reichel tristate "Motorola CPCAP RTC" 2002dd3bf50bSSebastian Reichel help 2003dd3bf50bSSebastian Reichel Say y here for CPCAP rtc found on some Motorola phones 2004dd3bf50bSSebastian Reichel and tablets such as Droid 4. 2005dd3bf50bSSebastian Reichel 2006ae930c91SAndreas Färberconfig RTC_DRV_RTD119X 2007ae930c91SAndreas Färber bool "Realtek RTD129x RTC" 2008ae930c91SAndreas Färber depends on ARCH_REALTEK || COMPILE_TEST 2009ae930c91SAndreas Färber default ARCH_REALTEK 2010ae930c91SAndreas Färber help 2011ae930c91SAndreas Färber If you say yes here, you get support for the RTD1295 SoC 2012ae930c91SAndreas Färber Real Time Clock. 2013ae930c91SAndreas Färber 2014184a182eSJoel Stanleyconfig RTC_DRV_ASPEED 2015184a182eSJoel Stanley tristate "ASPEED RTC" 2016184a182eSJoel Stanley depends on OF 2017184a182eSJoel Stanley depends on ARCH_ASPEED || COMPILE_TEST 2018184a182eSJoel Stanley help 2019184a182eSJoel Stanley If you say yes here you get support for the ASPEED BMC SoC real time 2020184a182eSJoel Stanley clocks. 2021184a182eSJoel Stanley 2022184a182eSJoel Stanley This driver can also be built as a module, if so, the module 2023184a182eSJoel Stanley will be called "rtc-aspeed". 2024184a182eSJoel Stanley 2025b09d6335SNishanth Menonconfig RTC_DRV_TI_K3 2026b09d6335SNishanth Menon tristate "TI K3 RTC" 2027b09d6335SNishanth Menon depends on ARCH_K3 || COMPILE_TEST 2028b09d6335SNishanth Menon select REGMAP_MMIO 2029b09d6335SNishanth Menon help 2030b09d6335SNishanth Menon If you say yes here you get support for the Texas Instruments's 2031b09d6335SNishanth Menon Real Time Clock for K3 architecture. 2032b09d6335SNishanth Menon 2033b09d6335SNishanth Menon This driver can also be built as a module, if so, the module 2034b09d6335SNishanth Menon will be called "rtc-ti-k3". 2035b09d6335SNishanth Menon 2036dc0684adSJacky Huangconfig RTC_DRV_MA35D1 2037dc0684adSJacky Huang tristate "Nuvoton MA35D1 RTC" 2038dc0684adSJacky Huang depends on ARCH_MA35 || COMPILE_TEST 2039dc0684adSJacky Huang select REGMAP_MMIO 2040dc0684adSJacky Huang help 2041dc0684adSJacky Huang If you say yes here you get support for the Nuvoton MA35D1 2042dc0684adSJacky Huang On-Chip Real Time Clock. 2043dc0684adSJacky Huang 2044dc0684adSJacky Huang This driver can also be built as a module, if so, the module 2045dc0684adSJacky Huang will be called "rtc-ma35d1". 2046dc0684adSJacky Huang 2047d4488377SClaudiu Bezneaconfig RTC_DRV_RENESAS_RTCA3 2048d4488377SClaudiu Beznea tristate "Renesas RTCA-3 RTC" 2049d4488377SClaudiu Beznea depends on ARCH_RENESAS 2050d4488377SClaudiu Beznea help 2051d4488377SClaudiu Beznea If you say yes here you get support for the Renesas RTCA-3 RTC 2052d4488377SClaudiu Beznea available on the Renesas RZ/G3S SoC. 2053d4488377SClaudiu Beznea 2054d4488377SClaudiu Beznea This driver can also be built as a module, if so, the module 2055d4488377SClaudiu Beznea will be called "rtc-rtca3". 2056d4488377SClaudiu Beznea 2057f22d9cdcSMiodrag Dinicconfig RTC_DRV_GOLDFISH 2058f22d9cdcSMiodrag Dinic tristate "Goldfish Real Time Clock" 20593fd00fdcSLaurent Vivier depends on HAS_IOMEM 2060f22d9cdcSMiodrag Dinic help 2061f22d9cdcSMiodrag Dinic Say yes to enable RTC driver for the Goldfish based virtual platform. 2062f22d9cdcSMiodrag Dinic 2063f22d9cdcSMiodrag Dinic Goldfish is a code name for the virtual platform developed by Google 2064f22d9cdcSMiodrag Dinic for Android emulation. 206562e00cb9SAlexander Holler 20660d2f2a3dSNick Crewsconfig RTC_DRV_WILCO_EC 20670d2f2a3dSNick Crews tristate "Wilco EC RTC" 20680d2f2a3dSNick Crews depends on WILCO_EC 20690d2f2a3dSNick Crews default m 20700d2f2a3dSNick Crews help 20710d2f2a3dSNick Crews If you say yes here, you get read/write support for the Real Time 20720d2f2a3dSNick Crews Clock on the Wilco Embedded Controller (Wilco is a kind of Chromebook) 20730d2f2a3dSNick Crews 20740d2f2a3dSNick Crews This can also be built as a module. If so, the module will 20750d2f2a3dSNick Crews be named "rtc_wilco_ec". 20760d2f2a3dSNick Crews 2077be7d9c91SDaniel Palmerconfig RTC_DRV_MSC313 2078be7d9c91SDaniel Palmer tristate "MStar MSC313 RTC" 2079be7d9c91SDaniel Palmer depends on ARCH_MSTARV7 || COMPILE_TEST 2080be7d9c91SDaniel Palmer help 2081be7d9c91SDaniel Palmer If you say yes here you get support for the Mstar MSC313e On-Chip 2082be7d9c91SDaniel Palmer Real Time Clock. 2083be7d9c91SDaniel Palmer 2084be7d9c91SDaniel Palmer This driver can also be built as a module, if so, the module 2085be7d9c91SDaniel Palmer will be called "rtc-msc313". 2086be7d9c91SDaniel Palmer 20870b31d703SConor Dooleyconfig RTC_DRV_POLARFIRE_SOC 20880b31d703SConor Dooley tristate "Microchip PolarFire SoC built-in RTC" 2089f12f0c7dSConor Dooley depends on ARCH_MICROCHIP_POLARFIRE 20900b31d703SConor Dooley help 20910b31d703SConor Dooley If you say yes here you will get support for the 20920b31d703SConor Dooley built-in RTC on Polarfire SoC. 20930b31d703SConor Dooley 20940b31d703SConor Dooley This driver can also be built as a module, if so, the module 20950b31d703SConor Dooley will be called "rtc-mpfs". 20960b31d703SConor Dooley 2097ebf62558SRomain Perierconfig RTC_DRV_SSD202D 2098ebf62558SRomain Perier tristate "SigmaStar SSD202D RTC" 2099ebf62558SRomain Perier depends on ARCH_MSTARV7 || COMPILE_TEST 2100ebf62558SRomain Perier default ARCH_MSTARV7 2101ebf62558SRomain Perier help 2102ebf62558SRomain Perier If you say yes here you get support for the SigmaStar SSD202D On-Chip 2103ebf62558SRomain Perier Real Time Clock. 2104ebf62558SRomain Perier 2105ebf62558SRomain Perier This driver can also be built as a module, if so, the module 2106ebf62558SRomain Perier will be called "rtc-ssd20xd". 2107ebf62558SRomain Perier 2108c89ac918SYiting Dengconfig RTC_DRV_AMLOGIC_A4 2109c89ac918SYiting Deng tristate "Amlogic RTC" 2110c89ac918SYiting Deng depends on ARCH_MESON || COMPILE_TEST 2111c89ac918SYiting Deng select REGMAP_MMIO 21127498dca1SKrzysztof Kozlowski default ARCH_MESON 2113c89ac918SYiting Deng help 2114c89ac918SYiting Deng If you say yes here you get support for the RTC block on the 2115c89ac918SYiting Deng Amlogic A113L2(A4) and A113X2(A5) SoCs. 2116c89ac918SYiting Deng 2117c89ac918SYiting Deng This driver can also be built as a module. If so, the module 2118c89ac918SYiting Deng will be called "rtc-amlogic-a4". 2119c89ac918SYiting Deng 2120818b6709SCiprian Marian Costeaconfig RTC_DRV_S32G 2121818b6709SCiprian Marian Costea tristate "RTC driver for S32G2/S32G3 SoCs" 2122818b6709SCiprian Marian Costea depends on ARCH_S32 || COMPILE_TEST 2123818b6709SCiprian Marian Costea depends on COMMON_CLK 2124818b6709SCiprian Marian Costea help 2125818b6709SCiprian Marian Costea Say yes to enable RTC driver for platforms based on the 2126818b6709SCiprian Marian Costea S32G2/S32G3 SoC family. 2127818b6709SCiprian Marian Costea 2128818b6709SCiprian Marian Costea This RTC module can be used as a wakeup source. 2129818b6709SCiprian Marian Costea Please note that it is not battery-powered. 2130818b6709SCiprian Marian Costea 2131*a5a19e80SAlexandre Bellonicomment "HID Sensor RTC drivers" 2132*a5a19e80SAlexandre Belloni 2133*a5a19e80SAlexandre Belloniconfig RTC_DRV_HID_SENSOR_TIME 2134*a5a19e80SAlexandre Belloni tristate "HID Sensor Time" 2135*a5a19e80SAlexandre Belloni depends on USB_HID 2136*a5a19e80SAlexandre Belloni depends on HID_SENSOR_HUB && IIO 2137*a5a19e80SAlexandre Belloni select HID_SENSOR_IIO_COMMON 2138*a5a19e80SAlexandre Belloni help 2139*a5a19e80SAlexandre Belloni Say yes here to build support for the HID Sensors of type Time. 2140*a5a19e80SAlexandre Belloni This drivers makes such sensors available as RTCs. 2141*a5a19e80SAlexandre Belloni 2142*a5a19e80SAlexandre Belloni If this driver is compiled as a module, it will be named 2143*a5a19e80SAlexandre Belloni rtc-hid-sensor-time. 2144*a5a19e80SAlexandre Belloni 2145bb35fb20SJan Engelhardtendif # RTC_CLASS 2146