OSDN Git Service

riscv: cleanup the default power off implementation
authorChristoph Hellwig <hch@lst.de>
Mon, 28 Oct 2019 12:10:35 +0000 (13:10 +0100)
committerPaul Walmsley <paul.walmsley@sifive.com>
Wed, 13 Nov 2019 21:22:52 +0000 (13:22 -0800)
Move the sbi poweroff to a separate function and file that is only
compiled if CONFIG_SBI is set.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Anup Patel <anup@brainfault.org>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
[paul.walmsley@sifive.com: split the WFI fix into a separate patch]
Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com>
arch/riscv/kernel/Makefile
arch/riscv/kernel/reset.c
arch/riscv/kernel/sbi.c [new file with mode: 0644]

index 696020f..d8c35fa 100644 (file)
@@ -41,5 +41,6 @@ obj-$(CONFIG_DYNAMIC_FTRACE)  += mcount-dyn.o
 obj-$(CONFIG_PERF_EVENTS)      += perf_event.o
 obj-$(CONFIG_PERF_EVENTS)      += perf_callchain.o
 obj-$(CONFIG_HAVE_PERF_REGS)   += perf_regs.o
+obj-$(CONFIG_RISCV_SBI)                += sbi.o
 
 clean:
index 485be42..ee5878d 100644 (file)
@@ -5,11 +5,9 @@
 
 #include <linux/reboot.h>
 #include <linux/pm.h>
-#include <asm/sbi.h>
 
 static void default_power_off(void)
 {
-       sbi_shutdown();
        while (1)
                wait_for_interrupt();
 }
diff --git a/arch/riscv/kernel/sbi.c b/arch/riscv/kernel/sbi.c
new file mode 100644 (file)
index 0000000..f6c7c3e
--- /dev/null
@@ -0,0 +1,17 @@
+// SPDX-License-Identifier: GPL-2.0-only
+
+#include <linux/init.h>
+#include <linux/pm.h>
+#include <asm/sbi.h>
+
+static void sbi_power_off(void)
+{
+       sbi_shutdown();
+}
+
+static int __init sbi_init(void)
+{
+       pm_power_off = sbi_power_off;
+       return 0;
+}
+early_initcall(sbi_init);