Blame view

arch/arm/lib/io-writesw-armv3.S 2.14 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
  /*
   *  linux/arch/arm/lib/io-writesw-armv3.S
   *
   *  Copyright (C) 1995-2000 Russell King
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  #include <linux/linkage.h>
  #include <asm/assembler.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12

a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
13
14
  .Loutsw_bad_alignment:
  		adr	r0, .Loutsw_bad_align_msg
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
  		mov	r2, lr
  		b	panic
a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
17
  .Loutsw_bad_align_msg:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
19
20
  		.asciz	"outsw: bad buffer alignment (0x%p, lr=0x%08lX)
  "
  		.align
a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
21
22
  .Loutsw_align:	tst	r1, #1
  		bne	.Loutsw_bad_alignment
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
24
25
26
27
28
29
30
  
  		add	r1, r1, #2
  
  		ldr	r3, [r1, #-4]
  		mov	r3, r3, lsr #16
  		orr	r3, r3, r3, lsl #16
  		str	r3, [r0]
  		subs	r2, r2, #1
7999d8d7a   Russell King   [ARM] Remove RETI...
31
  		moveq	pc, lr
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
34
35
36
  
  ENTRY(__raw_writesw)
  		teq	r2, #0		@ do we have to check for the zero len?
  		moveq	pc, lr
  		tst	r1, #3
a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
37
  		bne	.Loutsw_align
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38

a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
39
  		stmfd	sp!, {r4, r5, r6, lr}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
  
  		subs	r2, r2, #8
a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
42
  		bmi	.Lno_outsw_8
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43

a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
44
  .Loutsw_8_lp:	ldmia	r1!, {r3, r4, r5, r6}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  
  		mov	ip, r3, lsl #16
  		orr	ip, ip, ip, lsr #16
  		str	ip, [r0]
  
  		mov	ip, r3, lsr #16
  		orr	ip, ip, ip, lsl #16
  		str	ip, [r0]
  
  		mov	ip, r4, lsl #16
  		orr	ip, ip, ip, lsr #16
  		str	ip, [r0]
  
  		mov	ip, r4, lsr #16
  		orr	ip, ip, ip, lsl #16
  		str	ip, [r0]
  
  		mov	ip, r5, lsl #16
  		orr	ip, ip, ip, lsr #16
  		str	ip, [r0]
  
  		mov	ip, r5, lsr #16
  		orr	ip, ip, ip, lsl #16
  		str	ip, [r0]
  
  		mov	ip, r6, lsl #16
  		orr	ip, ip, ip, lsr #16
  		str	ip, [r0]
  
  		mov	ip, r6, lsr #16
  		orr	ip, ip, ip, lsl #16
  		str	ip, [r0]
  
  		subs	r2, r2, #8
a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
79
  		bpl	.Loutsw_8_lp
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
81
  
  		tst	r2, #7
1b93a7175   Russell King   [ARM] Remove LOAD...
82
  		ldmeqfd	sp!, {r4, r5, r6, pc}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83

a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
84
85
  .Lno_outsw_8:	tst	r2, #4
  		beq	.Lno_outsw_4
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
  
  		ldmia	r1!, {r3, r4}
  
  		mov	ip, r3, lsl #16
  		orr	ip, ip, ip, lsr #16
  		str	ip, [r0]
  
  		mov	ip, r3, lsr #16
  		orr	ip, ip, ip, lsl #16
  		str	ip, [r0]
  
  		mov	ip, r4, lsl #16
  		orr	ip, ip, ip, lsr #16
  		str	ip, [r0]
  
  		mov	ip, r4, lsr #16
  		orr	ip, ip, ip, lsl #16
  		str	ip, [r0]
a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
104
105
  .Lno_outsw_4:	tst	r2, #2
  		beq	.Lno_outsw_2
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
108
109
110
111
112
113
114
115
  
  		ldr	r3, [r1], #4
  
  		mov	ip, r3, lsl #16
  		orr	ip, ip, ip, lsr #16
  		str	ip, [r0]
  
  		mov	ip, r3, lsr #16
  		orr	ip, ip, ip, lsl #16
  		str	ip, [r0]
a9c4814d8   Nicolas Pitre   [ARM] 3151/1: mak...
116
  .Lno_outsw_2:	tst	r2, #1
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
117
118
119
120
121
122
  
  		ldrne	r3, [r1]
  
  		movne	ip, r3, lsl #16
  		orrne	ip, ip, ip, lsr #16
  		strne	ip, [r0]
1b93a7175   Russell King   [ARM] Remove LOAD...
123
  		ldmfd	sp!, {r4, r5, r6, pc}