Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 REGULATOR
  22. select REGULATOR_DB8500_PRCMU
  23. menu "Ux500 target platform (boards)"
  24. config MACH_MOP500
  25. bool "U8500 Development platform, MOP500 versions"
  26. select I2C
  27. select I2C_NOMADIK
  28. select REGULATOR_FIXED_VOLTAGE
  29. select SOC_BUS
  30. select UX500_SOC_DB8500
  31. help
  32. Include support for the MOP500 development platform.
  33. config MACH_HREFV60
  34. bool "U8500 Development platform, HREFv60 version"
  35. select MACH_MOP500
  36. help
  37. Include support for the HREFv60 new development platform.
  38. Includes HREFv70, v71 etc.
  39. config MACH_SNOWBALL
  40. bool "U8500 Snowball platform"
  41. select MACH_MOP500
  42. help
  43. Include support for the snowball development platform.
  44. config UX500_AUTO_PLATFORM
  45. def_bool y
  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. config MACH_UX500_DT
  52. bool "Generic U8500 support using device tree"
  53. depends on MACH_MOP500
  54. select USE_OF
  55. endmenu
  56. config UX500_DEBUG_UART
  57. int "Ux500 UART to use for low-level debug"
  58. default 2
  59. help
  60. Choose the UART on which kernel low-level debug messages should be
  61. output.
  62. endif