Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. config U5500_MODEM_IRQ
  35. bool "Modem IRQ support"
  36. depends on MACH_U5500
  37. default y
  38. help
  39. Add support for handling IRQ:s from modem side
  40. config U5500_MBOX
  41. bool "Mailbox support"
  42. depends on MACH_U5500 && U5500_MODEM_IRQ
  43. default y
  44. help
  45. Add support for U5500 mailbox communication with modem side
  46. endif