* [PATCH] ux500: add CPU hotplug support
@ 2010-09-13 11:01 Sundar Iyer
2010-09-13 11:06 ` Russell King - ARM Linux
0 siblings, 1 reply; 3+ messages in thread
From: Sundar Iyer @ 2010-09-13 11:01 UTC (permalink / raw)
To: linux-arm-kernel
Acked-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Sundar Iyer <sundar.iyer@stericsson.com>
---
arch/arm/mach-ux500/Makefile | 1 +
arch/arm/mach-ux500/hotplug.c | 75 +++++++++++++++++++++++++++++++++++++++++
arch/arm/mach-ux500/platsmp.c | 4 ++-
3 files changed, 79 insertions(+), 1 deletions(-)
create mode 100644 arch/arm/mach-ux500/hotplug.c
diff --git a/arch/arm/mach-ux500/Makefile b/arch/arm/mach-ux500/Makefile
index 0097318..bb3e74e 100644
--- a/arch/arm/mach-ux500/Makefile
+++ b/arch/arm/mach-ux500/Makefile
@@ -8,4 +8,5 @@ obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o devices-db8500.o prcmu.o
obj-$(CONFIG_MACH_U8500_MOP) += board-mop500.o board-mop500-sdi.o
obj-$(CONFIG_MACH_U5500) += board-u5500.o
obj-$(CONFIG_SMP) += platsmp.o headsmp.o
+obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o
diff --git a/arch/arm/mach-ux500/hotplug.c b/arch/arm/mach-ux500/hotplug.c
new file mode 100644
index 0000000..b782a03
--- /dev/null
+++ b/arch/arm/mach-ux500/hotplug.c
@@ -0,0 +1,75 @@
+/*
+ * Copyright (C) STMicroelectronics 2009
+ * Copyright (C) ST-Ericsson SA 2010
+ *
+ * License Terms: GNU General Public License v2
+ * Based on ARM realview platform
+ *
+ * Author: Sundar Iyer <sundar.iyer@stericsson.com>
+ *
+ */
+#include <linux/kernel.h>
+#include <linux/errno.h>
+#include <linux/smp.h>
+#include <linux/completion.h>
+
+#include <asm/cacheflush.h>
+
+extern volatile int pen_release;
+
+static DECLARE_COMPLETION(cpu_killed);
+
+static inline void platform_do_lowpower(unsigned int cpu)
+{
+ flush_cache_all();
+
+ /* we put the platform to just WFI */
+ for (;;) {
+ __asm__ __volatile__("dsb\n\t" "wfi\n\t"
+ : : : "memory");
+ if (pen_release == cpu) {
+ /*
+ * OK, proper wakeup, we're done
+ */
+ break;
+ }
+ }
+}
+
+int platform_cpu_kill(unsigned int cpu)
+{
+ return wait_for_completion_timeout(&cpu_killed, 5000);
+}
+
+/*
+ * platform-specific code to shutdown a CPU
+ *
+ * Called with IRQs disabled
+ */
+void platform_cpu_die(unsigned int cpu)
+{
+#ifdef DEBUG
+ unsigned int this_cpu = hard_smp_processor_id();
+
+ if (cpu != this_cpu) {
+ printk(KERN_CRIT "Eek! platform_cpu_die running on %u, should be %u\n",
+ this_cpu, cpu);
+ BUG();
+ }
+#endif
+
+ printk(KERN_NOTICE "CPU%u: shutdown\n", cpu);
+ complete(&cpu_killed);
+
+ /* directly enter low power state, skipping secure registers */
+ platform_do_lowpower(cpu);
+}
+
+int platform_cpu_disable(unsigned int cpu)
+{
+ /*
+ * we don't allow CPU 0 to be shutdown (it is still too special
+ * e.g. clock tick interrupts)
+ */
+ return cpu == 0 ? -EPERM : 0;
+}
diff --git a/arch/arm/mach-ux500/platsmp.c b/arch/arm/mach-ux500/platsmp.c
index 438ef16..ade2e17 100644
--- a/arch/arm/mach-ux500/platsmp.c
+++ b/arch/arm/mach-ux500/platsmp.c
@@ -26,7 +26,7 @@
* control for which core is the next to come out of the secondary
* boot "holding pen"
*/
-volatile int __cpuinitdata pen_release = -1;
+volatile int pen_release = -1;
static unsigned int __init get_core_count(void)
{
@@ -78,6 +78,8 @@ int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
__cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release));
outer_clean_range(__pa(&pen_release), __pa(&pen_release) + 1);
+ smp_cross_call(cpumask_of(cpu));
+
timeout = jiffies + (1 * HZ);
while (time_before(jiffies, timeout)) {
if (pen_release == -1)
--
1.7.2.dirty
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH] ux500: add CPU hotplug support
2010-09-13 11:01 [PATCH] ux500: add CPU hotplug support Sundar Iyer
@ 2010-09-13 11:06 ` Russell King - ARM Linux
2010-09-13 11:26 ` Catalin Marinas
0 siblings, 1 reply; 3+ messages in thread
From: Russell King - ARM Linux @ 2010-09-13 11:06 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Sep 13, 2010 at 04:31:38PM +0530, Sundar Iyer wrote:
> diff --git a/arch/arm/mach-ux500/platsmp.c b/arch/arm/mach-ux500/platsmp.c
> index 438ef16..ade2e17 100644
> --- a/arch/arm/mach-ux500/platsmp.c
> +++ b/arch/arm/mach-ux500/platsmp.c
> @@ -26,7 +26,7 @@
> * control for which core is the next to come out of the secondary
> * boot "holding pen"
> */
> -volatile int __cpuinitdata pen_release = -1;
> +volatile int pen_release = -1;
This looks like an unnecessary change.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] ux500: add CPU hotplug support
2010-09-13 11:06 ` Russell King - ARM Linux
@ 2010-09-13 11:26 ` Catalin Marinas
0 siblings, 0 replies; 3+ messages in thread
From: Catalin Marinas @ 2010-09-13 11:26 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, 2010-09-13 at 12:06 +0100, Russell King - ARM Linux wrote:
> On Mon, Sep 13, 2010 at 04:31:38PM +0530, Sundar Iyer wrote:
> > diff --git a/arch/arm/mach-ux500/platsmp.c b/arch/arm/mach-ux500/platsmp.c
> > index 438ef16..ade2e17 100644
> > --- a/arch/arm/mach-ux500/platsmp.c
> > +++ b/arch/arm/mach-ux500/platsmp.c
> > @@ -26,7 +26,7 @@
> > * control for which core is the next to come out of the secondary
> > * boot "holding pen"
> > */
> > -volatile int __cpuinitdata pen_release = -1;
> > +volatile int pen_release = -1;
>
> This looks like an unnecessary change.
I think it avoids a build warning about mismatched sections but that's
probably the wrong way to fix. We get similar warnings on Versatile
Express and RealView when hotplug is enabled but I haven't had the time
to investigate properly.
--
Catalin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-09-13 11:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-13 11:01 [PATCH] ux500: add CPU hotplug support Sundar Iyer
2010-09-13 11:06 ` Russell King - ARM Linux
2010-09-13 11:26 ` Catalin Marinas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).