2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2001, 06 by Ralf Baechle (ralf@linux-mips.org)
7 * Copyright (C) 2001 MIPS Technologies, Inc.
9 #include <linux/kernel.h>
10 #include <linux/export.h>
12 #include <linux/types.h>
13 #include <linux/reboot.h>
14 #include <linux/delay.h>
16 #include <asm/compiler.h>
18 #include <asm/mipsregs.h>
19 #include <asm/reboot.h>
22 * Urgs ... Too many MIPS machines to handle this in a generic way.
23 * So handle all using function pointers to machine specific
26 void (*_machine_restart)(char *command);
27 void (*_machine_halt)(void);
28 void (*pm_power_off)(void);
30 EXPORT_SYMBOL(pm_power_off);
32 static void machine_hang(void)
35 * We're hanging the system so we don't want to be interrupted anymore.
36 * Any interrupt handlers that ran would at best be useless & at worst
37 * go awry because the system isn't in a functional state.
42 * Mask all interrupts, giving us a better chance of remaining in the
43 * low power wait state.
45 clear_c0_status(ST0_IM);
50 * We know that the wait instruction is supported so
51 * make use of it directly, leaving interrupts
56 ".set " MIPS_ISA_ARCH_LEVEL "\n\t"
59 } else if (cpu_wait) {
61 * Try the cpu_wait() callback. This isn't ideal since
62 * it'll re-enable interrupts, but that ought to be
63 * harmless given that they're all masked.
69 * We're going to burn some power running round the
70 * loop, but we don't really have a choice. This isn't
71 * a path we should expect to run for long during
77 * In most modern MIPS CPUs interrupts will cause the wait
78 * instruction to graduate even when disabled, and in some
79 * cases even when masked. In order to prevent a timer
80 * interrupt from continuously taking us out of the low power
81 * wait state, we clear any pending timer interrupt here.
88 void machine_restart(char *command)
91 _machine_restart(command);
97 do_kernel_restart(command);
99 pr_emerg("Reboot failed -- System halted\n");
103 void machine_halt(void)
115 void machine_power_off(void)