Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. select ARM_ERRATA_764369
  10. menu "Ux500 SoC"
  11. config UX500_SOC_DB5500
  12. bool "DB5500"
  13. select MFD_DB5500_PRCMU
  14. config UX500_SOC_DB8500
  15. bool "DB8500"
  16. select MFD_DB8500_PRCMU
  17. select REGULATOR_DB8500_PRCMU
  18. endmenu
  19. menu "Ux500 target platform (boards)"
  20. config MACH_U8500
  21. bool "U8500 Development platform"
  22. depends on UX500_SOC_DB8500
  23. select TPS6105X
  24. select SOC_BUS
  25. help
  26. Include support for the mop500 development platform.
  27. config MACH_HREFV60
  28. bool "U85000 Development platform, HREFv60 version"
  29. depends on UX500_SOC_DB8500
  30. help
  31. Include support for the HREFv60 new development platform.
  32. config MACH_SNOWBALL
  33. bool "U8500 Snowball platform"
  34. depends on UX500_SOC_DB8500
  35. select MACH_U8500
  36. help
  37. Include support for the snowball development platform.
  38. config MACH_U5500
  39. bool "U5500 Development platform"
  40. depends on UX500_SOC_DB5500
  41. help
  42. Include support for the U5500 development platform.
  43. endmenu
  44. config UX500_DEBUG_UART
  45. int "Ux500 UART to use for low-level debug"
  46. default 2
  47. help
  48. Choose the UART on which kernel low-level debug messages should be
  49. output.
  50. config U5500_MODEM_IRQ
  51. bool "Modem IRQ support"
  52. depends on UX500_SOC_DB5500
  53. default y
  54. help
  55. Add support for handling IRQ:s from modem side
  56. config U5500_MBOX
  57. bool "Mailbox support"
  58. depends on U5500_MODEM_IRQ
  59. default y
  60. help
  61. Add support for U5500 mailbox communication with modem side
  62. endif