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
6 * Copyright (C) 2004-2008 Silicon Graphics, Inc. All rights reserved.
10 * External Cross Partition (XP) structures and defines.
13 #ifndef _DRIVERS_MISC_SGIXP_XP_H
14 #define _DRIVERS_MISC_SGIXP_XP_H
16 #include <linux/mutex.h>
18 #include <asm/uv/uv.h>
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")
24 #ifdef CONFIG_IA64_SGI_UV
25 #define is_uv() ia64_platform_is("uv")
31 #include <asm/genapic.h>
32 #define is_uv() is_uv_system()
52 #define DBUG_ON(condition) BUG_ON(condition)
54 #define DBUG_ON(condition)
58 * 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.
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.
68 #define XP_MAX_NPARTITIONS_SN2 64
69 #define XP_MAX_NPARTITIONS_UV 256
72 * 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.
76 * If the need for additional channels arises, one can simply increase
77 * 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.
81 * The absolute maximum number of channels possible is limited to eight for
82 * performance reasons on sn2 hardware. The internal cross partition structures
83 * require sixteen bytes per channel, and eight allows all of this
84 * interface-shared info to fit in one 128-byte cacheline.
86 #define XPC_MEM_CHANNEL 0 /* memory channel number */
87 #define XPC_NET_CHANNEL 1 /* network channel number */
89 #define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */
91 #if XPC_MAX_NCHANNELS > 8
92 #error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.
96 * Define macro, XPC_MSG_SIZE(), is provided for the user
97 * that wants to fit as many msg entries as possible in a given memory size
98 * (e.g. a memory page).
100 #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)
104 #define XPC_MSG_SIZE(_payload_size) \
105 ALIGN(XPC_MSG_HDR_MAX_SIZE + (_payload_size), \
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
112 * xpUnknownReason, which must have the highest numerical value.)
117 xpNotConnected
, /* 1: channel is not connected */
118 xpConnected
, /* 2: channel connected (opened) */
119 xpRETIRED1
, /* 3: (formerly xpDisconnected) */
121 xpMsgReceived
, /* 4: message received */
122 xpMsgDelivered
, /* 5: message delivered and acknowledged */
124 xpRETIRED2
, /* 6: (formerly xpTransferFailed) */
126 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 */
131 xpUnequalMsgSizes
, /* 11: message size disparity between sides */
132 xpInvalidAddress
, /* 12: invalid address */
134 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 */
139 xpPartitionDown
, /* 17: remote partition is down */
140 xpNotLoaded
, /* 18: XPC module is not loaded */
141 xpUnloading
, /* 19: this side is unloading XPC module */
143 xpBadMagic
, /* 20: XPC MAGIC string not found */
145 xpReactivating
, /* 21: remote partition was reactivated */
147 xpUnregistering
, /* 22: this side is unregistering channel */
148 xpOtherUnregistering
, /* 23: other side is unregistering channel */
150 xpCloneKThread
, /* 24: cloning kernel thread */
151 xpCloneKThreadFailed
, /* 25: cloning kernel thread failed */
153 xpNoHeartbeat
, /* 26: remote partition has no heartbeat */
155 xpPioReadError
, /* 27: PIO read error */
156 xpPhysAddrRegFailed
, /* 28: registration of phys addr range failed */
158 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) */
169 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 */
175 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 */
181 xpDisconnecting
, /* 49: channel disconnecting (closing) */
183 xpOpenCloseError
, /* 50: channel open/close protocol error */
185 xpDisconnected
, /* 51: channel disconnected (closed) */
187 xpBteCopyError
, /* 52: bte_copy() returned error */
188 xpSalError
, /* 53: sn SAL error */
189 xpRsvdPageNotSet
, /* 54: the reserved page is not set up */
190 xpPayloadTooBig
, /* 55: payload too large for message slot */
192 xpUnsupported
, /* 56: unsupported functionality or resource */
193 xpNeedMoreInfo
, /* 57: more info is needed by SAL */
195 xpGruCopyError
, /* 58: gru_copy_gru() returned error */
196 xpGruSendMqError
, /* 59: gru send message queue related error */
198 xpBadChannelNumber
, /* 60: invalid channel number */
199 xpBadMsgType
, /* 61: invalid message type */
200 xpBiosError
, /* 62: BIOS error */
202 xpUnknownReason
/* 63: unknown reason - must be last in enum */
206 * Define the callout function type used by XPC to update the user on
207 * connection activity and state changes via the user function registered
212 * reason - reason code.
213 * partid - partition ID associated with condition.
214 * ch_number - channel # associated with condition.
215 * data - pointer to optional data.
216 * key - pointer to optional user-defined value provided as the "key"
217 * argument to xpc_connect().
219 * 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.
223 * 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.
228 * 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
232 typedef void (*xpc_channel_func
) (enum xp_retval reason
, short partid
,
233 int ch_number
, void *data
, void *key
);
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
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().
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().
252 * All other reason codes indicate failure.
254 * NOTE: The user defined function must be callable by an interrupt handler
255 * and thus cannot block.
257 typedef void (*xpc_notify_func
) (enum xp_retval reason
, short partid
,
258 int ch_number
, void *key
);
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.
268 * The 'func' field points to the function to call when aynchronous
269 * notification is required for such events as: a connection established/lost,
270 * or an incoming message received, or an error condition encountered. A
271 * non-NULL 'func' field indicates that there is an active registration for
274 struct xpc_registration
{
276 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 */
279 u16 entry_size
; /* message queue's message entry size */
280 u32 assigned_limit
; /* limit on #of assigned kthreads */
281 u32 idle_limit
; /* limit on #of idle kthreads */
282 } ____cacheline_aligned
;
284 #define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
286 /* the following are valid xpc_send() or xpc_send_notify() flags */
287 #define XPC_WAIT 0 /* wait flag */
288 #define XPC_NOWAIT 1 /* no wait flag */
290 struct xpc_interface
{
291 void (*connect
) (int);
292 void (*disconnect
) (int);
293 enum xp_retval (*send
) (short, int, u32
, void *, u16
);
294 enum xp_retval (*send_notify
) (short, int, u32
, void *, u16
,
295 xpc_notify_func
, void *);
296 void (*received
) (short, int, void *);
297 enum xp_retval (*partid_to_nasids
) (short, void *);
300 extern struct xpc_interface xpc_interface
;
302 extern void xpc_set_interface(void (*)(int),
304 enum xp_retval (*)(short, int, u32
, void *, u16
),
305 enum xp_retval (*)(short, int, u32
, void *, u16
,
306 xpc_notify_func
, void *),
307 void (*)(short, int, void *),
308 enum xp_retval (*)(short, void *));
309 extern void xpc_clear_interface(void);
311 extern enum xp_retval
xpc_connect(int, xpc_channel_func
, void *, u16
,
313 extern void xpc_disconnect(int);
315 static inline enum xp_retval
316 xpc_send(short partid
, int ch_number
, u32 flags
, void *payload
,
319 return xpc_interface
.send(partid
, ch_number
, flags
, payload
,
323 static inline enum xp_retval
324 xpc_send_notify(short partid
, int ch_number
, u32 flags
, void *payload
,
325 u16 payload_size
, xpc_notify_func func
, void *key
)
327 return xpc_interface
.send_notify(partid
, ch_number
, flags
, payload
,
328 payload_size
, func
, key
);
332 xpc_received(short partid
, int ch_number
, void *payload
)
334 return xpc_interface
.received(partid
, ch_number
, payload
);
337 static inline enum xp_retval
338 xpc_partid_to_nasids(short partid
, void *nasids
)
340 return xpc_interface
.partid_to_nasids(partid
, nasids
);
343 extern short xp_max_npartitions
;
344 extern short xp_partition_id
;
345 extern u8 xp_region_size
;
347 extern unsigned long (*xp_pa
) (void *);
348 extern enum xp_retval (*xp_remote_memcpy
) (unsigned long, const unsigned long,
350 extern int (*xp_cpu_to_nasid
) (int);
351 extern enum xp_retval (*xp_expand_memprotect
) (unsigned long, unsigned long);
352 extern enum xp_retval (*xp_restrict_memprotect
) (unsigned long, unsigned long);
354 extern u64 xp_nofault_PIOR_target
;
355 extern int xp_nofault_PIOR(void *);
356 extern int xp_error_PIOR(void);
358 extern struct device
*xp
;
359 extern enum xp_retval
xp_init_sn2(void);
360 extern enum xp_retval
xp_init_uv(void);
361 extern void xp_exit_sn2(void);
362 extern void xp_exit_uv(void);
364 #endif /* _DRIVERS_MISC_SGIXP_XP_H */