Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. if ARCH_U8500
  2. config UX500_SOC_COMMON
  3. bool
  4. default y
  5. select ARM_GIC
  6. select HAS_MTU
  7. select ARM_ERRATA_753970
  8. select ARM_ERRATA_754322
  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 (boards)"
  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_HREFV60
  26. bool "U85000 Development platform, HREFv60 version"
  27. depends on UX500_SOC_DB8500
  28. help
  29. Include support for the HREFv60 new development platform.
  30. config MACH_SNOWBALL
  31. bool "U8500 Snowball platform"
  32. depends on UX500_SOC_DB8500
  33. select MACH_U8500
  34. help
  35. Include support for the snowball development platform.
  36. config MACH_U5500
  37. bool "U5500 Development platform"
  38. depends on UX500_SOC_DB5500
  39. help
  40. Include support for the U5500 development platform.
  41. endmenu
  42. config UX500_DEBUG_UART
  43. int "Ux500 UART to use for low-level debug"
  44. default 2
  45. help
  46. Choose the UART on which kernel low-level debug messages should be
  47. output.
  48. config U5500_MODEM_IRQ
  49. bool "Modem IRQ support"
  50. depends on UX500_SOC_DB5500
  51. default y
  52. help
  53. Add support for handling IRQ:s from modem side
  54. config U5500_MBOX
  55. bool "Mailbox support"
  56. depends on U5500_MODEM_IRQ
  57. default y
  58. help
  59. Add support for U5500 mailbox communication with modem side
  60. endif