blob: 8e7193d55528754a4ab4553084501056c16790b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Architecture-specific kernel symbols
3 *
4 * Don't put any exports here unless it's defined in an assembler file.
5 * All other exports should be put directly after the definition.
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9
10#include <linux/string.h>
11EXPORT_SYMBOL(memset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012EXPORT_SYMBOL(memcpy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013EXPORT_SYMBOL(strlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Zhang, Xiantaoa7d57ec2008-02-04 15:46:23 -080015#include<asm/pgtable.h>
16EXPORT_SYMBOL_GPL(empty_zero_page);
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/checksum.h>
19EXPORT_SYMBOL(ip_fast_csum); /* hand-coded assembly */
Tony Lucka5f8ee02006-12-07 13:18:57 -080020EXPORT_SYMBOL(csum_ipv6_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/semaphore.h>
23EXPORT_SYMBOL(__down);
24EXPORT_SYMBOL(__down_interruptible);
25EXPORT_SYMBOL(__down_trylock);
26EXPORT_SYMBOL(__up);
27
28#include <asm/page.h>
29EXPORT_SYMBOL(clear_page);
30
31#ifdef CONFIG_VIRTUAL_MEM_MAP
32#include <linux/bootmem.h>
Dean Roeb77dae52005-11-09 14:25:06 -060033EXPORT_SYMBOL(min_low_pfn); /* defined by bootmem.c, but not exported by generic code */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034EXPORT_SYMBOL(max_low_pfn); /* defined by bootmem.c, but not exported by generic code */
35#endif
36
37#include <asm/processor.h>
38EXPORT_SYMBOL(per_cpu__cpu_info);
39#ifdef CONFIG_SMP
40EXPORT_SYMBOL(per_cpu__local_per_cpu_offset);
41#endif
42
43#include <asm/uaccess.h>
44EXPORT_SYMBOL(__copy_user);
45EXPORT_SYMBOL(__do_clear_user);
46EXPORT_SYMBOL(__strlen_user);
47EXPORT_SYMBOL(__strncpy_from_user);
48EXPORT_SYMBOL(__strnlen_user);
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* from arch/ia64/lib */
51extern void __divsi3(void);
52extern void __udivsi3(void);
53extern void __modsi3(void);
54extern void __umodsi3(void);
55extern void __divdi3(void);
56extern void __udivdi3(void);
57extern void __moddi3(void);
58extern void __umoddi3(void);
59
60EXPORT_SYMBOL(__divsi3);
61EXPORT_SYMBOL(__udivsi3);
62EXPORT_SYMBOL(__modsi3);
63EXPORT_SYMBOL(__umodsi3);
64EXPORT_SYMBOL(__divdi3);
65EXPORT_SYMBOL(__udivdi3);
66EXPORT_SYMBOL(__moddi3);
67EXPORT_SYMBOL(__umoddi3);
68
Andrew Mortonbdc26192007-12-07 16:10:19 -080069#include <asm/page.h>
70EXPORT_SYMBOL(copy_page);
71
Prarit Bhargava0a69ca92006-07-31 09:12:11 -040072#if defined(CONFIG_MD_RAID456) || defined(CONFIG_MD_RAID456_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073extern void xor_ia64_2(void);
74extern void xor_ia64_3(void);
75extern void xor_ia64_4(void);
76extern void xor_ia64_5(void);
77
78EXPORT_SYMBOL(xor_ia64_2);
79EXPORT_SYMBOL(xor_ia64_3);
80EXPORT_SYMBOL(xor_ia64_4);
81EXPORT_SYMBOL(xor_ia64_5);
82#endif
83
84#include <asm/pal.h>
85EXPORT_SYMBOL(ia64_pal_call_phys_stacked);
86EXPORT_SYMBOL(ia64_pal_call_phys_static);
87EXPORT_SYMBOL(ia64_pal_call_stacked);
88EXPORT_SYMBOL(ia64_pal_call_static);
89EXPORT_SYMBOL(ia64_load_scratch_fpregs);
90EXPORT_SYMBOL(ia64_save_scratch_fpregs);
91
92#include <asm/unwind.h>
93EXPORT_SYMBOL(unw_init_running);
94
95#ifdef ASM_SUPPORTED
96# ifdef CONFIG_SMP
Andrew Mortona1365642006-01-08 01:04:09 -080097# if (__GNUC__ == 3 && __GNUC_MINOR__ < 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
99 * This is not a normal routine and we don't want a function descriptor for it, so we use
100 * a fake declaration here.
101 */
102extern char ia64_spinlock_contention_pre3_4;
103EXPORT_SYMBOL(ia64_spinlock_contention_pre3_4);
104# else
105/*
106 * This is not a normal routine and we don't want a function descriptor for it, so we use
107 * a fake declaration here.
108 */
109extern char ia64_spinlock_contention;
110EXPORT_SYMBOL(ia64_spinlock_contention);
111# endif
112# endif
113#endif
114
David Mosberger-Tang2ab561a2006-06-21 11:19:22 -0700115#if defined(CONFIG_IA64_ESI) || defined(CONFIG_IA64_ESI_MODULE)
116extern void esi_call_phys (void);
117EXPORT_SYMBOL_GPL(esi_call_phys);
118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119extern char ia64_ivt[];
120EXPORT_SYMBOL(ia64_ivt);