aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/kernel/ppc_ksyms.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/kernel/ppc_ksyms.c')
-rw-r--r--arch/ppc/kernel/ppc_ksyms.c258
1 files changed, 0 insertions, 258 deletions
diff --git a/arch/ppc/kernel/ppc_ksyms.c b/arch/ppc/kernel/ppc_ksyms.c
deleted file mode 100644
index 5d529bcbeee9..000000000000
--- a/arch/ppc/kernel/ppc_ksyms.c
+++ /dev/null
@@ -1,258 +0,0 @@
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/pm.h>
16#include <linux/bitops.h>
17
18#include <asm/page.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 <asm/cacheflush.h>
28#include <linux/adb.h>
29#include <linux/cuda.h>
30#include <linux/pmu.h>
31#include <asm/system.h>
32#include <asm/pci-bridge.h>
33#include <asm/irq.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/xmon.h>
44#include <asm/signal.h>
45#include <asm/dcr.h>
46
47#ifdef CONFIG_8xx
48#include <asm/cpm1.h>
49#endif
50
51extern void transfer_to_handler(void);
52extern void do_IRQ(struct pt_regs *regs);
53extern void machine_check_exception(struct pt_regs *regs);
54extern void alignment_exception(struct pt_regs *regs);
55extern void program_check_exception(struct pt_regs *regs);
56extern void single_step_exception(struct pt_regs *regs);
57extern int sys_sigreturn(struct pt_regs *regs);
58
59long long __ashrdi3(long long, int);
60long long __ashldi3(long long, int);
61long long __lshrdi3(long long, int);
62
63EXPORT_SYMBOL(empty_zero_page);
64EXPORT_SYMBOL(clear_pages);
65EXPORT_SYMBOL(clear_user_page);
66EXPORT_SYMBOL(copy_page);
67EXPORT_SYMBOL(transfer_to_handler);
68EXPORT_SYMBOL(do_IRQ);
69EXPORT_SYMBOL(machine_check_exception);
70EXPORT_SYMBOL(alignment_exception);
71EXPORT_SYMBOL(program_check_exception);
72EXPORT_SYMBOL(single_step_exception);
73EXPORT_SYMBOL(sys_sigreturn);
74EXPORT_SYMBOL(ppc_n_lost_interrupts);
75
76EXPORT_SYMBOL(ISA_DMA_THRESHOLD);
77EXPORT_SYMBOL(DMA_MODE_READ);
78EXPORT_SYMBOL(DMA_MODE_WRITE);
79
80#if !defined(__INLINE_BITOPS)
81EXPORT_SYMBOL(set_bit);
82EXPORT_SYMBOL(clear_bit);
83EXPORT_SYMBOL(change_bit);
84EXPORT_SYMBOL(test_and_set_bit);
85EXPORT_SYMBOL(test_and_clear_bit);
86EXPORT_SYMBOL(test_and_change_bit);
87#endif /* __INLINE_BITOPS */
88
89EXPORT_SYMBOL(strcpy);
90EXPORT_SYMBOL(strncpy);
91EXPORT_SYMBOL(strcat);
92EXPORT_SYMBOL(strlen);
93EXPORT_SYMBOL(strcmp);
94EXPORT_SYMBOL(strncmp);
95
96EXPORT_SYMBOL(csum_partial);
97EXPORT_SYMBOL(csum_partial_copy_generic);
98EXPORT_SYMBOL(ip_fast_csum);
99EXPORT_SYMBOL(csum_tcpudp_magic);
100
101EXPORT_SYMBOL(__copy_tofrom_user);
102EXPORT_SYMBOL(__clear_user);
103EXPORT_SYMBOL(__strncpy_from_user);
104EXPORT_SYMBOL(__strnlen_user);
105
106/*
107EXPORT_SYMBOL(inb);
108EXPORT_SYMBOL(inw);
109EXPORT_SYMBOL(inl);
110EXPORT_SYMBOL(outb);
111EXPORT_SYMBOL(outw);
112EXPORT_SYMBOL(outl);
113EXPORT_SYMBOL(outsl);*/
114
115EXPORT_SYMBOL(_insb);
116EXPORT_SYMBOL(_outsb);
117EXPORT_SYMBOL(_insw_ns);
118EXPORT_SYMBOL(_outsw_ns);
119EXPORT_SYMBOL(_insl_ns);
120EXPORT_SYMBOL(_outsl_ns);
121EXPORT_SYMBOL(iopa);
122EXPORT_SYMBOL(ioremap);
123#ifdef CONFIG_44x
124EXPORT_SYMBOL(ioremap64);
125#endif
126EXPORT_SYMBOL(__ioremap);
127EXPORT_SYMBOL(iounmap);
128EXPORT_SYMBOL(ioremap_bot); /* aka VMALLOC_END */
129
130#ifdef CONFIG_PCI
131EXPORT_SYMBOL(isa_io_base);
132EXPORT_SYMBOL(isa_mem_base);
133EXPORT_SYMBOL(pci_dram_offset);
134EXPORT_SYMBOL(pci_alloc_consistent);
135EXPORT_SYMBOL(pci_free_consistent);
136EXPORT_SYMBOL(pci_bus_io_base);
137EXPORT_SYMBOL(pci_bus_io_base_phys);
138EXPORT_SYMBOL(pci_bus_mem_base_phys);
139EXPORT_SYMBOL(pci_bus_to_hose);
140EXPORT_SYMBOL(pci_resource_to_bus);
141EXPORT_SYMBOL(pci_phys_to_bus);
142EXPORT_SYMBOL(pci_bus_to_phys);
143#endif /* CONFIG_PCI */
144
145#ifdef CONFIG_NOT_COHERENT_CACHE
146extern void flush_dcache_all(void);
147EXPORT_SYMBOL(flush_dcache_all);
148#endif
149
150EXPORT_SYMBOL(start_thread);
151EXPORT_SYMBOL(kernel_thread);
152
153EXPORT_SYMBOL(flush_instruction_cache);
154EXPORT_SYMBOL(giveup_fpu);
155EXPORT_SYMBOL(__flush_icache_range);
156EXPORT_SYMBOL(flush_dcache_range);
157EXPORT_SYMBOL(flush_icache_user_range);
158EXPORT_SYMBOL(flush_dcache_page);
159EXPORT_SYMBOL(flush_tlb_kernel_range);
160EXPORT_SYMBOL(flush_tlb_page);
161EXPORT_SYMBOL(_tlbie);
162#ifdef CONFIG_ALTIVEC
163#ifndef CONFIG_SMP
164EXPORT_SYMBOL(last_task_used_altivec);
165#endif
166EXPORT_SYMBOL(giveup_altivec);
167#endif /* CONFIG_ALTIVEC */
168#ifdef CONFIG_SMP
169EXPORT_SYMBOL(smp_call_function);
170EXPORT_SYMBOL(smp_hw_index);
171#endif
172
173EXPORT_SYMBOL(ppc_md);
174
175#ifdef CONFIG_ADB
176EXPORT_SYMBOL(adb_request);
177EXPORT_SYMBOL(adb_register);
178EXPORT_SYMBOL(adb_unregister);
179EXPORT_SYMBOL(adb_poll);
180EXPORT_SYMBOL(adb_try_handler_change);
181#endif /* CONFIG_ADB */
182#ifdef CONFIG_ADB_CUDA
183EXPORT_SYMBOL(cuda_request);
184EXPORT_SYMBOL(cuda_poll);
185#endif /* CONFIG_ADB_CUDA */
186#if defined(CONFIG_BOOTX_TEXT)
187EXPORT_SYMBOL(btext_update_display);
188#endif
189EXPORT_SYMBOL(to_tm);
190
191EXPORT_SYMBOL(pm_power_off);
192
193EXPORT_SYMBOL(__ashrdi3);
194EXPORT_SYMBOL(__ashldi3);
195EXPORT_SYMBOL(__lshrdi3);
196EXPORT_SYMBOL(memcpy);
197EXPORT_SYMBOL(cacheable_memcpy);
198EXPORT_SYMBOL(memset);
199EXPORT_SYMBOL(memmove);
200EXPORT_SYMBOL(memcmp);
201EXPORT_SYMBOL(memchr);
202
203#if defined(CONFIG_FB_VGA16_MODULE)
204EXPORT_SYMBOL(screen_info);
205#endif
206
207EXPORT_SYMBOL(__delay);
208EXPORT_SYMBOL(timer_interrupt);
209EXPORT_SYMBOL(irq_desc);
210EXPORT_SYMBOL(tb_ticks_per_jiffy);
211EXPORT_SYMBOL(console_drivers);
212#ifdef CONFIG_XMON
213EXPORT_SYMBOL(xmon);
214EXPORT_SYMBOL(xmon_printf);
215#endif
216
217#if defined(CONFIG_KGDB) || defined(CONFIG_XMON)
218extern void (*debugger)(struct pt_regs *regs);
219extern int (*debugger_bpt)(struct pt_regs *regs);
220extern int (*debugger_sstep)(struct pt_regs *regs);
221extern int (*debugger_iabr_match)(struct pt_regs *regs);
222extern int (*debugger_dabr_match)(struct pt_regs *regs);
223extern void (*debugger_fault_handler)(struct pt_regs *regs);
224
225EXPORT_SYMBOL(debugger);
226EXPORT_SYMBOL(debugger_bpt);
227EXPORT_SYMBOL(debugger_sstep);
228EXPORT_SYMBOL(debugger_iabr_match);
229EXPORT_SYMBOL(debugger_dabr_match);
230EXPORT_SYMBOL(debugger_fault_handler);
231#endif
232
233#ifdef CONFIG_8xx
234EXPORT_SYMBOL(cpm_install_handler);
235EXPORT_SYMBOL(cpm_free_handler);
236#endif /* CONFIG_8xx */
237#if defined(CONFIG_8xx) || defined(CONFIG_40x)
238EXPORT_SYMBOL(__res);
239#endif
240
241EXPORT_SYMBOL(next_mmu_context);
242EXPORT_SYMBOL(set_context);
243EXPORT_SYMBOL(disarm_decr);
244#ifdef CONFIG_PPC_STD_MMU
245extern long mol_trampoline;
246EXPORT_SYMBOL(mol_trampoline); /* For MOL */
247EXPORT_SYMBOL(flush_hash_pages); /* For MOL */
248#ifdef CONFIG_SMP
249extern int mmu_hash_lock;
250EXPORT_SYMBOL(mmu_hash_lock); /* For MOL */
251#endif /* CONFIG_SMP */
252extern long *intercept_table;
253EXPORT_SYMBOL(intercept_table);
254#endif /* CONFIG_PPC_STD_MMU */
255#ifdef CONFIG_PPC_DCR_NATIVE
256EXPORT_SYMBOL(__mtdcr);
257EXPORT_SYMBOL(__mfdcr);
258#endif