| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SHmedia 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>
 | 
					
						
							|  |  |  | #include <cpu/registers.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | void notrace arch_local_irq_restore(unsigned long flags) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long long __dummy; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | 	if (flags == ARCH_IRQ_DISABLED) { | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 		__asm__ __volatile__ ( | 
					
						
							|  |  |  | 			"getcon	" __SR ", %0\n\t" | 
					
						
							|  |  |  | 			"or	%0, %1, %0\n\t" | 
					
						
							|  |  |  | 			"putcon	%0, " __SR "\n\t" | 
					
						
							|  |  |  | 			: "=&r" (__dummy) | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | 			: "r" (ARCH_IRQ_DISABLED) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 		); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		__asm__ __volatile__ ( | 
					
						
							|  |  |  | 			"getcon	" __SR ", %0\n\t" | 
					
						
							|  |  |  | 			"and	%0, %1, %0\n\t" | 
					
						
							|  |  |  | 			"putcon	%0, " __SR "\n\t" | 
					
						
							|  |  |  | 			: "=&r" (__dummy) | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | 			: "r" (~ARCH_IRQ_DISABLED) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 		); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | EXPORT_SYMBOL(arch_local_irq_restore); | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | unsigned long notrace arch_local_save_flags(void) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	__asm__ __volatile__ ( | 
					
						
							|  |  |  | 		"getcon	" __SR ", %0\n\t" | 
					
						
							|  |  |  | 		"and	%0, %1, %0" | 
					
						
							|  |  |  | 		: "=&r" (flags) | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | 		: "r" (ARCH_IRQ_DISABLED) | 
					
						
							| 
									
										
										
										
											2009-10-17 21:06:39 +09:00
										 |  |  | 	); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return flags; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-10-27 15:34:51 +09:00
										 |  |  | EXPORT_SYMBOL(arch_local_save_flags); |