Kconfig 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252
  1. #
  2. # RTC class/drivers configuration
  3. #
  4. config RTC_LIB
  5. bool
  6. menuconfig RTC_CLASS
  7. bool "Real Time Clock"
  8. default n
  9. depends on !S390 && !UML
  10. select RTC_LIB
  11. help
  12. Generic RTC class support. If you say yes here, you will
  13. be allowed to plug one or more RTCs to your system. You will
  14. probably want to enable one or more of the interfaces below.
  15. if RTC_CLASS
  16. config RTC_HCTOSYS
  17. bool "Set system time from RTC on startup and resume"
  18. default y
  19. help
  20. If you say yes here, the system time (wall clock) will be set using
  21. the value read from a specified RTC device. This is useful to avoid
  22. unnecessary fsck runs at boot time, and to network better.
  23. config RTC_SYSTOHC
  24. bool "Set the RTC time based on NTP synchronization"
  25. default y
  26. help
  27. If you say yes here, the system time (wall clock) will be stored
  28. in the RTC specified by RTC_HCTOSYS_DEVICE approximately every 11
  29. minutes if userspace reports synchronized NTP status.
  30. config RTC_HCTOSYS_DEVICE
  31. string "RTC used to set the system time"
  32. depends on RTC_HCTOSYS = y || RTC_SYSTOHC = y
  33. default "rtc0"
  34. help
  35. The RTC device that will be used to (re)initialize the system
  36. clock, usually rtc0. Initialization is done when the system
  37. starts up, and when it resumes from a low power state. This
  38. device should record time in UTC, since the kernel won't do
  39. timezone correction.
  40. The driver for this RTC device must be loaded before late_initcall
  41. functions run, so it must usually be statically linked.
  42. This clock should be battery-backed, so that it reads the correct
  43. time when the system boots from a power-off state. Otherwise, your
  44. system will need an external clock source (like an NTP server).
  45. If the clock you specify here is not battery backed, it may still
  46. be useful to reinitialize system time when resuming from system
  47. sleep states. Do not specify an RTC here unless it stays powered
  48. during all this system's supported sleep states.
  49. config RTC_DEBUG
  50. bool "RTC debug support"
  51. help
  52. Say yes here to enable debugging support in the RTC framework
  53. and individual RTC drivers.
  54. comment "RTC interfaces"
  55. config RTC_INTF_SYSFS
  56. boolean "/sys/class/rtc/rtcN (sysfs)"
  57. depends on SYSFS
  58. default RTC_CLASS
  59. help
  60. Say yes here if you want to use your RTCs using sysfs interfaces,
  61. /sys/class/rtc/rtc0 through /sys/.../rtcN.
  62. If unsure, say Y.
  63. config RTC_INTF_PROC
  64. boolean "/proc/driver/rtc (procfs for rtcN)"
  65. depends on PROC_FS
  66. default RTC_CLASS
  67. help
  68. Say yes here if you want to use your system clock RTC through
  69. the proc interface, /proc/driver/rtc.
  70. Other RTCs will not be available through that API.
  71. If there is no RTC for the system clock, then the first RTC(rtc0)
  72. is used by default.
  73. If unsure, say Y.
  74. config RTC_INTF_DEV
  75. boolean "/dev/rtcN (character devices)"
  76. default RTC_CLASS
  77. help
  78. Say yes here if you want to use your RTCs using the /dev
  79. interfaces, which "udev" sets up as /dev/rtc0 through
  80. /dev/rtcN.
  81. You may want to set up a symbolic link so one of these
  82. can be accessed as /dev/rtc, which is a name
  83. expected by "hwclock" and some other programs. Recent
  84. versions of "udev" are known to set up the symlink for you.
  85. If unsure, say Y.
  86. config RTC_INTF_DEV_UIE_EMUL
  87. bool "RTC UIE emulation on dev interface"
  88. depends on RTC_INTF_DEV
  89. help
  90. Provides an emulation for RTC_UIE if the underlying rtc chip
  91. driver does not expose RTC_UIE ioctls. Those requests generate
  92. once-per-second update interrupts, used for synchronization.
  93. The emulation code will read the time from the hardware
  94. clock several times per second, please enable this option
  95. only if you know that you really need it.
  96. config RTC_DRV_TEST
  97. tristate "Test driver/device"
  98. help
  99. If you say yes here you get support for the
  100. RTC test driver. It's a software RTC which can be
  101. used to test the RTC subsystem APIs. It gets
  102. the time from the system clock.
  103. You want this driver only if you are doing development
  104. on the RTC subsystem. Please read the source code
  105. for further details.
  106. This driver can also be built as a module. If so, the module
  107. will be called rtc-test.
  108. comment "I2C RTC drivers"
  109. depends on I2C
  110. if I2C
  111. config RTC_DRV_88PM860X
  112. tristate "Marvell 88PM860x"
  113. depends on I2C && MFD_88PM860X
  114. help
  115. If you say yes here you get support for RTC function in Marvell
  116. 88PM860x chips.
  117. This driver can also be built as a module. If so, the module
  118. will be called rtc-88pm860x.
  119. config RTC_DRV_88PM80X
  120. tristate "Marvell 88PM80x"
  121. depends on I2C && MFD_88PM800
  122. help
  123. If you say yes here you get support for RTC function in Marvell
  124. 88PM80x chips.
  125. This driver can also be built as a module. If so, the module
  126. will be called rtc-88pm80x.
  127. config RTC_DRV_DS1307
  128. tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025"
  129. help
  130. If you say yes here you get support for various compatible RTC
  131. chips (often with battery backup) connected with I2C. This driver
  132. should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
  133. EPSON RX-8025 and probably other chips. In some cases the RTC
  134. must already have been initialized (by manufacturing or a
  135. bootloader).
  136. The first seven registers on these chips hold an RTC, and other
  137. registers may add features such as NVRAM, a trickle charger for
  138. the RTC/NVRAM backup power, and alarms. NVRAM is visible in
  139. sysfs, but other chip features may not be available.
  140. This driver can also be built as a module. If so, the module
  141. will be called rtc-ds1307.
  142. config RTC_DRV_DS1374
  143. tristate "Dallas/Maxim DS1374"
  144. depends on I2C
  145. help
  146. If you say yes here you get support for Dallas Semiconductor
  147. DS1374 real-time clock chips. If an interrupt is associated
  148. with the device, the alarm functionality is supported.
  149. This driver can also be built as a module. If so, the module
  150. will be called rtc-ds1374.
  151. config RTC_DRV_DS1672
  152. tristate "Dallas/Maxim DS1672"
  153. help
  154. If you say yes here you get support for the
  155. Dallas/Maxim DS1672 timekeeping chip.
  156. This driver can also be built as a module. If so, the module
  157. will be called rtc-ds1672.
  158. config RTC_DRV_DS3232
  159. tristate "Dallas/Maxim DS3232"
  160. depends on I2C
  161. help
  162. If you say yes here you get support for Dallas Semiconductor
  163. DS3232 real-time clock chips. If an interrupt is associated
  164. with the device, the alarm functionality is supported.
  165. This driver can also be built as a module. If so, the module
  166. will be called rtc-ds3232.
  167. config RTC_DRV_LP8788
  168. tristate "TI LP8788 RTC driver"
  169. depends on MFD_LP8788
  170. help
  171. Say Y to enable support for the LP8788 RTC/ALARM driver.
  172. config RTC_DRV_MAX6900
  173. tristate "Maxim MAX6900"
  174. help
  175. If you say yes here you will get support for the
  176. Maxim MAX6900 I2C RTC chip.
  177. This driver can also be built as a module. If so, the module
  178. will be called rtc-max6900.
  179. config RTC_DRV_MAX8907
  180. tristate "Maxim MAX8907"
  181. depends on MFD_MAX8907
  182. help
  183. If you say yes here you will get support for the
  184. RTC of Maxim MAX8907 PMIC.
  185. This driver can also be built as a module. If so, the module
  186. will be called rtc-max8907.
  187. config RTC_DRV_MAX8925
  188. tristate "Maxim MAX8925"
  189. depends on MFD_MAX8925
  190. help
  191. If you say yes here you will get support for the
  192. RTC of Maxim MAX8925 PMIC.
  193. This driver can also be built as a module. If so, the module
  194. will be called rtc-max8925.
  195. config RTC_DRV_MAX8998
  196. tristate "Maxim MAX8998"
  197. depends on MFD_MAX8998
  198. help
  199. If you say yes here you will get support for the
  200. RTC of Maxim MAX8998 PMIC.
  201. This driver can also be built as a module. If so, the module
  202. will be called rtc-max8998.
  203. config RTC_DRV_MAX8997
  204. tristate "Maxim MAX8997"
  205. depends on MFD_MAX8997
  206. help
  207. If you say yes here you will get support for the
  208. RTC of Maxim MAX8997 PMIC.
  209. This driver can also be built as a module. If so, the module
  210. will be called rtc-max8997.
  211. config RTC_DRV_MAX77686
  212. tristate "Maxim MAX77686"
  213. depends on MFD_MAX77686
  214. help
  215. If you say yes here you will get support for the
  216. RTC of Maxim MAX77686 PMIC.
  217. This driver can also be built as a module. If so, the module
  218. will be called rtc-max77686.
  219. config RTC_DRV_RS5C372
  220. tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
  221. help
  222. If you say yes here you get support for the
  223. Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
  224. This driver can also be built as a module. If so, the module
  225. will be called rtc-rs5c372.
  226. config RTC_DRV_ISL1208
  227. tristate "Intersil ISL1208"
  228. help
  229. If you say yes here you get support for the
  230. Intersil ISL1208 RTC chip.
  231. This driver can also be built as a module. If so, the module
  232. will be called rtc-isl1208.
  233. config RTC_DRV_ISL12022
  234. tristate "Intersil ISL12022"
  235. help
  236. If you say yes here you get support for the
  237. Intersil ISL12022 RTC chip.
  238. This driver can also be built as a module. If so, the module
  239. will be called rtc-isl12022.
  240. config RTC_DRV_X1205
  241. tristate "Xicor/Intersil X1205"
  242. help
  243. If you say yes here you get support for the
  244. Xicor/Intersil X1205 RTC chip.
  245. This driver can also be built as a module. If so, the module
  246. will be called rtc-x1205.
  247. config RTC_DRV_PALMAS
  248. tristate "TI Palmas RTC driver"
  249. depends on MFD_PALMAS
  250. help
  251. If you say yes here you get support for the RTC of TI PALMA series PMIC
  252. chips.
  253. This driver can also be built as a module. If so, the module
  254. will be called rtc-palma.
  255. config RTC_DRV_PCF8523
  256. tristate "NXP PCF8523"
  257. help
  258. If you say yes here you get support for the NXP PCF8523 RTC
  259. chips.
  260. This driver can also be built as a module. If so, the module
  261. will be called rtc-pcf8523.
  262. config RTC_DRV_PCF8563
  263. tristate "Philips PCF8563/Epson RTC8564"
  264. help
  265. If you say yes here you get support for the
  266. Philips PCF8563 RTC chip. The Epson RTC8564
  267. should work as well.
  268. This driver can also be built as a module. If so, the module
  269. will be called rtc-pcf8563.
  270. config RTC_DRV_PCF8583
  271. tristate "Philips PCF8583"
  272. help
  273. If you say yes here you get support for the Philips PCF8583
  274. RTC chip found on Acorn RiscPCs. This driver supports the
  275. platform specific method of retrieving the current year from
  276. the RTC's SRAM. It will work on other platforms with the same
  277. chip, but the year will probably have to be tweaked.
  278. This driver can also be built as a module. If so, the module
  279. will be called rtc-pcf8583.
  280. config RTC_DRV_M41T80
  281. tristate "ST M41T62/65/M41T80/81/82/83/84/85/87"
  282. help
  283. If you say Y here you will get support for the ST M41T60
  284. and M41T80 RTC chips series. Currently, the following chips are
  285. supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
  286. M41ST85, and M41ST87.
  287. This driver can also be built as a module. If so, the module
  288. will be called rtc-m41t80.
  289. config RTC_DRV_M41T80_WDT
  290. bool "ST M41T65/M41T80 series RTC watchdog timer"
  291. depends on RTC_DRV_M41T80
  292. help
  293. If you say Y here you will get support for the
  294. watchdog timer in the ST M41T60 and M41T80 RTC chips series.
  295. config RTC_DRV_BQ32K
  296. tristate "TI BQ32000"
  297. help
  298. If you say Y here you will get support for the TI
  299. BQ32000 I2C RTC chip.
  300. This driver can also be built as a module. If so, the module
  301. will be called rtc-bq32k.
  302. config RTC_DRV_DM355EVM
  303. tristate "TI DaVinci DM355 EVM RTC"
  304. depends on MFD_DM355EVM_MSP
  305. help
  306. Supports the RTC firmware in the MSP430 on the DM355 EVM.
  307. config RTC_DRV_TWL92330
  308. boolean "TI TWL92330/Menelaus"
  309. depends on MENELAUS
  310. help
  311. If you say yes here you get support for the RTC on the
  312. TWL92330 "Menelaus" power management chip, used with OMAP2
  313. platforms. The support is integrated with the rest of
  314. the Menelaus driver; it's not separate module.
  315. config RTC_DRV_TWL4030
  316. tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0"
  317. depends on TWL4030_CORE
  318. help
  319. If you say yes here you get support for the RTC on the
  320. TWL4030/TWL5030/TWL6030 family chips, used mostly with OMAP3 platforms.
  321. This driver can also be built as a module. If so, the module
  322. will be called rtc-twl.
  323. config RTC_DRV_TPS6586X
  324. tristate "TI TPS6586X RTC driver"
  325. depends on MFD_TPS6586X
  326. help
  327. TI Power Management IC TPS6586X supports RTC functionality
  328. along with alarm. This driver supports the RTC driver for
  329. the TPS6586X RTC module.
  330. config RTC_DRV_TPS65910
  331. tristate "TI TPS65910 RTC driver"
  332. depends on RTC_CLASS && MFD_TPS65910
  333. help
  334. If you say yes here you get support for the RTC on the
  335. TPS65910 chips.
  336. This driver can also be built as a module. If so, the module
  337. will be called rtc-tps65910.
  338. config RTC_DRV_TPS80031
  339. tristate "TI TPS80031/TPS80032 RTC driver"
  340. depends on MFD_TPS80031
  341. help
  342. TI Power Management IC TPS80031 supports RTC functionality
  343. along with alarm. This driver supports the RTC driver for
  344. the TPS80031 RTC module.
  345. config RTC_DRV_RC5T583
  346. tristate "RICOH 5T583 RTC driver"
  347. depends on MFD_RC5T583
  348. help
  349. If you say yes here you get support for the RTC on the
  350. RICOH 5T583 chips.
  351. This driver can also be built as a module. If so, the module
  352. will be called rtc-rc5t583.
  353. config RTC_DRV_S35390A
  354. tristate "Seiko Instruments S-35390A"
  355. select BITREVERSE
  356. help
  357. If you say yes here you will get support for the Seiko
  358. Instruments S-35390A.
  359. This driver can also be built as a module. If so the module
  360. will be called rtc-s35390a.
  361. config RTC_DRV_FM3130
  362. tristate "Ramtron FM3130"
  363. help
  364. If you say Y here you will get support for the
  365. Ramtron FM3130 RTC chips.
  366. Ramtron FM3130 is a chip with two separate devices inside,
  367. RTC clock and FRAM. This driver provides only RTC functionality.
  368. This driver can also be built as a module. If so the module
  369. will be called rtc-fm3130.
  370. config RTC_DRV_RX8581
  371. tristate "Epson RX-8581"
  372. help
  373. If you say yes here you will get support for the Epson RX-8581.
  374. This driver can also be built as a module. If so the module
  375. will be called rtc-rx8581.
  376. config RTC_DRV_RX8025
  377. tristate "Epson RX-8025SA/NB"
  378. help
  379. If you say yes here you get support for the Epson
  380. RX-8025SA/NB RTC chips.
  381. This driver can also be built as a module. If so, the module
  382. will be called rtc-rx8025.
  383. config RTC_DRV_EM3027
  384. tristate "EM Microelectronic EM3027"
  385. help
  386. If you say yes here you get support for the EM
  387. Microelectronic EM3027 RTC chips.
  388. This driver can also be built as a module. If so, the module
  389. will be called rtc-em3027.
  390. config RTC_DRV_RV3029C2
  391. tristate "Micro Crystal RTC"
  392. help
  393. If you say yes here you get support for the Micro Crystal
  394. RV3029-C2 RTC chips.
  395. This driver can also be built as a module. If so, the module
  396. will be called rtc-rv3029c2.
  397. endif # I2C
  398. comment "SPI RTC drivers"
  399. if SPI_MASTER
  400. config RTC_DRV_M41T93
  401. tristate "ST M41T93"
  402. help
  403. If you say yes here you will get support for the
  404. ST M41T93 SPI RTC chip.
  405. This driver can also be built as a module. If so, the module
  406. will be called rtc-m41t93.
  407. config RTC_DRV_M41T94
  408. tristate "ST M41T94"
  409. help
  410. If you say yes here you will get support for the
  411. ST M41T94 SPI RTC chip.
  412. This driver can also be built as a module. If so, the module
  413. will be called rtc-m41t94.
  414. config RTC_DRV_DS1305
  415. tristate "Dallas/Maxim DS1305/DS1306"
  416. help
  417. Select this driver to get support for the Dallas/Maxim DS1305
  418. and DS1306 real time clock chips. These support a trickle
  419. charger, alarms, and NVRAM in addition to the clock.
  420. This driver can also be built as a module. If so, the module
  421. will be called rtc-ds1305.
  422. config RTC_DRV_DS1390
  423. tristate "Dallas/Maxim DS1390/93/94"
  424. help
  425. If you say yes here you get support for the
  426. Dallas/Maxim DS1390/93/94 chips.
  427. This driver only supports the RTC feature, and not other chip
  428. features such as alarms and trickle charging.
  429. This driver can also be built as a module. If so, the module
  430. will be called rtc-ds1390.
  431. config RTC_DRV_MAX6902
  432. tristate "Maxim MAX6902"
  433. help
  434. If you say yes here you will get support for the
  435. Maxim MAX6902 SPI RTC chip.
  436. This driver can also be built as a module. If so, the module
  437. will be called rtc-max6902.
  438. config RTC_DRV_R9701
  439. tristate "Epson RTC-9701JE"
  440. help
  441. If you say yes here you will get support for the
  442. Epson RTC-9701JE SPI RTC chip.
  443. This driver can also be built as a module. If so, the module
  444. will be called rtc-r9701.
  445. config RTC_DRV_RS5C348
  446. tristate "Ricoh RS5C348A/B"
  447. help
  448. If you say yes here you get support for the
  449. Ricoh RS5C348A and RS5C348B RTC chips.
  450. This driver can also be built as a module. If so, the module
  451. will be called rtc-rs5c348.
  452. config RTC_DRV_DS3234
  453. tristate "Maxim/Dallas DS3234"
  454. help
  455. If you say yes here you get support for the
  456. Maxim/Dallas DS3234 SPI RTC chip.
  457. This driver can also be built as a module. If so, the module
  458. will be called rtc-ds3234.
  459. config RTC_DRV_PCF2123
  460. tristate "NXP PCF2123"
  461. help
  462. If you say yes here you get support for the NXP PCF2123
  463. RTC chip.
  464. This driver can also be built as a module. If so, the module
  465. will be called rtc-pcf2123.
  466. config RTC_DRV_RX4581
  467. tristate "Epson RX-4581"
  468. help
  469. If you say yes here you will get support for the Epson RX-4581.
  470. This driver can also be built as a module. If so the module
  471. will be called rtc-rx4581.
  472. endif # SPI_MASTER
  473. comment "Platform RTC drivers"
  474. # this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
  475. # requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
  476. # global rtc_lock ... it's not yet just another platform_device.
  477. config RTC_DRV_CMOS
  478. tristate "PC-style 'CMOS'"
  479. depends on X86 || ALPHA || ARM || M32R || ATARI || PPC || MIPS || SPARC64
  480. default y if X86
  481. help
  482. Say "yes" here to get direct support for the real time clock
  483. found in every PC or ACPI-based system, and some other boards.
  484. Specifically the original MC146818, compatibles like those in
  485. PC south bridges, the DS12887 or M48T86, some multifunction
  486. or LPC bus chips, and so on.
  487. Your system will need to define the platform device used by
  488. this driver, otherwise it won't be accessible. This means
  489. you can safely enable this driver if you don't know whether
  490. or not your board has this kind of hardware.
  491. This driver can also be built as a module. If so, the module
  492. will be called rtc-cmos.
  493. config RTC_DRV_VRTC
  494. tristate "Virtual RTC for Intel MID platforms"
  495. depends on X86_INTEL_MID
  496. default y if X86_INTEL_MID
  497. help
  498. Say "yes" here to get direct support for the real time clock
  499. found on Moorestown platforms. The VRTC is a emulated RTC that
  500. derives its clock source from a real RTC in the PMIC. The MC146818
  501. style programming interface is mostly conserved, but any
  502. updates are done via IPC calls to the system controller FW.
  503. config RTC_DRV_DS1216
  504. tristate "Dallas DS1216"
  505. depends on SNI_RM
  506. help
  507. If you say yes here you get support for the Dallas DS1216 RTC chips.
  508. config RTC_DRV_DS1286
  509. tristate "Dallas DS1286"
  510. help
  511. If you say yes here you get support for the Dallas DS1286 RTC chips.
  512. config RTC_DRV_DS1302
  513. tristate "Dallas DS1302"
  514. depends on SH_SECUREEDGE5410
  515. help
  516. If you say yes here you get support for the Dallas DS1302 RTC chips.
  517. config RTC_DRV_DS1511
  518. tristate "Dallas DS1511"
  519. help
  520. If you say yes here you get support for the
  521. Dallas DS1511 timekeeping/watchdog chip.
  522. This driver can also be built as a module. If so, the module
  523. will be called rtc-ds1511.
  524. config RTC_DRV_DS1553
  525. tristate "Maxim/Dallas DS1553"
  526. help
  527. If you say yes here you get support for the
  528. Maxim/Dallas DS1553 timekeeping chip.
  529. This driver can also be built as a module. If so, the module
  530. will be called rtc-ds1553.
  531. config RTC_DRV_DS1742
  532. tristate "Maxim/Dallas DS1742/1743"
  533. help
  534. If you say yes here you get support for the
  535. Maxim/Dallas DS1742/1743 timekeeping chip.
  536. This driver can also be built as a module. If so, the module
  537. will be called rtc-ds1742.
  538. config RTC_DRV_DA9052
  539. tristate "Dialog DA9052/DA9053 RTC"
  540. depends on PMIC_DA9052
  541. help
  542. Say y here to support the RTC driver for Dialog Semiconductor
  543. DA9052-BC and DA9053-AA/Bx PMICs.
  544. config RTC_DRV_DA9055
  545. tristate "Dialog Semiconductor DA9055 RTC"
  546. depends on MFD_DA9055
  547. help
  548. If you say yes here you will get support for the
  549. RTC of the Dialog DA9055 PMIC.
  550. This driver can also be built as a module. If so, the module
  551. will be called rtc-da9055
  552. config RTC_DRV_EFI
  553. tristate "EFI RTC"
  554. depends on IA64
  555. help
  556. If you say yes here you will get support for the EFI
  557. Real Time Clock.
  558. This driver can also be built as a module. If so, the module
  559. will be called rtc-efi.
  560. config RTC_DRV_STK17TA8
  561. tristate "Simtek STK17TA8"
  562. help
  563. If you say yes here you get support for the
  564. Simtek STK17TA8 timekeeping chip.
  565. This driver can also be built as a module. If so, the module
  566. will be called rtc-stk17ta8.
  567. config RTC_DRV_M48T86
  568. tristate "ST M48T86/Dallas DS12887"
  569. help
  570. If you say Y here you will get support for the
  571. ST M48T86 and Dallas DS12887 RTC chips.
  572. This driver can also be built as a module. If so, the module
  573. will be called rtc-m48t86.
  574. config RTC_DRV_M48T35
  575. tristate "ST M48T35"
  576. help
  577. If you say Y here you will get support for the
  578. ST M48T35 RTC chip.
  579. This driver can also be built as a module, if so, the module
  580. will be called "rtc-m48t35".
  581. config RTC_DRV_M48T59
  582. tristate "ST M48T59/M48T08/M48T02"
  583. help
  584. If you say Y here you will get support for the
  585. ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
  586. These chips are usually found in Sun SPARC and UltraSPARC
  587. workstations.
  588. This driver can also be built as a module, if so, the module
  589. will be called "rtc-m48t59".
  590. config RTC_DRV_MSM6242
  591. tristate "Oki MSM6242"
  592. help
  593. If you say yes here you get support for the Oki MSM6242
  594. timekeeping chip. It is used in some Amiga models (e.g. A2000).
  595. This driver can also be built as a module. If so, the module
  596. will be called rtc-msm6242.
  597. config RTC_DRV_BQ4802
  598. tristate "TI BQ4802"
  599. help
  600. If you say Y here you will get support for the TI
  601. BQ4802 RTC chip.
  602. This driver can also be built as a module. If so, the module
  603. will be called rtc-bq4802.
  604. config RTC_DRV_RP5C01
  605. tristate "Ricoh RP5C01"
  606. help
  607. If you say yes here you get support for the Ricoh RP5C01
  608. timekeeping chip. It is used in some Amiga models (e.g. A3000
  609. and A4000).
  610. This driver can also be built as a module. If so, the module
  611. will be called rtc-rp5c01.
  612. config RTC_DRV_V3020
  613. tristate "EM Microelectronic V3020"
  614. help
  615. If you say yes here you will get support for the
  616. EM Microelectronic v3020 RTC chip.
  617. This driver can also be built as a module. If so, the module
  618. will be called rtc-v3020.
  619. config RTC_DRV_DS2404
  620. tristate "Dallas DS2404"
  621. help
  622. If you say yes here you get support for the
  623. Dallas DS2404 RTC chip.
  624. This driver can also be built as a module. If so, the module
  625. will be called rtc-ds2404.
  626. config RTC_DRV_WM831X
  627. tristate "Wolfson Microelectronics WM831x RTC"
  628. depends on MFD_WM831X
  629. help
  630. If you say yes here you will get support for the RTC subsystem
  631. of the Wolfson Microelectronics WM831X series PMICs.
  632. This driver can also be built as a module. If so, the module
  633. will be called "rtc-wm831x".
  634. config RTC_DRV_WM8350
  635. tristate "Wolfson Microelectronics WM8350 RTC"
  636. depends on MFD_WM8350
  637. help
  638. If you say yes here you will get support for the RTC subsystem
  639. of the Wolfson Microelectronics WM8350.
  640. This driver can also be built as a module. If so, the module
  641. will be called "rtc-wm8350".
  642. config RTC_DRV_SPEAR
  643. tristate "SPEAR ST RTC"
  644. depends on PLAT_SPEAR
  645. default y
  646. help
  647. If you say Y here you will get support for the RTC found on
  648. spear
  649. config RTC_DRV_PCF50633
  650. depends on MFD_PCF50633
  651. tristate "NXP PCF50633 RTC"
  652. help
  653. If you say yes here you get support for the RTC subsystem of the
  654. NXP PCF50633 used in embedded systems.
  655. config RTC_DRV_AB3100
  656. tristate "ST-Ericsson AB3100 RTC"
  657. depends on AB3100_CORE
  658. default y if AB3100_CORE
  659. help
  660. Select this to enable the ST-Ericsson AB3100 Mixed Signal IC RTC
  661. support. This chip contains a battery- and capacitor-backed RTC.
  662. config RTC_DRV_AB8500
  663. tristate "ST-Ericsson AB8500 RTC"
  664. depends on AB8500_CORE
  665. select RTC_INTF_DEV
  666. select RTC_INTF_DEV_UIE_EMUL
  667. help
  668. Select this to enable the ST-Ericsson AB8500 power management IC RTC
  669. support. This chip contains a battery- and capacitor-backed RTC.
  670. config RTC_DRV_NUC900
  671. tristate "NUC910/NUC920 RTC driver"
  672. depends on ARCH_W90X900
  673. help
  674. If you say yes here you get support for the RTC subsystem of the
  675. NUC910/NUC920 used in embedded systems.
  676. comment "on-CPU RTC drivers"
  677. config RTC_DRV_DAVINCI
  678. tristate "TI DaVinci RTC"
  679. depends on ARCH_DAVINCI_DM365
  680. help
  681. If you say yes here you get support for the RTC on the
  682. DaVinci platforms (DM365).
  683. This driver can also be built as a module. If so, the module
  684. will be called rtc-davinci.
  685. config RTC_DRV_IMXDI
  686. tristate "Freescale IMX DryIce Real Time Clock"
  687. depends on ARCH_MXC
  688. help
  689. Support for Freescale IMX DryIce RTC
  690. This driver can also be built as a module, if so, the module
  691. will be called "rtc-imxdi".
  692. config RTC_DRV_OMAP
  693. tristate "TI OMAP1"
  694. depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730 || ARCH_DAVINCI_DA8XX || SOC_AM33XX
  695. help
  696. Say "yes" here to support the on chip real time clock
  697. present on TI OMAP1, AM33xx and DA8xx/OMAP-L13x.
  698. This driver can also be built as a module, if so, module
  699. will be called rtc-omap.
  700. config HAVE_S3C_RTC
  701. bool
  702. help
  703. This will include RTC support for Samsung SoCs. If
  704. you want to include RTC support for any machine, kindly
  705. select this in the respective mach-XXXX/Kconfig file.
  706. config RTC_DRV_S3C
  707. tristate "Samsung S3C series SoC RTC"
  708. depends on ARCH_S3C64XX || HAVE_S3C_RTC
  709. help
  710. RTC (Realtime Clock) driver for the clock inbuilt into the
  711. Samsung S3C24XX series of SoCs. This can provide periodic
  712. interrupt rates from 1Hz to 64Hz for user programs, and
  713. wakeup from Alarm.
  714. The driver currently supports the common features on all the
  715. S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
  716. and S3C2442.
  717. This driver can also be build as a module. If so, the module
  718. will be called rtc-s3c.
  719. config RTC_DRV_EP93XX
  720. tristate "Cirrus Logic EP93XX"
  721. depends on ARCH_EP93XX
  722. help
  723. If you say yes here you get support for the
  724. RTC embedded in the Cirrus Logic EP93XX processors.
  725. This driver can also be built as a module. If so, the module
  726. will be called rtc-ep93xx.
  727. config RTC_DRV_SA1100
  728. tristate "SA11x0/PXA2xx/PXA910"
  729. depends on ARCH_SA1100 || ARCH_PXA || ARCH_MMP
  730. help
  731. If you say Y here you will get access to the real time clock
  732. built into your SA11x0 or PXA2xx CPU.
  733. To compile this driver as a module, choose M here: the
  734. module will be called rtc-sa1100.
  735. config RTC_DRV_SH
  736. tristate "SuperH On-Chip RTC"
  737. depends on SUPERH && HAVE_CLK
  738. help
  739. Say Y here to enable support for the on-chip RTC found in
  740. most SuperH processors.
  741. To compile this driver as a module, choose M here: the
  742. module will be called rtc-sh.
  743. config RTC_DRV_VR41XX
  744. tristate "NEC VR41XX"
  745. depends on CPU_VR41XX
  746. help
  747. If you say Y here you will get access to the real time clock
  748. built into your NEC VR41XX CPU.
  749. To compile this driver as a module, choose M here: the
  750. module will be called rtc-vr41xx.
  751. config RTC_DRV_PL030
  752. tristate "ARM AMBA PL030 RTC"
  753. depends on ARM_AMBA
  754. help
  755. If you say Y here you will get access to ARM AMBA
  756. PrimeCell PL030 RTC found on certain ARM SOCs.
  757. To compile this driver as a module, choose M here: the
  758. module will be called rtc-pl030.
  759. config RTC_DRV_PL031
  760. tristate "ARM AMBA PL031 RTC"
  761. depends on ARM_AMBA
  762. help
  763. If you say Y here you will get access to ARM AMBA
  764. PrimeCell PL031 RTC found on certain ARM SOCs.
  765. To compile this driver as a module, choose M here: the
  766. module will be called rtc-pl031.
  767. config RTC_DRV_AT32AP700X
  768. tristate "AT32AP700X series RTC"
  769. depends on PLATFORM_AT32AP
  770. help
  771. Driver for the internal RTC (Realtime Clock) on Atmel AVR32
  772. AT32AP700x family processors.
  773. config RTC_DRV_AT91RM9200
  774. tristate "AT91RM9200 or some AT91SAM9 RTC"
  775. depends on ARCH_AT91
  776. help
  777. Driver for the internal RTC (Realtime Clock) module found on
  778. Atmel AT91RM9200's and some AT91SAM9 chips. On AT91SAM9 chips
  779. this is powered by the backup power supply.
  780. config RTC_DRV_AT91SAM9
  781. tristate "AT91SAM9x/AT91CAP9 RTT as RTC"
  782. depends on ARCH_AT91 && !(ARCH_AT91RM9200 || ARCH_AT91X40)
  783. help
  784. RTC driver for the Atmel AT91SAM9x and AT91CAP9 internal RTT
  785. (Real Time Timer). These timers are powered by the backup power
  786. supply (such as a small coin cell battery), but do not need to
  787. be used as RTCs.
  788. (On AT91SAM9rl and AT91SAM9G45 chips you probably want to use the
  789. dedicated RTC module and leave the RTT available for other uses.)
  790. config RTC_DRV_AT91SAM9_RTT
  791. int
  792. range 0 1
  793. default 0
  794. prompt "RTT module Number" if ARCH_AT91SAM9263
  795. depends on RTC_DRV_AT91SAM9
  796. help
  797. More than one RTT module is available. You can choose which
  798. one will be used as an RTC. The default of zero is normally
  799. OK to use, though some systems use that for non-RTC purposes.
  800. config RTC_DRV_AT91SAM9_GPBR
  801. int
  802. range 0 3 if !ARCH_AT91SAM9263
  803. range 0 15 if ARCH_AT91SAM9263
  804. default 0
  805. prompt "Backup Register Number"
  806. depends on RTC_DRV_AT91SAM9
  807. help
  808. The RTC driver needs to use one of the General Purpose Backup
  809. Registers (GPBRs) as well as the RTT. You can choose which one
  810. will be used. The default of zero is normally OK to use, but
  811. on some systems other software needs to use that register.
  812. config RTC_DRV_AU1XXX
  813. tristate "Au1xxx Counter0 RTC support"
  814. depends on MIPS_ALCHEMY
  815. help
  816. This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
  817. counter) to be used as a RTC.
  818. This driver can also be built as a module. If so, the module
  819. will be called rtc-au1xxx.
  820. config RTC_DRV_BFIN
  821. tristate "Blackfin On-Chip RTC"
  822. depends on BLACKFIN && !BF561
  823. help
  824. If you say yes here you will get support for the
  825. Blackfin On-Chip Real Time Clock.
  826. This driver can also be built as a module. If so, the module
  827. will be called rtc-bfin.
  828. config RTC_DRV_RS5C313
  829. tristate "Ricoh RS5C313"
  830. depends on SH_LANDISK
  831. help
  832. If you say yes here you get support for the Ricoh RS5C313 RTC chips.
  833. config RTC_DRV_GENERIC
  834. tristate "Generic RTC support"
  835. # Please consider writing a new RTC driver instead of using the generic
  836. # RTC abstraction
  837. depends on PARISC || M68K || PPC || SUPERH32
  838. help
  839. Say Y or M here to enable RTC support on systems using the generic
  840. RTC abstraction. If you do not know what you are doing, you should
  841. just say Y.
  842. config RTC_DRV_PXA
  843. tristate "PXA27x/PXA3xx"
  844. depends on ARCH_PXA
  845. help
  846. If you say Y here you will get access to the real time clock
  847. built into your PXA27x or PXA3xx CPU.
  848. This RTC driver uses PXA RTC registers available since pxa27x
  849. series (RDxR, RYxR) instead of legacy RCNR, RTAR.
  850. config RTC_DRV_VT8500
  851. tristate "VIA/WonderMedia 85xx SoC RTC"
  852. depends on ARCH_VT8500
  853. help
  854. If you say Y here you will get access to the real time clock
  855. built into your VIA VT8500 SoC or its relatives.
  856. config RTC_DRV_SUN4V
  857. bool "SUN4V Hypervisor RTC"
  858. depends on SPARC64
  859. help
  860. If you say Y here you will get support for the Hypervisor
  861. based RTC on SUN4V systems.
  862. config RTC_DRV_STARFIRE
  863. bool "Starfire RTC"
  864. depends on SPARC64
  865. help
  866. If you say Y here you will get support for the RTC found on
  867. Starfire systems.
  868. config RTC_DRV_TX4939
  869. tristate "TX4939 SoC"
  870. depends on SOC_TX4939
  871. help
  872. Driver for the internal RTC (Realtime Clock) module found on
  873. Toshiba TX4939 SoC.
  874. config RTC_DRV_MV
  875. tristate "Marvell SoC RTC"
  876. depends on ARCH_KIRKWOOD || ARCH_DOVE || ARCH_MVEBU
  877. help
  878. If you say yes here you will get support for the in-chip RTC
  879. that can be found in some of Marvell's SoC devices, such as
  880. the Kirkwood 88F6281 and 88F6192.
  881. This driver can also be built as a module. If so, the module
  882. will be called rtc-mv.
  883. config RTC_DRV_PS3
  884. tristate "PS3 RTC"
  885. depends on PPC_PS3
  886. help
  887. If you say yes here you will get support for the RTC on PS3.
  888. This driver can also be built as a module. If so, the module
  889. will be called rtc-ps3.
  890. config RTC_DRV_COH901331
  891. tristate "ST-Ericsson COH 901 331 RTC"
  892. depends on ARCH_U300
  893. help
  894. If you say Y here you will get access to ST-Ericsson
  895. COH 901 331 RTC clock found in some ST-Ericsson Mobile
  896. Platforms.
  897. This driver can also be built as a module. If so, the module
  898. will be called "rtc-coh901331".
  899. config RTC_DRV_STMP
  900. tristate "Freescale STMP3xxx/i.MX23/i.MX28 RTC"
  901. depends on ARCH_MXS
  902. help
  903. If you say yes here you will get support for the onboard
  904. STMP3xxx/i.MX23/i.MX28 RTC.
  905. This driver can also be built as a module. If so, the module
  906. will be called rtc-stmp3xxx.
  907. config RTC_DRV_PCAP
  908. tristate "PCAP RTC"
  909. depends on EZX_PCAP
  910. help
  911. If you say Y here you will get support for the RTC found on
  912. the PCAP2 ASIC used on some Motorola phones.
  913. config RTC_DRV_MC13XXX
  914. depends on MFD_MC13XXX
  915. tristate "Freescale MC13xxx RTC"
  916. help
  917. This enables support for the RTCs found on Freescale's PMICs
  918. MC13783 and MC13892.
  919. config RTC_DRV_MPC5121
  920. tristate "Freescale MPC5121 built-in RTC"
  921. depends on PPC_MPC512x || PPC_MPC52xx
  922. help
  923. If you say yes here you will get support for the
  924. built-in RTC on MPC5121 or on MPC5200.
  925. This driver can also be built as a module. If so, the module
  926. will be called rtc-mpc5121.
  927. config RTC_DRV_JZ4740
  928. tristate "Ingenic JZ4740 SoC"
  929. depends on MACH_JZ4740
  930. help
  931. If you say yes here you get support for the Ingenic JZ4740 SoC RTC
  932. controller.
  933. This driver can also be buillt as a module. If so, the module
  934. will be called rtc-jz4740.
  935. config RTC_DRV_LPC32XX
  936. depends on ARCH_LPC32XX
  937. tristate "NXP LPC32XX RTC"
  938. help
  939. This enables support for the NXP RTC in the LPC32XX
  940. This driver can also be buillt as a module. If so, the module
  941. will be called rtc-lpc32xx.
  942. config RTC_DRV_PM8XXX
  943. tristate "Qualcomm PMIC8XXX RTC"
  944. depends on MFD_PM8XXX
  945. help
  946. If you say yes here you get support for the
  947. Qualcomm PMIC8XXX RTC.
  948. To compile this driver as a module, choose M here: the
  949. module will be called rtc-pm8xxx.
  950. config RTC_DRV_TEGRA
  951. tristate "NVIDIA Tegra Internal RTC driver"
  952. depends on ARCH_TEGRA
  953. help
  954. If you say yes here you get support for the
  955. Tegra 200 series internal RTC module.
  956. This drive can also be built as a module. If so, the module
  957. will be called rtc-tegra.
  958. config RTC_DRV_TILE
  959. tristate "Tilera hypervisor RTC support"
  960. depends on TILE
  961. help
  962. Enable support for the Linux driver side of the Tilera
  963. hypervisor's real-time clock interface.
  964. config RTC_DRV_PUV3
  965. tristate "PKUnity v3 RTC support"
  966. depends on ARCH_PUV3
  967. help
  968. This enables support for the RTC in the PKUnity-v3 SoCs.
  969. This drive can also be built as a module. If so, the module
  970. will be called rtc-puv3.
  971. config RTC_DRV_LOONGSON1
  972. tristate "loongson1 RTC support"
  973. depends on MACH_LOONGSON1
  974. help
  975. This is a driver for the loongson1 on-chip Counter0 (Time-Of-Year
  976. counter) to be used as a RTC.
  977. This driver can also be built as a module. If so, the module
  978. will be called rtc-ls1x.
  979. config RTC_DRV_MXC
  980. tristate "Freescale MXC Real Time Clock"
  981. depends on ARCH_MXC
  982. help
  983. If you say yes here you get support for the Freescale MXC
  984. RTC module.
  985. This driver can also be built as a module, if so, the module
  986. will be called "rtc-mxc".
  987. config RTC_DRV_SNVS
  988. tristate "Freescale SNVS RTC support"
  989. depends on HAS_IOMEM
  990. depends on OF
  991. help
  992. If you say yes here you get support for the Freescale SNVS
  993. Low Power (LP) RTC module.
  994. This driver can also be built as a module, if so, the module
  995. will be called "rtc-snvs".
  996. comment "HID Sensor RTC drivers"
  997. config RTC_DRV_HID_SENSOR_TIME
  998. tristate "HID Sensor Time"
  999. depends on USB_HID
  1000. select IIO
  1001. select HID_SENSOR_HUB
  1002. select HID_SENSOR_IIO_COMMON
  1003. help
  1004. Say yes here to build support for the HID Sensors of type Time.
  1005. This drivers makes such sensors available as RTCs.
  1006. If this driver is compiled as a module, it will be named
  1007. rtc-hid-sensor-time.
  1008. endif # RTC_CLASS