diff options
author | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2013-06-10 12:20:17 -0400 |
---|---|---|
committer | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2013-06-17 18:35:35 -0400 |
commit | f07cb6a089644e2334c3523af589d9233cc18c74 (patch) | |
tree | 916c2c2ee1e558b7369d565e7d0fbe8443f153b8 /arch/arm/mach-keystone/keystone.h | |
parent | 828989ad87af15b555f783a70efa2cc526b35b3f (diff) | |
download | linux-f07cb6a089644e2334c3523af589d9233cc18c74.tar.gz linux-f07cb6a089644e2334c3523af589d9233cc18c74.tar.bz2 linux-f07cb6a089644e2334c3523af589d9233cc18c74.zip |
ARM: keystone: Enable SMP support on Keystone machines
Add basic SMP support for Keystone machines. This does not
include support for CPU hotplug for now.
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: arm@kernel.org
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm/mach-keystone/keystone.h')
-rw-r--r-- | arch/arm/mach-keystone/keystone.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/mach-keystone/keystone.h b/arch/arm/mach-keystone/keystone.h new file mode 100644 index 000000000000..43a1b4789a6e --- /dev/null +++ b/arch/arm/mach-keystone/keystone.h @@ -0,0 +1,17 @@ +/* + * Copyright 2013 Texas Instruments, Inc. + * Cyril Chemparathy <cyril@ti.com> + * Santosh Shilimkar <santosh.shillimkar@ti.com> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + */ + +#ifndef __KEYSTONE_H__ +#define __KEYSTONE_H__ + +extern struct smp_operations keystone_smp_ops; +extern void secondary_startup(void); + +#endif /* __KEYSTONE_H__ */ |