| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <asm/uaccess.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-04 02:59:29 -05:00
										 |  |  | #include <asm/sfp-machine.h>
 | 
					
						
							|  |  |  | #include <math-emu/soft-fp.h>
 | 
					
						
							|  |  |  | #include <math-emu/double.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | fctiw(u32 *frD, void *frB) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	FP_DECL_D(B); | 
					
						
							| 
									
										
										
										
											2008-06-04 02:59:29 -05:00
										 |  |  | 	FP_DECL_EX; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned int r; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-04 02:59:29 -05:00
										 |  |  | 	FP_UNPACK_DP(B, frB); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	FP_TO_INT_D(r, B, 32, 1); | 
					
						
							|  |  |  | 	frD[1] = r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG
 | 
					
						
							| 
									
										
										
										
											2008-03-29 08:21:07 +11:00
										 |  |  | 	printk("%s: D %p, B %p: ", __func__, frD, frB); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dump_double(frD); | 
					
						
							|  |  |  | 	printk("\n"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } |