blob: 0ca81f16646f24c5faa22774ca5a7a9ddfa6a762 [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>
Dean Nelsonbc63d382008-07-29 22:34:04 -070020#ifdef CONFIG_IA64
21#include <asm/sn/arch.h>
22#endif
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070023
Dean Nelsonea57f802008-07-29 22:34:14 -070024/* ??? Add this #define to some linux header file some day? */
Dean Nelson78ce1bb2008-07-29 22:34:03 -070025#define BYTES_PER_WORD sizeof(void *)
26
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070027#ifdef USE_DBUG_ON
28#define DBUG_ON(condition) BUG_ON(condition)
29#else
30#define DBUG_ON(condition)
31#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
42#define is_shub() (is_shub1() || is_shub2())
43#endif
44
45#ifndef is_uv
46#define is_uv() 0
47#endif
48
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070049/*
Dean Nelsonbc63d382008-07-29 22:34:04 -070050 * Define the maximum number of partitions the system can possibly support.
51 * It is based on the maximum number of hardware partitionable regions. The
52 * term 'region' in this context refers to the minimum number of nodes that
53 * can comprise an access protection grouping. The access protection is in
54 * regards to memory, IPI and IOI.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070055 *
56 * The maximum number of hardware partitionable regions is equal to the
57 * maximum number of nodes in the entire system divided by the minimum number
58 * of nodes that comprise an access protection grouping.
59 */
Dean Nelsonbc63d382008-07-29 22:34:04 -070060#define XP_MAX_NPARTITIONS_SN2 64
61#define XP_MAX_NPARTITIONS_UV 256
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070062
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070063/*
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070064 * XPC establishes channel connections between the local partition and any
65 * other partition that is currently up. Over these channels, kernel-level
66 * `users' can communicate with their counterparts on the other partitions.
67 *
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070068 * If the need for additional channels arises, one can simply increase
Dean Nelsonbc63d382008-07-29 22:34:04 -070069 * XPC_MAX_NCHANNELS accordingly. If the day should come where that number
70 * exceeds the absolute MAXIMUM number of channels possible (eight), then one
71 * will need to make changes to the XPC code to accommodate for this.
72 *
Dean Nelsonea57f802008-07-29 22:34:14 -070073 * The absolute maximum number of channels possible is limited to eight for
74 * performance reasons on sn2 hardware. The internal cross partition structures
Dean Nelsonbc63d382008-07-29 22:34:04 -070075 * require sixteen bytes per channel, and eight allows all of this
76 * interface-shared info to fit in one 128-byte cacheline.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070077 */
78#define XPC_MEM_CHANNEL 0 /* memory channel number */
79#define XPC_NET_CHANNEL 1 /* network channel number */
80
Dean Nelsonbc63d382008-07-29 22:34:04 -070081#define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070082
Dean Nelsonbc63d382008-07-29 22:34:04 -070083#if XPC_MAX_NCHANNELS > 8
84#error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070085#endif
86
Dean Nelsonb0d82bd2005-03-23 19:46:00 -070087/*
88 * The format of an XPC message is as follows:
89 *
90 * +-------+--------------------------------+
91 * | flags |////////////////////////////////|
92 * +-------+--------------------------------+
93 * | message # |
94 * +----------------------------------------+
95 * | payload (user-defined message) |
96 * | |
97 * :
98 * | |
99 * +----------------------------------------+
100 *
101 * The size of the payload is defined by the user via xpc_connect(). A user-
102 * defined message resides in the payload area.
103 *
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700104 * The size of a message entry (within a message queue) must be a cacheline
105 * sized multiple in order to facilitate the BTE transfer of messages from one
106 * message queue to another. A macro, XPC_MSG_SIZE(), is provided for the user
107 * that wants to fit as many msg entries as possible in a given memory size
108 * (e.g. a memory page).
109 */
110struct xpc_msg {
111 u8 flags; /* FOR XPC INTERNAL USE ONLY */
112 u8 reserved[7]; /* FOR XPC INTERNAL USE ONLY */
113 s64 number; /* FOR XPC INTERNAL USE ONLY */
114
115 u64 payload; /* user defined portion of message */
116};
117
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700118#define XPC_MSG_PAYLOAD_OFFSET (u64) (&((struct xpc_msg *)0)->payload)
119#define XPC_MSG_SIZE(_payload_size) \
120 L1_CACHE_ALIGN(XPC_MSG_PAYLOAD_OFFSET + (_payload_size))
121
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700122/*
123 * Define the return values and values passed to user's callout functions.
124 * (It is important to add new value codes at the end just preceding
Dean Nelson65c17b82008-05-12 14:02:02 -0700125 * xpUnknownReason, which must have the highest numerical value.)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700126 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700127enum xp_retval {
128 xpSuccess = 0,
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700129
Dean Nelson65c17b82008-05-12 14:02:02 -0700130 xpNotConnected, /* 1: channel is not connected */
131 xpConnected, /* 2: channel connected (opened) */
132 xpRETIRED1, /* 3: (formerly xpDisconnected) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700133
Dean Nelson65c17b82008-05-12 14:02:02 -0700134 xpMsgReceived, /* 4: message received */
135 xpMsgDelivered, /* 5: message delivered and acknowledged */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700136
Dean Nelson65c17b82008-05-12 14:02:02 -0700137 xpRETIRED2, /* 6: (formerly xpTransferFailed) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700138
Dean Nelson65c17b82008-05-12 14:02:02 -0700139 xpNoWait, /* 7: operation would require wait */
140 xpRetry, /* 8: retry operation */
141 xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */
142 xpInterrupted, /* 10: interrupted wait */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700143
Dean Nelson65c17b82008-05-12 14:02:02 -0700144 xpUnequalMsgSizes, /* 11: message size disparity between sides */
145 xpInvalidAddress, /* 12: invalid address */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700146
Dean Nelson65c17b82008-05-12 14:02:02 -0700147 xpNoMemory, /* 13: no memory available for XPC structures */
148 xpLackOfResources, /* 14: insufficient resources for operation */
149 xpUnregistered, /* 15: channel is not registered */
150 xpAlreadyRegistered, /* 16: channel is already registered */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700151
Dean Nelson65c17b82008-05-12 14:02:02 -0700152 xpPartitionDown, /* 17: remote partition is down */
153 xpNotLoaded, /* 18: XPC module is not loaded */
154 xpUnloading, /* 19: this side is unloading XPC module */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700155
Dean Nelson65c17b82008-05-12 14:02:02 -0700156 xpBadMagic, /* 20: XPC MAGIC string not found */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700157
Dean Nelson65c17b82008-05-12 14:02:02 -0700158 xpReactivating, /* 21: remote partition was reactivated */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700159
Dean Nelson65c17b82008-05-12 14:02:02 -0700160 xpUnregistering, /* 22: this side is unregistering channel */
161 xpOtherUnregistering, /* 23: other side is unregistering channel */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700162
Dean Nelson65c17b82008-05-12 14:02:02 -0700163 xpCloneKThread, /* 24: cloning kernel thread */
164 xpCloneKThreadFailed, /* 25: cloning kernel thread failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700165
Dean Nelson65c17b82008-05-12 14:02:02 -0700166 xpNoHeartbeat, /* 26: remote partition has no heartbeat */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700167
Dean Nelson65c17b82008-05-12 14:02:02 -0700168 xpPioReadError, /* 27: PIO read error */
169 xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700170
Dean Nelson65c17b82008-05-12 14:02:02 -0700171 xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */
172 xpRETIRED4, /* 30: (formerly xpBtePoisonError) */
173 xpRETIRED5, /* 31: (formerly xpBteWriteError) */
174 xpRETIRED6, /* 32: (formerly xpBteAccessError) */
175 xpRETIRED7, /* 33: (formerly xpBtePWriteError) */
176 xpRETIRED8, /* 34: (formerly xpBtePReadError) */
177 xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */
178 xpRETIRED10, /* 36: (formerly xpBteXtalkError) */
179 xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */
180 xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700181
Dean Nelson65c17b82008-05-12 14:02:02 -0700182 xpBadVersion, /* 39: bad version number */
183 xpVarsNotSet, /* 40: the XPC variables are not set up */
184 xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */
185 xpInvalidPartid, /* 42: invalid partition ID */
186 xpLocalPartid, /* 43: local partition ID */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700187
Dean Nelson65c17b82008-05-12 14:02:02 -0700188 xpOtherGoingDown, /* 44: other side going down, reason unknown */
189 xpSystemGoingDown, /* 45: system is going down, reason unknown */
190 xpSystemHalt, /* 46: system is being halted */
191 xpSystemReboot, /* 47: system is being rebooted */
192 xpSystemPoweroff, /* 48: system is being powered off */
Dean Nelsona607c382005-09-01 14:01:37 -0500193
Dean Nelson65c17b82008-05-12 14:02:02 -0700194 xpDisconnecting, /* 49: channel disconnecting (closing) */
Dean Nelsona607c382005-09-01 14:01:37 -0500195
Dean Nelson65c17b82008-05-12 14:02:02 -0700196 xpOpenCloseError, /* 50: channel open/close protocol error */
Dean Nelsone54af722005-10-25 14:07:43 -0500197
Dean Nelson65c17b82008-05-12 14:02:02 -0700198 xpDisconnected, /* 51: channel disconnected (closed) */
Dean Nelson246c7e32005-12-22 14:32:56 -0600199
Dean Nelson65c17b82008-05-12 14:02:02 -0700200 xpBteCopyError, /* 52: bte_copy() returned error */
Dean Nelsonda970522008-07-29 22:34:03 -0700201 xpSalError, /* 53: sn SAL error */
Dean Nelson94bd2702008-07-29 22:34:05 -0700202 xpRsvdPageNotSet, /* 54: the reserved page is not set up */
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700203 xpPayloadTooBig, /* 55: payload too large for message slot */
Russ Anderson64135fa2007-08-21 16:45:12 -0500204
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700205 xpUnsupported, /* 56: unsupported functionality or resource */
206 xpUnknownReason /* 57: unknown reason - must be last in enum */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700207};
208
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700209/*
Dean Nelson65c17b82008-05-12 14:02:02 -0700210 * Define the callout function type used by XPC to update the user on
211 * connection activity and state changes via the user function registered
212 * by xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700213 *
214 * Arguments:
215 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700216 * reason - reason code.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700217 * partid - partition ID associated with condition.
218 * ch_number - channel # associated with condition.
Dean Nelson65c17b82008-05-12 14:02:02 -0700219 * data - pointer to optional data.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700220 * key - pointer to optional user-defined value provided as the "key"
Dean Nelson65c17b82008-05-12 14:02:02 -0700221 * argument to xpc_connect().
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700222 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700223 * A reason code of xpConnected indicates that a connection has been
224 * established to the specified partition on the specified channel. The data
225 * argument indicates the max number of entries allowed in the message queue.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700226 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700227 * A reason code of xpMsgReceived indicates that a XPC message arrived from
228 * the specified partition on the specified channel. The data argument
229 * specifies the address of the message's payload. The user must call
230 * xpc_received() when finished with the payload.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700231 *
Dean Nelson65c17b82008-05-12 14:02:02 -0700232 * All other reason codes indicate failure. The data argmument is NULL.
233 * When a failure reason code is received, one can assume that the channel
234 * is not connected.
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700235 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700236typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500237 int ch_number, void *data, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700238
Dean Nelson65c17b82008-05-12 14:02:02 -0700239/*
240 * Define the callout function type used by XPC to notify the user of
241 * messages received and delivered via the user function registered by
242 * xpc_send_notify().
243 *
244 * Arguments:
245 *
246 * reason - reason code.
247 * partid - partition ID associated with condition.
248 * ch_number - channel # associated with condition.
249 * key - pointer to optional user-defined value provided as the "key"
250 * argument to xpc_send_notify().
251 *
252 * A reason code of xpMsgDelivered indicates that the message was delivered
253 * to the intended recipient and that they have acknowledged its receipt by
254 * calling xpc_received().
255 *
256 * All other reason codes indicate failure.
257 */
Dean Nelson64d032b2008-05-12 14:02:03 -0700258typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500259 int ch_number, void *key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700260
261/*
262 * The following is a registration entry. There is a global array of these,
263 * one per channel. It is used to record the connection registration made
264 * by the users of XPC. As long as a registration entry exists, for any
265 * partition that comes up, XPC will attempt to establish a connection on
266 * that channel. Notification that a connection has been made will occur via
267 * the xpc_channel_func function.
268 *
269 * The 'func' field points to the function to call when aynchronous
270 * notification is required for such events as: a connection established/lost,
Dean Nelsone54af722005-10-25 14:07:43 -0500271 * or an incoming message received, or an error condition encountered. A
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700272 * non-NULL 'func' field indicates that there is an active registration for
273 * the channel.
274 */
275struct xpc_registration {
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500276 struct mutex mutex;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500277 xpc_channel_func func; /* function to call */
278 void *key; /* pointer to user's key */
279 u16 nentries; /* #of msg entries in local msg queue */
280 u16 msg_size; /* message queue's message size */
281 u32 assigned_limit; /* limit on #of assigned kthreads */
282 u32 idle_limit; /* limit on #of idle kthreads */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700283} ____cacheline_aligned;
284
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700285#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
286
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700287/* the following are valid xpc_send() or xpc_send_notify() flags */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500288#define XPC_WAIT 0 /* wait flag */
289#define XPC_NOWAIT 1 /* no wait flag */
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700290
291struct xpc_interface {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500292 void (*connect) (int);
293 void (*disconnect) (int);
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700294 enum xp_retval (*send) (short, int, u32, void *, u16);
295 enum xp_retval (*send_notify) (short, int, u32, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500296 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700297 void (*received) (short, int, void *);
298 enum xp_retval (*partid_to_nasids) (short, void *);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700299};
300
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700301extern struct xpc_interface xpc_interface;
302
303extern void xpc_set_interface(void (*)(int),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500304 void (*)(int),
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700305 enum xp_retval (*)(short, int, u32, void *, u16),
306 enum xp_retval (*)(short, int, u32, void *, u16,
307 xpc_notify_func, void *),
Dean Nelson64d032b2008-05-12 14:02:03 -0700308 void (*)(short, int, void *),
309 enum xp_retval (*)(short, void *));
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700310extern void xpc_clear_interface(void);
311
Dean Nelson65c17b82008-05-12 14:02:02 -0700312extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500313 u16, u32, u32);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700314extern void xpc_disconnect(int);
315
Dean Nelson65c17b82008-05-12 14:02:02 -0700316static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700317xpc_send(short partid, int ch_number, u32 flags, void *payload,
318 u16 payload_size)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700319{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700320 return xpc_interface.send(partid, ch_number, flags, payload,
321 payload_size);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700322}
323
Dean Nelson65c17b82008-05-12 14:02:02 -0700324static inline enum xp_retval
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700325xpc_send_notify(short partid, int ch_number, u32 flags, void *payload,
326 u16 payload_size, xpc_notify_func func, void *key)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700327{
Dean Nelson97bf1aa2008-07-29 22:34:08 -0700328 return xpc_interface.send_notify(partid, ch_number, flags, payload,
329 payload_size, func, key);
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700330}
331
332static inline void
Dean Nelson64d032b2008-05-12 14:02:03 -0700333xpc_received(short partid, int ch_number, void *payload)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700334{
335 return xpc_interface.received(partid, ch_number, payload);
336}
337
Dean Nelson65c17b82008-05-12 14:02:02 -0700338static inline enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700339xpc_partid_to_nasids(short partid, void *nasids)
Dean Nelsonb0d82bd2005-03-23 19:46:00 -0700340{
341 return xpc_interface.partid_to_nasids(partid, nasids);
342}
343
Dean Nelsonbc63d382008-07-29 22:34:04 -0700344extern short xp_max_npartitions;
345
Dean Nelson908787d2008-07-29 22:34:05 -0700346extern enum xp_retval (*xp_remote_memcpy) (void *, const void *, size_t);
347
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 */