Commit 86fe639a authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Paul Walmsley

riscv: enter WFI in default_power_off() if SBI does not shutdown

Provide a new default fallback power off that just sits in a wfi loop
to save some power.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarAnup Patel <anup@brainfault.org>
Reviewed-by: default avatarAtish Patra <atish.patra@wdc.com>
[paul.walmsley@sifive.com: split the WFI fix apart from the
 nommu-related default_power_off() changes]
Signed-off-by: default avatarPaul Walmsley <paul.walmsley@sifive.com>
parent a99d8080
......@@ -10,7 +10,8 @@
static void default_power_off(void)
{
sbi_shutdown();
while (1);
while (1)
wait_for_interrupt();
}
void (*pm_power_off)(void) = default_power_off;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment