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