diff options
Diffstat (limited to 'arch/blackfin/kernel/bfin_ksyms.c')
-rw-r--r-- | arch/blackfin/kernel/bfin_ksyms.c | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/arch/blackfin/kernel/bfin_ksyms.c b/arch/blackfin/kernel/bfin_ksyms.c new file mode 100644 index 000000000000..f64ecb638fab --- /dev/null +++ b/arch/blackfin/kernel/bfin_ksyms.c | |||
@@ -0,0 +1,119 @@ | |||
1 | /* | ||
2 | * File: arch/blackfin/kernel/bfin_ksyms.c | ||
3 | * Based on: none - original work | ||
4 | * Author: | ||
5 | * | ||
6 | * Created: | ||
7 | * Description: | ||
8 | * | ||
9 | * Modified: | ||
10 | * Copyright 2004-2006 Analog Devices Inc. | ||
11 | * | ||
12 | * Bugs: Enter bugs at http://blackfin.uclinux.org/ | ||
13 | * | ||
14 | * This program is free software; you can redistribute it and/or modify | ||
15 | * it under the terms of the GNU General Public License as published by | ||
16 | * the Free Software Foundation; either version 2 of the License, or | ||
17 | * (at your option) any later version. | ||
18 | * | ||
19 | * This program is distributed in the hope that it will be useful, | ||
20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
22 | * GNU General Public License for more details. | ||
23 | * | ||
24 | * You should have received a copy of the GNU General Public License | ||
25 | * along with this program; if not, see the file COPYING, or write | ||
26 | * to the Free Software Foundation, Inc., | ||
27 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
28 | */ | ||
29 | |||
30 | #include <linux/module.h> | ||
31 | #include <asm/irq.h> | ||
32 | #include <asm/checksum.h> | ||
33 | #include <asm/cacheflush.h> | ||
34 | #include <asm/uaccess.h> | ||
35 | |||
36 | /* platform dependent support */ | ||
37 | |||
38 | EXPORT_SYMBOL(__ioremap); | ||
39 | EXPORT_SYMBOL(strcmp); | ||
40 | EXPORT_SYMBOL(strncmp); | ||
41 | EXPORT_SYMBOL(dump_thread); | ||
42 | |||
43 | EXPORT_SYMBOL(ip_fast_csum); | ||
44 | |||
45 | EXPORT_SYMBOL(kernel_thread); | ||
46 | |||
47 | EXPORT_SYMBOL(__up); | ||
48 | EXPORT_SYMBOL(__down); | ||
49 | EXPORT_SYMBOL(__down_trylock); | ||
50 | EXPORT_SYMBOL(__down_interruptible); | ||
51 | |||
52 | EXPORT_SYMBOL(is_in_rom); | ||
53 | |||
54 | /* Networking helper routines. */ | ||
55 | EXPORT_SYMBOL(csum_partial_copy); | ||
56 | |||
57 | /* The following are special because they're not called | ||
58 | * explicitly (the C compiler generates them). Fortunately, | ||
59 | * their interface isn't gonna change any time soon now, so | ||
60 | * it's OK to leave it out of version control. | ||
61 | */ | ||
62 | EXPORT_SYMBOL(memcpy); | ||
63 | EXPORT_SYMBOL(memset); | ||
64 | EXPORT_SYMBOL(memcmp); | ||
65 | EXPORT_SYMBOL(memmove); | ||
66 | EXPORT_SYMBOL(memchr); | ||
67 | EXPORT_SYMBOL(get_wchan); | ||
68 | |||
69 | /* | ||
70 | * libgcc functions - functions that are used internally by the | ||
71 | * compiler... (prototypes are not correct though, but that | ||
72 | * doesn't really matter since they're not versioned). | ||
73 | */ | ||
74 | extern void __ashldi3(void); | ||
75 | extern void __ashrdi3(void); | ||
76 | extern void __smulsi3_highpart(void); | ||
77 | extern void __umulsi3_highpart(void); | ||
78 | extern void __divsi3(void); | ||
79 | extern void __lshrdi3(void); | ||
80 | extern void __modsi3(void); | ||
81 | extern void __muldi3(void); | ||
82 | extern void __udivsi3(void); | ||
83 | extern void __umodsi3(void); | ||
84 | |||
85 | /* gcc lib functions */ | ||
86 | EXPORT_SYMBOL(__ashldi3); | ||
87 | EXPORT_SYMBOL(__ashrdi3); | ||
88 | EXPORT_SYMBOL(__umulsi3_highpart); | ||
89 | EXPORT_SYMBOL(__smulsi3_highpart); | ||
90 | EXPORT_SYMBOL(__divsi3); | ||
91 | EXPORT_SYMBOL(__lshrdi3); | ||
92 | EXPORT_SYMBOL(__modsi3); | ||
93 | EXPORT_SYMBOL(__muldi3); | ||
94 | EXPORT_SYMBOL(__udivsi3); | ||
95 | EXPORT_SYMBOL(__umodsi3); | ||
96 | |||
97 | EXPORT_SYMBOL(outsb); | ||
98 | EXPORT_SYMBOL(insb); | ||
99 | EXPORT_SYMBOL(outsw); | ||
100 | EXPORT_SYMBOL(insw); | ||
101 | EXPORT_SYMBOL(outsl); | ||
102 | EXPORT_SYMBOL(insl); | ||
103 | EXPORT_SYMBOL(irq_flags); | ||
104 | EXPORT_SYMBOL(iounmap); | ||
105 | EXPORT_SYMBOL(blackfin_dcache_invalidate_range); | ||
106 | EXPORT_SYMBOL(blackfin_icache_dcache_flush_range); | ||
107 | EXPORT_SYMBOL(blackfin_icache_flush_range); | ||
108 | EXPORT_SYMBOL(blackfin_dcache_flush_range); | ||
109 | EXPORT_SYMBOL(blackfin_dflush_page); | ||
110 | |||
111 | EXPORT_SYMBOL(csum_partial); | ||
112 | EXPORT_SYMBOL(__init_begin); | ||
113 | EXPORT_SYMBOL(__init_end); | ||
114 | EXPORT_SYMBOL(_ebss_l1); | ||
115 | EXPORT_SYMBOL(_stext_l1); | ||
116 | EXPORT_SYMBOL(_etext_l1); | ||
117 | EXPORT_SYMBOL(_sdata_l1); | ||
118 | EXPORT_SYMBOL(_ebss_b_l1); | ||
119 | EXPORT_SYMBOL(_sdata_b_l1); | ||