blob: 21cb8a31def1340a154979e16c1b0ca4755be4bc [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>
21
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070022#ifdef USE_DBUG_ON
23#define DBUG_ON(condition) BUG_ON(condition)
24#else
25#define DBUG_ON(condition)
26#endif
27
Dean Nelson355c54d2008-07-29 22:34:02 -070028#ifndef is_shub1
29#define is_shub1() 0
30#endif
31
32#ifndef is_shub2
33#define is_shub2() 0
34#endif
35
36#ifndef is_shub
37#define is_shub() (is_shub1() || is_shub2())
38#endif
39
40#ifndef is_uv
41#define is_uv() 0
42#endif
43
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070044/*
45 * Define the maximum number of logically defined partitions the system
46 * can support. It is constrained by the maximum number of hardware
47 * partitionable regions. The term 'region' in this context refers to the
48 * minimum number of nodes that can comprise an access protection grouping.
49 * The access protection is in regards to memory, IPI and IOI.
50 *
51 * The maximum number of hardware partitionable regions is equal to the
52 * maximum number of nodes in the entire system divided by the minimum number
53 * of nodes that comprise an access protection grouping.
54 */
55#define XP_MAX_PARTITIONS 64
56
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070057/*
58 * Define the number of u64s required to represent all the C-brick nasids
59 * as a bitmap. The cross-partition kernel modules deal only with
60 * C-brick nasids, thus the need for bitmaps which don't account for
61 * odd-numbered (non C-brick) nasids.
62 */
Jack Steiner24ee0a62005-09-12 12:15:43 -050063#define XP_MAX_PHYSNODE_ID (MAX_NUMALINK_NODES / 2)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070064#define XP_NASID_MASK_BYTES ((XP_MAX_PHYSNODE_ID + 7) / 8)
65#define XP_NASID_MASK_WORDS ((XP_MAX_PHYSNODE_ID + 63) / 64)
66
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070067/*
68 * Wrapper for bte_copy() that should it return a failure status will retry
69 * the bte_copy() once in the hope that the failure was due to a temporary
70 * aberration (i.e., the link going down temporarily).
71 *
Dean Nelson7682a4c2006-08-08 15:03:29 -050072 * src - physical address of the source of the transfer.
73 * vdst - virtual address of the destination of the transfer.
74 * len - number of bytes to transfer from source to destination.
75 * mode - see bte_copy() for definition.
76 * notification - see bte_copy() for definition.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070077 *
78 * Note: xp_bte_copy() should never be called while holding a spinlock.
79 */
80static inline bte_result_t
Dean Nelson7682a4c2006-08-08 15:03:29 -050081xp_bte_copy(u64 src, u64 vdst, u64 len, u64 mode, void *notification)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070082{
83 bte_result_t ret;
Dean Nelson7682a4c2006-08-08 15:03:29 -050084 u64 pdst = ia64_tpa(vdst);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070085
Dean Nelson7682a4c2006-08-08 15:03:29 -050086 /*
87 * Ensure that the physically mapped memory is contiguous.
88 *
89 * We do this by ensuring that the memory is from region 7 only.
90 * If the need should arise to use memory from one of the other
91 * regions, then modify the BUG_ON() statement to ensure that the
92 * memory from that region is always physically contiguous.
93 */
94 BUG_ON(REGION_NUMBER(vdst) != RGN_KERNEL);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070095
Dean Nelson7682a4c2006-08-08 15:03:29 -050096 ret = bte_copy(src, pdst, len, mode, notification);
Russ Anderson64135fa2007-08-21 16:45:12 -050097 if ((ret != BTE_SUCCESS) && BTE_ERROR_RETRY(ret)) {
Dean Nelson2c2b94f2008-04-22 14:50:17 -050098 if (!in_interrupt())
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070099 cond_resched();
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500100
Dean Nelson7682a4c2006-08-08 15:03:29 -0500101 ret = bte_copy(src, pdst, len, mode, notification);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700102 }
103
104 return ret;
105}
106
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700107/*
108 * XPC establishes channel connections between the local partition and any
109 * other partition that is currently up. Over these channels, kernel-level
110 * `users' can communicate with their counterparts on the other partitions.
111 *
112 * The maxinum number of channels is limited to eight. For performance reasons,
113 * the internal cross partition structures require sixteen bytes per channel,
114 * and eight allows all of this interface-shared info to fit in one cache line.
115 *
116 * XPC_NCHANNELS reflects the total number of channels currently defined.
117 * If the need for additional channels arises, one can simply increase
118 * XPC_NCHANNELS accordingly. If the day should come where that number
119 * exceeds the MAXIMUM number of channels allowed (eight), then one will need
120 * to make changes to the XPC code to allow for this.
121 */
122#define XPC_MEM_CHANNEL 0 /* memory channel number */
123#define XPC_NET_CHANNEL 1 /* network channel number */
124
125#define XPC_NCHANNELS 2 /* #of defined channels */
126#define XPC_MAX_NCHANNELS 8 /* max #of channels allowed */
127
128#if XPC_NCHANNELS > XPC_MAX_NCHANNELS
129#error XPC_NCHANNELS exceeds MAXIMUM allowed.
130#endif
131
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700132/*
133 * The format of an XPC message is as follows:
134 *
135 * +-------+--------------------------------+
136 * | flags |////////////////////////////////|
137 * +-------+--------------------------------+
138 * | message # |
139 * +----------------------------------------+
140 * | payload (user-defined message) |
141 * | |
142 * :
143 * | |
144 * +----------------------------------------+
145 *
146 * The size of the payload is defined by the user via xpc_connect(). A user-
147 * defined message resides in the payload area.
148 *
149 * The user should have no dealings with the message header, but only the
150 * message's payload. When a message entry is allocated (via xpc_allocate())
151 * a pointer to the payload area is returned and not the actual beginning of
152 * the XPC message. The user then constructs a message in the payload area
153 * and passes that pointer as an argument on xpc_send() or xpc_send_notify().
154 *
155 * The size of a message entry (within a message queue) must be a cacheline
156 * sized multiple in order to facilitate the BTE transfer of messages from one
157 * message queue to another. A macro, XPC_MSG_SIZE(), is provided for the user
158 * that wants to fit as many msg entries as possible in a given memory size
159 * (e.g. a memory page).
160 */
161struct xpc_msg {
162 u8 flags; /* FOR XPC INTERNAL USE ONLY */
163 u8 reserved[7]; /* FOR XPC INTERNAL USE ONLY */
164 s64 number; /* FOR XPC INTERNAL USE ONLY */
165
166 u64 payload; /* user defined portion of message */
167};
168
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700169#define XPC_MSG_PAYLOAD_OFFSET (u64) (&((struct xpc_msg *)0)->payload)
170#define XPC_MSG_SIZE(_payload_size) \
171 L1_CACHE_ALIGN(XPC_MSG_PAYLOAD_OFFSET + (_payload_size))
172
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700173/*
174 * Define the return values and values passed to user's callout functions.
175 * (It is important to add new value codes at the end just preceding
Dean Nelson65c17b82008-05-12 14:02:02 -0700176 * xpUnknownReason, which must have the highest numerical value.)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700177 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700178enum xp_retval {
179 xpSuccess = 0,
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700180
Dean Nelson65c17b82008-05-12 14:02:02 -0700181 xpNotConnected, /* 1: channel is not connected */
182 xpConnected, /* 2: channel connected (opened) */
183 xpRETIRED1, /* 3: (formerly xpDisconnected) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700184
Dean Nelson65c17b82008-05-12 14:02:02 -0700185 xpMsgReceived, /* 4: message received */
186 xpMsgDelivered, /* 5: message delivered and acknowledged */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700187
Dean Nelson65c17b82008-05-12 14:02:02 -0700188 xpRETIRED2, /* 6: (formerly xpTransferFailed) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700189
Dean Nelson65c17b82008-05-12 14:02:02 -0700190 xpNoWait, /* 7: operation would require wait */
191 xpRetry, /* 8: retry operation */
192 xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */
193 xpInterrupted, /* 10: interrupted wait */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700194
Dean Nelson65c17b82008-05-12 14:02:02 -0700195 xpUnequalMsgSizes, /* 11: message size disparity between sides */
196 xpInvalidAddress, /* 12: invalid address */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700197
Dean Nelson65c17b82008-05-12 14:02:02 -0700198 xpNoMemory, /* 13: no memory available for XPC structures */
199 xpLackOfResources, /* 14: insufficient resources for operation */
200 xpUnregistered, /* 15: channel is not registered */
201 xpAlreadyRegistered, /* 16: channel is already registered */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700202
Dean Nelson65c17b82008-05-12 14:02:02 -0700203 xpPartitionDown, /* 17: remote partition is down */
204 xpNotLoaded, /* 18: XPC module is not loaded */
205 xpUnloading, /* 19: this side is unloading XPC module */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700206
Dean Nelson65c17b82008-05-12 14:02:02 -0700207 xpBadMagic, /* 20: XPC MAGIC string not found */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700208
Dean Nelson65c17b82008-05-12 14:02:02 -0700209 xpReactivating, /* 21: remote partition was reactivated */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700210
Dean Nelson65c17b82008-05-12 14:02:02 -0700211 xpUnregistering, /* 22: this side is unregistering channel */
212 xpOtherUnregistering, /* 23: other side is unregistering channel */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700213
Dean Nelson65c17b82008-05-12 14:02:02 -0700214 xpCloneKThread, /* 24: cloning kernel thread */
215 xpCloneKThreadFailed, /* 25: cloning kernel thread failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700216
Dean Nelson65c17b82008-05-12 14:02:02 -0700217 xpNoHeartbeat, /* 26: remote partition has no heartbeat */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700218
Dean Nelson65c17b82008-05-12 14:02:02 -0700219 xpPioReadError, /* 27: PIO read error */
220 xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700221
Dean Nelson65c17b82008-05-12 14:02:02 -0700222 xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */
223 xpRETIRED4, /* 30: (formerly xpBtePoisonError) */
224 xpRETIRED5, /* 31: (formerly xpBteWriteError) */
225 xpRETIRED6, /* 32: (formerly xpBteAccessError) */
226 xpRETIRED7, /* 33: (formerly xpBtePWriteError) */
227 xpRETIRED8, /* 34: (formerly xpBtePReadError) */
228 xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */
229 xpRETIRED10, /* 36: (formerly xpBteXtalkError) */
230 xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */
231 xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700232
Dean Nelson65c17b82008-05-12 14:02:02 -0700233 xpBadVersion, /* 39: bad version number */
234 xpVarsNotSet, /* 40: the XPC variables are not set up */
235 xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */
236 xpInvalidPartid, /* 42: invalid partition ID */
237 xpLocalPartid, /* 43: local partition ID */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700238
Dean Nelson65c17b82008-05-12 14:02:02 -0700239 xpOtherGoingDown, /* 44: other side going down, reason unknown */
240 xpSystemGoingDown, /* 45: system is going down, reason unknown */
241 xpSystemHalt, /* 46: system is being halted */
242 xpSystemReboot, /* 47: system is being rebooted */
243 xpSystemPoweroff, /* 48: system is being powered off */
Dean Nelsona607c382005-09-01 14:01:37 -0500244
Dean Nelson65c17b82008-05-12 14:02:02 -0700245 xpDisconnecting, /* 49: channel disconnecting (closing) */
Dean Nelsona607c382005-09-01 14:01:37 -0500246
Dean Nelson65c17b82008-05-12 14:02:02 -0700247 xpOpenCloseError, /* 50: channel open/close protocol error */
Dean Nelsone54af722005-10-25 14:07:43 -0500248
Dean Nelson65c17b82008-05-12 14:02:02 -0700249 xpDisconnected, /* 51: channel disconnected (closed) */
Dean Nelson246c7e32005-12-22 14:32:56 -0600250
Dean Nelson65c17b82008-05-12 14:02:02 -0700251 xpBteCopyError, /* 52: bte_copy() returned error */
Dean Nelsonda970522008-07-29 22:34:03 -0700252 xpSalError, /* 53: sn SAL error */
Russ Anderson64135fa2007-08-21 16:45:12 -0500253
Dean Nelsonda970522008-07-29 22:34:03 -0700254 xpUnknownReason /* 54: unknown reason - must be last in enum */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700255};
256
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700257/*
Dean Nelson65c17b82008-05-12 14:02:02 -0700258 * Define the callout function type used by XPC to update the user on
259 * connection activity and state changes via the user function registered
260 * by xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700261 *
262 * Arguments:
263 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700264 * reason - reason code.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700265 * partid - partition ID associated with condition.
266 * ch_number - channel # associated with condition.
Dean Nelson65c17b82008-05-12 14:02:02 -0700267 * data - pointer to optional data.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700268 * key - pointer to optional user-defined value provided as the "key"
Dean Nelson65c17b82008-05-12 14:02:02 -0700269 * argument to xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700270 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700271 * A reason code of xpConnected indicates that a connection has been
272 * established to the specified partition on the specified channel. The data
273 * argument indicates the max number of entries allowed in the message queue.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700274 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700275 * A reason code of xpMsgReceived indicates that a XPC message arrived from
276 * the specified partition on the specified channel. The data argument
277 * specifies the address of the message's payload. The user must call
278 * xpc_received() when finished with the payload.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700279 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700280 * All other reason codes indicate failure. The data argmument is NULL.
281 * When a failure reason code is received, one can assume that the channel
282 * is not connected.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700283 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700284typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500285 int ch_number, void *data, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700286
Dean Nelson65c17b82008-05-12 14:02:02 -0700287/*
288 * Define the callout function type used by XPC to notify the user of
289 * messages received and delivered via the user function registered by
290 * xpc_send_notify().
291 *
292 * Arguments:
293 *
294 * reason - reason code.
295 * partid - partition ID associated with condition.
296 * ch_number - channel # associated with condition.
297 * key - pointer to optional user-defined value provided as the "key"
298 * argument to xpc_send_notify().
299 *
300 * A reason code of xpMsgDelivered indicates that the message was delivered
301 * to the intended recipient and that they have acknowledged its receipt by
302 * calling xpc_received().
303 *
304 * All other reason codes indicate failure.
305 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700306typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500307 int ch_number, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700308
309/*
310 * The following is a registration entry. There is a global array of these,
311 * one per channel. It is used to record the connection registration made
312 * by the users of XPC. As long as a registration entry exists, for any
313 * partition that comes up, XPC will attempt to establish a connection on
314 * that channel. Notification that a connection has been made will occur via
315 * the xpc_channel_func function.
316 *
317 * The 'func' field points to the function to call when aynchronous
318 * notification is required for such events as: a connection established/lost,
Dean Nelsone54af722005-10-25 14:07:43 -0500319 * or an incoming message received, or an error condition encountered. A
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700320 * non-NULL 'func' field indicates that there is an active registration for
321 * the channel.
322 */
323struct xpc_registration {
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500324 struct mutex mutex;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500325 xpc_channel_func func; /* function to call */
326 void *key; /* pointer to user's key */
327 u16 nentries; /* #of msg entries in local msg queue */
328 u16 msg_size; /* message queue's message size */
329 u32 assigned_limit; /* limit on #of assigned kthreads */
330 u32 idle_limit; /* limit on #of idle kthreads */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700331} ____cacheline_aligned;
332
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700333#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
334
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700335/* the following are valid xpc_allocate() flags */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500336#define XPC_WAIT 0 /* wait flag */
337#define XPC_NOWAIT 1 /* no wait flag */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700338
339struct xpc_interface {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500340 void (*connect) (int);
341 void (*disconnect) (int);
Dean Nelson64d032b2008-05-12 14:02:03 -0700342 enum xp_retval (*allocate) (short, int, u32, void **);
343 enum xp_retval (*send) (short, int, void *);
344 enum xp_retval (*send_notify) (short, int, void *,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500345 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700346 void (*received) (short, int, void *);
347 enum xp_retval (*partid_to_nasids) (short, void *);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700348};
349
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700350extern struct xpc_interface xpc_interface;
351
352extern void xpc_set_interface(void (*)(int),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500353 void (*)(int),
Dean Nelson64d032b2008-05-12 14:02:03 -0700354 enum xp_retval (*)(short, int, u32, void **),
355 enum xp_retval (*)(short, int, void *),
356 enum xp_retval (*)(short, int, void *,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500357 xpc_notify_func, void *),
Dean Nelson64d032b2008-05-12 14:02:03 -0700358 void (*)(short, int, void *),
359 enum xp_retval (*)(short, void *));
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700360extern void xpc_clear_interface(void);
361
Dean Nelson65c17b82008-05-12 14:02:02 -0700362extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500363 u16, u32, u32);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700364extern void xpc_disconnect(int);
365
Dean Nelson65c17b82008-05-12 14:02:02 -0700366static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700367xpc_allocate(short partid, int ch_number, u32 flags, void **payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700368{
369 return xpc_interface.allocate(partid, ch_number, flags, payload);
370}
371
Dean Nelson65c17b82008-05-12 14:02:02 -0700372static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700373xpc_send(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700374{
375 return xpc_interface.send(partid, ch_number, payload);
376}
377
Dean Nelson65c17b82008-05-12 14:02:02 -0700378static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700379xpc_send_notify(short partid, int ch_number, void *payload,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500380 xpc_notify_func func, void *key)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700381{
382 return xpc_interface.send_notify(partid, ch_number, payload, func, key);
383}
384
385static inline void
Dean Nelson64d032b2008-05-12 14:02:03 -0700386xpc_received(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700387{
388 return xpc_interface.received(partid, ch_number, payload);
389}
390
Dean Nelson65c17b82008-05-12 14:02:02 -0700391static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700392xpc_partid_to_nasids(short partid, void *nasids)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700393{
394 return xpc_interface.partid_to_nasids(partid, nasids);
395}
396
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700397extern u64 xp_nofault_PIOR_target;
398extern int xp_nofault_PIOR(void *);
399extern int xp_error_PIOR(void);
400
Dean Nelson45d9ca42008-04-22 14:46:56 -0500401#endif /* _DRIVERS_MISC_SGIXP_XP_H */