blob: a3a67485cf8d5392921b8b0f5a88492c4a202bed [file] [log] [blame]
Dean Nelson89eb8eb2005-03-23 19:50: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 Nelson89eb8eb2005-03-23 19:50:00 -07007 */
8
Dean Nelson89eb8eb2005-03-23 19:50:00 -07009/*
10 * Cross Partition Communication (XPC) structures and macros.
11 */
12
Dean Nelson45d9ca42008-04-22 14:46:56 -050013#ifndef _DRIVERS_MISC_SGIXP_XPC_H
14#define _DRIVERS_MISC_SGIXP_XPC_H
Dean Nelson89eb8eb2005-03-23 19:50:00 -070015
Dean Nelson89eb8eb2005-03-23 19:50:00 -070016#include <linux/interrupt.h>
17#include <linux/sysctl.h>
18#include <linux/device.h>
Jes Sorensenf9e505a2006-01-17 12:52:21 -050019#include <linux/mutex.h>
20#include <linux/completion.h>
Dean Nelson89eb8eb2005-03-23 19:50:00 -070021#include <asm/pgtable.h>
22#include <asm/processor.h>
Dean Nelson89eb8eb2005-03-23 19:50:00 -070023#include <asm/sn/clksupport.h>
24#include <asm/sn/addrs.h>
25#include <asm/sn/mspec.h>
26#include <asm/sn/shub_mmr.h>
Dean Nelson45d9ca42008-04-22 14:46:56 -050027#include "xp.h"
Dean Nelson89eb8eb2005-03-23 19:50:00 -070028
Dean Nelson89eb8eb2005-03-23 19:50:00 -070029/*
30 * XPC Version numbers consist of a major and minor number. XPC can always
31 * talk to versions with same major #, and never talk to versions with a
32 * different major #.
33 */
34#define _XPC_VERSION(_maj, _min) (((_maj) << 4) | ((_min) & 0xf))
35#define XPC_VERSION_MAJOR(_v) ((_v) >> 4)
36#define XPC_VERSION_MINOR(_v) ((_v) & 0xf)
37
Dean Nelson89eb8eb2005-03-23 19:50:00 -070038/*
39 * The next macros define word or bit representations for given
40 * C-brick nasid in either the SAL provided bit array representing
41 * nasids in the partition/machine or the AMO_t array used for
42 * inter-partition initiation communications.
43 *
44 * For SN2 machines, C-Bricks are alway even numbered NASIDs. As
45 * such, some space will be saved by insisting that nasid information
46 * passed from SAL always be packed for C-Bricks and the
47 * cross-partition interrupts use the same packing scheme.
48 */
49#define XPC_NASID_W_INDEX(_n) (((_n) / 64) / 2)
50#define XPC_NASID_B_INDEX(_n) (((_n) / 2) & (64 - 1))
51#define XPC_NASID_IN_ARRAY(_n, _p) ((_p)[XPC_NASID_W_INDEX(_n)] & \
52 (1UL << XPC_NASID_B_INDEX(_n)))
53#define XPC_NASID_FROM_W_B(_w, _b) (((_w) * 64 + (_b)) * 2)
54
55#define XPC_HB_DEFAULT_INTERVAL 5 /* incr HB every x secs */
Dean Nelsona607c382005-09-01 14:01:37 -050056#define XPC_HB_CHECK_DEFAULT_INTERVAL 20 /* check HB every x secs */
Dean Nelson89eb8eb2005-03-23 19:50:00 -070057
58/* define the process name of HB checker and the CPU it is pinned to */
59#define XPC_HB_CHECK_THREAD_NAME "xpc_hb"
60#define XPC_HB_CHECK_CPU 0
61
62/* define the process name of the discovery thread */
63#define XPC_DISCOVERY_THREAD_NAME "xpc_discovery"
64
Dean Nelson89eb8eb2005-03-23 19:50:00 -070065/*
Dean Nelson4b38fcd2005-10-25 14:09:51 -050066 * the reserved page
Dean Nelson89eb8eb2005-03-23 19:50:00 -070067 *
Dean Nelson4b38fcd2005-10-25 14:09:51 -050068 * SAL reserves one page of memory per partition for XPC. Though a full page
69 * in length (16384 bytes), its starting address is not page aligned, but it
70 * is cacheline aligned. The reserved page consists of the following:
71 *
72 * reserved page header
73 *
Dean Nelson94bd2702008-07-29 22:34:05 -070074 * The first two 64-byte cachelines of the reserved page contain the
75 * header (struct xpc_rsvd_page). Before SAL initialization has completed,
Dean Nelson4b38fcd2005-10-25 14:09:51 -050076 * SAL has set up the following fields of the reserved page header:
Dean Nelson94bd2702008-07-29 22:34:05 -070077 * SAL_signature, SAL_version, SAL_partid, and SAL_nasids_size. The
78 * other fields are set up by XPC. (xpc_rsvd_page points to the local
Dean Nelson4b38fcd2005-10-25 14:09:51 -050079 * partition's reserved page.)
80 *
81 * part_nasids mask
82 * mach_nasids mask
83 *
84 * SAL also sets up two bitmaps (or masks), one that reflects the actual
85 * nasids in this partition (part_nasids), and the other that reflects
86 * the actual nasids in the entire machine (mach_nasids). We're only
87 * interested in the even numbered nasids (which contain the processors
88 * and/or memory), so we only need half as many bits to represent the
89 * nasids. The part_nasids mask is located starting at the first cacheline
90 * following the reserved page header. The mach_nasids mask follows right
91 * after the part_nasids mask. The size in bytes of each mask is reflected
Dean Nelson94bd2702008-07-29 22:34:05 -070092 * by the reserved page header field 'SAL_nasids_size'. (Local partition's
Dean Nelson4b38fcd2005-10-25 14:09:51 -050093 * mask pointers are xpc_part_nasids and xpc_mach_nasids.)
94 *
Dean Nelson94bd2702008-07-29 22:34:05 -070095 * vars (ia64-sn2 only)
96 * vars part (ia64-sn2 only)
Dean Nelson4b38fcd2005-10-25 14:09:51 -050097 *
98 * Immediately following the mach_nasids mask are the XPC variables
99 * required by other partitions. First are those that are generic to all
100 * partitions (vars), followed on the next available cacheline by those
101 * which are partition specific (vars part). These are setup by XPC.
102 * (Local partition's vars pointers are xpc_vars and xpc_vars_part.)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700103 *
Dean Nelson94bd2702008-07-29 22:34:05 -0700104 * Note: Until 'stamp' is set non-zero, the partition XPC code has not been
105 * initialized.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700106 */
107struct xpc_rsvd_page {
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500108 u64 SAL_signature; /* SAL: unique signature */
109 u64 SAL_version; /* SAL: version */
Dean Nelson94bd2702008-07-29 22:34:05 -0700110 short SAL_partid; /* SAL: partition ID */
111 short max_npartitions; /* value of XPC_MAX_PARTITIONS */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700112 u8 version;
Dean Nelson94bd2702008-07-29 22:34:05 -0700113 u8 pad1[3]; /* align to next u64 in 1st 64-byte cacheline */
114 union {
115 u64 vars_pa; /* physical address of struct xpc_vars */
116 u64 activate_mq_gpa; /* global phys address of activate_mq */
117 } sn;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500118 struct timespec stamp; /* time when reserved page was setup by XPC */
Dean Nelson94bd2702008-07-29 22:34:05 -0700119 u64 pad2[9]; /* align to last u64 in 2nd 64-byte cacheline */
120 u64 SAL_nasids_size; /* SAL: size of each nasid mask in bytes */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700121};
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700122
Dean Nelson94bd2702008-07-29 22:34:05 -0700123#define XPC_RP_VERSION _XPC_VERSION(2, 0) /* version 2.0 of the reserved page */
Dean Nelsona607c382005-09-01 14:01:37 -0500124
125#define XPC_SUPPORTS_RP_STAMP(_version) \
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500126 (_version >= _XPC_VERSION(1, 1))
Dean Nelsona607c382005-09-01 14:01:37 -0500127
Dean Nelson94bd2702008-07-29 22:34:05 -0700128#define ZERO_STAMP ((struct timespec){0, 0})
Dean Nelsona607c382005-09-01 14:01:37 -0500129/*
130 * compare stamps - the return value is:
131 *
132 * < 0, if stamp1 < stamp2
133 * = 0, if stamp1 == stamp2
134 * > 0, if stamp1 > stamp2
135 */
136static inline int
137xpc_compare_stamps(struct timespec *stamp1, struct timespec *stamp2)
138{
139 int ret;
140
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500141 ret = stamp1->tv_sec - stamp2->tv_sec;
142 if (ret == 0)
Dean Nelsona607c382005-09-01 14:01:37 -0500143 ret = stamp1->tv_nsec - stamp2->tv_nsec;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500144
Dean Nelsona607c382005-09-01 14:01:37 -0500145 return ret;
146}
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700147
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700148/*
149 * Define the structures by which XPC variables can be exported to other
150 * partitions. (There are two: struct xpc_vars and struct xpc_vars_part)
151 */
152
153/*
154 * The following structure describes the partition generic variables
155 * needed by other partitions in order to properly initialize.
156 *
157 * struct xpc_vars version number also applies to struct xpc_vars_part.
158 * Changes to either structure and/or related functionality should be
159 * reflected by incrementing either the major or minor version numbers
160 * of struct xpc_vars.
161 */
Dean Nelson33ba3c72008-07-29 22:34:07 -0700162struct xpc_vars_sn2 {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700163 u8 version;
164 u64 heartbeat;
Dean Nelson33ba3c72008-07-29 22:34:07 -0700165 DECLARE_BITMAP(heartbeating_to_mask, XP_MAX_NPARTITIONS_SN2);
Dean Nelson780d09e2005-11-09 14:41:57 -0600166 u64 heartbeat_offline; /* if 0, heartbeat should be changing */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700167 int act_nasid;
168 int act_phys_cpuid;
169 u64 vars_part_pa;
170 u64 amos_page_pa; /* paddr of page of AMOs from MSPEC driver */
171 AMO_t *amos_page; /* vaddr of page of AMOs from MSPEC driver */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700172};
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700173
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500174#define XPC_V_VERSION _XPC_VERSION(3, 1) /* version 3.1 of the cross vars */
Dean Nelsona607c382005-09-01 14:01:37 -0500175
176#define XPC_SUPPORTS_DISENGAGE_REQUEST(_version) \
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500177 (_version >= _XPC_VERSION(3, 1))
Dean Nelsona607c382005-09-01 14:01:37 -0500178
Dean Nelsona607c382005-09-01 14:01:37 -0500179/*
Dean Nelson33ba3c72008-07-29 22:34:07 -0700180 * The following pertains to ia64-sn2 only.
181 *
182 * Memory for XPC's AMO variables is allocated by the MSPEC driver. These
183 * pages are located in the lowest granule. The lowest granule uses 4k pages
184 * for cached references and an alternate TLB handler to never provide a
185 * cacheable mapping for the entire region. This will prevent speculative
186 * reading of cached copies of our lines from being issued which will cause
187 * a PI FSB Protocol error to be generated by the SHUB. For XPC, we need 64
188 * AMO variables (based on XP_MAX_NPARTITIONS_SN2) to identify the senders of
189 * NOTIFY IRQs, 128 AMO variables (based on XP_NASID_MASK_WORDS) to identify
190 * the senders of ACTIVATE IRQs, and 2 AMO variables to identify which remote
191 * partitions (i.e., XPCs) consider themselves currently engaged with the
192 * local XPC.
Dean Nelsona607c382005-09-01 14:01:37 -0500193 */
Dean Nelson33ba3c72008-07-29 22:34:07 -0700194#define XPC_NOTIFY_IRQ_AMOS 0
195#define XPC_ACTIVATE_IRQ_AMOS (XPC_NOTIFY_IRQ_AMOS + XP_MAX_NPARTITIONS_SN2)
Dean Nelsona607c382005-09-01 14:01:37 -0500196#define XPC_ENGAGED_PARTITIONS_AMO (XPC_ACTIVATE_IRQ_AMOS + XP_NASID_MASK_WORDS)
197#define XPC_DISENGAGE_REQUEST_AMO (XPC_ENGAGED_PARTITIONS_AMO + 1)
198
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700199/*
200 * The following structure describes the per partition specific variables.
201 *
202 * An array of these structures, one per partition, will be defined. As a
203 * partition becomes active XPC will copy the array entry corresponding to
Dean Nelson94bd2702008-07-29 22:34:05 -0700204 * itself from that partition. It is desirable that the size of this structure
205 * evenly divides into a 128-byte cacheline, such that none of the entries in
206 * this array crosses a 128-byte cacheline boundary. As it is now, each entry
Dean Nelsone17d4162008-07-29 22:34:06 -0700207 * occupies 64-bytes.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700208 */
Dean Nelsone17d4162008-07-29 22:34:06 -0700209struct xpc_vars_part_sn2 {
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500210 u64 magic;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700211
212 u64 openclose_args_pa; /* physical address of open and close args */
213 u64 GPs_pa; /* physical address of Get/Put values */
214
215 u64 IPI_amo_pa; /* physical address of IPI AMO_t structure */
216 int IPI_nasid; /* nasid of where to send IPIs */
217 int IPI_phys_cpuid; /* physical CPU ID of where to send IPIs */
218
219 u8 nchannels; /* #of defined channels supported */
220
221 u8 reserved[23]; /* pad to a full 64 bytes */
222};
223
224/*
225 * The vars_part MAGIC numbers play a part in the first contact protocol.
226 *
227 * MAGIC1 indicates that the per partition specific variables for a remote
228 * partition have been initialized by this partition.
229 *
230 * MAGIC2 indicates that this partition has pulled the remote partititions
231 * per partition variables that pertain to this partition.
232 */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500233#define XPC_VP_MAGIC1 0x0053524156435058L /* 'XPCVARS\0'L (little endian) */
234#define XPC_VP_MAGIC2 0x0073726176435058L /* 'XPCvars\0'L (little endian) */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700235
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500236/* the reserved page sizes and offsets */
237
238#define XPC_RP_HEADER_SIZE L1_CACHE_ALIGN(sizeof(struct xpc_rsvd_page))
Dean Nelson33ba3c72008-07-29 22:34:07 -0700239#define XPC_RP_VARS_SIZE L1_CACHE_ALIGN(sizeof(struct xpc_vars_sn2))
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500240
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500241#define XPC_RP_PART_NASIDS(_rp) ((u64 *)((u8 *)(_rp) + XPC_RP_HEADER_SIZE))
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500242#define XPC_RP_MACH_NASIDS(_rp) (XPC_RP_PART_NASIDS(_rp) + xp_nasid_mask_words)
Dean Nelson33ba3c72008-07-29 22:34:07 -0700243#define XPC_RP_VARS(_rp) ((struct xpc_vars_sn2 *)(XPC_RP_MACH_NASIDS(_rp) + \
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500244 xp_nasid_mask_words))
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500245
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700246/*
247 * Functions registered by add_timer() or called by kernel_thread() only
248 * allow for a single 64-bit argument. The following macros can be used to
249 * pack and unpack two (32-bit, 16-bit or 8-bit) arguments into or out from
250 * the passed argument.
251 */
252#define XPC_PACK_ARGS(_arg1, _arg2) \
253 ((((u64) _arg1) & 0xffffffff) | \
254 ((((u64) _arg2) & 0xffffffff) << 32))
255
256#define XPC_UNPACK_ARG1(_args) (((u64) _args) & 0xffffffff)
257#define XPC_UNPACK_ARG2(_args) ((((u64) _args) >> 32) & 0xffffffff)
258
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700259/*
260 * Define a Get/Put value pair (pointers) used with a message queue.
261 */
262struct xpc_gp {
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500263 s64 get; /* Get value */
264 s64 put; /* Put value */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700265};
266
267#define XPC_GP_SIZE \
Dean Nelsonbc63d382008-07-29 22:34:04 -0700268 L1_CACHE_ALIGN(sizeof(struct xpc_gp) * XPC_MAX_NCHANNELS)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700269
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700270/*
271 * Define a structure that contains arguments associated with opening and
272 * closing a channel.
273 */
274struct xpc_openclose_args {
275 u16 reason; /* reason why channel is closing */
276 u16 msg_size; /* sizeof each message entry */
277 u16 remote_nentries; /* #of message entries in remote msg queue */
278 u16 local_nentries; /* #of message entries in local msg queue */
279 u64 local_msgqueue_pa; /* physical address of local message queue */
280};
281
282#define XPC_OPENCLOSE_ARGS_SIZE \
Dean Nelsonbc63d382008-07-29 22:34:04 -0700283 L1_CACHE_ALIGN(sizeof(struct xpc_openclose_args) * \
284 XPC_MAX_NCHANNELS)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700285
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700286/* struct xpc_msg flags */
287
288#define XPC_M_DONE 0x01 /* msg has been received/consumed */
289#define XPC_M_READY 0x02 /* msg is ready to be sent */
290#define XPC_M_INTERRUPT 0x04 /* send interrupt when msg consumed */
291
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700292#define XPC_MSG_ADDRESS(_payload) \
293 ((struct xpc_msg *)((u8 *)(_payload) - XPC_MSG_PAYLOAD_OFFSET))
294
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700295/*
296 * Defines notify entry.
297 *
298 * This is used to notify a message's sender that their message was received
299 * and consumed by the intended recipient.
300 */
301struct xpc_notify {
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500302 u8 type; /* type of notification */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700303
304 /* the following two fields are only used if type == XPC_N_CALL */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500305 xpc_notify_func func; /* user's notify function */
306 void *key; /* pointer to user's key */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700307};
308
309/* struct xpc_notify type of notification */
310
311#define XPC_N_CALL 0x01 /* notify function provided by user */
312
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700313/*
314 * Define the structure that manages all the stuff required by a channel. In
315 * particular, they are used to manage the messages sent across the channel.
316 *
317 * This structure is private to a partition, and is NOT shared across the
318 * partition boundary.
319 *
320 * There is an array of these structures for each remote partition. It is
321 * allocated at the time a partition becomes active. The array contains one
322 * of these structures for each potential channel connection to that partition.
323 *
Dean Nelson33ba3c72008-07-29 22:34:07 -0700324>>> sn2 only!!!
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700325 * Each of these structures manages two message queues (circular buffers).
326 * They are allocated at the time a channel connection is made. One of
327 * these message queues (local_msgqueue) holds the locally created messages
328 * that are destined for the remote partition. The other of these message
329 * queues (remote_msgqueue) is a locally cached copy of the remote partition's
330 * own local_msgqueue.
331 *
332 * The following is a description of the Get/Put pointers used to manage these
333 * two message queues. Consider the local_msgqueue to be on one partition
334 * and the remote_msgqueue to be its cached copy on another partition. A
335 * description of what each of the lettered areas contains is included.
336 *
337 *
338 * local_msgqueue remote_msgqueue
339 *
340 * |/////////| |/////////|
341 * w_remote_GP.get --> +---------+ |/////////|
342 * | F | |/////////|
343 * remote_GP.get --> +---------+ +---------+ <-- local_GP->get
344 * | | | |
345 * | | | E |
346 * | | | |
347 * | | +---------+ <-- w_local_GP.get
348 * | B | |/////////|
349 * | | |////D////|
350 * | | |/////////|
351 * | | +---------+ <-- w_remote_GP.put
352 * | | |////C////|
353 * local_GP->put --> +---------+ +---------+ <-- remote_GP.put
354 * | | |/////////|
355 * | A | |/////////|
356 * | | |/////////|
357 * w_local_GP.put --> +---------+ |/////////|
358 * |/////////| |/////////|
359 *
360 *
361 * ( remote_GP.[get|put] are cached copies of the remote
362 * partition's local_GP->[get|put], and thus their values can
363 * lag behind their counterparts on the remote partition. )
364 *
365 *
366 * A - Messages that have been allocated, but have not yet been sent to the
367 * remote partition.
368 *
369 * B - Messages that have been sent, but have not yet been acknowledged by the
370 * remote partition as having been received.
371 *
372 * C - Area that needs to be prepared for the copying of sent messages, by
373 * the clearing of the message flags of any previously received messages.
374 *
375 * D - Area into which sent messages are to be copied from the remote
376 * partition's local_msgqueue and then delivered to their intended
377 * recipients. [ To allow for a multi-message copy, another pointer
378 * (next_msg_to_pull) has been added to keep track of the next message
379 * number needing to be copied (pulled). It chases after w_remote_GP.put.
380 * Any messages lying between w_local_GP.get and next_msg_to_pull have
381 * been copied and are ready to be delivered. ]
382 *
383 * E - Messages that have been copied and delivered, but have not yet been
384 * acknowledged by the recipient as having been received.
385 *
386 * F - Messages that have been acknowledged, but XPC has not yet notified the
387 * sender that the message was received by its intended recipient.
388 * This is also an area that needs to be prepared for the allocating of
389 * new messages, by the clearing of the message flags of the acknowledged
390 * messages.
391 */
392struct xpc_channel {
Dean Nelson64d032b2008-05-12 14:02:03 -0700393 short partid; /* ID of remote partition connected */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500394 spinlock_t lock; /* lock for updating this structure */
395 u32 flags; /* general flags */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700396
Dean Nelson65c17b82008-05-12 14:02:02 -0700397 enum xp_retval reason; /* reason why channel is disconnect'g */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500398 int reason_line; /* line# disconnect initiated from */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700399
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500400 u16 number; /* channel # */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700401
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500402 u16 msg_size; /* sizeof each msg entry */
403 u16 local_nentries; /* #of msg entries in local msg queue */
404 u16 remote_nentries; /* #of msg entries in remote msg queue */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700405
406 void *local_msgqueue_base; /* base address of kmalloc'd space */
407 struct xpc_msg *local_msgqueue; /* local message queue */
408 void *remote_msgqueue_base; /* base address of kmalloc'd space */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500409 struct xpc_msg *remote_msgqueue; /* cached copy of remote partition's */
410 /* local message queue */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500411 u64 remote_msgqueue_pa; /* phys addr of remote partition's */
412 /* local message queue */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700413
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500414 atomic_t references; /* #of external references to queues */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700415
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500416 atomic_t n_on_msg_allocate_wq; /* #on msg allocation wait queue */
417 wait_queue_head_t msg_allocate_wq; /* msg allocation wait queue */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700418
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500419 u8 delayed_IPI_flags; /* IPI flags received, but delayed */
420 /* action until channel disconnected */
Dean Nelsone54af722005-10-25 14:07:43 -0500421
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700422 /* queue of msg senders who want to be notified when msg received */
423
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500424 atomic_t n_to_notify; /* #of msg senders to notify */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500425 struct xpc_notify *notify_queue; /* notify queue for messages sent */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700426
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500427 xpc_channel_func func; /* user's channel function */
428 void *key; /* pointer to user's key */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700429
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500430 struct mutex msg_to_pull_mutex; /* next msg to pull serialization */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500431 struct completion wdisconnect_wait; /* wait for channel disconnect */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700432
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500433 struct xpc_openclose_args *local_openclose_args; /* args passed on */
434 /* opening or closing of channel */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700435
436 /* various flavors of local and remote Get/Put values */
437
438 struct xpc_gp *local_GP; /* local Get/Put values */
439 struct xpc_gp remote_GP; /* remote Get/Put values */
440 struct xpc_gp w_local_GP; /* working local Get/Put values */
441 struct xpc_gp w_remote_GP; /* working remote Get/Put values */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500442 s64 next_msg_to_pull; /* Put value of next msg to pull */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700443
444 /* kthread management related fields */
445
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700446 atomic_t kthreads_assigned; /* #of kthreads assigned to channel */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500447 u32 kthreads_assigned_limit; /* limit on #of kthreads assigned */
448 atomic_t kthreads_idle; /* #of kthreads idle waiting for work */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700449 u32 kthreads_idle_limit; /* limit on #of kthreads idle */
450 atomic_t kthreads_active; /* #of kthreads actively working */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700451
452 wait_queue_head_t idle_wq; /* idle kthread wait queue */
453
454} ____cacheline_aligned;
455
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700456/* struct xpc_channel flags */
457
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500458#define XPC_C_WASCONNECTED 0x00000001 /* channel was connected */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700459
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500460#define XPC_C_ROPENREPLY 0x00000002 /* remote open channel reply */
461#define XPC_C_OPENREPLY 0x00000004 /* local open channel reply */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500462#define XPC_C_ROPENREQUEST 0x00000008 /* remote open channel request */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500463#define XPC_C_OPENREQUEST 0x00000010 /* local open channel request */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700464
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500465#define XPC_C_SETUP 0x00000020 /* channel's msgqueues are alloc'd */
466#define XPC_C_CONNECTEDCALLOUT 0x00000040 /* connected callout initiated */
Dean Nelson4c2cd962006-02-15 08:02:21 -0600467#define XPC_C_CONNECTEDCALLOUT_MADE \
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500468 0x00000080 /* connected callout completed */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500469#define XPC_C_CONNECTED 0x00000100 /* local channel is connected */
470#define XPC_C_CONNECTING 0x00000200 /* channel is being connected */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700471
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500472#define XPC_C_RCLOSEREPLY 0x00000400 /* remote close channel reply */
473#define XPC_C_CLOSEREPLY 0x00000800 /* local close channel reply */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500474#define XPC_C_RCLOSEREQUEST 0x00001000 /* remote close channel request */
475#define XPC_C_CLOSEREQUEST 0x00002000 /* local close channel request */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700476
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500477#define XPC_C_DISCONNECTED 0x00004000 /* channel is disconnected */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500478#define XPC_C_DISCONNECTING 0x00008000 /* channel is being disconnected */
Dean Nelson4c2cd962006-02-15 08:02:21 -0600479#define XPC_C_DISCONNECTINGCALLOUT \
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500480 0x00010000 /* disconnecting callout initiated */
Dean Nelson4c2cd962006-02-15 08:02:21 -0600481#define XPC_C_DISCONNECTINGCALLOUT_MADE \
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500482 0x00020000 /* disconnecting callout completed */
483#define XPC_C_WDISCONNECT 0x00040000 /* waiting for channel disconnect */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700484
485/*
486 * Manages channels on a partition basis. There is one of these structures
487 * for each partition (a partition will never utilize the structure that
488 * represents itself).
489 */
490struct xpc_partition {
491
492 /* XPC HB infrastructure */
493
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500494 u8 remote_rp_version; /* version# of partition's rsvd pg */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500495 struct timespec remote_rp_stamp; /* time when rsvd pg was initialized */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500496 u64 remote_rp_pa; /* phys addr of partition's rsvd pg */
497 u64 remote_vars_pa; /* phys addr of partition's vars */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700498 u64 remote_vars_part_pa; /* phys addr of partition's vars part */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500499 u64 last_heartbeat; /* HB at last read */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700500 u64 remote_amos_page_pa; /* phys addr of partition's amos page */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500501 int remote_act_nasid; /* active part's act/deact nasid */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700502 int remote_act_phys_cpuid; /* active part's act/deact phys cpuid */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500503 u32 act_IRQ_rcvd; /* IRQs since activation */
504 spinlock_t act_lock; /* protect updating of act_state */
505 u8 act_state; /* from XPC HB viewpoint */
506 u8 remote_vars_version; /* version# of partition's vars */
Dean Nelson65c17b82008-05-12 14:02:02 -0700507 enum xp_retval reason; /* reason partition is deactivating */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500508 int reason_line; /* line# deactivation initiated from */
509 int reactivate_nasid; /* nasid in partition to reactivate */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700510
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500511 unsigned long disengage_request_timeout; /* timeout in jiffies */
Dean Nelsona607c382005-09-01 14:01:37 -0500512 struct timer_list disengage_request_timer;
513
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700514 /* XPC infrastructure referencing and teardown control */
515
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500516 u8 setup_state; /* infrastructure setup state */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700517 wait_queue_head_t teardown_wq; /* kthread waiting to teardown infra */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500518 atomic_t references; /* #of references to infrastructure */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700519
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500520 u8 nchannels; /* #of defined channels supported */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500521 atomic_t nchannels_active; /* #of channels that are not DISCONNECTED */
522 atomic_t nchannels_engaged; /* #of channels engaged with remote part */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500523 struct xpc_channel *channels; /* array of channel structures */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700524
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500525 void *local_GPs_base; /* base address of kmalloc'd space */
526 struct xpc_gp *local_GPs; /* local Get/Put values */
527 void *remote_GPs_base; /* base address of kmalloc'd space */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500528 struct xpc_gp *remote_GPs; /* copy of remote partition's local */
529 /* Get/Put values */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500530 u64 remote_GPs_pa; /* phys address of remote partition's local */
531 /* Get/Put values */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700532
533 /* fields used to pass args when opening or closing a channel */
534
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500535 void *local_openclose_args_base; /* base address of kmalloc'd space */
536 struct xpc_openclose_args *local_openclose_args; /* local's args */
537 void *remote_openclose_args_base; /* base address of kmalloc'd space */
538 struct xpc_openclose_args *remote_openclose_args; /* copy of remote's */
539 /* args */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500540 u64 remote_openclose_args_pa; /* phys addr of remote's args */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700541
542 /* IPI sending, receiving and handling related fields */
543
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500544 int remote_IPI_nasid; /* nasid of where to send IPIs */
545 int remote_IPI_phys_cpuid; /* phys CPU ID of where to send IPIs */
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500546 AMO_t *remote_IPI_amo_va; /* address of remote IPI AMO_t structure */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700547
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500548 AMO_t *local_IPI_amo_va; /* address of IPI AMO_t structure */
549 u64 local_IPI_amo; /* IPI amo flags yet to be handled */
550 char IPI_owner[8]; /* IPI owner's name */
551 struct timer_list dropped_IPI_timer; /* dropped IPI timer */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700552
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500553 spinlock_t IPI_lock; /* IPI handler lock */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700554
555 /* channel manager related fields */
556
557 atomic_t channel_mgr_requests; /* #of requests to activate chan mgr */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500558 wait_queue_head_t channel_mgr_wq; /* channel mgr's wait queue */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700559
560} ____cacheline_aligned;
561
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700562/* struct xpc_partition act_state values (for XPC HB) */
563
564#define XPC_P_INACTIVE 0x00 /* partition is not active */
565#define XPC_P_ACTIVATION_REQ 0x01 /* created thread to activate */
566#define XPC_P_ACTIVATING 0x02 /* activation thread started */
567#define XPC_P_ACTIVE 0x03 /* xpc_partition_up() was called */
568#define XPC_P_DEACTIVATING 0x04 /* partition deactivation initiated */
569
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700570#define XPC_DEACTIVATE_PARTITION(_p, _reason) \
571 xpc_deactivate_partition(__LINE__, (_p), (_reason))
572
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700573/* struct xpc_partition setup_state values */
574
575#define XPC_P_UNSET 0x00 /* infrastructure was never setup */
576#define XPC_P_SETUP 0x01 /* infrastructure is setup */
577#define XPC_P_WTEARDOWN 0x02 /* waiting to teardown infrastructure */
578#define XPC_P_TORNDOWN 0x03 /* infrastructure is torndown */
579
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700580/*
581 * struct xpc_partition IPI_timer #of seconds to wait before checking for
582 * dropped IPIs. These occur whenever an IPI amo write doesn't complete until
583 * after the IPI was received.
584 */
Dean Nelsone17d4162008-07-29 22:34:06 -0700585#define XPC_P_DROPPED_IPI_WAIT_INTERVAL (0.25 * HZ)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700586
Dean Nelsona607c382005-09-01 14:01:37 -0500587/* number of seconds to wait for other partitions to disengage */
Dean Nelsone54af722005-10-25 14:07:43 -0500588#define XPC_DISENGAGE_REQUEST_DEFAULT_TIMELIMIT 90
Dean Nelsona607c382005-09-01 14:01:37 -0500589
590/* interval in seconds to print 'waiting disengagement' messages */
591#define XPC_DISENGAGE_PRINTMSG_INTERVAL 10
592
Dean Nelson64d032b2008-05-12 14:02:03 -0700593#define XPC_PARTID(_p) ((short)((_p) - &xpc_partitions[0]))
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700594
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700595/* found in xp_main.c */
596extern struct xpc_registration xpc_registrations[];
597
Dean Nelsone54af722005-10-25 14:07:43 -0500598/* found in xpc_main.c */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700599extern struct device *xpc_part;
600extern struct device *xpc_chan;
Dean Nelsone54af722005-10-25 14:07:43 -0500601extern int xpc_disengage_request_timelimit;
Dean Nelson1ecaded2006-01-06 09:48:21 -0600602extern int xpc_disengage_request_timedout;
Dean Nelson33ba3c72008-07-29 22:34:07 -0700603extern atomic_t xpc_act_IRQ_rcvd;
604extern wait_queue_head_t xpc_act_IRQ_wq;
605extern void *xpc_heartbeating_to_mask;
Al Viro5dcded12006-10-08 14:59:19 +0100606extern irqreturn_t xpc_notify_IRQ_handler(int, void *);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700607extern void xpc_dropped_IPI_check(struct xpc_partition *);
Dean Nelsone54af722005-10-25 14:07:43 -0500608extern void xpc_activate_partition(struct xpc_partition *);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700609extern void xpc_activate_kthreads(struct xpc_channel *, int);
Dean Nelsona460ef82006-11-22 08:25:00 -0600610extern void xpc_create_kthreads(struct xpc_channel *, int, int);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700611extern void xpc_disconnect_wait(int);
Dean Nelson94bd2702008-07-29 22:34:05 -0700612extern enum xp_retval (*xpc_rsvd_page_init) (struct xpc_rsvd_page *);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700613extern void (*xpc_heartbeat_init) (void);
614extern void (*xpc_heartbeat_exit) (void);
615extern void (*xpc_increment_heartbeat) (void);
616extern void (*xpc_offline_heartbeat) (void);
617extern void (*xpc_online_heartbeat) (void);
618extern void (*xpc_check_remote_hb) (void);
Dean Nelsone17d4162008-07-29 22:34:06 -0700619extern enum xp_retval (*xpc_make_first_contact) (struct xpc_partition *);
620extern u64 (*xpc_get_IPI_flags) (struct xpc_partition *);
621extern struct xpc_msg *(*xpc_get_deliverable_msg) (struct xpc_channel *);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700622extern void (*xpc_initiate_partition_activation) (struct xpc_rsvd_page *, u64,
623 int);
624extern void (*xpc_process_act_IRQ_rcvd) (int);
Dean Nelsone17d4162008-07-29 22:34:06 -0700625extern enum xp_retval (*xpc_setup_infrastructure) (struct xpc_partition *);
626extern void (*xpc_teardown_infrastructure) (struct xpc_partition *);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700627extern void (*xpc_mark_partition_engaged) (struct xpc_partition *);
628extern void (*xpc_mark_partition_disengaged) (struct xpc_partition *);
629extern void (*xpc_request_partition_disengage) (struct xpc_partition *);
630extern void (*xpc_cancel_partition_disengage_request) (struct xpc_partition *);
631extern u64 (*xpc_partition_engaged) (u64);
632extern u64 (*xpc_partition_disengage_requested) (u64);;
633extern void (*xpc_clear_partition_engaged) (u64);
634extern void (*xpc_clear_partition_disengage_request) (u64);
635
636extern void (*xpc_IPI_send_local_activate) (int);
637extern void (*xpc_IPI_send_activated) (struct xpc_partition *);
638extern void (*xpc_IPI_send_local_reactivate) (int);
639extern void (*xpc_IPI_send_disengage) (struct xpc_partition *);
640
641extern void (*xpc_IPI_send_closerequest) (struct xpc_channel *,
642 unsigned long *);
643extern void (*xpc_IPI_send_closereply) (struct xpc_channel *, unsigned long *);
644extern void (*xpc_IPI_send_openrequest) (struct xpc_channel *, unsigned long *);
645extern void (*xpc_IPI_send_openreply) (struct xpc_channel *, unsigned long *);
646
647extern enum xp_retval (*xpc_allocate_msg) (struct xpc_channel *, u32,
648 struct xpc_msg **);
649extern enum xp_retval (*xpc_send_msg) (struct xpc_channel *, struct xpc_msg *,
650 u8, xpc_notify_func, void *);
651extern void (*xpc_received_msg) (struct xpc_channel *, struct xpc_msg *);
Dean Nelson94bd2702008-07-29 22:34:05 -0700652
653/* found in xpc_sn2.c */
654extern void xpc_init_sn2(void);
Dean Nelson94bd2702008-07-29 22:34:05 -0700655
656/* found in xpc_uv.c */
657extern void xpc_init_uv(void);
658
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700659/* found in xpc_partition.c */
660extern int xpc_exiting;
Dean Nelson94bd2702008-07-29 22:34:05 -0700661extern int xp_nasid_mask_words;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700662extern struct xpc_rsvd_page *xpc_rsvd_page;
Dean Nelson33ba3c72008-07-29 22:34:07 -0700663extern u64 *xpc_mach_nasids;
Dean Nelsonbc63d382008-07-29 22:34:04 -0700664extern struct xpc_partition *xpc_partitions;
Dean Nelson7682a4c2006-08-08 15:03:29 -0500665extern char *xpc_remote_copy_buffer;
666extern void *xpc_remote_copy_buffer_base;
667extern void *xpc_kmalloc_cacheline_aligned(size_t, gfp_t, void **);
Dean Nelson94bd2702008-07-29 22:34:05 -0700668extern struct xpc_rsvd_page *xpc_setup_rsvd_page(void);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700669extern void xpc_allow_IPI_ops(void);
670extern void xpc_restrict_IPI_ops(void);
671extern int xpc_identify_act_IRQ_sender(void);
Dean Nelsona607c382005-09-01 14:01:37 -0500672extern int xpc_partition_disengaged(struct xpc_partition *);
Dean Nelson65c17b82008-05-12 14:02:02 -0700673extern enum xp_retval xpc_mark_partition_active(struct xpc_partition *);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700674extern void xpc_mark_partition_inactive(struct xpc_partition *);
675extern void xpc_discovery(void);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700676extern enum xp_retval xpc_get_remote_rp(int, u64 *, struct xpc_rsvd_page *,
677 u64 *);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700678extern void xpc_deactivate_partition(const int, struct xpc_partition *,
Dean Nelson65c17b82008-05-12 14:02:02 -0700679 enum xp_retval);
Dean Nelson64d032b2008-05-12 14:02:03 -0700680extern enum xp_retval xpc_initiate_partid_to_nasids(short, void *);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700681
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700682/* found in xpc_channel.c */
Dean Nelsone17d4162008-07-29 22:34:06 -0700683extern void *xpc_kzalloc_cacheline_aligned(size_t, gfp_t, void **);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700684extern void xpc_initiate_connect(int);
685extern void xpc_initiate_disconnect(int);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700686extern enum xp_retval xpc_allocate_msg_wait(struct xpc_channel *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700687extern enum xp_retval xpc_initiate_allocate(short, int, u32, void **);
688extern enum xp_retval xpc_initiate_send(short, int, void *);
689extern enum xp_retval xpc_initiate_send_notify(short, int, void *,
Dean Nelson65c17b82008-05-12 14:02:02 -0700690 xpc_notify_func, void *);
Dean Nelson64d032b2008-05-12 14:02:03 -0700691extern void xpc_initiate_received(short, int, void *);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700692extern void xpc_process_channel_activity(struct xpc_partition *);
693extern void xpc_connected_callout(struct xpc_channel *);
694extern void xpc_deliver_msg(struct xpc_channel *);
695extern void xpc_disconnect_channel(const int, struct xpc_channel *,
Dean Nelson65c17b82008-05-12 14:02:02 -0700696 enum xp_retval, unsigned long *);
697extern void xpc_disconnect_callout(struct xpc_channel *, enum xp_retval);
698extern void xpc_partition_going_down(struct xpc_partition *, enum xp_retval);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700699
Dean Nelson33ba3c72008-07-29 22:34:07 -0700700static inline int
701xpc_hb_allowed(short partid, void *heartbeating_to_mask)
702{
703 return test_bit(partid, heartbeating_to_mask);
704}
705
706static inline int
707xpc_any_hbs_allowed(void)
708{
709 DBUG_ON(xpc_heartbeating_to_mask == NULL);
710 return !bitmap_empty(xpc_heartbeating_to_mask, xp_max_npartitions);
711}
712
713static inline void
714xpc_allow_hb(short partid)
715{
716 DBUG_ON(xpc_heartbeating_to_mask == NULL);
717 set_bit(partid, xpc_heartbeating_to_mask);
718}
719
720static inline void
721xpc_disallow_hb(short partid)
722{
723 DBUG_ON(xpc_heartbeating_to_mask == NULL);
724 clear_bit(partid, xpc_heartbeating_to_mask);
725}
726
727static inline void
728xpc_disallow_all_hbs(void)
729{
730 DBUG_ON(xpc_heartbeating_to_mask == NULL);
731 bitmap_zero(xpc_heartbeating_to_mask, xp_max_npartitions);
732}
733
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700734static inline void
735xpc_wakeup_channel_mgr(struct xpc_partition *part)
736{
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500737 if (atomic_inc_return(&part->channel_mgr_requests) == 1)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700738 wake_up(&part->channel_mgr_wq);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700739}
740
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700741/*
742 * These next two inlines are used to keep us from tearing down a channel's
743 * msg queues while a thread may be referencing them.
744 */
745static inline void
746xpc_msgqueue_ref(struct xpc_channel *ch)
747{
748 atomic_inc(&ch->references);
749}
750
751static inline void
752xpc_msgqueue_deref(struct xpc_channel *ch)
753{
754 s32 refs = atomic_dec_return(&ch->references);
755
756 DBUG_ON(refs < 0);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500757 if (refs == 0)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700758 xpc_wakeup_channel_mgr(&xpc_partitions[ch->partid]);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700759}
760
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700761#define XPC_DISCONNECT_CHANNEL(_ch, _reason, _irqflgs) \
762 xpc_disconnect_channel(__LINE__, _ch, _reason, _irqflgs)
763
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700764/*
765 * These two inlines are used to keep us from tearing down a partition's
766 * setup infrastructure while a thread may be referencing it.
767 */
768static inline void
769xpc_part_deref(struct xpc_partition *part)
770{
771 s32 refs = atomic_dec_return(&part->references);
772
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700773 DBUG_ON(refs < 0);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500774 if (refs == 0 && part->setup_state == XPC_P_WTEARDOWN)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700775 wake_up(&part->teardown_wq);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700776}
777
778static inline int
779xpc_part_ref(struct xpc_partition *part)
780{
781 int setup;
782
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700783 atomic_inc(&part->references);
784 setup = (part->setup_state == XPC_P_SETUP);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500785 if (!setup)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700786 xpc_part_deref(part);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500787
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700788 return setup;
789}
790
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700791/*
792 * The following macro is to be used for the setting of the reason and
793 * reason_line fields in both the struct xpc_channel and struct xpc_partition
794 * structures.
795 */
796#define XPC_SET_REASON(_p, _reason, _line) \
797 { \
798 (_p)->reason = _reason; \
799 (_p)->reason_line = _line; \
800 }
801
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700802/*
Dean Nelson33ba3c72008-07-29 22:34:07 -0700803 * The sending and receiving of IPIs includes the setting of an >>>AMO variable
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700804 * to indicate the reason the IPI was sent. The 64-bit variable is divided
805 * up into eight bytes, ordered from right to left. Byte zero pertains to
806 * channel 0, byte one to channel 1, and so on. Each byte is described by
807 * the following IPI flags.
808 */
809
810#define XPC_IPI_CLOSEREQUEST 0x01
811#define XPC_IPI_CLOSEREPLY 0x02
812#define XPC_IPI_OPENREQUEST 0x04
813#define XPC_IPI_OPENREPLY 0x08
814#define XPC_IPI_MSGREQUEST 0x10
815
Dean Nelson33ba3c72008-07-29 22:34:07 -0700816/* given an >>>AMO variable and a channel#, get its associated IPI flags */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700817#define XPC_GET_IPI_FLAGS(_amo, _c) ((u8) (((_amo) >> ((_c) * 8)) & 0xff))
Dean Nelsone54af722005-10-25 14:07:43 -0500818#define XPC_SET_IPI_FLAGS(_amo, _c, _f) (_amo) |= ((u64) (_f) << ((_c) * 8))
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700819
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500820#define XPC_ANY_OPENCLOSE_IPI_FLAGS_SET(_amo) ((_amo) & 0x0f0f0f0f0f0f0f0fUL)
821#define XPC_ANY_MSG_IPI_FLAGS_SET(_amo) ((_amo) & 0x1010101010101010UL)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700822
Dean Nelson45d9ca42008-04-22 14:46:56 -0500823#endif /* _DRIVERS_MISC_SGIXP_XPC_H */