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 163369465eSAl Viro depends on !S390 && !UML 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 4455ff1abaSDavid Brownell The driver for this RTC device must be loaded before late_initcall 4555ff1abaSDavid Brownell functions run, so it must usually be statically linked. 4655ff1abaSDavid Brownell 477ca1d488SDavid Brownell This clock should be battery-backed, so that it reads the correct 487ca1d488SDavid Brownell time when the system boots from a power-off state. Otherwise, your 497ca1d488SDavid Brownell system will need an external clock source (like an NTP server). 507ca1d488SDavid Brownell 517ca1d488SDavid Brownell If the clock you specify here is not battery backed, it may still 527ca1d488SDavid Brownell be useful to reinitialize system time when resuming from system 537ca1d488SDavid Brownell sleep states. Do not specify an RTC here unless it stays powered 547ca1d488SDavid Brownell during all this system's supported sleep states. 550c86edc0SAlessandro Zummo 569c5150b3SXunlei Pangconfig RTC_SYSTOHC 579c5150b3SXunlei Pang bool "Set the RTC time based on NTP synchronization" 589c5150b3SXunlei Pang default y 599c5150b3SXunlei Pang help 609c5150b3SXunlei Pang If you say yes here, the system time (wall clock) will be stored 619c5150b3SXunlei Pang in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11 629c5150b3SXunlei Pang minutes if userspace reports synchronized NTP status. 639c5150b3SXunlei Pang 649c5150b3SXunlei Pangconfig RTC_SYSTOHC_DEVICE 659c5150b3SXunlei Pang string "RTC used to synchronize NTP adjustment" 669c5150b3SXunlei Pang depends on RTC_SYSTOHC 679c5150b3SXunlei Pang default RTC_HCTOSYS_DEVICE if RTC_HCTOSYS 689c5150b3SXunlei Pang default "rtc0" 699c5150b3SXunlei Pang help 709c5150b3SXunlei Pang The RTC device used for NTP synchronization. The main difference 719c5150b3SXunlei Pang between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this 729c5150b3SXunlei Pang one can sleep when setting time, because it runs in the workqueue 739c5150b3SXunlei Pang context. 749c5150b3SXunlei Pang 759e86ecb6SDavid Brownellconfig RTC_DEBUG 769e86ecb6SDavid Brownell bool "RTC debug support" 779e86ecb6SDavid Brownell help 789e86ecb6SDavid Brownell Say yes here to enable debugging support in the RTC framework 799e86ecb6SDavid Brownell and individual RTC drivers. 809e86ecb6SDavid Brownell 81697e5a47SAlexandre Belloniconfig RTC_NVMEM 82697e5a47SAlexandre Belloni bool "RTC non volatile storage support" 83697e5a47SAlexandre Belloni select NVMEM 84697e5a47SAlexandre Belloni default RTC_CLASS 85697e5a47SAlexandre Belloni help 86697e5a47SAlexandre Belloni Say yes here to add support for the non volatile (often battery 87697e5a47SAlexandre Belloni backed) storage present on RTCs. 88697e5a47SAlexandre Belloni 890c86edc0SAlessandro Zummocomment "RTC interfaces" 900c86edc0SAlessandro Zummo 91c5c3e192SAlessandro Zummoconfig RTC_INTF_SYSFS 926341e62bSChristoph Jaeger bool "/sys/class/rtc/rtcN (sysfs)" 93bb35fb20SJan Engelhardt depends on SYSFS 948dc08395SKevin Hilman default RTC_CLASS 95c5c3e192SAlessandro Zummo help 969e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using sysfs interfaces, 979e86ecb6SDavid Brownell /sys/class/rtc/rtc0 through /sys/.../rtcN. 98c5c3e192SAlessandro Zummo 99ae64d169SAlessandro Zummo If unsure, say Y. 100c5c3e192SAlessandro Zummo 101728a2947SAlessandro Zummoconfig RTC_INTF_PROC 1026341e62bSChristoph Jaeger bool "/proc/driver/rtc (procfs for rtcN)" 103bb35fb20SJan Engelhardt depends on PROC_FS 1048dc08395SKevin Hilman default RTC_CLASS 105728a2947SAlessandro Zummo help 10692589c98SKim, Milo Say yes here if you want to use your system clock RTC through 10792589c98SKim, Milo the proc interface, /proc/driver/rtc. 10892589c98SKim, Milo Other RTCs will not be available through that API. 10992589c98SKim, Milo If there is no RTC for the system clock, then the first RTC(rtc0) 11092589c98SKim, Milo is used by default. 111728a2947SAlessandro Zummo 112ae64d169SAlessandro Zummo If unsure, say Y. 113728a2947SAlessandro Zummo 114e824290eSAlessandro Zummoconfig RTC_INTF_DEV 1156341e62bSChristoph Jaeger bool "/dev/rtcN (character devices)" 1168dc08395SKevin Hilman default RTC_CLASS 117e824290eSAlessandro Zummo help 1189e86ecb6SDavid Brownell Say yes here if you want to use your RTCs using the /dev 1199e86ecb6SDavid Brownell interfaces, which "udev" sets up as /dev/rtc0 through 120ae64d169SAlessandro Zummo /dev/rtcN. 121e824290eSAlessandro Zummo 122ae64d169SAlessandro Zummo You may want to set up a symbolic link so one of these 123ae64d169SAlessandro Zummo can be accessed as /dev/rtc, which is a name 124ae64d169SAlessandro Zummo expected by "hwclock" and some other programs. Recent 125ae64d169SAlessandro Zummo versions of "udev" are known to set up the symlink for you. 126ae64d169SAlessandro Zummo 127ae64d169SAlessandro Zummo If unsure, say Y. 128e824290eSAlessandro Zummo 1296e57b1d6SJohn Stultzconfig RTC_INTF_DEV_UIE_EMUL 1306e57b1d6SJohn Stultz bool "RTC UIE emulation on dev interface" 1316e57b1d6SJohn Stultz depends on RTC_INTF_DEV 1326e57b1d6SJohn Stultz help 1336e57b1d6SJohn Stultz Provides an emulation for RTC_UIE if the underlying rtc chip 1346e57b1d6SJohn Stultz driver does not expose RTC_UIE ioctls. Those requests generate 1356e57b1d6SJohn Stultz once-per-second update interrupts, used for synchronization. 1366e57b1d6SJohn Stultz 1376e57b1d6SJohn Stultz The emulation code will read the time from the hardware 1386e57b1d6SJohn Stultz clock several times per second, please enable this option 1396e57b1d6SJohn Stultz only if you know that you really need it. 1406e57b1d6SJohn Stultz 14109a21e56SAlessandro Zummoconfig RTC_DRV_TEST 14209a21e56SAlessandro Zummo tristate "Test driver/device" 14309a21e56SAlessandro Zummo help 14409a21e56SAlessandro Zummo If you say yes here you get support for the 14509a21e56SAlessandro Zummo RTC test driver. It's a software RTC which can be 14609a21e56SAlessandro Zummo used to test the RTC subsystem APIs. It gets 14709a21e56SAlessandro Zummo the time from the system clock. 14809a21e56SAlessandro Zummo You want this driver only if you are doing development 14909a21e56SAlessandro Zummo on the RTC subsystem. Please read the source code 15009a21e56SAlessandro Zummo for further details. 15109a21e56SAlessandro Zummo 15209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 15309a21e56SAlessandro Zummo will be called rtc-test. 15409a21e56SAlessandro Zummo 15509a21e56SAlessandro Zummocomment "I2C RTC drivers" 156bb35fb20SJan Engelhardt 157bb35fb20SJan Engelhardtif I2C 15809a21e56SAlessandro Zummo 159008b3040SHaojian Zhuangconfig RTC_DRV_88PM860X 160008b3040SHaojian Zhuang tristate "Marvell 88PM860x" 1613783055eSAlexandre Belloni depends on MFD_88PM860X 162008b3040SHaojian Zhuang help 163008b3040SHaojian Zhuang If you say yes here you get support for RTC function in Marvell 164008b3040SHaojian Zhuang 88PM860x chips. 165008b3040SHaojian Zhuang 166008b3040SHaojian Zhuang This driver can also be built as a module. If so, the module 167008b3040SHaojian Zhuang will be called rtc-88pm860x. 168008b3040SHaojian Zhuang 1692985c29cSQiao Zhouconfig RTC_DRV_88PM80X 1702985c29cSQiao Zhou tristate "Marvell 88PM80x" 1713783055eSAlexandre Belloni depends on MFD_88PM800 1722985c29cSQiao Zhou help 1732985c29cSQiao Zhou If you say yes here you get support for RTC function in Marvell 1742985c29cSQiao Zhou 88PM80x chips. 1752985c29cSQiao Zhou 1762985c29cSQiao Zhou This driver can also be built as a module. If so, the module 1772985c29cSQiao Zhou will be called rtc-88pm80x. 1782985c29cSQiao Zhou 1790b2f6228SArnaud Ebalardconfig RTC_DRV_ABB5ZES3 1800b2f6228SArnaud Ebalard select REGMAP_I2C 1810b2f6228SArnaud Ebalard tristate "Abracon AB-RTCMC-32.768kHz-B5ZE-S3" 1820b2f6228SArnaud Ebalard help 1830b2f6228SArnaud Ebalard If you say yes here you get support for the Abracon 1840b2f6228SArnaud Ebalard AB-RTCMC-32.768kHz-B5ZE-S3 I2C RTC chip. 1850b2f6228SArnaud Ebalard 1860b2f6228SArnaud Ebalard This driver can also be built as a module. If so, the module 1870b2f6228SArnaud Ebalard will be called rtc-ab-b5ze-s3. 1880b2f6228SArnaud Ebalard 18967075b63SArtem Panfilovconfig RTC_DRV_ABEOZ9 19067075b63SArtem Panfilov select REGMAP_I2C 19167075b63SArtem Panfilov tristate "Abracon AB-RTCMC-32.768kHz-EOZ9" 19267075b63SArtem Panfilov help 19367075b63SArtem Panfilov If you say yes here you get support for the Abracon 19467075b63SArtem Panfilov AB-RTCMC-32.768kHz-EOA9 I2C RTC chip. 19567075b63SArtem Panfilov 19667075b63SArtem Panfilov This driver can also be built as a module. If so, the module 19767075b63SArtem Panfilov will be called rtc-ab-e0z9. 19867075b63SArtem Panfilov 1994d61ff6bSPhilippe De Muyterconfig RTC_DRV_ABX80X 2004d61ff6bSPhilippe De Muyter tristate "Abracon ABx80x" 201749e36d0SJeremy Gebben select WATCHDOG_CORE if WATCHDOG 2024d61ff6bSPhilippe De Muyter help 2034d61ff6bSPhilippe De Muyter If you say yes here you get support for Abracon AB080X and AB180X 2044d61ff6bSPhilippe De Muyter families of ultra-low-power battery- and capacitor-backed real-time 2054d61ff6bSPhilippe De Muyter clock chips. 2064d61ff6bSPhilippe De Muyter 2074d61ff6bSPhilippe De Muyter This driver can also be built as a module. If so, the module 2084d61ff6bSPhilippe De Muyter will be called rtc-abx80x. 2094d61ff6bSPhilippe De Muyter 210d00a18a4SChen-Yu Tsaiconfig RTC_DRV_AC100 211d00a18a4SChen-Yu Tsai tristate "X-Powers AC100" 212d00a18a4SChen-Yu Tsai depends on MFD_AC100 213d00a18a4SChen-Yu Tsai help 214d00a18a4SChen-Yu Tsai If you say yes here you get support for the real-time clock found 215d00a18a4SChen-Yu Tsai in X-Powers AC100 family peripheral ICs. 216d00a18a4SChen-Yu Tsai 217d00a18a4SChen-Yu Tsai This driver can also be built as a module. If so, the module 218d00a18a4SChen-Yu Tsai will be called rtc-ac100. 219d00a18a4SChen-Yu Tsai 220c4f07eceSBrian Norrisconfig RTC_DRV_BRCMSTB 221c4f07eceSBrian Norris tristate "Broadcom STB wake-timer" 222c4f07eceSBrian Norris depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST 223c4f07eceSBrian Norris default ARCH_BRCMSTB || BMIPS_GENERIC 224c4f07eceSBrian Norris help 225c4f07eceSBrian Norris If you say yes here you get support for the wake-timer found on 226c4f07eceSBrian Norris Broadcom STB SoCs (BCM7xxx). 227c4f07eceSBrian Norris 228c4f07eceSBrian Norris This driver can also be built as a module. If so, the module will 229c4f07eceSBrian Norris be called rtc-brcmstb-waketimer. 230c4f07eceSBrian Norris 231b4506261SLaxman Dewanganconfig RTC_DRV_AS3722 232b4506261SLaxman Dewangan tristate "ams AS3722 RTC driver" 233b4506261SLaxman Dewangan depends on MFD_AS3722 234b4506261SLaxman Dewangan help 235b4506261SLaxman Dewangan If you say yes here you get support for the RTC of ams AS3722 PMIC 236b4506261SLaxman Dewangan chips. 237b4506261SLaxman Dewangan 238b4506261SLaxman Dewangan This driver can also be built as a module. If so, the module 239b4506261SLaxman Dewangan will be called rtc-as3722. 240b4506261SLaxman Dewangan 24109a21e56SAlessandro Zummoconfig RTC_DRV_DS1307 2420759c886SNikita Yushchenko tristate "Dallas/Maxim DS1307/37/38/39/40/41, ST M41T00, EPSON RX-8025, ISL12057" 24309a21e56SAlessandro Zummo help 24409a21e56SAlessandro Zummo If you say yes here you get support for various compatible RTC 24509a21e56SAlessandro Zummo chips (often with battery backup) connected with I2C. This driver 2460759c886SNikita Yushchenko should handle DS1307, DS1337, DS1338, DS1339, DS1340, DS1341, 2470759c886SNikita Yushchenko ST M41T00, EPSON RX-8025, Intersil ISL12057 and probably other chips. 2480759c886SNikita Yushchenko In some cases the RTC must already have been initialized (by 2490759c886SNikita Yushchenko manufacturing or a bootloader). 25009a21e56SAlessandro Zummo 25109a21e56SAlessandro Zummo The first seven registers on these chips hold an RTC, and other 25209a21e56SAlessandro Zummo registers may add features such as NVRAM, a trickle charger for 253682d73f6SDavid Brownell the RTC/NVRAM backup power, and alarms. NVRAM is visible in 254682d73f6SDavid Brownell sysfs, but other chip features may not be available. 25509a21e56SAlessandro Zummo 25609a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 25709a21e56SAlessandro Zummo will be called rtc-ds1307. 25809a21e56SAlessandro Zummo 25950d6c0eaSAlexandre Belloniconfig RTC_DRV_DS1307_CENTURY 26050d6c0eaSAlexandre Belloni bool "Century bit support for rtc-ds1307" 26150d6c0eaSAlexandre Belloni depends on RTC_DRV_DS1307 26250d6c0eaSAlexandre Belloni default n 26350d6c0eaSAlexandre Belloni help 26450d6c0eaSAlexandre Belloni The DS1307 driver suffered from a bug where it was enabling the 26550d6c0eaSAlexandre Belloni century bit inconditionnally but never used it when reading the time. 26650d6c0eaSAlexandre Belloni It made the driver unable to support dates beyond 2099. 26750d6c0eaSAlexandre Belloni Setting this option will add proper support for the century bit but if 26850d6c0eaSAlexandre Belloni the time was previously set using a kernel predating this option, 26950d6c0eaSAlexandre Belloni reading the date will return a date in the next century. 27050d6c0eaSAlexandre Belloni To solve that, you could boot a kernel without this option set, set 27150d6c0eaSAlexandre Belloni the RTC date and then boot a kernel with this option set. 27250d6c0eaSAlexandre Belloni 273bf4994d7SScott Woodconfig RTC_DRV_DS1374 27409b6bdb3SAlessandro Zummo tristate "Dallas/Maxim DS1374" 275bf4994d7SScott Wood help 276bf4994d7SScott Wood If you say yes here you get support for Dallas Semiconductor 277bf4994d7SScott Wood DS1374 real-time clock chips. If an interrupt is associated 278bf4994d7SScott Wood with the device, the alarm functionality is supported. 279bf4994d7SScott Wood 280bf4994d7SScott Wood This driver can also be built as a module. If so, the module 281bf4994d7SScott Wood will be called rtc-ds1374. 282bf4994d7SScott Wood 283920f91e5SSøren Andersenconfig RTC_DRV_DS1374_WDT 284920f91e5SSøren Andersen bool "Dallas/Maxim DS1374 watchdog timer" 285920f91e5SSøren Andersen depends on RTC_DRV_DS1374 286920f91e5SSøren Andersen help 287920f91e5SSøren Andersen If you say Y here you will get support for the 288920f91e5SSøren Andersen watchdog timer in the Dallas Semiconductor DS1374 289920f91e5SSøren Andersen real-time clock chips. 290920f91e5SSøren Andersen 29109a21e56SAlessandro Zummoconfig RTC_DRV_DS1672 29209a21e56SAlessandro Zummo tristate "Dallas/Maxim DS1672" 29309a21e56SAlessandro Zummo help 29409a21e56SAlessandro Zummo If you say yes here you get support for the 29509a21e56SAlessandro Zummo Dallas/Maxim DS1672 timekeeping chip. 29609a21e56SAlessandro Zummo 29709a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 29809a21e56SAlessandro Zummo will be called rtc-ds1672. 29909a21e56SAlessandro Zummo 300dcaf0384SHeiko Stuebnerconfig RTC_DRV_HYM8563 301dcaf0384SHeiko Stuebner tristate "Haoyu Microelectronics HYM8563" 3023783055eSAlexandre Belloni depends on OF 303dcaf0384SHeiko Stuebner help 304dcaf0384SHeiko Stuebner Say Y to enable support for the HYM8563 I2C RTC chip. Apart 305dcaf0384SHeiko Stuebner from the usual rtc functions it provides a clock output of 306dcaf0384SHeiko Stuebner up to 32kHz. 307dcaf0384SHeiko Stuebner 308dcaf0384SHeiko Stuebner This driver can also be built as a module. If so, the module 309dcaf0384SHeiko Stuebner will be called rtc-hym8563. 310dcaf0384SHeiko Stuebner 31138ae176eSKim, Miloconfig RTC_DRV_LP8788 31238ae176eSKim, Milo tristate "TI LP8788 RTC driver" 31338ae176eSKim, Milo depends on MFD_LP8788 31438ae176eSKim, Milo help 31538ae176eSKim, Milo Say Y to enable support for the LP8788 RTC/ALARM driver. 31638ae176eSKim, Milo 31709a21e56SAlessandro Zummoconfig RTC_DRV_MAX6900 31809b6bdb3SAlessandro Zummo tristate "Maxim MAX6900" 31909a21e56SAlessandro Zummo help 32009a21e56SAlessandro Zummo If you say yes here you will get support for the 32109a21e56SAlessandro Zummo Maxim MAX6900 I2C RTC chip. 32209a21e56SAlessandro Zummo 32309a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 32409a21e56SAlessandro Zummo will be called rtc-max6900. 32509a21e56SAlessandro Zummo 32694c01ab6SStephen Warrenconfig RTC_DRV_MAX8907 32794c01ab6SStephen Warren tristate "Maxim MAX8907" 328959df777SKrzysztof Kozlowski depends on MFD_MAX8907 || COMPILE_TEST 32994c01ab6SStephen Warren help 33094c01ab6SStephen Warren If you say yes here you will get support for the 33194c01ab6SStephen Warren RTC of Maxim MAX8907 PMIC. 33294c01ab6SStephen Warren 33394c01ab6SStephen Warren This driver can also be built as a module. If so, the module 33494c01ab6SStephen Warren will be called rtc-max8907. 33594c01ab6SStephen Warren 336a39069f6SHaojian Zhuangconfig RTC_DRV_MAX8925 337a39069f6SHaojian Zhuang tristate "Maxim MAX8925" 338a39069f6SHaojian Zhuang depends on MFD_MAX8925 339a39069f6SHaojian Zhuang help 340a39069f6SHaojian Zhuang If you say yes here you will get support for the 341a39069f6SHaojian Zhuang RTC of Maxim MAX8925 PMIC. 342a39069f6SHaojian Zhuang 343a39069f6SHaojian Zhuang This driver can also be built as a module. If so, the module 344a39069f6SHaojian Zhuang will be called rtc-max8925. 345a39069f6SHaojian Zhuang 3469b16c0a4SJoonyoung Shimconfig RTC_DRV_MAX8998 3479b16c0a4SJoonyoung Shim tristate "Maxim MAX8998" 3489b16c0a4SJoonyoung Shim depends on MFD_MAX8998 3499b16c0a4SJoonyoung Shim help 3509b16c0a4SJoonyoung Shim If you say yes here you will get support for the 3519b16c0a4SJoonyoung Shim RTC of Maxim MAX8998 PMIC. 3529b16c0a4SJoonyoung Shim 3539b16c0a4SJoonyoung Shim This driver can also be built as a module. If so, the module 3549b16c0a4SJoonyoung Shim will be called rtc-max8998. 3559b16c0a4SJoonyoung Shim 3565e0b2704SJonghwa Leeconfig RTC_DRV_MAX8997 3575e0b2704SJonghwa Lee tristate "Maxim MAX8997" 3585e0b2704SJonghwa Lee depends on MFD_MAX8997 3595e0b2704SJonghwa Lee help 3605e0b2704SJonghwa Lee If you say yes here you will get support for the 3615e0b2704SJonghwa Lee RTC of Maxim MAX8997 PMIC. 3625e0b2704SJonghwa Lee 3635e0b2704SJonghwa Lee This driver can also be built as a module. If so, the module 3645e0b2704SJonghwa Lee will be called rtc-max8997. 3655e0b2704SJonghwa Lee 366fca1dd03SJonghwa Leeconfig RTC_DRV_MAX77686 367fca1dd03SJonghwa Lee tristate "Maxim MAX77686" 368959df777SKrzysztof Kozlowski depends on MFD_MAX77686 || MFD_MAX77620 || COMPILE_TEST 369fca1dd03SJonghwa Lee help 370fca1dd03SJonghwa Lee If you say yes here you will get support for the 371726fe738SLaxman Dewangan RTC of Maxim MAX77686/MAX77620/MAX77802 PMIC. 372fca1dd03SJonghwa Lee 373fca1dd03SJonghwa Lee This driver can also be built as a module. If so, the module 374fca1dd03SJonghwa Lee will be called rtc-max77686. 375fca1dd03SJonghwa Lee 3763ca1e326SChris Zhongconfig RTC_DRV_RK808 377dc79054aSTony Xie tristate "Rockchip RK805/RK808/RK809/RK817/RK818 RTC" 3783ca1e326SChris Zhong depends on MFD_RK808 3793ca1e326SChris Zhong help 3803ca1e326SChris Zhong If you say yes here you will get support for the 381dc79054aSTony Xie RTC of RK805, RK809 and RK817, RK808 and RK818 PMIC. 3823ca1e326SChris Zhong 3833ca1e326SChris Zhong This driver can also be built as a module. If so, the module 3843ca1e326SChris Zhong will be called rk808-rtc. 3853ca1e326SChris Zhong 38609a21e56SAlessandro Zummoconfig RTC_DRV_RS5C372 3875d4529beSPaul Mundt tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A" 38809a21e56SAlessandro Zummo help 38909a21e56SAlessandro Zummo If you say yes here you get support for the 3905d4529beSPaul Mundt Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips. 39109a21e56SAlessandro Zummo 39209a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 39309a21e56SAlessandro Zummo will be called rtc-rs5c372. 39409a21e56SAlessandro Zummo 39509a21e56SAlessandro Zummoconfig RTC_DRV_ISL1208 39609b6bdb3SAlessandro Zummo tristate "Intersil ISL1208" 39709a21e56SAlessandro Zummo help 39809a21e56SAlessandro Zummo If you say yes here you get support for the 39909b6bdb3SAlessandro Zummo Intersil ISL1208 RTC chip. 40009a21e56SAlessandro Zummo 40109a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 40209a21e56SAlessandro Zummo will be called rtc-isl1208. 40309a21e56SAlessandro Zummo 404d6c7428fSRoman Fietzeconfig RTC_DRV_ISL12022 405d6c7428fSRoman Fietze tristate "Intersil ISL12022" 406d6c7428fSRoman Fietze help 407d6c7428fSRoman Fietze If you say yes here you get support for the 408d6c7428fSRoman Fietze Intersil ISL12022 RTC chip. 409d6c7428fSRoman Fietze 410d6c7428fSRoman Fietze This driver can also be built as a module. If so, the module 411d6c7428fSRoman Fietze will be called rtc-isl12022. 412d6c7428fSRoman Fietze 4134731a431SDavid Daneyconfig RTC_DRV_ISL12026 4144731a431SDavid Daney tristate "Intersil ISL12026" 4154731a431SDavid Daney depends on OF || COMPILE_TEST 4164731a431SDavid Daney help 4174731a431SDavid Daney If you say yes here you get support for the 4184731a431SDavid Daney Intersil ISL12026 RTC chip. 4194731a431SDavid Daney 4204731a431SDavid Daney This driver can also be built as a module. If so, the module 4214731a431SDavid Daney will be called rtc-isl12026. 4224731a431SDavid Daney 42309a21e56SAlessandro Zummoconfig RTC_DRV_X1205 42409a21e56SAlessandro Zummo tristate "Xicor/Intersil X1205" 42509a21e56SAlessandro Zummo help 42609a21e56SAlessandro Zummo If you say yes here you get support for the 42709a21e56SAlessandro Zummo Xicor/Intersil X1205 RTC chip. 42809a21e56SAlessandro Zummo 42909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 43009a21e56SAlessandro Zummo will be called rtc-x1205. 43109a21e56SAlessandro Zummo 432f803f0d0SThierry Redingconfig RTC_DRV_PCF8523 433f803f0d0SThierry Reding tristate "NXP PCF8523" 434f803f0d0SThierry Reding help 435f803f0d0SThierry Reding If you say yes here you get support for the NXP PCF8523 RTC 436f803f0d0SThierry Reding chips. 437f803f0d0SThierry Reding 438f803f0d0SThierry Reding This driver can also be built as a module. If so, the module 439f803f0d0SThierry Reding will be called rtc-pcf8523. 440f803f0d0SThierry Reding 441d084885eSSoren Brinkmannconfig RTC_DRV_PCF85063 442d084885eSSoren Brinkmann tristate "NXP PCF85063" 443e89b60d0SAlexandre Belloni select REGMAP_I2C 444d084885eSSoren Brinkmann help 445d084885eSSoren Brinkmann If you say yes here you get support for the PCF85063 RTC chip 446d084885eSSoren Brinkmann 447d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 448d084885eSSoren Brinkmann will be called rtc-pcf85063. 449d084885eSSoren Brinkmann 450a9687aa2SEric Nelsonconfig RTC_DRV_PCF85363 451a9687aa2SEric Nelson tristate "NXP PCF85363" 452a9687aa2SEric Nelson select REGMAP_I2C 453a9687aa2SEric Nelson help 454a9687aa2SEric Nelson If you say yes here you get support for the PCF85363 RTC chip. 455a9687aa2SEric Nelson 456a9687aa2SEric Nelson This driver can also be built as a module. If so, the module 457a9687aa2SEric Nelson will be called rtc-pcf85363. 458a9687aa2SEric Nelson 459a9687aa2SEric Nelson The nvmem interface will be named pcf85363-#, where # is the 460a9687aa2SEric Nelson zero-based instance number. 461a9687aa2SEric Nelson 46209a21e56SAlessandro Zummoconfig RTC_DRV_PCF8563 46309a21e56SAlessandro Zummo tristate "Philips PCF8563/Epson RTC8564" 46409a21e56SAlessandro Zummo help 46509a21e56SAlessandro Zummo If you say yes here you get support for the 46609a21e56SAlessandro Zummo Philips PCF8563 RTC chip. The Epson RTC8564 46709a21e56SAlessandro Zummo should work as well. 46809a21e56SAlessandro Zummo 46909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 47009a21e56SAlessandro Zummo will be called rtc-pcf8563. 47109a21e56SAlessandro Zummo 47209a21e56SAlessandro Zummoconfig RTC_DRV_PCF8583 47309a21e56SAlessandro Zummo tristate "Philips PCF8583" 47409a21e56SAlessandro Zummo help 47509a21e56SAlessandro Zummo If you say yes here you get support for the Philips PCF8583 47609a21e56SAlessandro Zummo RTC chip found on Acorn RiscPCs. This driver supports the 47709a21e56SAlessandro Zummo platform specific method of retrieving the current year from 47809a21e56SAlessandro Zummo the RTC's SRAM. It will work on other platforms with the same 47909a21e56SAlessandro Zummo chip, but the year will probably have to be tweaked. 48009a21e56SAlessandro Zummo 48109a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 48209a21e56SAlessandro Zummo will be called rtc-pcf8583. 48309a21e56SAlessandro Zummo 484caaff562SAtsushi Nemotoconfig RTC_DRV_M41T80 4856b1a5235SWolfram Sang tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible" 486caaff562SAtsushi Nemoto help 487d3a126fcSSteven A. Falco If you say Y here you will get support for the ST M41T60 488d3a126fcSSteven A. Falco and M41T80 RTC chips series. Currently, the following chips are 489f30281f4SDaniel Glockner supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84, 4906b1a5235SWolfram Sang M41ST85, M41ST87, and MicroCrystal RV4162. 491caaff562SAtsushi Nemoto 492caaff562SAtsushi Nemoto This driver can also be built as a module. If so, the module 493caaff562SAtsushi Nemoto will be called rtc-m41t80. 494caaff562SAtsushi Nemoto 495617780d2SAtsushi Nemotoconfig RTC_DRV_M41T80_WDT 496d3a126fcSSteven A. Falco bool "ST M41T65/M41T80 series RTC watchdog timer" 497617780d2SAtsushi Nemoto depends on RTC_DRV_M41T80 498617780d2SAtsushi Nemoto help 499617780d2SAtsushi Nemoto If you say Y here you will get support for the 500d3a126fcSSteven A. Falco watchdog timer in the ST M41T60 and M41T80 RTC chips series. 50132a4a4ebSMatti Vaittinenconfig RTC_DRV_BD70528 50232a4a4ebSMatti Vaittinen tristate "ROHM BD70528 PMIC RTC" 50332a4a4ebSMatti Vaittinen help 50432a4a4ebSMatti Vaittinen If you say Y here you will get support for the RTC 50532a4a4ebSMatti Vaittinen on ROHM BD70528 Power Management IC. 50632a4a4ebSMatti Vaittinen 50732a4a4ebSMatti Vaittinen This driver can also be built as a module. If so, the module 50832a4a4ebSMatti Vaittinen will be called rtc-bd70528. 509617780d2SAtsushi Nemoto 5101ce7c83fSPiotr Ziecikconfig RTC_DRV_BQ32K 5111ce7c83fSPiotr Ziecik tristate "TI BQ32000" 5121ce7c83fSPiotr Ziecik help 5131ce7c83fSPiotr Ziecik If you say Y here you will get support for the TI 5141ce7c83fSPiotr Ziecik BQ32000 I2C RTC chip. 5151ce7c83fSPiotr Ziecik 5161ce7c83fSPiotr Ziecik This driver can also be built as a module. If so, the module 5171ce7c83fSPiotr Ziecik will be called rtc-bq32k. 5181ce7c83fSPiotr Ziecik 519afd8d0f9SDavid Brownellconfig RTC_DRV_DM355EVM 520afd8d0f9SDavid Brownell tristate "TI DaVinci DM355 EVM RTC" 521afd8d0f9SDavid Brownell depends on MFD_DM355EVM_MSP 522afd8d0f9SDavid Brownell help 523afd8d0f9SDavid Brownell Supports the RTC firmware in the MSP430 on the DM355 EVM. 524afd8d0f9SDavid Brownell 5250c4a59feSTony Lindgrenconfig RTC_DRV_TWL92330 5266341e62bSChristoph Jaeger bool "TI TWL92330/Menelaus" 527bb35fb20SJan Engelhardt depends on MENELAUS 5280c4a59feSTony Lindgren help 5290c4a59feSTony Lindgren If you say yes here you get support for the RTC on the 53001dd2fbfSMatt LaPlante TWL92330 "Menelaus" power management chip, used with OMAP2 5310c4a59feSTony Lindgren platforms. The support is integrated with the rest of 5320c4a59feSTony Lindgren the Menelaus driver; it's not separate module. 5330c4a59feSTony Lindgren 534f96411abSDavid Brownellconfig RTC_DRV_TWL4030 535a6b49ffdSBalaji T K tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0" 5366b8029faSVenu Byravarasu depends on TWL4030_CORE 5371c02cbfeSNicolae Rosia depends on OF 538f96411abSDavid Brownell help 539f96411abSDavid Brownell If you say yes here you get support for the RTC on the 540a6b49ffdSBalaji T K TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms. 541f96411abSDavid Brownell 542f96411abSDavid Brownell This driver can also be built as a module. If so, the module 543a6b49ffdSBalaji T K will be called rtc-twl. 544f96411abSDavid Brownell 545d084885eSSoren Brinkmannconfig RTC_DRV_PALMAS 546d084885eSSoren Brinkmann tristate "TI Palmas RTC driver" 547d084885eSSoren Brinkmann depends on MFD_PALMAS 548d084885eSSoren Brinkmann help 549d084885eSSoren Brinkmann If you say yes here you get support for the RTC of TI PALMA series PMIC 550d084885eSSoren Brinkmann chips. 551d084885eSSoren Brinkmann 552d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 553d084885eSSoren Brinkmann will be called rtc-palma. 554d084885eSSoren Brinkmann 555dc59ed38SLaxman Dewanganconfig RTC_DRV_TPS6586X 556dc59ed38SLaxman Dewangan tristate "TI TPS6586X RTC driver" 557dc59ed38SLaxman Dewangan depends on MFD_TPS6586X 558dc59ed38SLaxman Dewangan help 559a895d57dSMasanari Iida TI Power Management IC TPS6586X supports RTC functionality 560dc59ed38SLaxman Dewangan along with alarm. This driver supports the RTC driver for 561dc59ed38SLaxman Dewangan the TPS6586X RTC module. 562dc59ed38SLaxman Dewangan 5630e783980SVenu Byravarasuconfig RTC_DRV_TPS65910 5640e783980SVenu Byravarasu tristate "TI TPS65910 RTC driver" 5659c3f0795SMichał Mirosław depends on MFD_TPS65910 5660e783980SVenu Byravarasu help 5670e783980SVenu Byravarasu If you say yes here you get support for the RTC on the 5680e783980SVenu Byravarasu TPS65910 chips. 5690e783980SVenu Byravarasu 5700e783980SVenu Byravarasu This driver can also be built as a module. If so, the module 5710e783980SVenu Byravarasu will be called rtc-tps65910. 5720e783980SVenu Byravarasu 57336d61824SLaxman Dewanganconfig RTC_DRV_TPS80031 57436d61824SLaxman Dewangan tristate "TI TPS80031/TPS80032 RTC driver" 57536d61824SLaxman Dewangan depends on MFD_TPS80031 57636d61824SLaxman Dewangan help 577a895d57dSMasanari Iida TI Power Management IC TPS80031 supports RTC functionality 57836d61824SLaxman Dewangan along with alarm. This driver supports the RTC driver for 57936d61824SLaxman Dewangan the TPS80031 RTC module. 58036d61824SLaxman Dewangan 58190829c08SVenu Byravarasuconfig RTC_DRV_RC5T583 58290829c08SVenu Byravarasu tristate "RICOH 5T583 RTC driver" 58390829c08SVenu Byravarasu depends on MFD_RC5T583 58490829c08SVenu Byravarasu help 58590829c08SVenu Byravarasu If you say yes here you get support for the RTC on the 58690829c08SVenu Byravarasu RICOH 5T583 chips. 58790829c08SVenu Byravarasu 58890829c08SVenu Byravarasu This driver can also be built as a module. If so, the module 58990829c08SVenu Byravarasu will be called rtc-rc5t583. 59090829c08SVenu Byravarasu 591c46288b0SByron Bradleyconfig RTC_DRV_S35390A 592c46288b0SByron Bradley tristate "Seiko Instruments S-35390A" 593d479540dSRandy Dunlap select BITREVERSE 594c46288b0SByron Bradley help 595c46288b0SByron Bradley If you say yes here you will get support for the Seiko 596c46288b0SByron Bradley Instruments S-35390A. 597c46288b0SByron Bradley 598c46288b0SByron Bradley This driver can also be built as a module. If so the module 599c46288b0SByron Bradley will be called rtc-s35390a. 600c46288b0SByron Bradley 601c6d8f400SSergey Lapinconfig RTC_DRV_FM3130 602c6d8f400SSergey Lapin tristate "Ramtron FM3130" 603c6d8f400SSergey Lapin help 604c6d8f400SSergey Lapin If you say Y here you will get support for the 605c6d8f400SSergey Lapin Ramtron FM3130 RTC chips. 606c6d8f400SSergey Lapin Ramtron FM3130 is a chip with two separate devices inside, 607c6d8f400SSergey Lapin RTC clock and FRAM. This driver provides only RTC functionality. 608c6d8f400SSergey Lapin 609c6d8f400SSergey Lapin This driver can also be built as a module. If so the module 610c6d8f400SSergey Lapin will be called rtc-fm3130. 611c6d8f400SSergey Lapin 612ed13d89bSAkshay Bhatconfig RTC_DRV_RX8010 613ed13d89bSAkshay Bhat tristate "Epson RX8010SJ" 614ed13d89bSAkshay Bhat help 615ed13d89bSAkshay Bhat If you say yes here you get support for the Epson RX8010SJ RTC 616ed13d89bSAkshay Bhat chip. 617ed13d89bSAkshay Bhat 618ed13d89bSAkshay Bhat This driver can also be built as a module. If so, the module 619ed13d89bSAkshay Bhat will be called rtc-rx8010. 620ed13d89bSAkshay Bhat 621a7fa9851SMartyn Welchconfig RTC_DRV_RX8581 62251f896ffSBiju Das tristate "Epson RX-8571/RX-8581" 623a7fa9851SMartyn Welch help 62451f896ffSBiju Das If you say yes here you will get support for the Epson RX-8571/ 62551f896ffSBiju Das RX-8581. 626a7fa9851SMartyn Welch 627a7fa9851SMartyn Welch This driver can also be built as a module. If so the module 628a7fa9851SMartyn Welch will be called rtc-rx8581. 629a7fa9851SMartyn Welch 6303c2b9075SWolfgang Grandeggerconfig RTC_DRV_RX8025 6313c2b9075SWolfgang Grandegger tristate "Epson RX-8025SA/NB" 6323c2b9075SWolfgang Grandegger help 6333c2b9075SWolfgang Grandegger If you say yes here you get support for the Epson 6343c2b9075SWolfgang Grandegger RX-8025SA/NB RTC chips. 6353c2b9075SWolfgang Grandegger 6363c2b9075SWolfgang Grandegger This driver can also be built as a module. If so, the module 6373c2b9075SWolfgang Grandegger will be called rtc-rx8025. 6383c2b9075SWolfgang Grandegger 639ae3551f9SMike Rapoportconfig RTC_DRV_EM3027 640ae3551f9SMike Rapoport tristate "EM Microelectronic EM3027" 641ae3551f9SMike Rapoport help 642ae3551f9SMike Rapoport If you say yes here you get support for the EM 643ae3551f9SMike Rapoport Microelectronic EM3027 RTC chips. 644ae3551f9SMike Rapoport 645ae3551f9SMike Rapoport This driver can also be built as a module. If so, the module 646ae3551f9SMike Rapoport will be called rtc-em3027. 647ae3551f9SMike Rapoport 648e6e7376cSAlexandre Belloniconfig RTC_DRV_RV3028 649e6e7376cSAlexandre Belloni tristate "Micro Crystal RV3028" 650e6e7376cSAlexandre Belloni help 651e6e7376cSAlexandre Belloni If you say yes here you get support for the Micro Crystal 652e6e7376cSAlexandre Belloni RV3028. 653e6e7376cSAlexandre Belloni 654e6e7376cSAlexandre Belloni This driver can also be built as a module. If so, the module 655e6e7376cSAlexandre Belloni will be called rtc-rv3028. 656e6e7376cSAlexandre Belloni 6571e3929efSAlexandre Belloniconfig RTC_DRV_RV8803 65834166a00SBenoît Thébaudeau tristate "Micro Crystal RV8803, Epson RX8900" 6591e3929efSAlexandre Belloni help 66034166a00SBenoît Thébaudeau If you say yes here you get support for the Micro Crystal RV8803 and 66134166a00SBenoît Thébaudeau Epson RX8900 RTC chips. 6621e3929efSAlexandre Belloni 6631e3929efSAlexandre Belloni This driver can also be built as a module. If so, the module 6641e3929efSAlexandre Belloni will be called rtc-rv8803. 6651e3929efSAlexandre Belloni 6665bccae6eSSangbeom Kimconfig RTC_DRV_S5M 6670c5deb1eSKrzysztof Kozlowski tristate "Samsung S2M/S5M series" 668959df777SKrzysztof Kozlowski depends on MFD_SEC_CORE || COMPILE_TEST 669959df777SKrzysztof Kozlowski select REGMAP_IRQ 6705bccae6eSSangbeom Kim help 6715bccae6eSSangbeom Kim If you say yes here you will get support for the 6720c5deb1eSKrzysztof Kozlowski RTC of Samsung S2MPS14 and S5M PMIC series. 6735bccae6eSSangbeom Kim 6745bccae6eSSangbeom Kim This driver can also be built as a module. If so, the module 6755bccae6eSSangbeom Kim will be called rtc-s5m. 6765bccae6eSSangbeom Kim 6771d67a232SDianlong Liconfig RTC_DRV_SD3078 67822e7d514SAlexandre Belloni tristate "ZXW Shenzhen whwave SD3078" 6791d67a232SDianlong Li help 68022e7d514SAlexandre Belloni If you say yes here you get support for the ZXW Shenzhen whwave 6811d67a232SDianlong Li SD3078 RTC chips. 6821d67a232SDianlong Li 6831d67a232SDianlong Li This driver can also be built as a module. If so, the module 6841d67a232SDianlong Li will be called rtc-sd3078 6851d67a232SDianlong Li 686bb35fb20SJan Engelhardtendif # I2C 687bb35fb20SJan Engelhardt 68809a21e56SAlessandro Zummocomment "SPI RTC drivers" 689bb35fb20SJan Engelhardt 690bb35fb20SJan Engelhardtif SPI_MASTER 69109a21e56SAlessandro Zummo 69274d34d4bSVoss, Nikolausconfig RTC_DRV_M41T93 69374d34d4bSVoss, Nikolaus tristate "ST M41T93" 69474d34d4bSVoss, Nikolaus help 69574d34d4bSVoss, Nikolaus If you say yes here you will get support for the 69674d34d4bSVoss, Nikolaus ST M41T93 SPI RTC chip. 69774d34d4bSVoss, Nikolaus 69874d34d4bSVoss, Nikolaus This driver can also be built as a module. If so, the module 69974d34d4bSVoss, Nikolaus will be called rtc-m41t93. 70074d34d4bSVoss, Nikolaus 7018fc2c767SKim B. Heinoconfig RTC_DRV_M41T94 7028fc2c767SKim B. Heino tristate "ST M41T94" 7038fc2c767SKim B. Heino help 7048fc2c767SKim B. Heino If you say yes here you will get support for the 7058fc2c767SKim B. Heino ST M41T94 SPI RTC chip. 7068fc2c767SKim B. Heino 7078fc2c767SKim B. Heino This driver can also be built as a module. If so, the module 7088fc2c767SKim B. Heino will be called rtc-m41t94. 7098fc2c767SKim B. Heino 710d25a5ed3SSergey Yanovichconfig RTC_DRV_DS1302 711d25a5ed3SSergey Yanovich tristate "Dallas/Maxim DS1302" 712d25a5ed3SSergey Yanovich depends on SPI 713d25a5ed3SSergey Yanovich help 714d25a5ed3SSergey Yanovich If you say yes here you get support for the Dallas DS1302 RTC chips. 715d25a5ed3SSergey Yanovich 716d25a5ed3SSergey Yanovich This driver can also be built as a module. If so, the module 717d25a5ed3SSergey Yanovich will be called rtc-ds1302. 718d25a5ed3SSergey Yanovich 71953e84b67SDavid Brownellconfig RTC_DRV_DS1305 72053e84b67SDavid Brownell tristate "Dallas/Maxim DS1305/DS1306" 72153e84b67SDavid Brownell help 72253e84b67SDavid Brownell Select this driver to get support for the Dallas/Maxim DS1305 72353e84b67SDavid Brownell and DS1306 real time clock chips. These support a trickle 72453e84b67SDavid Brownell charger, alarms, and NVRAM in addition to the clock. 72553e84b67SDavid Brownell 72653e84b67SDavid Brownell This driver can also be built as a module. If so, the module 72753e84b67SDavid Brownell will be called rtc-ds1305. 72853e84b67SDavid Brownell 7291d6316f5SRaghavendra Ganigaconfig RTC_DRV_DS1343 7300dd449b1SRaghavendra Ganiga select REGMAP_SPI 7311d6316f5SRaghavendra Ganiga tristate "Dallas/Maxim DS1343/DS1344" 7321d6316f5SRaghavendra Ganiga help 7331d6316f5SRaghavendra Ganiga If you say yes here you get support for the 7341d6316f5SRaghavendra Ganiga Dallas/Maxim DS1343 and DS1344 real time clock chips. 7351d6316f5SRaghavendra Ganiga Support for trickle charger, alarm is provided. 7361d6316f5SRaghavendra Ganiga 7371d6316f5SRaghavendra Ganiga This driver can also be built as a module. If so, the module 7381d6316f5SRaghavendra Ganiga will be called rtc-ds1343. 7391d6316f5SRaghavendra Ganiga 740617b26a0SRaghavendra Ganigaconfig RTC_DRV_DS1347 741ee85bb5bSRaghavendra Ganiga select REGMAP_SPI 742617b26a0SRaghavendra Ganiga tristate "Dallas/Maxim DS1347" 743617b26a0SRaghavendra Ganiga help 744617b26a0SRaghavendra Ganiga If you say yes here you get support for the 745617b26a0SRaghavendra Ganiga Dallas/Maxim DS1347 chips. 746617b26a0SRaghavendra Ganiga 747617b26a0SRaghavendra Ganiga This driver only supports the RTC feature, and not other chip 748617b26a0SRaghavendra Ganiga features such as alarms. 749617b26a0SRaghavendra Ganiga 750617b26a0SRaghavendra Ganiga This driver can also be built as a module. If so, the module 751617b26a0SRaghavendra Ganiga will be called rtc-ds1347. 752617b26a0SRaghavendra Ganiga 75306de1808SMark Jacksonconfig RTC_DRV_DS1390 75406de1808SMark Jackson tristate "Dallas/Maxim DS1390/93/94" 75506de1808SMark Jackson help 7567b9b2ef1SAlessandro Zummo If you say yes here you get support for the 7577b9b2ef1SAlessandro Zummo Dallas/Maxim DS1390/93/94 chips. 75806de1808SMark Jackson 759fa395fb8SIvan Grimaldi This driver supports the RTC feature and trickle charging but not 760fa395fb8SIvan Grimaldi other chip features such as alarms. 76106de1808SMark Jackson 76206de1808SMark Jackson This driver can also be built as a module. If so, the module 76306de1808SMark Jackson will be called rtc-ds1390. 76406de1808SMark Jackson 76506776c89SVenkat Prashanth B Uconfig RTC_DRV_MAX6916 76606776c89SVenkat Prashanth B U tristate "Maxim MAX6916" 76706776c89SVenkat Prashanth B U help 76806776c89SVenkat Prashanth B U If you say yes here you will get support for the 76906776c89SVenkat Prashanth B U Maxim MAX6916 SPI RTC chip. 77006776c89SVenkat Prashanth B U 77106776c89SVenkat Prashanth B U This driver only supports the RTC feature, and not other chip 77206776c89SVenkat Prashanth B U features such as alarms. 77306776c89SVenkat Prashanth B U 77406776c89SVenkat Prashanth B U This driver can also be built as a module. If so, the module 77506776c89SVenkat Prashanth B U will be called rtc-max6916. 77606776c89SVenkat Prashanth B U 7772805b969SMagnus Dammconfig RTC_DRV_R9701 7782805b969SMagnus Damm tristate "Epson RTC-9701JE" 7792805b969SMagnus Damm help 7802805b969SMagnus Damm If you say yes here you will get support for the 7812805b969SMagnus Damm Epson RTC-9701JE SPI RTC chip. 7822805b969SMagnus Damm 7832805b969SMagnus Damm This driver can also be built as a module. If so, the module 7842805b969SMagnus Damm will be called rtc-r9701. 7852805b969SMagnus Damm 786d084885eSSoren Brinkmannconfig RTC_DRV_RX4581 787d084885eSSoren Brinkmann tristate "Epson RX-4581" 788d084885eSSoren Brinkmann help 789d084885eSSoren Brinkmann If you say yes here you will get support for the Epson RX-4581. 790d084885eSSoren Brinkmann 791d084885eSSoren Brinkmann This driver can also be built as a module. If so the module 792d084885eSSoren Brinkmann will be called rtc-rx4581. 793d084885eSSoren Brinkmann 794d084885eSSoren Brinkmannconfig RTC_DRV_RX6110 795d084885eSSoren Brinkmann tristate "Epson RX-6110" 796d084885eSSoren Brinkmann select REGMAP_SPI 797d084885eSSoren Brinkmann help 798d084885eSSoren Brinkmann If you say yes here you will get support for the Epson RX-6610. 799d084885eSSoren Brinkmann 800d084885eSSoren Brinkmann This driver can also be built as a module. If so the module 801d084885eSSoren Brinkmann will be called rtc-rx6110. 802d084885eSSoren Brinkmann 80309a21e56SAlessandro Zummoconfig RTC_DRV_RS5C348 80409a21e56SAlessandro Zummo tristate "Ricoh RS5C348A/B" 80509a21e56SAlessandro Zummo help 80609a21e56SAlessandro Zummo If you say yes here you get support for the 80709a21e56SAlessandro Zummo Ricoh RS5C348A and RS5C348B RTC chips. 80809a21e56SAlessandro Zummo 80909a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 81009a21e56SAlessandro Zummo will be called rtc-rs5c348. 81109a21e56SAlessandro Zummo 812d084885eSSoren Brinkmannconfig RTC_DRV_MAX6902 813d084885eSSoren Brinkmann tristate "Maxim MAX6902" 814d084885eSSoren Brinkmann help 815d084885eSSoren Brinkmann If you say yes here you will get support for the 816d084885eSSoren Brinkmann Maxim MAX6902 SPI RTC chip. 817d084885eSSoren Brinkmann 818d084885eSSoren Brinkmann This driver can also be built as a module. If so, the module 819d084885eSSoren Brinkmann will be called rtc-max6902. 820d084885eSSoren Brinkmann 8217f3923a1SChris Vergesconfig RTC_DRV_PCF2123 8227f3923a1SChris Verges tristate "NXP PCF2123" 823f2f5cb6aSYueHaibing select REGMAP_SPI 8247f3923a1SChris Verges help 8257f3923a1SChris Verges If you say yes here you get support for the NXP PCF2123 8267f3923a1SChris Verges RTC chip. 8277f3923a1SChris Verges 8287f3923a1SChris Verges This driver can also be built as a module. If so, the module 8297f3923a1SChris Verges will be called rtc-pcf2123. 8307f3923a1SChris Verges 8311fcbe42cSJosef Gajdusekconfig RTC_DRV_MCP795 8321fcbe42cSJosef Gajdusek tristate "Microchip MCP795" 8331fcbe42cSJosef Gajdusek help 8341fcbe42cSJosef Gajdusek If you say yes here you will get support for the Microchip MCP795. 8351fcbe42cSJosef Gajdusek 8361fcbe42cSJosef Gajdusek This driver can also be built as a module. If so the module 8371fcbe42cSJosef Gajdusek will be called rtc-mcp795. 8381fcbe42cSJosef Gajdusek 839bb35fb20SJan Engelhardtendif # SPI_MASTER 840bb35fb20SJan Engelhardt 841080481f5SAkinobu Mita# 842080481f5SAkinobu Mita# Helper to resolve issues with configs that have SPI enabled but I2C 843080481f5SAkinobu Mita# modular. See SND_SOC_I2C_AND_SPI for more information 844080481f5SAkinobu Mita# 845080481f5SAkinobu Mitaconfig RTC_I2C_AND_SPI 846080481f5SAkinobu Mita tristate 847080481f5SAkinobu Mita default m if I2C=m 848080481f5SAkinobu Mita default y if I2C=y 849080481f5SAkinobu Mita default y if SPI_MASTER=y 850080481f5SAkinobu Mita select REGMAP_I2C if I2C 851080481f5SAkinobu Mita select REGMAP_SPI if SPI_MASTER 852080481f5SAkinobu Mita 853080481f5SAkinobu Mitacomment "SPI and I2C RTC drivers" 854080481f5SAkinobu Mita 855080481f5SAkinobu Mitaconfig RTC_DRV_DS3232 856080481f5SAkinobu Mita tristate "Dallas/Maxim DS3232/DS3234" 857080481f5SAkinobu Mita depends on RTC_I2C_AND_SPI 858080481f5SAkinobu Mita help 859080481f5SAkinobu Mita If you say yes here you get support for Dallas Semiconductor 860080481f5SAkinobu Mita DS3232 and DS3234 real-time clock chips. If an interrupt is associated 861080481f5SAkinobu Mita with the device, the alarm functionality is supported. 862080481f5SAkinobu Mita 863080481f5SAkinobu Mita This driver can also be built as a module. If so, the module 864080481f5SAkinobu Mita will be called rtc-ds3232. 865080481f5SAkinobu Mita 866c35c4195SKirill Esipovconfig RTC_DRV_DS3232_HWMON 867c35c4195SKirill Esipov bool "HWMON support for Dallas/Maxim DS3232/DS3234" 868c35c4195SKirill Esipov depends on RTC_DRV_DS3232 && HWMON && !(RTC_DRV_DS3232=y && HWMON=m) 869c35c4195SKirill Esipov default y 870c35c4195SKirill Esipov help 871c35c4195SKirill Esipov Say Y here if you want to expose temperature sensor data on 872c35c4195SKirill Esipov rtc-ds3232 873c35c4195SKirill Esipov 8749408ec1aSAkinobu Mitaconfig RTC_DRV_PCF2127 8759408ec1aSAkinobu Mita tristate "NXP PCF2127" 8769408ec1aSAkinobu Mita depends on RTC_I2C_AND_SPI 8779408ec1aSAkinobu Mita help 8789408ec1aSAkinobu Mita If you say yes here you get support for the NXP PCF2127/29 RTC 8799408ec1aSAkinobu Mita chips. 8809408ec1aSAkinobu Mita 8819408ec1aSAkinobu Mita This driver can also be built as a module. If so, the module 8829408ec1aSAkinobu Mita will be called rtc-pcf2127. 8839408ec1aSAkinobu Mita 884c2a1c145SMylène Josserandconfig RTC_DRV_RV3029C2 885c2a1c145SMylène Josserand tristate "Micro Crystal RV3029/3049" 886c2a1c145SMylène Josserand depends on RTC_I2C_AND_SPI 887c2a1c145SMylène Josserand help 888c2a1c145SMylène Josserand If you say yes here you get support for the Micro Crystal 889c2a1c145SMylène Josserand RV3029 and RV3049 RTC chips. 890c2a1c145SMylène Josserand 891c2a1c145SMylène Josserand This driver can also be built as a module. If so, the module 892c2a1c145SMylène Josserand will be called rtc-rv3029c2. 893c2a1c145SMylène Josserand 894c2a1c145SMylène Josserandconfig RTC_DRV_RV3029_HWMON 895c2a1c145SMylène Josserand bool "HWMON support for RV3029/3049" 896c2a1c145SMylène Josserand depends on RTC_DRV_RV3029C2 && HWMON 897c2a1c145SMylène Josserand depends on !(RTC_DRV_RV3029C2=y && HWMON=m) 898c2a1c145SMylène Josserand default y 899c2a1c145SMylène Josserand help 900c2a1c145SMylène Josserand Say Y here if you want to expose temperature sensor data on 901c2a1c145SMylène Josserand rtc-rv3029. 902c2a1c145SMylène Josserand 90309a21e56SAlessandro Zummocomment "Platform RTC drivers" 9040c86edc0SAlessandro Zummo 905290cd0f0SChristoph Hellwig# this 'CMOS' RTC driver is arch dependent because it requires 906290cd0f0SChristoph Hellwig# <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a 9077be2c7c9SDavid Brownell# global rtc_lock ... it's not yet just another platform_device. 9087be2c7c9SDavid Brownell 9097be2c7c9SDavid Brownellconfig RTC_DRV_CMOS 91009a21e56SAlessandro Zummo tristate "PC-style 'CMOS'" 911a687a533SArnd Bergmann depends on X86 || ARM || PPC || MIPS || SPARC64 912c7500900SDavid Brownell default y if X86 913d6faca40SArnd Bergmann select RTC_MC146818_LIB 9147be2c7c9SDavid Brownell help 9157be2c7c9SDavid Brownell Say "yes" here to get direct support for the real time clock 9167be2c7c9SDavid Brownell found in every PC or ACPI-based system, and some other boards. 9177be2c7c9SDavid Brownell Specifically the original MC146818, compatibles like those in 9187be2c7c9SDavid Brownell PC south bridges, the DS12887 or M48T86, some multifunction 9197be2c7c9SDavid Brownell or LPC bus chips, and so on. 9207be2c7c9SDavid Brownell 9217be2c7c9SDavid Brownell Your system will need to define the platform device used by 9227be2c7c9SDavid Brownell this driver, otherwise it won't be accessible. This means 9237be2c7c9SDavid Brownell you can safely enable this driver if you don't know whether 9247be2c7c9SDavid Brownell or not your board has this kind of hardware. 9257be2c7c9SDavid Brownell 9267be2c7c9SDavid Brownell This driver can also be built as a module. If so, the module 9277be2c7c9SDavid Brownell will be called rtc-cmos. 9287be2c7c9SDavid Brownell 92985d0b3a5SRichard Hendersonconfig RTC_DRV_ALPHA 93085d0b3a5SRichard Henderson bool "Alpha PC-style CMOS" 93185d0b3a5SRichard Henderson depends on ALPHA 932d6faca40SArnd Bergmann select RTC_MC146818_LIB 93385d0b3a5SRichard Henderson default y 93485d0b3a5SRichard Henderson help 93585d0b3a5SRichard Henderson Direct support for the real-time clock found on every Alpha 93685d0b3a5SRichard Henderson system, specifically MC146818 compatibles. If in doubt, say Y. 93785d0b3a5SRichard Henderson 9380146f261SFeng Tangconfig RTC_DRV_VRTC 939933b9463SAlan Cox tristate "Virtual RTC for Intel MID platforms" 940933b9463SAlan Cox depends on X86_INTEL_MID 941933b9463SAlan Cox default y if X86_INTEL_MID 9420146f261SFeng Tang 9430146f261SFeng Tang help 9440146f261SFeng Tang Say "yes" here to get direct support for the real time clock 9450146f261SFeng Tang found on Moorestown platforms. The VRTC is a emulated RTC that 9460146f261SFeng Tang derives its clock source from a real RTC in the PMIC. The MC146818 9470146f261SFeng Tang style programming interface is mostly conserved, but any 9480146f261SFeng Tang updates are done via IPC calls to the system controller FW. 9490146f261SFeng Tang 950537739deSThomas Bogendoerferconfig RTC_DRV_DS1216 951537739deSThomas Bogendoerfer tristate "Dallas DS1216" 952bb35fb20SJan Engelhardt depends on SNI_RM 953537739deSThomas Bogendoerfer help 954537739deSThomas Bogendoerfer If you say yes here you get support for the Dallas DS1216 RTC chips. 955537739deSThomas Bogendoerfer 9565f119f29SThomas Bogendoerferconfig RTC_DRV_DS1286 9575f119f29SThomas Bogendoerfer tristate "Dallas DS1286" 958706b632dSChen Gang depends on HAS_IOMEM 9595f119f29SThomas Bogendoerfer help 9605f119f29SThomas Bogendoerfer If you say yes here you get support for the Dallas DS1286 RTC chips. 9615f119f29SThomas Bogendoerfer 9628f26795aSAndrew Sharpconfig RTC_DRV_DS1511 9638f26795aSAndrew Sharp tristate "Dallas DS1511" 964706b632dSChen Gang depends on HAS_IOMEM 9658f26795aSAndrew Sharp help 9668f26795aSAndrew Sharp If you say yes here you get support for the 9678f26795aSAndrew Sharp Dallas DS1511 timekeeping/watchdog chip. 9688f26795aSAndrew Sharp 9698f26795aSAndrew Sharp This driver can also be built as a module. If so, the module 9708f26795aSAndrew Sharp will be called rtc-ds1511. 9718f26795aSAndrew Sharp 9729bf5b4f5SAtsushi Nemotoconfig RTC_DRV_DS1553 97309b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1553" 974706b632dSChen Gang depends on HAS_IOMEM 9759bf5b4f5SAtsushi Nemoto help 9769bf5b4f5SAtsushi Nemoto If you say yes here you get support for the 97709b6bdb3SAlessandro Zummo Maxim/Dallas DS1553 timekeeping chip. 9789bf5b4f5SAtsushi Nemoto 9799bf5b4f5SAtsushi Nemoto This driver can also be built as a module. If so, the module 9809bf5b4f5SAtsushi Nemoto will be called rtc-ds1553. 9819bf5b4f5SAtsushi Nemoto 982aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685_FAMILY 983aaaf5fbfSJoshua Kinard tristate "Dallas/Maxim DS1685 Family" 984aaaf5fbfSJoshua Kinard help 985aaaf5fbfSJoshua Kinard If you say yes here you get support for the Dallas/Maxim DS1685 986aaaf5fbfSJoshua Kinard family of real time chips. This family includes the DS1685/DS1687, 987aaaf5fbfSJoshua Kinard DS1689/DS1693, DS17285/DS17287, DS17485/DS17487, and 988aaaf5fbfSJoshua Kinard DS17885/DS17887 chips. 989aaaf5fbfSJoshua Kinard 990aaaf5fbfSJoshua Kinard This driver can also be built as a module. If so, the module 991aaaf5fbfSJoshua Kinard will be called rtc-ds1685. 992aaaf5fbfSJoshua Kinard 993aaaf5fbfSJoshua Kinardchoice 994aaaf5fbfSJoshua Kinard prompt "Subtype" 995aaaf5fbfSJoshua Kinard depends on RTC_DRV_DS1685_FAMILY 996aaaf5fbfSJoshua Kinard default RTC_DRV_DS1685 997aaaf5fbfSJoshua Kinard 998aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1685 999aaaf5fbfSJoshua Kinard bool "DS1685/DS1687" 1000aaaf5fbfSJoshua Kinard help 1001aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1685/DS1687 real time 1002aaaf5fbfSJoshua Kinard clock chip. 1003aaaf5fbfSJoshua Kinard 1004aaaf5fbfSJoshua Kinard This chip is commonly found in SGI O2 (IP32) and SGI Octane (IP30) 1005aaaf5fbfSJoshua Kinard systems, as well as EPPC-405-UC modules by electronic system design 1006aaaf5fbfSJoshua Kinard GmbH. 1007aaaf5fbfSJoshua Kinard 1008aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS1689 1009aaaf5fbfSJoshua Kinard bool "DS1689/DS1693" 1010aaaf5fbfSJoshua Kinard help 1011aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS1689/DS1693 real time 1012aaaf5fbfSJoshua Kinard clock chip. 1013aaaf5fbfSJoshua Kinard 1014aaaf5fbfSJoshua Kinard This is an older RTC chip, supplanted by the DS1685/DS1687 above, 1015aaaf5fbfSJoshua Kinard which supports a few minor features such as Vcc, Vbat, and Power 1016aaaf5fbfSJoshua Kinard Cycle counters, plus a customer-specific, 8-byte ROM/Serial number. 1017aaaf5fbfSJoshua Kinard 1018aaaf5fbfSJoshua Kinard It also works for the even older DS1688/DS1691 RTC chips, which are 1019aaaf5fbfSJoshua Kinard virtually the same and carry the same model number. Both chips 1020aaaf5fbfSJoshua Kinard have 114 bytes of user NVRAM. 1021aaaf5fbfSJoshua Kinard 1022aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17285 1023aaaf5fbfSJoshua Kinard bool "DS17285/DS17287" 1024aaaf5fbfSJoshua Kinard help 1025aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17285/DS17287 real time 1026aaaf5fbfSJoshua Kinard clock chip. 1027aaaf5fbfSJoshua Kinard 1028aaaf5fbfSJoshua Kinard This chip features 2kb of extended NV-SRAM. It may possibly be 1029aaaf5fbfSJoshua Kinard found in some SGI O2 systems (rare). 1030aaaf5fbfSJoshua Kinard 1031aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17485 1032aaaf5fbfSJoshua Kinard bool "DS17485/DS17487" 1033aaaf5fbfSJoshua Kinard help 1034aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17485/DS17487 real time 1035aaaf5fbfSJoshua Kinard clock chip. 1036aaaf5fbfSJoshua Kinard 1037aaaf5fbfSJoshua Kinard This chip features 4kb of extended NV-SRAM. 1038aaaf5fbfSJoshua Kinard 1039aaaf5fbfSJoshua Kinardconfig RTC_DRV_DS17885 1040aaaf5fbfSJoshua Kinard bool "DS17885/DS17887" 1041aaaf5fbfSJoshua Kinard help 1042aaaf5fbfSJoshua Kinard This enables support for the Dallas/Maxim DS17885/DS17887 real time 1043aaaf5fbfSJoshua Kinard clock chip. 1044aaaf5fbfSJoshua Kinard 1045aaaf5fbfSJoshua Kinard This chip features 8kb of extended NV-SRAM. 1046aaaf5fbfSJoshua Kinard 1047aaaf5fbfSJoshua Kinardendchoice 1048aaaf5fbfSJoshua Kinard 104909b6bdb3SAlessandro Zummoconfig RTC_DRV_DS1742 105009b6bdb3SAlessandro Zummo tristate "Maxim/Dallas DS1742/1743" 1051706b632dSChen Gang depends on HAS_IOMEM 105209b6bdb3SAlessandro Zummo help 105309b6bdb3SAlessandro Zummo If you say yes here you get support for the 105409b6bdb3SAlessandro Zummo Maxim/Dallas DS1742/1743 timekeeping chip. 105509b6bdb3SAlessandro Zummo 105609b6bdb3SAlessandro Zummo This driver can also be built as a module. If so, the module 105709b6bdb3SAlessandro Zummo will be called rtc-ds1742. 105809b6bdb3SAlessandro Zummo 1059ad0200f7SJean Delvareconfig RTC_DRV_DS2404 1060ad0200f7SJean Delvare tristate "Maxim/Dallas DS2404" 1061ad0200f7SJean Delvare help 1062ad0200f7SJean Delvare If you say yes here you get support for the 1063ad0200f7SJean Delvare Dallas DS2404 RTC chip. 1064ad0200f7SJean Delvare 1065ad0200f7SJean Delvare This driver can also be built as a module. If so, the module 1066ad0200f7SJean Delvare will be called rtc-ds2404. 1067ad0200f7SJean Delvare 1068fef931ffSAshish Jangamconfig RTC_DRV_DA9052 1069fef931ffSAshish Jangam tristate "Dialog DA9052/DA9053 RTC" 1070fef931ffSAshish Jangam depends on PMIC_DA9052 1071fef931ffSAshish Jangam help 1072fef931ffSAshish Jangam Say y here to support the RTC driver for Dialog Semiconductor 1073fef931ffSAshish Jangam DA9052-BC and DA9053-AA/Bx PMICs. 1074fef931ffSAshish Jangam 10756920d996SAshish Jangamconfig RTC_DRV_DA9055 10766920d996SAshish Jangam tristate "Dialog Semiconductor DA9055 RTC" 10776920d996SAshish Jangam depends on MFD_DA9055 10786920d996SAshish Jangam help 10796920d996SAshish Jangam If you say yes here you will get support for the 10806920d996SAshish Jangam RTC of the Dialog DA9055 PMIC. 10816920d996SAshish Jangam 10826920d996SAshish Jangam This driver can also be built as a module. If so, the module 10836920d996SAshish Jangam will be called rtc-da9055 10846920d996SAshish Jangam 1085c2a57550SOpensource [Steve Twiss]config RTC_DRV_DA9063 108680ca3277SS Twiss tristate "Dialog Semiconductor DA9063/DA9062 RTC" 108780ca3277SS Twiss depends on MFD_DA9063 || MFD_DA9062 1088c2a57550SOpensource [Steve Twiss] help 1089c2a57550SOpensource [Steve Twiss] If you say yes here you will get support for the RTC subsystem 109080ca3277SS Twiss for the Dialog Semiconductor PMIC chips DA9063 and DA9062. 1091c2a57550SOpensource [Steve Twiss] 1092c2a57550SOpensource [Steve Twiss] This driver can also be built as a module. If so, the module 1093c2a57550SOpensource [Steve Twiss] will be called "rtc-da9063". 1094c2a57550SOpensource [Steve Twiss] 10955e3fd9e5Sdann frazierconfig RTC_DRV_EFI 10965e3fd9e5Sdann frazier tristate "EFI RTC" 10977efe6659SMatt Fleming depends on EFI && !X86 10985e3fd9e5Sdann frazier help 10995e3fd9e5Sdann frazier If you say yes here you will get support for the EFI 11005e3fd9e5Sdann frazier Real Time Clock. 11015e3fd9e5Sdann frazier 11025e3fd9e5Sdann frazier This driver can also be built as a module. If so, the module 11035e3fd9e5Sdann frazier will be called rtc-efi. 11045e3fd9e5Sdann frazier 110502964115SThomas Hommelconfig RTC_DRV_STK17TA8 110602964115SThomas Hommel tristate "Simtek STK17TA8" 1107706b632dSChen Gang depends on HAS_IOMEM 110802964115SThomas Hommel help 110902964115SThomas Hommel If you say yes here you get support for the 111002964115SThomas Hommel Simtek STK17TA8 timekeeping chip. 111102964115SThomas Hommel 111202964115SThomas Hommel This driver can also be built as a module. If so, the module 111302964115SThomas Hommel will be called rtc-stk17ta8. 111402964115SThomas Hommel 111509a21e56SAlessandro Zummoconfig RTC_DRV_M48T86 111609a21e56SAlessandro Zummo tristate "ST M48T86/Dallas DS12887" 111709a21e56SAlessandro Zummo help 111809a21e56SAlessandro Zummo If you say Y here you will get support for the 111909a21e56SAlessandro Zummo ST M48T86 and Dallas DS12887 RTC chips. 112009a21e56SAlessandro Zummo 112109a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 112209a21e56SAlessandro Zummo will be called rtc-m48t86. 112309a21e56SAlessandro Zummo 1124d1dbd82eSThomas Bogendoerferconfig RTC_DRV_M48T35 1125d1dbd82eSThomas Bogendoerfer tristate "ST M48T35" 1126706b632dSChen Gang depends on HAS_IOMEM 1127d1dbd82eSThomas Bogendoerfer help 1128d1dbd82eSThomas Bogendoerfer If you say Y here you will get support for the 1129d1dbd82eSThomas Bogendoerfer ST M48T35 RTC chip. 1130d1dbd82eSThomas Bogendoerfer 1131d1dbd82eSThomas Bogendoerfer This driver can also be built as a module, if so, the module 1132d1dbd82eSThomas Bogendoerfer will be called "rtc-m48t35". 1133d1dbd82eSThomas Bogendoerfer 11342e774c7cSMark Zhanconfig RTC_DRV_M48T59 113594fe7424SKrzysztof Helt tristate "ST M48T59/M48T08/M48T02" 1136706b632dSChen Gang depends on HAS_IOMEM 11372e774c7cSMark Zhan help 11382e774c7cSMark Zhan If you say Y here you will get support for the 113994fe7424SKrzysztof Helt ST M48T59 RTC chip and compatible ST M48T08 and M48T02. 114094fe7424SKrzysztof Helt 114194fe7424SKrzysztof Helt These chips are usually found in Sun SPARC and UltraSPARC 114294fe7424SKrzysztof Helt workstations. 11432e774c7cSMark Zhan 11442e774c7cSMark Zhan This driver can also be built as a module, if so, the module 11452e774c7cSMark Zhan will be called "rtc-m48t59". 11462e774c7cSMark Zhan 11474f9b9bbaSGeert Uytterhoevenconfig RTC_DRV_MSM6242 11484f9b9bbaSGeert Uytterhoeven tristate "Oki MSM6242" 1149706b632dSChen Gang depends on HAS_IOMEM 11504f9b9bbaSGeert Uytterhoeven help 11514f9b9bbaSGeert Uytterhoeven If you say yes here you get support for the Oki MSM6242 11524f9b9bbaSGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A2000). 11534f9b9bbaSGeert Uytterhoeven 11544f9b9bbaSGeert Uytterhoeven This driver can also be built as a module. If so, the module 11554f9b9bbaSGeert Uytterhoeven will be called rtc-msm6242. 11564f9b9bbaSGeert Uytterhoeven 1157cca4c231SDavid S. Millerconfig RTC_DRV_BQ4802 1158cca4c231SDavid S. Miller tristate "TI BQ4802" 1159706b632dSChen Gang depends on HAS_IOMEM 1160cca4c231SDavid S. Miller help 1161cca4c231SDavid S. Miller If you say Y here you will get support for the TI 1162cca4c231SDavid S. Miller BQ4802 RTC chip. 1163cca4c231SDavid S. Miller 1164cca4c231SDavid S. Miller This driver can also be built as a module. If so, the module 1165cca4c231SDavid S. Miller will be called rtc-bq4802. 1166cca4c231SDavid S. Miller 11674f672ce2SGeert Uytterhoevenconfig RTC_DRV_RP5C01 11684f672ce2SGeert Uytterhoeven tristate "Ricoh RP5C01" 1169706b632dSChen Gang depends on HAS_IOMEM 11704f672ce2SGeert Uytterhoeven help 11714f672ce2SGeert Uytterhoeven If you say yes here you get support for the Ricoh RP5C01 11724f672ce2SGeert Uytterhoeven timekeeping chip. It is used in some Amiga models (e.g. A3000 11734f672ce2SGeert Uytterhoeven and A4000). 11744f672ce2SGeert Uytterhoeven 11754f672ce2SGeert Uytterhoeven This driver can also be built as a module. If so, the module 11764f672ce2SGeert Uytterhoeven will be called rtc-rp5c01. 11774f672ce2SGeert Uytterhoeven 117809a21e56SAlessandro Zummoconfig RTC_DRV_V3020 117909a21e56SAlessandro Zummo tristate "EM Microelectronic V3020" 118009a21e56SAlessandro Zummo help 118109a21e56SAlessandro Zummo If you say yes here you will get support for the 118209a21e56SAlessandro Zummo EM Microelectronic v3020 RTC chip. 118309a21e56SAlessandro Zummo 118409a21e56SAlessandro Zummo This driver can also be built as a module. If so, the module 118509a21e56SAlessandro Zummo will be called rtc-v3020. 118609a21e56SAlessandro Zummo 118735c86bf6SMark Brownconfig RTC_DRV_WM831X 118835c86bf6SMark Brown tristate "Wolfson Microelectronics WM831x RTC" 118935c86bf6SMark Brown depends on MFD_WM831X 119035c86bf6SMark Brown help 119135c86bf6SMark Brown If you say yes here you will get support for the RTC subsystem 119235c86bf6SMark Brown of the Wolfson Microelectronics WM831X series PMICs. 119335c86bf6SMark Brown 119435c86bf6SMark Brown This driver can also be built as a module. If so, the module 119535c86bf6SMark Brown will be called "rtc-wm831x". 119635c86bf6SMark Brown 1197077eaf5bSMark Brownconfig RTC_DRV_WM8350 1198077eaf5bSMark Brown tristate "Wolfson Microelectronics WM8350 RTC" 1199077eaf5bSMark Brown depends on MFD_WM8350 1200077eaf5bSMark Brown help 1201077eaf5bSMark Brown If you say yes here you will get support for the RTC subsystem 1202077eaf5bSMark Brown of the Wolfson Microelectronics WM8350. 1203077eaf5bSMark Brown 1204077eaf5bSMark Brown This driver can also be built as a module. If so, the module 1205077eaf5bSMark Brown will be called "rtc-wm8350". 1206077eaf5bSMark Brown 1207495bbde5SBaolin Wangconfig RTC_DRV_SC27XX 1208495bbde5SBaolin Wang tristate "Spreadtrum SC27xx RTC" 1209495bbde5SBaolin Wang depends on MFD_SC27XX_PMIC || COMPILE_TEST 1210495bbde5SBaolin Wang help 1211495bbde5SBaolin Wang If you say Y here you will get support for the RTC subsystem 1212495bbde5SBaolin Wang of the Spreadtrum SC27xx series PMICs. The SC27xx series PMICs 1213495bbde5SBaolin Wang includes the SC2720, SC2721, SC2723, SC2730 and SC2731 chips. 1214495bbde5SBaolin Wang 1215495bbde5SBaolin Wang This driver can also be built as a module. If so, the module 1216495bbde5SBaolin Wang will be called rtc-sc27xx. 1217495bbde5SBaolin Wang 12180942a71eSRajeev Kumarconfig RTC_DRV_SPEAR 12190942a71eSRajeev Kumar tristate "SPEAR ST RTC" 12207a587eaeSAlexandre Belloni depends on PLAT_SPEAR || COMPILE_TEST 12210942a71eSRajeev Kumar default y 12220942a71eSRajeev Kumar help 12230942a71eSRajeev Kumar If you say Y here you will get support for the RTC found on 12240942a71eSRajeev Kumar spear 12250942a71eSRajeev Kumar 1226eae854b2SBalaji Raoconfig RTC_DRV_PCF50633 1227eae854b2SBalaji Rao depends on MFD_PCF50633 1228eae854b2SBalaji Rao tristate "NXP PCF50633 RTC" 1229eae854b2SBalaji Rao help 1230eae854b2SBalaji Rao If you say yes here you get support for the RTC subsystem of the 1231eae854b2SBalaji Rao NXP PCF50633 used in embedded systems. 1232eae854b2SBalaji Rao 1233bd207cfbSLinus Walleijconfig RTC_DRV_AB3100 1234bd207cfbSLinus Walleij tristate "ST-Ericsson AB3100 RTC" 1235bd207cfbSLinus Walleij depends on AB3100_CORE 1236bd207cfbSLinus Walleij default y if AB3100_CORE 1237bd207cfbSLinus Walleij help 1238bd207cfbSLinus Walleij Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC 1239bd207cfbSLinus Walleij support. This chip contains a battery- and capacitor-backed RTC. 1240bd207cfbSLinus Walleij 12410af62f4dSVirupax Sadashivpetimathconfig RTC_DRV_AB8500 12420af62f4dSVirupax Sadashivpetimath tristate "ST-Ericsson AB8500 RTC" 12430af62f4dSVirupax Sadashivpetimath depends on AB8500_CORE 1244651fb480SUlf Hansson select RTC_INTF_DEV 1245dc43d4a2SRamesh Chandrasekaran select RTC_INTF_DEV_UIE_EMUL 12460af62f4dSVirupax Sadashivpetimath help 12470af62f4dSVirupax Sadashivpetimath Select this to enable the ST-Ericsson AB8500 power management IC RTC 12480af62f4dSVirupax Sadashivpetimath support. This chip contains a battery- and capacitor-backed RTC. 12490af62f4dSVirupax Sadashivpetimath 1250afd49a7eSWan ZongShunconfig RTC_DRV_NUC900 1251afd49a7eSWan ZongShun tristate "NUC910/NUC920 RTC driver" 12527a587eaeSAlexandre Belloni depends on ARCH_W90X900 || COMPILE_TEST 1253afd49a7eSWan ZongShun help 1254afd49a7eSWan ZongShun If you say yes here you get support for the RTC subsystem of the 1255afd49a7eSWan ZongShun NUC910/NUC920 used in embedded systems. 1256bd207cfbSLinus Walleij 125716b1d26eSNeelesh Guptaconfig RTC_DRV_OPAL 125816b1d26eSNeelesh Gupta tristate "IBM OPAL RTC driver" 125916b1d26eSNeelesh Gupta depends on PPC_POWERNV 126016b1d26eSNeelesh Gupta default y 126116b1d26eSNeelesh Gupta help 126216b1d26eSNeelesh Gupta If you say yes here you get support for the PowerNV platform RTC 126316b1d26eSNeelesh Gupta driver based on OPAL interfaces. 126416b1d26eSNeelesh Gupta 126516b1d26eSNeelesh Gupta This driver can also be built as a module. If so, the module 126616b1d26eSNeelesh Gupta will be called rtc-opal. 126716b1d26eSNeelesh Gupta 126811143c19SSuneel Garapaticonfig RTC_DRV_ZYNQMP 126911143c19SSuneel Garapati tristate "Xilinx Zynq Ultrascale+ MPSoC RTC" 127011143c19SSuneel Garapati depends on OF 127111143c19SSuneel Garapati help 127211143c19SSuneel Garapati If you say yes here you get support for the RTC controller found on 127311143c19SSuneel Garapati Xilinx Zynq Ultrascale+ MPSoC. 127411143c19SSuneel Garapati 12756f2a71a3SStephen Barberconfig RTC_DRV_CROS_EC 12766f2a71a3SStephen Barber tristate "Chrome OS EC RTC driver" 1277*47f11e0bSEnric Balletbo i Serra depends on CROS_EC 12786f2a71a3SStephen Barber help 12796f2a71a3SStephen Barber If you say yes here you will get support for the 12806f2a71a3SStephen Barber Chrome OS Embedded Controller's RTC. 12816f2a71a3SStephen Barber 12826f2a71a3SStephen Barber This driver can also be built as a module. If so, the module 12836f2a71a3SStephen Barber will be called rtc-cros-ec. 12846f2a71a3SStephen Barber 128509a21e56SAlessandro Zummocomment "on-CPU RTC drivers" 128609a21e56SAlessandro Zummo 1287125e550fSOleksij Rempelconfig RTC_DRV_ASM9260 1288125e550fSOleksij Rempel tristate "Alphascale asm9260 RTC" 12897f742e8eSAlexandre Belloni depends on MACH_ASM9260 || COMPILE_TEST 1290125e550fSOleksij Rempel help 1291125e550fSOleksij Rempel If you say yes here you get support for the RTC on the 1292125e550fSOleksij Rempel Alphascale asm9260 SoC. 1293125e550fSOleksij Rempel 1294125e550fSOleksij Rempel This driver can also be built as a module. If so, the module 1295125e550fSOleksij Rempel will be called rtc-asm9260. 1296125e550fSOleksij Rempel 12978ecf6c54SMiguel Aguilarconfig RTC_DRV_DAVINCI 12988ecf6c54SMiguel Aguilar tristate "TI DaVinci RTC" 12997a587eaeSAlexandre Belloni depends on ARCH_DAVINCI_DM365 || COMPILE_TEST 13008ecf6c54SMiguel Aguilar help 13018ecf6c54SMiguel Aguilar If you say yes here you get support for the RTC on the 13028ecf6c54SMiguel Aguilar DaVinci platforms (DM365). 13038ecf6c54SMiguel Aguilar 13048ecf6c54SMiguel Aguilar This driver can also be built as a module. If so, the module 13058ecf6c54SMiguel Aguilar will be called rtc-davinci. 13068ecf6c54SMiguel Aguilar 1307ba172208SBaruch Siachconfig RTC_DRV_DIGICOLOR 1308ba172208SBaruch Siach tristate "Conexant Digicolor RTC" 13097a587eaeSAlexandre Belloni depends on ARCH_DIGICOLOR || COMPILE_TEST 1310ba172208SBaruch Siach help 1311ba172208SBaruch Siach If you say yes here you get support for the RTC on Conexant 1312ba172208SBaruch Siach Digicolor platforms. This currently includes the CX92755 SoC. 1313ba172208SBaruch Siach 1314ba172208SBaruch Siach This driver can also be built as a module. If so, the module 1315ba172208SBaruch Siach will be called rtc-digicolor. 1316ba172208SBaruch Siach 1317b224b9acSFabio Estevamconfig RTC_DRV_IMXDI 1318b224b9acSFabio Estevam tristate "Freescale IMX DryIce Real Time Clock" 1319ef216ad0SRoland Stigge depends on ARCH_MXC 1320b224b9acSFabio Estevam help 1321b224b9acSFabio Estevam Support for Freescale IMX DryIce RTC 1322b224b9acSFabio Estevam 1323b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1324b224b9acSFabio Estevam will be called "rtc-imxdi". 1325b224b9acSFabio Estevam 1326d8fe6009SMartin Blumenstinglconfig RTC_DRV_MESON 1327d8fe6009SMartin Blumenstingl tristate "Amlogic Meson RTC" 1328d8fe6009SMartin Blumenstingl depends on (ARM && ARCH_MESON) || COMPILE_TEST 1329d8fe6009SMartin Blumenstingl select REGMAP_MMIO 1330d8fe6009SMartin Blumenstingl help 1331d8fe6009SMartin Blumenstingl Support for the RTC block on the Amlogic Meson6, Meson8, Meson8b 1332d8fe6009SMartin Blumenstingl and Meson8m2 SoCs. 1333d8fe6009SMartin Blumenstingl 1334d8fe6009SMartin Blumenstingl This driver can also be built as a module, if so, the module 1335d8fe6009SMartin Blumenstingl will be called "rtc-meson". 1336d8fe6009SMartin Blumenstingl 1337db68b189SDavid Brownellconfig RTC_DRV_OMAP 13388608976eSLokesh Vutla tristate "TI OMAP Real Time Clock" 13397a587eaeSAlexandre Belloni depends on ARCH_OMAP || ARCH_DAVINCI || COMPILE_TEST 134097ea1906SMarcin Niestroj depends on OF 134197ea1906SMarcin Niestroj depends on PINCTRL 134297ea1906SMarcin Niestroj select GENERIC_PINCONF 1343db68b189SDavid Brownell help 1344427af9a6SAfzal Mohammed Say "yes" here to support the on chip real time clock 13458608976eSLokesh Vutla present on TI OMAP1, AM33xx, DA8xx/OMAP-L13x, AM43xx and DRA7xx. 1346427af9a6SAfzal Mohammed 1347427af9a6SAfzal Mohammed This driver can also be built as a module, if so, module 1348427af9a6SAfzal Mohammed will be called rtc-omap. 1349db68b189SDavid Brownell 135016f4efe7SAtul Dahiyaconfig HAVE_S3C_RTC 135116f4efe7SAtul Dahiya bool 135216f4efe7SAtul Dahiya help 135316f4efe7SAtul Dahiya This will include RTC support for Samsung SoCs. If 135416f4efe7SAtul Dahiya you want to include RTC support for any machine, kindly 135516f4efe7SAtul Dahiya select this in the respective mach-XXXX/Kconfig file. 135616f4efe7SAtul Dahiya 13571add6781SBen Dooksconfig RTC_DRV_S3C 13581add6781SBen Dooks tristate "Samsung S3C series SoC RTC" 13597a587eaeSAlexandre Belloni depends on ARCH_S3C64XX || HAVE_S3C_RTC || COMPILE_TEST 13601add6781SBen Dooks help 13611add6781SBen Dooks RTC (Realtime Clock) driver for the clock inbuilt into the 13621add6781SBen Dooks Samsung S3C24XX series of SoCs. This can provide periodic 13631add6781SBen Dooks interrupt rates from 1Hz to 64Hz for user programs, and 13641add6781SBen Dooks wakeup from Alarm. 13651add6781SBen Dooks 13661add6781SBen Dooks The driver currently supports the common features on all the 13671add6781SBen Dooks S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440 13681add6781SBen Dooks and S3C2442. 13691add6781SBen Dooks 13701add6781SBen Dooks This driver can also be build as a module. If so, the module 13711add6781SBen Dooks will be called rtc-s3c. 13721add6781SBen Dooks 1373fd507e2fSAlessandro Zummoconfig RTC_DRV_EP93XX 1374fd507e2fSAlessandro Zummo tristate "Cirrus Logic EP93XX" 13757a587eaeSAlexandre Belloni depends on ARCH_EP93XX || COMPILE_TEST 1376fd507e2fSAlessandro Zummo help 1377fd507e2fSAlessandro Zummo If you say yes here you get support for the 1378fd507e2fSAlessandro Zummo RTC embedded in the Cirrus Logic EP93XX processors. 1379fd507e2fSAlessandro Zummo 1380fd507e2fSAlessandro Zummo This driver can also be built as a module. If so, the module 1381fd507e2fSAlessandro Zummo will be called rtc-ep93xx. 1382fd507e2fSAlessandro Zummo 1383e842f1c8SRichard Purdieconfig RTC_DRV_SA1100 13843888c090SHaojian Zhuang tristate "SA11x0/PXA2xx/PXA910" 13853888c090SHaojian Zhuang depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP 1386e842f1c8SRichard Purdie help 1387e842f1c8SRichard Purdie If you say Y here you will get access to the real time clock 1388e842f1c8SRichard Purdie built into your SA11x0 or PXA2xx CPU. 1389e842f1c8SRichard Purdie 1390e842f1c8SRichard Purdie To compile this driver as a module, choose M here: the 1391e842f1c8SRichard Purdie module will be called rtc-sa1100. 1392fd507e2fSAlessandro Zummo 1393317a6104SPaul Mundtconfig RTC_DRV_SH 1394317a6104SPaul Mundt tristate "SuperH On-Chip RTC" 1395dab5aec6SChris Brandt depends on SUPERH || ARCH_RENESAS 1396317a6104SPaul Mundt help 1397317a6104SPaul Mundt Say Y here to enable support for the on-chip RTC found in 1398dab5aec6SChris Brandt most SuperH processors. This RTC is also found in RZ/A SoCs. 1399317a6104SPaul Mundt 1400317a6104SPaul Mundt To compile this driver as a module, choose M here: the 1401317a6104SPaul Mundt module will be called rtc-sh. 1402317a6104SPaul Mundt 14038417eb7aSYoichi Yuasaconfig RTC_DRV_VR41XX 14043e16f6afSAlessandro Zummo tristate "NEC VR41XX" 14057a587eaeSAlexandre Belloni depends on CPU_VR41XX || COMPILE_TEST 14063e16f6afSAlessandro Zummo help 14073e16f6afSAlessandro Zummo If you say Y here you will get access to the real time clock 14083e16f6afSAlessandro Zummo built into your NEC VR41XX CPU. 14093e16f6afSAlessandro Zummo 14103e16f6afSAlessandro Zummo To compile this driver as a module, choose M here: the 14113e16f6afSAlessandro Zummo module will be called rtc-vr41xx. 14128417eb7aSYoichi Yuasa 1413a190901cSRussell Kingconfig RTC_DRV_PL030 1414a190901cSRussell King tristate "ARM AMBA PL030 RTC" 1415a190901cSRussell King depends on ARM_AMBA 1416a190901cSRussell King help 1417a190901cSRussell King If you say Y here you will get access to ARM AMBA 1418a190901cSRussell King PrimeCell PL030 RTC found on certain ARM SOCs. 1419a190901cSRussell King 1420a190901cSRussell King To compile this driver as a module, choose M here: the 1421a190901cSRussell King module will be called rtc-pl030. 1422a190901cSRussell King 14238ae6e163SDeepak Saxenaconfig RTC_DRV_PL031 14248ae6e163SDeepak Saxena tristate "ARM AMBA PL031 RTC" 1425bb35fb20SJan Engelhardt depends on ARM_AMBA 14268ae6e163SDeepak Saxena help 14278ae6e163SDeepak Saxena If you say Y here you will get access to ARM AMBA 142809a21e56SAlessandro Zummo PrimeCell PL031 RTC found on certain ARM SOCs. 14298ae6e163SDeepak Saxena 14308ae6e163SDeepak Saxena To compile this driver as a module, choose M here: the 14318ae6e163SDeepak Saxena module will be called rtc-pl031. 14328ae6e163SDeepak Saxena 14337fc39f6dSAndrew Victorconfig RTC_DRV_AT91RM9200 143424cecc1bSNicolas Ferre tristate "AT91RM9200 or some AT91SAM9 RTC" 14357a587eaeSAlexandre Belloni depends on ARCH_AT91 || COMPILE_TEST 1436788b1fc6SAndrew Victor help 14374cdf854fSDavid Brownell Driver for the internal RTC (Realtime Clock) module found on 143824cecc1bSNicolas Ferre Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips 14394cdf854fSDavid Brownell this is powered by the backup power supply. 14404cdf854fSDavid Brownell 14414cdf854fSDavid Brownellconfig RTC_DRV_AT91SAM9 14423969eb48SBoris BREZILLON tristate "AT91SAM9 RTT as RTC" 14437a587eaeSAlexandre Belloni depends on ARCH_AT91 || COMPILE_TEST 14441a76a77cSAlexandre Belloni depends on OF && HAS_IOMEM 144543e112bbSBoris BREZILLON select MFD_SYSCON 14464cdf854fSDavid Brownell help 14473969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which 14483969eb48SBoris BREZILLON can be used as an RTC thanks to the backup power supply (e.g. a 14493969eb48SBoris BREZILLON small coin cell battery) which keeps this block and the GPBR 14503969eb48SBoris BREZILLON (General Purpose Backup Registers) block powered when the device 14513969eb48SBoris BREZILLON is shutdown. 14523969eb48SBoris BREZILLON Some AT91SAM9 SoCs provide a real RTC block, on those ones you'd 14533969eb48SBoris BREZILLON probably want to use the real RTC block instead of the "RTT as an 14543969eb48SBoris BREZILLON RTC" driver. 14554cdf854fSDavid Brownell 145645fd8a0cSManuel Laussconfig RTC_DRV_AU1XXX 145745fd8a0cSManuel Lauss tristate "Au1xxx Counter0 RTC support" 145842a4f17dSManuel Lauss depends on MIPS_ALCHEMY 145945fd8a0cSManuel Lauss help 146045fd8a0cSManuel Lauss This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year 146145fd8a0cSManuel Lauss counter) to be used as a RTC. 146245fd8a0cSManuel Lauss 146345fd8a0cSManuel Lauss This driver can also be built as a module. If so, the module 146445fd8a0cSManuel Lauss will be called rtc-au1xxx. 146545fd8a0cSManuel Lauss 1466e9f2bd81SNobuhiro Iwamatsuconfig RTC_DRV_RS5C313 1467e9f2bd81SNobuhiro Iwamatsu tristate "Ricoh RS5C313" 1468bb35fb20SJan Engelhardt depends on SH_LANDISK 1469e9f2bd81SNobuhiro Iwamatsu help 1470e9f2bd81SNobuhiro Iwamatsu If you say yes here you get support for the Ricoh RS5C313 RTC chips. 1471e9f2bd81SNobuhiro Iwamatsu 14723afe6d04SGeert Uytterhoevenconfig RTC_DRV_GENERIC 14733afe6d04SGeert Uytterhoeven tristate "Generic RTC support" 14743afe6d04SGeert Uytterhoeven # Please consider writing a new RTC driver instead of using the generic 14753afe6d04SGeert Uytterhoeven # RTC abstraction 14767a587eaeSAlexandre Belloni depends on PARISC || M68K || PPC || SUPERH32 || COMPILE_TEST 14779eb16864SKyle McMartin help 14783afe6d04SGeert Uytterhoeven Say Y or M here to enable RTC support on systems using the generic 14793afe6d04SGeert Uytterhoeven RTC abstraction. If you do not know what you are doing, you should 14809eb16864SKyle McMartin just say Y. 14819eb16864SKyle McMartin 1482dc944368SRobert Jarzmikconfig RTC_DRV_PXA 1483dc944368SRobert Jarzmik tristate "PXA27x/PXA3xx" 1484dc944368SRobert Jarzmik depends on ARCH_PXA 14853cdf4ad9SRob Herring select RTC_DRV_SA1100 1486dc944368SRobert Jarzmik help 1487dc944368SRobert Jarzmik If you say Y here you will get access to the real time clock 14883cdf4ad9SRob Herring built into your PXA27x or PXA3xx CPU. This RTC is actually 2 RTCs 14893cdf4ad9SRob Herring consisting of an SA1100 compatible RTC and the extended PXA RTC. 1490dc944368SRobert Jarzmik 1491dc944368SRobert Jarzmik This RTC driver uses PXA RTC registers available since pxa27x 1492dc944368SRobert Jarzmik series (RDxR, RYxR) instead of legacy RCNR, RTAR. 1493dc944368SRobert Jarzmik 1494f77fbdf9SAlexey Charkovconfig RTC_DRV_VT8500 1495f77fbdf9SAlexey Charkov tristate "VIA/WonderMedia 85xx SoC RTC" 14967a587eaeSAlexandre Belloni depends on ARCH_VT8500 || COMPILE_TEST 1497f77fbdf9SAlexey Charkov help 1498f77fbdf9SAlexey Charkov If you say Y here you will get access to the real time clock 1499f77fbdf9SAlexey Charkov built into your VIA VT8500 SoC or its relatives. 1500f77fbdf9SAlexey Charkov 1501dc944368SRobert Jarzmik 15027a138edeSDavid S. Millerconfig RTC_DRV_SUN4V 15037a138edeSDavid S. Miller bool "SUN4V Hypervisor RTC" 15047a138edeSDavid S. Miller depends on SPARC64 15057a138edeSDavid S. Miller help 15067a138edeSDavid S. Miller If you say Y here you will get support for the Hypervisor 15077a138edeSDavid S. Miller based RTC on SUN4V systems. 15087a138edeSDavid S. Miller 15099765d2d9SChen-Yu Tsaiconfig RTC_DRV_SUN6I 151037539414SMaxime Ripard bool "Allwinner A31 RTC" 151193946c49SAlexandre Belloni default MACH_SUN6I || MACH_SUN8I 151293946c49SAlexandre Belloni depends on COMMON_CLK 151393946c49SAlexandre Belloni depends on ARCH_SUNXI || COMPILE_TEST 15149765d2d9SChen-Yu Tsai help 15152863934eSAndre Przywara If you say Y here you will get support for the RTC found in 15162863934eSAndre Przywara some Allwinner SoCs like the A31 or the A64. 15179765d2d9SChen-Yu Tsai 1518594c6fb9SCarlo Caioneconfig RTC_DRV_SUNXI 1519594c6fb9SCarlo Caione tristate "Allwinner sun4i/sun7i RTC" 15207a587eaeSAlexandre Belloni depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST 1521594c6fb9SCarlo Caione help 1522594c6fb9SCarlo Caione If you say Y here you will get support for the RTC found on 1523594c6fb9SCarlo Caione Allwinner A10/A20. 1524594c6fb9SCarlo Caione 1525de2cf332SDavid S. Millerconfig RTC_DRV_STARFIRE 1526de2cf332SDavid S. Miller bool "Starfire RTC" 1527de2cf332SDavid S. Miller depends on SPARC64 1528de2cf332SDavid S. Miller help 1529de2cf332SDavid S. Miller If you say Y here you will get support for the RTC found on 1530de2cf332SDavid S. Miller Starfire systems. 1531de2cf332SDavid S. Miller 15320e149233SAtsushi Nemotoconfig RTC_DRV_TX4939 15330e149233SAtsushi Nemoto tristate "TX4939 SoC" 1534faec5f7bSAlexandre Belloni depends on SOC_TX4939 || COMPILE_TEST 15350e149233SAtsushi Nemoto help 15360e149233SAtsushi Nemoto Driver for the internal RTC (Realtime Clock) module found on 15370e149233SAtsushi Nemoto Toshiba TX4939 SoC. 15380e149233SAtsushi Nemoto 1539defb4514SSaeed Bisharaconfig RTC_DRV_MV 1540defb4514SSaeed Bishara tristate "Marvell SoC RTC" 15417a587eaeSAlexandre Belloni depends on ARCH_DOVE || ARCH_MVEBU || COMPILE_TEST 1542defb4514SSaeed Bishara help 1543defb4514SSaeed Bishara If you say yes here you will get support for the in-chip RTC 1544defb4514SSaeed Bishara that can be found in some of Marvell's SoC devices, such as 1545defb4514SSaeed Bishara the Kirkwood 88F6281 and 88F6192. 1546defb4514SSaeed Bishara 1547defb4514SSaeed Bishara This driver can also be built as a module. If so, the module 1548defb4514SSaeed Bishara will be called rtc-mv. 1549defb4514SSaeed Bishara 1550a3a42806SGregory CLEMENTconfig RTC_DRV_ARMADA38X 1551a3a42806SGregory CLEMENT tristate "Armada 38x Marvell SoC RTC" 15527a587eaeSAlexandre Belloni depends on ARCH_MVEBU || COMPILE_TEST 1553a3a42806SGregory CLEMENT help 1554a3a42806SGregory CLEMENT If you say yes here you will get support for the in-chip RTC 1555a3a42806SGregory CLEMENT that can be found in the Armada 38x Marvell's SoC device 1556a3a42806SGregory CLEMENT 1557a3a42806SGregory CLEMENT This driver can also be built as a module. If so, the module 1558a3a42806SGregory CLEMENT will be called armada38x-rtc. 1559a3a42806SGregory CLEMENT 156042986fb8SJan Kotasconfig RTC_DRV_CADENCE 156142986fb8SJan Kotas tristate "Cadence RTC driver" 156242986fb8SJan Kotas depends on OF && HAS_IOMEM 156342986fb8SJan Kotas help 156442986fb8SJan Kotas If you say Y here you will get access to Cadence RTC IP 156542986fb8SJan Kotas found on certain SOCs. 156642986fb8SJan Kotas 156742986fb8SJan Kotas To compile this driver as a module, choose M here: the 156842986fb8SJan Kotas module will be called rtc-cadence. 156942986fb8SJan Kotas 15701d61d259SLinus Walleijconfig RTC_DRV_FTRTC010 15711d61d259SLinus Walleij tristate "Faraday Technology FTRTC010 RTC" 157298a9bb5bSHans Ulli Kroll depends on HAS_IOMEM 15731d61d259SLinus Walleij default ARCH_GEMINI 157498a9bb5bSHans Ulli Kroll help 157598a9bb5bSHans Ulli Kroll If you say Y here you will get support for the 15761d61d259SLinus Walleij Faraday Technolog FTRTC010 found on e.g. Gemini SoC's. 157798a9bb5bSHans Ulli Kroll 157898a9bb5bSHans Ulli Kroll This driver can also be built as a module. If so, the module 15791d61d259SLinus Walleij will be called rtc-ftrtc010. 158098a9bb5bSHans Ulli Kroll 15810b5f037aSGeert Uytterhoevenconfig RTC_DRV_PS3 15820b5f037aSGeert Uytterhoeven tristate "PS3 RTC" 15830b5f037aSGeert Uytterhoeven depends on PPC_PS3 15840b5f037aSGeert Uytterhoeven help 15850b5f037aSGeert Uytterhoeven If you say yes here you will get support for the RTC on PS3. 15860b5f037aSGeert Uytterhoeven 15870b5f037aSGeert Uytterhoeven This driver can also be built as a module. If so, the module 15880b5f037aSGeert Uytterhoeven will be called rtc-ps3. 15890b5f037aSGeert Uytterhoeven 1590aa958f57SLinus Walleijconfig RTC_DRV_COH901331 1591aa958f57SLinus Walleij tristate "ST-Ericsson COH 901 331 RTC" 15927a587eaeSAlexandre Belloni depends on ARCH_U300 || COMPILE_TEST 1593aa958f57SLinus Walleij help 1594aa958f57SLinus Walleij If you say Y here you will get access to ST-Ericsson 1595aa958f57SLinus Walleij COH 901 331 RTC clock found in some ST-Ericsson Mobile 1596aa958f57SLinus Walleij Platforms. 1597aa958f57SLinus Walleij 1598aa958f57SLinus Walleij This driver can also be built as a module. If so, the module 1599aa958f57SLinus Walleij will be called "rtc-coh901331". 1600aa958f57SLinus Walleij 1601aa958f57SLinus Walleij 1602df17f631Sdmitry pervushinconfig RTC_DRV_STMP 160346b21218SWolfram Sang tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC" 16047a587eaeSAlexandre Belloni depends on ARCH_MXS || COMPILE_TEST 160520d048acSAlexandre Belloni select STMP_DEVICE 1606df17f631Sdmitry pervushin help 1607df17f631Sdmitry pervushin If you say yes here you will get support for the onboard 160846b21218SWolfram Sang STMP3xxx/i.MX23/i.MX28 RTC. 1609df17f631Sdmitry pervushin 1610df17f631Sdmitry pervushin This driver can also be built as a module. If so, the module 1611df17f631Sdmitry pervushin will be called rtc-stmp3xxx. 1612df17f631Sdmitry pervushin 1613d3c7a3f7SDaniel Ribeiroconfig RTC_DRV_PCAP 1614d3c7a3f7SDaniel Ribeiro tristate "PCAP RTC" 1615d3c7a3f7SDaniel Ribeiro depends on EZX_PCAP 1616d3c7a3f7SDaniel Ribeiro help 1617d3c7a3f7SDaniel Ribeiro If you say Y here you will get support for the RTC found on 1618d3c7a3f7SDaniel Ribeiro the PCAP2 ASIC used on some Motorola phones. 1619d3c7a3f7SDaniel Ribeiro 16201c97872bSUwe Kleine-Königconfig RTC_DRV_MC13XXX 16211c97872bSUwe Kleine-König depends on MFD_MC13XXX 16221c97872bSUwe Kleine-König tristate "Freescale MC13xxx RTC" 162343299f28SUwe Kleine-König help 16241c97872bSUwe Kleine-König This enables support for the RTCs found on Freescale's PMICs 16251c97872bSUwe Kleine-König MC13783 and MC13892. 162643299f28SUwe Kleine-König 162750aae724SAnatolij Gustschinconfig RTC_DRV_MPC5121 162850aae724SAnatolij Gustschin tristate "Freescale MPC5121 built-in RTC" 1629955dbea3SDmitry Eremin-Solenikov depends on PPC_MPC512x || PPC_MPC52xx 163050aae724SAnatolij Gustschin help 163150aae724SAnatolij Gustschin If you say yes here you will get support for the 1632955dbea3SDmitry Eremin-Solenikov built-in RTC on MPC5121 or on MPC5200. 163350aae724SAnatolij Gustschin 163450aae724SAnatolij Gustschin This driver can also be built as a module. If so, the module 163550aae724SAnatolij Gustschin will be called rtc-mpc5121. 163650aae724SAnatolij Gustschin 16373bf0eea8SLars-Peter Clausenconfig RTC_DRV_JZ4740 1638586655d2SAlexandre Belloni tristate "Ingenic JZ4740 SoC" 16391e6e4e16SPaul Cercueil depends on MIPS || COMPILE_TEST 16403bf0eea8SLars-Peter Clausen help 1641cd563200SPaul Cercueil If you say yes here you get support for the Ingenic JZ47xx SoCs RTC 1642cd563200SPaul Cercueil controllers. 16433bf0eea8SLars-Peter Clausen 1644b9ef8608SMathieu Malaterre This driver can also be built as a module. If so, the module 1645586655d2SAlexandre Belloni will be called rtc-jz4740. 1646586655d2SAlexandre Belloni 1647c28b42e3SJoachim Eastwoodconfig RTC_DRV_LPC24XX 1648c28b42e3SJoachim Eastwood tristate "NXP RTC for LPC178x/18xx/408x/43xx" 1649c28b42e3SJoachim Eastwood depends on ARCH_LPC18XX || COMPILE_TEST 1650c28b42e3SJoachim Eastwood depends on OF && HAS_IOMEM 1651c28b42e3SJoachim Eastwood help 1652c28b42e3SJoachim Eastwood This enables support for the NXP RTC found which can be found on 1653c28b42e3SJoachim Eastwood NXP LPC178x/18xx/408x/43xx devices. 1654c28b42e3SJoachim Eastwood 1655c28b42e3SJoachim Eastwood If you have one of the devices above enable this driver to use 165672d3d79fSAlexandre Belloni the hardware RTC. This driver can also be built as a module. If 1657c28b42e3SJoachim Eastwood so, the module will be called rtc-lpc24xx. 1658c28b42e3SJoachim Eastwood 16599aa449beSKevin Wellsconfig RTC_DRV_LPC32XX 16607a587eaeSAlexandre Belloni depends on ARCH_LPC32XX || COMPILE_TEST 16619aa449beSKevin Wells tristate "NXP LPC32XX RTC" 16629aa449beSKevin Wells help 16639aa449beSKevin Wells This enables support for the NXP RTC in the LPC32XX 16649aa449beSKevin Wells 166572d3d79fSAlexandre Belloni This driver can also be built as a module. If so, the module 16669aa449beSKevin Wells will be called rtc-lpc32xx. 16679aa449beSKevin Wells 16689a9a54adSAnirudh Ghayalconfig RTC_DRV_PM8XXX 16699a9a54adSAnirudh Ghayal tristate "Qualcomm PMIC8XXX RTC" 16707a587eaeSAlexandre Belloni depends on MFD_PM8XXX || MFD_SPMI_PMIC || COMPILE_TEST 16719a9a54adSAnirudh Ghayal help 16729a9a54adSAnirudh Ghayal If you say yes here you get support for the 16739a9a54adSAnirudh Ghayal Qualcomm PMIC8XXX RTC. 16749a9a54adSAnirudh Ghayal 16759a9a54adSAnirudh Ghayal To compile this driver as a module, choose M here: the 16769a9a54adSAnirudh Ghayal module will be called rtc-pm8xxx. 16779a9a54adSAnirudh Ghayal 1678ff859ba6SAndrew Chewconfig RTC_DRV_TEGRA 1679ff859ba6SAndrew Chew tristate "NVIDIA Tegra Internal RTC driver" 16807a587eaeSAlexandre Belloni depends on ARCH_TEGRA || COMPILE_TEST 1681ff859ba6SAndrew Chew help 1682ff859ba6SAndrew Chew If you say yes here you get support for the 1683ff859ba6SAndrew Chew Tegra 200 series internal RTC module. 1684ff859ba6SAndrew Chew 1685ff859ba6SAndrew Chew This drive can also be built as a module. If so, the module 1686ff859ba6SAndrew Chew will be called rtc-tegra. 1687ff859ba6SAndrew Chew 16882809e80bSGuan Xuetaoconfig RTC_DRV_PUV3 16892809e80bSGuan Xuetao tristate "PKUnity v3 RTC support" 16902809e80bSGuan Xuetao depends on ARCH_PUV3 16912809e80bSGuan Xuetao help 16922809e80bSGuan Xuetao This enables support for the RTC in the PKUnity-v3 SoCs. 16932809e80bSGuan Xuetao 16942809e80bSGuan Xuetao This drive can also be built as a module. If so, the module 16952809e80bSGuan Xuetao will be called rtc-puv3. 16962809e80bSGuan Xuetao 1697b4f0b880Szhao zhangconfig RTC_DRV_LOONGSON1 1698b4f0b880Szhao zhang tristate "loongson1 RTC support" 169930ad29bbSHuacai Chen depends on MACH_LOONGSON32 1700b4f0b880Szhao zhang help 1701b4f0b880Szhao zhang This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year 1702b4f0b880Szhao zhang counter) to be used as a RTC. 1703b4f0b880Szhao zhang 1704b4f0b880Szhao zhang This driver can also be built as a module. If so, the module 1705b4f0b880Szhao zhang will be called rtc-ls1x. 1706b4f0b880Szhao zhang 170779811595SFabio Estevamconfig RTC_DRV_MXC 1708b224b9acSFabio Estevam tristate "Freescale MXC Real Time Clock" 1709b224b9acSFabio Estevam depends on ARCH_MXC 1710b224b9acSFabio Estevam help 1711b224b9acSFabio Estevam If you say yes here you get support for the Freescale MXC 1712b224b9acSFabio Estevam RTC module. 1713b224b9acSFabio Estevam 1714b224b9acSFabio Estevam This driver can also be built as a module, if so, the module 1715b224b9acSFabio Estevam will be called "rtc-mxc". 1716b224b9acSFabio Estevam 171783c880f7SPatrick Bruennconfig RTC_DRV_MXC_V2 171883c880f7SPatrick Bruenn tristate "Freescale MXC Real Time Clock for i.MX53" 171983c880f7SPatrick Bruenn depends on ARCH_MXC 172083c880f7SPatrick Bruenn help 172183c880f7SPatrick Bruenn If you say yes here you get support for the Freescale MXC 172283c880f7SPatrick Bruenn SRTC module in i.MX53 processor. 172383c880f7SPatrick Bruenn 172483c880f7SPatrick Bruenn This driver can also be built as a module, if so, the module 172583c880f7SPatrick Bruenn will be called "rtc-mxc_v2". 172683c880f7SPatrick Bruenn 1727179a502fSShawn Guoconfig RTC_DRV_SNVS 1728179a502fSShawn Guo tristate "Freescale SNVS RTC support" 17298a0fa184SShawn Guo select REGMAP_MMIO 1730179a502fSShawn Guo depends on HAS_IOMEM 1731179a502fSShawn Guo depends on OF 1732179a502fSShawn Guo help 1733179a502fSShawn Guo If you say yes here you get support for the Freescale SNVS 1734179a502fSShawn Guo Low Power (LP) RTC module. 1735179a502fSShawn Guo 1736179a502fSShawn Guo This driver can also be built as a module, if so, the module 1737179a502fSShawn Guo will be called "rtc-snvs". 1738179a502fSShawn Guo 1739e01b5781SAnson Huangconfig RTC_DRV_IMX_SC 1740e01b5781SAnson Huang depends on IMX_SCU 17417dd63ec0SAlexandre Belloni depends on HAVE_ARM_SMCCC 1742e01b5781SAnson Huang tristate "NXP i.MX System Controller RTC support" 1743e01b5781SAnson Huang help 1744e01b5781SAnson Huang If you say yes here you get support for the NXP i.MX System 1745e01b5781SAnson Huang Controller RTC module. 1746e01b5781SAnson Huang 1747e88b815eSXianglong Duconfig RTC_DRV_SIRFSOC 1748e88b815eSXianglong Du tristate "SiRFSOC RTC" 1749e88b815eSXianglong Du depends on ARCH_SIRF 1750e88b815eSXianglong Du help 1751e88b815eSXianglong Du Say "yes" here to support the real time clock on SiRF SOC chips. 1752e88b815eSXianglong Du This driver can also be built as a module called rtc-sirfsoc. 1753e88b815eSXianglong Du 1754b5b2bdfcSLee Jonesconfig RTC_DRV_ST_LPC 1755b5b2bdfcSLee Jones tristate "STMicroelectronics LPC RTC" 1756b5b2bdfcSLee Jones depends on ARCH_STI 1757b5b2bdfcSLee Jones depends on OF 1758b5b2bdfcSLee Jones help 1759b5b2bdfcSLee Jones Say Y here to include STMicroelectronics Low Power Controller 1760b5b2bdfcSLee Jones (LPC) based RTC support. 1761b5b2bdfcSLee Jones 1762b5b2bdfcSLee Jones To compile this driver as a module, choose M here: the 1763b5b2bdfcSLee Jones module will be called rtc-st-lpc. 1764b5b2bdfcSLee Jones 1765453b4c6dSJonas Jensenconfig RTC_DRV_MOXART 1766453b4c6dSJonas Jensen tristate "MOXA ART RTC" 1767441fb768SJean Delvare depends on ARCH_MOXART || COMPILE_TEST 1768453b4c6dSJonas Jensen help 1769453b4c6dSJonas Jensen If you say yes here you get support for the MOXA ART 1770453b4c6dSJonas Jensen RTC module. 1771453b4c6dSJonas Jensen 1772453b4c6dSJonas Jensen This driver can also be built as a module. If so, the module 1773453b4c6dSJonas Jensen will be called rtc-moxart 1774453b4c6dSJonas Jensen 1775fc297911STianping Fangconfig RTC_DRV_MT6397 1776d00a7ed2SSean Wang tristate "MediaTek PMIC based RTC" 177704d3ba70SArnd Bergmann depends on MFD_MT6397 || (COMPILE_TEST && IRQ_DOMAIN) 1778fc297911STianping Fang help 1779d00a7ed2SSean Wang This selects the MediaTek(R) RTC driver. RTC is part of MediaTek 1780fc297911STianping Fang MT6397 PMIC. You should enable MT6397 PMIC MFD before select 1781d00a7ed2SSean Wang MediaTek(R) RTC driver. 1782fc297911STianping Fang 1783d00a7ed2SSean Wang If you want to use MediaTek(R) RTC interface, select Y or M here. 1784fc297911STianping Fang 1785ba5d0181SSean Wangconfig RTC_DRV_MT7622 1786ba5d0181SSean Wang tristate "MediaTek SoC based RTC" 1787ba5d0181SSean Wang depends on ARCH_MEDIATEK || COMPILE_TEST 1788ba5d0181SSean Wang help 1789ba5d0181SSean Wang This enables support for the real time clock built in the MediaTek 1790ba5d0181SSean Wang SoCs. 1791ba5d0181SSean Wang 1792ba5d0181SSean Wang This drive can also be built as a module. If so, the module 1793ba5d0181SSean Wang will be called rtc-mt7622. 1794ba5d0181SSean Wang 1795f12d8695SLoc Hoconfig RTC_DRV_XGENE 1796f12d8695SLoc Ho tristate "APM X-Gene RTC" 1797706b632dSChen Gang depends on HAS_IOMEM 1798fdf8afa1SJean Delvare depends on ARCH_XGENE || COMPILE_TEST 1799f12d8695SLoc Ho help 1800f12d8695SLoc Ho If you say yes here you get support for the APM X-Gene SoC real time 1801f12d8695SLoc Ho clock. 1802f12d8695SLoc Ho 1803f12d8695SLoc Ho This driver can also be built as a module, if so, the module 1804f12d8695SLoc Ho will be called "rtc-xgene". 1805f12d8695SLoc Ho 180651aa905cSJoshua Hendersonconfig RTC_DRV_PIC32 180751aa905cSJoshua Henderson tristate "Microchip PIC32 RTC" 180851aa905cSJoshua Henderson depends on MACH_PIC32 180951aa905cSJoshua Henderson default y 181051aa905cSJoshua Henderson help 181151aa905cSJoshua Henderson If you say yes here you get support for the PIC32 RTC module. 181251aa905cSJoshua Henderson 181351aa905cSJoshua Henderson This driver can also be built as a module. If so, the module 181451aa905cSJoshua Henderson will be called rtc-pic32 181551aa905cSJoshua Henderson 18160b6a8f5cSAkinobu Mitaconfig RTC_DRV_R7301 18170b6a8f5cSAkinobu Mita tristate "EPSON TOYOCOM RTC-7301SF/DG" 18180b6a8f5cSAkinobu Mita select REGMAP_MMIO 18190b6a8f5cSAkinobu Mita depends on OF && HAS_IOMEM 18200b6a8f5cSAkinobu Mita help 18210b6a8f5cSAkinobu Mita If you say yes here you get support for the EPSON TOYOCOM 18220b6a8f5cSAkinobu Mita RTC-7301SF/DG chips. 18230b6a8f5cSAkinobu Mita 18240b6a8f5cSAkinobu Mita This driver can also be built as a module. If so, the module 18250b6a8f5cSAkinobu Mita will be called rtc-r7301. 18260b6a8f5cSAkinobu Mita 18274e64350fSAmelie Delaunayconfig RTC_DRV_STM32 18284e64350fSAmelie Delaunay tristate "STM32 RTC" 18294e64350fSAmelie Delaunay select REGMAP_MMIO 18304e64350fSAmelie Delaunay depends on ARCH_STM32 || COMPILE_TEST 18314e64350fSAmelie Delaunay help 18324e64350fSAmelie Delaunay If you say yes here you get support for the STM32 On-Chip 18334e64350fSAmelie Delaunay Real Time Clock. 18344e64350fSAmelie Delaunay 18354e64350fSAmelie Delaunay This driver can also be built as a module, if so, the module 18364e64350fSAmelie Delaunay will be called "rtc-stm32". 18374e64350fSAmelie Delaunay 1838dd3bf50bSSebastian Reichelconfig RTC_DRV_CPCAP 1839dd3bf50bSSebastian Reichel depends on MFD_CPCAP 1840dd3bf50bSSebastian Reichel tristate "Motorola CPCAP RTC" 1841dd3bf50bSSebastian Reichel help 1842dd3bf50bSSebastian Reichel Say y here for CPCAP rtc found on some Motorola phones 1843dd3bf50bSSebastian Reichel and tablets such as Droid 4. 1844dd3bf50bSSebastian Reichel 1845ae930c91SAndreas Färberconfig RTC_DRV_RTD119X 1846ae930c91SAndreas Färber bool "Realtek RTD129x RTC" 1847ae930c91SAndreas Färber depends on ARCH_REALTEK || COMPILE_TEST 1848ae930c91SAndreas Färber default ARCH_REALTEK 1849ae930c91SAndreas Färber help 1850ae930c91SAndreas Färber If you say yes here, you get support for the RTD1295 SoC 1851ae930c91SAndreas Färber Real Time Clock. 1852ae930c91SAndreas Färber 1853184a182eSJoel Stanleyconfig RTC_DRV_ASPEED 1854184a182eSJoel Stanley tristate "ASPEED RTC" 1855184a182eSJoel Stanley depends on OF 1856184a182eSJoel Stanley depends on ARCH_ASPEED || COMPILE_TEST 1857184a182eSJoel Stanley help 1858184a182eSJoel Stanley If you say yes here you get support for the ASPEED BMC SoC real time 1859184a182eSJoel Stanley clocks. 1860184a182eSJoel Stanley 1861184a182eSJoel Stanley This driver can also be built as a module, if so, the module 1862184a182eSJoel Stanley will be called "rtc-aspeed". 1863184a182eSJoel Stanley 186462e00cb9SAlexander Hollercomment "HID Sensor RTC drivers" 186562e00cb9SAlexander Holler 186662e00cb9SAlexander Hollerconfig RTC_DRV_HID_SENSOR_TIME 186762e00cb9SAlexander Holler tristate "HID Sensor Time" 186862e00cb9SAlexander Holler depends on USB_HID 18693cbb7b63SAlexandre Belloni depends on HID_SENSOR_HUB && IIO 187062e00cb9SAlexander Holler select HID_SENSOR_IIO_COMMON 187162e00cb9SAlexander Holler help 187262e00cb9SAlexander Holler Say yes here to build support for the HID Sensors of type Time. 187362e00cb9SAlexander Holler This drivers makes such sensors available as RTCs. 187462e00cb9SAlexander Holler 187562e00cb9SAlexander Holler If this driver is compiled as a module, it will be named 187662e00cb9SAlexander Holler rtc-hid-sensor-time. 187762e00cb9SAlexander Holler 1878f22d9cdcSMiodrag Dinicconfig RTC_DRV_GOLDFISH 1879f22d9cdcSMiodrag Dinic tristate "Goldfish Real Time Clock" 18806a6ec8c1SAlexandre Belloni depends on OF && HAS_IOMEM 18816a6ec8c1SAlexandre Belloni depends on GOLDFISH || COMPILE_TEST 1882f22d9cdcSMiodrag Dinic help 1883f22d9cdcSMiodrag Dinic Say yes to enable RTC driver for the Goldfish based virtual platform. 1884f22d9cdcSMiodrag Dinic 1885f22d9cdcSMiodrag Dinic Goldfish is a code name for the virtual platform developed by Google 1886f22d9cdcSMiodrag Dinic for Android emulation. 188762e00cb9SAlexander Holler 18880d2f2a3dSNick Crewsconfig RTC_DRV_WILCO_EC 18890d2f2a3dSNick Crews tristate "Wilco EC RTC" 18900d2f2a3dSNick Crews depends on WILCO_EC 18910d2f2a3dSNick Crews default m 18920d2f2a3dSNick Crews help 18930d2f2a3dSNick Crews If you say yes here, you get read/write support for the Real Time 18940d2f2a3dSNick Crews Clock on the Wilco Embedded Controller (Wilco is a kind of Chromebook) 18950d2f2a3dSNick Crews 18960d2f2a3dSNick Crews This can also be built as a module. If so, the module will 18970d2f2a3dSNick Crews be named "rtc_wilco_ec". 18980d2f2a3dSNick Crews 1899bb35fb20SJan Engelhardtendif # RTC_CLASS 1900