Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1697937

Re: [PATCH] ARM: Use WFI when possible when halting a core

From Russell King - ARM Linux <linux@armlinux.org.uk>
Newsgroups linux.kernel
Subject Re: [PATCH] ARM: Use WFI when possible when halting a core
Date 2017-07-27 14:20 +0200
Message-ID <u7PVM-5YV-19@gated-at.bofh.it> (permalink)
References <u7PM6-5VR-15@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Thu, Jul 27, 2017 at 08:08:03PM +0800, Chen-Yu Tsai wrote:
> On ARM, the kernel busy loops after cleaning up when a core is to be
> halted. This may have the undesired effect of increasing the core
> temperature, at a time when no power or thermal management is
> available, such as a kernel panic or shutdown to halt.
> 
> x86 uses the more efficient HLT (halt) instruction. The equivalent
> instruction on ARM is WFI (wait for interrupt).
> 
> This patch makes the busy loops in the ARM halt/reboot/panic paths
> use WFI when available (as defined in arch/arm/include/asm/barrier.h).
> 
> A touch test indicates that this lowers the surface temperature of the
> Allwinner H3 SoC, with all 4 cores brought up with SMP, from painfully
> hot to just warm to the touch after shutdown to halt.
> 
> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
> ---
> 
> I asked about this some time ago, and the answer was no one had done
> it. So here it is. It is somewhat similar to the patch "arm64:
> Improve parking of stopped CPUs", for arm64 obviously.

There are various errata around the "wfi" instruction on various CPUs
which means that this simple implementation isn't going to work
reliably.

This is where cpu_do_idle() comes in - please use that instead.

-- 
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up
according to speedtest.net.

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] ARM: Use WFI when possible when halting a core Chen-Yu Tsai <wens@csie.org> - 2017-07-27 14:10 +0200
  Re: [PATCH] ARM: Use WFI when possible when halting a core Russell King - ARM Linux <linux@armlinux.org.uk> - 2017-07-27 14:20 +0200
    Re: [PATCH] ARM: Use WFI when possible when halting a core Chen-Yu Tsai <wens@csie.org> - 2017-07-27 14:50 +0200
      Re: [PATCH] ARM: Use WFI when possible when halting a core Chen-Yu Tsai <wens@csie.org> - 2017-07-28 09:00 +0200

csiph-web