blob: 8aa16ef113f2b5dd68a3cba18908213a26f2df80 [file] [log] [blame]
David S. Miller6c70b6f2007-08-08 17:11:39 -07001/* GENcopy_from_user.S: Generic sparc64 copy from userspace.
2 *
3 * Copyright (C) 2007 David S. Miller (davem@davemloft.net)
4 */
5
David S. Millerd0796b52016-08-15 15:26:38 -07006#define EX_LD(x,y) \
David S. Miller6c70b6f2007-08-08 17:11:39 -0700798: x; \
David S. Miller6c70b6f2007-08-08 17:11:39 -07008 .section __ex_table,"a";\
9 .align 4; \
David S. Millerd0796b52016-08-15 15:26:38 -070010 .word 98b, y; \
David S. Miller6c70b6f2007-08-08 17:11:39 -070011 .text; \
12 .align 4;
13
14#ifndef ASI_AIUS
15#define ASI_AIUS 0x11
16#endif
17
18#define FUNC_NAME GENcopy_from_user
19#define LOAD(type,addr,dest) type##a [addr] ASI_AIUS, dest
20#define EX_RETVAL(x) 0
21
22#ifdef __KERNEL__
23#define PREAMBLE \
24 rd %asi, %g1; \
25 cmp %g1, ASI_AIUS; \
Al Viro31af2f32017-03-21 17:04:45 -040026 bne,pn %icc, raw_copy_in_user; \
David S. Miller6c70b6f2007-08-08 17:11:39 -070027 nop
28#endif
29
30#include "GENmemcpy.S"