Kconfig 36 KB

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