| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * arch/blackfin/kernel/reboot.c - handle shutdown/reboot | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright 2004-2007 Analog Devices Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the GPL-2 or later. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <asm/bfin-global.h>
 | 
					
						
							|  |  |  | #include <asm/reboot.h>
 | 
					
						
							|  |  |  | #include <asm/system.h>
 | 
					
						
							| 
									
										
										
										
											2008-10-13 11:33:43 +08:00
										 |  |  | #include <asm/bfrom.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | /* A system soft reset makes external memory unusable so force
 | 
					
						
							|  |  |  |  * this function into L1.  We use the compiler ssync here rather | 
					
						
							|  |  |  |  * than SSYNC() because it's safe (no interrupts and such) and | 
					
						
							|  |  |  |  * we save some L1.  We do not need to force sanity in the SYSCR | 
					
						
							|  |  |  |  * register as the BMODE selection bit is cleared by the soft | 
					
						
							|  |  |  |  * reset while the Core B bit (on dual core parts) is cleared by | 
					
						
							|  |  |  |  * the core reset. | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-02-04 16:49:45 +08:00
										 |  |  | __attribute__ ((__l1_text__, __noreturn__)) | 
					
						
							| 
									
										
										
										
											2009-02-04 16:49:45 +08:00
										 |  |  | static void bfin_reset(void) | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 	/* Wait for completion of "system" events such as cache line
 | 
					
						
							|  |  |  | 	 * line fills so that we avoid infinite stalls later on as | 
					
						
							|  |  |  | 	 * much as possible.  This code is in L1, so it won't trigger | 
					
						
							|  |  |  | 	 * any such event after this point in time. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	__builtin_bfin_ssync(); | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:49:45 +08:00
										 |  |  | 	/* The bootrom checks to see how it was reset and will
 | 
					
						
							|  |  |  | 	 * automatically perform a software reset for us when | 
					
						
							|  |  |  | 	 * it starts executing after the core reset. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (ANOMALY_05000353 || ANOMALY_05000386) { | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 		/* Initiate System software reset. */ | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | 		bfin_write_SWRST(0x7); | 
					
						
							| 
									
										
										
										
											2008-01-22 18:38:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 		/* Due to the way reset is handled in the hardware, we need
 | 
					
						
							| 
									
										
										
										
											2008-10-08 14:46:09 +08:00
										 |  |  | 		 * to delay for 10 SCLKS.  The only reliable way to do this is | 
					
						
							|  |  |  | 		 * to calculate the CCLK/SCLK ratio and multiply 10.  For now, | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 		 * we'll assume worse case which is a 1:15 ratio. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		asm( | 
					
						
							|  |  |  | 			"LSETUP (1f, 1f) LC0 = %0\n" | 
					
						
							|  |  |  | 			"1: nop;" | 
					
						
							|  |  |  | 			: | 
					
						
							| 
									
										
										
										
											2008-10-08 14:46:09 +08:00
										 |  |  | 			: "a" (15 * 10) | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 			: "LC0", "LB0", "LT0" | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2008-01-22 18:38:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 		/* Clear System software reset */ | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | 		bfin_write_SWRST(0); | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:49:45 +08:00
										 |  |  | 		/* The BF526 ROM will crash during reset */ | 
					
						
							|  |  |  | #if defined(__ADSPBF522__) || defined(__ADSPBF524__) || defined(__ADSPBF526__)
 | 
					
						
							|  |  |  | 		bfin_read_SWRST(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 		/* Wait for the SWRST write to complete.  Cannot rely on SSYNC
 | 
					
						
							|  |  |  | 		 * though as the System state is all reset now. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		asm( | 
					
						
							|  |  |  | 			"LSETUP (1f, 1f) LC1 = %0\n" | 
					
						
							|  |  |  | 			"1: nop;" | 
					
						
							|  |  |  | 			: | 
					
						
							|  |  |  | 			: "a" (15 * 1) | 
					
						
							|  |  |  | 			: "LC1", "LB1", "LT1" | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:49:45 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:49:45 +08:00
										 |  |  | 	while (1) | 
					
						
							| 
									
										
										
										
											2008-04-23 08:01:31 +08:00
										 |  |  | 		/* Issue core reset */ | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | 		asm("raise 1"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __attribute__((weak)) | 
					
						
							|  |  |  | void native_machine_restart(char *cmd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void machine_restart(char *cmd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	native_machine_restart(cmd); | 
					
						
							|  |  |  | 	local_irq_disable(); | 
					
						
							| 
									
										
										
										
											2008-11-18 17:48:22 +08:00
										 |  |  | 	if (smp_processor_id()) | 
					
						
							|  |  |  | 		smp_call_function((void *)bfin_reset, 0, 1); | 
					
						
							| 
									
										
										
										
											2008-10-13 11:33:43 +08:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2008-11-18 17:48:22 +08:00
										 |  |  | 		bfin_reset(); | 
					
						
							| 
									
										
										
										
											2007-10-11 00:29:49 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __attribute__((weak)) | 
					
						
							|  |  |  | void native_machine_halt(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	idle_with_irq_disabled(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void machine_halt(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	native_machine_halt(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __attribute__((weak)) | 
					
						
							|  |  |  | void native_machine_power_off(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	idle_with_irq_disabled(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void machine_power_off(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	native_machine_power_off(); | 
					
						
							|  |  |  | } |