Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. config MACH_UX500_DT
  53. bool "Generic U8500 support using device tree"
  54. depends on MACH_MOP500
  55. select USE_OF
  56. endmenu
  57. config UX500_DEBUG_UART
  58. int "Ux500 UART to use for low-level debug"
  59. default 2
  60. help
  61. Choose the UART on which kernel low-level debug messages should be
  62. output.
  63. config U5500_MODEM_IRQ
  64. bool "Modem IRQ support"
  65. depends on UX500_SOC_DB5500
  66. default y
  67. help
  68. Add support for handling IRQ:s from modem side
  69. config U5500_MBOX
  70. bool "Mailbox support"
  71. depends on U5500_MODEM_IRQ
  72. default y
  73. help
  74. Add support for U5500 mailbox communication with modem side
  75. endif