Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. select ARM_ERRATA_753970
  9. menu "Ux500 SoC"
  10. config UX500_SOC_DB5500
  11. bool "DB5500"
  12. config UX500_SOC_DB8500
  13. bool "DB8500"
  14. endmenu
  15. menu "Ux500 target platform"
  16. config MACH_U8500
  17. bool "U8500 Development platform"
  18. depends on UX500_SOC_DB8500
  19. help
  20. Include support for the mop500 development platform.
  21. config MACH_U5500
  22. bool "U5500 Development platform"
  23. depends on UX500_SOC_DB5500
  24. help
  25. Include support for the U5500 development platform.
  26. endmenu
  27. config UX500_DEBUG_UART
  28. int "Ux500 UART to use for low-level debug"
  29. default 2
  30. help
  31. Choose the UART on which kernel low-level debug messages should be
  32. output.
  33. config U5500_MODEM_IRQ
  34. bool "Modem IRQ support"
  35. depends on UX500_SOC_DB5500
  36. default y
  37. help
  38. Add support for handling IRQ:s from modem side
  39. config U5500_MBOX
  40. bool "Mailbox support"
  41. depends on U5500_MODEM_IRQ
  42. default y
  43. help
  44. Add support for U5500 mailbox communication with modem side
  45. endif