Kconfig 796 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. if ARCH_U8500
  2. config UX500_SOC_COMMON
  3. bool
  4. default y
  5. select ARM_GIC
  6. select HAS_MTU
  7. select NOMADIK_GPIO
  8. config UX500_SOC_DB8500
  9. bool
  10. config UX500_SOC_DB5500
  11. bool
  12. choice
  13. prompt "Ux500 target platform"
  14. default MACH_U8500_MOP
  15. config MACH_U8500_MOP
  16. bool "U8500 Development platform"
  17. select UX500_SOC_DB8500
  18. help
  19. Include support for mop500 development platform
  20. based on U8500 architecture. The platform is based
  21. on early drop silicon version of 8500.
  22. config MACH_U5500
  23. bool "U5500 Development platform"
  24. select UX500_SOC_DB5500
  25. help
  26. Include support for the U5500 development platform.
  27. endchoice
  28. config UX500_DEBUG_UART
  29. int "Ux500 UART to use for low-level debug"
  30. default 2
  31. help
  32. Choose the UART on which kernel low-level debug messages should be
  33. output.
  34. endif