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>
13 #include <asm/bfrom.h>
15 /* A system soft reset makes external memory unusable so force
16 * this function into L1. We use the compiler ssync here rather
17 * than SSYNC() because it's safe (no interrupts and such) and
18 * we save some L1. We do not need to force sanity in the SYSCR
19 * register as the BMODE selection bit is cleared by the soft
20 * reset while the Core B bit (on dual core parts) is cleared by
23 __attribute__ ((__l1_text__, __noreturn__))
24 static void bfin_reset(void)
26 /* Wait for completion of "system" events such as cache line
27 * line fills so that we avoid infinite stalls later on as
28 * much as possible. This code is in L1, so it won't trigger
29 * any such event after this point in time.
31 __builtin_bfin_ssync();
33 /* The bootrom checks to see how it was reset and will
34 * automatically perform a software reset for us when
35 * it starts executing after the core reset.
37 if (ANOMALY_05000353 || ANOMALY_05000386) {
38 /* Initiate System software reset. */
39 bfin_write_SWRST(0x7);
41 /* Due to the way reset is handled in the hardware, we need
42 * to delay for 10 SCLKS. The only reliable way to do this is
43 * to calculate the CCLK/SCLK ratio and multiply 10. For now,
44 * we'll assume worse case which is a 1:15 ratio.
47 "LSETUP (1f, 1f) LC0 = %0\n"
54 /* Clear System software reset */
57 /* The BF526 ROM will crash during reset */
58 #if defined(__ADSPBF522__) || defined(__ADSPBF524__) || defined(__ADSPBF526__)
62 /* Wait for the SWRST write to complete. Cannot rely on SSYNC
63 * though as the System state is all reset now.
66 "LSETUP (1f, 1f) LC1 = %0\n"
75 /* Issue core reset */
80 void native_machine_restart(char *cmd)
84 void machine_restart(char *cmd)
86 native_machine_restart(cmd);
88 if (smp_processor_id())
89 smp_call_function((void *)bfin_reset, 0, 1);
95 void native_machine_halt(void)
97 idle_with_irq_disabled();
100 void machine_halt(void)
102 native_machine_halt();
105 __attribute__((weak))
106 void native_machine_power_off(void)
108 idle_with_irq_disabled();
111 void machine_power_off(void)
113 native_machine_power_off();