diff options
author | Rich Felker <dalias@libc.org> | 2016-02-15 18:36:13 +0000 |
---|---|---|
committer | Rich Felker <dalias@libc.org> | 2016-08-05 03:29:39 +0000 |
commit | b4214e41b7152b1964a3421a40251d202ae2d2c0 (patch) | |
tree | edfab19d4f16bf2d6f42168c6598aa1fac4ac0e3 /arch/sh/Kconfig | |
parent | 4b6ef05b3e89f5bdb888fbd5467e996a9193b884 (diff) | |
download | linux-b4214e41b7152b1964a3421a40251d202ae2d2c0.tar.bz2 |
sh: add SMP support for J2
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>
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r-- | arch/sh/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 2ef6f652bc50..ee086958b2b2 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig @@ -261,6 +261,8 @@ config CPU_SUBTYPE_SH7619 config CPU_SUBTYPE_J2 bool "Support J2 processor" select CPU_J2 + select SYS_SUPPORTS_SMP + select GENERIC_CLOCKEVENTS_BROADCAST if SMP # SH-2A Processor Support |