armksyms.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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/module.h>
  11. #include <linux/string.h>
  12. #include <linux/cryptohash.h>
  13. #include <linux/delay.h>
  14. #include <linux/in6.h>
  15. #include <linux/syscalls.h>
  16. #include <linux/uaccess.h>
  17. #include <linux/io.h>
  18. #include <asm/checksum.h>
  19. #include <asm/system.h>
  20. #include <asm/ftrace.h>
  21. /*
  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).
  25. */
  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);
  36. extern void __aeabi_idiv(void);
  37. extern void __aeabi_idivmod(void);
  38. extern void __aeabi_lasr(void);
  39. extern void __aeabi_llsl(void);
  40. extern void __aeabi_llsr(void);
  41. extern void __aeabi_lmul(void);
  42. extern void __aeabi_uidiv(void);
  43. extern void __aeabi_uidivmod(void);
  44. extern void __aeabi_ulcmp(void);
  45. extern void fpundefinstr(void);
  46. extern void fp_enter(void);
  47. /*
  48. * This has a special calling convention; it doesn't
  49. * modify any of the usual registers, except for LR.
  50. */
  51. #define EXPORT_CRC_ALIAS(sym) __CRC_SYMBOL(sym, "")
  52. #define EXPORT_SYMBOL_ALIAS(sym,orig) \
  53. EXPORT_CRC_ALIAS(sym) \
  54. static const struct kernel_symbol __ksymtab_##sym \
  55. __used __attribute__((section("__ksymtab"))) = \
  56. { (unsigned long)&orig, #sym };
  57. /*
  58. * floating point math emulator support.
  59. * These symbols will never change their calling convention...
  60. */
  61. EXPORT_SYMBOL_ALIAS(kern_fp_enter,fp_enter);
  62. EXPORT_SYMBOL_ALIAS(fp_printk,printk);
  63. EXPORT_SYMBOL_ALIAS(fp_send_sig,send_sig);
  64. EXPORT_SYMBOL(__backtrace);
  65. /* platform dependent support */
  66. EXPORT_SYMBOL(__udelay);
  67. EXPORT_SYMBOL(__const_udelay);
  68. /* networking */
  69. EXPORT_SYMBOL(csum_partial);
  70. EXPORT_SYMBOL(csum_partial_copy_from_user);
  71. EXPORT_SYMBOL(csum_partial_copy_nocheck);
  72. EXPORT_SYMBOL(__csum_ipv6_magic);
  73. /* io */
  74. #ifndef __raw_readsb
  75. EXPORT_SYMBOL(__raw_readsb);
  76. #endif
  77. #ifndef __raw_readsw
  78. EXPORT_SYMBOL(__raw_readsw);
  79. #endif
  80. #ifndef __raw_readsl
  81. EXPORT_SYMBOL(__raw_readsl);
  82. #endif
  83. #ifndef __raw_writesb
  84. EXPORT_SYMBOL(__raw_writesb);
  85. #endif
  86. #ifndef __raw_writesw
  87. EXPORT_SYMBOL(__raw_writesw);
  88. #endif
  89. #ifndef __raw_writesl
  90. EXPORT_SYMBOL(__raw_writesl);
  91. #endif
  92. /* string / mem functions */
  93. EXPORT_SYMBOL(strchr);
  94. EXPORT_SYMBOL(strrchr);
  95. EXPORT_SYMBOL(memset);
  96. EXPORT_SYMBOL(memcpy);
  97. EXPORT_SYMBOL(memmove);
  98. EXPORT_SYMBOL(memchr);
  99. EXPORT_SYMBOL(__memzero);
  100. /* user mem (segment) */
  101. EXPORT_SYMBOL(__strnlen_user);
  102. EXPORT_SYMBOL(__strncpy_from_user);
  103. #ifdef CONFIG_MMU
  104. EXPORT_SYMBOL(__copy_from_user);
  105. EXPORT_SYMBOL(__copy_to_user);
  106. EXPORT_SYMBOL(__clear_user);
  107. EXPORT_SYMBOL(__get_user_1);
  108. EXPORT_SYMBOL(__get_user_2);
  109. EXPORT_SYMBOL(__get_user_4);
  110. EXPORT_SYMBOL(__put_user_1);
  111. EXPORT_SYMBOL(__put_user_2);
  112. EXPORT_SYMBOL(__put_user_4);
  113. EXPORT_SYMBOL(__put_user_8);
  114. #endif
  115. /* crypto hash */
  116. EXPORT_SYMBOL(sha_transform);
  117. /* gcc lib functions */
  118. EXPORT_SYMBOL(__ashldi3);
  119. EXPORT_SYMBOL(__ashrdi3);
  120. EXPORT_SYMBOL(__divsi3);
  121. EXPORT_SYMBOL(__lshrdi3);
  122. EXPORT_SYMBOL(__modsi3);
  123. EXPORT_SYMBOL(__muldi3);
  124. EXPORT_SYMBOL(__ucmpdi2);
  125. EXPORT_SYMBOL(__udivsi3);
  126. EXPORT_SYMBOL(__umodsi3);
  127. EXPORT_SYMBOL(__do_div64);
  128. #ifdef CONFIG_AEABI
  129. EXPORT_SYMBOL(__aeabi_idiv);
  130. EXPORT_SYMBOL(__aeabi_idivmod);
  131. EXPORT_SYMBOL(__aeabi_lasr);
  132. EXPORT_SYMBOL(__aeabi_llsl);
  133. EXPORT_SYMBOL(__aeabi_llsr);
  134. EXPORT_SYMBOL(__aeabi_lmul);
  135. EXPORT_SYMBOL(__aeabi_uidiv);
  136. EXPORT_SYMBOL(__aeabi_uidivmod);
  137. EXPORT_SYMBOL(__aeabi_ulcmp);
  138. #endif
  139. /* bitops */
  140. EXPORT_SYMBOL(_set_bit_le);
  141. EXPORT_SYMBOL(_test_and_set_bit_le);
  142. EXPORT_SYMBOL(_clear_bit_le);
  143. EXPORT_SYMBOL(_test_and_clear_bit_le);
  144. EXPORT_SYMBOL(_change_bit_le);
  145. EXPORT_SYMBOL(_test_and_change_bit_le);
  146. EXPORT_SYMBOL(_find_first_zero_bit_le);
  147. EXPORT_SYMBOL(_find_next_zero_bit_le);
  148. EXPORT_SYMBOL(_find_first_bit_le);
  149. 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
  162. EXPORT_SYMBOL(copy_page);
  163. #ifdef CONFIG_FTRACE
  164. EXPORT_SYMBOL(mcount);
  165. #endif