1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/module.h>
18#include <linux/device.h>
19#include "xp.h"
20
21
22
23struct device_driver xp_dbg_name = {
24 .name = "xp"
25};
26
27struct device xp_dbg_subname = {
28 .init_name = "",
29 .driver = &xp_dbg_name
30};
31
32struct device *xp = &xp_dbg_subname;
33
34
35short xp_max_npartitions;
36EXPORT_SYMBOL_GPL(xp_max_npartitions);
37
38short xp_partition_id;
39EXPORT_SYMBOL_GPL(xp_partition_id);
40
41u8 xp_region_size;
42EXPORT_SYMBOL_GPL(xp_region_size);
43
44unsigned long (*xp_pa) (void *addr);
45EXPORT_SYMBOL_GPL(xp_pa);
46
47unsigned long (*xp_socket_pa) (unsigned long gpa);
48EXPORT_SYMBOL_GPL(xp_socket_pa);
49
50enum xp_retval (*xp_remote_memcpy) (unsigned long dst_gpa,
51 const unsigned long src_gpa, size_t len);
52EXPORT_SYMBOL_GPL(xp_remote_memcpy);
53
54int (*xp_cpu_to_nasid) (int cpuid);
55EXPORT_SYMBOL_GPL(xp_cpu_to_nasid);
56
57enum xp_retval (*xp_expand_memprotect) (unsigned long phys_addr,
58 unsigned long size);
59EXPORT_SYMBOL_GPL(xp_expand_memprotect);
60enum xp_retval (*xp_restrict_memprotect) (unsigned long phys_addr,
61 unsigned long size);
62EXPORT_SYMBOL_GPL(xp_restrict_memprotect);
63
64
65
66
67
68struct xpc_registration xpc_registrations[XPC_MAX_NCHANNELS];
69EXPORT_SYMBOL_GPL(xpc_registrations);
70
71
72
73
74static enum xp_retval
75xpc_notloaded(void)
76{
77 return xpNotLoaded;
78}
79
80struct xpc_interface xpc_interface = {
81 (void (*)(int))xpc_notloaded,
82 (void (*)(int))xpc_notloaded,
83 (enum xp_retval(*)(short, int, u32, void *, u16))xpc_notloaded,
84 (enum xp_retval(*)(short, int, u32, void *, u16, xpc_notify_func,
85 void *))xpc_notloaded,
86 (void (*)(short, int, void *))xpc_notloaded,
87 (enum xp_retval(*)(short, void *))xpc_notloaded
88};
89EXPORT_SYMBOL_GPL(xpc_interface);
90
91
92
93
94void
95xpc_set_interface(void (*connect) (int),
96 void (*disconnect) (int),
97 enum xp_retval (*send) (short, int, u32, void *, u16),
98 enum xp_retval (*send_notify) (short, int, u32, void *, u16,
99 xpc_notify_func, void *),
100 void (*received) (short, int, void *),
101 enum xp_retval (*partid_to_nasids) (short, void *))
102{
103 xpc_interface.connect = connect;
104 xpc_interface.disconnect = disconnect;
105 xpc_interface.send = send;
106 xpc_interface.send_notify = send_notify;
107 xpc_interface.received = received;
108 xpc_interface.partid_to_nasids = partid_to_nasids;
109}
110EXPORT_SYMBOL_GPL(xpc_set_interface);
111
112
113
114
115void
116xpc_clear_interface(void)
117{
118 xpc_interface.connect = (void (*)(int))xpc_notloaded;
119 xpc_interface.disconnect = (void (*)(int))xpc_notloaded;
120 xpc_interface.send = (enum xp_retval(*)(short, int, u32, void *, u16))
121 xpc_notloaded;
122 xpc_interface.send_notify = (enum xp_retval(*)(short, int, u32, void *,
123 u16, xpc_notify_func,
124 void *))xpc_notloaded;
125 xpc_interface.received = (void (*)(short, int, void *))
126 xpc_notloaded;
127 xpc_interface.partid_to_nasids = (enum xp_retval(*)(short, void *))
128 xpc_notloaded;
129}
130EXPORT_SYMBOL_GPL(xpc_clear_interface);
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156enum xp_retval
157xpc_connect(int ch_number, xpc_channel_func func, void *key, u16 payload_size,
158 u16 nentries, u32 assigned_limit, u32 idle_limit)
159{
160 struct xpc_registration *registration;
161
162 DBUG_ON(ch_number < 0 || ch_number >= XPC_MAX_NCHANNELS);
163 DBUG_ON(payload_size == 0 || nentries == 0);
164 DBUG_ON(func == NULL);
165 DBUG_ON(assigned_limit == 0 || idle_limit > assigned_limit);
166
167 if (XPC_MSG_SIZE(payload_size) > XPC_MSG_MAX_SIZE)
168 return xpPayloadTooBig;
169
170 registration = &xpc_registrations[ch_number];
171
172 if (mutex_lock_interruptible(®istration->mutex) != 0)
173 return xpInterrupted;
174
175
176 if (registration->func != NULL) {
177 mutex_unlock(®istration->mutex);
178 return xpAlreadyRegistered;
179 }
180
181
182 registration->entry_size = XPC_MSG_SIZE(payload_size);
183 registration->nentries = nentries;
184 registration->assigned_limit = assigned_limit;
185 registration->idle_limit = idle_limit;
186 registration->key = key;
187 registration->func = func;
188
189 mutex_unlock(®istration->mutex);
190
191 xpc_interface.connect(ch_number);
192
193 return xpSuccess;
194}
195EXPORT_SYMBOL_GPL(xpc_connect);
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210void
211xpc_disconnect(int ch_number)
212{
213 struct xpc_registration *registration;
214
215 DBUG_ON(ch_number < 0 || ch_number >= XPC_MAX_NCHANNELS);
216
217 registration = &xpc_registrations[ch_number];
218
219
220
221
222
223
224 mutex_lock(®istration->mutex);
225
226
227 if (registration->func == NULL) {
228 mutex_unlock(®istration->mutex);
229 return;
230 }
231
232
233 registration->func = NULL;
234 registration->key = NULL;
235 registration->nentries = 0;
236 registration->entry_size = 0;
237 registration->assigned_limit = 0;
238 registration->idle_limit = 0;
239
240 xpc_interface.disconnect(ch_number);
241
242 mutex_unlock(®istration->mutex);
243
244 return;
245}
246EXPORT_SYMBOL_GPL(xpc_disconnect);
247
248int __init
249xp_init(void)
250{
251 enum xp_retval ret;
252 int ch_number;
253
254
255 for (ch_number = 0; ch_number < XPC_MAX_NCHANNELS; ch_number++)
256 mutex_init(&xpc_registrations[ch_number].mutex);
257
258 if (is_shub())
259 ret = xp_init_sn2();
260 else if (is_uv())
261 ret = xp_init_uv();
262 else
263 ret = 0;
264
265 if (ret != xpSuccess)
266 return ret;
267
268 return 0;
269}
270
271module_init(xp_init);
272
273void __exit
274xp_exit(void)
275{
276 if (is_shub())
277 xp_exit_sn2();
278 else if (is_uv())
279 xp_exit_uv();
280}
281
282module_exit(xp_exit);
283
284MODULE_AUTHOR("Silicon Graphics, Inc.");
285MODULE_DESCRIPTION("Cross Partition (XP) base");
286MODULE_LICENSE("GPL");
287