diff options
| author | Srinivas Kandagatla <srinivas.kandagatla@st.com> | 2013-06-25 12:15:10 +0100 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2013-06-25 13:26:47 -0700 | 
| commit | 65ebcc1158891c8c0abef726d59a7840454ad25d (patch) | |
| tree | 9907cd1af2d7f679f2b6a5a1192b2ff5df7f11c9 /arch/arm/mach-sti | |
| parent | 317ddd256b9c24b0d78fa8018f80f1e495481a10 (diff) | |
| download | linux-65ebcc1158891c8c0abef726d59a7840454ad25d.tar.bz2 | |
ARM: sti: Add STiH415 SOC support
The STiH415 is the next generation of HD, AVC set-top box processors for
satellite, cable, terrestrial and IP-STB markets. It is an ARM Cortex-A9
1.0 GHz, dual-core CPU.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
CC: Stephen Gallimore <stephen.gallimore@st.com>
CC: Stuart Menefy <stuart.menefy@st.com>
CC: Arnd Bergmann <arnd@arndb.de>
CC: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-sti')
| -rw-r--r-- | arch/arm/mach-sti/Kconfig | 36 | ||||
| -rw-r--r-- | arch/arm/mach-sti/Makefile | 2 | ||||
| -rw-r--r-- | arch/arm/mach-sti/board-dt.c | 47 | ||||
| -rw-r--r-- | arch/arm/mach-sti/headsmp.S | 44 | ||||
| -rw-r--r-- | arch/arm/mach-sti/platsmp.c | 117 | ||||
| -rw-r--r-- | arch/arm/mach-sti/smp.h | 17 | 
6 files changed, 263 insertions, 0 deletions
| diff --git a/arch/arm/mach-sti/Kconfig b/arch/arm/mach-sti/Kconfig new file mode 100644 index 000000000000..23405b584adb --- /dev/null +++ b/arch/arm/mach-sti/Kconfig @@ -0,0 +1,36 @@ +menuconfig ARCH_STI +	bool "STMicroelectronics Consumer Electronics SOCs with Device Trees" if ARCH_MULTI_V7 +	select GENERIC_CLOCKEVENTS +	select CLKDEV_LOOKUP +	select ARM_GIC +	select ARM_GLOBAL_TIMER +	select PINCTRL +	select PINCTRL_ST +	select MFD_SYSCON +	select MIGHT_HAVE_CACHE_L2X0 +	select HAVE_SMP +	select HAVE_ARM_SCU if SMP +	select ARCH_REQUIRE_GPIOLIB +	select ARM_ERRATA_720789 +	select ARM_ERRATA_754322 +	select PL310_ERRATA_753970 if CACHE_PL310 +	select PL310_ERRATA_769419 if CACHE_PL310 +	help +	  Include support for STiH41x SOCs like STiH415/416 using the device tree +	  for discovery +	  More information at Documentation/arm/STiH41x and +	  at Documentation/devicetree + + +if ARCH_STI + +config SOC_STIH415 +	bool "STiH415 STMicroelectronics Consumer Electronics family" +	default y +	help +	  This enables support for STMicroelectronics Digital Consumer +	  Electronics family StiH415 parts, primarily targetted at set-top-box +	  and other digital audio/video applications using Flattned Device +	  Trees. + +endif diff --git a/arch/arm/mach-sti/Makefile b/arch/arm/mach-sti/Makefile new file mode 100644 index 000000000000..acb330916333 --- /dev/null +++ b/arch/arm/mach-sti/Makefile @@ -0,0 +1,2 @@ +obj-$(CONFIG_SMP)		+= platsmp.o headsmp.o +obj-$(CONFIG_ARCH_STI) 		+= board-dt.o diff --git a/arch/arm/mach-sti/board-dt.c b/arch/arm/mach-sti/board-dt.c new file mode 100644 index 000000000000..3faf64221d45 --- /dev/null +++ b/arch/arm/mach-sti/board-dt.c @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2013 STMicroelectronics (R&D) Limited. + * Author(s): Srinivas Kandagatla <srinivas.kandagatla@st.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include <linux/clk-provider.h> +#include <linux/clocksource.h> +#include <linux/irq.h> +#include <asm/hardware/cache-l2x0.h> +#include <asm/mach/arch.h> + +#include "smp.h" + +void __init stih41x_l2x0_init(void) +{ +	u32 way_size = 0x4; +	u32 aux_ctrl; +	/* may be this can be encoded in macros like BIT*() */ +	aux_ctrl = (0x1 << L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT) | +		(0x1 << L2X0_AUX_CTRL_DATA_PREFETCH_SHIFT) | +		(0x1 << L2X0_AUX_CTRL_INSTR_PREFETCH_SHIFT) | +		(way_size << L2X0_AUX_CTRL_WAY_SIZE_SHIFT); + +	l2x0_of_init(aux_ctrl, L2X0_AUX_CTRL_MASK); +} + +static void __init stih41x_timer_init(void) +{ +	of_clk_init(NULL); +	clocksource_of_init(); +	stih41x_l2x0_init(); +} + +static const char *stih41x_dt_match[] __initdata = { +	"st,stih415", +	NULL +}; + +DT_MACHINE_START(STM, "STiH415 SoC with Flattened Device Tree") +	.init_time	= stih41x_timer_init, +	.smp		= smp_ops(sti_smp_ops), +	.dt_compat	= stih41x_dt_match, +MACHINE_END diff --git a/arch/arm/mach-sti/headsmp.S b/arch/arm/mach-sti/headsmp.S new file mode 100644 index 000000000000..78ebc7559f53 --- /dev/null +++ b/arch/arm/mach-sti/headsmp.S @@ -0,0 +1,44 @@ +/* + *  arch/arm/mach-sti/headsmp.S + * + * Copyright (C) 2013 STMicroelectronics (R&D) Limited. + *		http://www.st.com + * + * Cloned from linux/arch/arm/mach-vexpress/headsmp.S + * + *  Copyright (c) 2003 ARM Limited + *  All Rights Reserved + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ +#include <linux/linkage.h> +#include <linux/init.h> + +	__INIT + +/* + * ST specific entry point for secondary CPUs.  This provides + * a "holding pen" into which all secondary cores are held until we're + * ready for them to initialise. + */ +ENTRY(sti_secondary_startup) +	mrc	p15, 0, r0, c0, c0, 5 +	and	r0, r0, #15 +	adr	r4, 1f +	ldmia	r4, {r5, r6} +	sub	r4, r4, r5 +	add	r6, r6, r4 +pen:	ldr	r7, [r6] +	cmp	r7, r0 +	bne	pen + +	/* +	 * we've been released from the holding pen: secondary_stack +	 * should now contain the SVC stack for this core +	 */ +	b	secondary_startup + +1:	.long	. +	.long	pen_release diff --git a/arch/arm/mach-sti/platsmp.c b/arch/arm/mach-sti/platsmp.c new file mode 100644 index 000000000000..977a863468fc --- /dev/null +++ b/arch/arm/mach-sti/platsmp.c @@ -0,0 +1,117 @@ +/* + *  arch/arm/mach-sti/platsmp.c + * + * Copyright (C) 2013 STMicroelectronics (R&D) Limited. + *		http://www.st.com + * + * Cloned from linux/arch/arm/mach-vexpress/platsmp.c + * + *  Copyright (C) 2002 ARM Ltd. + *  All Rights Reserved + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ +#include <linux/init.h> +#include <linux/errno.h> +#include <linux/delay.h> +#include <linux/smp.h> +#include <linux/io.h> +#include <linux/of.h> +#include <linux/of_address.h> + +#include <asm/cacheflush.h> +#include <asm/smp_plat.h> +#include <asm/smp_scu.h> + +#include "smp.h" + +static void __cpuinit write_pen_release(int val) +{ +	pen_release = val; +	smp_wmb(); +	__cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release)); +	outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1)); +} + +static DEFINE_SPINLOCK(boot_lock); + +void __cpuinit sti_secondary_init(unsigned int cpu) +{ +	trace_hardirqs_off(); + +	/* +	 * let the primary processor know we're out of the +	 * pen, then head off into the C entry point +	 */ +	write_pen_release(-1); + +	/* +	 * Synchronise with the boot thread. +	 */ +	spin_lock(&boot_lock); +	spin_unlock(&boot_lock); +} + +int __cpuinit sti_boot_secondary(unsigned int cpu, struct task_struct *idle) +{ +	unsigned long timeout; + +	/* +	 * set synchronisation state between this boot processor +	 * and the secondary one +	 */ +	spin_lock(&boot_lock); + +	/* +	 * The secondary processor is waiting to be released from +	 * the holding pen - release it, then wait for it to flag +	 * that it has been released by resetting pen_release. +	 * +	 * Note that "pen_release" is the hardware CPU ID, whereas +	 * "cpu" is Linux's internal ID. +	 */ +	write_pen_release(cpu_logical_map(cpu)); + +	/* +	 * Send the secondary CPU a soft interrupt, thereby causing +	 * it to jump to the secondary entrypoint. +	 */ +	arch_send_wakeup_ipi_mask(cpumask_of(cpu)); + +	timeout = jiffies + (1 * HZ); +	while (time_before(jiffies, timeout)) { +		smp_rmb(); +		if (pen_release == -1) +			break; + +		udelay(10); +	} + +	/* +	 * now the secondary core is starting up let it run its +	 * calibrations, then wait for it to finish +	 */ +	spin_unlock(&boot_lock); + +	return pen_release != -1 ? -ENOSYS : 0; +} + +void __init sti_smp_prepare_cpus(unsigned int max_cpus) +{ +	void __iomem *scu_base = NULL; +	struct device_node *np = of_find_compatible_node( +					NULL, NULL, "arm,cortex-a9-scu"); +	if (np) { +		scu_base = of_iomap(np, 0); +		scu_enable(scu_base); +		of_node_put(np); +	} +} + +struct smp_operations __initdata sti_smp_ops = { +	.smp_prepare_cpus	= sti_smp_prepare_cpus, +	.smp_secondary_init	= sti_secondary_init, +	.smp_boot_secondary	= sti_boot_secondary, +}; diff --git a/arch/arm/mach-sti/smp.h b/arch/arm/mach-sti/smp.h new file mode 100644 index 000000000000..1871b72b1a7e --- /dev/null +++ b/arch/arm/mach-sti/smp.h @@ -0,0 +1,17 @@ +/* + *  arch/arm/mach-sti/smp.h + * + * Copyright (C) 2013 STMicroelectronics (R&D) Limited. + *		http://www.st.com + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __MACH_STI_SMP_H +#define __MACH_STI_SMP_H + +extern struct smp_operations	sti_smp_ops; + +#endif |