1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 by Thom Johansen
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 .section .icode,"ax",%progbits
27 /* The following code is based on code found in Linux kernel version 2.6.15.3
28 * linux/arch/arm/lib/memset.S
30 * Copyright (C) 1995-2000 Russell King
33 /* This code will align a pointer for memset, if needed */
34 1: cmp r2, #4 @ 1 do we have enough
35 blt 5f @ 1 bytes to align with?
37 strgtb r1, [r0, #-1]! @ 1
38 strgeb r1, [r0, #-1]! @ 1
39 strb r1, [r0, #-1]! @ 1
40 sub r2, r2, r3 @ 1 r2 = r2 - r3
44 .type memset,%function
46 add r0, r0, r2 @ we'll write backwards in memory
47 ands r3, r0, #3 @ 1 unaligned?
51 * we know that the pointer in r0 is aligned to a word boundary.
53 orr r1, r1, r1, lsl #8
54 orr r1, r1, r1, lsl #16
59 * We need an extra register for this loop - save the return address and
67 stmgedb r0!, {r1, r3, ip, lr} @ 64 bytes at a time.
68 stmgedb r0!, {r1, r3, ip, lr}
69 stmgedb r0!, {r1, r3, ip, lr}
70 stmgedb r0!, {r1, r3, ip, lr}
72 ldmeqfd sp!, {pc} @ Now <64 bytes to go.
74 * No need to correct the count; we're only testing bits from now on
77 stmnedb r0!, {r1, r3, ip, lr}
78 stmnedb r0!, {r1, r3, ip, lr}
80 stmnedb r0!, {r1, r3, ip, lr}
88 * When we get here, we've got less than 4 bytes to zero. We
89 * may have an unaligned pointer as well.
98 .size memset,.end-memset