Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
armksyms.c
Go to the documentation of this file.
1 /*
2  * linux/arch/arm/kernel/armksyms.c
3  *
4  * Copyright (C) 2000 Russell King
5  *
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/export.h>
11 #include <linux/sched.h>
12 #include <linux/string.h>
13 #include <linux/cryptohash.h>
14 #include <linux/delay.h>
15 #include <linux/in6.h>
16 #include <linux/syscalls.h>
17 #include <linux/uaccess.h>
18 #include <linux/io.h>
19 
20 #include <asm/checksum.h>
21 #include <asm/ftrace.h>
22 
23 /*
24  * libgcc functions - functions that are used internally by the
25  * compiler... (prototypes are not correct though, but that
26  * doesn't really matter since they're not versioned).
27  */
28 extern void __ashldi3(void);
29 extern void __ashrdi3(void);
30 extern void __divsi3(void);
31 extern void __lshrdi3(void);
32 extern void __modsi3(void);
33 extern void __muldi3(void);
34 extern void __ucmpdi2(void);
35 extern void __udivsi3(void);
36 extern void __umodsi3(void);
37 extern void __do_div64(void);
38 
39 extern void __aeabi_idiv(void);
40 extern void __aeabi_idivmod(void);
41 extern void __aeabi_lasr(void);
42 extern void __aeabi_llsl(void);
43 extern void __aeabi_llsr(void);
44 extern void __aeabi_lmul(void);
45 extern void __aeabi_uidiv(void);
46 extern void __aeabi_uidivmod(void);
47 extern void __aeabi_ulcmp(void);
48 
49 extern void fpundefinstr(void);
50 
51  /* platform dependent support */
53 
54  /* networking */
59 
60  /* io */
61 #ifndef __raw_readsb
63 #endif
64 #ifndef __raw_readsw
66 #endif
67 #ifndef __raw_readsl
69 #endif
70 #ifndef __raw_writesb
72 #endif
73 #ifndef __raw_writesw
75 #endif
76 #ifndef __raw_writesl
78 #endif
79 
80  /* string / mem functions */
88 
89 #ifdef CONFIG_MMU
91 
95 
99 
104 #endif
105 
106  /* gcc lib functions */
117 
118 #ifdef CONFIG_AEABI
128 #endif
129 
130  /* bitops */
131 EXPORT_SYMBOL(_set_bit);
132 EXPORT_SYMBOL(_test_and_set_bit);
133 EXPORT_SYMBOL(_clear_bit);
134 EXPORT_SYMBOL(_test_and_clear_bit);
135 EXPORT_SYMBOL(_change_bit);
136 EXPORT_SYMBOL(_test_and_change_bit);
137 EXPORT_SYMBOL(_find_first_zero_bit_le);
138 EXPORT_SYMBOL(_find_next_zero_bit_le);
139 EXPORT_SYMBOL(_find_first_bit_le);
140 EXPORT_SYMBOL(_find_next_bit_le);
141 
142 #ifdef __ARMEB__
143 EXPORT_SYMBOL(_find_first_zero_bit_be);
144 EXPORT_SYMBOL(_find_next_zero_bit_be);
145 EXPORT_SYMBOL(_find_first_bit_be);
146 EXPORT_SYMBOL(_find_next_bit_be);
147 #endif
148 
149 #ifdef CONFIG_FUNCTION_TRACER
150 #ifdef CONFIG_OLD_MCOUNT
151 EXPORT_SYMBOL(mcount);
152 #endif
153 EXPORT_SYMBOL(__gnu_mcount_nc);
154 #endif
155 
156 #ifdef CONFIG_ARM_PATCH_PHYS_VIRT
157 EXPORT_SYMBOL(__pv_phys_offset);
158 #endif