blob: 069ad3a1c2acc88594c7df5f9ad8869871c7c747 [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
Jes Sorensenf9e505a2006-01-17 12:52:21 -050016#include <linux/mutex.h>
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070017
Ingo Molnar5b221272009-01-21 11:30:07 +010018#include <asm/uv/uv.h>
19
Dean Nelson261f3b42008-07-29 22:34:16 -070020#ifdef CONFIG_IA64
21#include <asm/system.h>
22#include <asm/sn/arch.h> /* defines is_shub1() and is_shub2() */
23#define is_shub() ia64_platform_is("sn2")
Dean Nelsonb7f7b072008-10-29 14:01:12 -070024#ifdef CONFIG_IA64_SGI_UV
Dean Nelson261f3b42008-07-29 22:34:16 -070025#define is_uv() ia64_platform_is("uv")
Dean Nelsonb7f7b072008-10-29 14:01:12 -070026#else
27#define is_uv() 0
28#endif
Dean Nelson261f3b42008-07-29 22:34:16 -070029#endif
30#ifdef CONFIG_X86_64
31#include <asm/genapic.h>
32#define is_uv() is_uv_system()
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070033#endif
34
Dean Nelson355c54d2008-07-29 22:34:02 -070035#ifndef is_shub1
36#define is_shub1() 0
37#endif
38
39#ifndef is_shub2
40#define is_shub2() 0
41#endif
42
43#ifndef is_shub
Dean Nelson261f3b42008-07-29 22:34:16 -070044#define is_shub() 0
Dean Nelson355c54d2008-07-29 22:34:02 -070045#endif
46
47#ifndef is_uv
48#define is_uv() 0
49#endif
50
Dean Nelson261f3b42008-07-29 22:34:16 -070051#ifdef USE_DBUG_ON
52#define DBUG_ON(condition) BUG_ON(condition)
53#else
54#define DBUG_ON(condition)
55#endif
56
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070057/*
Dean Nelsonbc63d382008-07-29 22:34:04 -070058 * Define the maximum number of partitions the system can possibly support.
59 * It is based on the maximum number of hardware partitionable regions. The
60 * term 'region' in this context refers to the minimum number of nodes that
61 * can comprise an access protection grouping. The access protection is in
62 * regards to memory, IPI and IOI.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070063 *
64 * The maximum number of hardware partitionable regions is equal to the
65 * maximum number of nodes in the entire system divided by the minimum number
66 * of nodes that comprise an access protection grouping.
67 */
Dean Nelsonbc63d382008-07-29 22:34:04 -070068#define XP_MAX_NPARTITIONS_SN2 64
69#define XP_MAX_NPARTITIONS_UV 256
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070070
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070071/*
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070072 * XPC establishes channel connections between the local partition and any
73 * other partition that is currently up. Over these channels, kernel-level
74 * `users' can communicate with their counterparts on the other partitions.
75 *
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070076 * If the need for additional channels arises, one can simply increase
Dean Nelsonbc63d382008-07-29 22:34:04 -070077 * XPC_MAX_NCHANNELS accordingly. If the day should come where that number
78 * exceeds the absolute MAXIMUM number of channels possible (eight), then one
79 * will need to make changes to the XPC code to accommodate for this.
80 *
Dean Nelsonea57f802008-07-29 22:34:14 -070081 * The absolute maximum number of channels possible is limited to eight for
82 * performance reasons on sn2 hardware. The internal cross partition structures
Dean Nelsonbc63d382008-07-29 22:34:04 -070083 * require sixteen bytes per channel, and eight allows all of this
84 * interface-shared info to fit in one 128-byte cacheline.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070085 */
86#define XPC_MEM_CHANNEL 0 /* memory channel number */
87#define XPC_NET_CHANNEL 1 /* network channel number */
88
Dean Nelsonbc63d382008-07-29 22:34:04 -070089#define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070090
Dean Nelsonbc63d382008-07-29 22:34:04 -070091#if XPC_MAX_NCHANNELS > 8
92#error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070093#endif
94
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070095/*
Dean Nelsonbd3e64c2008-07-29 22:34:19 -070096 * Define macro, XPC_MSG_SIZE(), is provided for the user
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070097 * that wants to fit as many msg entries as possible in a given memory size
98 * (e.g. a memory page).
99 */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700100#define XPC_MSG_MAX_SIZE 128
101#define XPC_MSG_HDR_MAX_SIZE 16
102#define XPC_MSG_PAYLOAD_MAX_SIZE (XPC_MSG_MAX_SIZE - XPC_MSG_HDR_MAX_SIZE)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700103
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700104#define XPC_MSG_SIZE(_payload_size) \
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700105 ALIGN(XPC_MSG_HDR_MAX_SIZE + (_payload_size), \
106 is_uv() ? 64 : 128)
107
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700108
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700109/*
110 * Define the return values and values passed to user's callout functions.
111 * (It is important to add new value codes at the end just preceding
Dean Nelson65c17b82008-05-12 14:02:02 -0700112 * xpUnknownReason, which must have the highest numerical value.)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700113 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700114enum xp_retval {
115 xpSuccess = 0,
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700116
Dean Nelson65c17b82008-05-12 14:02:02 -0700117 xpNotConnected, /* 1: channel is not connected */
118 xpConnected, /* 2: channel connected (opened) */
119 xpRETIRED1, /* 3: (formerly xpDisconnected) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700120
Dean Nelson65c17b82008-05-12 14:02:02 -0700121 xpMsgReceived, /* 4: message received */
122 xpMsgDelivered, /* 5: message delivered and acknowledged */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700123
Dean Nelson65c17b82008-05-12 14:02:02 -0700124 xpRETIRED2, /* 6: (formerly xpTransferFailed) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700125
Dean Nelson65c17b82008-05-12 14:02:02 -0700126 xpNoWait, /* 7: operation would require wait */
127 xpRetry, /* 8: retry operation */
128 xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */
129 xpInterrupted, /* 10: interrupted wait */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700130
Dean Nelson65c17b82008-05-12 14:02:02 -0700131 xpUnequalMsgSizes, /* 11: message size disparity between sides */
132 xpInvalidAddress, /* 12: invalid address */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700133
Dean Nelson65c17b82008-05-12 14:02:02 -0700134 xpNoMemory, /* 13: no memory available for XPC structures */
135 xpLackOfResources, /* 14: insufficient resources for operation */
136 xpUnregistered, /* 15: channel is not registered */
137 xpAlreadyRegistered, /* 16: channel is already registered */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700138
Dean Nelson65c17b82008-05-12 14:02:02 -0700139 xpPartitionDown, /* 17: remote partition is down */
140 xpNotLoaded, /* 18: XPC module is not loaded */
141 xpUnloading, /* 19: this side is unloading XPC module */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700142
Dean Nelson65c17b82008-05-12 14:02:02 -0700143 xpBadMagic, /* 20: XPC MAGIC string not found */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700144
Dean Nelson65c17b82008-05-12 14:02:02 -0700145 xpReactivating, /* 21: remote partition was reactivated */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700146
Dean Nelson65c17b82008-05-12 14:02:02 -0700147 xpUnregistering, /* 22: this side is unregistering channel */
148 xpOtherUnregistering, /* 23: other side is unregistering channel */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700149
Dean Nelson65c17b82008-05-12 14:02:02 -0700150 xpCloneKThread, /* 24: cloning kernel thread */
151 xpCloneKThreadFailed, /* 25: cloning kernel thread failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700152
Dean Nelson65c17b82008-05-12 14:02:02 -0700153 xpNoHeartbeat, /* 26: remote partition has no heartbeat */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700154
Dean Nelson65c17b82008-05-12 14:02:02 -0700155 xpPioReadError, /* 27: PIO read error */
156 xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700157
Dean Nelson65c17b82008-05-12 14:02:02 -0700158 xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */
159 xpRETIRED4, /* 30: (formerly xpBtePoisonError) */
160 xpRETIRED5, /* 31: (formerly xpBteWriteError) */
161 xpRETIRED6, /* 32: (formerly xpBteAccessError) */
162 xpRETIRED7, /* 33: (formerly xpBtePWriteError) */
163 xpRETIRED8, /* 34: (formerly xpBtePReadError) */
164 xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */
165 xpRETIRED10, /* 36: (formerly xpBteXtalkError) */
166 xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */
167 xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700168
Dean Nelson65c17b82008-05-12 14:02:02 -0700169 xpBadVersion, /* 39: bad version number */
170 xpVarsNotSet, /* 40: the XPC variables are not set up */
171 xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */
172 xpInvalidPartid, /* 42: invalid partition ID */
173 xpLocalPartid, /* 43: local partition ID */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700174
Dean Nelson65c17b82008-05-12 14:02:02 -0700175 xpOtherGoingDown, /* 44: other side going down, reason unknown */
176 xpSystemGoingDown, /* 45: system is going down, reason unknown */
177 xpSystemHalt, /* 46: system is being halted */
178 xpSystemReboot, /* 47: system is being rebooted */
179 xpSystemPoweroff, /* 48: system is being powered off */
Dean Nelsona607c382005-09-01 14:01:37 -0500180
Dean Nelson65c17b82008-05-12 14:02:02 -0700181 xpDisconnecting, /* 49: channel disconnecting (closing) */
Dean Nelsona607c382005-09-01 14:01:37 -0500182
Dean Nelson65c17b82008-05-12 14:02:02 -0700183 xpOpenCloseError, /* 50: channel open/close protocol error */
Dean Nelsone54af722005-10-25 14:07:43 -0500184
Dean Nelson65c17b82008-05-12 14:02:02 -0700185 xpDisconnected, /* 51: channel disconnected (closed) */
Dean Nelson246c7e32005-12-22 14:32:56 -0600186
Dean Nelson65c17b82008-05-12 14:02:02 -0700187 xpBteCopyError, /* 52: bte_copy() returned error */
Dean Nelsonda970522008-07-29 22:34:03 -0700188 xpSalError, /* 53: sn SAL error */
Dean Nelson94bd2702008-07-29 22:34:05 -0700189 xpRsvdPageNotSet, /* 54: the reserved page is not set up */
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700190 xpPayloadTooBig, /* 55: payload too large for message slot */
Russ Anderson64135fa2007-08-21 16:45:12 -0500191
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700192 xpUnsupported, /* 56: unsupported functionality or resource */
Dean Nelson261f3b42008-07-29 22:34:16 -0700193 xpNeedMoreInfo, /* 57: more info is needed by SAL */
194
Dean Nelsona812dcc2008-07-29 22:34:16 -0700195 xpGruCopyError, /* 58: gru_copy_gru() returned error */
Dean Nelson5b8669d2008-07-29 22:34:18 -0700196 xpGruSendMqError, /* 59: gru send message queue related error */
Dean Nelsona812dcc2008-07-29 22:34:16 -0700197
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700198 xpBadChannelNumber, /* 60: invalid channel number */
Dean Nelson6c1c3252008-11-05 17:27:22 -0600199 xpBadMsgType, /* 61: invalid message type */
200 xpBiosError, /* 62: BIOS error */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700201
Dean Nelson6c1c3252008-11-05 17:27:22 -0600202 xpUnknownReason /* 63: unknown reason - must be last in enum */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700203};
204
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700205/*
Dean Nelson65c17b82008-05-12 14:02:02 -0700206 * Define the callout function type used by XPC to update the user on
207 * connection activity and state changes via the user function registered
208 * by xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700209 *
210 * Arguments:
211 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700212 * reason - reason code.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700213 * partid - partition ID associated with condition.
214 * ch_number - channel # associated with condition.
Dean Nelson65c17b82008-05-12 14:02:02 -0700215 * data - pointer to optional data.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700216 * key - pointer to optional user-defined value provided as the "key"
Dean Nelson65c17b82008-05-12 14:02:02 -0700217 * argument to xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700218 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700219 * A reason code of xpConnected indicates that a connection has been
220 * established to the specified partition on the specified channel. The data
221 * argument indicates the max number of entries allowed in the message queue.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700222 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700223 * A reason code of xpMsgReceived indicates that a XPC message arrived from
224 * the specified partition on the specified channel. The data argument
225 * specifies the address of the message's payload. The user must call
226 * xpc_received() when finished with the payload.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700227 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700228 * All other reason codes indicate failure. The data argmument is NULL.
229 * When a failure reason code is received, one can assume that the channel
230 * is not connected.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700231 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700232typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500233 int ch_number, void *data, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700234
Dean Nelson65c17b82008-05-12 14:02:02 -0700235/*
236 * Define the callout function type used by XPC to notify the user of
237 * messages received and delivered via the user function registered by
238 * xpc_send_notify().
239 *
240 * Arguments:
241 *
242 * reason - reason code.
243 * partid - partition ID associated with condition.
244 * ch_number - channel # associated with condition.
245 * key - pointer to optional user-defined value provided as the "key"
246 * argument to xpc_send_notify().
247 *
248 * A reason code of xpMsgDelivered indicates that the message was delivered
249 * to the intended recipient and that they have acknowledged its receipt by
250 * calling xpc_received().
251 *
252 * All other reason codes indicate failure.
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700253 *
254 * NOTE: The user defined function must be callable by an interrupt handler
255 * and thus cannot block.
Dean Nelson65c17b82008-05-12 14:02:02 -0700256 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700257typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500258 int ch_number, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700259
260/*
261 * The following is a registration entry. There is a global array of these,
262 * one per channel. It is used to record the connection registration made
263 * by the users of XPC. As long as a registration entry exists, for any
264 * partition that comes up, XPC will attempt to establish a connection on
265 * that channel. Notification that a connection has been made will occur via
266 * the xpc_channel_func function.
267 *
268 * The 'func' field points to the function to call when aynchronous
269 * notification is required for such events as: a connection established/lost,
Dean Nelsone54af722005-10-25 14:07:43 -0500270 * or an incoming message received, or an error condition encountered. A
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700271 * non-NULL 'func' field indicates that there is an active registration for
272 * the channel.
273 */
274struct xpc_registration {
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500275 struct mutex mutex;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500276 xpc_channel_func func; /* function to call */
277 void *key; /* pointer to user's key */
278 u16 nentries; /* #of msg entries in local msg queue */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700279 u16 entry_size; /* message queue's message entry size */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500280 u32 assigned_limit; /* limit on #of assigned kthreads */
281 u32 idle_limit; /* limit on #of idle kthreads */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700282} ____cacheline_aligned;
283
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700284#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
285
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700286/* the following are valid xpc_send() or xpc_send_notify() flags */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500287#define XPC_WAIT 0 /* wait flag */
288#define XPC_NOWAIT 1 /* no wait flag */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700289
290struct xpc_interface {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500291 void (*connect) (int);
292 void (*disconnect) (int);
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700293 enum xp_retval (*send) (short, int, u32, void *, u16);
294 enum xp_retval (*send_notify) (short, int, u32, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500295 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700296 void (*received) (short, int, void *);
297 enum xp_retval (*partid_to_nasids) (short, void *);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700298};
299
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700300extern struct xpc_interface xpc_interface;
301
302extern void xpc_set_interface(void (*)(int),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500303 void (*)(int),
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700304 enum xp_retval (*)(short, int, u32, void *, u16),
305 enum xp_retval (*)(short, int, u32, void *, u16,
306 xpc_notify_func, void *),
Dean Nelson64d032b2008-05-12 14:02:03 -0700307 void (*)(short, int, void *),
308 enum xp_retval (*)(short, void *));
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700309extern void xpc_clear_interface(void);
310
Dean Nelson65c17b82008-05-12 14:02:02 -0700311extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500312 u16, u32, u32);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700313extern void xpc_disconnect(int);
314
Dean Nelson65c17b82008-05-12 14:02:02 -0700315static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700316xpc_send(short partid, int ch_number, u32 flags, void *payload,
317 u16 payload_size)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700318{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700319 return xpc_interface.send(partid, ch_number, flags, payload,
320 payload_size);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700321}
322
Dean Nelson65c17b82008-05-12 14:02:02 -0700323static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700324xpc_send_notify(short partid, int ch_number, u32 flags, void *payload,
325 u16 payload_size, xpc_notify_func func, void *key)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700326{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700327 return xpc_interface.send_notify(partid, ch_number, flags, payload,
328 payload_size, func, key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700329}
330
331static inline void
Dean Nelson64d032b2008-05-12 14:02:03 -0700332xpc_received(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700333{
334 return xpc_interface.received(partid, ch_number, payload);
335}
336
Dean Nelson65c17b82008-05-12 14:02:02 -0700337static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700338xpc_partid_to_nasids(short partid, void *nasids)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700339{
340 return xpc_interface.partid_to_nasids(partid, nasids);
341}
342
Dean Nelsonbc63d382008-07-29 22:34:04 -0700343extern short xp_max_npartitions;
Dean Nelson261f3b42008-07-29 22:34:16 -0700344extern short xp_partition_id;
345extern u8 xp_region_size;
Dean Nelsonbc63d382008-07-29 22:34:04 -0700346
Dean Nelsona812dcc2008-07-29 22:34:16 -0700347extern unsigned long (*xp_pa) (void *);
348extern enum xp_retval (*xp_remote_memcpy) (unsigned long, const unsigned long,
349 size_t);
Dean Nelson261f3b42008-07-29 22:34:16 -0700350extern int (*xp_cpu_to_nasid) (int);
Dean Nelson6c1c3252008-11-05 17:27:22 -0600351extern enum xp_retval (*xp_expand_memprotect) (unsigned long, unsigned long);
352extern enum xp_retval (*xp_restrict_memprotect) (unsigned long, unsigned long);
Dean Nelson908787d2008-07-29 22:34:05 -0700353
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700354extern u64 xp_nofault_PIOR_target;
355extern int xp_nofault_PIOR(void *);
356extern int xp_error_PIOR(void);
357
Dean Nelsonbc63d382008-07-29 22:34:04 -0700358extern struct device *xp;
359extern enum xp_retval xp_init_sn2(void);
360extern enum xp_retval xp_init_uv(void);
361extern void xp_exit_sn2(void);
362extern void xp_exit_uv(void);
363
Dean Nelson45d9ca42008-04-22 14:46:56 -0500364#endif /* _DRIVERS_MISC_SGIXP_XP_H */