Kconfig 613 B

12345678910111213141516171819202122232425262728
  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. default y
  8. help
  9. Common platform code for Nomadik and other ST-Ericsson
  10. platforms.
  11. if PLAT_NOMADIK
  12. config HAS_MTU
  13. bool
  14. select HAVE_SCHED_CLOCK
  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_GPIO
  20. bool
  21. help
  22. Support for the Nomadik GPIO controller.
  23. endif