Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. if ARCH_U8500
  2. config UX500_SOC_COMMON
  3. bool
  4. default y
  5. select ARM_ERRATA_754322
  6. select ARM_ERRATA_764369 if SMP
  7. select ARM_GIC
  8. select CACHE_L2X0
  9. select CLKSRC_NOMADIK_MTU
  10. select COMMON_CLK
  11. select PINCTRL
  12. select PINCTRL_NOMADIK
  13. select PINCTRL_ABX500
  14. select PL310_ERRATA_753970 if CACHE_PL310
  15. config UX500_SOC_DB8500
  16. bool
  17. select CPU_FREQ_TABLE if CPU_FREQ
  18. select MFD_DB8500_PRCMU
  19. select PINCTRL_DB8500
  20. select PINCTRL_DB8540
  21. select PINCTRL_AB8500
  22. select PINCTRL_AB8505
  23. select PINCTRL_AB9540
  24. select PINCTRL_AB8540
  25. select REGULATOR
  26. select REGULATOR_DB8500_PRCMU
  27. menu "Ux500 target platform (boards)"
  28. config MACH_MOP500
  29. bool "U8500 Development platform, MOP500 versions"
  30. select I2C
  31. select I2C_NOMADIK
  32. select REGULATOR_FIXED_VOLTAGE
  33. select SOC_BUS
  34. select UX500_SOC_DB8500
  35. help
  36. Include support for the MOP500 development platform.
  37. config MACH_HREFV60
  38. bool "U8500 Development platform, HREFv60 version"
  39. select MACH_MOP500
  40. help
  41. Include support for the HREFv60 new development platform.
  42. Includes HREFv70, v71 etc.
  43. config MACH_SNOWBALL
  44. bool "U8500 Snowball platform"
  45. select MACH_MOP500
  46. help
  47. Include support for the snowball development platform.
  48. config UX500_AUTO_PLATFORM
  49. def_bool y
  50. select MACH_MOP500
  51. help
  52. At least one platform needs to be selected in order to build
  53. a working kernel. If everything else is disabled, this
  54. automatically enables MACH_MOP500.
  55. config MACH_UX500_DT
  56. bool "Generic U8500 support using device tree"
  57. depends on MACH_MOP500
  58. select USE_OF
  59. endmenu
  60. config UX500_DEBUG_UART
  61. int "Ux500 UART to use for low-level debug"
  62. default 2
  63. help
  64. Choose the UART on which kernel low-level debug messages should be
  65. output.
  66. endif