Kconfig 33 KB

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