This patch adds basic SMP support for Keystone machines. Nothing very fancy here, just enough to get 4 CPUs booted up. This does not include support for hotplug, etc.
Signed-off-by: Vitaly Andrianov <vita...@ti.com> Signed-off-by: Cyril Chemparathy <cy...@ti.com> --- arch/arm/Kconfig | 1 + arch/arm/configs/keystone_defconfig | 2 + arch/arm/mach-keystone/Makefile | 1 + arch/arm/mach-keystone/keystone.c | 3 ++ arch/arm/mach-keystone/keystone.h | 23 +++++++++++ arch/arm/mach-keystone/platsmp.c | 74 +++++++++++++++++++++++++++++++++++ 6 files changed, 104 insertions(+) create mode 100644 arch/arm/mach-keystone/keystone.h create mode 100644 arch/arm/mach-keystone/platsmp.c diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index e0588e3..7a76924 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -372,6 +372,7 @@ config ARCH_KEYSTONE select SPARSE_IRQ select NEED_MACH_MEMORY_H select HAVE_SCHED_CLOCK + select HAVE_SMP help Support for boards based on the Texas Instruments Keystone family of SoCs. diff --git a/arch/arm/configs/keystone_defconfig b/arch/arm/configs/keystone_defconfig index 7f2a04b..5f71e66 100644 --- a/arch/arm/configs/keystone_defconfig +++ b/arch/arm/configs/keystone_defconfig @@ -1,7 +1,9 @@ CONFIG_EXPERIMENTAL=y CONFIG_BLK_DEV_INITRD=y CONFIG_ARCH_KEYSTONE=y +CONFIG_SMP=y CONFIG_ARM_ARCH_TIMER=y +CONFIG_NR_CPUS=4 CONFIG_AEABI=y CONFIG_HIGHMEM=y CONFIG_VFP=y diff --git a/arch/arm/mach-keystone/Makefile b/arch/arm/mach-keystone/Makefile index d4671d5..3f6b8ab 100644 --- a/arch/arm/mach-keystone/Makefile +++ b/arch/arm/mach-keystone/Makefile @@ -1 +1,2 @@ obj-y := keystone.o +obj-$(CONFIG_SMP) += platsmp.o diff --git a/arch/arm/mach-keystone/keystone.c b/arch/arm/mach-keystone/keystone.c index 4bc60ec..a4eed57 100644 --- a/arch/arm/mach-keystone/keystone.c +++ b/arch/arm/mach-keystone/keystone.c @@ -26,6 +26,8 @@ #include <asm/arch_timer.h> #include <asm/hardware/gic.h> +#include "keystone.h" + static struct map_desc io_desc[] = { { .virtual = 0xfe800000UL, @@ -73,6 +75,7 @@ static const char *keystone_match[] __initconst = { }; DT_MACHINE_START(KEYSTONE, "Keystone") + smp_ops(keystone_smp_ops) .map_io = keystone_map_io, .init_irq = keystone_init_irq, .timer = &keystone_timer, diff --git a/arch/arm/mach-keystone/keystone.h b/arch/arm/mach-keystone/keystone.h new file mode 100644 index 0000000..71bd0f4 --- /dev/null +++ b/arch/arm/mach-keystone/keystone.h @@ -0,0 +1,23 @@ +/* + * Copyright 2010-2012 Texas Instruments, Inc. + * + * 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. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __KEYSTONE_H__ +#define __KEYSTONE_H__ + +extern struct smp_ops keystone_smp_ops; +extern void secondary_startup(void); + +#endif /* __KEYSTONE_H__ */ diff --git a/arch/arm/mach-keystone/platsmp.c b/arch/arm/mach-keystone/platsmp.c new file mode 100644 index 0000000..dbe7601 --- /dev/null +++ b/arch/arm/mach-keystone/platsmp.c @@ -0,0 +1,74 @@ +/* + * Copyright 2012 Texas Instruments, Inc. + * + * Based on platsmp.c, Copyright 2010-2011 Calxeda, Inc. + * Based on platsmp.c, Copyright (C) 2002 ARM Ltd. + * + * 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. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see <http://www.gnu.org/licenses/>. + */ +#include <linux/init.h> +#include <linux/smp.h> +#include <linux/io.h> + +#include <asm/smp_plat.h> +#include <asm/smp_ops.h> +#include <asm/hardware/gic.h> +#include <asm/cacheflush.h> +#include <asm/memory.h> + +#include "keystone.h" + +static void __init keystone_smp_init_cpus(void) +{ + unsigned int i, ncores; + + ncores = 4; + + /* sanity check */ + if (ncores > NR_CPUS) { + pr_warn("restricted to %d cpus\n", NR_CPUS); + ncores = NR_CPUS; + } + + for (i = 0; i < ncores; i++) + set_cpu_possible(i, true); + + set_smp_cross_call(gic_raise_softirq); +} + +static void __init keystone_smp_prepare_cpus(unsigned int max_cpus) +{ + /* nothing for now */ +} + +static void __cpuinit keystone_secondary_init(unsigned int cpu) +{ + gic_secondary_init(0); +} + +static int __cpuinit +keystone_boot_secondary(unsigned int cpu, struct task_struct *idle) +{ + unsigned long *ptr; + + ptr = phys_to_virt(0x800001f0); + ptr[cpu] = virt_to_idmap(&secondary_startup); + __cpuc_flush_dcache_area(ptr, sizeof(ptr) * 4); + + return 0; +} + +struct smp_ops keystone_smp_ops __initdata = { + smp_init_ops(keystone) + smp_secondary_ops(keystone) +}; -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/