| 
									
										
										
										
											2009-05-18 02:10:05 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Copyright 2007 Sony Corporation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  *  it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  *  the Free Software Foundation; version 2 of the License. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  *  GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  *  along with this program. | 
					
						
							|  |  |  |  *  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _ASM_POWERPC_EMULATED_OPS_H
 | 
					
						
							|  |  |  | #define _ASM_POWERPC_EMULATED_OPS_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-26 16:09:06 -07:00
										 |  |  | #include <linux/atomic.h>
 | 
					
						
							| 
									
										
										
										
											2009-10-18 01:13:00 +00:00
										 |  |  | #include <linux/perf_event.h>
 | 
					
						
							| 
									
										
										
										
											2009-05-18 02:10:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_PPC_EMULATED_STATS
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ppc_emulated_entry { | 
					
						
							|  |  |  | 	const char *name; | 
					
						
							|  |  |  | 	atomic_t val; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern struct ppc_emulated { | 
					
						
							|  |  |  | #ifdef CONFIG_ALTIVEC
 | 
					
						
							|  |  |  | 	struct ppc_emulated_entry altivec; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	struct ppc_emulated_entry dcba; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry dcbz; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry fp_pair; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry isel; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry mcrxr; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry mfpvr; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry multiple; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry popcntb; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry spe; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry string; | 
					
						
							| 
									
										
										
										
											2013-10-28 22:07:59 -05:00
										 |  |  | 	struct ppc_emulated_entry sync; | 
					
						
							| 
									
										
										
										
											2009-05-18 02:10:05 +00:00
										 |  |  | 	struct ppc_emulated_entry unaligned; | 
					
						
							|  |  |  | #ifdef CONFIG_MATH_EMULATION
 | 
					
						
							|  |  |  | 	struct ppc_emulated_entry math; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef CONFIG_VSX
 | 
					
						
							|  |  |  | 	struct ppc_emulated_entry vsx; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-03-02 15:18:48 +00:00
										 |  |  | #ifdef CONFIG_PPC64
 | 
					
						
							|  |  |  | 	struct ppc_emulated_entry mfdscr; | 
					
						
							|  |  |  | 	struct ppc_emulated_entry mtdscr; | 
					
						
							| 
									
										
										
										
											2014-03-28 17:01:23 +11:00
										 |  |  | 	struct ppc_emulated_entry lq_stq; | 
					
						
							| 
									
										
										
										
											2011-03-02 15:18:48 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-05-18 02:10:05 +00:00
										 |  |  | } ppc_emulated; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern u32 ppc_warn_emulated; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern void ppc_warn_emulated_print(const char *type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-27 18:46:55 +00:00
										 |  |  | #define __PPC_WARN_EMULATED(type)					 \
 | 
					
						
							| 
									
										
										
										
											2009-05-18 02:10:05 +00:00
										 |  |  | 	do {								 \ | 
					
						
							|  |  |  | 		atomic_inc(&ppc_emulated.type.val);			 \ | 
					
						
							|  |  |  | 		if (ppc_warn_emulated)					 \ | 
					
						
							|  |  |  | 			ppc_warn_emulated_print(ppc_emulated.type.name); \ | 
					
						
							|  |  |  | 	} while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else /* !CONFIG_PPC_EMULATED_STATS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-27 18:46:55 +00:00
										 |  |  | #define __PPC_WARN_EMULATED(type)	do { } while (0)
 | 
					
						
							| 
									
										
										
										
											2009-05-18 02:10:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* !CONFIG_PPC_EMULATED_STATS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-18 01:13:00 +00:00
										 |  |  | #define PPC_WARN_EMULATED(type, regs)					\
 | 
					
						
							|  |  |  | 	do {								\ | 
					
						
							|  |  |  | 		perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,		\ | 
					
						
							| 
									
										
										
										
											2011-06-27 14:41:57 +02:00
										 |  |  | 			1, regs, 0);					\ | 
					
						
							| 
									
										
										
										
											2009-10-18 01:13:00 +00:00
										 |  |  | 		__PPC_WARN_EMULATED(type);				\ | 
					
						
							|  |  |  | 	} while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PPC_WARN_ALIGNMENT(type, regs)					\
 | 
					
						
							|  |  |  | 	do {								\ | 
					
						
							|  |  |  | 		perf_sw_event(PERF_COUNT_SW_ALIGNMENT_FAULTS,		\ | 
					
						
							| 
									
										
										
										
											2011-06-27 14:41:57 +02:00
										 |  |  | 			1, regs, regs->dar);				\ | 
					
						
							| 
									
										
										
										
											2009-10-18 01:13:00 +00:00
										 |  |  | 		__PPC_WARN_EMULATED(type);				\ | 
					
						
							|  |  |  | 	} while (0) | 
					
						
							| 
									
										
										
										
											2009-10-27 18:46:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-18 02:10:05 +00:00
										 |  |  | #endif /* _ASM_POWERPC_EMULATED_OPS_H */
 |