Kconfig 33 KB

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