Merge branch 'for-linus-4.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / arch / arm / lib / io-writesl.S
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/lib/io-writesl.S
3 *
4 * Copyright (C) 1995-2000 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#include <linux/linkage.h>
11#include <asm/assembler.h>
12
13ENTRY(__raw_writesl)
14 teq r2, #0 @ do we have to check for the zero len?
6ebbf2ce 15 reteq lr
1da177e4
LT
16 ands ip, r1, #3
17 bne 3f
18
19 subs r2, r2, #4
20 bmi 2f
21 stmfd sp!, {r4, lr}
221: ldmia r1!, {r3, r4, ip, lr}
23 subs r2, r2, #4
24 str r3, [r0, #0]
25 str r4, [r0, #0]
26 str ip, [r0, #0]
27 str lr, [r0, #0]
28 bpl 1b
29 ldmfd sp!, {r4, lr}
302: movs r2, r2, lsl #31
31 ldmcsia r1!, {r3, ip}
32 strcs r3, [r0, #0]
33 ldrne r3, [r1, #0]
34 strcs ip, [r0, #0]
35 strne r3, [r0, #0]
6ebbf2ce 36 ret lr
1da177e4
LT
37
383: bic r1, r1, #3
39 ldr r3, [r1], #4
40 cmp ip, #2
41 blt 5f
42 bgt 6f
43
d98b90ea 444: mov ip, r3, lspull #16
1da177e4
LT
45 ldr r3, [r1], #4
46 subs r2, r2, #1
d98b90ea 47 orr ip, ip, r3, lspush #16
1da177e4
LT
48 str ip, [r0]
49 bne 4b
6ebbf2ce 50 ret lr
1da177e4 51
d98b90ea 525: mov ip, r3, lspull #8
1da177e4
LT
53 ldr r3, [r1], #4
54 subs r2, r2, #1
d98b90ea 55 orr ip, ip, r3, lspush #24
1da177e4
LT
56 str ip, [r0]
57 bne 5b
6ebbf2ce 58 ret lr
1da177e4 59
d98b90ea 606: mov ip, r3, lspull #24
1da177e4
LT
61 ldr r3, [r1], #4
62 subs r2, r2, #1
d98b90ea 63 orr ip, ip, r3, lspush #8
1da177e4
LT
64 str ip, [r0]
65 bne 6b
6ebbf2ce 66 ret lr
93ed3970 67ENDPROC(__raw_writesl)