2 * arch/blackfin/kernel/reboot.c - handle shutdown/reboot
4 * Copyright 2004-2007 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #include <linux/interrupt.h>
10 #include <asm/bfin-global.h>
11 #include <asm/reboot.h>
12 #include <asm/system.h>
14 #if defined(BF537_FAMILY) || defined(BF533_FAMILY) || defined(BF527_FAMILY)
16 #elif defined(BF561_FAMILY)
17 #define SYSCR_VAL 0x20
18 #elif defined(BF548_FAMILY)
19 #define SYSCR_VAL 0x10
23 * Delay min 5 SCLK cycles using worst case CCLK/SCLK ratio (15)
25 #define SWRST_DELAY (5 * 15)
27 /* A system soft reset makes external memory unusable
28 * so force this function into L1.
30 __attribute__((l1_text))
33 /* force BMODE and disable Core B (as needed) */
34 bfin_write_SYSCR(SYSCR_VAL);
36 /* we use asm ssync here because it's save and we save some L1 */
40 /* initiate system soft reset with magic 0x7 */
41 bfin_write_SWRST(0x7);
43 /* Wait for System reset to actually reset, needs to be 5 SCLKs, */
44 /* Assume CCLK / SCLK ratio is worst case (15), and use 5*15 */
46 asm("LSETUP(.Lfoo,.Lfoo) LC0 = %0\n .Lfoo: NOP;\n"
47 : : "a" (SWRST_DELAY) : "LC0", "LT0", "LB0");
49 /* clear system soft reset */
52 /* issue core reset */
58 void native_machine_restart(char *cmd)
62 void machine_restart(char *cmd)
64 native_machine_restart(cmd);
70 void native_machine_halt(void)
72 idle_with_irq_disabled();
75 void machine_halt(void)
77 native_machine_halt();
81 void native_machine_power_off(void)
83 idle_with_irq_disabled();
86 void machine_power_off(void)
88 native_machine_power_off();