Kconfig 1.1 KB

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