blob: d6b16d9a78380e78ff7d33855f1c6caa557d2e83 [file] [log] [blame]
Rob Herring21278ae2014-06-10 09:06:10 -05001menuconfig ARCH_VEXPRESS
Rob Herring61727632012-09-06 13:43:04 -05002 bool "ARM Ltd. Versatile Express family" if ARCH_MULTI_V7
Pawel Moll38669e02012-10-09 12:56:36 +01003 select ARCH_REQUIRE_GPIOLIB
Ben Dooks98dec912013-05-28 21:34:50 +01004 select ARCH_SUPPORTS_BIG_ENDIAN
Rob Herring61727632012-09-06 13:43:04 -05005 select ARM_AMBA
6 select ARM_GIC
Matthew Leach7e13c652014-03-14 10:18:22 +00007 select ARM_GLOBAL_TIMER
Rob Herring61727632012-09-06 13:43:04 -05008 select ARM_TIMER_SP804
Pawel Moll38669e02012-10-09 12:56:36 +01009 select COMMON_CLK_VERSATILE
Stephen Boyd4c3ffff2013-02-27 15:28:14 -080010 select HAVE_ARM_SCU if SMP
Stephen Boyda894fcc2013-02-15 16:02:20 -080011 select HAVE_ARM_TWD if SMP
Rob Herring61727632012-09-06 13:43:04 -050012 select HAVE_PATA_PLATFORM
Rob Herring61727632012-09-06 13:43:04 -050013 select ICST
Uwe Kleine-Königce816fa2014-04-07 15:39:19 -070014 select NO_IOPORT_MAP
Rob Herring61727632012-09-06 13:43:04 -050015 select PLAT_VERSATILE
Catalin Marinas2655f512013-01-15 11:24:14 +000016 select POWER_RESET
17 select POWER_RESET_VEXPRESS
18 select POWER_SUPPLY
Pawel Moll1f1dd582014-11-28 16:44:31 +000019 select REGULATOR if MMC_ARMMMCI
Rob Herring61727632012-09-06 13:43:04 -050020 select REGULATOR_FIXED_VOLTAGE if REGULATOR
Pawel Moll38669e02012-10-09 12:56:36 +010021 select VEXPRESS_CONFIG
Arnd Bergmannb33cdd22014-05-26 17:25:22 +020022 select VEXPRESS_SYSCFG
23 select MFD_VEXPRESS_SYSREG
Rob Herring61727632012-09-06 13:43:04 -050024 help
25 This option enables support for systems using Cortex processor based
26 ARM core and logic (FPGA) tiles on the Versatile Express motherboard,
27 for example:
28
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
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
Rob Herring21278ae2014-06-10 09:06:10 -050040if ARCH_VEXPRESS
Russell Kingceade892010-02-11 21:44:53 +000041
Pawel Moll8deed172012-02-23 13:04:51 +000042config ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA
Will Deaconef591192012-07-04 16:01:16 +010043 bool "Enable A5 and A9 only errata work-arounds"
44 default y
Will Deacon3de4ade2011-02-21 19:12:27 +010045 select ARM_ERRATA_720789
Russell Kinga641f3a2014-06-19 10:19:10 +010046 select PL310_ERRATA_753970 if CACHE_L2X0
Pawel Moll8deed172012-02-23 13:04:51 +000047 help
48 Provides common dependencies for Versatile Express platforms
49 based on Cortex-A5 and Cortex-A9 processors. In order to
50 build a working kernel, you must also enable relevant core
51 tile support or Flattened Device Tree based support options.
52
Nicolas Pitre1e904e12012-05-02 20:56:52 -040053config ARCH_VEXPRESS_DCSCB
54 bool "Dual Cluster System Control Block (DCSCB) support"
55 depends on MCPM
Dave Martind41418c02012-07-17 14:25:44 +010056 select ARM_CCI
Nicolas Pitre1e904e12012-05-02 20:56:52 -040057 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
Sudeep KarkadaNageshaf7cd2d82013-10-29 12:18:37 +000062config ARCH_VEXPRESS_SPC
63 bool "Versatile Express Serial Power Controller (SPC)"
Sudeep KarkadaNageshaf7cd2d82013-10-29 12:18:37 +000064 select PM_OPP
65 help
66 The TC2 (A15x2 A7x3) versatile express core tile integrates a logic
67 block called Serial Power Controller (SPC) that provides the interface
68 between the dual cluster test-chip and the M3 microcontroller that
69 carries out power management.
70
Nicolas Pitre11b277e2013-08-06 19:10:08 +010071config ARCH_VEXPRESS_TC2_PM
72 bool "Versatile Express TC2 power management"
73 depends on MCPM
74 select ARM_CCI
Sudeep KarkadaNageshaf7cd2d82013-10-29 12:18:37 +000075 select ARCH_VEXPRESS_SPC
Nicolas Pitre11b277e2013-08-06 19:10:08 +010076 help
77 Support for CPU and cluster power management on Versatile Express
78 with a TC2 (A15x2 A7x3) big.LITTLE core tile.
79
Rob Herring21278ae2014-06-10 09:06:10 -050080endif