1 /* $Id: sparc64_ksyms.c,v 1.121 2002/02/09 19:49:31 davem Exp $
2 * arch/sparc64/kernel/sparc64_ksyms.c: Sparc64 specific ksyms support.
4 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
6 * Copyright (C) 1999 Jakub Jelinek (jj@ultra.linux.cz)
9 /* Tell string.h we don't want memcpy etc. as cpp defines */
10 #define EXPORT_SYMTAB_STROPS
11 #define PROMLIB_INTERNAL
13 #include <linux/config.h>
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/string.h>
17 #include <linux/sched.h>
18 #include <linux/in6.h>
19 #include <linux/pci.h>
20 #include <linux/interrupt.h>
21 #include <linux/fs_struct.h>
24 #include <linux/socket.h>
25 #include <linux/syscalls.h>
26 #include <linux/percpu.h>
27 #include <linux/init.h>
28 #include <net/compat.h>
30 #include <asm/oplib.h>
31 #include <asm/delay.h>
32 #include <asm/system.h>
33 #include <asm/auxio.h>
34 #include <asm/pgtable.h>
37 #include <asm/idprom.h>
42 #include <asm/mostek.h>
43 #include <asm/ptrace.h>
45 #include <asm/uaccess.h>
46 #include <asm/checksum.h>
47 #include <asm/fpumacro.h>
48 #include <asm/pgalloc.h>
49 #include <asm/cacheflush.h>
58 #include <asm/a.out.h>
59 #include <asm/ns87303.h>
60 #include <asm/timer.h>
61 #include <asm/cpudata.h>
62 #include <asm/rwsem.h>
70 extern void die_if_kernel(char *str
, struct pt_regs
*regs
);
71 extern pid_t
kernel_thread(int (*fn
)(void *), void * arg
, unsigned long flags
);
72 extern void *__bzero(void *, size_t);
73 extern void *__memscan_zero(void *, size_t);
74 extern void *__memscan_generic(void *, int, size_t);
75 extern int __memcmp(const void *, const void *, __kernel_size_t
);
76 extern __kernel_size_t
strlen(const char *);
77 extern void linux_sparc_syscall(void);
78 extern void rtrap(void);
79 extern void show_regs(struct pt_regs
*);
80 extern void solaris_syscall(void);
81 extern void syscall_trace(struct pt_regs
*, int);
82 extern u32 sunos_sys_table
[], sys_call_table32
[];
83 extern void tl0_solaris(void);
84 extern void sys_sigsuspend(void);
85 extern int svr4_getcontext(svr4_ucontext_t
*uc
, struct pt_regs
*regs
);
86 extern int svr4_setcontext(svr4_ucontext_t
*uc
, struct pt_regs
*regs
);
87 extern int compat_sys_ioctl(unsigned int fd
, unsigned int cmd
, u32 arg
);
88 extern int (*handle_mathemu
)(struct pt_regs
*, struct fpustate
*);
89 extern long sparc32_open(const char __user
* filename
, int flags
, int mode
);
90 extern int io_remap_pfn_range(struct vm_area_struct
*vma
, unsigned long from
,
91 unsigned long pfn
, unsigned long size
, pgprot_t prot
);
92 extern void (*prom_palette
)(int);
94 extern int __ashrdi3(int, int);
96 extern int dump_fpu (struct pt_regs
* regs
, elf_fpregset_t
* fpregs
);
98 extern unsigned int sys_call_table
[];
100 extern void xor_vis_2(unsigned long, unsigned long *, unsigned long *);
101 extern void xor_vis_3(unsigned long, unsigned long *, unsigned long *,
103 extern void xor_vis_4(unsigned long, unsigned long *, unsigned long *,
104 unsigned long *, unsigned long *);
105 extern void xor_vis_5(unsigned long, unsigned long *, unsigned long *,
106 unsigned long *, unsigned long *, unsigned long *);
108 extern void xor_niagara_2(unsigned long, unsigned long *, unsigned long *);
109 extern void xor_niagara_3(unsigned long, unsigned long *, unsigned long *,
111 extern void xor_niagara_4(unsigned long, unsigned long *, unsigned long *,
112 unsigned long *, unsigned long *);
113 extern void xor_niagara_5(unsigned long, unsigned long *, unsigned long *,
114 unsigned long *, unsigned long *, unsigned long *);
116 /* Per-CPU information table */
117 EXPORT_PER_CPU_SYMBOL(__cpu_data
);
119 /* used by various drivers */
121 /* Out of line rw-locking implementation. */
122 EXPORT_SYMBOL(__read_lock
);
123 EXPORT_SYMBOL(__read_unlock
);
124 EXPORT_SYMBOL(__write_lock
);
125 EXPORT_SYMBOL(__write_unlock
);
126 EXPORT_SYMBOL(__write_trylock
);
128 #if defined(CONFIG_MCOUNT)
129 extern void _mcount(void);
130 EXPORT_SYMBOL(_mcount
);
133 /* CPU online map and active count. */
134 EXPORT_SYMBOL(cpu_online_map
);
135 EXPORT_SYMBOL(phys_cpu_present_map
);
137 EXPORT_SYMBOL(smp_call_function
);
138 #endif /* CONFIG_SMP */
140 EXPORT_SYMBOL(sparc64_get_clock_tick
);
144 EXPORT_SYMBOL(down_trylock
);
145 EXPORT_SYMBOL(down_interruptible
);
149 EXPORT_SYMBOL(__down_read
);
150 EXPORT_SYMBOL(__down_read_trylock
);
151 EXPORT_SYMBOL(__down_write
);
152 EXPORT_SYMBOL(__down_write_trylock
);
153 EXPORT_SYMBOL(__up_read
);
154 EXPORT_SYMBOL(__up_write
);
155 EXPORT_SYMBOL(__downgrade_write
);
157 /* Atomic counter implementation. */
158 EXPORT_SYMBOL(atomic_add
);
159 EXPORT_SYMBOL(atomic_add_ret
);
160 EXPORT_SYMBOL(atomic_sub
);
161 EXPORT_SYMBOL(atomic_sub_ret
);
162 EXPORT_SYMBOL(atomic64_add
);
163 EXPORT_SYMBOL(atomic64_add_ret
);
164 EXPORT_SYMBOL(atomic64_sub
);
165 EXPORT_SYMBOL(atomic64_sub_ret
);
167 /* Atomic bit operations. */
168 EXPORT_SYMBOL(test_and_set_bit
);
169 EXPORT_SYMBOL(test_and_clear_bit
);
170 EXPORT_SYMBOL(test_and_change_bit
);
171 EXPORT_SYMBOL(set_bit
);
172 EXPORT_SYMBOL(clear_bit
);
173 EXPORT_SYMBOL(change_bit
);
175 EXPORT_SYMBOL(__flushw_user
);
177 EXPORT_SYMBOL(tlb_type
);
178 EXPORT_SYMBOL(get_fb_unmapped_area
);
179 EXPORT_SYMBOL(flush_icache_range
);
181 EXPORT_SYMBOL(flush_dcache_page
);
182 #ifdef DCACHE_ALIASING_POSSIBLE
183 EXPORT_SYMBOL(__flush_dcache_range
);
186 EXPORT_SYMBOL(mostek_lock
);
187 EXPORT_SYMBOL(mstk48t02_regs
);
188 #ifdef CONFIG_SUN_AUXIO
189 EXPORT_SYMBOL(auxio_set_led
);
190 EXPORT_SYMBOL(auxio_set_lte
);
193 EXPORT_SYMBOL(sbus_root
);
194 EXPORT_SYMBOL(dma_chain
);
195 EXPORT_SYMBOL(sbus_set_sbus64
);
196 EXPORT_SYMBOL(sbus_alloc_consistent
);
197 EXPORT_SYMBOL(sbus_free_consistent
);
198 EXPORT_SYMBOL(sbus_map_single
);
199 EXPORT_SYMBOL(sbus_unmap_single
);
200 EXPORT_SYMBOL(sbus_map_sg
);
201 EXPORT_SYMBOL(sbus_unmap_sg
);
202 EXPORT_SYMBOL(sbus_dma_sync_single_for_cpu
);
203 EXPORT_SYMBOL(sbus_dma_sync_single_for_device
);
204 EXPORT_SYMBOL(sbus_dma_sync_sg_for_cpu
);
205 EXPORT_SYMBOL(sbus_dma_sync_sg_for_device
);
207 EXPORT_SYMBOL(outsb
);
208 EXPORT_SYMBOL(outsw
);
209 EXPORT_SYMBOL(outsl
);
214 EXPORT_SYMBOL(ebus_chain
);
215 EXPORT_SYMBOL(isa_chain
);
216 EXPORT_SYMBOL(pci_memspace_mask
);
217 EXPORT_SYMBOL(pci_alloc_consistent
);
218 EXPORT_SYMBOL(pci_free_consistent
);
219 EXPORT_SYMBOL(pci_map_single
);
220 EXPORT_SYMBOL(pci_unmap_single
);
221 EXPORT_SYMBOL(pci_map_sg
);
222 EXPORT_SYMBOL(pci_unmap_sg
);
223 EXPORT_SYMBOL(pci_dma_sync_single_for_cpu
);
224 EXPORT_SYMBOL(pci_dma_sync_sg_for_cpu
);
225 EXPORT_SYMBOL(pci_dma_supported
);
228 /* I/O device mmaping on Sparc64. */
229 EXPORT_SYMBOL(io_remap_pfn_range
);
232 /* Solaris/SunOS binary compatibility */
233 EXPORT_SYMBOL(verify_compat_iovec
);
236 EXPORT_SYMBOL(dump_fpu
);
237 EXPORT_SYMBOL(put_fs_struct
);
239 /* math-emu wants this */
240 EXPORT_SYMBOL(die_if_kernel
);
242 /* Kernel thread creation. */
243 EXPORT_SYMBOL(kernel_thread
);
246 EXPORT_SYMBOL(idprom
);
247 EXPORT_SYMBOL(prom_root_node
);
248 EXPORT_SYMBOL(prom_getchild
);
249 EXPORT_SYMBOL(prom_getsibling
);
250 EXPORT_SYMBOL(prom_searchsiblings
);
251 EXPORT_SYMBOL(prom_firstprop
);
252 EXPORT_SYMBOL(prom_nextprop
);
253 EXPORT_SYMBOL(prom_getproplen
);
254 EXPORT_SYMBOL(prom_getproperty
);
255 EXPORT_SYMBOL(prom_node_has_property
);
256 EXPORT_SYMBOL(prom_setprop
);
257 EXPORT_SYMBOL(saved_command_line
);
258 EXPORT_SYMBOL(prom_getname
);
259 EXPORT_SYMBOL(prom_finddevice
);
260 EXPORT_SYMBOL(prom_feval
);
261 EXPORT_SYMBOL(prom_getbool
);
262 EXPORT_SYMBOL(prom_getstring
);
263 EXPORT_SYMBOL(prom_getint
);
264 EXPORT_SYMBOL(prom_getintdefault
);
265 EXPORT_SYMBOL(__prom_getchild
);
266 EXPORT_SYMBOL(__prom_getsibling
);
268 /* sparc library symbols */
269 EXPORT_SYMBOL(strlen
);
270 EXPORT_SYMBOL(__strlen_user
);
271 EXPORT_SYMBOL(__strnlen_user
);
273 #ifdef CONFIG_SOLARIS_EMUL_MODULE
274 EXPORT_SYMBOL(linux_sparc_syscall
);
275 EXPORT_SYMBOL(rtrap
);
276 EXPORT_SYMBOL(show_regs
);
277 EXPORT_SYMBOL(solaris_syscall
);
278 EXPORT_SYMBOL(syscall_trace
);
279 EXPORT_SYMBOL(sunos_sys_table
);
280 EXPORT_SYMBOL(sys_call_table32
);
281 EXPORT_SYMBOL(tl0_solaris
);
282 EXPORT_SYMBOL(sys_sigsuspend
);
283 EXPORT_SYMBOL(sys_getppid
);
284 EXPORT_SYMBOL(sys_getpid
);
285 EXPORT_SYMBOL(sys_geteuid
);
286 EXPORT_SYMBOL(sys_getuid
);
287 EXPORT_SYMBOL(sys_getegid
);
288 EXPORT_SYMBOL(sys_getgid
);
289 EXPORT_SYMBOL(svr4_getcontext
);
290 EXPORT_SYMBOL(svr4_setcontext
);
291 EXPORT_SYMBOL(compat_sys_ioctl
);
292 EXPORT_SYMBOL(sparc32_open
);
295 /* Special internal versions of library functions. */
296 EXPORT_SYMBOL(_clear_page
);
297 EXPORT_SYMBOL(clear_user_page
);
298 EXPORT_SYMBOL(copy_user_page
);
299 EXPORT_SYMBOL(__bzero
);
300 EXPORT_SYMBOL(__memscan_zero
);
301 EXPORT_SYMBOL(__memscan_generic
);
302 EXPORT_SYMBOL(__memcmp
);
303 EXPORT_SYMBOL(__memset
);
305 EXPORT_SYMBOL(csum_partial
);
306 EXPORT_SYMBOL(csum_partial_copy_nocheck
);
307 EXPORT_SYMBOL(__csum_partial_copy_from_user
);
308 EXPORT_SYMBOL(__csum_partial_copy_to_user
);
309 EXPORT_SYMBOL(ip_fast_csum
);
311 /* Moving data to/from/in userspace. */
312 EXPORT_SYMBOL(___copy_to_user
);
313 EXPORT_SYMBOL(___copy_from_user
);
314 EXPORT_SYMBOL(___copy_in_user
);
315 EXPORT_SYMBOL(copy_to_user_fixup
);
316 EXPORT_SYMBOL(copy_from_user_fixup
);
317 EXPORT_SYMBOL(copy_in_user_fixup
);
318 EXPORT_SYMBOL(__strncpy_from_user
);
319 EXPORT_SYMBOL(__clear_user
);
321 /* Various address conversion macros use this. */
322 EXPORT_SYMBOL(sparc64_valid_addr_bitmap
);
324 /* No version information on this, heavily used in inline asm,
325 * and will always be 'void __ret_efault(void)'.
327 EXPORT_SYMBOL(__ret_efault
);
329 /* No version information on these, as gcc produces such symbols. */
330 EXPORT_SYMBOL(memcmp
);
331 EXPORT_SYMBOL(memcpy
);
332 EXPORT_SYMBOL(memset
);
333 EXPORT_SYMBOL(memmove
);
334 EXPORT_SYMBOL(strncmp
);
336 /* Delay routines. */
337 EXPORT_SYMBOL(__udelay
);
338 EXPORT_SYMBOL(__ndelay
);
339 EXPORT_SYMBOL(__const_udelay
);
340 EXPORT_SYMBOL(__delay
);
343 /* RAID code needs this */
344 EXPORT_SYMBOL(VISenter
);
346 /* for input/keybdev */
347 EXPORT_SYMBOL(sun_do_break
);
348 EXPORT_SYMBOL(serial_console
);
349 EXPORT_SYMBOL(stop_a_enabled
);
351 #ifdef CONFIG_DEBUG_BUGVERBOSE
352 EXPORT_SYMBOL(do_BUG
);
356 EXPORT_SYMBOL(ns87303_lock
);
358 /* for solaris compat module */
359 EXPORT_SYMBOL_GPL(sys_call_table
);
361 EXPORT_SYMBOL(tick_ops
);
363 EXPORT_SYMBOL(xor_vis_2
);
364 EXPORT_SYMBOL(xor_vis_3
);
365 EXPORT_SYMBOL(xor_vis_4
);
366 EXPORT_SYMBOL(xor_vis_5
);
368 EXPORT_SYMBOL(xor_niagara_2
);
369 EXPORT_SYMBOL(xor_niagara_3
);
370 EXPORT_SYMBOL(xor_niagara_4
);
371 EXPORT_SYMBOL(xor_niagara_5
);
373 EXPORT_SYMBOL(prom_palette
);