Kconfig 29 KB

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