Kconfig 34 KB

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