Kconfig 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. #
  2. # RTC class/drivers configuration
  3. #
  4. config RTC_LIB
  5. tristate
  6. menuconfig RTC_CLASS
  7. tristate "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. This driver can also be built as a module. If so, the module
  16. will be called rtc-core.
  17. if RTC_CLASS
  18. config RTC_HCTOSYS
  19. bool "Set system time from RTC on startup and resume"
  20. depends on RTC_CLASS = y
  21. default y
  22. help
  23. If you say yes here, the system time (wall clock) will be set using
  24. the value read from a specified RTC device. This is useful to avoid
  25. unnecessary fsck runs at boot time, and to network better.
  26. config RTC_HCTOSYS_DEVICE
  27. string "RTC used to set the system time"
  28. depends on RTC_HCTOSYS = y
  29. default "rtc0"
  30. help
  31. The RTC device that will be used to (re)initialize the system
  32. clock, usually rtc0. Initialization is done when the system
  33. starts up, and when it resumes from a low power state. This
  34. device should record time in UTC, since the kernel won't do
  35. timezone correction.
  36. The driver for this RTC device must be loaded before late_initcall
  37. functions run, so it must usually be statically linked.
  38. This clock should be battery-backed, so that it reads the correct
  39. time when the system boots from a power-off state. Otherwise, your
  40. system will need an external clock source (like an NTP server).
  41. If the clock you specify here is not battery backed, it may still
  42. be useful to reinitialize system time when resuming from system
  43. sleep states. Do not specify an RTC here unless it stays powered
  44. during all this system's supported sleep states.
  45. config RTC_DEBUG
  46. bool "RTC debug support"
  47. depends on RTC_CLASS = y
  48. help
  49. Say yes here to enable debugging support in the RTC framework
  50. and individual RTC drivers.
  51. comment "RTC interfaces"
  52. config RTC_INTF_SYSFS
  53. boolean "/sys/class/rtc/rtcN (sysfs)"
  54. depends on SYSFS
  55. default RTC_CLASS
  56. help
  57. Say yes here if you want to use your RTCs using sysfs interfaces,
  58. /sys/class/rtc/rtc0 through /sys/.../rtcN.
  59. If unsure, say Y.
  60. config RTC_INTF_PROC
  61. boolean "/proc/driver/rtc (procfs for rtc0)"
  62. depends on PROC_FS
  63. default RTC_CLASS
  64. help
  65. Say yes here if you want to use your first RTC through the proc
  66. interface, /proc/driver/rtc. Other RTCs will not be available
  67. through that API.
  68. If unsure, say Y.
  69. config RTC_INTF_DEV
  70. boolean "/dev/rtcN (character devices)"
  71. default RTC_CLASS
  72. help
  73. Say yes here if you want to use your RTCs using the /dev
  74. interfaces, which "udev" sets up as /dev/rtc0 through
  75. /dev/rtcN.
  76. You may want to set up a symbolic link so one of these
  77. can be accessed as /dev/rtc, which is a name
  78. expected by "hwclock" and some other programs. Recent
  79. versions of "udev" are known to set up the symlink for you.
  80. If unsure, say Y.
  81. config RTC_INTF_DEV_UIE_EMUL
  82. bool "RTC UIE emulation on dev interface"
  83. depends on RTC_INTF_DEV
  84. help
  85. Provides an emulation for RTC_UIE if the underlying rtc chip
  86. driver does not expose RTC_UIE ioctls. Those requests generate
  87. once-per-second update interrupts, used for synchronization.
  88. The emulation code will read the time from the hardware
  89. clock several times per second, please enable this option
  90. only if you know that you really need it.
  91. config RTC_DRV_TEST
  92. tristate "Test driver/device"
  93. help
  94. If you say yes here you get support for the
  95. RTC test driver. It's a software RTC which can be
  96. used to test the RTC subsystem APIs. It gets
  97. the time from the system clock.
  98. You want this driver only if you are doing development
  99. on the RTC subsystem. Please read the source code
  100. for further details.
  101. This driver can also be built as a module. If so, the module
  102. will be called rtc-test.
  103. comment "I2C RTC drivers"
  104. depends on I2C
  105. if I2C
  106. config RTC_DRV_DS1307
  107. tristate "Dallas/Maxim DS1307/37/38/39/40, ST M41T00"
  108. help
  109. If you say yes here you get support for various compatible RTC
  110. chips (often with battery backup) connected with I2C. This driver
  111. should handle DS1307, DS1337, DS1338, DS1339, DS1340, ST M41T00,
  112. and probably other chips. In some cases the RTC must already
  113. have been initialized (by manufacturing or a bootloader).
  114. The first seven registers on these chips hold an RTC, and other
  115. registers may add features such as NVRAM, a trickle charger for
  116. the RTC/NVRAM backup power, and alarms. NVRAM is visible in
  117. sysfs, but other chip features may not be available.
  118. This driver can also be built as a module. If so, the module
  119. will be called rtc-ds1307.
  120. config RTC_DRV_DS1374
  121. tristate "Dallas/Maxim DS1374"
  122. depends on RTC_CLASS && I2C
  123. help
  124. If you say yes here you get support for Dallas Semiconductor
  125. DS1374 real-time clock chips. If an interrupt is associated
  126. with the device, the alarm functionality is supported.
  127. This driver can also be built as a module. If so, the module
  128. will be called rtc-ds1374.
  129. config RTC_DRV_DS1672
  130. tristate "Dallas/Maxim DS1672"
  131. help
  132. If you say yes here you get support for the
  133. Dallas/Maxim DS1672 timekeeping chip.
  134. This driver can also be built as a module. If so, the module
  135. will be called rtc-ds1672.
  136. config RTC_DRV_MAX6900
  137. tristate "Maxim MAX6900"
  138. help
  139. If you say yes here you will get support for the
  140. Maxim MAX6900 I2C RTC chip.
  141. This driver can also be built as a module. If so, the module
  142. will be called rtc-max6900.
  143. config RTC_DRV_RS5C372
  144. tristate "Ricoh R2025S/D, RS5C372A/B, RV5C386, RV5C387A"
  145. help
  146. If you say yes here you get support for the
  147. Ricoh R2025S/D, RS5C372A, RS5C372B, RV5C386, and RV5C387A RTC chips.
  148. This driver can also be built as a module. If so, the module
  149. will be called rtc-rs5c372.
  150. config RTC_DRV_ISL1208
  151. tristate "Intersil ISL1208"
  152. help
  153. If you say yes here you get support for the
  154. Intersil ISL1208 RTC chip.
  155. This driver can also be built as a module. If so, the module
  156. will be called rtc-isl1208.
  157. config RTC_DRV_X1205
  158. tristate "Xicor/Intersil X1205"
  159. help
  160. If you say yes here you get support for the
  161. Xicor/Intersil X1205 RTC chip.
  162. This driver can also be built as a module. If so, the module
  163. will be called rtc-x1205.
  164. config RTC_DRV_PCF8563
  165. tristate "Philips PCF8563/Epson RTC8564"
  166. help
  167. If you say yes here you get support for the
  168. Philips PCF8563 RTC chip. The Epson RTC8564
  169. should work as well.
  170. This driver can also be built as a module. If so, the module
  171. will be called rtc-pcf8563.
  172. config RTC_DRV_PCF8583
  173. tristate "Philips PCF8583"
  174. help
  175. If you say yes here you get support for the Philips PCF8583
  176. RTC chip found on Acorn RiscPCs. This driver supports the
  177. platform specific method of retrieving the current year from
  178. the RTC's SRAM. It will work on other platforms with the same
  179. chip, but the year will probably have to be tweaked.
  180. This driver can also be built as a module. If so, the module
  181. will be called rtc-pcf8583.
  182. config RTC_DRV_M41T80
  183. tristate "ST M41T65/M41T80/81/82/83/84/85/87"
  184. help
  185. If you say Y here you will get support for the ST M41T60
  186. and M41T80 RTC chips series. Currently, the following chips are
  187. supported: M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
  188. M41ST85, and M41ST87.
  189. This driver can also be built as a module. If so, the module
  190. will be called rtc-m41t80.
  191. config RTC_DRV_M41T80_WDT
  192. bool "ST M41T65/M41T80 series RTC watchdog timer"
  193. depends on RTC_DRV_M41T80
  194. help
  195. If you say Y here you will get support for the
  196. watchdog timer in the ST M41T60 and M41T80 RTC chips series.
  197. config RTC_DRV_TWL92330
  198. boolean "TI TWL92330/Menelaus"
  199. depends on MENELAUS
  200. help
  201. If you say yes here you get support for the RTC on the
  202. TWL92330 "Menelaus" power management chip, used with OMAP2
  203. platforms. The support is integrated with the rest of
  204. the Menelaus driver; it's not separate module.
  205. config RTC_DRV_TWL4030
  206. tristate "TI TWL4030/TWL5030/TPS659x0"
  207. depends on RTC_CLASS && TWL4030_CORE
  208. help
  209. If you say yes here you get support for the RTC on the
  210. TWL4030 family chips, used mostly with OMAP3 platforms.
  211. This driver can also be built as a module. If so, the module
  212. will be called rtc-twl4030.
  213. config RTC_DRV_S35390A
  214. tristate "Seiko Instruments S-35390A"
  215. select BITREVERSE
  216. help
  217. If you say yes here you will get support for the Seiko
  218. Instruments S-35390A.
  219. This driver can also be built as a module. If so the module
  220. will be called rtc-s35390a.
  221. config RTC_DRV_FM3130
  222. tristate "Ramtron FM3130"
  223. help
  224. If you say Y here you will get support for the
  225. Ramtron FM3130 RTC chips.
  226. Ramtron FM3130 is a chip with two separate devices inside,
  227. RTC clock and FRAM. This driver provides only RTC functionality.
  228. This driver can also be built as a module. If so the module
  229. will be called rtc-fm3130.
  230. config RTC_DRV_RX8581
  231. tristate "Epson RX-8581"
  232. help
  233. If you say yes here you will get support for the Epson RX-8581.
  234. This driver can also be built as a module. If so the module
  235. will be called rtc-rx8581.
  236. endif # I2C
  237. comment "SPI RTC drivers"
  238. if SPI_MASTER
  239. config RTC_DRV_M41T94
  240. tristate "ST M41T94"
  241. help
  242. If you say yes here you will get support for the
  243. ST M41T94 SPI RTC chip.
  244. This driver can also be built as a module. If so, the module
  245. will be called rtc-m41t94.
  246. config RTC_DRV_DS1305
  247. tristate "Dallas/Maxim DS1305/DS1306"
  248. help
  249. Select this driver to get support for the Dallas/Maxim DS1305
  250. and DS1306 real time clock chips. These support a trickle
  251. charger, alarms, and NVRAM in addition to the clock.
  252. This driver can also be built as a module. If so, the module
  253. will be called rtc-ds1305.
  254. config RTC_DRV_DS1390
  255. tristate "Dallas/Maxim DS1390/93/94"
  256. help
  257. If you say yes here you get support for the
  258. Dallas/Maxim DS1390/93/94 chips.
  259. This driver only supports the RTC feature, and not other chip
  260. features such as alarms and trickle charging.
  261. This driver can also be built as a module. If so, the module
  262. will be called rtc-ds1390.
  263. config RTC_DRV_MAX6902
  264. tristate "Maxim MAX6902"
  265. help
  266. If you say yes here you will get support for the
  267. Maxim MAX6902 SPI RTC chip.
  268. This driver can also be built as a module. If so, the module
  269. will be called rtc-max6902.
  270. config RTC_DRV_R9701
  271. tristate "Epson RTC-9701JE"
  272. help
  273. If you say yes here you will get support for the
  274. Epson RTC-9701JE SPI RTC chip.
  275. This driver can also be built as a module. If so, the module
  276. will be called rtc-r9701.
  277. config RTC_DRV_RS5C348
  278. tristate "Ricoh RS5C348A/B"
  279. help
  280. If you say yes here you get support for the
  281. Ricoh RS5C348A and RS5C348B RTC chips.
  282. This driver can also be built as a module. If so, the module
  283. will be called rtc-rs5c348.
  284. config RTC_DRV_DS3234
  285. tristate "Maxim/Dallas DS3234"
  286. help
  287. If you say yes here you get support for the
  288. Maxim/Dallas DS3234 SPI RTC chip.
  289. This driver can also be built as a module. If so, the module
  290. will be called rtc-ds3234.
  291. endif # SPI_MASTER
  292. comment "Platform RTC drivers"
  293. # this 'CMOS' RTC driver is arch dependent because <asm-generic/rtc.h>
  294. # requires <asm/mc146818rtc.h> defining CMOS_READ/CMOS_WRITE, and a
  295. # global rtc_lock ... it's not yet just another platform_device.
  296. config RTC_DRV_CMOS
  297. tristate "PC-style 'CMOS'"
  298. depends on X86 || ALPHA || ARM || M32R || ATARI || PPC || MIPS || SPARC64
  299. default y if X86
  300. help
  301. Say "yes" here to get direct support for the real time clock
  302. found in every PC or ACPI-based system, and some other boards.
  303. Specifically the original MC146818, compatibles like those in
  304. PC south bridges, the DS12887 or M48T86, some multifunction
  305. or LPC bus chips, and so on.
  306. Your system will need to define the platform device used by
  307. this driver, otherwise it won't be accessible. This means
  308. you can safely enable this driver if you don't know whether
  309. or not your board has this kind of hardware.
  310. This driver can also be built as a module. If so, the module
  311. will be called rtc-cmos.
  312. config RTC_DRV_DS1216
  313. tristate "Dallas DS1216"
  314. depends on SNI_RM
  315. help
  316. If you say yes here you get support for the Dallas DS1216 RTC chips.
  317. config RTC_DRV_DS1286
  318. tristate "Dallas DS1286"
  319. help
  320. If you say yes here you get support for the Dallas DS1286 RTC chips.
  321. config RTC_DRV_DS1302
  322. tristate "Dallas DS1302"
  323. depends on SH_SECUREEDGE5410
  324. help
  325. If you say yes here you get support for the Dallas DS1302 RTC chips.
  326. config RTC_DRV_DS1511
  327. tristate "Dallas DS1511"
  328. depends on RTC_CLASS
  329. help
  330. If you say yes here you get support for the
  331. Dallas DS1511 timekeeping/watchdog chip.
  332. This driver can also be built as a module. If so, the module
  333. will be called rtc-ds1511.
  334. config RTC_DRV_DS1553
  335. tristate "Maxim/Dallas DS1553"
  336. help
  337. If you say yes here you get support for the
  338. Maxim/Dallas DS1553 timekeeping chip.
  339. This driver can also be built as a module. If so, the module
  340. will be called rtc-ds1553.
  341. config RTC_DRV_DS1742
  342. tristate "Maxim/Dallas DS1742/1743"
  343. help
  344. If you say yes here you get support for the
  345. Maxim/Dallas DS1742/1743 timekeeping chip.
  346. This driver can also be built as a module. If so, the module
  347. will be called rtc-ds1742.
  348. config RTC_DRV_STK17TA8
  349. tristate "Simtek STK17TA8"
  350. depends on RTC_CLASS
  351. help
  352. If you say yes here you get support for the
  353. Simtek STK17TA8 timekeeping chip.
  354. This driver can also be built as a module. If so, the module
  355. will be called rtc-stk17ta8.
  356. config RTC_DRV_M48T86
  357. tristate "ST M48T86/Dallas DS12887"
  358. help
  359. If you say Y here you will get support for the
  360. ST M48T86 and Dallas DS12887 RTC chips.
  361. This driver can also be built as a module. If so, the module
  362. will be called rtc-m48t86.
  363. config RTC_DRV_M48T35
  364. tristate "ST M48T35"
  365. help
  366. If you say Y here you will get support for the
  367. ST M48T35 RTC chip.
  368. This driver can also be built as a module, if so, the module
  369. will be called "rtc-m48t35".
  370. config RTC_DRV_M48T59
  371. tristate "ST M48T59/M48T08/M48T02"
  372. help
  373. If you say Y here you will get support for the
  374. ST M48T59 RTC chip and compatible ST M48T08 and M48T02.
  375. These chips are usually found in Sun SPARC and UltraSPARC
  376. workstations.
  377. This driver can also be built as a module, if so, the module
  378. will be called "rtc-m48t59".
  379. config RTC_DRV_BQ4802
  380. tristate "TI BQ4802"
  381. help
  382. If you say Y here you will get support for the TI
  383. BQ4802 RTC chip.
  384. This driver can also be built as a module. If so, the module
  385. will be called rtc-bq4802.
  386. config RTC_DRV_V3020
  387. tristate "EM Microelectronic V3020"
  388. help
  389. If you say yes here you will get support for the
  390. EM Microelectronic v3020 RTC chip.
  391. This driver can also be built as a module. If so, the module
  392. will be called rtc-v3020.
  393. config RTC_DRV_WM8350
  394. tristate "Wolfson Microelectronics WM8350 RTC"
  395. depends on MFD_WM8350
  396. help
  397. If you say yes here you will get support for the RTC subsystem
  398. of the Wolfson Microelectronics WM8350.
  399. This driver can also be built as a module. If so, the module
  400. will be called "rtc-wm8350".
  401. config RTC_DRV_PCF50633
  402. depends on MFD_PCF50633
  403. tristate "NXP PCF50633 RTC"
  404. help
  405. If you say yes here you get support for the RTC subsystem of the
  406. NXP PCF50633 used in embedded systems.
  407. comment "on-CPU RTC drivers"
  408. config RTC_DRV_OMAP
  409. tristate "TI OMAP1"
  410. depends on ARCH_OMAP15XX || ARCH_OMAP16XX || ARCH_OMAP730
  411. help
  412. Say "yes" here to support the real time clock on TI OMAP1 chips.
  413. This driver can also be built as a module called rtc-omap.
  414. config RTC_DRV_S3C
  415. tristate "Samsung S3C series SoC RTC"
  416. depends on ARCH_S3C2410
  417. help
  418. RTC (Realtime Clock) driver for the clock inbuilt into the
  419. Samsung S3C24XX series of SoCs. This can provide periodic
  420. interrupt rates from 1Hz to 64Hz for user programs, and
  421. wakeup from Alarm.
  422. The driver currently supports the common features on all the
  423. S3C24XX range, such as the S3C2410, S3C2412, S3C2413, S3C2440
  424. and S3C2442.
  425. This driver can also be build as a module. If so, the module
  426. will be called rtc-s3c.
  427. config RTC_DRV_EP93XX
  428. tristate "Cirrus Logic EP93XX"
  429. depends on ARCH_EP93XX
  430. help
  431. If you say yes here you get support for the
  432. RTC embedded in the Cirrus Logic EP93XX processors.
  433. This driver can also be built as a module. If so, the module
  434. will be called rtc-ep93xx.
  435. config RTC_DRV_SA1100
  436. tristate "SA11x0/PXA2xx"
  437. depends on ARCH_SA1100 || ARCH_PXA
  438. help
  439. If you say Y here you will get access to the real time clock
  440. built into your SA11x0 or PXA2xx CPU.
  441. To compile this driver as a module, choose M here: the
  442. module will be called rtc-sa1100.
  443. config RTC_DRV_SH
  444. tristate "SuperH On-Chip RTC"
  445. depends on RTC_CLASS && SUPERH
  446. help
  447. Say Y here to enable support for the on-chip RTC found in
  448. most SuperH processors.
  449. To compile this driver as a module, choose M here: the
  450. module will be called rtc-sh.
  451. config RTC_DRV_VR41XX
  452. tristate "NEC VR41XX"
  453. depends on CPU_VR41XX
  454. help
  455. If you say Y here you will get access to the real time clock
  456. built into your NEC VR41XX CPU.
  457. To compile this driver as a module, choose M here: the
  458. module will be called rtc-vr41xx.
  459. config RTC_DRV_PL030
  460. tristate "ARM AMBA PL030 RTC"
  461. depends on ARM_AMBA
  462. help
  463. If you say Y here you will get access to ARM AMBA
  464. PrimeCell PL030 RTC found on certain ARM SOCs.
  465. To compile this driver as a module, choose M here: the
  466. module will be called rtc-pl030.
  467. config RTC_DRV_PL031
  468. tristate "ARM AMBA PL031 RTC"
  469. depends on ARM_AMBA
  470. help
  471. If you say Y here you will get access to ARM AMBA
  472. PrimeCell PL031 RTC found on certain ARM SOCs.
  473. To compile this driver as a module, choose M here: the
  474. module will be called rtc-pl031.
  475. config RTC_DRV_AT32AP700X
  476. tristate "AT32AP700X series RTC"
  477. depends on PLATFORM_AT32AP
  478. help
  479. Driver for the internal RTC (Realtime Clock) on Atmel AVR32
  480. AT32AP700x family processors.
  481. config RTC_DRV_AT91RM9200
  482. tristate "AT91RM9200 or AT91SAM9RL"
  483. depends on ARCH_AT91RM9200 || ARCH_AT91SAM9RL
  484. help
  485. Driver for the internal RTC (Realtime Clock) module found on
  486. Atmel AT91RM9200's and AT91SAM9RL chips. On SAM9RL chips
  487. this is powered by the backup power supply.
  488. config RTC_DRV_AT91SAM9
  489. tristate "AT91SAM9x/AT91CAP9"
  490. depends on ARCH_AT91 && !(ARCH_AT91RM9200 || ARCH_AT91X40)
  491. help
  492. RTC driver for the Atmel AT91SAM9x and AT91CAP9 internal RTT
  493. (Real Time Timer). These timers are powered by the backup power
  494. supply (such as a small coin cell battery), but do not need to
  495. be used as RTCs.
  496. (On AT91SAM9rl chips you probably want to use the dedicated RTC
  497. module and leave the RTT available for other uses.)
  498. config RTC_DRV_AT91SAM9_RTT
  499. int
  500. range 0 1
  501. default 0
  502. prompt "RTT module Number" if ARCH_AT91SAM9263
  503. depends on RTC_DRV_AT91SAM9
  504. help
  505. More than one RTT module is available. You can choose which
  506. one will be used as an RTC. The default of zero is normally
  507. OK to use, though some systems use that for non-RTC purposes.
  508. config RTC_DRV_AT91SAM9_GPBR
  509. int
  510. range 0 3 if !ARCH_AT91SAM9263
  511. range 0 15 if ARCH_AT91SAM9263
  512. default 0
  513. prompt "Backup Register Number"
  514. depends on RTC_DRV_AT91SAM9
  515. help
  516. The RTC driver needs to use one of the General Purpose Backup
  517. Registers (GPBRs) as well as the RTT. You can choose which one
  518. will be used. The default of zero is normally OK to use, but
  519. on some systems other software needs to use that register.
  520. config RTC_DRV_AU1XXX
  521. tristate "Au1xxx Counter0 RTC support"
  522. depends on SOC_AU1X00
  523. help
  524. This is a driver for the Au1xxx on-chip Counter0 (Time-Of-Year
  525. counter) to be used as a RTC.
  526. This driver can also be built as a module. If so, the module
  527. will be called rtc-au1xxx.
  528. config RTC_DRV_BFIN
  529. tristate "Blackfin On-Chip RTC"
  530. depends on BLACKFIN && !BF561
  531. help
  532. If you say yes here you will get support for the
  533. Blackfin On-Chip Real Time Clock.
  534. This driver can also be built as a module. If so, the module
  535. will be called rtc-bfin.
  536. config RTC_DRV_RS5C313
  537. tristate "Ricoh RS5C313"
  538. depends on SH_LANDISK
  539. help
  540. If you say yes here you get support for the Ricoh RS5C313 RTC chips.
  541. config RTC_DRV_PARISC
  542. tristate "PA-RISC firmware RTC support"
  543. depends on PARISC
  544. help
  545. Say Y or M here to enable RTC support on PA-RISC systems using
  546. firmware calls. If you do not know what you are doing, you should
  547. just say Y.
  548. config RTC_DRV_PPC
  549. tristate "PowerPC machine dependent RTC support"
  550. depends on PPC
  551. help
  552. The PowerPC kernel has machine-specific functions for accessing
  553. the RTC. This exposes that functionality through the generic RTC
  554. class.
  555. config RTC_DRV_PXA
  556. tristate "PXA27x/PXA3xx"
  557. depends on ARCH_PXA
  558. help
  559. If you say Y here you will get access to the real time clock
  560. built into your PXA27x or PXA3xx CPU.
  561. This RTC driver uses PXA RTC registers available since pxa27x
  562. series (RDxR, RYxR) instead of legacy RCNR, RTAR.
  563. config RTC_DRV_SUN4V
  564. bool "SUN4V Hypervisor RTC"
  565. depends on SPARC64
  566. help
  567. If you say Y here you will get support for the Hypervisor
  568. based RTC on SUN4V systems.
  569. config RTC_DRV_STARFIRE
  570. bool "Starfire RTC"
  571. depends on SPARC64
  572. help
  573. If you say Y here you will get support for the RTC found on
  574. Starfire systems.
  575. config RTC_DRV_TX4939
  576. tristate "TX4939 SoC"
  577. depends on SOC_TX4939
  578. help
  579. Driver for the internal RTC (Realtime Clock) module found on
  580. Toshiba TX4939 SoC.
  581. config RTC_DRV_MV
  582. tristate "Marvell SoC RTC"
  583. depends on ARCH_KIRKWOOD
  584. help
  585. If you say yes here you will get support for the in-chip RTC
  586. that can be found in some of Marvell's SoC devices, such as
  587. the Kirkwood 88F6281 and 88F6192.
  588. This driver can also be built as a module. If so, the module
  589. will be called rtc-mv.
  590. endif # RTC_CLASS