Kconfig 33 KB

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