blob: 0f75592896dd9fd8a4d27e44415013cbd2e44328 [file] [log] [blame]
Dean Nelsonb0d82bd2005-03-23 19:46:00 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Dean Nelson45d9ca42008-04-22 14:46:56 -05006 * Copyright (C) 2004-2008 Silicon Graphics, Inc. All rights reserved.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -07007 */
8
Dean Nelsonb0d82bd2005-03-23 19:46:00 -07009/*
10 * External Cross Partition (XP) structures and defines.
11 */
12
Dean Nelson45d9ca42008-04-22 14:46:56 -050013#ifndef _DRIVERS_MISC_SGIXP_XP_H
14#define _DRIVERS_MISC_SGIXP_XP_H
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070015
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070016#include <linux/cache.h>
17#include <linux/hardirq.h>
Jes Sorensenf9e505a2006-01-17 12:52:21 -050018#include <linux/mutex.h>
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070019#include <asm/sn/types.h>
Dean Nelsonbc63d382008-07-29 22:34:04 -070020#ifdef CONFIG_IA64
21#include <asm/sn/arch.h>
22#endif
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070023
Dean Nelson78ce1bb2008-07-29 22:34:03 -070024/* >>> Add this #define to some linux header file some day. */
25#define BYTES_PER_WORD sizeof(void *)
26
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070027#ifdef USE_DBUG_ON
28#define DBUG_ON(condition) BUG_ON(condition)
29#else
30#define DBUG_ON(condition)
31#endif
32
Dean Nelson355c54d2008-07-29 22:34:02 -070033#ifndef is_shub1
34#define is_shub1() 0
35#endif
36
37#ifndef is_shub2
38#define is_shub2() 0
39#endif
40
41#ifndef is_shub
42#define is_shub() (is_shub1() || is_shub2())
43#endif
44
45#ifndef is_uv
46#define is_uv() 0
47#endif
48
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070049/*
Dean Nelsonbc63d382008-07-29 22:34:04 -070050 * Define the maximum number of partitions the system can possibly support.
51 * It is based on the maximum number of hardware partitionable regions. The
52 * term 'region' in this context refers to the minimum number of nodes that
53 * can comprise an access protection grouping. The access protection is in
54 * regards to memory, IPI and IOI.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070055 *
56 * The maximum number of hardware partitionable regions is equal to the
57 * maximum number of nodes in the entire system divided by the minimum number
58 * of nodes that comprise an access protection grouping.
59 */
Dean Nelsonbc63d382008-07-29 22:34:04 -070060#define XP_MAX_NPARTITIONS_SN2 64
61#define XP_MAX_NPARTITIONS_UV 256
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070062
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070063/*
64 * Define the number of u64s required to represent all the C-brick nasids
65 * as a bitmap. The cross-partition kernel modules deal only with
66 * C-brick nasids, thus the need for bitmaps which don't account for
67 * odd-numbered (non C-brick) nasids.
68 */
Jack Steiner24ee0a62005-09-12 12:15:43 -050069#define XP_MAX_PHYSNODE_ID (MAX_NUMALINK_NODES / 2)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070070#define XP_NASID_MASK_BYTES ((XP_MAX_PHYSNODE_ID + 7) / 8)
71#define XP_NASID_MASK_WORDS ((XP_MAX_PHYSNODE_ID + 63) / 64)
72
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070073/*
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070074 * XPC establishes channel connections between the local partition and any
75 * other partition that is currently up. Over these channels, kernel-level
76 * `users' can communicate with their counterparts on the other partitions.
77 *
Dean Nelsonbc63d382008-07-29 22:34:04 -070078>>> The following described limitation of a max of eight channels possible
79>>> pertains only to ia64-sn2. THIS ISN'T TRUE SINCE I'M PLANNING TO JUST
80>>> TIE INTO THE EXISTING MECHANISM ONCE THE CHANNEL MESSAGES ARE RECEIVED.
81>>> THE 128-BYTE CACHELINE PERFORMANCE ISSUE IS TIED TO IA64-SN2.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070082 *
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070083 * If the need for additional channels arises, one can simply increase
Dean Nelsonbc63d382008-07-29 22:34:04 -070084 * XPC_MAX_NCHANNELS accordingly. If the day should come where that number
85 * exceeds the absolute MAXIMUM number of channels possible (eight), then one
86 * will need to make changes to the XPC code to accommodate for this.
87 *
88 * The absolute maximum number of channels possible is currently limited to
89 * eight for performance reasons. The internal cross partition structures
90 * require sixteen bytes per channel, and eight allows all of this
91 * interface-shared info to fit in one 128-byte cacheline.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070092 */
93#define XPC_MEM_CHANNEL 0 /* memory channel number */
94#define XPC_NET_CHANNEL 1 /* network channel number */
95
Dean Nelsonbc63d382008-07-29 22:34:04 -070096#define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070097
Dean Nelsonbc63d382008-07-29 22:34:04 -070098#if XPC_MAX_NCHANNELS > 8
99#error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700100#endif
101
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700102/*
103 * The format of an XPC message is as follows:
104 *
105 * +-------+--------------------------------+
106 * | flags |////////////////////////////////|
107 * +-------+--------------------------------+
108 * | message # |
109 * +----------------------------------------+
110 * | payload (user-defined message) |
111 * | |
112 * :
113 * | |
114 * +----------------------------------------+
115 *
116 * The size of the payload is defined by the user via xpc_connect(). A user-
117 * defined message resides in the payload area.
118 *
119 * The user should have no dealings with the message header, but only the
120 * message's payload. When a message entry is allocated (via xpc_allocate())
121 * a pointer to the payload area is returned and not the actual beginning of
122 * the XPC message. The user then constructs a message in the payload area
123 * and passes that pointer as an argument on xpc_send() or xpc_send_notify().
124 *
125 * The size of a message entry (within a message queue) must be a cacheline
126 * sized multiple in order to facilitate the BTE transfer of messages from one
127 * message queue to another. A macro, XPC_MSG_SIZE(), is provided for the user
128 * that wants to fit as many msg entries as possible in a given memory size
129 * (e.g. a memory page).
130 */
131struct xpc_msg {
132 u8 flags; /* FOR XPC INTERNAL USE ONLY */
133 u8 reserved[7]; /* FOR XPC INTERNAL USE ONLY */
134 s64 number; /* FOR XPC INTERNAL USE ONLY */
135
136 u64 payload; /* user defined portion of message */
137};
138
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700139#define XPC_MSG_PAYLOAD_OFFSET (u64) (&((struct xpc_msg *)0)->payload)
140#define XPC_MSG_SIZE(_payload_size) \
141 L1_CACHE_ALIGN(XPC_MSG_PAYLOAD_OFFSET + (_payload_size))
142
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700143/*
144 * Define the return values and values passed to user's callout functions.
145 * (It is important to add new value codes at the end just preceding
Dean Nelson65c17b82008-05-12 14:02:02 -0700146 * xpUnknownReason, which must have the highest numerical value.)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700147 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700148enum xp_retval {
149 xpSuccess = 0,
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700150
Dean Nelson65c17b82008-05-12 14:02:02 -0700151 xpNotConnected, /* 1: channel is not connected */
152 xpConnected, /* 2: channel connected (opened) */
153 xpRETIRED1, /* 3: (formerly xpDisconnected) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700154
Dean Nelson65c17b82008-05-12 14:02:02 -0700155 xpMsgReceived, /* 4: message received */
156 xpMsgDelivered, /* 5: message delivered and acknowledged */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700157
Dean Nelson65c17b82008-05-12 14:02:02 -0700158 xpRETIRED2, /* 6: (formerly xpTransferFailed) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700159
Dean Nelson65c17b82008-05-12 14:02:02 -0700160 xpNoWait, /* 7: operation would require wait */
161 xpRetry, /* 8: retry operation */
162 xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */
163 xpInterrupted, /* 10: interrupted wait */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700164
Dean Nelson65c17b82008-05-12 14:02:02 -0700165 xpUnequalMsgSizes, /* 11: message size disparity between sides */
166 xpInvalidAddress, /* 12: invalid address */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700167
Dean Nelson65c17b82008-05-12 14:02:02 -0700168 xpNoMemory, /* 13: no memory available for XPC structures */
169 xpLackOfResources, /* 14: insufficient resources for operation */
170 xpUnregistered, /* 15: channel is not registered */
171 xpAlreadyRegistered, /* 16: channel is already registered */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700172
Dean Nelson65c17b82008-05-12 14:02:02 -0700173 xpPartitionDown, /* 17: remote partition is down */
174 xpNotLoaded, /* 18: XPC module is not loaded */
175 xpUnloading, /* 19: this side is unloading XPC module */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700176
Dean Nelson65c17b82008-05-12 14:02:02 -0700177 xpBadMagic, /* 20: XPC MAGIC string not found */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700178
Dean Nelson65c17b82008-05-12 14:02:02 -0700179 xpReactivating, /* 21: remote partition was reactivated */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700180
Dean Nelson65c17b82008-05-12 14:02:02 -0700181 xpUnregistering, /* 22: this side is unregistering channel */
182 xpOtherUnregistering, /* 23: other side is unregistering channel */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700183
Dean Nelson65c17b82008-05-12 14:02:02 -0700184 xpCloneKThread, /* 24: cloning kernel thread */
185 xpCloneKThreadFailed, /* 25: cloning kernel thread failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700186
Dean Nelson65c17b82008-05-12 14:02:02 -0700187 xpNoHeartbeat, /* 26: remote partition has no heartbeat */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700188
Dean Nelson65c17b82008-05-12 14:02:02 -0700189 xpPioReadError, /* 27: PIO read error */
190 xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700191
Dean Nelson65c17b82008-05-12 14:02:02 -0700192 xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */
193 xpRETIRED4, /* 30: (formerly xpBtePoisonError) */
194 xpRETIRED5, /* 31: (formerly xpBteWriteError) */
195 xpRETIRED6, /* 32: (formerly xpBteAccessError) */
196 xpRETIRED7, /* 33: (formerly xpBtePWriteError) */
197 xpRETIRED8, /* 34: (formerly xpBtePReadError) */
198 xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */
199 xpRETIRED10, /* 36: (formerly xpBteXtalkError) */
200 xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */
201 xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700202
Dean Nelson65c17b82008-05-12 14:02:02 -0700203 xpBadVersion, /* 39: bad version number */
204 xpVarsNotSet, /* 40: the XPC variables are not set up */
205 xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */
206 xpInvalidPartid, /* 42: invalid partition ID */
207 xpLocalPartid, /* 43: local partition ID */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700208
Dean Nelson65c17b82008-05-12 14:02:02 -0700209 xpOtherGoingDown, /* 44: other side going down, reason unknown */
210 xpSystemGoingDown, /* 45: system is going down, reason unknown */
211 xpSystemHalt, /* 46: system is being halted */
212 xpSystemReboot, /* 47: system is being rebooted */
213 xpSystemPoweroff, /* 48: system is being powered off */
Dean Nelsona607c382005-09-01 14:01:37 -0500214
Dean Nelson65c17b82008-05-12 14:02:02 -0700215 xpDisconnecting, /* 49: channel disconnecting (closing) */
Dean Nelsona607c382005-09-01 14:01:37 -0500216
Dean Nelson65c17b82008-05-12 14:02:02 -0700217 xpOpenCloseError, /* 50: channel open/close protocol error */
Dean Nelsone54af722005-10-25 14:07:43 -0500218
Dean Nelson65c17b82008-05-12 14:02:02 -0700219 xpDisconnected, /* 51: channel disconnected (closed) */
Dean Nelson246c7e32005-12-22 14:32:56 -0600220
Dean Nelson65c17b82008-05-12 14:02:02 -0700221 xpBteCopyError, /* 52: bte_copy() returned error */
Dean Nelsonda970522008-07-29 22:34:03 -0700222 xpSalError, /* 53: sn SAL error */
Dean Nelson94bd2702008-07-29 22:34:05 -0700223 xpRsvdPageNotSet, /* 54: the reserved page is not set up */
Russ Anderson64135fa2007-08-21 16:45:12 -0500224
Dean Nelson94bd2702008-07-29 22:34:05 -0700225 xpUnsupported, /* 55: unsupported functionality or resource */
226 xpUnknownReason /* 56: unknown reason - must be last in enum */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700227};
228
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700229/*
Dean Nelson65c17b82008-05-12 14:02:02 -0700230 * Define the callout function type used by XPC to update the user on
231 * connection activity and state changes via the user function registered
232 * by xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700233 *
234 * Arguments:
235 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700236 * reason - reason code.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700237 * partid - partition ID associated with condition.
238 * ch_number - channel # associated with condition.
Dean Nelson65c17b82008-05-12 14:02:02 -0700239 * data - pointer to optional data.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700240 * key - pointer to optional user-defined value provided as the "key"
Dean Nelson65c17b82008-05-12 14:02:02 -0700241 * argument to xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700242 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700243 * A reason code of xpConnected indicates that a connection has been
244 * established to the specified partition on the specified channel. The data
245 * argument indicates the max number of entries allowed in the message queue.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700246 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700247 * A reason code of xpMsgReceived indicates that a XPC message arrived from
248 * the specified partition on the specified channel. The data argument
249 * specifies the address of the message's payload. The user must call
250 * xpc_received() when finished with the payload.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700251 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700252 * All other reason codes indicate failure. The data argmument is NULL.
253 * When a failure reason code is received, one can assume that the channel
254 * is not connected.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700255 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700256typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500257 int ch_number, void *data, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700258
Dean Nelson65c17b82008-05-12 14:02:02 -0700259/*
260 * Define the callout function type used by XPC to notify the user of
261 * messages received and delivered via the user function registered by
262 * xpc_send_notify().
263 *
264 * Arguments:
265 *
266 * reason - reason code.
267 * partid - partition ID associated with condition.
268 * ch_number - channel # associated with condition.
269 * key - pointer to optional user-defined value provided as the "key"
270 * argument to xpc_send_notify().
271 *
272 * A reason code of xpMsgDelivered indicates that the message was delivered
273 * to the intended recipient and that they have acknowledged its receipt by
274 * calling xpc_received().
275 *
276 * All other reason codes indicate failure.
277 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700278typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500279 int ch_number, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700280
281/*
282 * The following is a registration entry. There is a global array of these,
283 * one per channel. It is used to record the connection registration made
284 * by the users of XPC. As long as a registration entry exists, for any
285 * partition that comes up, XPC will attempt to establish a connection on
286 * that channel. Notification that a connection has been made will occur via
287 * the xpc_channel_func function.
288 *
289 * The 'func' field points to the function to call when aynchronous
290 * notification is required for such events as: a connection established/lost,
Dean Nelsone54af722005-10-25 14:07:43 -0500291 * or an incoming message received, or an error condition encountered. A
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700292 * non-NULL 'func' field indicates that there is an active registration for
293 * the channel.
294 */
295struct xpc_registration {
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500296 struct mutex mutex;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500297 xpc_channel_func func; /* function to call */
298 void *key; /* pointer to user's key */
299 u16 nentries; /* #of msg entries in local msg queue */
300 u16 msg_size; /* message queue's message size */
301 u32 assigned_limit; /* limit on #of assigned kthreads */
302 u32 idle_limit; /* limit on #of idle kthreads */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700303} ____cacheline_aligned;
304
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700305#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
306
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700307/* the following are valid xpc_allocate() flags */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500308#define XPC_WAIT 0 /* wait flag */
309#define XPC_NOWAIT 1 /* no wait flag */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700310
311struct xpc_interface {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500312 void (*connect) (int);
313 void (*disconnect) (int);
Dean Nelson64d032b2008-05-12 14:02:03 -0700314 enum xp_retval (*allocate) (short, int, u32, void **);
315 enum xp_retval (*send) (short, int, void *);
316 enum xp_retval (*send_notify) (short, int, void *,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500317 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700318 void (*received) (short, int, void *);
319 enum xp_retval (*partid_to_nasids) (short, void *);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700320};
321
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700322extern struct xpc_interface xpc_interface;
323
324extern void xpc_set_interface(void (*)(int),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500325 void (*)(int),
Dean Nelson64d032b2008-05-12 14:02:03 -0700326 enum xp_retval (*)(short, int, u32, void **),
327 enum xp_retval (*)(short, int, void *),
328 enum xp_retval (*)(short, int, void *,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500329 xpc_notify_func, void *),
Dean Nelson64d032b2008-05-12 14:02:03 -0700330 void (*)(short, int, void *),
331 enum xp_retval (*)(short, void *));
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700332extern void xpc_clear_interface(void);
333
Dean Nelson65c17b82008-05-12 14:02:02 -0700334extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500335 u16, u32, u32);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700336extern void xpc_disconnect(int);
337
Dean Nelson65c17b82008-05-12 14:02:02 -0700338static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700339xpc_allocate(short partid, int ch_number, u32 flags, void **payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700340{
341 return xpc_interface.allocate(partid, ch_number, flags, payload);
342}
343
Dean Nelson65c17b82008-05-12 14:02:02 -0700344static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700345xpc_send(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700346{
347 return xpc_interface.send(partid, ch_number, payload);
348}
349
Dean Nelson65c17b82008-05-12 14:02:02 -0700350static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700351xpc_send_notify(short partid, int ch_number, void *payload,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500352 xpc_notify_func func, void *key)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700353{
354 return xpc_interface.send_notify(partid, ch_number, payload, func, key);
355}
356
357static inline void
Dean Nelson64d032b2008-05-12 14:02:03 -0700358xpc_received(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700359{
360 return xpc_interface.received(partid, ch_number, payload);
361}
362
Dean Nelson65c17b82008-05-12 14:02:02 -0700363static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700364xpc_partid_to_nasids(short partid, void *nasids)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700365{
366 return xpc_interface.partid_to_nasids(partid, nasids);
367}
368
Dean Nelsonbc63d382008-07-29 22:34:04 -0700369extern short xp_max_npartitions;
370
Dean Nelson908787d2008-07-29 22:34:05 -0700371extern enum xp_retval (*xp_remote_memcpy) (void *, const void *, size_t);
372
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700373extern u64 xp_nofault_PIOR_target;
374extern int xp_nofault_PIOR(void *);
375extern int xp_error_PIOR(void);
376
Dean Nelsonbc63d382008-07-29 22:34:04 -0700377extern struct device *xp;
378extern enum xp_retval xp_init_sn2(void);
379extern enum xp_retval xp_init_uv(void);
380extern void xp_exit_sn2(void);
381extern void xp_exit_uv(void);
382
Dean Nelson45d9ca42008-04-22 14:46:56 -0500383#endif /* _DRIVERS_MISC_SGIXP_XP_H */