ppc_ksyms.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. #include <linux/module.h>
  2. #include <linux/threads.h>
  3. #include <linux/smp.h>
  4. #include <linux/sched.h>
  5. #include <linux/elfcore.h>
  6. #include <linux/string.h>
  7. #include <linux/interrupt.h>
  8. #include <linux/screen_info.h>
  9. #include <linux/vt_kern.h>
  10. #include <linux/nvram.h>
  11. #include <linux/console.h>
  12. #include <linux/irq.h>
  13. #include <linux/pci.h>
  14. #include <linux/delay.h>
  15. #include <linux/ide.h>
  16. #include <linux/bitops.h>
  17. #include <asm/page.h>
  18. #include <asm/semaphore.h>
  19. #include <asm/processor.h>
  20. #include <asm/uaccess.h>
  21. #include <asm/io.h>
  22. #include <asm/ide.h>
  23. #include <asm/atomic.h>
  24. #include <asm/checksum.h>
  25. #include <asm/pgtable.h>
  26. #include <asm/tlbflush.h>
  27. #include <linux/adb.h>
  28. #include <linux/cuda.h>
  29. #include <linux/pmu.h>
  30. #include <asm/prom.h>
  31. #include <asm/system.h>
  32. #include <asm/pci-bridge.h>
  33. #include <asm/irq.h>
  34. #include <asm/pmac_feature.h>
  35. #include <asm/dma.h>
  36. #include <asm/machdep.h>
  37. #include <asm/hw_irq.h>
  38. #include <asm/nvram.h>
  39. #include <asm/mmu_context.h>
  40. #include <asm/backlight.h>
  41. #include <asm/time.h>
  42. #include <asm/cputable.h>
  43. #include <asm/btext.h>
  44. #include <asm/div64.h>
  45. #include <asm/signal.h>
  46. #include <asm/dcr.h>
  47. #ifdef CONFIG_8xx
  48. #include <asm/commproc.h>
  49. #endif
  50. #ifdef CONFIG_PPC64
  51. EXPORT_SYMBOL(local_irq_restore);
  52. #endif
  53. #ifdef CONFIG_PPC32
  54. extern void transfer_to_handler(void);
  55. extern void do_IRQ(struct pt_regs *regs);
  56. extern void machine_check_exception(struct pt_regs *regs);
  57. extern void alignment_exception(struct pt_regs *regs);
  58. extern void program_check_exception(struct pt_regs *regs);
  59. extern void single_step_exception(struct pt_regs *regs);
  60. extern int sys_sigreturn(struct pt_regs *regs);
  61. EXPORT_SYMBOL(clear_pages);
  62. EXPORT_SYMBOL(ISA_DMA_THRESHOLD);
  63. EXPORT_SYMBOL(DMA_MODE_READ);
  64. EXPORT_SYMBOL(DMA_MODE_WRITE);
  65. EXPORT_SYMBOL(__div64_32);
  66. EXPORT_SYMBOL(do_signal);
  67. EXPORT_SYMBOL(transfer_to_handler);
  68. EXPORT_SYMBOL(do_IRQ);
  69. EXPORT_SYMBOL(machine_check_exception);
  70. EXPORT_SYMBOL(alignment_exception);
  71. EXPORT_SYMBOL(program_check_exception);
  72. EXPORT_SYMBOL(single_step_exception);
  73. EXPORT_SYMBOL(sys_sigreturn);
  74. #endif
  75. EXPORT_SYMBOL(strcpy);
  76. EXPORT_SYMBOL(strncpy);
  77. EXPORT_SYMBOL(strcat);
  78. EXPORT_SYMBOL(strlen);
  79. EXPORT_SYMBOL(strcmp);
  80. EXPORT_SYMBOL(strcasecmp);
  81. EXPORT_SYMBOL(strncasecmp);
  82. EXPORT_SYMBOL(csum_partial);
  83. EXPORT_SYMBOL(csum_partial_copy_generic);
  84. EXPORT_SYMBOL(ip_fast_csum);
  85. EXPORT_SYMBOL(csum_tcpudp_magic);
  86. EXPORT_SYMBOL(__copy_tofrom_user);
  87. EXPORT_SYMBOL(__clear_user);
  88. EXPORT_SYMBOL(__strncpy_from_user);
  89. EXPORT_SYMBOL(__strnlen_user);
  90. #ifdef CONFIG_PPC64
  91. EXPORT_SYMBOL(copy_4K_page);
  92. #endif
  93. #if defined(CONFIG_PPC32) && (defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE))
  94. EXPORT_SYMBOL(ppc_ide_md);
  95. #endif
  96. #if defined(CONFIG_PCI) && defined(CONFIG_PPC32)
  97. EXPORT_SYMBOL(isa_io_base);
  98. EXPORT_SYMBOL(isa_mem_base);
  99. EXPORT_SYMBOL(pci_dram_offset);
  100. EXPORT_SYMBOL(pci_alloc_consistent);
  101. EXPORT_SYMBOL(pci_free_consistent);
  102. EXPORT_SYMBOL(pci_bus_io_base);
  103. EXPORT_SYMBOL(pci_bus_io_base_phys);
  104. EXPORT_SYMBOL(pci_bus_mem_base_phys);
  105. EXPORT_SYMBOL(pci_bus_to_hose);
  106. #endif /* CONFIG_PCI */
  107. EXPORT_SYMBOL(start_thread);
  108. EXPORT_SYMBOL(kernel_thread);
  109. EXPORT_SYMBOL(giveup_fpu);
  110. #ifdef CONFIG_ALTIVEC
  111. EXPORT_SYMBOL(giveup_altivec);
  112. #endif /* CONFIG_ALTIVEC */
  113. #ifdef CONFIG_SPE
  114. EXPORT_SYMBOL(giveup_spe);
  115. #endif /* CONFIG_SPE */
  116. #ifndef CONFIG_PPC64
  117. EXPORT_SYMBOL(flush_instruction_cache);
  118. EXPORT_SYMBOL(flush_tlb_kernel_range);
  119. EXPORT_SYMBOL(flush_tlb_page);
  120. EXPORT_SYMBOL(_tlbie);
  121. #endif
  122. EXPORT_SYMBOL(__flush_icache_range);
  123. EXPORT_SYMBOL(flush_dcache_range);
  124. #ifdef CONFIG_SMP
  125. #ifdef CONFIG_PPC32
  126. EXPORT_SYMBOL(smp_hw_index);
  127. #endif
  128. #endif
  129. #ifdef CONFIG_ADB
  130. EXPORT_SYMBOL(adb_request);
  131. EXPORT_SYMBOL(adb_register);
  132. EXPORT_SYMBOL(adb_unregister);
  133. EXPORT_SYMBOL(adb_poll);
  134. EXPORT_SYMBOL(adb_try_handler_change);
  135. #endif /* CONFIG_ADB */
  136. #ifdef CONFIG_ADB_CUDA
  137. EXPORT_SYMBOL(cuda_request);
  138. EXPORT_SYMBOL(cuda_poll);
  139. #endif /* CONFIG_ADB_CUDA */
  140. #ifdef CONFIG_VT
  141. EXPORT_SYMBOL(kd_mksound);
  142. #endif
  143. EXPORT_SYMBOL(to_tm);
  144. #ifdef CONFIG_PPC32
  145. long long __ashrdi3(long long, int);
  146. long long __ashldi3(long long, int);
  147. long long __lshrdi3(long long, int);
  148. EXPORT_SYMBOL(__ashrdi3);
  149. EXPORT_SYMBOL(__ashldi3);
  150. EXPORT_SYMBOL(__lshrdi3);
  151. #endif
  152. EXPORT_SYMBOL(memcpy);
  153. EXPORT_SYMBOL(memset);
  154. EXPORT_SYMBOL(memmove);
  155. EXPORT_SYMBOL(memcmp);
  156. EXPORT_SYMBOL(memchr);
  157. #if defined(CONFIG_FB_VGA16_MODULE)
  158. EXPORT_SYMBOL(screen_info);
  159. #endif
  160. #ifdef CONFIG_PPC32
  161. EXPORT_SYMBOL(timer_interrupt);
  162. EXPORT_SYMBOL(irq_desc);
  163. EXPORT_SYMBOL(tb_ticks_per_jiffy);
  164. EXPORT_SYMBOL(console_drivers);
  165. EXPORT_SYMBOL(cacheable_memcpy);
  166. #endif
  167. #ifdef CONFIG_8xx
  168. EXPORT_SYMBOL(cpm_install_handler);
  169. EXPORT_SYMBOL(cpm_free_handler);
  170. #endif /* CONFIG_8xx */
  171. #if defined(CONFIG_8xx) || defined(CONFIG_40x)
  172. EXPORT_SYMBOL(__res);
  173. #endif
  174. #ifdef CONFIG_PPC32
  175. EXPORT_SYMBOL(next_mmu_context);
  176. EXPORT_SYMBOL(set_context);
  177. #endif
  178. #ifdef CONFIG_PPC_STD_MMU_32
  179. extern long mol_trampoline;
  180. EXPORT_SYMBOL(mol_trampoline); /* For MOL */
  181. EXPORT_SYMBOL(flush_hash_pages); /* For MOL */
  182. #ifdef CONFIG_SMP
  183. extern int mmu_hash_lock;
  184. EXPORT_SYMBOL(mmu_hash_lock); /* For MOL */
  185. #endif /* CONFIG_SMP */
  186. extern long *intercept_table;
  187. EXPORT_SYMBOL(intercept_table);
  188. #endif /* CONFIG_PPC_STD_MMU_32 */
  189. #ifdef CONFIG_PPC_DCR_NATIVE
  190. EXPORT_SYMBOL(__mtdcr);
  191. EXPORT_SYMBOL(__mfdcr);
  192. #endif