]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/arm/copystr.S
Bump MAX_HWCNT and MAX_EXCNT.
[FreeBSD/FreeBSD.git] / sys / arm / arm / copystr.S
1 /*      $NetBSD: copystr.S,v 1.8 2002/10/13 14:54:48 bjh21 Exp $        */
2
3 /*-
4  * Copyright (c) 1995 Mark Brinicombe.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Mark Brinicombe.
18  * 4. The name of the company nor the name of the author may be used to
19  *    endorse or promote products derived from this software without specific
20  *    prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
23  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
26  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  * copystr.S
35  *
36  * optimised and fault protected copystr functions
37  *
38  * Created      : 16/05/95
39  */
40
41 #include "assym.inc"
42 #include <machine/asm.h>
43 #include <machine/armreg.h>
44 __FBSDID("$FreeBSD$");
45
46 #include <sys/errno.h>
47
48         .text
49         .align  2
50
51 #if __ARM_ARCH >= 6
52 #define GET_PCB(tmp) \
53         mrc p15, 0, tmp, c13, c0, 4; \
54         add     tmp, tmp, #(TD_PCB)
55 #else
56 .Lpcb:
57         .word   _C_LABEL(__pcpu) + PC_CURPCB
58
59 #define GET_PCB(tmp) \
60         ldr     tmp, .Lpcb
61 #endif
62
63 /*
64  * r0 - from
65  * r1 - to
66  * r2 - maxlens
67  * r3 - lencopied
68  *
69  * Copy string from r0 to r1
70  */
71 ENTRY(copystr)
72         stmfd   sp!, {r4-r5}                    /* stack is 8 byte aligned */
73         teq     r2, #0x00000000
74         mov     r5, #0x00000000
75         moveq   r0, #ENAMETOOLONG
76         beq     2f
77
78 1:      ldrb    r4, [r0], #0x0001
79         add     r5, r5, #0x00000001
80         teq     r4, #0x00000000
81         strb    r4, [r1], #0x0001
82         teqne   r5, r2
83         bne     1b
84
85         teq     r4, #0x00000000
86         moveq   r0, #0x00000000
87         movne   r0, #ENAMETOOLONG
88
89 2:      teq     r3, #0x00000000
90         strne   r5, [r3]
91
92         ldmfd   sp!, {r4-r5}                    /* stack is 8 byte aligned */
93         RET
94 END(copystr)
95
96 #define SAVE_REGS       stmfd   sp!, {r4-r6}
97 #define RESTORE_REGS    ldmfd   sp!, {r4-r6}
98
99 /*
100  * r0 - user space address
101  * r1 - kernel space address
102  * r2 - maxlens
103  * r3 - lencopied
104  *
105  * Copy string from user space to kernel space
106  */
107 ENTRY(copyinstr)
108         SAVE_REGS
109
110         teq     r2, #0x00000000
111         mov     r6, #0x00000000
112         moveq   r0, #ENAMETOOLONG
113         beq     2f
114
115         ldr     r12, =VM_MAXUSER_ADDRESS
116
117         GET_PCB(r4)
118         ldr     r4, [r4]
119
120 #ifdef DIAGNOSTIC
121         teq     r4, #0x00000000
122         beq     .Lcopystrpcbfault
123 #endif
124
125         adr     r5, .Lcopystrfault
126         str     r5, [r4, #PCB_ONFAULT]
127
128 1:
129         cmp     r0, r12
130         bcs     .Lcopystrfault
131         ldrbt   r5, [r0], #0x0001
132         add     r6, r6, #0x00000001
133         teq     r5, #0x00000000
134         strb    r5, [r1], #0x0001
135         teqne   r6, r2
136         bne     1b
137
138         mov     r0, #0x00000000
139         str     r0, [r4, #PCB_ONFAULT]
140
141         teq     r5, #0x00000000
142         moveq   r0, #0x00000000
143         movne   r0, #ENAMETOOLONG
144
145 2:      teq     r3, #0x00000000
146         strne   r6, [r3]
147
148         RESTORE_REGS
149         RET
150 END(copyinstr)
151
152 /* A fault occurred during the copy */
153 .Lcopystrfault:
154         mov     r1, #0x00000000
155         str     r1, [r4, #PCB_ONFAULT]
156         mov     r0, #EFAULT
157         RESTORE_REGS
158         RET
159
160 #ifdef DIAGNOSTIC
161 .Lcopystrpcbfault:
162         mov     r2, r1
163         mov     r1, r0
164         adr     r0, Lcopystrpcbfaulttext
165         bic     sp, sp, #7                      /* align stack to 8 bytes */
166         b       _C_LABEL(panic)
167
168 Lcopystrpcbfaulttext:
169         .asciz  "No valid PCB during copyinoutstr() addr1=%08x addr2=%08x\n"
170         .align  2
171 #endif