ppc_ksyms.c 4.8 KB

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