Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. select CACHE_L2X0
  11. config UX500_SOC_DB5500
  12. bool
  13. select MFD_DB5500_PRCMU
  14. config UX500_SOC_DB8500
  15. bool
  16. select MFD_DB8500_PRCMU
  17. select REGULATOR_DB8500_PRCMU
  18. select CPU_FREQ_TABLE if CPU_FREQ
  19. menu "Ux500 target platform (boards)"
  20. config MACH_MOP500
  21. bool "U8500 Development platform, MOP500 versions"
  22. select UX500_SOC_DB8500
  23. select I2C
  24. select I2C_NOMADIK
  25. select SOC_BUS
  26. help
  27. Include support for the MOP500 development platform.
  28. config MACH_HREFV60
  29. bool "U8500 Development platform, HREFv60 version"
  30. select MACH_MOP500
  31. help
  32. Include support for the HREFv60 new development platform.
  33. Includes HREFv70, v71 etc.
  34. config MACH_SNOWBALL
  35. bool "U8500 Snowball platform"
  36. select MACH_MOP500
  37. help
  38. Include support for the snowball development platform.
  39. config MACH_U5500
  40. bool "U5500 Development platform"
  41. select UX500_SOC_DB5500
  42. help
  43. Include support for the U5500 development platform.
  44. config UX500_AUTO_PLATFORM
  45. def_bool y
  46. depends on !MACH_U5500
  47. select MACH_MOP500
  48. help
  49. At least one platform needs to be selected in order to build
  50. a working kernel. If everything else is disabled, this
  51. automatically enables MACH_MOP500.
  52. endmenu
  53. config UX500_DEBUG_UART
  54. int "Ux500 UART to use for low-level debug"
  55. default 2
  56. help
  57. Choose the UART on which kernel low-level debug messages should be
  58. output.
  59. config U5500_MODEM_IRQ
  60. bool "Modem IRQ support"
  61. depends on UX500_SOC_DB5500
  62. default y
  63. help
  64. Add support for handling IRQ:s from modem side
  65. config U5500_MBOX
  66. bool "Mailbox support"
  67. depends on U5500_MODEM_IRQ
  68. default y
  69. help
  70. Add support for U5500 mailbox communication with modem side
  71. endif