Kconfig 39 KB

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