1/*
2 *    Architecture-specific kernel symbols
3 *
4 *    Copyright (C) 2000-2001 Richard Hirst <rhirst with parisc-linux.org>
5 *    Copyright (C) 2001 Dave Kennedy
6 *    Copyright (C) 2001 Paul Bame <bame at parisc-linux.org>
7 *    Copyright (C) 2001-2003 Grant Grundler <grundler with parisc-linux.org>
8 *    Copyright (C) 2002-2003 Matthew Wilcox <willy at parisc-linux.org>
9 *    Copyright (C) 2002 Randolph Chung <tausq at parisc-linux.org>
10 *    Copyright (C) 2002-2007 Helge Deller <deller with parisc-linux.org>
11 *
12 *    This program is free software; you can redistribute it and/or modify
13 *    it under the terms of the GNU General Public License as published by
14 *    the Free Software Foundation; either version 2 of the License, or
15 *    (at your option) any later version.
16 *
17 *    This program is distributed in the hope that it will be useful,
18 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
19 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 *    GNU General Public License for more details.
21 *
22 *    You should have received a copy of the GNU General Public License
23 *    along with this program; if not, write to the Free Software
24 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25 */
26
27#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/syscalls.h>
30
31#include <linux/string.h>
32EXPORT_SYMBOL(memset);
33
34#include <asm/atomic.h>
35EXPORT_SYMBOL(__xchg8);
36EXPORT_SYMBOL(__xchg32);
37EXPORT_SYMBOL(__cmpxchg_u32);
38#ifdef CONFIG_SMP
39EXPORT_SYMBOL(__atomic_hash);
40#endif
41#ifdef CONFIG_64BIT
42EXPORT_SYMBOL(__xchg64);
43EXPORT_SYMBOL(__cmpxchg_u64);
44#endif
45
46#include <asm/uaccess.h>
47EXPORT_SYMBOL(lstrncpy_from_user);
48EXPORT_SYMBOL(lclear_user);
49EXPORT_SYMBOL(lstrnlen_user);
50
51/* Global fixups */
52extern void fixup_get_user_skip_1(void);
53extern void fixup_get_user_skip_2(void);
54extern void fixup_put_user_skip_1(void);
55extern void fixup_put_user_skip_2(void);
56EXPORT_SYMBOL(fixup_get_user_skip_1);
57EXPORT_SYMBOL(fixup_get_user_skip_2);
58EXPORT_SYMBOL(fixup_put_user_skip_1);
59EXPORT_SYMBOL(fixup_put_user_skip_2);
60
61#ifndef CONFIG_64BIT
62/* Needed so insmod can set dp value */
63extern int $global$;
64EXPORT_SYMBOL($global$);
65#endif
66
67#include <asm/io.h>
68EXPORT_SYMBOL(memcpy_toio);
69EXPORT_SYMBOL(memcpy_fromio);
70EXPORT_SYMBOL(memset_io);
71
72#include <asm/semaphore.h>
73EXPORT_SYMBOL(__up);
74EXPORT_SYMBOL(__down_interruptible);
75EXPORT_SYMBOL(__down);
76
77extern void $$divI(void);
78extern void $$divU(void);
79extern void $$remI(void);
80extern void $$remU(void);
81extern void $$mulI(void);
82extern void $$divU_3(void);
83extern void $$divU_5(void);
84extern void $$divU_6(void);
85extern void $$divU_9(void);
86extern void $$divU_10(void);
87extern void $$divU_12(void);
88extern void $$divU_7(void);
89extern void $$divU_14(void);
90extern void $$divU_15(void);
91extern void $$divI_3(void);
92extern void $$divI_5(void);
93extern void $$divI_6(void);
94extern void $$divI_7(void);
95extern void $$divI_9(void);
96extern void $$divI_10(void);
97extern void $$divI_12(void);
98extern void $$divI_14(void);
99extern void $$divI_15(void);
100
101EXPORT_SYMBOL($$divI);
102EXPORT_SYMBOL($$divU);
103EXPORT_SYMBOL($$remI);
104EXPORT_SYMBOL($$remU);
105EXPORT_SYMBOL($$mulI);
106EXPORT_SYMBOL($$divU_3);
107EXPORT_SYMBOL($$divU_5);
108EXPORT_SYMBOL($$divU_6);
109EXPORT_SYMBOL($$divU_9);
110EXPORT_SYMBOL($$divU_10);
111EXPORT_SYMBOL($$divU_12);
112EXPORT_SYMBOL($$divU_7);
113EXPORT_SYMBOL($$divU_14);
114EXPORT_SYMBOL($$divU_15);
115EXPORT_SYMBOL($$divI_3);
116EXPORT_SYMBOL($$divI_5);
117EXPORT_SYMBOL($$divI_6);
118EXPORT_SYMBOL($$divI_7);
119EXPORT_SYMBOL($$divI_9);
120EXPORT_SYMBOL($$divI_10);
121EXPORT_SYMBOL($$divI_12);
122EXPORT_SYMBOL($$divI_14);
123EXPORT_SYMBOL($$divI_15);
124
125extern void __ashrdi3(void);
126extern void __ashldi3(void);
127extern void __lshrdi3(void);
128extern void __muldi3(void);
129
130EXPORT_SYMBOL(__ashrdi3);
131EXPORT_SYMBOL(__ashldi3);
132EXPORT_SYMBOL(__lshrdi3);
133EXPORT_SYMBOL(__muldi3);
134
135asmlinkage void * __canonicalize_funcptr_for_compare(void *);
136EXPORT_SYMBOL(__canonicalize_funcptr_for_compare);
137
138#ifdef CONFIG_64BIT
139extern void __divdi3(void);
140extern void __udivdi3(void);
141extern void __umoddi3(void);
142extern void __moddi3(void);
143
144EXPORT_SYMBOL(__divdi3);
145EXPORT_SYMBOL(__udivdi3);
146EXPORT_SYMBOL(__umoddi3);
147EXPORT_SYMBOL(__moddi3);
148#endif
149
150#ifndef CONFIG_64BIT
151extern void $$dyncall(void);
152EXPORT_SYMBOL($$dyncall);
153#endif
154
155#ifdef CONFIG_DISCONTIGMEM
156#include <asm/mmzone.h>
157EXPORT_SYMBOL(node_data);
158EXPORT_SYMBOL(pfnnid_map);
159#endif
160