bfin_ksyms.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. #include <linux/module.h>
  30. #include <linux/irq.h>
  31. #include <linux/uaccess.h>
  32. #include <asm/checksum.h>
  33. #include <asm/cacheflush.h>
  34. /* platform dependent support */
  35. EXPORT_SYMBOL(__ioremap);
  36. EXPORT_SYMBOL(ip_fast_csum);
  37. EXPORT_SYMBOL(kernel_thread);
  38. EXPORT_SYMBOL(is_in_rom);
  39. EXPORT_SYMBOL(bfin_return_from_exception);
  40. /* Networking helper routines. */
  41. EXPORT_SYMBOL(csum_partial_copy);
  42. /* The following are special because they're not called
  43. * explicitly (the C compiler generates them). Fortunately,
  44. * their interface isn't gonna change any time soon now, so
  45. * it's OK to leave it out of version control.
  46. */
  47. EXPORT_SYMBOL(memcpy);
  48. EXPORT_SYMBOL(memset);
  49. EXPORT_SYMBOL(memcmp);
  50. EXPORT_SYMBOL(memmove);
  51. EXPORT_SYMBOL(memchr);
  52. /*
  53. * libgcc functions - functions that are used internally by the
  54. * compiler... (prototypes are not correct though, but that
  55. * doesn't really matter since they're not versioned).
  56. */
  57. extern void __ashldi3(void);
  58. extern void __ashrdi3(void);
  59. extern void __smulsi3_highpart(void);
  60. extern void __umulsi3_highpart(void);
  61. extern void __divsi3(void);
  62. extern void __lshrdi3(void);
  63. extern void __modsi3(void);
  64. extern void __muldi3(void);
  65. extern void __udivsi3(void);
  66. extern void __umodsi3(void);
  67. /* gcc lib functions */
  68. EXPORT_SYMBOL(__ashldi3);
  69. EXPORT_SYMBOL(__ashrdi3);
  70. EXPORT_SYMBOL(__umulsi3_highpart);
  71. EXPORT_SYMBOL(__smulsi3_highpart);
  72. EXPORT_SYMBOL(__divsi3);
  73. EXPORT_SYMBOL(__lshrdi3);
  74. EXPORT_SYMBOL(__modsi3);
  75. EXPORT_SYMBOL(__muldi3);
  76. EXPORT_SYMBOL(__udivsi3);
  77. EXPORT_SYMBOL(__umodsi3);
  78. EXPORT_SYMBOL(outsb);
  79. EXPORT_SYMBOL(insb);
  80. EXPORT_SYMBOL(outsw);
  81. EXPORT_SYMBOL(outsw_8);
  82. EXPORT_SYMBOL(insw);
  83. EXPORT_SYMBOL(insw_8);
  84. EXPORT_SYMBOL(outsl);
  85. EXPORT_SYMBOL(insl);
  86. EXPORT_SYMBOL(insl_16);
  87. EXPORT_SYMBOL(irq_flags);
  88. EXPORT_SYMBOL(iounmap);
  89. EXPORT_SYMBOL(blackfin_dcache_invalidate_range);
  90. EXPORT_SYMBOL(blackfin_icache_dcache_flush_range);
  91. EXPORT_SYMBOL(blackfin_icache_flush_range);
  92. EXPORT_SYMBOL(blackfin_dcache_flush_range);
  93. EXPORT_SYMBOL(blackfin_dflush_page);
  94. EXPORT_SYMBOL(csum_partial);
  95. EXPORT_SYMBOL(__init_begin);
  96. EXPORT_SYMBOL(__init_end);
  97. EXPORT_SYMBOL(_ebss_l1);
  98. EXPORT_SYMBOL(_stext_l1);
  99. EXPORT_SYMBOL(_etext_l1);
  100. EXPORT_SYMBOL(_sdata_l1);
  101. EXPORT_SYMBOL(_ebss_b_l1);
  102. EXPORT_SYMBOL(_sdata_b_l1);