mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
3b55658aef
Making SMP depend on (huge list of MACH_ and ARCH_ configs) is bothersome to maintain and likely to lead to merge conflicts. This patch moves the knowledge of which platforms are SMP-capable to the individual machines. To enable this, a new HAVE_SMP config option is introduced to allow machines to indicate that they can run in a SMP configuration. Signed-off-by: Dave Martin <dave.martin@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> (for nomadik, ux500) Acked-by: Tony Lindgren <tony@atomide.com> (for omap) Acked-by: Kukjin Kim <kgene.kim@samsung.com> (for exynos) Acked-by: Sascha Hauer <s.hauer@pengutronix.de> (for imx) Acked-by: Olof Johansson <olof@lixom.net> (for tegra)
15 lines
301 B
Plaintext
15 lines
301 B
Plaintext
menu "Versatile Express platform type"
|
|
depends on ARCH_VEXPRESS
|
|
|
|
config ARCH_VEXPRESS_CA9X4
|
|
bool "Versatile Express Cortex-A9x4 tile"
|
|
select CPU_V7
|
|
select ARM_GIC
|
|
select ARM_ERRATA_720789
|
|
select ARM_ERRATA_751472
|
|
select ARM_ERRATA_753970
|
|
select HAVE_SMP
|
|
select MIGHT_HAVE_CACHE_L2X0
|
|
|
|
endmenu
|