[PATCH] ARM: 2723/2: remove __udivdi3 and __umoddi3 from the kernel
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / kernel / armksyms.c
blobb713c44c6fb429c8da7bdfab8a4399a906df1050
1 /*
2 * linux/arch/arm/kernel/armksyms.c
4 * Copyright (C) 2000 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #include <linux/module.h>
11 #include <linux/string.h>
12 #include <linux/delay.h>
13 #include <linux/in6.h>
14 #include <linux/syscalls.h>
16 #include <asm/checksum.h>
17 #include <asm/io.h>
18 #include <asm/system.h>
19 #include <asm/uaccess.h>
22 * libgcc functions - functions that are used internally by the
23 * compiler... (prototypes are not correct though, but that
24 * doesn't really matter since they're not versioned).
26 extern void __ashldi3(void);
27 extern void __ashrdi3(void);
28 extern void __divsi3(void);
29 extern void __lshrdi3(void);
30 extern void __modsi3(void);
31 extern void __muldi3(void);
32 extern void __ucmpdi2(void);
33 extern void __udivsi3(void);
34 extern void __umodsi3(void);
35 extern void __do_div64(void);
37 extern void fpundefinstr(void);
38 extern void fp_enter(void);
41 * This has a special calling convention; it doesn't
42 * modify any of the usual registers, except for LR.
44 #define EXPORT_SYMBOL_ALIAS(sym,orig) \
45 const struct kernel_symbol __ksymtab_##sym \
46 __attribute__((section("__ksymtab"))) = \
47 { (unsigned long)&orig, #sym };
50 * floating point math emulator support.
51 * These symbols will never change their calling convention...
53 EXPORT_SYMBOL_ALIAS(kern_fp_enter,fp_enter);
54 EXPORT_SYMBOL_ALIAS(fp_printk,printk);
55 EXPORT_SYMBOL_ALIAS(fp_send_sig,send_sig);
57 EXPORT_SYMBOL(__backtrace);
59 /* platform dependent support */
60 EXPORT_SYMBOL(__udelay);
61 EXPORT_SYMBOL(__const_udelay);
63 /* networking */
64 EXPORT_SYMBOL(csum_partial);
65 EXPORT_SYMBOL(csum_partial_copy_nocheck);
66 EXPORT_SYMBOL(__csum_ipv6_magic);
68 /* io */
69 #ifndef __raw_readsb
70 EXPORT_SYMBOL(__raw_readsb);
71 #endif
72 #ifndef __raw_readsw
73 EXPORT_SYMBOL(__raw_readsw);
74 #endif
75 #ifndef __raw_readsl
76 EXPORT_SYMBOL(__raw_readsl);
77 #endif
78 #ifndef __raw_writesb
79 EXPORT_SYMBOL(__raw_writesb);
80 #endif
81 #ifndef __raw_writesw
82 EXPORT_SYMBOL(__raw_writesw);
83 #endif
84 #ifndef __raw_writesl
85 EXPORT_SYMBOL(__raw_writesl);
86 #endif
88 /* string / mem functions */
89 EXPORT_SYMBOL(strcpy);
90 EXPORT_SYMBOL(strncpy);
91 EXPORT_SYMBOL(strcat);
92 EXPORT_SYMBOL(strncat);
93 EXPORT_SYMBOL(strcmp);
94 EXPORT_SYMBOL(strncmp);
95 EXPORT_SYMBOL(strchr);
96 EXPORT_SYMBOL(strlen);
97 EXPORT_SYMBOL(strnlen);
98 EXPORT_SYMBOL(strpbrk);
99 EXPORT_SYMBOL(strrchr);
100 EXPORT_SYMBOL(strstr);
101 EXPORT_SYMBOL(memset);
102 EXPORT_SYMBOL(memcpy);
103 EXPORT_SYMBOL(memmove);
104 EXPORT_SYMBOL(memcmp);
105 EXPORT_SYMBOL(memscan);
106 EXPORT_SYMBOL(memchr);
107 EXPORT_SYMBOL(__memzero);
109 /* user mem (segment) */
110 EXPORT_SYMBOL(__arch_copy_from_user);
111 EXPORT_SYMBOL(__arch_copy_to_user);
112 EXPORT_SYMBOL(__arch_clear_user);
113 EXPORT_SYMBOL(__arch_strnlen_user);
114 EXPORT_SYMBOL(__arch_strncpy_from_user);
116 EXPORT_SYMBOL(__get_user_1);
117 EXPORT_SYMBOL(__get_user_2);
118 EXPORT_SYMBOL(__get_user_4);
119 EXPORT_SYMBOL(__get_user_8);
121 EXPORT_SYMBOL(__put_user_1);
122 EXPORT_SYMBOL(__put_user_2);
123 EXPORT_SYMBOL(__put_user_4);
124 EXPORT_SYMBOL(__put_user_8);
126 /* gcc lib functions */
127 EXPORT_SYMBOL(__ashldi3);
128 EXPORT_SYMBOL(__ashrdi3);
129 EXPORT_SYMBOL(__divsi3);
130 EXPORT_SYMBOL(__lshrdi3);
131 EXPORT_SYMBOL(__modsi3);
132 EXPORT_SYMBOL(__muldi3);
133 EXPORT_SYMBOL(__ucmpdi2);
134 EXPORT_SYMBOL(__udivsi3);
135 EXPORT_SYMBOL(__umodsi3);
136 EXPORT_SYMBOL(__do_div64);
138 /* bitops */
139 EXPORT_SYMBOL(_set_bit_le);
140 EXPORT_SYMBOL(_test_and_set_bit_le);
141 EXPORT_SYMBOL(_clear_bit_le);
142 EXPORT_SYMBOL(_test_and_clear_bit_le);
143 EXPORT_SYMBOL(_change_bit_le);
144 EXPORT_SYMBOL(_test_and_change_bit_le);
145 EXPORT_SYMBOL(_find_first_zero_bit_le);
146 EXPORT_SYMBOL(_find_next_zero_bit_le);
147 EXPORT_SYMBOL(_find_first_bit_le);
148 EXPORT_SYMBOL(_find_next_bit_le);
150 #ifdef __ARMEB__
151 EXPORT_SYMBOL(_set_bit_be);
152 EXPORT_SYMBOL(_test_and_set_bit_be);
153 EXPORT_SYMBOL(_clear_bit_be);
154 EXPORT_SYMBOL(_test_and_clear_bit_be);
155 EXPORT_SYMBOL(_change_bit_be);
156 EXPORT_SYMBOL(_test_and_change_bit_be);
157 EXPORT_SYMBOL(_find_first_zero_bit_be);
158 EXPORT_SYMBOL(_find_next_zero_bit_be);
159 EXPORT_SYMBOL(_find_first_bit_be);
160 EXPORT_SYMBOL(_find_next_bit_be);
161 #endif
163 /* syscalls */
164 EXPORT_SYMBOL(sys_write);
165 EXPORT_SYMBOL(sys_read);
166 EXPORT_SYMBOL(sys_lseek);
167 EXPORT_SYMBOL(sys_open);
168 EXPORT_SYMBOL(sys_exit);
169 EXPORT_SYMBOL(sys_wait4);