Kconfig 32 KB

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