Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. select TPS6105X
  20. help
  21. Include support for the mop500 development platform.
  22. config MACH_U5500
  23. bool "U5500 Development platform"
  24. depends on UX500_SOC_DB5500
  25. help
  26. Include support for the U5500 development platform.
  27. endmenu
  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 UX500_SOC_DB5500
  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 U5500_MODEM_IRQ
  43. default y
  44. help
  45. Add support for U5500 mailbox communication with modem side
  46. endif