Kconfig 668 B

123456789101112131415161718192021222324252627282930
  1. # We keep common IP's here for Nomadik and other similar
  2. # familiy of processors from ST-Ericsson. At the moment we have
  3. # just MTU, others to follow soon.
  4. config PLAT_NOMADIK
  5. bool
  6. depends on ARCH_NOMADIK || ARCH_U8500
  7. select CLKSRC_MMIO
  8. default y
  9. help
  10. Common platform code for Nomadik and other ST-Ericsson
  11. platforms.
  12. if PLAT_NOMADIK
  13. config HAS_MTU
  14. bool
  15. help
  16. Support for Multi Timer Unit. MTU provides access
  17. to multiple interrupt generating programmable
  18. 32-bit free running decrementing counters.
  19. config NOMADIK_MTU_SCHED_CLOCK
  20. bool
  21. depends on HAS_MTU
  22. select HAVE_SCHED_CLOCK
  23. help
  24. Use the Multi Timer Unit as the sched_clock.
  25. endif