Kconfig 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 the mop500 development platform.
  20. config MACH_U5500
  21. bool "U5500 Development platform"
  22. select UX500_SOC_DB5500
  23. help
  24. Include support for the U5500 development platform.
  25. endchoice
  26. config UX500_DEBUG_UART
  27. int "Ux500 UART to use for low-level debug"
  28. default 2
  29. help
  30. Choose the UART on which kernel low-level debug messages should be
  31. output.
  32. config U5500_MODEM_IRQ
  33. bool "Modem IRQ support"
  34. depends on MACH_U5500
  35. default y
  36. help
  37. Add support for handling IRQ:s from modem side
  38. config U5500_MBOX
  39. bool "Mailbox support"
  40. depends on MACH_U5500 && U5500_MODEM_IRQ
  41. default y
  42. help
  43. Add support for U5500 mailbox communication with modem side
  44. endif