Kconfig 1.7 KB

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