Merge tag 'platform-drivers-x86-v4.2-1' of git://git.infradead.org/users/dvhart/linux...
[linux-2.6-block.git] / arch / arm / lib / putuser.S
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/lib/putuser.S
3 *
4 * Copyright (C) 2001 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Idea from x86 version, (C) Copyright 1998 Linus Torvalds
11 *
12 * These functions have a non-standard call interface to make
13 * them more efficient, especially as they return an error
14 * value in addition to the "real" return value.
15 *
16 * __put_user_X
17 *
18 * Inputs: r0 contains the address
8404663f 19 * r1 contains the address limit, which must be preserved
1da177e4
LT
20 * r2, r3 contains the value
21 * Outputs: r0 is the error code
22 * lr corrupted
23 *
4baa9922 24 * No other registers must be altered. (see <asm/uaccess.h>
1da177e4
LT
25 * for specific ASM register usage).
26 *
27 * Note that ADDR_LIMIT is either 0 or 0xc0000000
28 * Note also that it is intended that __put_user_bad is not global.
29 */
93ed3970 30#include <linux/linkage.h>
8404663f 31#include <asm/assembler.h>
1da177e4 32#include <asm/errno.h>
247055aa 33#include <asm/domain.h>
1da177e4 34
93ed3970 35ENTRY(__put_user_1)
8404663f 36 check_uaccess r0, 1, r1, ip, __put_user_bad
4e7682d0 371: TUSER(strb) r2, [r0]
1da177e4 38 mov r0, #0
6ebbf2ce 39 ret lr
93ed3970 40ENDPROC(__put_user_1)
1da177e4 41
93ed3970 42ENTRY(__put_user_2)
8404663f 43 check_uaccess r0, 2, r1, ip, __put_user_bad
1da177e4 44 mov ip, r2, lsr #8
8b592783
CM
45#ifdef CONFIG_THUMB2_KERNEL
46#ifndef __ARMEB__
4e7682d0
CM
472: TUSER(strb) r2, [r0]
483: TUSER(strb) ip, [r0, #1]
8b592783 49#else
4e7682d0
CM
502: TUSER(strb) ip, [r0]
513: TUSER(strb) r2, [r0, #1]
8b592783
CM
52#endif
53#else /* !CONFIG_THUMB2_KERNEL */
1da177e4 54#ifndef __ARMEB__
4e7682d0
CM
552: TUSER(strb) r2, [r0], #1
563: TUSER(strb) ip, [r0]
1da177e4 57#else
4e7682d0
CM
582: TUSER(strb) ip, [r0], #1
593: TUSER(strb) r2, [r0]
1da177e4 60#endif
8b592783 61#endif /* CONFIG_THUMB2_KERNEL */
1da177e4 62 mov r0, #0
6ebbf2ce 63 ret lr
93ed3970 64ENDPROC(__put_user_2)
1da177e4 65
93ed3970 66ENTRY(__put_user_4)
8404663f 67 check_uaccess r0, 4, r1, ip, __put_user_bad
4e7682d0 684: TUSER(str) r2, [r0]
1da177e4 69 mov r0, #0
6ebbf2ce 70 ret lr
93ed3970 71ENDPROC(__put_user_4)
1da177e4 72
93ed3970 73ENTRY(__put_user_8)
8404663f 74 check_uaccess r0, 8, r1, ip, __put_user_bad
8b592783 75#ifdef CONFIG_THUMB2_KERNEL
4e7682d0
CM
765: TUSER(str) r2, [r0]
776: TUSER(str) r3, [r0, #4]
8b592783 78#else
4e7682d0
CM
795: TUSER(str) r2, [r0], #4
806: TUSER(str) r3, [r0]
8b592783 81#endif
1da177e4 82 mov r0, #0
6ebbf2ce 83 ret lr
93ed3970 84ENDPROC(__put_user_8)
1da177e4
LT
85
86__put_user_bad:
87 mov r0, #-EFAULT
6ebbf2ce 88 ret lr
93ed3970 89ENDPROC(__put_user_bad)
1da177e4 90
4260415f 91.pushsection __ex_table, "a"
1da177e4
LT
92 .long 1b, __put_user_bad
93 .long 2b, __put_user_bad
94 .long 3b, __put_user_bad
95 .long 4b, __put_user_bad
96 .long 5b, __put_user_bad
97 .long 6b, __put_user_bad
4260415f 98.popsection