Kconfig 1.1 KB

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