On Fri, Sep 26, 2014 at 01:46:14PM +0100, Mark Rutland wrote: > On Fri, Sep 26, 2014 at 01:20:04PM +0100, Russell King - ARM Linux wrote: > > On Fri, Sep 26, 2014 at 07:25:01PM +0800, Chenhui Zhao wrote: > > > +static inline void ls1_do_lowpower(unsigned int cpu, int *spurious) > > > +{ > > > + /* > > > + * there is no power-control hardware on this platform, so all > > > + * we can do is put the core into WFI; this is safe as the calling > > > + * code will have already disabled interrupts > > > + */ > > > + for (;;) { > > > + wfi(); > > > + > > > + if (pen_release == cpu_logical_map(cpu)) { > > > + /*OK, proper wakeup, we're done*/ > > > + break; > > > + } > > > + > > > + /* > > > + * Getting here, means that we have come out of WFI without > > > + * having been woken up - this shouldn't happen > > > + * > > > + * Just note it happening - when we're woken, we can report > > > + * its occurrence. > > > + */ > > > + (*spurious)++; > > > + } > > > +} > > > > This is pretty much unacceptable - this breaks kexec(), and suspend > > support because your secondary CPUs aren't really sleeping, they're > > sitting in a loop doing nothing. > > Agreed. > > This looks to be a carbon copy of the vexpress pseudo-hotplug in > arch/arm/mach-vexpress/hotplug.c, which is obviously broken in the way > you describe above. Perhaps we should go about ripping that out?
The Versatile Express does not support suspend so the only problem case is kexec. However, isn't this support needed for big.LITTLE, and as the Versatile Express is the platform which these features get developed on, having working CPU hotplug seems rather fundamental for ARM kernel feature development. In that regard, Versatile Express is something of a special case. -- FTTC broadband for 0.8mile line: currently at 9.5Mbps down 400kbps up according to speedtest.net. -- 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/