| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* | 
					
						
							|  |  |  |  *  linux/arch/arm/lib/csumpartialcopyuser.S | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 1995-1998 Russell King | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify
 | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 27/03/03 Ian Molton Clean up CONFIG_CPU | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/linkage.h> | 
					
						
							|  |  |  | #include <asm/assembler.h> | 
					
						
							|  |  |  | #include <asm/errno.h> | 
					
						
							| 
									
										
										
										
											2005-09-09 21:08:59 +02:00
										 |  |  | #include <asm/asm-offsets.h> | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		.text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		.macro	save_regs
 | 
					
						
							| 
									
										
										
										
											2008-08-29 18:31:27 +01:00
										 |  |  | 		stmfd	sp!, {r1, r2, r4 - r8, lr} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.endm | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-12 16:53:51 +00:00
										 |  |  | 		.macro	load_regs
 | 
					
						
							| 
									
										
										
										
											2008-08-29 18:31:27 +01:00
										 |  |  | 		ldmfd	sp!, {r1, r2, r4 - r8, pc} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.endm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		.macro	load1b,	reg1 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 		ldrusr	\reg1, r0, 1 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.endm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		.macro	load2b, reg1, reg2 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 		ldrusr	\reg1, r0, 1 | 
					
						
							|  |  |  | 		ldrusr	\reg2, r0, 1 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.endm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		.macro	load1l, reg1 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 		ldrusr	\reg1, r0, 4 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.endm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		.macro	load2l, reg1, reg2 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 		ldrusr	\reg1, r0, 4 | 
					
						
							|  |  |  | 		ldrusr	\reg2, r0, 4 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.endm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		.macro	load4l, reg1, reg2, reg3, reg4 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 		ldrusr	\reg1, r0, 4 | 
					
						
							|  |  |  | 		ldrusr	\reg2, r0, 4 | 
					
						
							|  |  |  | 		ldrusr	\reg3, r0, 4 | 
					
						
							|  |  |  | 		ldrusr	\reg4, r0, 4 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.endm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * unsigned int | 
					
						
							|  |  |  |  * csum_partial_copy_from_user(const char *src, char *dst, int len, int sum, int *err_ptr) | 
					
						
							|  |  |  |  *  r0 = src, r1 = dst, r2 = len, r3 = sum, [sp] = *err_ptr | 
					
						
							|  |  |  |  *  Returns : r0 = checksum, [[sp, #0], #0] = 0 or -EFAULT | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define FN_ENTRY	ENTRY(csum_partial_copy_from_user) | 
					
						
							| 
									
										
										
										
											2008-08-28 11:22:32 +01:00
										 |  |  | #define FN_EXIT		ENDPROC(csum_partial_copy_from_user) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "csumpartialcopygeneric.S" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * FIXME: minor buglet here | 
					
						
							|  |  |  |  * We don't return the checksum for the data present in the buffer.  To do | 
					
						
							|  |  |  |  * so properly, we would have to add in whatever registers were loaded before | 
					
						
							|  |  |  |  * the fault, which, with the current asm above is not predictable. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-03-24 10:41:09 +01:00
										 |  |  | 		.pushsection .text.fixup,"ax" | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.align	4
 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 9001:		mov	r4, #-EFAULT | 
					
						
							| 
									
										
										
										
											2010-07-26 12:18:16 +01:00
										 |  |  | 		ldr	r5, [sp, #8*4]		@ *err_ptr
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		str	r4, [r5] | 
					
						
							|  |  |  | 		ldmia	sp, {r1, r2}		@ retrieve dst, len
 | 
					
						
							|  |  |  | 		add	r2, r2, r1 | 
					
						
							|  |  |  | 		mov	r0, #0			@ zero the buffer
 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 9002:		teq	r2, r1 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		strneb	r0, [r1], #1 | 
					
						
							| 
									
										
										
										
											2009-07-24 12:32:57 +01:00
										 |  |  | 		bne	9002b | 
					
						
							| 
									
										
										
										
											2006-01-12 16:53:51 +00:00
										 |  |  | 		load_regs | 
					
						
							| 
									
										
										
										
											2010-04-19 10:15:03 +01:00
										 |  |  | 		.popsection |