Kconfig 556 B

123456789101112131415161718192021222324
  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. select HAVE_SCHED_CLOCK
  16. help
  17. Support for Multi Timer Unit. MTU provides access
  18. to multiple interrupt generating programmable
  19. 32-bit free running decrementing counters.
  20. endif