blob: 851b2f25ce0ee7120ca8b000807f87f1cef34853 [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/system.h>
29#include <asm/sn/arch.h> /* defines is_shub1() and is_shub2() */
30#define is_shub() ia64_platform_is("sn2")
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070031#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
Dean Nelson261f3b42008-07-29 22:34:16 -070042#define is_shub() 0
Dean Nelson355c54d2008-07-29 22:34:02 -070043#endif
44
Dean Nelson261f3b42008-07-29 22:34:16 -070045#ifdef USE_DBUG_ON
46#define DBUG_ON(condition) BUG_ON(condition)
47#else
48#define DBUG_ON(condition)
49#endif
50
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070051/*
Dean Nelsonbc63d382008-07-29 22:34:04 -070052 * Define the maximum number of partitions the system can possibly support.
53 * It is based on the maximum number of hardware partitionable regions. The
54 * term 'region' in this context refers to the minimum number of nodes that
55 * can comprise an access protection grouping. The access protection is in
56 * regards to memory, IPI and IOI.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070057 *
58 * The maximum number of hardware partitionable regions is equal to the
59 * maximum number of nodes in the entire system divided by the minimum number
60 * of nodes that comprise an access protection grouping.
61 */
Dean Nelsonbc63d382008-07-29 22:34:04 -070062#define XP_MAX_NPARTITIONS_SN2 64
63#define XP_MAX_NPARTITIONS_UV 256
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070064
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070065/*
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070066 * XPC establishes channel connections between the local partition and any
67 * other partition that is currently up. Over these channels, kernel-level
68 * `users' can communicate with their counterparts on the other partitions.
69 *
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070070 * If the need for additional channels arises, one can simply increase
Dean Nelsonbc63d382008-07-29 22:34:04 -070071 * XPC_MAX_NCHANNELS accordingly. If the day should come where that number
72 * exceeds the absolute MAXIMUM number of channels possible (eight), then one
73 * will need to make changes to the XPC code to accommodate for this.
74 *
Dean Nelsonea57f802008-07-29 22:34:14 -070075 * The absolute maximum number of channels possible is limited to eight for
76 * performance reasons on sn2 hardware. The internal cross partition structures
Dean Nelsonbc63d382008-07-29 22:34:04 -070077 * require sixteen bytes per channel, and eight allows all of this
78 * interface-shared info to fit in one 128-byte cacheline.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070079 */
80#define XPC_MEM_CHANNEL 0 /* memory channel number */
81#define XPC_NET_CHANNEL 1 /* network channel number */
82
Dean Nelsonbc63d382008-07-29 22:34:04 -070083#define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070084
Dean Nelsonbc63d382008-07-29 22:34:04 -070085#if XPC_MAX_NCHANNELS > 8
86#error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070087#endif
88
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070089/*
Dean Nelsonbd3e64c2008-07-29 22:34:19 -070090 * Define macro, XPC_MSG_SIZE(), is provided for the user
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070091 * that wants to fit as many msg entries as possible in a given memory size
92 * (e.g. a memory page).
93 */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -070094#define XPC_MSG_MAX_SIZE 128
95#define XPC_MSG_HDR_MAX_SIZE 16
96#define XPC_MSG_PAYLOAD_MAX_SIZE (XPC_MSG_MAX_SIZE - XPC_MSG_HDR_MAX_SIZE)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070097
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070098#define XPC_MSG_SIZE(_payload_size) \
Dean Nelsonbd3e64c2008-07-29 22:34:19 -070099 ALIGN(XPC_MSG_HDR_MAX_SIZE + (_payload_size), \
100 is_uv() ? 64 : 128)
101
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700102
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700103/*
104 * Define the return values and values passed to user's callout functions.
105 * (It is important to add new value codes at the end just preceding
Dean Nelson65c17b82008-05-12 14:02:02 -0700106 * xpUnknownReason, which must have the highest numerical value.)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700107 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700108enum xp_retval {
109 xpSuccess = 0,
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700110
Dean Nelson65c17b82008-05-12 14:02:02 -0700111 xpNotConnected, /* 1: channel is not connected */
112 xpConnected, /* 2: channel connected (opened) */
113 xpRETIRED1, /* 3: (formerly xpDisconnected) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700114
Dean Nelson65c17b82008-05-12 14:02:02 -0700115 xpMsgReceived, /* 4: message received */
116 xpMsgDelivered, /* 5: message delivered and acknowledged */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700117
Dean Nelson65c17b82008-05-12 14:02:02 -0700118 xpRETIRED2, /* 6: (formerly xpTransferFailed) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700119
Dean Nelson65c17b82008-05-12 14:02:02 -0700120 xpNoWait, /* 7: operation would require wait */
121 xpRetry, /* 8: retry operation */
122 xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */
123 xpInterrupted, /* 10: interrupted wait */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700124
Dean Nelson65c17b82008-05-12 14:02:02 -0700125 xpUnequalMsgSizes, /* 11: message size disparity between sides */
126 xpInvalidAddress, /* 12: invalid address */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700127
Dean Nelson65c17b82008-05-12 14:02:02 -0700128 xpNoMemory, /* 13: no memory available for XPC structures */
129 xpLackOfResources, /* 14: insufficient resources for operation */
130 xpUnregistered, /* 15: channel is not registered */
131 xpAlreadyRegistered, /* 16: channel is already registered */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700132
Dean Nelson65c17b82008-05-12 14:02:02 -0700133 xpPartitionDown, /* 17: remote partition is down */
134 xpNotLoaded, /* 18: XPC module is not loaded */
135 xpUnloading, /* 19: this side is unloading XPC module */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700136
Dean Nelson65c17b82008-05-12 14:02:02 -0700137 xpBadMagic, /* 20: XPC MAGIC string not found */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700138
Dean Nelson65c17b82008-05-12 14:02:02 -0700139 xpReactivating, /* 21: remote partition was reactivated */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700140
Dean Nelson65c17b82008-05-12 14:02:02 -0700141 xpUnregistering, /* 22: this side is unregistering channel */
142 xpOtherUnregistering, /* 23: other side is unregistering channel */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700143
Dean Nelson65c17b82008-05-12 14:02:02 -0700144 xpCloneKThread, /* 24: cloning kernel thread */
145 xpCloneKThreadFailed, /* 25: cloning kernel thread failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700146
Dean Nelson65c17b82008-05-12 14:02:02 -0700147 xpNoHeartbeat, /* 26: remote partition has no heartbeat */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700148
Dean Nelson65c17b82008-05-12 14:02:02 -0700149 xpPioReadError, /* 27: PIO read error */
150 xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700151
Dean Nelson65c17b82008-05-12 14:02:02 -0700152 xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */
153 xpRETIRED4, /* 30: (formerly xpBtePoisonError) */
154 xpRETIRED5, /* 31: (formerly xpBteWriteError) */
155 xpRETIRED6, /* 32: (formerly xpBteAccessError) */
156 xpRETIRED7, /* 33: (formerly xpBtePWriteError) */
157 xpRETIRED8, /* 34: (formerly xpBtePReadError) */
158 xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */
159 xpRETIRED10, /* 36: (formerly xpBteXtalkError) */
160 xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */
161 xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700162
Dean Nelson65c17b82008-05-12 14:02:02 -0700163 xpBadVersion, /* 39: bad version number */
164 xpVarsNotSet, /* 40: the XPC variables are not set up */
165 xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */
166 xpInvalidPartid, /* 42: invalid partition ID */
167 xpLocalPartid, /* 43: local partition ID */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700168
Dean Nelson65c17b82008-05-12 14:02:02 -0700169 xpOtherGoingDown, /* 44: other side going down, reason unknown */
170 xpSystemGoingDown, /* 45: system is going down, reason unknown */
171 xpSystemHalt, /* 46: system is being halted */
172 xpSystemReboot, /* 47: system is being rebooted */
173 xpSystemPoweroff, /* 48: system is being powered off */
Dean Nelsona607c382005-09-01 14:01:37 -0500174
Dean Nelson65c17b82008-05-12 14:02:02 -0700175 xpDisconnecting, /* 49: channel disconnecting (closing) */
Dean Nelsona607c382005-09-01 14:01:37 -0500176
Dean Nelson65c17b82008-05-12 14:02:02 -0700177 xpOpenCloseError, /* 50: channel open/close protocol error */
Dean Nelsone54af722005-10-25 14:07:43 -0500178
Dean Nelson65c17b82008-05-12 14:02:02 -0700179 xpDisconnected, /* 51: channel disconnected (closed) */
Dean Nelson246c7e32005-12-22 14:32:56 -0600180
Dean Nelson65c17b82008-05-12 14:02:02 -0700181 xpBteCopyError, /* 52: bte_copy() returned error */
Dean Nelsonda970522008-07-29 22:34:03 -0700182 xpSalError, /* 53: sn SAL error */
Dean Nelson94bd2702008-07-29 22:34:05 -0700183 xpRsvdPageNotSet, /* 54: the reserved page is not set up */
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700184 xpPayloadTooBig, /* 55: payload too large for message slot */
Russ Anderson64135fa2007-08-21 16:45:12 -0500185
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700186 xpUnsupported, /* 56: unsupported functionality or resource */
Dean Nelson261f3b42008-07-29 22:34:16 -0700187 xpNeedMoreInfo, /* 57: more info is needed by SAL */
188
Dean Nelsona812dcc2008-07-29 22:34:16 -0700189 xpGruCopyError, /* 58: gru_copy_gru() returned error */
Dean Nelson5b8669d2008-07-29 22:34:18 -0700190 xpGruSendMqError, /* 59: gru send message queue related error */
Dean Nelsona812dcc2008-07-29 22:34:16 -0700191
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700192 xpBadChannelNumber, /* 60: invalid channel number */
Dean Nelson6c1c3252008-11-05 17:27:22 -0600193 xpBadMsgType, /* 61: invalid message type */
194 xpBiosError, /* 62: BIOS error */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700195
Dean Nelson6c1c3252008-11-05 17:27:22 -0600196 xpUnknownReason /* 63: unknown reason - must be last in enum */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700197};
198
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700199/*
Dean Nelson65c17b82008-05-12 14:02:02 -0700200 * Define the callout function type used by XPC to update the user on
201 * connection activity and state changes via the user function registered
202 * by xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700203 *
204 * Arguments:
205 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700206 * reason - reason code.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700207 * partid - partition ID associated with condition.
208 * ch_number - channel # associated with condition.
Dean Nelson65c17b82008-05-12 14:02:02 -0700209 * data - pointer to optional data.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700210 * key - pointer to optional user-defined value provided as the "key"
Dean Nelson65c17b82008-05-12 14:02:02 -0700211 * argument to xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700212 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700213 * A reason code of xpConnected indicates that a connection has been
214 * established to the specified partition on the specified channel. The data
215 * argument indicates the max number of entries allowed in the message queue.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700216 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700217 * A reason code of xpMsgReceived indicates that a XPC message arrived from
218 * the specified partition on the specified channel. The data argument
219 * specifies the address of the message's payload. The user must call
220 * xpc_received() when finished with the payload.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700221 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700222 * All other reason codes indicate failure. The data argmument is NULL.
223 * When a failure reason code is received, one can assume that the channel
224 * is not connected.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700225 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700226typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500227 int ch_number, void *data, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700228
Dean Nelson65c17b82008-05-12 14:02:02 -0700229/*
230 * Define the callout function type used by XPC to notify the user of
231 * messages received and delivered via the user function registered by
232 * xpc_send_notify().
233 *
234 * Arguments:
235 *
236 * reason - reason code.
237 * partid - partition ID associated with condition.
238 * ch_number - channel # associated with condition.
239 * key - pointer to optional user-defined value provided as the "key"
240 * argument to xpc_send_notify().
241 *
242 * A reason code of xpMsgDelivered indicates that the message was delivered
243 * to the intended recipient and that they have acknowledged its receipt by
244 * calling xpc_received().
245 *
246 * All other reason codes indicate failure.
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700247 *
248 * NOTE: The user defined function must be callable by an interrupt handler
249 * and thus cannot block.
Dean Nelson65c17b82008-05-12 14:02:02 -0700250 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700251typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500252 int ch_number, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700253
254/*
255 * The following is a registration entry. There is a global array of these,
256 * one per channel. It is used to record the connection registration made
257 * by the users of XPC. As long as a registration entry exists, for any
258 * partition that comes up, XPC will attempt to establish a connection on
259 * that channel. Notification that a connection has been made will occur via
260 * the xpc_channel_func function.
261 *
262 * The 'func' field points to the function to call when aynchronous
263 * notification is required for such events as: a connection established/lost,
Dean Nelsone54af722005-10-25 14:07:43 -0500264 * or an incoming message received, or an error condition encountered. A
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700265 * non-NULL 'func' field indicates that there is an active registration for
266 * the channel.
267 */
268struct xpc_registration {
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500269 struct mutex mutex;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500270 xpc_channel_func func; /* function to call */
271 void *key; /* pointer to user's key */
272 u16 nentries; /* #of msg entries in local msg queue */
Dean Nelsonbd3e64c2008-07-29 22:34:19 -0700273 u16 entry_size; /* message queue's message entry size */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500274 u32 assigned_limit; /* limit on #of assigned kthreads */
275 u32 idle_limit; /* limit on #of idle kthreads */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700276} ____cacheline_aligned;
277
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700278#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
279
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700280/* the following are valid xpc_send() or xpc_send_notify() flags */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500281#define XPC_WAIT 0 /* wait flag */
282#define XPC_NOWAIT 1 /* no wait flag */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700283
284struct xpc_interface {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500285 void (*connect) (int);
286 void (*disconnect) (int);
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700287 enum xp_retval (*send) (short, int, u32, void *, u16);
288 enum xp_retval (*send_notify) (short, int, u32, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500289 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700290 void (*received) (short, int, void *);
291 enum xp_retval (*partid_to_nasids) (short, void *);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700292};
293
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700294extern struct xpc_interface xpc_interface;
295
296extern void xpc_set_interface(void (*)(int),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500297 void (*)(int),
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700298 enum xp_retval (*)(short, int, u32, void *, u16),
299 enum xp_retval (*)(short, int, u32, void *, u16,
300 xpc_notify_func, void *),
Dean Nelson64d032b2008-05-12 14:02:03 -0700301 void (*)(short, int, void *),
302 enum xp_retval (*)(short, void *));
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700303extern void xpc_clear_interface(void);
304
Dean Nelson65c17b82008-05-12 14:02:02 -0700305extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500306 u16, u32, u32);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700307extern void xpc_disconnect(int);
308
Dean Nelson65c17b82008-05-12 14:02:02 -0700309static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700310xpc_send(short partid, int ch_number, u32 flags, void *payload,
311 u16 payload_size)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700312{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700313 return xpc_interface.send(partid, ch_number, flags, payload,
314 payload_size);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700315}
316
Dean Nelson65c17b82008-05-12 14:02:02 -0700317static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700318xpc_send_notify(short partid, int ch_number, u32 flags, void *payload,
319 u16 payload_size, xpc_notify_func func, void *key)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700320{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700321 return xpc_interface.send_notify(partid, ch_number, flags, payload,
322 payload_size, func, key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700323}
324
325static inline void
Dean Nelson64d032b2008-05-12 14:02:03 -0700326xpc_received(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700327{
328 return xpc_interface.received(partid, ch_number, payload);
329}
330
Dean Nelson65c17b82008-05-12 14:02:02 -0700331static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700332xpc_partid_to_nasids(short partid, void *nasids)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700333{
334 return xpc_interface.partid_to_nasids(partid, nasids);
335}
336
Dean Nelsonbc63d382008-07-29 22:34:04 -0700337extern short xp_max_npartitions;
Dean Nelson261f3b42008-07-29 22:34:16 -0700338extern short xp_partition_id;
339extern u8 xp_region_size;
Dean Nelsonbc63d382008-07-29 22:34:04 -0700340
Dean Nelsona812dcc2008-07-29 22:34:16 -0700341extern unsigned long (*xp_pa) (void *);
Robin Holt68212892009-12-15 16:47:53 -0800342extern unsigned long (*xp_socket_pa) (unsigned long);
Dean Nelsona812dcc2008-07-29 22:34:16 -0700343extern enum xp_retval (*xp_remote_memcpy) (unsigned long, const unsigned long,
344 size_t);
Dean Nelson261f3b42008-07-29 22:34:16 -0700345extern int (*xp_cpu_to_nasid) (int);
Dean Nelson6c1c3252008-11-05 17:27:22 -0600346extern enum xp_retval (*xp_expand_memprotect) (unsigned long, unsigned long);
347extern enum xp_retval (*xp_restrict_memprotect) (unsigned long, unsigned long);
Dean Nelson908787d2008-07-29 22:34:05 -0700348
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700349extern u64 xp_nofault_PIOR_target;
350extern int xp_nofault_PIOR(void *);
351extern int xp_error_PIOR(void);
352
Dean Nelsonbc63d382008-07-29 22:34:04 -0700353extern struct device *xp;
354extern enum xp_retval xp_init_sn2(void);
355extern enum xp_retval xp_init_uv(void);
356extern void xp_exit_sn2(void);
357extern void xp_exit_uv(void);
358
Dean Nelson45d9ca42008-04-22 14:46:56 -0500359#endif /* _DRIVERS_MISC_SGIXP_XP_H */