blob: 11f272c6f5e9e0c2fcf11b030ee6d6df3cf2dd64 [file] [log] [blame]
H. Peter Anvin5be86562007-07-11 12:18:41 -07001/* ----------------------------------------------------------------------- *
2 *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
5 *
6 * This file is part of the Linux kernel, and is made available under
7 * the terms of the GNU General Public License version 2.
8 *
9 * ----------------------------------------------------------------------- */
10
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030011#include <linux/linkage.h>
12
H. Peter Anvin5be86562007-07-11 12:18:41 -070013/*
H. Peter Anvin5be86562007-07-11 12:18:41 -070014 * Memory copy routines
15 */
16
17 .code16gcc
18 .text
19
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030020GLOBAL(memcpy)
H. Peter Anvin5be86562007-07-11 12:18:41 -070021 pushw %si
22 pushw %di
23 movw %ax, %di
24 movw %dx, %si
25 pushw %cx
26 shrw $2, %cx
27 rep; movsl
28 popw %cx
29 andw $3, %cx
30 rep; movsb
31 popw %di
32 popw %si
33 ret
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030034ENDPROC(memcpy)
H. Peter Anvin5be86562007-07-11 12:18:41 -070035
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030036GLOBAL(memset)
H. Peter Anvin5be86562007-07-11 12:18:41 -070037 pushw %di
38 movw %ax, %di
39 movzbl %dl, %eax
40 imull $0x01010101,%eax
41 pushw %cx
42 shrw $2, %cx
43 rep; stosl
44 popw %cx
45 andw $3, %cx
46 rep; stosb
47 popw %di
48 ret
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030049ENDPROC(memset)
H. Peter Anvin5be86562007-07-11 12:18:41 -070050
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030051GLOBAL(copy_from_fs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070052 pushw %ds
53 pushw %fs
54 popw %ds
55 call memcpy
56 popw %ds
57 ret
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030058ENDPROC(copy_from_fs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070059
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030060GLOBAL(copy_to_fs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070061 pushw %es
62 pushw %fs
63 popw %es
64 call memcpy
65 popw %es
66 ret
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030067ENDPROC(copy_to_fs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070068
69#if 0 /* Not currently used, but can be enabled as needed */
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030070GLOBAL(copy_from_gs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070071 pushw %ds
72 pushw %gs
73 popw %ds
74 call memcpy
75 popw %ds
76 ret
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030077ENDPROC(copy_from_gs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070078
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030079GLOBAL(copy_to_gs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070080 pushw %es
81 pushw %gs
82 popw %es
83 call memcpy
84 popw %es
85 ret
Cyrill Gorcunov2f795552009-02-14 00:50:20 +030086ENDPROC(copy_to_gs)
H. Peter Anvin5be86562007-07-11 12:18:41 -070087#endif