Merge remote-tracking branch 'mmc-uh/next'
[deliverable/linux.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>
4dd1837d 34#include <asm/export.h>
1da177e4 35
93ed3970 36ENTRY(__put_user_1)
8404663f 37 check_uaccess r0, 1, r1, ip, __put_user_bad
4e7682d0 381: TUSER(strb) r2, [r0]
1da177e4 39 mov r0, #0
6ebbf2ce 40 ret lr
93ed3970 41ENDPROC(__put_user_1)
4dd1837d 42EXPORT_SYMBOL(__put_user_1)
1da177e4 43
93ed3970 44ENTRY(__put_user_2)
8404663f 45 check_uaccess r0, 2, r1, ip, __put_user_bad
1da177e4 46 mov ip, r2, lsr #8
8b592783
CM
47#ifdef CONFIG_THUMB2_KERNEL
48#ifndef __ARMEB__
4e7682d0
CM
492: TUSER(strb) r2, [r0]
503: TUSER(strb) ip, [r0, #1]
8b592783 51#else
4e7682d0
CM
522: TUSER(strb) ip, [r0]
533: TUSER(strb) r2, [r0, #1]
8b592783
CM
54#endif
55#else /* !CONFIG_THUMB2_KERNEL */
1da177e4 56#ifndef __ARMEB__
4e7682d0
CM
572: TUSER(strb) r2, [r0], #1
583: TUSER(strb) ip, [r0]
1da177e4 59#else
4e7682d0
CM
602: TUSER(strb) ip, [r0], #1
613: TUSER(strb) r2, [r0]
1da177e4 62#endif
8b592783 63#endif /* CONFIG_THUMB2_KERNEL */
1da177e4 64 mov r0, #0
6ebbf2ce 65 ret lr
93ed3970 66ENDPROC(__put_user_2)
4dd1837d 67EXPORT_SYMBOL(__put_user_2)
1da177e4 68
93ed3970 69ENTRY(__put_user_4)
8404663f 70 check_uaccess r0, 4, r1, ip, __put_user_bad
4e7682d0 714: TUSER(str) r2, [r0]
1da177e4 72 mov r0, #0
6ebbf2ce 73 ret lr
93ed3970 74ENDPROC(__put_user_4)
4dd1837d 75EXPORT_SYMBOL(__put_user_4)
1da177e4 76
93ed3970 77ENTRY(__put_user_8)
8404663f 78 check_uaccess r0, 8, r1, ip, __put_user_bad
8b592783 79#ifdef CONFIG_THUMB2_KERNEL
4e7682d0
CM
805: TUSER(str) r2, [r0]
816: TUSER(str) r3, [r0, #4]
8b592783 82#else
4e7682d0
CM
835: TUSER(str) r2, [r0], #4
846: TUSER(str) r3, [r0]
8b592783 85#endif
1da177e4 86 mov r0, #0
6ebbf2ce 87 ret lr
93ed3970 88ENDPROC(__put_user_8)
4dd1837d 89EXPORT_SYMBOL(__put_user_8)
1da177e4
LT
90
91__put_user_bad:
92 mov r0, #-EFAULT
6ebbf2ce 93 ret lr
93ed3970 94ENDPROC(__put_user_bad)
1da177e4 95
4260415f 96.pushsection __ex_table, "a"
1da177e4
LT
97 .long 1b, __put_user_bad
98 .long 2b, __put_user_bad
99 .long 3b, __put_user_bad
100 .long 4b, __put_user_bad
101 .long 5b, __put_user_bad
102 .long 6b, __put_user_bad
4260415f 103.popsection
This page took 0.748005 seconds and 5 git commands to generate.