Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 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> |
Jon Smirl | 894673e | 2006-07-10 04:44:13 -0700 | [diff] [blame] | 8 | #include <linux/screen_info.h> |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 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> |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 16 | #include <linux/bitops.h> |
| 17 | |
| 18 | #include <asm/page.h> |
| 19 | #include <asm/semaphore.h> |
| 20 | #include <asm/processor.h> |
| 21 | #include <asm/uaccess.h> |
| 22 | #include <asm/io.h> |
| 23 | #include <asm/ide.h> |
| 24 | #include <asm/atomic.h> |
| 25 | #include <asm/checksum.h> |
| 26 | #include <asm/pgtable.h> |
| 27 | #include <asm/tlbflush.h> |
| 28 | #include <linux/adb.h> |
| 29 | #include <linux/cuda.h> |
| 30 | #include <linux/pmu.h> |
| 31 | #include <asm/prom.h> |
| 32 | #include <asm/system.h> |
| 33 | #include <asm/pci-bridge.h> |
| 34 | #include <asm/irq.h> |
| 35 | #include <asm/pmac_feature.h> |
| 36 | #include <asm/dma.h> |
| 37 | #include <asm/machdep.h> |
| 38 | #include <asm/hw_irq.h> |
| 39 | #include <asm/nvram.h> |
| 40 | #include <asm/mmu_context.h> |
| 41 | #include <asm/backlight.h> |
| 42 | #include <asm/time.h> |
| 43 | #include <asm/cputable.h> |
| 44 | #include <asm/btext.h> |
| 45 | #include <asm/div64.h> |
David Gibson | c5ff700 | 2005-11-09 11:21:07 +1100 | [diff] [blame] | 46 | #include <asm/signal.h> |
David Gibson | a2c7021 | 2007-02-06 11:48:28 +1100 | [diff] [blame^] | 47 | #include <asm/dcr.h> |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 48 | |
| 49 | #ifdef CONFIG_8xx |
| 50 | #include <asm/commproc.h> |
| 51 | #endif |
| 52 | |
Paul Mackerras | d04c56f | 2006-10-04 16:47:49 +1000 | [diff] [blame] | 53 | #ifdef CONFIG_PPC64 |
| 54 | EXPORT_SYMBOL(local_irq_restore); |
| 55 | #endif |
| 56 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 57 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 58 | extern void transfer_to_handler(void); |
| 59 | extern void do_IRQ(struct pt_regs *regs); |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 60 | extern void machine_check_exception(struct pt_regs *regs); |
| 61 | extern void alignment_exception(struct pt_regs *regs); |
| 62 | extern void program_check_exception(struct pt_regs *regs); |
| 63 | extern void single_step_exception(struct pt_regs *regs); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 64 | extern int sys_sigreturn(struct pt_regs *regs); |
| 65 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 66 | EXPORT_SYMBOL(clear_pages); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 67 | EXPORT_SYMBOL(ISA_DMA_THRESHOLD); |
| 68 | EXPORT_SYMBOL(DMA_MODE_READ); |
| 69 | EXPORT_SYMBOL(DMA_MODE_WRITE); |
| 70 | EXPORT_SYMBOL(__div64_32); |
| 71 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 72 | EXPORT_SYMBOL(do_signal); |
| 73 | EXPORT_SYMBOL(transfer_to_handler); |
| 74 | EXPORT_SYMBOL(do_IRQ); |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 75 | EXPORT_SYMBOL(machine_check_exception); |
| 76 | EXPORT_SYMBOL(alignment_exception); |
| 77 | EXPORT_SYMBOL(program_check_exception); |
| 78 | EXPORT_SYMBOL(single_step_exception); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 79 | EXPORT_SYMBOL(sys_sigreturn); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 80 | #endif |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 81 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 82 | EXPORT_SYMBOL(strcpy); |
| 83 | EXPORT_SYMBOL(strncpy); |
| 84 | EXPORT_SYMBOL(strcat); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 85 | EXPORT_SYMBOL(strlen); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 86 | EXPORT_SYMBOL(strcmp); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 87 | EXPORT_SYMBOL(strcasecmp); |
Kumar Gala | 34ddf73 | 2006-04-02 16:01:58 -0500 | [diff] [blame] | 88 | EXPORT_SYMBOL(strncasecmp); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 89 | |
| 90 | EXPORT_SYMBOL(csum_partial); |
| 91 | EXPORT_SYMBOL(csum_partial_copy_generic); |
| 92 | EXPORT_SYMBOL(ip_fast_csum); |
| 93 | EXPORT_SYMBOL(csum_tcpudp_magic); |
| 94 | |
| 95 | EXPORT_SYMBOL(__copy_tofrom_user); |
| 96 | EXPORT_SYMBOL(__clear_user); |
| 97 | EXPORT_SYMBOL(__strncpy_from_user); |
| 98 | EXPORT_SYMBOL(__strnlen_user); |
David Howells | 3dd836a | 2006-09-12 16:04:25 +0100 | [diff] [blame] | 99 | #ifdef CONFIG_PPC64 |
| 100 | EXPORT_SYMBOL(copy_4K_page); |
| 101 | #endif |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 102 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 103 | #if defined(CONFIG_PPC32) && (defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE)) |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 104 | EXPORT_SYMBOL(ppc_ide_md); |
| 105 | #endif |
| 106 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 107 | #if defined(CONFIG_PCI) && defined(CONFIG_PPC32) |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 108 | EXPORT_SYMBOL(isa_io_base); |
| 109 | EXPORT_SYMBOL(isa_mem_base); |
| 110 | EXPORT_SYMBOL(pci_dram_offset); |
| 111 | EXPORT_SYMBOL(pci_alloc_consistent); |
| 112 | EXPORT_SYMBOL(pci_free_consistent); |
| 113 | EXPORT_SYMBOL(pci_bus_io_base); |
| 114 | EXPORT_SYMBOL(pci_bus_io_base_phys); |
| 115 | EXPORT_SYMBOL(pci_bus_mem_base_phys); |
| 116 | EXPORT_SYMBOL(pci_bus_to_hose); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 117 | #endif /* CONFIG_PCI */ |
| 118 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 119 | EXPORT_SYMBOL(start_thread); |
| 120 | EXPORT_SYMBOL(kernel_thread); |
| 121 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 122 | EXPORT_SYMBOL(giveup_fpu); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 123 | #ifdef CONFIG_ALTIVEC |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 124 | EXPORT_SYMBOL(giveup_altivec); |
| 125 | #endif /* CONFIG_ALTIVEC */ |
| 126 | #ifdef CONFIG_SPE |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 127 | EXPORT_SYMBOL(giveup_spe); |
| 128 | #endif /* CONFIG_SPE */ |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 129 | |
Paul Mackerras | 666acb9 | 2005-11-29 15:50:58 +1100 | [diff] [blame] | 130 | #ifndef CONFIG_PPC64 |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 131 | EXPORT_SYMBOL(flush_instruction_cache); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 132 | EXPORT_SYMBOL(flush_tlb_kernel_range); |
| 133 | EXPORT_SYMBOL(flush_tlb_page); |
| 134 | EXPORT_SYMBOL(_tlbie); |
| 135 | #endif |
Paul Mackerras | 666acb9 | 2005-11-29 15:50:58 +1100 | [diff] [blame] | 136 | EXPORT_SYMBOL(__flush_icache_range); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 137 | EXPORT_SYMBOL(flush_dcache_range); |
| 138 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 139 | #ifdef CONFIG_SMP |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 140 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 141 | EXPORT_SYMBOL(smp_hw_index); |
| 142 | #endif |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 143 | #endif |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 144 | |
| 145 | #ifdef CONFIG_ADB |
| 146 | EXPORT_SYMBOL(adb_request); |
| 147 | EXPORT_SYMBOL(adb_register); |
| 148 | EXPORT_SYMBOL(adb_unregister); |
| 149 | EXPORT_SYMBOL(adb_poll); |
| 150 | EXPORT_SYMBOL(adb_try_handler_change); |
| 151 | #endif /* CONFIG_ADB */ |
| 152 | #ifdef CONFIG_ADB_CUDA |
| 153 | EXPORT_SYMBOL(cuda_request); |
| 154 | EXPORT_SYMBOL(cuda_poll); |
| 155 | #endif /* CONFIG_ADB_CUDA */ |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 156 | #ifdef CONFIG_VT |
| 157 | EXPORT_SYMBOL(kd_mksound); |
| 158 | #endif |
| 159 | EXPORT_SYMBOL(to_tm); |
| 160 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 161 | #ifdef CONFIG_PPC32 |
| 162 | long long __ashrdi3(long long, int); |
| 163 | long long __ashldi3(long long, int); |
| 164 | long long __lshrdi3(long long, int); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 165 | EXPORT_SYMBOL(__ashrdi3); |
| 166 | EXPORT_SYMBOL(__ashldi3); |
| 167 | EXPORT_SYMBOL(__lshrdi3); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 168 | #endif |
| 169 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 170 | EXPORT_SYMBOL(memcpy); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 171 | EXPORT_SYMBOL(memset); |
| 172 | EXPORT_SYMBOL(memmove); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 173 | EXPORT_SYMBOL(memcmp); |
| 174 | EXPORT_SYMBOL(memchr); |
| 175 | |
| 176 | #if defined(CONFIG_FB_VGA16_MODULE) |
| 177 | EXPORT_SYMBOL(screen_info); |
| 178 | #endif |
| 179 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 180 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 181 | EXPORT_SYMBOL(timer_interrupt); |
| 182 | EXPORT_SYMBOL(irq_desc); |
| 183 | EXPORT_SYMBOL(tb_ticks_per_jiffy); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 184 | EXPORT_SYMBOL(console_drivers); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 185 | EXPORT_SYMBOL(cacheable_memcpy); |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 186 | #endif |
| 187 | |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 188 | #ifdef CONFIG_8xx |
| 189 | EXPORT_SYMBOL(cpm_install_handler); |
| 190 | EXPORT_SYMBOL(cpm_free_handler); |
| 191 | #endif /* CONFIG_8xx */ |
Kumar Gala | 7d13d21a | 2006-01-13 11:19:58 -0600 | [diff] [blame] | 192 | #if defined(CONFIG_8xx) || defined(CONFIG_40x) |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 193 | EXPORT_SYMBOL(__res); |
| 194 | #endif |
| 195 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 196 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 197 | EXPORT_SYMBOL(next_mmu_context); |
| 198 | EXPORT_SYMBOL(set_context); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 199 | #endif |
| 200 | |
| 201 | #ifdef CONFIG_PPC_STD_MMU_32 |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 202 | extern long mol_trampoline; |
| 203 | EXPORT_SYMBOL(mol_trampoline); /* For MOL */ |
| 204 | EXPORT_SYMBOL(flush_hash_pages); /* For MOL */ |
| 205 | #ifdef CONFIG_SMP |
| 206 | extern int mmu_hash_lock; |
| 207 | EXPORT_SYMBOL(mmu_hash_lock); /* For MOL */ |
| 208 | #endif /* CONFIG_SMP */ |
| 209 | extern long *intercept_table; |
| 210 | EXPORT_SYMBOL(intercept_table); |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 211 | #endif /* CONFIG_PPC_STD_MMU_32 */ |
Kumar Gala | 45d8e7a | 2006-12-10 23:15:47 -0600 | [diff] [blame] | 212 | #ifdef CONFIG_PPC_DCR_NATIVE |
Paul Mackerras | 20c8c21 | 2005-09-28 20:28:14 +1000 | [diff] [blame] | 213 | EXPORT_SYMBOL(__mtdcr); |
| 214 | EXPORT_SYMBOL(__mfdcr); |
| 215 | #endif |