Kconfig 1.3 KB

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