mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 13:16:44 +07:00
b4214e41b7
Support is hooked up via a cpu start method specified in the device tree, and also depends on DT nodes that describe the interfaces for performing IPI and identifying which cpu execution is taking place on. The currently used method is a form of spin table, where secondary cpus are unblocked by writing to a special address. Signed-off-by: Rich Felker <dalias@libc.org>
12 lines
229 B
Makefile
12 lines
229 B
Makefile
#
|
|
# Makefile for the Linux/SuperH SH-2 backends.
|
|
#
|
|
|
|
obj-y := ex.o probe.o entry.o
|
|
|
|
obj-$(CONFIG_CPU_SUBTYPE_SH7619) += setup-sh7619.o clock-sh7619.o
|
|
|
|
# SMP setup
|
|
smp-$(CONFIG_CPU_J2) := smp-j2.o
|
|
obj-$(CONFIG_SMP) += $(smp-y)
|