mips64_ksyms.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Export MIPS64-specific functions needed for loadable modules.
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 by Ralf Baechle
  9.  * Copyright (C) 1999, 2000, 2001 Silicon Graphics, Inc.
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/module.h>
  13. #include <linux/string.h>
  14. #include <linux/mm.h>
  15. #include <linux/interrupt.h>
  16. #include <asm/irq.h>
  17. #include <linux/in6.h>
  18. #include <linux/pci.h>
  19. #include <asm/bootinfo.h>
  20. #include <asm/dma.h>
  21. #include <asm/floppy.h>
  22. #include <asm/io.h>
  23. #include <asm/page.h>
  24. #include <asm/pgalloc.h>
  25. #include <asm/semaphore.h>
  26. #include <asm/softirq.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/checksum.h>
  29. extern void *__bzero(void *__s, size_t __count);
  30. extern long __strncpy_from_user_nocheck_asm(char *__to,
  31.                                             const char *__from, long __len);
  32. extern long __strncpy_from_user_asm(char *__to, const char *__from,
  33.                                     long __len);
  34. extern long __strlen_user_nocheck_asm(const char *s);
  35. extern long __strlen_user_asm(const char *s);
  36. extern long __strnlen_user_nocheck_asm(const char *s);
  37. extern long __strnlen_user_asm(const char *s);
  38. EXPORT_SYMBOL(mips_machtype);
  39. EXPORT_SYMBOL(EISA_bus);
  40. /*
  41.  * String functions
  42.  */
  43. EXPORT_SYMBOL_NOVERS(memcmp);
  44. EXPORT_SYMBOL_NOVERS(memset);
  45. EXPORT_SYMBOL_NOVERS(memcpy);
  46. EXPORT_SYMBOL_NOVERS(memmove);
  47. EXPORT_SYMBOL_NOVERS(strcat);
  48. EXPORT_SYMBOL_NOVERS(strchr);
  49. EXPORT_SYMBOL_NOVERS(strlen);
  50. EXPORT_SYMBOL_NOVERS(strncat);
  51. EXPORT_SYMBOL_NOVERS(strnlen);
  52. EXPORT_SYMBOL_NOVERS(strrchr);
  53. EXPORT_SYMBOL_NOVERS(strtok);
  54. EXPORT_SYMBOL_NOVERS(strpbrk);
  55. EXPORT_SYMBOL(_clear_page);
  56. EXPORT_SYMBOL(enable_irq);
  57. EXPORT_SYMBOL(disable_irq);
  58. EXPORT_SYMBOL(kernel_thread);
  59. /*
  60.  * Userspace access stuff.
  61.  */
  62. EXPORT_SYMBOL_NOVERS(__copy_user);
  63. EXPORT_SYMBOL_NOVERS(__bzero);
  64. EXPORT_SYMBOL_NOVERS(__strncpy_from_user_nocheck_asm);
  65. EXPORT_SYMBOL_NOVERS(__strncpy_from_user_asm);
  66. EXPORT_SYMBOL_NOVERS(__strlen_user_nocheck_asm);
  67. EXPORT_SYMBOL_NOVERS(__strlen_user_asm);
  68. EXPORT_SYMBOL_NOVERS(__strnlen_user_nocheck_asm);
  69. EXPORT_SYMBOL_NOVERS(__strnlen_user_asm);
  70. /* Networking helper routines. */
  71. EXPORT_SYMBOL(csum_partial_copy);
  72. /*
  73.  * Functions to control caches.
  74.  */
  75. EXPORT_SYMBOL(_flush_page_to_ram);
  76. EXPORT_SYMBOL(_flush_cache_l1);
  77. #ifndef CONFIG_COHERENT_IO
  78. EXPORT_SYMBOL(_dma_cache_wback_inv);
  79. EXPORT_SYMBOL(_dma_cache_inv);
  80. #endif
  81. EXPORT_SYMBOL(invalid_pte_table);
  82. /*
  83.  * Base address of ports for Intel style I/O.
  84.  */
  85. #if defined (CONFIG_PCI) || defined (CONFIG_ISA)
  86. EXPORT_SYMBOL(mips_io_port_base);
  87. #endif
  88. /*
  89.  * Kernel hacking ...
  90.  */
  91. #include <asm/branch.h>
  92. #include <linux/sched.h>
  93. int register_fpe(void (*handler)(struct pt_regs *regs, unsigned int fcr31));
  94. int unregister_fpe(void (*handler)(struct pt_regs *regs, unsigned int fcr31));
  95. #ifdef CONFIG_MIPS_FPE_MODULE
  96. EXPORT_SYMBOL(__compute_return_epc);
  97. EXPORT_SYMBOL(register_fpe);
  98. EXPORT_SYMBOL(unregister_fpe);
  99. #endif
  100. #ifdef CONFIG_VT
  101. EXPORT_SYMBOL(screen_info);
  102. #endif
  103. EXPORT_SYMBOL(get_wchan);
  104. EXPORT_SYMBOL(_flush_tlb_page);