Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
David S. Miller | cf5adce | 2007-08-16 01:47:25 -0700 | [diff] [blame] | 2 | /* NG2copy_from_user.S: Niagara-2 optimized copy from userspace. |
| 3 | * |
| 4 | * Copyright (C) 2007 David S. Miller (davem@davemloft.net) |
| 5 | */ |
| 6 | |
David S. Miller | e93704e | 2016-10-24 20:46:44 -0700 | [diff] [blame] | 7 | #define EX_LD(x,y) \ |
David S. Miller | cf5adce | 2007-08-16 01:47:25 -0700 | [diff] [blame] | 8 | 98: x; \ |
David S. Miller | cf5adce | 2007-08-16 01:47:25 -0700 | [diff] [blame] | 9 | .section __ex_table,"a";\ |
| 10 | .align 4; \ |
David S. Miller | e93704e | 2016-10-24 20:46:44 -0700 | [diff] [blame] | 11 | .word 98b, y; \ |
David S. Miller | cf5adce | 2007-08-16 01:47:25 -0700 | [diff] [blame] | 12 | .text; \ |
| 13 | .align 4; |
| 14 | |
David S. Miller | e93704e | 2016-10-24 20:46:44 -0700 | [diff] [blame] | 15 | #define EX_LD_FP(x,y) \ |
Rob Gardner | a7c5724 | 2015-12-22 23:24:49 -0700 | [diff] [blame] | 16 | 98: x; \ |
| 17 | .section __ex_table,"a";\ |
| 18 | .align 4; \ |
David S. Miller | e93704e | 2016-10-24 20:46:44 -0700 | [diff] [blame] | 19 | .word 98b, y##_fp; \ |
Rob Gardner | a7c5724 | 2015-12-22 23:24:49 -0700 | [diff] [blame] | 20 | .text; \ |
| 21 | .align 4; |
| 22 | |
David S. Miller | cf5adce | 2007-08-16 01:47:25 -0700 | [diff] [blame] | 23 | #ifndef ASI_AIUS |
| 24 | #define ASI_AIUS 0x11 |
| 25 | #endif |
| 26 | |
| 27 | #ifndef ASI_BLK_AIUS_4V |
| 28 | #define ASI_BLK_AIUS_4V 0x17 |
| 29 | #endif |
| 30 | |
| 31 | #define FUNC_NAME NG2copy_from_user |
| 32 | #define LOAD(type,addr,dest) type##a [addr] %asi, dest |
| 33 | #define LOAD_BLK(addr,dest) ldda [addr] ASI_BLK_AIUS_4V, dest |
| 34 | #define EX_RETVAL(x) 0 |
| 35 | |
| 36 | #ifdef __KERNEL__ |
| 37 | #define PREAMBLE \ |
| 38 | rd %asi, %g1; \ |
| 39 | cmp %g1, ASI_AIUS; \ |
Al Viro | 31af2f3 | 2017-03-21 17:04:45 -0400 | [diff] [blame] | 40 | bne,pn %icc, raw_copy_in_user; \ |
David S. Miller | cf5adce | 2007-08-16 01:47:25 -0700 | [diff] [blame] | 41 | nop |
| 42 | #endif |
| 43 | |
| 44 | #include "NG2memcpy.S" |