[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 09 of 10] arm: SMP CPU shutdown
# HG changeset patch # User Tim Deegan <tim@xxxxxxx> # Date 1330018799 0 # Node ID a78bc9b8421492e0545c6d52c7a32b9de9737d61 # Parent d35b52e5fde829dfbaf3da73e0716d004faded2f arm: SMP CPU shutdown For completeness, also implelent the CPU shutdown path. Signed-off-by: TIm Deegan <tim@xxxxxxx> diff -r d35b52e5fde8 -r a78bc9b84214 xen/arch/arm/domain.c --- a/xen/arch/arm/domain.c Thu Feb 23 17:39:59 2012 +0000 +++ b/xen/arch/arm/domain.c Thu Feb 23 17:39:59 2012 +0000 @@ -31,12 +31,10 @@ void idle_loop(void) { for ( ; ; ) { - /* TODO - if ( cpu_is_offline(smp_processor_id()) ) - play_dead(); - (*pm_idle)(); - BUG(); - */ + if ( cpu_is_offline(smp_processor_id()) ) + stop_cpu(); + + /* TODO: (*pm_idle)(); */ do_tasklet(); do_softirq(); } diff -r d35b52e5fde8 -r a78bc9b84214 xen/arch/arm/gic.c --- a/xen/arch/arm/gic.c Thu Feb 23 17:39:59 2012 +0000 +++ b/xen/arch/arm/gic.c Thu Feb 23 17:39:59 2012 +0000 @@ -235,6 +235,11 @@ static void __cpuinit gic_cpu_init(void) GICC[GICC_CTLR] = GICC_CTL_ENABLE|GICC_CTL_EOI; /* Turn on delivery */ } +static void gic_cpu_disable(void) +{ + GICC[GICC_CTLR] = 0; +} + static void __cpuinit gic_hyp_init(void) { uint32_t vtr; @@ -246,6 +251,11 @@ static void __cpuinit gic_hyp_init(void) GICH[GICH_MISR] = GICH_MISR_EOI; } +static void __cpuinit gic_hyp_disable(void) +{ + GICH[GICH_HCR] = 0; +} + /* Set up the GIC */ int __init gic_init(void) { @@ -282,6 +292,15 @@ void __cpuinit gic_init_secondary_cpu(vo spin_unlock(&gic.lock); } +/* Shut down the per-CPU GIC interface */ +void gic_disable_cpu(void) +{ + spin_lock(&gic.lock); + gic_cpu_disable(); + gic_hyp_disable(); + spin_unlock(&gic.lock); +} + void gic_route_irqs(void) { /* XXX should get these from DT */ diff -r d35b52e5fde8 -r a78bc9b84214 xen/arch/arm/gic.h --- a/xen/arch/arm/gic.h Thu Feb 23 17:39:59 2012 +0000 +++ b/xen/arch/arm/gic.h Thu Feb 23 17:39:59 2012 +0000 @@ -142,6 +142,8 @@ extern void gic_interrupt(struct cpu_use extern int gic_init(void); /* Bring up a secondary CPU's per-CPU GIC interface */ extern void gic_init_secondary_cpu(void); +/* Take down a CPU's per-CPU GIC interface */ +extern void gic_disable_cpu(void); /* setup the gic virtual interface for a guest */ extern void gicv_setup(struct domain *d); #endif diff -r d35b52e5fde8 -r a78bc9b84214 xen/arch/arm/smpboot.c --- a/xen/arch/arm/smpboot.c Thu Feb 23 17:39:59 2012 +0000 +++ b/xen/arch/arm/smpboot.c Thu Feb 23 17:39:59 2012 +0000 @@ -18,6 +18,7 @@ #include <xen/cpu.h> #include <xen/cpumask.h> +#include <xen/delay.h> #include <xen/errno.h> #include <xen/init.h> #include <xen/mm.h> @@ -58,6 +59,7 @@ smp_prepare_cpus (unsigned int max_cpus) /* Shared state for coordinating CPU bringup */ unsigned long smp_up_cpu = 0; +static bool_t cpu_is_dead = 0; /* Boot the current CPU */ void __cpuinit start_secondary(unsigned long boot_phys_offset, @@ -98,8 +100,35 @@ void __cpuinit start_secondary(unsigned /* Shut down the current CPU */ void __cpu_disable(void) { - /* TODO: take down timers, GIC, &c. */ - BUG(); + unsigned int cpu = get_processor_id(); + + local_irq_disable(); + gic_disable_cpu(); + /* Allow any queued timer interrupts to get serviced */ + local_irq_enable(); + mdelay(1); + local_irq_disable(); + + /* It's now safe to remove this processor from the online map */ + cpumask_clear_cpu(cpu, &cpu_online_map); + + if ( cpu_disable_scheduler(cpu) ) + BUG(); + mb(); + + /* Return to caller; eventually the IPI mecahnism will unwind and the + * scheduler will drop to the idle loop, which will call stop_cpu(). */ +} + +void stop_cpu(void) +{ + local_irq_disable(); + cpu_is_dead = 1; + /* Make sure the write happens before we sleep forever */ + dsb(); + isb(); + while ( 1 ) + asm volatile("wfi"); } /* Bring up a remote CPU */ @@ -131,8 +160,19 @@ int __cpu_up(unsigned int cpu) /* Wait for a remote CPU to die */ void __cpu_die(unsigned int cpu) { - /* TODO: interlock with __cpu_disable */ - BUG(); + unsigned int i = 0; + + while ( !cpu_is_dead ) + { + mdelay(100); + cpu_relax(); + process_pending_softirqs(); + if ( (++i % 10) == 0 ) + printk(KERN_ERR "CPU %u still not dead...\n", cpu); + mb(); + } + cpu_is_dead = 0; + mb(); } diff -r d35b52e5fde8 -r a78bc9b84214 xen/include/asm-arm/smp.h --- a/xen/include/asm-arm/smp.h Thu Feb 23 17:39:59 2012 +0000 +++ b/xen/include/asm-arm/smp.h Thu Feb 23 17:39:59 2012 +0000 @@ -14,6 +14,8 @@ DECLARE_PER_CPU(cpumask_var_t, cpu_core_ #define raw_smp_processor_id() (get_processor_id()) +extern void stop_cpu(void); + #endif /* * Local variables: _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |