Kconfig 1.1 KB

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