Kconfig 20 KB

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