Kconfig 1.5 KB

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