blob: d8b9330f896a3edac20a11355d8b60b9a613f824 [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
16 select PLAT_VERSATILE_CLCD
Catalin Marinas2655f512013-01-15 11:24:14 +000017 select POWER_RESET
18 select POWER_RESET_VEXPRESS
19 select POWER_SUPPLY
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
53config ARCH_VEXPRESS_CA9X4
54 bool "Versatile Express Cortex-A9x4 tile"
Pawel Moll8deed172012-02-23 13:04:51 +000055
Nicolas Pitre1e904e12012-05-02 20:56:52 -040056config ARCH_VEXPRESS_DCSCB
57 bool "Dual Cluster System Control Block (DCSCB) support"
58 depends on MCPM
Dave Martind41418c02012-07-17 14:25:44 +010059 select ARM_CCI
Nicolas Pitre1e904e12012-05-02 20:56:52 -040060 help
61 Support for the Dual Cluster System Configuration Block (DCSCB).
62 This is needed to provide CPU and cluster power management
63 on RTSM implementing big.LITTLE.
64
Sudeep KarkadaNageshaf7cd2d82013-10-29 12:18:37 +000065config ARCH_VEXPRESS_SPC
66 bool "Versatile Express Serial Power Controller (SPC)"
Sudeep KarkadaNageshaf7cd2d82013-10-29 12:18:37 +000067 select ARCH_HAS_OPP
68 select PM_OPP
69 help
70 The TC2 (A15x2 A7x3) versatile express core tile integrates a logic
71 block called Serial Power Controller (SPC) that provides the interface
72 between the dual cluster test-chip and the M3 microcontroller that
73 carries out power management.
74
Nicolas Pitre11b277e2013-08-06 19:10:08 +010075config ARCH_VEXPRESS_TC2_PM
76 bool "Versatile Express TC2 power management"
77 depends on MCPM
78 select ARM_CCI
Sudeep KarkadaNageshaf7cd2d82013-10-29 12:18:37 +000079 select ARCH_VEXPRESS_SPC
Nicolas Pitre11b277e2013-08-06 19:10:08 +010080 help
81 Support for CPU and cluster power management on Versatile Express
82 with a TC2 (A15x2 A7x3) big.LITTLE core tile.
83
Rob Herring21278ae2014-06-10 09:06:10 -050084endif