Kconfig 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. config ARCH_VEXPRESS
  2. bool "ARM Ltd. Versatile Express family" if ARCH_MULTI_V7
  3. select ARCH_REQUIRE_GPIOLIB
  4. select ARCH_SUPPORTS_BIG_ENDIAN
  5. select ARM_AMBA
  6. select ARM_GIC
  7. select ARM_TIMER_SP804
  8. select COMMON_CLK
  9. select COMMON_CLK_VERSATILE
  10. select CPU_V7
  11. select GENERIC_CLOCKEVENTS
  12. select HAVE_ARM_SCU if SMP
  13. select HAVE_ARM_TWD if SMP
  14. select HAVE_PATA_PLATFORM
  15. select HAVE_SMP
  16. select ICST
  17. select MIGHT_HAVE_CACHE_L2X0
  18. select NO_IOPORT
  19. select PLAT_VERSATILE
  20. select PLAT_VERSATILE_CLCD
  21. select POWER_RESET
  22. select POWER_RESET_VEXPRESS
  23. select POWER_SUPPLY
  24. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  25. select VEXPRESS_CONFIG
  26. help
  27. This option enables support for systems using Cortex processor based
  28. ARM core and logic (FPGA) tiles on the Versatile Express motherboard,
  29. for example:
  30. - CoreTile Express A5x2 (V2P-CA5s)
  31. - CoreTile Express A9x4 (V2P-CA9)
  32. - CoreTile Express A15x2 (V2P-CA15)
  33. - LogicTile Express 13MG (V2F-2XV6) with A5, A7, A9 or A15 SMMs
  34. (Soft Macrocell Models)
  35. - Versatile Express RTSMs (Models)
  36. You must boot using a Flattened Device Tree in order to use these
  37. platforms. The traditional (ATAGs) boot method is not usable on
  38. these boards with this option.
  39. menu "Versatile Express platform type"
  40. depends on ARCH_VEXPRESS
  41. config ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA
  42. bool "Enable A5 and A9 only errata work-arounds"
  43. default y
  44. select ARM_ERRATA_720789
  45. select PL310_ERRATA_753970 if CACHE_PL310
  46. help
  47. Provides common dependencies for Versatile Express platforms
  48. based on Cortex-A5 and Cortex-A9 processors. In order to
  49. build a working kernel, you must also enable relevant core
  50. tile support or Flattened Device Tree based support options.
  51. config ARCH_VEXPRESS_CA9X4
  52. bool "Versatile Express Cortex-A9x4 tile"
  53. config ARCH_VEXPRESS_DCSCB
  54. bool "Dual Cluster System Control Block (DCSCB) support"
  55. depends on MCPM
  56. select ARM_CCI
  57. help
  58. Support for the Dual Cluster System Configuration Block (DCSCB).
  59. This is needed to provide CPU and cluster power management
  60. on RTSM implementing big.LITTLE.
  61. config ARCH_VEXPRESS_SPC
  62. bool "Versatile Express Serial Power Controller (SPC)"
  63. select ARCH_HAS_CPUFREQ
  64. select ARCH_HAS_OPP
  65. select PM_OPP
  66. help
  67. The TC2 (A15x2 A7x3) versatile express core tile integrates a logic
  68. block called Serial Power Controller (SPC) that provides the interface
  69. between the dual cluster test-chip and the M3 microcontroller that
  70. carries out power management.
  71. config ARCH_VEXPRESS_TC2_PM
  72. bool "Versatile Express TC2 power management"
  73. depends on MCPM
  74. select ARM_CCI
  75. select ARCH_VEXPRESS_SPC
  76. help
  77. Support for CPU and cluster power management on Versatile Express
  78. with a TC2 (A15x2 A7x3) big.LITTLE core tile.
  79. endmenu