Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. config CLKSRC_OF
  2. bool
  3. config CLKSRC_I8253
  4. bool
  5. config CLKEVT_I8253
  6. bool
  7. config I8253_LOCK
  8. bool
  9. config CLKBLD_I8253
  10. def_bool y if CLKSRC_I8253 || CLKEVT_I8253 || I8253_LOCK
  11. config CLKSRC_MMIO
  12. bool
  13. config DW_APB_TIMER
  14. bool
  15. config DW_APB_TIMER_OF
  16. bool
  17. config ARMADA_370_XP_TIMER
  18. bool
  19. config SUNXI_TIMER
  20. bool
  21. config VT8500_TIMER
  22. bool
  23. config CLKSRC_NOMADIK_MTU
  24. bool
  25. depends on (ARCH_NOMADIK || ARCH_U8500)
  26. select CLKSRC_MMIO
  27. help
  28. Support for Multi Timer Unit. MTU provides access
  29. to multiple interrupt generating programmable
  30. 32-bit free running decrementing counters.
  31. config CLKSRC_NOMADIK_MTU_SCHED_CLOCK
  32. bool
  33. depends on CLKSRC_NOMADIK_MTU
  34. help
  35. Use the Multi Timer Unit as the sched_clock.
  36. config CLKSRC_DBX500_PRCMU
  37. bool "Clocksource PRCMU Timer"
  38. depends on UX500_SOC_DB8500
  39. default y
  40. help
  41. Use the always on PRCMU Timer as clocksource
  42. config CLKSRC_DBX500_PRCMU_SCHED_CLOCK
  43. bool "Clocksource PRCMU Timer sched_clock"
  44. depends on (CLKSRC_DBX500_PRCMU && !CLKSRC_NOMADIK_MTU_SCHED_CLOCK)
  45. default y
  46. help
  47. Use the always on PRCMU Timer as sched_clock
  48. config ARM_ARCH_TIMER
  49. bool
  50. config CLKSRC_METAG_GENERIC
  51. def_bool y if METAG
  52. help
  53. This option enables support for the Meta per-thread timers.
  54. config CLKSRC_SAMSUNG_PWM
  55. def_bool ARCH_EXYNOS4
  56. depends on OF
  57. select CLKSRC_MMIO
  58. help
  59. This is a new clocksource driver for the PWM timer found in
  60. Samsung S3C, S5P and Exynos SoCs, replacing an earlier driver
  61. for all devicetree enabled platforms. This driver will be
  62. needed only on systems that do not have the Exynos MCT available.