mfd: Remove unused wm831x_irq_data_to_mask_reg()
[pohmelfs.git] / arch / sh / kernel / reboot.c
blobca6a5ca64015bf223e64e1303e07bdfa17fd03e8
1 #include <linux/pm.h>
2 #include <linux/kexec.h>
3 #include <linux/kernel.h>
4 #include <linux/reboot.h>
5 #include <linux/module.h>
6 #ifdef CONFIG_SUPERH32
7 #include <asm/watchdog.h>
8 #endif
9 #include <asm/addrspace.h>
10 #include <asm/reboot.h>
11 #include <asm/system.h>
12 #include <asm/tlbflush.h>
14 void (*pm_power_off)(void);
15 EXPORT_SYMBOL(pm_power_off);
17 #ifdef CONFIG_SUPERH32
18 static void watchdog_trigger_immediate(void)
20 sh_wdt_write_cnt(0xFF);
21 sh_wdt_write_csr(0xC2);
23 #endif
25 static void native_machine_restart(char * __unused)
27 local_irq_disable();
29 /* Destroy all of the TLBs in preparation for reset by MMU */
30 __flush_tlb_global();
32 /* Address error with SR.BL=1 first. */
33 trigger_address_error();
35 #ifdef CONFIG_SUPERH32
36 /* If that fails or is unsupported, go for the watchdog next. */
37 watchdog_trigger_immediate();
38 #endif
41 * Give up and sleep.
43 while (1)
44 cpu_sleep();
47 static void native_machine_shutdown(void)
49 smp_send_stop();
52 static void native_machine_power_off(void)
54 if (pm_power_off)
55 pm_power_off();
58 static void native_machine_halt(void)
60 /* stop other cpus */
61 machine_shutdown();
63 /* stop this cpu */
64 stop_this_cpu(NULL);
67 struct machine_ops machine_ops = {
68 .power_off = native_machine_power_off,
69 .shutdown = native_machine_shutdown,
70 .restart = native_machine_restart,
71 .halt = native_machine_halt,
72 #ifdef CONFIG_KEXEC
73 .crash_shutdown = native_machine_crash_shutdown,
74 #endif
77 void machine_power_off(void)
79 machine_ops.power_off();
82 void machine_shutdown(void)
84 machine_ops.shutdown();
87 void machine_restart(char *cmd)
89 machine_ops.restart(cmd);
92 void machine_halt(void)
94 machine_ops.halt();
97 #ifdef CONFIG_KEXEC
98 void machine_crash_shutdown(struct pt_regs *regs)
100 machine_ops.crash_shutdown(regs);
102 #endif