| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SHcompact irqflags support | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2006 - 2009 Paul Mundt | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License. See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/irqflags.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-07 14:08:55 +01:00
										 |  |  | void notrace arch_local_irq_restore(unsigned long flags) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long __dummy0, __dummy1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-07 14:08:55 +01:00
										 |  |  | 	if (flags == ARCH_IRQ_DISABLED) { | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 		__asm__ __volatile__ ( | 
					
						
							|  |  |  | 			"stc	sr, %0\n\t" | 
					
						
							|  |  |  | 			"or	#0xf0, %0\n\t" | 
					
						
							|  |  |  | 			"ldc	%0, sr\n\t" | 
					
						
							|  |  |  | 			: "=&z" (__dummy0) | 
					
						
							|  |  |  | 			: /* no inputs */ | 
					
						
							|  |  |  | 			: "memory" | 
					
						
							|  |  |  | 		); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		__asm__ __volatile__ ( | 
					
						
							|  |  |  | 			"stc	sr, %0\n\t" | 
					
						
							|  |  |  | 			"and	%1, %0\n\t" | 
					
						
							|  |  |  | #ifdef CONFIG_CPU_HAS_SR_RB
 | 
					
						
							|  |  |  | 			"stc	r6_bank, %1\n\t" | 
					
						
							|  |  |  | 			"or	%1, %0\n\t" | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 			"ldc	%0, sr\n\t" | 
					
						
							|  |  |  | 			: "=&r" (__dummy0), "=r" (__dummy1) | 
					
						
							| 
									
										
										
										
											2010-10-07 14:08:55 +01:00
										 |  |  | 			: "1" (~ARCH_IRQ_DISABLED) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 			: "memory" | 
					
						
							|  |  |  | 		); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-10-07 14:08:55 +01:00
										 |  |  | EXPORT_SYMBOL(arch_local_irq_restore); | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-07 14:08:55 +01:00
										 |  |  | unsigned long notrace arch_local_save_flags(void) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	__asm__ __volatile__ ( | 
					
						
							|  |  |  | 		"stc	sr, %0\n\t" | 
					
						
							|  |  |  | 		"and	#0xf0, %0\n\t" | 
					
						
							|  |  |  | 		: "=&z" (flags) | 
					
						
							|  |  |  | 		: /* no inputs */ | 
					
						
							|  |  |  | 		: "memory" | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return flags; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-10-07 14:08:55 +01:00
										 |  |  | EXPORT_SYMBOL(arch_local_save_flags); |