blob: c862cd4583cc93694747e191f5e3537e5767bfa5 [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
Dean Nelson1c004002009-02-09 10:25:20 -060018#if defined CONFIG_X86_UV || defined CONFIG_IA64_SGI_UV
Ingo Molnar5b221272009-01-21 11:30:07 +010019#include <asm/uv/uv.h>
Dean Nelson1c004002009-02-09 10:25:20 -060020#define is_uv() is_uv_system()
21#endif
Ingo Molnar5b221272009-01-21 11:30:07 +010022
Dean Nelson1c004002009-02-09 10:25:20 -060023#ifndef is_uv
24#define is_uv() 0
25#endif
26
27#if defined CONFIG_IA64
Dean Nelson261f3b42008-07-29 22:34:16 -070028#include <asm/sn/arch.h> /* defines is_shub1() and is_shub2() */
29#define is_shub() ia64_platform_is("sn2")
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070030#endif
31
Dean Nelson355c54d2008-07-29 22:34:02 -070032#ifndef is_shub1
33#define is_shub1() 0
34#endif
35
36#ifndef is_shub2
37#define is_shub2() 0
38#endif
39
40#ifndef is_shub
Dean Nelson261f3b42008-07-29 22:34:16 -070041#define is_shub() 0
Dean Nelson355c54d2008-07-29 22:34:02 -070042#endif
43
Dean Nelson261f3b42008-07-29 22:34:16 -070044#ifdef USE_DBUG_ON
45#define DBUG_ON(condition) BUG_ON(condition)
46#else
47#define DBUG_ON(condition)
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/*
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070065 * XPC establishes channel connections between the local partition and any
66 * other partition that is currently up. Over these channels, kernel-level
67 * `users' can communicate with their counterparts on the other partitions.
68 *
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070069 * If the need for additional channels arises, one can simply increase
Dean Nelsonbc63d382008-07-29 22:34:04 -070070 * XPC_MAX_NCHANNELS accordingly. If the day should come where that number
71 * exceeds the absolute MAXIMUM number of channels possible (eight), then one
72 * will need to make changes to the XPC code to accommodate for this.
73 *
Dean Nelsonea57f802008-07-29 22:34:14 -070074 * The absolute maximum number of channels possible is limited to eight for
75 * performance reasons on sn2 hardware. The internal cross partition structures
Dean Nelsonbc63d382008-07-29 22:34:04 -070076 * require sixteen bytes per channel, and eight allows all of this
77 * interface-shared info to fit in one 128-byte cacheline.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070078 */
79#define XPC_MEM_CHANNEL 0 /* memory channel number */
80#define XPC_NET_CHANNEL 1 /* network channel number */
81
Dean Nelsonbc63d382008-07-29 22:34:04 -070082#define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070083
Dean Nelsonbc63d382008-07-29 22:34:04 -070084#if XPC_MAX_NCHANNELS > 8
85#error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070086#endif
87
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070088/*
Dean Nelsonbd3e64c2008-07-29 22:34:19 -070089 * Define macro, XPC_MSG_SIZE(), is provided for the user
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070090 * that wants to fit as many msg entries as possible in a given memory size
91 * (e.g. a memory page).
92 */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -070093#define XPC_MSG_MAX_SIZE 128
94#define XPC_MSG_HDR_MAX_SIZE 16
95#define XPC_MSG_PAYLOAD_MAX_SIZE (XPC_MSG_MAX_SIZE - XPC_MSG_HDR_MAX_SIZE)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070096
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070097#define XPC_MSG_SIZE(_payload_size) \
Dean Nelsonbd3e64c2008-07-29 22:34:19 -070098 ALIGN(XPC_MSG_HDR_MAX_SIZE + (_payload_size), \
99 is_uv() ? 64 : 128)
100
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700101
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700102/*
103 * Define the return values and values passed to user's callout functions.
104 * (It is important to add new value codes at the end just preceding
Dean Nelson65c17b82008-05-12 14:02:02 -0700105 * xpUnknownReason, which must have the highest numerical value.)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700106 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700107enum xp_retval {
108 xpSuccess = 0,
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700109
Dean Nelson65c17b82008-05-12 14:02:02 -0700110 xpNotConnected, /* 1: channel is not connected */
111 xpConnected, /* 2: channel connected (opened) */
112 xpRETIRED1, /* 3: (formerly xpDisconnected) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700113
Dean Nelson65c17b82008-05-12 14:02:02 -0700114 xpMsgReceived, /* 4: message received */
115 xpMsgDelivered, /* 5: message delivered and acknowledged */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700116
Dean Nelson65c17b82008-05-12 14:02:02 -0700117 xpRETIRED2, /* 6: (formerly xpTransferFailed) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700118
Dean Nelson65c17b82008-05-12 14:02:02 -0700119 xpNoWait, /* 7: operation would require wait */
120 xpRetry, /* 8: retry operation */
121 xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */
122 xpInterrupted, /* 10: interrupted wait */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700123
Dean Nelson65c17b82008-05-12 14:02:02 -0700124 xpUnequalMsgSizes, /* 11: message size disparity between sides */
125 xpInvalidAddress, /* 12: invalid address */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700126
Dean Nelson65c17b82008-05-12 14:02:02 -0700127 xpNoMemory, /* 13: no memory available for XPC structures */
128 xpLackOfResources, /* 14: insufficient resources for operation */
129 xpUnregistered, /* 15: channel is not registered */
130 xpAlreadyRegistered, /* 16: channel is already registered */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700131
Dean Nelson65c17b82008-05-12 14:02:02 -0700132 xpPartitionDown, /* 17: remote partition is down */
133 xpNotLoaded, /* 18: XPC module is not loaded */
134 xpUnloading, /* 19: this side is unloading XPC module */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700135
Dean Nelson65c17b82008-05-12 14:02:02 -0700136 xpBadMagic, /* 20: XPC MAGIC string not found */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700137
Dean Nelson65c17b82008-05-12 14:02:02 -0700138 xpReactivating, /* 21: remote partition was reactivated */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700139
Dean Nelson65c17b82008-05-12 14:02:02 -0700140 xpUnregistering, /* 22: this side is unregistering channel */
141 xpOtherUnregistering, /* 23: other side is unregistering channel */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700142
Dean Nelson65c17b82008-05-12 14:02:02 -0700143 xpCloneKThread, /* 24: cloning kernel thread */
144 xpCloneKThreadFailed, /* 25: cloning kernel thread failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700145
Dean Nelson65c17b82008-05-12 14:02:02 -0700146 xpNoHeartbeat, /* 26: remote partition has no heartbeat */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700147
Dean Nelson65c17b82008-05-12 14:02:02 -0700148 xpPioReadError, /* 27: PIO read error */
149 xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700150
Dean Nelson65c17b82008-05-12 14:02:02 -0700151 xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */
152 xpRETIRED4, /* 30: (formerly xpBtePoisonError) */
153 xpRETIRED5, /* 31: (formerly xpBteWriteError) */
154 xpRETIRED6, /* 32: (formerly xpBteAccessError) */
155 xpRETIRED7, /* 33: (formerly xpBtePWriteError) */
156 xpRETIRED8, /* 34: (formerly xpBtePReadError) */
157 xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */
158 xpRETIRED10, /* 36: (formerly xpBteXtalkError) */
159 xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */
160 xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700161
Dean Nelson65c17b82008-05-12 14:02:02 -0700162 xpBadVersion, /* 39: bad version number */
163 xpVarsNotSet, /* 40: the XPC variables are not set up */
164 xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */
165 xpInvalidPartid, /* 42: invalid partition ID */
166 xpLocalPartid, /* 43: local partition ID */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700167
Dean Nelson65c17b82008-05-12 14:02:02 -0700168 xpOtherGoingDown, /* 44: other side going down, reason unknown */
169 xpSystemGoingDown, /* 45: system is going down, reason unknown */
170 xpSystemHalt, /* 46: system is being halted */
171 xpSystemReboot, /* 47: system is being rebooted */
172 xpSystemPoweroff, /* 48: system is being powered off */
Dean Nelsona607c382005-09-01 14:01:37 -0500173
Dean Nelson65c17b82008-05-12 14:02:02 -0700174 xpDisconnecting, /* 49: channel disconnecting (closing) */
Dean Nelsona607c382005-09-01 14:01:37 -0500175
Dean Nelson65c17b82008-05-12 14:02:02 -0700176 xpOpenCloseError, /* 50: channel open/close protocol error */
Dean Nelsone54af722005-10-25 14:07:43 -0500177
Dean Nelson65c17b82008-05-12 14:02:02 -0700178 xpDisconnected, /* 51: channel disconnected (closed) */
Dean Nelson246c7e32005-12-22 14:32:56 -0600179
Dean Nelson65c17b82008-05-12 14:02:02 -0700180 xpBteCopyError, /* 52: bte_copy() returned error */
Dean Nelsonda970522008-07-29 22:34:03 -0700181 xpSalError, /* 53: sn SAL error */
Dean Nelson94bd2702008-07-29 22:34:05 -0700182 xpRsvdPageNotSet, /* 54: the reserved page is not set up */
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700183 xpPayloadTooBig, /* 55: payload too large for message slot */
Russ Anderson64135fa2007-08-21 16:45:12 -0500184
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700185 xpUnsupported, /* 56: unsupported functionality or resource */
Dean Nelson261f3b42008-07-29 22:34:16 -0700186 xpNeedMoreInfo, /* 57: more info is needed by SAL */
187
Dean Nelsona812dcc2008-07-29 22:34:16 -0700188 xpGruCopyError, /* 58: gru_copy_gru() returned error */
Dean Nelson5b8669d2008-07-29 22:34:18 -0700189 xpGruSendMqError, /* 59: gru send message queue related error */
Dean Nelsona812dcc2008-07-29 22:34:16 -0700190
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700191 xpBadChannelNumber, /* 60: invalid channel number */
Dean Nelson6c1c3252008-11-05 17:27:22 -0600192 xpBadMsgType, /* 61: invalid message type */
193 xpBiosError, /* 62: BIOS error */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700194
Dean Nelson6c1c3252008-11-05 17:27:22 -0600195 xpUnknownReason /* 63: unknown reason - must be last in enum */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700196};
197
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700198/*
Dean Nelson65c17b82008-05-12 14:02:02 -0700199 * Define the callout function type used by XPC to update the user on
200 * connection activity and state changes via the user function registered
201 * by xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700202 *
203 * Arguments:
204 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700205 * reason - reason code.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700206 * partid - partition ID associated with condition.
207 * ch_number - channel # associated with condition.
Dean Nelson65c17b82008-05-12 14:02:02 -0700208 * data - pointer to optional data.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700209 * key - pointer to optional user-defined value provided as the "key"
Dean Nelson65c17b82008-05-12 14:02:02 -0700210 * argument to xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700211 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700212 * A reason code of xpConnected indicates that a connection has been
213 * established to the specified partition on the specified channel. The data
214 * argument indicates the max number of entries allowed in the message queue.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700215 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700216 * A reason code of xpMsgReceived indicates that a XPC message arrived from
217 * the specified partition on the specified channel. The data argument
218 * specifies the address of the message's payload. The user must call
219 * xpc_received() when finished with the payload.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700220 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700221 * All other reason codes indicate failure. The data argmument is NULL.
222 * When a failure reason code is received, one can assume that the channel
223 * is not connected.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700224 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700225typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500226 int ch_number, void *data, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700227
Dean Nelson65c17b82008-05-12 14:02:02 -0700228/*
229 * Define the callout function type used by XPC to notify the user of
230 * messages received and delivered via the user function registered by
231 * xpc_send_notify().
232 *
233 * Arguments:
234 *
235 * reason - reason code.
236 * partid - partition ID associated with condition.
237 * ch_number - channel # associated with condition.
238 * key - pointer to optional user-defined value provided as the "key"
239 * argument to xpc_send_notify().
240 *
241 * A reason code of xpMsgDelivered indicates that the message was delivered
242 * to the intended recipient and that they have acknowledged its receipt by
243 * calling xpc_received().
244 *
245 * All other reason codes indicate failure.
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700246 *
247 * NOTE: The user defined function must be callable by an interrupt handler
248 * and thus cannot block.
Dean Nelson65c17b82008-05-12 14:02:02 -0700249 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700250typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500251 int ch_number, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700252
253/*
254 * The following is a registration entry. There is a global array of these,
255 * one per channel. It is used to record the connection registration made
256 * by the users of XPC. As long as a registration entry exists, for any
257 * partition that comes up, XPC will attempt to establish a connection on
258 * that channel. Notification that a connection has been made will occur via
259 * the xpc_channel_func function.
260 *
261 * The 'func' field points to the function to call when aynchronous
262 * notification is required for such events as: a connection established/lost,
Dean Nelsone54af722005-10-25 14:07:43 -0500263 * or an incoming message received, or an error condition encountered. A
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700264 * non-NULL 'func' field indicates that there is an active registration for
265 * the channel.
266 */
267struct xpc_registration {
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500268 struct mutex mutex;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500269 xpc_channel_func func; /* function to call */
270 void *key; /* pointer to user's key */
271 u16 nentries; /* #of msg entries in local msg queue */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700272 u16 entry_size; /* message queue's message entry size */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500273 u32 assigned_limit; /* limit on #of assigned kthreads */
274 u32 idle_limit; /* limit on #of idle kthreads */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700275} ____cacheline_aligned;
276
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700277#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
278
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700279/* the following are valid xpc_send() or xpc_send_notify() flags */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500280#define XPC_WAIT 0 /* wait flag */
281#define XPC_NOWAIT 1 /* no wait flag */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700282
283struct xpc_interface {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500284 void (*connect) (int);
285 void (*disconnect) (int);
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700286 enum xp_retval (*send) (short, int, u32, void *, u16);
287 enum xp_retval (*send_notify) (short, int, u32, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500288 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700289 void (*received) (short, int, void *);
290 enum xp_retval (*partid_to_nasids) (short, void *);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700291};
292
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700293extern struct xpc_interface xpc_interface;
294
295extern void xpc_set_interface(void (*)(int),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500296 void (*)(int),
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700297 enum xp_retval (*)(short, int, u32, void *, u16),
298 enum xp_retval (*)(short, int, u32, void *, u16,
299 xpc_notify_func, void *),
Dean Nelson64d032b2008-05-12 14:02:03 -0700300 void (*)(short, int, void *),
301 enum xp_retval (*)(short, void *));
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700302extern void xpc_clear_interface(void);
303
Dean Nelson65c17b82008-05-12 14:02:02 -0700304extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500305 u16, u32, u32);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700306extern void xpc_disconnect(int);
307
Dean Nelson65c17b82008-05-12 14:02:02 -0700308static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700309xpc_send(short partid, int ch_number, u32 flags, void *payload,
310 u16 payload_size)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700311{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700312 return xpc_interface.send(partid, ch_number, flags, payload,
313 payload_size);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700314}
315
Dean Nelson65c17b82008-05-12 14:02:02 -0700316static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700317xpc_send_notify(short partid, int ch_number, u32 flags, void *payload,
318 u16 payload_size, xpc_notify_func func, void *key)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700319{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700320 return xpc_interface.send_notify(partid, ch_number, flags, payload,
321 payload_size, func, key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700322}
323
324static inline void
Dean Nelson64d032b2008-05-12 14:02:03 -0700325xpc_received(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700326{
327 return xpc_interface.received(partid, ch_number, payload);
328}
329
Dean Nelson65c17b82008-05-12 14:02:02 -0700330static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700331xpc_partid_to_nasids(short partid, void *nasids)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700332{
333 return xpc_interface.partid_to_nasids(partid, nasids);
334}
335
Dean Nelsonbc63d382008-07-29 22:34:04 -0700336extern short xp_max_npartitions;
Dean Nelson261f3b42008-07-29 22:34:16 -0700337extern short xp_partition_id;
338extern u8 xp_region_size;
Dean Nelsonbc63d382008-07-29 22:34:04 -0700339
Dean Nelsona812dcc2008-07-29 22:34:16 -0700340extern unsigned long (*xp_pa) (void *);
Robin Holt68212892009-12-15 16:47:53 -0800341extern unsigned long (*xp_socket_pa) (unsigned long);
Dean Nelsona812dcc2008-07-29 22:34:16 -0700342extern enum xp_retval (*xp_remote_memcpy) (unsigned long, const unsigned long,
343 size_t);
Dean Nelson261f3b42008-07-29 22:34:16 -0700344extern int (*xp_cpu_to_nasid) (int);
Dean Nelson6c1c3252008-11-05 17:27:22 -0600345extern enum xp_retval (*xp_expand_memprotect) (unsigned long, unsigned long);
346extern enum xp_retval (*xp_restrict_memprotect) (unsigned long, unsigned long);
Dean Nelson908787d2008-07-29 22:34:05 -0700347
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700348extern u64 xp_nofault_PIOR_target;
349extern int xp_nofault_PIOR(void *);
350extern int xp_error_PIOR(void);
351
Dean Nelsonbc63d382008-07-29 22:34:04 -0700352extern struct device *xp;
353extern enum xp_retval xp_init_sn2(void);
354extern enum xp_retval xp_init_uv(void);
355extern void xp_exit_sn2(void);
356extern void xp_exit_uv(void);
357
Dean Nelson45d9ca42008-04-22 14:46:56 -0500358#endif /* _DRIVERS_MISC_SGIXP_XP_H */