Kconfig 1.9 KB

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