Kconfig 2.6 KB

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