Kconfig 1015 B

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