Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. menu "Clock Source drivers"
  2. depends on !ARCH_USES_GETTIMEOFFSET
  3. config CLKSRC_OF
  4. bool
  5. select CLKSRC_PROBE
  6. config CLKEVT_OF
  7. bool
  8. select CLKEVT_PROBE
  9. config CLKSRC_ACPI
  10. bool
  11. select CLKSRC_PROBE
  12. config CLKSRC_PROBE
  13. bool
  14. config CLKEVT_PROBE
  15. bool
  16. config CLKSRC_I8253
  17. bool
  18. config CLKEVT_I8253
  19. bool
  20. config I8253_LOCK
  21. bool
  22. config CLKBLD_I8253
  23. def_bool y if CLKSRC_I8253 || CLKEVT_I8253 || I8253_LOCK
  24. config CLKSRC_MMIO
  25. bool
  26. config BCM2835_TIMER
  27. bool "BCM2835 timer driver" if COMPILE_TEST
  28. depends on GENERIC_CLOCKEVENTS
  29. select CLKSRC_MMIO
  30. help
  31. Enables the support for the BCM2835 timer driver.
  32. config BCM_KONA_TIMER
  33. bool "BCM mobile timer driver" if COMPILE_TEST
  34. depends on GENERIC_CLOCKEVENTS
  35. select CLKSRC_MMIO
  36. help
  37. Enables the support for the BCM Kona mobile timer driver.
  38. config DIGICOLOR_TIMER
  39. bool "Digicolor timer driver" if COMPILE_TEST
  40. depends on GENERIC_CLOCKEVENTS
  41. select CLKSRC_MMIO
  42. depends on HAS_IOMEM
  43. help
  44. Enables the support for the digicolor timer driver.
  45. config DW_APB_TIMER
  46. bool "DW APB timer driver" if COMPILE_TEST
  47. depends on GENERIC_CLOCKEVENTS
  48. help
  49. Enables the support for the dw_apb timer.
  50. config DW_APB_TIMER_OF
  51. bool
  52. select DW_APB_TIMER
  53. select CLKSRC_OF
  54. config FTTMR010_TIMER
  55. bool "Faraday Technology timer driver" if COMPILE_TEST
  56. depends on GENERIC_CLOCKEVENTS
  57. depends on HAS_IOMEM
  58. select CLKSRC_MMIO
  59. select CLKSRC_OF
  60. select MFD_SYSCON
  61. help
  62. Enables support for the Faraday Technology timer block
  63. FTTMR010.
  64. config ROCKCHIP_TIMER
  65. bool "Rockchip timer driver" if COMPILE_TEST
  66. depends on ARM || ARM64
  67. select CLKSRC_OF
  68. select CLKSRC_MMIO
  69. help
  70. Enables the support for the rockchip timer driver.
  71. config ARMADA_370_XP_TIMER
  72. bool "Armada 370 and XP timer driver" if COMPILE_TEST
  73. depends on ARM
  74. select CLKSRC_OF
  75. select CLKSRC_MMIO
  76. help
  77. Enables the support for the Armada 370 and XP timer driver.
  78. config MESON6_TIMER
  79. bool "Meson6 timer driver" if COMPILE_TEST
  80. depends on GENERIC_CLOCKEVENTS
  81. select CLKSRC_MMIO
  82. help
  83. Enables the support for the Meson6 timer driver.
  84. config ORION_TIMER
  85. bool "Orion timer driver" if COMPILE_TEST
  86. depends on ARM
  87. select CLKSRC_OF
  88. select CLKSRC_MMIO
  89. help
  90. Enables the support for the Orion timer driver
  91. config SUN4I_TIMER
  92. bool "Sun4i timer driver" if COMPILE_TEST
  93. depends on GENERIC_CLOCKEVENTS
  94. depends on HAS_IOMEM
  95. select CLKSRC_MMIO
  96. help
  97. Enables support for the Sun4i timer.
  98. config SUN5I_HSTIMER
  99. bool "Sun5i timer driver" if COMPILE_TEST
  100. select CLKSRC_MMIO
  101. depends on COMMON_CLK
  102. help
  103. Enables support the Sun5i timer.
  104. config TEGRA_TIMER
  105. bool "Tegra timer driver" if COMPILE_TEST
  106. select CLKSRC_MMIO
  107. depends on ARM
  108. help
  109. Enables support for the Tegra driver.
  110. config VT8500_TIMER
  111. bool "VT8500 timer driver" if COMPILE_TEST
  112. depends on GENERIC_CLOCKEVENTS
  113. depends on HAS_IOMEM
  114. help
  115. Enables support for the VT8500 driver.
  116. config CADENCE_TTC_TIMER
  117. bool "Cadence TTC timer driver" if COMPILE_TEST
  118. depends on COMMON_CLK
  119. help
  120. Enables support for the cadence ttc driver.
  121. config ASM9260_TIMER
  122. bool "ASM9260 timer driver" if COMPILE_TEST
  123. depends on GENERIC_CLOCKEVENTS
  124. select CLKSRC_MMIO
  125. select CLKSRC_OF
  126. help
  127. Enables support for the ASM9260 timer.
  128. config CLKSRC_NOMADIK_MTU
  129. bool "Nomakdik clocksource driver" if COMPILE_TEST
  130. depends on ARM
  131. select CLKSRC_MMIO
  132. help
  133. Support for Multi Timer Unit. MTU provides access
  134. to multiple interrupt generating programmable
  135. 32-bit free running decrementing counters.
  136. config CLKSRC_NOMADIK_MTU_SCHED_CLOCK
  137. bool
  138. depends on CLKSRC_NOMADIK_MTU
  139. help
  140. Use the Multi Timer Unit as the sched_clock.
  141. config CLKSRC_DBX500_PRCMU
  142. bool "Clocksource PRCMU Timer" if COMPILE_TEST
  143. depends on GENERIC_CLOCKEVENTS
  144. depends on HAS_IOMEM
  145. help
  146. Use the always on PRCMU Timer as clocksource
  147. config CLPS711X_TIMER
  148. bool "Cirrus logic timer driver" if COMPILE_TEST
  149. depends on GENERIC_CLOCKEVENTS
  150. select CLKSRC_MMIO
  151. help
  152. Enables support for the Cirrus Logic PS711 timer.
  153. config ATLAS7_TIMER
  154. bool "Atlas7 timer driver" if COMPILE_TEST
  155. depends on GENERIC_CLOCKEVENTS
  156. select CLKSRC_MMIO
  157. help
  158. Enables support for the Atlas7 timer.
  159. config MOXART_TIMER
  160. bool "Moxart timer driver" if COMPILE_TEST
  161. depends on GENERIC_CLOCKEVENTS
  162. select CLKSRC_MMIO
  163. help
  164. Enables support for the Moxart timer.
  165. config MXS_TIMER
  166. bool "Mxs timer driver" if COMPILE_TEST
  167. depends on GENERIC_CLOCKEVENTS
  168. select CLKSRC_MMIO
  169. select STMP_DEVICE
  170. help
  171. Enables support for the Mxs timer.
  172. config PRIMA2_TIMER
  173. bool "Prima2 timer driver" if COMPILE_TEST
  174. depends on GENERIC_CLOCKEVENTS
  175. select CLKSRC_MMIO
  176. help
  177. Enables support for the Prima2 timer.
  178. config U300_TIMER
  179. bool "U300 timer driver" if COMPILE_TEST
  180. depends on GENERIC_CLOCKEVENTS
  181. depends on ARM
  182. select CLKSRC_MMIO
  183. help
  184. Enables support for the U300 timer.
  185. config NSPIRE_TIMER
  186. bool "NSpire timer driver" if COMPILE_TEST
  187. depends on GENERIC_CLOCKEVENTS
  188. select CLKSRC_MMIO
  189. help
  190. Enables support for the Nspire timer.
  191. config KEYSTONE_TIMER
  192. bool "Keystone timer driver" if COMPILE_TEST
  193. depends on GENERIC_CLOCKEVENTS
  194. depends on ARM || ARM64
  195. select CLKSRC_MMIO
  196. help
  197. Enables support for the Keystone timer.
  198. config INTEGRATOR_AP_TIMER
  199. bool "Integrator-ap timer driver" if COMPILE_TEST
  200. depends on GENERIC_CLOCKEVENTS
  201. select CLKSRC_MMIO
  202. help
  203. Enables support for the Integrator-ap timer.
  204. config CLKSRC_DBX500_PRCMU_SCHED_CLOCK
  205. bool "Clocksource PRCMU Timer sched_clock"
  206. depends on (CLKSRC_DBX500_PRCMU && !CLKSRC_NOMADIK_MTU_SCHED_CLOCK)
  207. default y
  208. help
  209. Use the always on PRCMU Timer as sched_clock
  210. config CLKSRC_EFM32
  211. bool "Clocksource for Energy Micro's EFM32 SoCs" if !ARCH_EFM32
  212. depends on OF && ARM && (ARCH_EFM32 || COMPILE_TEST)
  213. select CLKSRC_MMIO
  214. default ARCH_EFM32
  215. help
  216. Support to use the timers of EFM32 SoCs as clock source and clock
  217. event device.
  218. config CLKSRC_LPC32XX
  219. bool "Clocksource for LPC32XX" if COMPILE_TEST
  220. depends on GENERIC_CLOCKEVENTS && HAS_IOMEM
  221. depends on ARM
  222. select CLKSRC_MMIO
  223. select CLKSRC_OF
  224. help
  225. Support for the LPC32XX clocksource.
  226. config CLKSRC_PISTACHIO
  227. bool "Clocksource for Pistachio SoC" if COMPILE_TEST
  228. depends on HAS_IOMEM
  229. select CLKSRC_OF
  230. help
  231. Enables the clocksource for the Pistachio SoC.
  232. config CLKSRC_TI_32K
  233. bool "Texas Instruments 32.768 Hz Clocksource" if COMPILE_TEST
  234. depends on GENERIC_SCHED_CLOCK
  235. select CLKSRC_OF if OF
  236. help
  237. This option enables support for Texas Instruments 32.768 Hz clocksource
  238. available on many OMAP-like platforms.
  239. config CLKSRC_NPS
  240. bool "NPS400 clocksource driver" if COMPILE_TEST
  241. depends on !PHYS_ADDR_T_64BIT
  242. select CLKSRC_MMIO
  243. select CLKSRC_OF if OF
  244. help
  245. NPS400 clocksource support.
  246. Got 64 bit counter with update rate up to 1000MHz.
  247. This counter is accessed via couple of 32 bit memory mapped registers.
  248. config CLKSRC_STM32
  249. bool "Clocksource for STM32 SoCs" if !ARCH_STM32
  250. depends on OF && ARM && (ARCH_STM32 || COMPILE_TEST)
  251. select CLKSRC_MMIO
  252. config CLKSRC_MPS2
  253. bool "Clocksource for MPS2 SoCs" if COMPILE_TEST
  254. depends on GENERIC_SCHED_CLOCK
  255. select CLKSRC_MMIO
  256. select CLKSRC_OF
  257. config ARC_TIMERS
  258. bool "Support for 32-bit TIMERn counters in ARC Cores" if COMPILE_TEST
  259. depends on GENERIC_CLOCKEVENTS
  260. select CLKSRC_OF
  261. help
  262. These are legacy 32-bit TIMER0 and TIMER1 counters found on all ARC cores
  263. (ARC700 as well as ARC HS38).
  264. TIMER0 serves as clockevent while TIMER1 provides clocksource
  265. config ARC_TIMERS_64BIT
  266. bool "Support for 64-bit counters in ARC HS38 cores" if COMPILE_TEST
  267. depends on GENERIC_CLOCKEVENTS
  268. depends on ARC_TIMERS
  269. select CLKSRC_OF
  270. help
  271. This enables 2 different 64-bit timers: RTC (for UP) and GFRC (for SMP)
  272. RTC is implemented inside the core, while GFRC sits outside the core in
  273. ARConnect IP block. Driver automatically picks one of them for clocksource
  274. as appropriate.
  275. config ARM_ARCH_TIMER
  276. bool
  277. select CLKSRC_OF if OF
  278. select CLKSRC_ACPI if ACPI
  279. config ARM_ARCH_TIMER_EVTSTREAM
  280. bool "Enable ARM architected timer event stream generation by default"
  281. default y if ARM_ARCH_TIMER
  282. depends on ARM_ARCH_TIMER
  283. help
  284. This option enables support by default for event stream generation
  285. based on the ARM architected timer. It is used for waking up CPUs
  286. executing the wfe instruction at a frequency represented as a
  287. power-of-2 divisor of the clock rate. The behaviour can also be
  288. overridden on the command line using the
  289. clocksource.arm_arch_timer.evtstream parameter.
  290. The main use of the event stream is wfe-based timeouts of userspace
  291. locking implementations. It might also be useful for imposing timeout
  292. on wfe to safeguard against any programming errors in case an expected
  293. event is not generated.
  294. This must be disabled for hardware validation purposes to detect any
  295. hardware anomalies of missing events.
  296. config ARM_ARCH_TIMER_OOL_WORKAROUND
  297. bool
  298. config FSL_ERRATUM_A008585
  299. bool "Workaround for Freescale/NXP Erratum A-008585"
  300. default y
  301. depends on ARM_ARCH_TIMER && ARM64
  302. select ARM_ARCH_TIMER_OOL_WORKAROUND
  303. help
  304. This option enables a workaround for Freescale/NXP Erratum
  305. A-008585 ("ARM generic timer may contain an erroneous
  306. value"). The workaround will only be active if the
  307. fsl,erratum-a008585 property is found in the timer node.
  308. config HISILICON_ERRATUM_161010101
  309. bool "Workaround for Hisilicon Erratum 161010101"
  310. default y
  311. select ARM_ARCH_TIMER_OOL_WORKAROUND
  312. depends on ARM_ARCH_TIMER && ARM64
  313. help
  314. This option enables a workaround for Hisilicon Erratum
  315. 161010101. The workaround will be active if the hisilicon,erratum-161010101
  316. property is found in the timer node.
  317. config ARM64_ERRATUM_858921
  318. bool "Workaround for Cortex-A73 erratum 858921"
  319. default y
  320. select ARM_ARCH_TIMER_OOL_WORKAROUND
  321. depends on ARM_ARCH_TIMER && ARM64
  322. help
  323. This option enables a workaround applicable to Cortex-A73
  324. (all versions), whose counter may return incorrect values.
  325. The workaround will be dynamically enabled when an affected
  326. core is detected.
  327. config ARM_GLOBAL_TIMER
  328. bool "Support for the ARM global timer" if COMPILE_TEST
  329. select CLKSRC_OF if OF
  330. depends on ARM
  331. help
  332. This options enables support for the ARM global timer unit
  333. config ARM_TIMER_SP804
  334. bool "Support for Dual Timer SP804 module"
  335. depends on GENERIC_SCHED_CLOCK && CLKDEV_LOOKUP
  336. select CLKSRC_MMIO
  337. select CLKSRC_OF if OF
  338. config CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK
  339. bool
  340. depends on ARM_GLOBAL_TIMER
  341. default y
  342. help
  343. Use ARM global timer clock source as sched_clock
  344. config ARMV7M_SYSTICK
  345. bool "Support for the ARMv7M system time" if COMPILE_TEST
  346. select CLKSRC_OF if OF
  347. select CLKSRC_MMIO
  348. help
  349. This options enables support for the ARMv7M system timer unit
  350. config ATMEL_PIT
  351. select CLKSRC_OF if OF
  352. def_bool SOC_AT91SAM9 || SOC_SAMA5
  353. config ATMEL_ST
  354. bool "Atmel ST timer support" if COMPILE_TEST
  355. depends on GENERIC_CLOCKEVENTS
  356. select CLKSRC_OF
  357. select MFD_SYSCON
  358. help
  359. Support for the Atmel ST timer.
  360. config CLKSRC_METAG_GENERIC
  361. def_bool y if METAG
  362. help
  363. This option enables support for the Meta per-thread timers.
  364. config CLKSRC_EXYNOS_MCT
  365. bool "Exynos multi core timer driver" if COMPILE_TEST
  366. depends on ARM || ARM64
  367. help
  368. Support for Multi Core Timer controller on Exynos SoCs.
  369. config CLKSRC_SAMSUNG_PWM
  370. bool "PWM timer driver for Samsung S3C, S5P" if COMPILE_TEST
  371. depends on GENERIC_CLOCKEVENTS
  372. depends on HAS_IOMEM
  373. help
  374. This is a new clocksource driver for the PWM timer found in
  375. Samsung S3C, S5P and Exynos SoCs, replacing an earlier driver
  376. for all devicetree enabled platforms. This driver will be
  377. needed only on systems that do not have the Exynos MCT available.
  378. config FSL_FTM_TIMER
  379. bool "Freescale FlexTimer Module driver" if COMPILE_TEST
  380. depends on GENERIC_CLOCKEVENTS
  381. depends on HAS_IOMEM
  382. select CLKSRC_MMIO
  383. help
  384. Support for Freescale FlexTimer Module (FTM) timer.
  385. config VF_PIT_TIMER
  386. bool
  387. select CLKSRC_MMIO
  388. help
  389. Support for Period Interrupt Timer on Freescale Vybrid Family SoCs.
  390. config OXNAS_RPS_TIMER
  391. bool "Oxford Semiconductor OXNAS RPS Timers driver" if COMPILE_TEST
  392. depends on GENERIC_CLOCKEVENTS
  393. select CLKSRC_OF
  394. select CLKSRC_MMIO
  395. help
  396. This enables support for the Oxford Semiconductor OXNAS RPS timers.
  397. config SYS_SUPPORTS_SH_CMT
  398. bool
  399. config MTK_TIMER
  400. bool "Mediatek timer driver" if COMPILE_TEST
  401. depends on GENERIC_CLOCKEVENTS && HAS_IOMEM
  402. select CLKSRC_OF
  403. select CLKSRC_MMIO
  404. help
  405. Support for Mediatek timer driver.
  406. config SYS_SUPPORTS_SH_MTU2
  407. bool
  408. config SYS_SUPPORTS_SH_TMU
  409. bool
  410. config SYS_SUPPORTS_EM_STI
  411. bool
  412. config CLKSRC_JCORE_PIT
  413. bool "J-Core PIT timer driver" if COMPILE_TEST
  414. depends on OF
  415. depends on GENERIC_CLOCKEVENTS
  416. depends on HAS_IOMEM
  417. select CLKSRC_MMIO
  418. help
  419. This enables build of clocksource and clockevent driver for
  420. the integrated PIT in the J-Core synthesizable, open source SoC.
  421. config SH_TIMER_CMT
  422. bool "Renesas CMT timer driver" if COMPILE_TEST
  423. depends on GENERIC_CLOCKEVENTS
  424. depends on HAS_IOMEM
  425. default SYS_SUPPORTS_SH_CMT
  426. help
  427. This enables build of a clocksource and clockevent driver for
  428. the Compare Match Timer (CMT) hardware available in 16/32/48-bit
  429. variants on a wide range of Mobile and Automotive SoCs from Renesas.
  430. config SH_TIMER_MTU2
  431. bool "Renesas MTU2 timer driver" if COMPILE_TEST
  432. depends on GENERIC_CLOCKEVENTS
  433. depends on HAS_IOMEM
  434. default SYS_SUPPORTS_SH_MTU2
  435. help
  436. This enables build of a clockevent driver for the Multi-Function
  437. Timer Pulse Unit 2 (MTU2) hardware available on SoCs from Renesas.
  438. This hardware comes with 16 bit-timer registers.
  439. config RENESAS_OSTM
  440. bool "Renesas OSTM timer driver" if COMPILE_TEST
  441. depends on GENERIC_CLOCKEVENTS
  442. select CLKSRC_MMIO
  443. help
  444. Enables the support for the Renesas OSTM.
  445. config SH_TIMER_TMU
  446. bool "Renesas TMU timer driver" if COMPILE_TEST
  447. depends on GENERIC_CLOCKEVENTS
  448. depends on HAS_IOMEM
  449. default SYS_SUPPORTS_SH_TMU
  450. help
  451. This enables build of a clocksource and clockevent driver for
  452. the 32-bit Timer Unit (TMU) hardware available on a wide range
  453. SoCs from Renesas.
  454. config EM_TIMER_STI
  455. bool "Renesas STI timer driver" if COMPILE_TEST
  456. depends on GENERIC_CLOCKEVENTS && HAS_IOMEM
  457. default SYS_SUPPORTS_EM_STI
  458. help
  459. This enables build of a clocksource and clockevent driver for
  460. the 48-bit System Timer (STI) hardware available on a SoCs
  461. such as EMEV2 from former NEC Electronics.
  462. config CLKSRC_QCOM
  463. bool "Qualcomm MSM timer" if COMPILE_TEST
  464. depends on ARM
  465. select CLKSRC_OF
  466. help
  467. This enables the clocksource and the per CPU clockevent driver for the
  468. Qualcomm SoCs.
  469. config CLKSRC_VERSATILE
  470. bool "ARM Versatile (Express) reference platforms clock source" if COMPILE_TEST
  471. depends on GENERIC_SCHED_CLOCK && !ARCH_USES_GETTIMEOFFSET
  472. select CLKSRC_OF
  473. default y if MFD_VEXPRESS_SYSREG
  474. help
  475. This option enables clock source based on free running
  476. counter available in the "System Registers" block of
  477. ARM Versatile, RealView and Versatile Express reference
  478. platforms.
  479. config CLKSRC_MIPS_GIC
  480. bool
  481. depends on MIPS_GIC
  482. select CLKSRC_OF
  483. config CLKSRC_TANGO_XTAL
  484. bool "Clocksource for Tango SoC" if COMPILE_TEST
  485. depends on ARM
  486. select CLKSRC_OF
  487. select CLKSRC_MMIO
  488. help
  489. This enables the clocksource for Tango SoC
  490. config CLKSRC_PXA
  491. bool "Clocksource for PXA or SA-11x0 platform" if COMPILE_TEST
  492. depends on GENERIC_CLOCKEVENTS
  493. depends on HAS_IOMEM
  494. select CLKSRC_MMIO
  495. help
  496. This enables OST0 support available on PXA and SA-11x0
  497. platforms.
  498. config H8300_TMR8
  499. bool "Clockevent timer for the H8300 platform" if COMPILE_TEST
  500. depends on GENERIC_CLOCKEVENTS && HAS_IOMEM
  501. help
  502. This enables the 8 bits timer for the H8300 platform.
  503. config H8300_TMR16
  504. bool "Clockevent timer for the H83069 platform" if COMPILE_TEST
  505. depends on GENERIC_CLOCKEVENTS && HAS_IOMEM
  506. help
  507. This enables the 16 bits timer for the H8300 platform with the
  508. H83069 cpu.
  509. config H8300_TPU
  510. bool "Clocksource for the H8300 platform" if COMPILE_TEST
  511. depends on GENERIC_CLOCKEVENTS && HAS_IOMEM
  512. help
  513. This enables the clocksource for the H8300 platform with the
  514. H8S2678 cpu.
  515. config CLKSRC_IMX_GPT
  516. bool "Clocksource using i.MX GPT" if COMPILE_TEST
  517. depends on ARM && CLKDEV_LOOKUP
  518. select CLKSRC_MMIO
  519. config CLKSRC_ST_LPC
  520. bool "Low power clocksource found in the LPC" if COMPILE_TEST
  521. select CLKSRC_OF if OF
  522. depends on HAS_IOMEM
  523. select CLKSRC_MMIO
  524. help
  525. Enable this option to use the Low Power controller timer
  526. as clocksource.
  527. endmenu