]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - arch/alpha/kernel/alpha_ksyms.c
Merge branch 'devel' of master.kernel.org:/home/rmk/linux-2.6-serial
[mirror_ubuntu-hirsute-kernel.git] / arch / alpha / kernel / alpha_ksyms.c
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/alpha/kernel/ksyms.c
3 *
4 * Export the alpha-specific functions that are needed for loadable
5 * modules.
6 */
7
1da177e4
LT
8#include <linux/module.h>
9#include <linux/string.h>
10#include <linux/user.h>
11#include <linux/elfcore.h>
12#include <linux/socket.h>
13#include <linux/syscalls.h>
14#include <linux/in.h>
15#include <linux/in6.h>
16#include <linux/pci.h>
894673ee 17#include <linux/screen_info.h>
1da177e4
LT
18#include <linux/tty.h>
19#include <linux/mm.h>
20#include <linux/delay.h>
21#include <linux/dma-mapping.h>
22
23#include <asm/io.h>
24#include <asm/console.h>
25#include <asm/hwrpb.h>
26#include <asm/uaccess.h>
27#include <asm/processor.h>
28#include <asm/checksum.h>
29#include <linux/interrupt.h>
30#include <asm/fpu.h>
31#include <asm/irq.h>
32#include <asm/machvec.h>
33#include <asm/pgalloc.h>
34#include <asm/semaphore.h>
35#include <asm/tlbflush.h>
36#include <asm/cacheflush.h>
37#include <asm/vga.h>
38
1da177e4
LT
39#include <asm/unistd.h>
40
41extern struct hwrpb_struct *hwrpb;
1da177e4
LT
42extern spinlock_t rtc_lock;
43
44/* these are C runtime functions with special calling conventions: */
45extern void __divl (void);
46extern void __reml (void);
47extern void __divq (void);
48extern void __remq (void);
49extern void __divlu (void);
50extern void __remlu (void);
51extern void __divqu (void);
52extern void __remqu (void);
53
54EXPORT_SYMBOL(alpha_mv);
1da177e4
LT
55EXPORT_SYMBOL(screen_info);
56EXPORT_SYMBOL(perf_irq);
57EXPORT_SYMBOL(callback_getenv);
58EXPORT_SYMBOL(callback_setenv);
59EXPORT_SYMBOL(callback_save_env);
60#ifdef CONFIG_ALPHA_GENERIC
61EXPORT_SYMBOL(alpha_using_srm);
62#endif /* CONFIG_ALPHA_GENERIC */
63
64/* platform dependent support */
65EXPORT_SYMBOL(strcat);
1da177e4
LT
66EXPORT_SYMBOL(strcpy);
67EXPORT_SYMBOL(strlen);
1da177e4 68EXPORT_SYMBOL(strncpy);
1da177e4 69EXPORT_SYMBOL(strncat);
1da177e4
LT
70EXPORT_SYMBOL(strchr);
71EXPORT_SYMBOL(strrchr);
1da177e4 72EXPORT_SYMBOL(memmove);
1da177e4
LT
73EXPORT_SYMBOL(__memcpy);
74EXPORT_SYMBOL(__memset);
75EXPORT_SYMBOL(__memsetw);
76EXPORT_SYMBOL(__constant_c_memset);
77EXPORT_SYMBOL(copy_page);
78EXPORT_SYMBOL(clear_page);
79
80EXPORT_SYMBOL(__direct_map_base);
81EXPORT_SYMBOL(__direct_map_size);
82
83#ifdef CONFIG_PCI
84EXPORT_SYMBOL(pci_alloc_consistent);
85EXPORT_SYMBOL(pci_free_consistent);
86EXPORT_SYMBOL(pci_map_single);
87EXPORT_SYMBOL(pci_map_page);
88EXPORT_SYMBOL(pci_unmap_single);
89EXPORT_SYMBOL(pci_unmap_page);
90EXPORT_SYMBOL(pci_map_sg);
91EXPORT_SYMBOL(pci_unmap_sg);
92EXPORT_SYMBOL(pci_dma_supported);
93EXPORT_SYMBOL(pci_dac_dma_supported);
94EXPORT_SYMBOL(pci_dac_page_to_dma);
95EXPORT_SYMBOL(pci_dac_dma_to_page);
96EXPORT_SYMBOL(pci_dac_dma_to_offset);
97EXPORT_SYMBOL(alpha_gendev_to_pci);
98#endif
99EXPORT_SYMBOL(dma_set_mask);
100
101EXPORT_SYMBOL(dump_thread);
102EXPORT_SYMBOL(dump_elf_thread);
103EXPORT_SYMBOL(dump_elf_task);
104EXPORT_SYMBOL(dump_elf_task_fp);
105EXPORT_SYMBOL(hwrpb);
106EXPORT_SYMBOL(start_thread);
107EXPORT_SYMBOL(alpha_read_fp_reg);
108EXPORT_SYMBOL(alpha_read_fp_reg_s);
109EXPORT_SYMBOL(alpha_write_fp_reg);
110EXPORT_SYMBOL(alpha_write_fp_reg_s);
111
112/* In-kernel system calls. */
113EXPORT_SYMBOL(kernel_thread);
1da177e4
LT
114EXPORT_SYMBOL(sys_dup);
115EXPORT_SYMBOL(sys_exit);
116EXPORT_SYMBOL(sys_write);
1da177e4 117EXPORT_SYMBOL(sys_lseek);
3db03b4a 118EXPORT_SYMBOL(kernel_execve);
1da177e4
LT
119EXPORT_SYMBOL(sys_setsid);
120EXPORT_SYMBOL(sys_wait4);
121
122/* Networking helper routines. */
123EXPORT_SYMBOL(csum_tcpudp_magic);
124EXPORT_SYMBOL(ip_compute_csum);
125EXPORT_SYMBOL(ip_fast_csum);
126EXPORT_SYMBOL(csum_partial_copy_nocheck);
127EXPORT_SYMBOL(csum_partial_copy_from_user);
128EXPORT_SYMBOL(csum_ipv6_magic);
129
130#ifdef CONFIG_MATHEMU_MODULE
131extern long (*alpha_fp_emul_imprecise)(struct pt_regs *, unsigned long);
132extern long (*alpha_fp_emul) (unsigned long pc);
133EXPORT_SYMBOL(alpha_fp_emul_imprecise);
134EXPORT_SYMBOL(alpha_fp_emul);
135#endif
136
137#ifdef CONFIG_ALPHA_BROKEN_IRQ_MASK
138EXPORT_SYMBOL(__min_ipl);
139#endif
140
141/*
142 * The following are specially called from the uaccess assembly stubs.
143 */
144EXPORT_SYMBOL(__copy_user);
145EXPORT_SYMBOL(__do_clear_user);
146EXPORT_SYMBOL(__strncpy_from_user);
147EXPORT_SYMBOL(__strnlen_user);
148
149/* Semaphore helper functions. */
150EXPORT_SYMBOL(__down_failed);
151EXPORT_SYMBOL(__down_failed_interruptible);
152EXPORT_SYMBOL(__up_wakeup);
153EXPORT_SYMBOL(down);
154EXPORT_SYMBOL(down_interruptible);
155EXPORT_SYMBOL(down_trylock);
156EXPORT_SYMBOL(up);
157
158/*
159 * SMP-specific symbols.
160 */
161
162#ifdef CONFIG_SMP
1da177e4
LT
163EXPORT_SYMBOL(flush_tlb_mm);
164EXPORT_SYMBOL(flush_tlb_range);
165EXPORT_SYMBOL(flush_tlb_page);
166EXPORT_SYMBOL(smp_imb);
167EXPORT_SYMBOL(cpu_data);
168EXPORT_SYMBOL(smp_num_cpus);
169EXPORT_SYMBOL(smp_call_function);
170EXPORT_SYMBOL(smp_call_function_on_cpu);
171EXPORT_SYMBOL(_atomic_dec_and_lock);
1da177e4
LT
172#endif /* CONFIG_SMP */
173
174/*
175 * NUMA specific symbols
176 */
177#ifdef CONFIG_DISCONTIGMEM
178EXPORT_SYMBOL(node_data);
179#endif /* CONFIG_DISCONTIGMEM */
180
181EXPORT_SYMBOL(rtc_lock);
182
183/*
184 * The following are special because they're not called
185 * explicitly (the C compiler or assembler generates them in
186 * response to division operations). Fortunately, their
187 * interface isn't gonna change any time soon now, so it's OK
188 * to leave it out of version control.
189 */
190# undef memcpy
191# undef memset
192EXPORT_SYMBOL(__divl);
193EXPORT_SYMBOL(__divlu);
194EXPORT_SYMBOL(__divq);
195EXPORT_SYMBOL(__divqu);
196EXPORT_SYMBOL(__reml);
197EXPORT_SYMBOL(__remlu);
198EXPORT_SYMBOL(__remq);
199EXPORT_SYMBOL(__remqu);
200EXPORT_SYMBOL(memcpy);
201EXPORT_SYMBOL(memset);
202EXPORT_SYMBOL(memchr);
203
1da177e4
LT
204#ifdef CONFIG_ALPHA_IRONGATE
205EXPORT_SYMBOL(irongate_ioremap);
206EXPORT_SYMBOL(irongate_iounmap);
207#endif