Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux-drm-fsl-dcu.git] / arch / xtensa / kernel / xtensa_ksyms.c
1 /*
2  * arch/xtensa/kernel/xtensa_ksyms.c
3  *
4  * Export Xtensa-specific functions for loadable modules.
5  *
6  * This file is subject to the terms and conditions of the GNU General Public
7  * License.  See the file "COPYING" in the main directory of this archive
8  * for more details.
9  *
10  * Copyright (C) 2001 - 2005  Tensilica Inc.
11  *
12  * Joe Taylor <joe@tensilica.com>
13  */
14
15 #include <linux/module.h>
16 #include <linux/string.h>
17 #include <linux/mm.h>
18 #include <linux/interrupt.h>
19 #include <asm/irq.h>
20 #include <linux/in6.h>
21 #include <linux/ide.h>
22
23 #include <asm/uaccess.h>
24 #include <asm/checksum.h>
25 #include <asm/dma.h>
26 #include <asm/io.h>
27 #include <asm/page.h>
28 #include <asm/pgalloc.h>
29 #include <asm/semaphore.h>
30 #ifdef CONFIG_BLK_DEV_FD
31 #include <asm/floppy.h>
32 #endif
33 #ifdef CONFIG_NET
34 #include <net/checksum.h>
35 #endif /* CONFIG_NET */
36
37
38 /*
39  * String functions
40  */
41 EXPORT_SYMBOL(memcmp);
42 EXPORT_SYMBOL(memset);
43 EXPORT_SYMBOL(memcpy);
44 EXPORT_SYMBOL(memmove);
45 EXPORT_SYMBOL(memchr);
46 EXPORT_SYMBOL(strcat);
47 EXPORT_SYMBOL(strchr);
48 EXPORT_SYMBOL(strlen);
49 EXPORT_SYMBOL(strncat);
50 EXPORT_SYMBOL(strnlen);
51 EXPORT_SYMBOL(strrchr);
52 EXPORT_SYMBOL(strstr);
53
54 EXPORT_SYMBOL(enable_irq);
55 EXPORT_SYMBOL(disable_irq);
56 EXPORT_SYMBOL(kernel_thread);
57
58 /*
59  * gcc internal math functions
60  */
61 extern long long __ashrdi3(long long, int);
62 extern long long __ashldi3(long long, int);
63 extern long long __lshrdi3(long long, int);
64 extern int __divsi3(int, int);
65 extern int __modsi3(int, int);
66 extern long long __muldi3(long long, long long);
67 extern int __mulsi3(int, int);
68 extern unsigned int __udivsi3(unsigned int, unsigned int);
69 extern unsigned int __umodsi3(unsigned int, unsigned int);
70 extern unsigned long long __umoddi3(unsigned long long, unsigned long long);
71 extern unsigned long long __udivdi3(unsigned long long, unsigned long long);
72
73 EXPORT_SYMBOL(__ashldi3);
74 EXPORT_SYMBOL(__ashrdi3);
75 EXPORT_SYMBOL(__lshrdi3);
76 EXPORT_SYMBOL(__divsi3);
77 EXPORT_SYMBOL(__modsi3);
78 EXPORT_SYMBOL(__muldi3);
79 EXPORT_SYMBOL(__mulsi3);
80 EXPORT_SYMBOL(__udivsi3);
81 EXPORT_SYMBOL(__umodsi3);
82 EXPORT_SYMBOL(__udivdi3);
83 EXPORT_SYMBOL(__umoddi3);
84
85 /*
86  * Semaphore operations
87  */
88 EXPORT_SYMBOL(__down);
89 EXPORT_SYMBOL(__down_interruptible);
90 EXPORT_SYMBOL(__down_trylock);
91 EXPORT_SYMBOL(__up);
92
93 #ifdef CONFIG_NET
94 /*
95  * Networking support
96  */
97 EXPORT_SYMBOL(csum_partial_copy_generic);
98 #endif /* CONFIG_NET */
99
100 /*
101  * Architecture-specific symbols
102  */
103 EXPORT_SYMBOL(__xtensa_copy_user);
104
105 /*
106  * Kernel hacking ...
107  */
108
109 #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
110 // FIXME EXPORT_SYMBOL(screen_info);
111 #endif
112
113 EXPORT_SYMBOL(outsb);
114 EXPORT_SYMBOL(outsw);
115 EXPORT_SYMBOL(outsl);
116 EXPORT_SYMBOL(insb);
117 EXPORT_SYMBOL(insw);
118 EXPORT_SYMBOL(insl);