blob: 51087e11188795c9d2d1fc3bed58cfb624977669 [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>
20#include <asm/sn/bte.h>
Dean Nelsonbc63d382008-07-29 22:34:04 -070021#ifdef CONFIG_IA64
22#include <asm/sn/arch.h>
23#endif
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070024
Dean Nelson78ce1bb2008-07-29 22:34:03 -070025/* >>> Add this #define to some linux header file some day. */
26#define BYTES_PER_WORD sizeof(void *)
27
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070028#ifdef USE_DBUG_ON
29#define DBUG_ON(condition) BUG_ON(condition)
30#else
31#define DBUG_ON(condition)
32#endif
33
Dean Nelson355c54d2008-07-29 22:34:02 -070034#ifndef is_shub1
35#define is_shub1() 0
36#endif
37
38#ifndef is_shub2
39#define is_shub2() 0
40#endif
41
42#ifndef is_shub
43#define is_shub() (is_shub1() || is_shub2())
44#endif
45
46#ifndef is_uv
47#define is_uv() 0
48#endif
49
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070050/*
Dean Nelsonbc63d382008-07-29 22:34:04 -070051 * Define the maximum number of partitions the system can possibly support.
52 * It is based on the maximum number of hardware partitionable regions. The
53 * term 'region' in this context refers to the minimum number of nodes that
54 * can comprise an access protection grouping. The access protection is in
55 * regards to memory, IPI and IOI.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070056 *
57 * The maximum number of hardware partitionable regions is equal to the
58 * maximum number of nodes in the entire system divided by the minimum number
59 * of nodes that comprise an access protection grouping.
60 */
Dean Nelsonbc63d382008-07-29 22:34:04 -070061#define XP_MAX_NPARTITIONS_SN2 64
62#define XP_MAX_NPARTITIONS_UV 256
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070063
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070064/*
65 * Define the number of u64s required to represent all the C-brick nasids
66 * as a bitmap. The cross-partition kernel modules deal only with
67 * C-brick nasids, thus the need for bitmaps which don't account for
68 * odd-numbered (non C-brick) nasids.
69 */
Jack Steiner24ee0a62005-09-12 12:15:43 -050070#define XP_MAX_PHYSNODE_ID (MAX_NUMALINK_NODES / 2)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070071#define XP_NASID_MASK_BYTES ((XP_MAX_PHYSNODE_ID + 7) / 8)
72#define XP_NASID_MASK_WORDS ((XP_MAX_PHYSNODE_ID + 63) / 64)
73
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070074/*
75 * Wrapper for bte_copy() that should it return a failure status will retry
76 * the bte_copy() once in the hope that the failure was due to a temporary
77 * aberration (i.e., the link going down temporarily).
78 *
Dean Nelson7682a4c2006-08-08 15:03:29 -050079 * src - physical address of the source of the transfer.
80 * vdst - virtual address of the destination of the transfer.
81 * len - number of bytes to transfer from source to destination.
82 * mode - see bte_copy() for definition.
83 * notification - see bte_copy() for definition.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070084 *
85 * Note: xp_bte_copy() should never be called while holding a spinlock.
86 */
87static inline bte_result_t
Dean Nelson7682a4c2006-08-08 15:03:29 -050088xp_bte_copy(u64 src, u64 vdst, u64 len, u64 mode, void *notification)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070089{
90 bte_result_t ret;
Dean Nelson7682a4c2006-08-08 15:03:29 -050091 u64 pdst = ia64_tpa(vdst);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070092
Dean Nelson7682a4c2006-08-08 15:03:29 -050093 /*
94 * Ensure that the physically mapped memory is contiguous.
95 *
96 * We do this by ensuring that the memory is from region 7 only.
97 * If the need should arise to use memory from one of the other
98 * regions, then modify the BUG_ON() statement to ensure that the
99 * memory from that region is always physically contiguous.
100 */
101 BUG_ON(REGION_NUMBER(vdst) != RGN_KERNEL);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700102
Dean Nelson7682a4c2006-08-08 15:03:29 -0500103 ret = bte_copy(src, pdst, len, mode, notification);
Russ Anderson64135fa2007-08-21 16:45:12 -0500104 if ((ret != BTE_SUCCESS) && BTE_ERROR_RETRY(ret)) {
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500105 if (!in_interrupt())
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700106 cond_resched();
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500107
Dean Nelson7682a4c2006-08-08 15:03:29 -0500108 ret = bte_copy(src, pdst, len, mode, notification);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700109 }
110
111 return ret;
112}
113
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700114/*
115 * XPC establishes channel connections between the local partition and any
116 * other partition that is currently up. Over these channels, kernel-level
117 * `users' can communicate with their counterparts on the other partitions.
118 *
Dean Nelsonbc63d382008-07-29 22:34:04 -0700119>>> The following described limitation of a max of eight channels possible
120>>> pertains only to ia64-sn2. THIS ISN'T TRUE SINCE I'M PLANNING TO JUST
121>>> TIE INTO THE EXISTING MECHANISM ONCE THE CHANNEL MESSAGES ARE RECEIVED.
122>>> THE 128-BYTE CACHELINE PERFORMANCE ISSUE IS TIED TO IA64-SN2.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700123 *
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700124 * If the need for additional channels arises, one can simply increase
Dean Nelsonbc63d382008-07-29 22:34:04 -0700125 * XPC_MAX_NCHANNELS accordingly. If the day should come where that number
126 * exceeds the absolute MAXIMUM number of channels possible (eight), then one
127 * will need to make changes to the XPC code to accommodate for this.
128 *
129 * The absolute maximum number of channels possible is currently limited to
130 * eight for performance reasons. The internal cross partition structures
131 * require sixteen bytes per channel, and eight allows all of this
132 * interface-shared info to fit in one 128-byte cacheline.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700133 */
134#define XPC_MEM_CHANNEL 0 /* memory channel number */
135#define XPC_NET_CHANNEL 1 /* network channel number */
136
Dean Nelsonbc63d382008-07-29 22:34:04 -0700137#define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700138
Dean Nelsonbc63d382008-07-29 22:34:04 -0700139#if XPC_MAX_NCHANNELS > 8
140#error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700141#endif
142
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700143/*
144 * The format of an XPC message is as follows:
145 *
146 * +-------+--------------------------------+
147 * | flags |////////////////////////////////|
148 * +-------+--------------------------------+
149 * | message # |
150 * +----------------------------------------+
151 * | payload (user-defined message) |
152 * | |
153 * :
154 * | |
155 * +----------------------------------------+
156 *
157 * The size of the payload is defined by the user via xpc_connect(). A user-
158 * defined message resides in the payload area.
159 *
160 * The user should have no dealings with the message header, but only the
161 * message's payload. When a message entry is allocated (via xpc_allocate())
162 * a pointer to the payload area is returned and not the actual beginning of
163 * the XPC message. The user then constructs a message in the payload area
164 * and passes that pointer as an argument on xpc_send() or xpc_send_notify().
165 *
166 * The size of a message entry (within a message queue) must be a cacheline
167 * sized multiple in order to facilitate the BTE transfer of messages from one
168 * message queue to another. A macro, XPC_MSG_SIZE(), is provided for the user
169 * that wants to fit as many msg entries as possible in a given memory size
170 * (e.g. a memory page).
171 */
172struct xpc_msg {
173 u8 flags; /* FOR XPC INTERNAL USE ONLY */
174 u8 reserved[7]; /* FOR XPC INTERNAL USE ONLY */
175 s64 number; /* FOR XPC INTERNAL USE ONLY */
176
177 u64 payload; /* user defined portion of message */
178};
179
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700180#define XPC_MSG_PAYLOAD_OFFSET (u64) (&((struct xpc_msg *)0)->payload)
181#define XPC_MSG_SIZE(_payload_size) \
182 L1_CACHE_ALIGN(XPC_MSG_PAYLOAD_OFFSET + (_payload_size))
183
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700184/*
185 * Define the return values and values passed to user's callout functions.
186 * (It is important to add new value codes at the end just preceding
Dean Nelson65c17b82008-05-12 14:02:02 -0700187 * xpUnknownReason, which must have the highest numerical value.)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700188 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700189enum xp_retval {
190 xpSuccess = 0,
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700191
Dean Nelson65c17b82008-05-12 14:02:02 -0700192 xpNotConnected, /* 1: channel is not connected */
193 xpConnected, /* 2: channel connected (opened) */
194 xpRETIRED1, /* 3: (formerly xpDisconnected) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700195
Dean Nelson65c17b82008-05-12 14:02:02 -0700196 xpMsgReceived, /* 4: message received */
197 xpMsgDelivered, /* 5: message delivered and acknowledged */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700198
Dean Nelson65c17b82008-05-12 14:02:02 -0700199 xpRETIRED2, /* 6: (formerly xpTransferFailed) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700200
Dean Nelson65c17b82008-05-12 14:02:02 -0700201 xpNoWait, /* 7: operation would require wait */
202 xpRetry, /* 8: retry operation */
203 xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */
204 xpInterrupted, /* 10: interrupted wait */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700205
Dean Nelson65c17b82008-05-12 14:02:02 -0700206 xpUnequalMsgSizes, /* 11: message size disparity between sides */
207 xpInvalidAddress, /* 12: invalid address */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700208
Dean Nelson65c17b82008-05-12 14:02:02 -0700209 xpNoMemory, /* 13: no memory available for XPC structures */
210 xpLackOfResources, /* 14: insufficient resources for operation */
211 xpUnregistered, /* 15: channel is not registered */
212 xpAlreadyRegistered, /* 16: channel is already registered */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700213
Dean Nelson65c17b82008-05-12 14:02:02 -0700214 xpPartitionDown, /* 17: remote partition is down */
215 xpNotLoaded, /* 18: XPC module is not loaded */
216 xpUnloading, /* 19: this side is unloading XPC module */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700217
Dean Nelson65c17b82008-05-12 14:02:02 -0700218 xpBadMagic, /* 20: XPC MAGIC string not found */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700219
Dean Nelson65c17b82008-05-12 14:02:02 -0700220 xpReactivating, /* 21: remote partition was reactivated */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700221
Dean Nelson65c17b82008-05-12 14:02:02 -0700222 xpUnregistering, /* 22: this side is unregistering channel */
223 xpOtherUnregistering, /* 23: other side is unregistering channel */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700224
Dean Nelson65c17b82008-05-12 14:02:02 -0700225 xpCloneKThread, /* 24: cloning kernel thread */
226 xpCloneKThreadFailed, /* 25: cloning kernel thread failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700227
Dean Nelson65c17b82008-05-12 14:02:02 -0700228 xpNoHeartbeat, /* 26: remote partition has no heartbeat */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700229
Dean Nelson65c17b82008-05-12 14:02:02 -0700230 xpPioReadError, /* 27: PIO read error */
231 xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700232
Dean Nelson65c17b82008-05-12 14:02:02 -0700233 xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */
234 xpRETIRED4, /* 30: (formerly xpBtePoisonError) */
235 xpRETIRED5, /* 31: (formerly xpBteWriteError) */
236 xpRETIRED6, /* 32: (formerly xpBteAccessError) */
237 xpRETIRED7, /* 33: (formerly xpBtePWriteError) */
238 xpRETIRED8, /* 34: (formerly xpBtePReadError) */
239 xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */
240 xpRETIRED10, /* 36: (formerly xpBteXtalkError) */
241 xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */
242 xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700243
Dean Nelson65c17b82008-05-12 14:02:02 -0700244 xpBadVersion, /* 39: bad version number */
245 xpVarsNotSet, /* 40: the XPC variables are not set up */
246 xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */
247 xpInvalidPartid, /* 42: invalid partition ID */
248 xpLocalPartid, /* 43: local partition ID */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700249
Dean Nelson65c17b82008-05-12 14:02:02 -0700250 xpOtherGoingDown, /* 44: other side going down, reason unknown */
251 xpSystemGoingDown, /* 45: system is going down, reason unknown */
252 xpSystemHalt, /* 46: system is being halted */
253 xpSystemReboot, /* 47: system is being rebooted */
254 xpSystemPoweroff, /* 48: system is being powered off */
Dean Nelsona607c3892005-09-01 14:01:37 -0500255
Dean Nelson65c17b82008-05-12 14:02:02 -0700256 xpDisconnecting, /* 49: channel disconnecting (closing) */
Dean Nelsona607c3892005-09-01 14:01:37 -0500257
Dean Nelson65c17b82008-05-12 14:02:02 -0700258 xpOpenCloseError, /* 50: channel open/close protocol error */
Dean Nelsone54af722005-10-25 14:07:43 -0500259
Dean Nelson65c17b82008-05-12 14:02:02 -0700260 xpDisconnected, /* 51: channel disconnected (closed) */
Dean Nelson246c7e32005-12-22 14:32:56 -0600261
Dean Nelson65c17b82008-05-12 14:02:02 -0700262 xpBteCopyError, /* 52: bte_copy() returned error */
Dean Nelsonda970522008-07-29 22:34:03 -0700263 xpSalError, /* 53: sn SAL error */
Russ Anderson64135fa2007-08-21 16:45:12 -0500264
Dean Nelsonbc63d382008-07-29 22:34:04 -0700265 xpUnsupported, /* 54: unsupported functionality or resource */
266 xpUnknownReason /* 55: unknown reason - must be last in enum */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700267};
268
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700269/*
Dean Nelson65c17b82008-05-12 14:02:02 -0700270 * Define the callout function type used by XPC to update the user on
271 * connection activity and state changes via the user function registered
272 * by xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700273 *
274 * Arguments:
275 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700276 * reason - reason code.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700277 * partid - partition ID associated with condition.
278 * ch_number - channel # associated with condition.
Dean Nelson65c17b82008-05-12 14:02:02 -0700279 * data - pointer to optional data.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700280 * key - pointer to optional user-defined value provided as the "key"
Dean Nelson65c17b82008-05-12 14:02:02 -0700281 * argument to xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700282 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700283 * A reason code of xpConnected indicates that a connection has been
284 * established to the specified partition on the specified channel. The data
285 * argument indicates the max number of entries allowed in the message queue.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700286 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700287 * A reason code of xpMsgReceived indicates that a XPC message arrived from
288 * the specified partition on the specified channel. The data argument
289 * specifies the address of the message's payload. The user must call
290 * xpc_received() when finished with the payload.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700291 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700292 * All other reason codes indicate failure. The data argmument is NULL.
293 * When a failure reason code is received, one can assume that the channel
294 * is not connected.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700295 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700296typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500297 int ch_number, void *data, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700298
Dean Nelson65c17b82008-05-12 14:02:02 -0700299/*
300 * Define the callout function type used by XPC to notify the user of
301 * messages received and delivered via the user function registered by
302 * xpc_send_notify().
303 *
304 * Arguments:
305 *
306 * reason - reason code.
307 * partid - partition ID associated with condition.
308 * ch_number - channel # associated with condition.
309 * key - pointer to optional user-defined value provided as the "key"
310 * argument to xpc_send_notify().
311 *
312 * A reason code of xpMsgDelivered indicates that the message was delivered
313 * to the intended recipient and that they have acknowledged its receipt by
314 * calling xpc_received().
315 *
316 * All other reason codes indicate failure.
317 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700318typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500319 int ch_number, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700320
321/*
322 * The following is a registration entry. There is a global array of these,
323 * one per channel. It is used to record the connection registration made
324 * by the users of XPC. As long as a registration entry exists, for any
325 * partition that comes up, XPC will attempt to establish a connection on
326 * that channel. Notification that a connection has been made will occur via
327 * the xpc_channel_func function.
328 *
329 * The 'func' field points to the function to call when aynchronous
330 * notification is required for such events as: a connection established/lost,
Dean Nelsone54af722005-10-25 14:07:43 -0500331 * or an incoming message received, or an error condition encountered. A
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700332 * non-NULL 'func' field indicates that there is an active registration for
333 * the channel.
334 */
335struct xpc_registration {
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500336 struct mutex mutex;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500337 xpc_channel_func func; /* function to call */
338 void *key; /* pointer to user's key */
339 u16 nentries; /* #of msg entries in local msg queue */
340 u16 msg_size; /* message queue's message size */
341 u32 assigned_limit; /* limit on #of assigned kthreads */
342 u32 idle_limit; /* limit on #of idle kthreads */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700343} ____cacheline_aligned;
344
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700345#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
346
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700347/* the following are valid xpc_allocate() flags */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500348#define XPC_WAIT 0 /* wait flag */
349#define XPC_NOWAIT 1 /* no wait flag */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700350
351struct xpc_interface {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500352 void (*connect) (int);
353 void (*disconnect) (int);
Dean Nelson64d032b2008-05-12 14:02:03 -0700354 enum xp_retval (*allocate) (short, int, u32, void **);
355 enum xp_retval (*send) (short, int, void *);
356 enum xp_retval (*send_notify) (short, int, void *,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500357 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700358 void (*received) (short, int, void *);
359 enum xp_retval (*partid_to_nasids) (short, void *);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700360};
361
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700362extern struct xpc_interface xpc_interface;
363
364extern void xpc_set_interface(void (*)(int),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500365 void (*)(int),
Dean Nelson64d032b2008-05-12 14:02:03 -0700366 enum xp_retval (*)(short, int, u32, void **),
367 enum xp_retval (*)(short, int, void *),
368 enum xp_retval (*)(short, int, void *,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500369 xpc_notify_func, void *),
Dean Nelson64d032b2008-05-12 14:02:03 -0700370 void (*)(short, int, void *),
371 enum xp_retval (*)(short, void *));
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700372extern void xpc_clear_interface(void);
373
Dean Nelson65c17b82008-05-12 14:02:02 -0700374extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500375 u16, u32, u32);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700376extern void xpc_disconnect(int);
377
Dean Nelson65c17b82008-05-12 14:02:02 -0700378static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700379xpc_allocate(short partid, int ch_number, u32 flags, void **payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700380{
381 return xpc_interface.allocate(partid, ch_number, flags, payload);
382}
383
Dean Nelson65c17b82008-05-12 14:02:02 -0700384static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700385xpc_send(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700386{
387 return xpc_interface.send(partid, ch_number, payload);
388}
389
Dean Nelson65c17b82008-05-12 14:02:02 -0700390static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700391xpc_send_notify(short partid, int ch_number, void *payload,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500392 xpc_notify_func func, void *key)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700393{
394 return xpc_interface.send_notify(partid, ch_number, payload, func, key);
395}
396
397static inline void
Dean Nelson64d032b2008-05-12 14:02:03 -0700398xpc_received(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700399{
400 return xpc_interface.received(partid, ch_number, payload);
401}
402
Dean Nelson65c17b82008-05-12 14:02:02 -0700403static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700404xpc_partid_to_nasids(short partid, void *nasids)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700405{
406 return xpc_interface.partid_to_nasids(partid, nasids);
407}
408
Dean Nelsonbc63d382008-07-29 22:34:04 -0700409extern short xp_max_npartitions;
410
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700411extern u64 xp_nofault_PIOR_target;
412extern int xp_nofault_PIOR(void *);
413extern int xp_error_PIOR(void);
414
Dean Nelsonbc63d382008-07-29 22:34:04 -0700415extern struct device *xp;
416extern enum xp_retval xp_init_sn2(void);
417extern enum xp_retval xp_init_uv(void);
418extern void xp_exit_sn2(void);
419extern void xp_exit_uv(void);
420
Dean Nelson45d9ca42008-04-22 14:46:56 -0500421#endif /* _DRIVERS_MISC_SGIXP_XP_H */