[STRING]: Move strcasecmp/strncasecmp to lib/string.c
[deliverable/linux.git] / arch / powerpc / kernel / ppc_ksyms.c
CommitLineData
20c8c210
PM
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>
894673ee 8#include <linux/screen_info.h>
20c8c210
PM
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>
20c8c210
PM
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>
c5ff7001 46#include <asm/signal.h>
a2c70211 47#include <asm/dcr.h>
20c8c210
PM
48
49#ifdef CONFIG_8xx
50#include <asm/commproc.h>
51#endif
52
d04c56f7
PM
53#ifdef CONFIG_PPC64
54EXPORT_SYMBOL(local_irq_restore);
55#endif
56
40ef8cbc 57#ifdef CONFIG_PPC32
20c8c210
PM
58extern void transfer_to_handler(void);
59extern void do_IRQ(struct pt_regs *regs);
dc1c1ca3
SR
60extern void machine_check_exception(struct pt_regs *regs);
61extern void alignment_exception(struct pt_regs *regs);
62extern void program_check_exception(struct pt_regs *regs);
63extern void single_step_exception(struct pt_regs *regs);
20c8c210
PM
64extern int sys_sigreturn(struct pt_regs *regs);
65
20c8c210 66EXPORT_SYMBOL(clear_pages);
40ef8cbc
PM
67EXPORT_SYMBOL(ISA_DMA_THRESHOLD);
68EXPORT_SYMBOL(DMA_MODE_READ);
69EXPORT_SYMBOL(DMA_MODE_WRITE);
70EXPORT_SYMBOL(__div64_32);
71
20c8c210
PM
72EXPORT_SYMBOL(do_signal);
73EXPORT_SYMBOL(transfer_to_handler);
74EXPORT_SYMBOL(do_IRQ);
dc1c1ca3
SR
75EXPORT_SYMBOL(machine_check_exception);
76EXPORT_SYMBOL(alignment_exception);
77EXPORT_SYMBOL(program_check_exception);
78EXPORT_SYMBOL(single_step_exception);
20c8c210 79EXPORT_SYMBOL(sys_sigreturn);
40ef8cbc 80#endif
20c8c210 81
20c8c210
PM
82EXPORT_SYMBOL(strcpy);
83EXPORT_SYMBOL(strncpy);
84EXPORT_SYMBOL(strcat);
20c8c210 85EXPORT_SYMBOL(strlen);
20c8c210 86EXPORT_SYMBOL(strcmp);
20c8c210
PM
87
88EXPORT_SYMBOL(csum_partial);
89EXPORT_SYMBOL(csum_partial_copy_generic);
90EXPORT_SYMBOL(ip_fast_csum);
91EXPORT_SYMBOL(csum_tcpudp_magic);
92
93EXPORT_SYMBOL(__copy_tofrom_user);
94EXPORT_SYMBOL(__clear_user);
95EXPORT_SYMBOL(__strncpy_from_user);
96EXPORT_SYMBOL(__strnlen_user);
3dd836a5
DH
97#ifdef CONFIG_PPC64
98EXPORT_SYMBOL(copy_4K_page);
99#endif
20c8c210 100
40ef8cbc 101#if defined(CONFIG_PPC32) && (defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE))
20c8c210
PM
102EXPORT_SYMBOL(ppc_ide_md);
103#endif
104
40ef8cbc 105#if defined(CONFIG_PCI) && defined(CONFIG_PPC32)
20c8c210
PM
106EXPORT_SYMBOL(isa_io_base);
107EXPORT_SYMBOL(isa_mem_base);
108EXPORT_SYMBOL(pci_dram_offset);
109EXPORT_SYMBOL(pci_alloc_consistent);
110EXPORT_SYMBOL(pci_free_consistent);
111EXPORT_SYMBOL(pci_bus_io_base);
112EXPORT_SYMBOL(pci_bus_io_base_phys);
113EXPORT_SYMBOL(pci_bus_mem_base_phys);
114EXPORT_SYMBOL(pci_bus_to_hose);
20c8c210
PM
115#endif /* CONFIG_PCI */
116
20c8c210
PM
117EXPORT_SYMBOL(start_thread);
118EXPORT_SYMBOL(kernel_thread);
119
20c8c210 120EXPORT_SYMBOL(giveup_fpu);
40ef8cbc
PM
121#ifdef CONFIG_ALTIVEC
122EXPORT_SYMBOL(giveup_altivec);
123#endif /* CONFIG_ALTIVEC */
124#ifdef CONFIG_SPE
125EXPORT_SYMBOL(giveup_spe);
126#endif /* CONFIG_SPE */
127
666acb94 128#ifndef CONFIG_PPC64
40ef8cbc 129EXPORT_SYMBOL(flush_instruction_cache);
20c8c210
PM
130EXPORT_SYMBOL(flush_tlb_kernel_range);
131EXPORT_SYMBOL(flush_tlb_page);
132EXPORT_SYMBOL(_tlbie);
40ef8cbc 133#endif
666acb94 134EXPORT_SYMBOL(__flush_icache_range);
40ef8cbc
PM
135EXPORT_SYMBOL(flush_dcache_range);
136
20c8c210 137#ifdef CONFIG_SMP
40ef8cbc 138#ifdef CONFIG_PPC32
20c8c210
PM
139EXPORT_SYMBOL(smp_hw_index);
140#endif
40ef8cbc 141#endif
20c8c210
PM
142
143#ifdef CONFIG_ADB
144EXPORT_SYMBOL(adb_request);
145EXPORT_SYMBOL(adb_register);
146EXPORT_SYMBOL(adb_unregister);
147EXPORT_SYMBOL(adb_poll);
148EXPORT_SYMBOL(adb_try_handler_change);
149#endif /* CONFIG_ADB */
150#ifdef CONFIG_ADB_CUDA
151EXPORT_SYMBOL(cuda_request);
152EXPORT_SYMBOL(cuda_poll);
153#endif /* CONFIG_ADB_CUDA */
20c8c210
PM
154#ifdef CONFIG_VT
155EXPORT_SYMBOL(kd_mksound);
156#endif
157EXPORT_SYMBOL(to_tm);
158
40ef8cbc
PM
159#ifdef CONFIG_PPC32
160long long __ashrdi3(long long, int);
161long long __ashldi3(long long, int);
162long long __lshrdi3(long long, int);
20c8c210
PM
163EXPORT_SYMBOL(__ashrdi3);
164EXPORT_SYMBOL(__ashldi3);
165EXPORT_SYMBOL(__lshrdi3);
40ef8cbc
PM
166#endif
167
20c8c210 168EXPORT_SYMBOL(memcpy);
20c8c210
PM
169EXPORT_SYMBOL(memset);
170EXPORT_SYMBOL(memmove);
20c8c210
PM
171EXPORT_SYMBOL(memcmp);
172EXPORT_SYMBOL(memchr);
173
174#if defined(CONFIG_FB_VGA16_MODULE)
175EXPORT_SYMBOL(screen_info);
176#endif
177
40ef8cbc 178#ifdef CONFIG_PPC32
20c8c210
PM
179EXPORT_SYMBOL(timer_interrupt);
180EXPORT_SYMBOL(irq_desc);
181EXPORT_SYMBOL(tb_ticks_per_jiffy);
20c8c210 182EXPORT_SYMBOL(console_drivers);
40ef8cbc 183EXPORT_SYMBOL(cacheable_memcpy);
20c8c210
PM
184#endif
185
20c8c210
PM
186#ifdef CONFIG_8xx
187EXPORT_SYMBOL(cpm_install_handler);
188EXPORT_SYMBOL(cpm_free_handler);
189#endif /* CONFIG_8xx */
7d13d21a 190#if defined(CONFIG_8xx) || defined(CONFIG_40x)
20c8c210
PM
191EXPORT_SYMBOL(__res);
192#endif
193
40ef8cbc 194#ifdef CONFIG_PPC32
20c8c210
PM
195EXPORT_SYMBOL(next_mmu_context);
196EXPORT_SYMBOL(set_context);
40ef8cbc
PM
197#endif
198
199#ifdef CONFIG_PPC_STD_MMU_32
20c8c210
PM
200extern long mol_trampoline;
201EXPORT_SYMBOL(mol_trampoline); /* For MOL */
202EXPORT_SYMBOL(flush_hash_pages); /* For MOL */
203#ifdef CONFIG_SMP
204extern int mmu_hash_lock;
205EXPORT_SYMBOL(mmu_hash_lock); /* For MOL */
206#endif /* CONFIG_SMP */
207extern long *intercept_table;
208EXPORT_SYMBOL(intercept_table);
40ef8cbc 209#endif /* CONFIG_PPC_STD_MMU_32 */
45d8e7aa 210#ifdef CONFIG_PPC_DCR_NATIVE
20c8c210
PM
211EXPORT_SYMBOL(__mtdcr);
212EXPORT_SYMBOL(__mfdcr);
213#endif
This page took 0.148433 seconds and 5 git commands to generate.