mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 23:51:37 +00:00
eb3f614ae4
The Arm Versatile DCSCB support is unused as the compatible "arm,rtsm,dcscb" is unused in any .dts file. It was only ever implemented on a s/w model (RTSM). Signed-off-by: Rob Herring (Arm) <robh@kernel.org> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20240510123238.3904779-1-robh@kernel.org Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
34 lines
837 B
Makefile
34 lines
837 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# versatile
|
|
obj-$(CONFIG_ARCH_VERSATILE) += versatile.o
|
|
|
|
# integrator
|
|
obj-$(CONFIG_ARCH_INTEGRATOR) += integrator.o
|
|
obj-$(CONFIG_ARCH_INTEGRATOR_AP) += integrator_ap.o
|
|
obj-$(CONFIG_ARCH_INTEGRATOR_CP) += integrator_cp.o
|
|
|
|
# realview
|
|
obj-$(CONFIG_ARCH_REALVIEW) += realview.o
|
|
|
|
# vexpress
|
|
obj-$(CONFIG_ARCH_VEXPRESS) := v2m.o
|
|
obj-$(CONFIG_ARCH_VEXPRESS_SPC) += spc.o
|
|
CFLAGS_REMOVE_spc.o = -pg
|
|
obj-$(CONFIG_ARCH_VEXPRESS_TC2_PM) += tc2_pm.o
|
|
CFLAGS_tc2_pm.o += -march=armv7-a
|
|
CFLAGS_REMOVE_tc2_pm.o = -pg
|
|
|
|
# mps2
|
|
obj-$(CONFIG_ARCH_MPS2) += v2m-mps2.o
|
|
|
|
ifdef CONFIG_SMP
|
|
obj-y += headsmp.o platsmp.o
|
|
obj-$(CONFIG_ARCH_REALVIEW) += platsmp-realview.o
|
|
obj-$(CONFIG_ARCH_VEXPRESS) += platsmp-vexpress.o
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|
|
endif
|