blob: 10dac3652b23078554527bb3dcbf29fb5fd459b7 [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) support - standard version.
11 *
12 * XPC provides a message passing capability that crosses partition
13 * boundaries. This module is made up of two parts:
14 *
15 * partition This part detects the presence/absence of other
16 * partitions. It provides a heartbeat and monitors
17 * the heartbeats of other partitions.
18 *
19 * channel This part manages the channels and sends/receives
20 * messages across them to/from other partitions.
21 *
22 * There are a couple of additional functions residing in XP, which
23 * provide an interface to XPC for its users.
24 *
25 *
26 * Caveats:
27 *
28 * . We currently have no way to determine which nasid an IPI came
29 * from. Thus, xpc_IPI_send() does a remote AMO write followed by
30 * an IPI. The AMO indicates where data is to be pulled from, so
31 * after the IPI arrives, the remote partition checks the AMO word.
32 * The IPI can actually arrive before the AMO however, so other code
33 * must periodically check for this case. Also, remote AMO operations
34 * do not reliably time out. Thus we do a remote PIO read solely to
35 * know whether the remote partition is down and whether we should
36 * stop sending IPIs to it. This remote PIO read operation is set up
37 * in a special nofault region so SAL knows to ignore (and cleanup)
38 * any errors due to the remote AMO write, PIO read, and/or PIO
39 * write operations.
40 *
41 * If/when new hardware solves this IPI problem, we should abandon
42 * the current approach.
43 *
44 */
45
Dean Nelson89eb8eb2005-03-23 19:50:00 -070046#include <linux/kernel.h>
47#include <linux/module.h>
48#include <linux/init.h>
Dean Nelson89eb8eb2005-03-23 19:50:00 -070049#include <linux/cache.h>
50#include <linux/interrupt.h>
Nishanth Aravamudan69913922005-07-08 17:10:00 -070051#include <linux/delay.h>
Dean Nelsona607c382005-09-01 14:01:37 -050052#include <linux/reboot.h>
Jes Sorensenf9e505a2006-01-17 12:52:21 -050053#include <linux/completion.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070054#include <linux/kdebug.h>
Dean Nelson2c2b94f2008-04-22 14:50:17 -050055#include <linux/kthread.h>
56#include <linux/uaccess.h>
Dean Nelson89eb8eb2005-03-23 19:50:00 -070057#include <asm/sn/intr.h>
58#include <asm/sn/sn_sal.h>
Dean Nelson45d9ca42008-04-22 14:46:56 -050059#include "xpc.h"
Dean Nelson89eb8eb2005-03-23 19:50:00 -070060
Dean Nelson89eb8eb2005-03-23 19:50:00 -070061/* define two XPC debug device structures to be used with dev_dbg() et al */
62
63struct device_driver xpc_dbg_name = {
64 .name = "xpc"
65};
66
67struct device xpc_part_dbg_subname = {
68 .bus_id = {0}, /* set to "part" at xpc_init() time */
69 .driver = &xpc_dbg_name
70};
71
72struct device xpc_chan_dbg_subname = {
73 .bus_id = {0}, /* set to "chan" at xpc_init() time */
74 .driver = &xpc_dbg_name
75};
76
77struct device *xpc_part = &xpc_part_dbg_subname;
78struct device *xpc_chan = &xpc_chan_dbg_subname;
79
Dean Nelson1f4674b2006-01-10 11:08:00 -060080static int xpc_kdebug_ignore;
81
Dean Nelson89eb8eb2005-03-23 19:50:00 -070082/* systune related variables for /proc/sys directories */
83
Dean Nelsona607c382005-09-01 14:01:37 -050084static int xpc_hb_interval = XPC_HB_DEFAULT_INTERVAL;
85static int xpc_hb_min_interval = 1;
86static int xpc_hb_max_interval = 10;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070087
Dean Nelsona607c382005-09-01 14:01:37 -050088static int xpc_hb_check_interval = XPC_HB_CHECK_DEFAULT_INTERVAL;
89static int xpc_hb_check_min_interval = 10;
90static int xpc_hb_check_max_interval = 120;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070091
Dean Nelsone54af722005-10-25 14:07:43 -050092int xpc_disengage_request_timelimit = XPC_DISENGAGE_REQUEST_DEFAULT_TIMELIMIT;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050093static int xpc_disengage_request_min_timelimit; /* = 0 */
Dean Nelsone54af722005-10-25 14:07:43 -050094static int xpc_disengage_request_max_timelimit = 120;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070095
96static ctl_table xpc_sys_xpc_hb_dir[] = {
97 {
Dean Nelson35190502008-04-22 14:48:55 -050098 .ctl_name = CTL_UNNUMBERED,
99 .procname = "hb_interval",
100 .data = &xpc_hb_interval,
101 .maxlen = sizeof(int),
102 .mode = 0644,
103 .proc_handler = &proc_dointvec_minmax,
104 .strategy = &sysctl_intvec,
105 .extra1 = &xpc_hb_min_interval,
106 .extra2 = &xpc_hb_max_interval},
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700107 {
Dean Nelson35190502008-04-22 14:48:55 -0500108 .ctl_name = CTL_UNNUMBERED,
109 .procname = "hb_check_interval",
110 .data = &xpc_hb_check_interval,
111 .maxlen = sizeof(int),
112 .mode = 0644,
113 .proc_handler = &proc_dointvec_minmax,
114 .strategy = &sysctl_intvec,
115 .extra1 = &xpc_hb_check_min_interval,
116 .extra2 = &xpc_hb_check_max_interval},
Eric W. Biederman68cbf072007-02-14 00:33:41 -0800117 {}
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700118};
119static ctl_table xpc_sys_xpc_dir[] = {
120 {
Dean Nelson35190502008-04-22 14:48:55 -0500121 .ctl_name = CTL_UNNUMBERED,
122 .procname = "hb",
123 .mode = 0555,
124 .child = xpc_sys_xpc_hb_dir},
Dean Nelsone54af722005-10-25 14:07:43 -0500125 {
Dean Nelson35190502008-04-22 14:48:55 -0500126 .ctl_name = CTL_UNNUMBERED,
127 .procname = "disengage_request_timelimit",
128 .data = &xpc_disengage_request_timelimit,
129 .maxlen = sizeof(int),
130 .mode = 0644,
131 .proc_handler = &proc_dointvec_minmax,
132 .strategy = &sysctl_intvec,
133 .extra1 = &xpc_disengage_request_min_timelimit,
134 .extra2 = &xpc_disengage_request_max_timelimit},
Eric W. Biederman68cbf072007-02-14 00:33:41 -0800135 {}
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700136};
137static ctl_table xpc_sys_dir[] = {
138 {
Dean Nelson35190502008-04-22 14:48:55 -0500139 .ctl_name = CTL_UNNUMBERED,
140 .procname = "xpc",
141 .mode = 0555,
142 .child = xpc_sys_xpc_dir},
Eric W. Biederman68cbf072007-02-14 00:33:41 -0800143 {}
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700144};
145static struct ctl_table_header *xpc_sysctl;
146
Dean Nelson1ecaded2006-01-06 09:48:21 -0600147/* non-zero if any remote partition disengage request was timed out */
148int xpc_disengage_request_timedout;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700149
150/* #of IRQs received */
Dean Nelson33ba3c72008-07-29 22:34:07 -0700151atomic_t xpc_act_IRQ_rcvd;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700152
153/* IRQ handler notifies this wait queue on receipt of an IRQ */
Dean Nelson33ba3c72008-07-29 22:34:07 -0700154DECLARE_WAIT_QUEUE_HEAD(xpc_act_IRQ_wq);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700155
156static unsigned long xpc_hb_check_timeout;
Dean Nelson33ba3c72008-07-29 22:34:07 -0700157static struct timer_list xpc_hb_timer;
158void *xpc_heartbeating_to_mask;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700159
Dean Nelsone54af722005-10-25 14:07:43 -0500160/* notification that the xpc_hb_checker thread has exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500161static DECLARE_COMPLETION(xpc_hb_checker_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700162
Dean Nelsone54af722005-10-25 14:07:43 -0500163/* notification that the xpc_discovery thread has exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500164static DECLARE_COMPLETION(xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700165
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700166static void xpc_kthread_waitmsgs(struct xpc_partition *, struct xpc_channel *);
167
Dean Nelsona607c382005-09-01 14:01:37 -0500168static int xpc_system_reboot(struct notifier_block *, unsigned long, void *);
169static struct notifier_block xpc_reboot_notifier = {
170 .notifier_call = xpc_system_reboot,
171};
172
Dean Nelson780d09e2005-11-09 14:41:57 -0600173static int xpc_system_die(struct notifier_block *, unsigned long, void *);
174static struct notifier_block xpc_die_notifier = {
175 .notifier_call = xpc_system_die,
176};
177
Dean Nelson94bd2702008-07-29 22:34:05 -0700178enum xp_retval (*xpc_rsvd_page_init) (struct xpc_rsvd_page *rp);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700179void (*xpc_heartbeat_init) (void);
180void (*xpc_heartbeat_exit) (void);
181void (*xpc_increment_heartbeat) (void);
182void (*xpc_offline_heartbeat) (void);
183void (*xpc_online_heartbeat) (void);
184void (*xpc_check_remote_hb) (void);
185
Dean Nelsone17d4162008-07-29 22:34:06 -0700186enum xp_retval (*xpc_make_first_contact) (struct xpc_partition *part);
187u64 (*xpc_get_IPI_flags) (struct xpc_partition *part);
188struct xpc_msg *(*xpc_get_deliverable_msg) (struct xpc_channel *ch);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700189
190void (*xpc_initiate_partition_activation) (struct xpc_rsvd_page *remote_rp,
191 u64 remote_rp_pa, int nasid);
192
193void (*xpc_process_act_IRQ_rcvd) (int n_IRQs_expected);
Dean Nelsone17d4162008-07-29 22:34:06 -0700194enum xp_retval (*xpc_setup_infrastructure) (struct xpc_partition *part);
195void (*xpc_teardown_infrastructure) (struct xpc_partition *part);
196
Dean Nelson33ba3c72008-07-29 22:34:07 -0700197void (*xpc_mark_partition_engaged) (struct xpc_partition *part);
198void (*xpc_mark_partition_disengaged) (struct xpc_partition *part);
199void (*xpc_request_partition_disengage) (struct xpc_partition *part);
200void (*xpc_cancel_partition_disengage_request) (struct xpc_partition *part);
201u64 (*xpc_partition_engaged) (u64 partid_mask);
202u64 (*xpc_partition_disengage_requested) (u64 partid_mask);
203void (*xpc_clear_partition_engaged) (u64 partid_mask);
204void (*xpc_clear_partition_disengage_request) (u64 partid_mask);
205
206void (*xpc_IPI_send_local_activate) (int from_nasid);
207void (*xpc_IPI_send_activated) (struct xpc_partition *part);
208void (*xpc_IPI_send_local_reactivate) (int from_nasid);
209void (*xpc_IPI_send_disengage) (struct xpc_partition *part);
210
211void (*xpc_IPI_send_closerequest) (struct xpc_channel *ch,
212 unsigned long *irq_flags);
213void (*xpc_IPI_send_closereply) (struct xpc_channel *ch,
214 unsigned long *irq_flags);
215void (*xpc_IPI_send_openrequest) (struct xpc_channel *ch,
216 unsigned long *irq_flags);
217void (*xpc_IPI_send_openreply) (struct xpc_channel *ch,
218 unsigned long *irq_flags);
219
220enum xp_retval (*xpc_allocate_msg) (struct xpc_channel *ch, u32 flags,
221 struct xpc_msg **address_of_msg);
222
223enum xp_retval (*xpc_send_msg) (struct xpc_channel *ch, struct xpc_msg *msg,
224 u8 notify_type, xpc_notify_func func,
225 void *key);
226void (*xpc_received_msg) (struct xpc_channel *ch, struct xpc_msg *msg);
Dean Nelson94bd2702008-07-29 22:34:05 -0700227
Dean Nelsona607c382005-09-01 14:01:37 -0500228/*
229 * Timer function to enforce the timelimit on the partition disengage request.
230 */
231static void
232xpc_timeout_partition_disengage_request(unsigned long data)
233{
Dean Nelson35190502008-04-22 14:48:55 -0500234 struct xpc_partition *part = (struct xpc_partition *)data;
Dean Nelsona607c382005-09-01 14:01:37 -0500235
Robert P. J. Dayd167cb82008-03-29 10:05:30 -0400236 DBUG_ON(time_before(jiffies, part->disengage_request_timeout));
Dean Nelsona607c382005-09-01 14:01:37 -0500237
Dean Nelson35190502008-04-22 14:48:55 -0500238 (void)xpc_partition_disengaged(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500239
240 DBUG_ON(part->disengage_request_timeout != 0);
241 DBUG_ON(xpc_partition_engaged(1UL << XPC_PARTID(part)) != 0);
242}
243
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700244/*
245 * Notify the heartbeat check thread that an IRQ has been received.
246 */
247static irqreturn_t
Al Viro5dcded12006-10-08 14:59:19 +0100248xpc_act_IRQ_handler(int irq, void *dev_id)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700249{
250 atomic_inc(&xpc_act_IRQ_rcvd);
251 wake_up_interruptible(&xpc_act_IRQ_wq);
252 return IRQ_HANDLED;
253}
254
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700255/*
256 * Timer to produce the heartbeat. The timer structures function is
257 * already set when this is initially called. A tunable is used to
258 * specify when the next timeout should occur.
259 */
260static void
261xpc_hb_beater(unsigned long dummy)
262{
Dean Nelson33ba3c72008-07-29 22:34:07 -0700263 xpc_increment_heartbeat();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700264
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500265 if (time_after_eq(jiffies, xpc_hb_check_timeout))
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700266 wake_up_interruptible(&xpc_act_IRQ_wq);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700267
268 xpc_hb_timer.expires = jiffies + (xpc_hb_interval * HZ);
269 add_timer(&xpc_hb_timer);
270}
271
Dean Nelson33ba3c72008-07-29 22:34:07 -0700272static void
273xpc_start_hb_beater(void)
274{
275 xpc_heartbeat_init();
276 init_timer(&xpc_hb_timer);
277 xpc_hb_timer.function = xpc_hb_beater;
278 xpc_hb_beater(0);
279}
280
281static void
282xpc_stop_hb_beater(void)
283{
284 del_timer_sync(&xpc_hb_timer);
285 xpc_heartbeat_exit();
286}
287
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700288/*
289 * This thread is responsible for nearly all of the partition
290 * activation/deactivation.
291 */
292static int
293xpc_hb_checker(void *ignore)
294{
295 int last_IRQ_count = 0;
296 int new_IRQ_count;
Dean Nelson35190502008-04-22 14:48:55 -0500297 int force_IRQ = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700298
299 /* this thread was marked active by xpc_hb_init() */
300
Mike Travis0bc3cc02008-07-24 18:21:31 -0700301 set_cpus_allowed_ptr(current, &cpumask_of_cpu(XPC_HB_CHECK_CPU));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700302
Dean Nelson4c013f52007-11-07 07:53:06 -0600303 /* set our heartbeating to other partitions into motion */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700304 xpc_hb_check_timeout = jiffies + (xpc_hb_check_interval * HZ);
Dean Nelson33ba3c72008-07-29 22:34:07 -0700305 xpc_start_hb_beater();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700306
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500307 while (!xpc_exiting) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700308
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700309 dev_dbg(xpc_part, "woke up with %d ticks rem; %d IRQs have "
310 "been received\n",
Dean Nelson35190502008-04-22 14:48:55 -0500311 (int)(xpc_hb_check_timeout - jiffies),
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700312 atomic_read(&xpc_act_IRQ_rcvd) - last_IRQ_count);
313
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700314 /* checking of remote heartbeats is skewed by IRQ handling */
Robert P. J. Dayd167cb82008-03-29 10:05:30 -0400315 if (time_after_eq(jiffies, xpc_hb_check_timeout)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700316 dev_dbg(xpc_part, "checking remote heartbeats\n");
317 xpc_check_remote_hb();
318
319 /*
320 * We need to periodically recheck to ensure no
321 * IPI/AMO pairs have been missed. That check
322 * must always reset xpc_hb_check_timeout.
323 */
324 force_IRQ = 1;
325 }
326
Dean Nelsona607c382005-09-01 14:01:37 -0500327 /* check for outstanding IRQs */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700328 new_IRQ_count = atomic_read(&xpc_act_IRQ_rcvd);
329 if (last_IRQ_count < new_IRQ_count || force_IRQ != 0) {
330 force_IRQ = 0;
331
332 dev_dbg(xpc_part, "found an IRQ to process; will be "
333 "resetting xpc_hb_check_timeout\n");
334
Dean Nelson33ba3c72008-07-29 22:34:07 -0700335 xpc_process_act_IRQ_rcvd(new_IRQ_count -
336 last_IRQ_count);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700337 last_IRQ_count = new_IRQ_count;
338
339 xpc_hb_check_timeout = jiffies +
Dean Nelson35190502008-04-22 14:48:55 -0500340 (xpc_hb_check_interval * HZ);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700341 }
Dean Nelsona607c382005-09-01 14:01:37 -0500342
343 /* wait for IRQ or timeout */
Dean Nelson35190502008-04-22 14:48:55 -0500344 (void)wait_event_interruptible(xpc_act_IRQ_wq,
345 (last_IRQ_count <
346 atomic_read(&xpc_act_IRQ_rcvd)
347 || time_after_eq(jiffies,
348 xpc_hb_check_timeout) ||
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500349 xpc_exiting));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700350 }
351
Dean Nelson33ba3c72008-07-29 22:34:07 -0700352 xpc_stop_hb_beater();
353
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700354 dev_dbg(xpc_part, "heartbeat checker is exiting\n");
355
Dean Nelsone54af722005-10-25 14:07:43 -0500356 /* mark this thread as having exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500357 complete(&xpc_hb_checker_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700358 return 0;
359}
360
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700361/*
362 * This thread will attempt to discover other partitions to activate
363 * based on info provided by SAL. This new thread is short lived and
364 * will exit once discovery is complete.
365 */
366static int
367xpc_initiate_discovery(void *ignore)
368{
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700369 xpc_discovery();
370
371 dev_dbg(xpc_part, "discovery thread is exiting\n");
372
Dean Nelsone54af722005-10-25 14:07:43 -0500373 /* mark this thread as having exited */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500374 complete(&xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700375 return 0;
376}
377
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700378/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700379 * The first kthread assigned to a newly activated partition is the one
Dean Nelsone17d4162008-07-29 22:34:06 -0700380 * created by XPC HB with which it calls xpc_activating(). XPC hangs on to
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700381 * that kthread until the partition is brought down, at which time that kthread
382 * returns back to XPC HB. (The return of that kthread will signify to XPC HB
383 * that XPC has dismantled all communication infrastructure for the associated
384 * partition.) This kthread becomes the channel manager for that partition.
385 *
386 * Each active partition has a channel manager, who, besides connecting and
387 * disconnecting channels, will ensure that each of the partition's connected
388 * channels has the required number of assigned kthreads to get the work done.
389 */
390static void
391xpc_channel_mgr(struct xpc_partition *part)
392{
393 while (part->act_state != XPC_P_DEACTIVATING ||
Dean Nelson35190502008-04-22 14:48:55 -0500394 atomic_read(&part->nchannels_active) > 0 ||
395 !xpc_partition_disengaged(part)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700396
397 xpc_process_channel_activity(part);
398
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700399 /*
400 * Wait until we've been requested to activate kthreads or
401 * all of the channel's message queues have been torn down or
402 * a signal is pending.
403 *
404 * The channel_mgr_requests is set to 1 after being awakened,
405 * This is done to prevent the channel mgr from making one pass
406 * through the loop for each request, since he will
407 * be servicing all the requests in one pass. The reason it's
408 * set to 1 instead of 0 is so that other kthreads will know
409 * that the channel mgr is running and won't bother trying to
410 * wake him up.
411 */
412 atomic_dec(&part->channel_mgr_requests);
Dean Nelson35190502008-04-22 14:48:55 -0500413 (void)wait_event_interruptible(part->channel_mgr_wq,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500414 (atomic_read(&part->channel_mgr_requests) > 0 ||
415 part->local_IPI_amo != 0 ||
416 (part->act_state == XPC_P_DEACTIVATING &&
417 atomic_read(&part->nchannels_active) == 0 &&
418 xpc_partition_disengaged(part))));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700419 atomic_set(&part->channel_mgr_requests, 1);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700420 }
421}
422
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700423/*
424 * When XPC HB determines that a partition has come up, it will create a new
425 * kthread and that kthread will call this function to attempt to set up the
426 * basic infrastructure used for Cross Partition Communication with the newly
427 * upped partition.
428 *
429 * The kthread that was created by XPC HB and which setup the XPC
Dean Nelsone17d4162008-07-29 22:34:06 -0700430 * infrastructure will remain assigned to the partition becoming the channel
431 * manager for that partition until the partition is deactivating, at which
432 * time the kthread will teardown the XPC infrastructure and then exit.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700433 */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700434static int
435xpc_activating(void *__partid)
436{
Dean Nelson64d032b2008-05-12 14:02:03 -0700437 short partid = (u64)__partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700438 struct xpc_partition *part = &xpc_partitions[partid];
439 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700440
Dean Nelsonbc63d382008-07-29 22:34:04 -0700441 DBUG_ON(partid < 0 || partid >= xp_max_npartitions);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700442
443 spin_lock_irqsave(&part->act_lock, irq_flags);
444
445 if (part->act_state == XPC_P_DEACTIVATING) {
446 part->act_state = XPC_P_INACTIVE;
447 spin_unlock_irqrestore(&part->act_lock, irq_flags);
448 part->remote_rp_pa = 0;
449 return 0;
450 }
451
452 /* indicate the thread is activating */
453 DBUG_ON(part->act_state != XPC_P_ACTIVATION_REQ);
454 part->act_state = XPC_P_ACTIVATING;
455
456 XPC_SET_REASON(part, 0, 0);
457 spin_unlock_irqrestore(&part->act_lock, irq_flags);
458
Dean Nelsone17d4162008-07-29 22:34:06 -0700459 dev_dbg(xpc_part, "activating partition %d\n", partid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700460
Dean Nelson33ba3c72008-07-29 22:34:07 -0700461 xpc_allow_hb(partid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700462
Dean Nelsone17d4162008-07-29 22:34:06 -0700463 if (xpc_setup_infrastructure(part) == xpSuccess) {
464 (void)xpc_part_ref(part); /* this will always succeed */
465
466 if (xpc_make_first_contact(part) == xpSuccess) {
467 xpc_mark_partition_active(part);
468 xpc_channel_mgr(part);
469 /* won't return until partition is deactivating */
470 }
471
472 xpc_part_deref(part);
473 xpc_teardown_infrastructure(part);
474 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700475
Dean Nelson33ba3c72008-07-29 22:34:07 -0700476 xpc_disallow_hb(partid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700477 xpc_mark_partition_inactive(part);
478
Dean Nelson65c17b82008-05-12 14:02:02 -0700479 if (part->reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700480 /* interrupting ourselves results in activating partition */
Dean Nelson33ba3c72008-07-29 22:34:07 -0700481 xpc_IPI_send_local_reactivate(part->reactivate_nasid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700482 }
483
484 return 0;
485}
486
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700487void
488xpc_activate_partition(struct xpc_partition *part)
489{
Dean Nelson64d032b2008-05-12 14:02:03 -0700490 short partid = XPC_PARTID(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700491 unsigned long irq_flags;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500492 struct task_struct *kthread;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700493
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700494 spin_lock_irqsave(&part->act_lock, irq_flags);
495
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700496 DBUG_ON(part->act_state != XPC_P_INACTIVE);
497
Robin Holt7c6c6632006-02-02 12:30:21 -0600498 part->act_state = XPC_P_ACTIVATION_REQ;
Dean Nelson65c17b82008-05-12 14:02:02 -0700499 XPC_SET_REASON(part, xpCloneKThread, __LINE__);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700500
501 spin_unlock_irqrestore(&part->act_lock, irq_flags);
Robin Holt7c6c6632006-02-02 12:30:21 -0600502
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500503 kthread = kthread_run(xpc_activating, (void *)((u64)partid), "xpc%02d",
504 partid);
505 if (IS_ERR(kthread)) {
Robin Holt7c6c6632006-02-02 12:30:21 -0600506 spin_lock_irqsave(&part->act_lock, irq_flags);
507 part->act_state = XPC_P_INACTIVE;
Dean Nelson65c17b82008-05-12 14:02:02 -0700508 XPC_SET_REASON(part, xpCloneKThreadFailed, __LINE__);
Robin Holt7c6c6632006-02-02 12:30:21 -0600509 spin_unlock_irqrestore(&part->act_lock, irq_flags);
510 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700511}
512
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700513/*
Dean Nelson33ba3c72008-07-29 22:34:07 -0700514 * Check to see if there is any channel activity to/from the specified
515 * partition.
516 */
517static void
518xpc_check_for_channel_activity(struct xpc_partition *part)
519{
520 u64 IPI_amo;
521 unsigned long irq_flags;
522
523/* this needs to be uncommented, but I'm thinking this function and the */
524/* ones that call it need to be moved into xpc_sn2.c... */
525 IPI_amo = 0; /* = xpc_IPI_receive(part->local_IPI_amo_va); */
526 if (IPI_amo == 0)
527 return;
528
529 spin_lock_irqsave(&part->IPI_lock, irq_flags);
530 part->local_IPI_amo |= IPI_amo;
531 spin_unlock_irqrestore(&part->IPI_lock, irq_flags);
532
533 dev_dbg(xpc_chan, "received IPI from partid=%d, IPI_amo=0x%lx\n",
534 XPC_PARTID(part), IPI_amo);
535
536 xpc_wakeup_channel_mgr(part);
537}
538
539/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700540 * Handle the receipt of a SGI_XPC_NOTIFY IRQ by seeing whether the specified
541 * partition actually sent it. Since SGI_XPC_NOTIFY IRQs may be shared by more
542 * than one partition, we use an AMO_t structure per partition to indicate
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500543 * whether a partition has sent an IPI or not. If it has, then wake up the
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700544 * associated kthread to handle it.
545 *
546 * All SGI_XPC_NOTIFY IRQs received by XPC are the result of IPIs sent by XPC
547 * running on other partitions.
548 *
549 * Noteworthy Arguments:
550 *
551 * irq - Interrupt ReQuest number. NOT USED.
552 *
553 * dev_id - partid of IPI's potential sender.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700554 */
555irqreturn_t
Al Viro5dcded12006-10-08 14:59:19 +0100556xpc_notify_IRQ_handler(int irq, void *dev_id)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700557{
Dean Nelson64d032b2008-05-12 14:02:03 -0700558 short partid = (short)(u64)dev_id;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700559 struct xpc_partition *part = &xpc_partitions[partid];
560
Dean Nelsonbc63d382008-07-29 22:34:04 -0700561 DBUG_ON(partid < 0 || partid >= xp_max_npartitions);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700562
563 if (xpc_part_ref(part)) {
564 xpc_check_for_channel_activity(part);
565
566 xpc_part_deref(part);
567 }
568 return IRQ_HANDLED;
569}
570
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700571/*
572 * Check to see if xpc_notify_IRQ_handler() dropped any IPIs on the floor
573 * because the write to their associated IPI amo completed after the IRQ/IPI
574 * was received.
575 */
576void
577xpc_dropped_IPI_check(struct xpc_partition *part)
578{
579 if (xpc_part_ref(part)) {
580 xpc_check_for_channel_activity(part);
581
582 part->dropped_IPI_timer.expires = jiffies +
Dean Nelsone17d4162008-07-29 22:34:06 -0700583 XPC_P_DROPPED_IPI_WAIT_INTERVAL;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700584 add_timer(&part->dropped_IPI_timer);
585 xpc_part_deref(part);
586 }
587}
588
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700589void
590xpc_activate_kthreads(struct xpc_channel *ch, int needed)
591{
592 int idle = atomic_read(&ch->kthreads_idle);
593 int assigned = atomic_read(&ch->kthreads_assigned);
594 int wakeup;
595
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700596 DBUG_ON(needed <= 0);
597
598 if (idle > 0) {
599 wakeup = (needed > idle) ? idle : needed;
600 needed -= wakeup;
601
602 dev_dbg(xpc_chan, "wakeup %d idle kthreads, partid=%d, "
603 "channel=%d\n", wakeup, ch->partid, ch->number);
604
605 /* only wakeup the requested number of kthreads */
606 wake_up_nr(&ch->idle_wq, wakeup);
607 }
608
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500609 if (needed <= 0)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700610 return;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700611
612 if (needed + assigned > ch->kthreads_assigned_limit) {
613 needed = ch->kthreads_assigned_limit - assigned;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500614 if (needed <= 0)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700615 return;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700616 }
617
618 dev_dbg(xpc_chan, "create %d new kthreads, partid=%d, channel=%d\n",
619 needed, ch->partid, ch->number);
620
Dean Nelsona460ef82006-11-22 08:25:00 -0600621 xpc_create_kthreads(ch, needed, 0);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700622}
623
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700624/*
625 * This function is where XPC's kthreads wait for messages to deliver.
626 */
627static void
628xpc_kthread_waitmsgs(struct xpc_partition *part, struct xpc_channel *ch)
629{
630 do {
631 /* deliver messages to their intended recipients */
632
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500633 while (ch->w_local_GP.get < ch->w_remote_GP.put &&
634 !(ch->flags & XPC_C_DISCONNECTING)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700635 xpc_deliver_msg(ch);
636 }
637
638 if (atomic_inc_return(&ch->kthreads_idle) >
Dean Nelson35190502008-04-22 14:48:55 -0500639 ch->kthreads_idle_limit) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700640 /* too many idle kthreads on this channel */
641 atomic_dec(&ch->kthreads_idle);
642 break;
643 }
644
645 dev_dbg(xpc_chan, "idle kthread calling "
646 "wait_event_interruptible_exclusive()\n");
647
Dean Nelson35190502008-04-22 14:48:55 -0500648 (void)wait_event_interruptible_exclusive(ch->idle_wq,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500649 (ch->w_local_GP.get < ch->w_remote_GP.put ||
650 (ch->flags & XPC_C_DISCONNECTING)));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700651
652 atomic_dec(&ch->kthreads_idle);
653
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500654 } while (!(ch->flags & XPC_C_DISCONNECTING));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700655}
656
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700657static int
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500658xpc_kthread_start(void *args)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700659{
Dean Nelson64d032b2008-05-12 14:02:03 -0700660 short partid = XPC_UNPACK_ARG1(args);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700661 u16 ch_number = XPC_UNPACK_ARG2(args);
662 struct xpc_partition *part = &xpc_partitions[partid];
663 struct xpc_channel *ch;
664 int n_needed;
Dean Nelsone54af722005-10-25 14:07:43 -0500665 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700666
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700667 dev_dbg(xpc_chan, "kthread starting, partid=%d, channel=%d\n",
668 partid, ch_number);
669
670 ch = &part->channels[ch_number];
671
672 if (!(ch->flags & XPC_C_DISCONNECTING)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700673
674 /* let registerer know that connection has been established */
675
Dean Nelsone54af722005-10-25 14:07:43 -0500676 spin_lock_irqsave(&ch->lock, irq_flags);
Dean Nelson4c2cd962006-02-15 08:02:21 -0600677 if (!(ch->flags & XPC_C_CONNECTEDCALLOUT)) {
678 ch->flags |= XPC_C_CONNECTEDCALLOUT;
Dean Nelsone54af722005-10-25 14:07:43 -0500679 spin_unlock_irqrestore(&ch->lock, irq_flags);
680
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700681 xpc_connected_callout(ch);
682
Dean Nelson4c2cd962006-02-15 08:02:21 -0600683 spin_lock_irqsave(&ch->lock, irq_flags);
684 ch->flags |= XPC_C_CONNECTEDCALLOUT_MADE;
685 spin_unlock_irqrestore(&ch->lock, irq_flags);
686
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700687 /*
688 * It is possible that while the callout was being
689 * made that the remote partition sent some messages.
690 * If that is the case, we may need to activate
691 * additional kthreads to help deliver them. We only
692 * need one less than total #of messages to deliver.
693 */
694 n_needed = ch->w_remote_GP.put - ch->w_local_GP.get - 1;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500695 if (n_needed > 0 && !(ch->flags & XPC_C_DISCONNECTING))
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700696 xpc_activate_kthreads(ch, n_needed);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500697
Dean Nelsone54af722005-10-25 14:07:43 -0500698 } else {
699 spin_unlock_irqrestore(&ch->lock, irq_flags);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700700 }
701
702 xpc_kthread_waitmsgs(part, ch);
703 }
704
Dean Nelsona460ef82006-11-22 08:25:00 -0600705 /* let registerer know that connection is disconnecting */
Dean Nelsone54af722005-10-25 14:07:43 -0500706
Dean Nelsona460ef82006-11-22 08:25:00 -0600707 spin_lock_irqsave(&ch->lock, irq_flags);
708 if ((ch->flags & XPC_C_CONNECTEDCALLOUT_MADE) &&
Dean Nelson35190502008-04-22 14:48:55 -0500709 !(ch->flags & XPC_C_DISCONNECTINGCALLOUT)) {
Dean Nelsona460ef82006-11-22 08:25:00 -0600710 ch->flags |= XPC_C_DISCONNECTINGCALLOUT;
Dean Nelson4c2cd962006-02-15 08:02:21 -0600711 spin_unlock_irqrestore(&ch->lock, irq_flags);
Dean Nelsona460ef82006-11-22 08:25:00 -0600712
Dean Nelson65c17b82008-05-12 14:02:02 -0700713 xpc_disconnect_callout(ch, xpDisconnecting);
Dean Nelsona460ef82006-11-22 08:25:00 -0600714
715 spin_lock_irqsave(&ch->lock, irq_flags);
716 ch->flags |= XPC_C_DISCONNECTINGCALLOUT_MADE;
717 }
718 spin_unlock_irqrestore(&ch->lock, irq_flags);
719
720 if (atomic_dec_return(&ch->kthreads_assigned) == 0) {
Dean Nelsona607c382005-09-01 14:01:37 -0500721 if (atomic_dec_return(&part->nchannels_engaged) == 0) {
722 xpc_mark_partition_disengaged(part);
723 xpc_IPI_send_disengage(part);
724 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700725 }
726
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700727 xpc_msgqueue_deref(ch);
728
729 dev_dbg(xpc_chan, "kthread exiting, partid=%d, channel=%d\n",
730 partid, ch_number);
731
732 xpc_part_deref(part);
733 return 0;
734}
735
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700736/*
737 * For each partition that XPC has established communications with, there is
738 * a minimum of one kernel thread assigned to perform any operation that
739 * may potentially sleep or block (basically the callouts to the asynchronous
740 * functions registered via xpc_connect()).
741 *
742 * Additional kthreads are created and destroyed by XPC as the workload
743 * demands.
744 *
745 * A kthread is assigned to one of the active channels that exists for a given
746 * partition.
747 */
748void
Dean Nelsona460ef82006-11-22 08:25:00 -0600749xpc_create_kthreads(struct xpc_channel *ch, int needed,
Dean Nelson35190502008-04-22 14:48:55 -0500750 int ignore_disconnecting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700751{
752 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700753 u64 args = XPC_PACK_ARGS(ch->partid, ch->number);
Dean Nelsona607c382005-09-01 14:01:37 -0500754 struct xpc_partition *part = &xpc_partitions[ch->partid];
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500755 struct task_struct *kthread;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700756
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700757 while (needed-- > 0) {
Dean Nelsone54af722005-10-25 14:07:43 -0500758
759 /*
760 * The following is done on behalf of the newly created
761 * kthread. That kthread is responsible for doing the
762 * counterpart to the following before it exits.
763 */
Dean Nelsona460ef82006-11-22 08:25:00 -0600764 if (ignore_disconnecting) {
765 if (!atomic_inc_not_zero(&ch->kthreads_assigned)) {
766 /* kthreads assigned had gone to zero */
767 BUG_ON(!(ch->flags &
Dean Nelson35190502008-04-22 14:48:55 -0500768 XPC_C_DISCONNECTINGCALLOUT_MADE));
Dean Nelsona460ef82006-11-22 08:25:00 -0600769 break;
770 }
771
772 } else if (ch->flags & XPC_C_DISCONNECTING) {
773 break;
774
775 } else if (atomic_inc_return(&ch->kthreads_assigned) == 1) {
776 if (atomic_inc_return(&part->nchannels_engaged) == 1)
777 xpc_mark_partition_engaged(part);
778 }
Dean Nelson35190502008-04-22 14:48:55 -0500779 (void)xpc_part_ref(part);
Dean Nelsone54af722005-10-25 14:07:43 -0500780 xpc_msgqueue_ref(ch);
Dean Nelsone54af722005-10-25 14:07:43 -0500781
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500782 kthread = kthread_run(xpc_kthread_start, (void *)args,
783 "xpc%02dc%d", ch->partid, ch->number);
784 if (IS_ERR(kthread)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700785 /* the fork failed */
Dean Nelsona460ef82006-11-22 08:25:00 -0600786
787 /*
788 * NOTE: if (ignore_disconnecting &&
789 * !(ch->flags & XPC_C_DISCONNECTINGCALLOUT)) is true,
790 * then we'll deadlock if all other kthreads assigned
791 * to this channel are blocked in the channel's
792 * registerer, because the only thing that will unblock
Dean Nelson65c17b82008-05-12 14:02:02 -0700793 * them is the xpDisconnecting callout that this
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500794 * failed kthread_run() would have made.
Dean Nelsona460ef82006-11-22 08:25:00 -0600795 */
796
Dean Nelsone54af722005-10-25 14:07:43 -0500797 if (atomic_dec_return(&ch->kthreads_assigned) == 0 &&
798 atomic_dec_return(&part->nchannels_engaged) == 0) {
799 xpc_mark_partition_disengaged(part);
800 xpc_IPI_send_disengage(part);
801 }
802 xpc_msgqueue_deref(ch);
803 xpc_part_deref(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700804
805 if (atomic_read(&ch->kthreads_assigned) <
Dean Nelson35190502008-04-22 14:48:55 -0500806 ch->kthreads_idle_limit) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700807 /*
808 * Flag this as an error only if we have an
809 * insufficient #of kthreads for the channel
810 * to function.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700811 */
812 spin_lock_irqsave(&ch->lock, irq_flags);
Dean Nelson65c17b82008-05-12 14:02:02 -0700813 XPC_DISCONNECT_CHANNEL(ch, xpLackOfResources,
Dean Nelson35190502008-04-22 14:48:55 -0500814 &irq_flags);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700815 spin_unlock_irqrestore(&ch->lock, irq_flags);
816 }
817 break;
818 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700819 }
820}
821
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700822void
823xpc_disconnect_wait(int ch_number)
824{
Dean Nelsona607c382005-09-01 14:01:37 -0500825 unsigned long irq_flags;
Dean Nelson64d032b2008-05-12 14:02:03 -0700826 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700827 struct xpc_partition *part;
828 struct xpc_channel *ch;
Dean Nelsone54af722005-10-25 14:07:43 -0500829 int wakeup_channel_mgr;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700830
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700831 /* now wait for all callouts to the caller's function to cease */
Dean Nelsonbc63d382008-07-29 22:34:04 -0700832 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700833 part = &xpc_partitions[partid];
834
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500835 if (!xpc_part_ref(part))
Dean Nelsone54af722005-10-25 14:07:43 -0500836 continue;
Dean Nelsone54af722005-10-25 14:07:43 -0500837
838 ch = &part->channels[ch_number];
839
840 if (!(ch->flags & XPC_C_WDISCONNECT)) {
841 xpc_part_deref(part);
842 continue;
843 }
844
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500845 wait_for_completion(&ch->wdisconnect_wait);
Dean Nelsone54af722005-10-25 14:07:43 -0500846
847 spin_lock_irqsave(&ch->lock, irq_flags);
848 DBUG_ON(!(ch->flags & XPC_C_DISCONNECTED));
849 wakeup_channel_mgr = 0;
850
851 if (ch->delayed_IPI_flags) {
852 if (part->act_state != XPC_P_DEACTIVATING) {
853 spin_lock(&part->IPI_lock);
854 XPC_SET_IPI_FLAGS(part->local_IPI_amo,
Dean Nelson35190502008-04-22 14:48:55 -0500855 ch->number,
856 ch->delayed_IPI_flags);
Dean Nelsone54af722005-10-25 14:07:43 -0500857 spin_unlock(&part->IPI_lock);
858 wakeup_channel_mgr = 1;
859 }
860 ch->delayed_IPI_flags = 0;
861 }
862
863 ch->flags &= ~XPC_C_WDISCONNECT;
864 spin_unlock_irqrestore(&ch->lock, irq_flags);
865
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500866 if (wakeup_channel_mgr)
Dean Nelsone54af722005-10-25 14:07:43 -0500867 xpc_wakeup_channel_mgr(part);
Dean Nelsone54af722005-10-25 14:07:43 -0500868
869 xpc_part_deref(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700870 }
871}
872
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700873static void
Dean Nelson65c17b82008-05-12 14:02:02 -0700874xpc_do_exit(enum xp_retval reason)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700875{
Dean Nelson64d032b2008-05-12 14:02:03 -0700876 short partid;
Dean Nelson1ecaded2006-01-06 09:48:21 -0600877 int active_part_count, printed_waiting_msg = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700878 struct xpc_partition *part;
Dean Nelson1ecaded2006-01-06 09:48:21 -0600879 unsigned long printmsg_time, disengage_request_timeout = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700880
Dean Nelsona607c382005-09-01 14:01:37 -0500881 /* a 'rmmod XPC' and a 'reboot' cannot both end up here together */
882 DBUG_ON(xpc_exiting == 1);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700883
884 /*
Dean Nelsona607c382005-09-01 14:01:37 -0500885 * Let the heartbeat checker thread and the discovery thread
886 * (if one is running) know that they should exit. Also wake up
887 * the heartbeat checker thread in case it's sleeping.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700888 */
889 xpc_exiting = 1;
890 wake_up_interruptible(&xpc_act_IRQ_wq);
891
Dean Nelsona607c382005-09-01 14:01:37 -0500892 /* ignore all incoming interrupts */
893 free_irq(SGI_XPC_ACTIVATE, NULL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700894
Dean Nelsone54af722005-10-25 14:07:43 -0500895 /* wait for the discovery thread to exit */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500896 wait_for_completion(&xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700897
Dean Nelsone54af722005-10-25 14:07:43 -0500898 /* wait for the heartbeat checker thread to exit */
Jes Sorensenf9e505a2006-01-17 12:52:21 -0500899 wait_for_completion(&xpc_hb_checker_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700900
Dean Nelsona607c382005-09-01 14:01:37 -0500901 /* sleep for a 1/3 of a second or so */
Dean Nelson35190502008-04-22 14:48:55 -0500902 (void)msleep_interruptible(300);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700903
904 /* wait for all partitions to become inactive */
905
Dean Nelson1ecaded2006-01-06 09:48:21 -0600906 printmsg_time = jiffies + (XPC_DISENGAGE_PRINTMSG_INTERVAL * HZ);
907 xpc_disengage_request_timedout = 0;
Dean Nelsona607c382005-09-01 14:01:37 -0500908
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700909 do {
910 active_part_count = 0;
911
Dean Nelsonbc63d382008-07-29 22:34:04 -0700912 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700913 part = &xpc_partitions[partid];
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700914
Dean Nelsona607c382005-09-01 14:01:37 -0500915 if (xpc_partition_disengaged(part) &&
Dean Nelson35190502008-04-22 14:48:55 -0500916 part->act_state == XPC_P_INACTIVE) {
Dean Nelsona607c382005-09-01 14:01:37 -0500917 continue;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700918 }
Dean Nelsona607c382005-09-01 14:01:37 -0500919
920 active_part_count++;
921
922 XPC_DEACTIVATE_PARTITION(part, reason);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600923
924 if (part->disengage_request_timeout >
Dean Nelson35190502008-04-22 14:48:55 -0500925 disengage_request_timeout) {
Dean Nelson1ecaded2006-01-06 09:48:21 -0600926 disengage_request_timeout =
Dean Nelson35190502008-04-22 14:48:55 -0500927 part->disengage_request_timeout;
Dean Nelson1ecaded2006-01-06 09:48:21 -0600928 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700929 }
930
Dean Nelson1ecaded2006-01-06 09:48:21 -0600931 if (xpc_partition_engaged(-1UL)) {
932 if (time_after(jiffies, printmsg_time)) {
933 dev_info(xpc_part, "waiting for remote "
Dean Nelson35190502008-04-22 14:48:55 -0500934 "partitions to disengage, timeout in "
935 "%ld seconds\n",
936 (disengage_request_timeout - jiffies)
937 / HZ);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600938 printmsg_time = jiffies +
Dean Nelson35190502008-04-22 14:48:55 -0500939 (XPC_DISENGAGE_PRINTMSG_INTERVAL * HZ);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600940 printed_waiting_msg = 1;
941 }
942
943 } else if (active_part_count > 0) {
944 if (printed_waiting_msg) {
945 dev_info(xpc_part, "waiting for local partition"
Dean Nelson35190502008-04-22 14:48:55 -0500946 " to disengage\n");
Dean Nelson1ecaded2006-01-06 09:48:21 -0600947 printed_waiting_msg = 0;
948 }
949
950 } else {
951 if (!xpc_disengage_request_timedout) {
952 dev_info(xpc_part, "all partitions have "
Dean Nelson35190502008-04-22 14:48:55 -0500953 "disengaged\n");
Dean Nelson1ecaded2006-01-06 09:48:21 -0600954 }
955 break;
Dean Nelsona607c382005-09-01 14:01:37 -0500956 }
957
958 /* sleep for a 1/3 of a second or so */
Dean Nelson35190502008-04-22 14:48:55 -0500959 (void)msleep_interruptible(300);
Dean Nelsona607c382005-09-01 14:01:37 -0500960
961 } while (1);
962
963 DBUG_ON(xpc_partition_engaged(-1UL));
Dean Nelson33ba3c72008-07-29 22:34:07 -0700964 DBUG_ON(xpc_any_hbs_allowed() != 0);
Dean Nelsona607c382005-09-01 14:01:37 -0500965
Dean Nelsona607c382005-09-01 14:01:37 -0500966 /* indicate to others that our reserved page is uninitialized */
Dean Nelson94bd2702008-07-29 22:34:05 -0700967 xpc_rsvd_page->stamp = ZERO_STAMP;
Dean Nelsona607c382005-09-01 14:01:37 -0500968
Dean Nelson65c17b82008-05-12 14:02:02 -0700969 if (reason == xpUnloading) {
Dean Nelson35190502008-04-22 14:48:55 -0500970 (void)unregister_die_notifier(&xpc_die_notifier);
Dean Nelsonbc63d382008-07-29 22:34:04 -0700971 (void)unregister_reboot_notifier(&xpc_reboot_notifier);
Dean Nelson0752c672006-01-10 11:07:19 -0600972 }
Dean Nelson780d09e2005-11-09 14:41:57 -0600973
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700974 /* close down protections for IPI operations */
975 xpc_restrict_IPI_ops();
976
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700977 /* clear the interface to XPC's functions */
978 xpc_clear_interface();
979
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500980 if (xpc_sysctl)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700981 unregister_sysctl_table(xpc_sysctl);
Dean Nelson7682a4c2006-08-08 15:03:29 -0500982
Dean Nelsonbc63d382008-07-29 22:34:04 -0700983 kfree(xpc_partitions);
Dean Nelson7682a4c2006-08-08 15:03:29 -0500984 kfree(xpc_remote_copy_buffer_base);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700985}
986
Dean Nelsona607c382005-09-01 14:01:37 -0500987/*
Dean Nelsond6ad0332006-01-10 11:08:55 -0600988 * This function is called when the system is being rebooted.
989 */
990static int
991xpc_system_reboot(struct notifier_block *nb, unsigned long event, void *unused)
992{
Dean Nelson65c17b82008-05-12 14:02:02 -0700993 enum xp_retval reason;
Dean Nelsond6ad0332006-01-10 11:08:55 -0600994
Dean Nelsond6ad0332006-01-10 11:08:55 -0600995 switch (event) {
996 case SYS_RESTART:
Dean Nelson65c17b82008-05-12 14:02:02 -0700997 reason = xpSystemReboot;
Dean Nelsond6ad0332006-01-10 11:08:55 -0600998 break;
999 case SYS_HALT:
Dean Nelson65c17b82008-05-12 14:02:02 -07001000 reason = xpSystemHalt;
Dean Nelsond6ad0332006-01-10 11:08:55 -06001001 break;
1002 case SYS_POWER_OFF:
Dean Nelson65c17b82008-05-12 14:02:02 -07001003 reason = xpSystemPoweroff;
Dean Nelsond6ad0332006-01-10 11:08:55 -06001004 break;
1005 default:
Dean Nelson65c17b82008-05-12 14:02:02 -07001006 reason = xpSystemGoingDown;
Dean Nelsond6ad0332006-01-10 11:08:55 -06001007 }
1008
1009 xpc_do_exit(reason);
1010 return NOTIFY_DONE;
1011}
1012
Dean Nelsond6ad0332006-01-10 11:08:55 -06001013/*
1014 * Notify other partitions to disengage from all references to our memory.
Dean Nelson780d09e2005-11-09 14:41:57 -06001015 */
1016static void
1017xpc_die_disengage(void)
1018{
1019 struct xpc_partition *part;
Dean Nelson64d032b2008-05-12 14:02:03 -07001020 short partid;
Dean Nelson780d09e2005-11-09 14:41:57 -06001021 unsigned long engaged;
Dean Nelson1ecaded2006-01-06 09:48:21 -06001022 long time, printmsg_time, disengage_request_timeout;
Dean Nelson780d09e2005-11-09 14:41:57 -06001023
Dean Nelson780d09e2005-11-09 14:41:57 -06001024 /* keep xpc_hb_checker thread from doing anything (just in case) */
1025 xpc_exiting = 1;
1026
Dean Nelson33ba3c72008-07-29 22:34:07 -07001027 xpc_disallow_all_hbs(); /*indicate we're deactivated */
Dean Nelson780d09e2005-11-09 14:41:57 -06001028
Dean Nelsonbc63d382008-07-29 22:34:04 -07001029 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson780d09e2005-11-09 14:41:57 -06001030 part = &xpc_partitions[partid];
1031
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001032 if (!XPC_SUPPORTS_DISENGAGE_REQUEST(part->
1033 remote_vars_version)) {
Dean Nelson780d09e2005-11-09 14:41:57 -06001034
1035 /* just in case it was left set by an earlier XPC */
1036 xpc_clear_partition_engaged(1UL << partid);
1037 continue;
1038 }
1039
1040 if (xpc_partition_engaged(1UL << partid) ||
Dean Nelson35190502008-04-22 14:48:55 -05001041 part->act_state != XPC_P_INACTIVE) {
Dean Nelson780d09e2005-11-09 14:41:57 -06001042 xpc_request_partition_disengage(part);
1043 xpc_mark_partition_disengaged(part);
1044 xpc_IPI_send_disengage(part);
1045 }
1046 }
1047
Dean Nelson1ecaded2006-01-06 09:48:21 -06001048 time = rtc_time();
1049 printmsg_time = time +
Dean Nelson35190502008-04-22 14:48:55 -05001050 (XPC_DISENGAGE_PRINTMSG_INTERVAL * sn_rtc_cycles_per_second);
Dean Nelson1ecaded2006-01-06 09:48:21 -06001051 disengage_request_timeout = time +
Dean Nelson35190502008-04-22 14:48:55 -05001052 (xpc_disengage_request_timelimit * sn_rtc_cycles_per_second);
Dean Nelson780d09e2005-11-09 14:41:57 -06001053
1054 /* wait for all other partitions to disengage from us */
1055
Dean Nelson1ecaded2006-01-06 09:48:21 -06001056 while (1) {
1057 engaged = xpc_partition_engaged(-1UL);
1058 if (!engaged) {
1059 dev_info(xpc_part, "all partitions have disengaged\n");
1060 break;
1061 }
Dean Nelson780d09e2005-11-09 14:41:57 -06001062
Dean Nelson1ecaded2006-01-06 09:48:21 -06001063 time = rtc_time();
1064 if (time >= disengage_request_timeout) {
Dean Nelsonbc63d382008-07-29 22:34:04 -07001065 for (partid = 0; partid < xp_max_npartitions;
1066 partid++) {
Dean Nelson1ecaded2006-01-06 09:48:21 -06001067 if (engaged & (1UL << partid)) {
1068 dev_info(xpc_part, "disengage from "
Dean Nelson35190502008-04-22 14:48:55 -05001069 "remote partition %d timed "
1070 "out\n", partid);
Dean Nelson1ecaded2006-01-06 09:48:21 -06001071 }
1072 }
1073 break;
1074 }
1075
1076 if (time >= printmsg_time) {
Dean Nelson780d09e2005-11-09 14:41:57 -06001077 dev_info(xpc_part, "waiting for remote partitions to "
Dean Nelson35190502008-04-22 14:48:55 -05001078 "disengage, timeout in %ld seconds\n",
1079 (disengage_request_timeout - time) /
1080 sn_rtc_cycles_per_second);
Dean Nelson1ecaded2006-01-06 09:48:21 -06001081 printmsg_time = time +
Dean Nelson35190502008-04-22 14:48:55 -05001082 (XPC_DISENGAGE_PRINTMSG_INTERVAL *
1083 sn_rtc_cycles_per_second);
Dean Nelson780d09e2005-11-09 14:41:57 -06001084 }
1085 }
Dean Nelson780d09e2005-11-09 14:41:57 -06001086}
1087
Dean Nelson780d09e2005-11-09 14:41:57 -06001088/*
Dean Nelson1f4674b2006-01-10 11:08:00 -06001089 * This function is called when the system is being restarted or halted due
1090 * to some sort of system failure. If this is the case we need to notify the
1091 * other partitions to disengage from all references to our memory.
1092 * This function can also be called when our heartbeater could be offlined
1093 * for a time. In this case we need to notify other partitions to not worry
1094 * about the lack of a heartbeat.
Dean Nelson780d09e2005-11-09 14:41:57 -06001095 */
1096static int
1097xpc_system_die(struct notifier_block *nb, unsigned long event, void *unused)
1098{
1099 switch (event) {
1100 case DIE_MACHINE_RESTART:
1101 case DIE_MACHINE_HALT:
1102 xpc_die_disengage();
1103 break;
Dean Nelson1f4674b2006-01-10 11:08:00 -06001104
1105 case DIE_KDEBUG_ENTER:
1106 /* Should lack of heartbeat be ignored by other partitions? */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001107 if (!xpc_kdebug_ignore)
Dean Nelson1f4674b2006-01-10 11:08:00 -06001108 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001109
Dean Nelson1f4674b2006-01-10 11:08:00 -06001110 /* fall through */
Dean Nelson780d09e2005-11-09 14:41:57 -06001111 case DIE_MCA_MONARCH_ENTER:
1112 case DIE_INIT_MONARCH_ENTER:
Dean Nelson33ba3c72008-07-29 22:34:07 -07001113 xpc_offline_heartbeat();
Dean Nelson780d09e2005-11-09 14:41:57 -06001114 break;
Dean Nelson1f4674b2006-01-10 11:08:00 -06001115
1116 case DIE_KDEBUG_LEAVE:
1117 /* Is lack of heartbeat being ignored by other partitions? */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001118 if (!xpc_kdebug_ignore)
Dean Nelson1f4674b2006-01-10 11:08:00 -06001119 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001120
Dean Nelson1f4674b2006-01-10 11:08:00 -06001121 /* fall through */
Dean Nelson780d09e2005-11-09 14:41:57 -06001122 case DIE_MCA_MONARCH_LEAVE:
1123 case DIE_INIT_MONARCH_LEAVE:
Dean Nelson33ba3c72008-07-29 22:34:07 -07001124 xpc_online_heartbeat();
Dean Nelson780d09e2005-11-09 14:41:57 -06001125 break;
1126 }
1127
1128 return NOTIFY_DONE;
1129}
1130
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001131int __init
1132xpc_init(void)
1133{
1134 int ret;
Dean Nelson64d032b2008-05-12 14:02:03 -07001135 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001136 struct xpc_partition *part;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001137 struct task_struct *kthread;
Dean Nelson7682a4c2006-08-08 15:03:29 -05001138 size_t buf_size;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001139
Dean Nelson94bd2702008-07-29 22:34:05 -07001140 if (is_shub()) {
1141 /*
1142 * The ia64-sn2 architecture supports at most 64 partitions.
1143 * And the inability to unregister remote AMOs restricts us
1144 * further to only support exactly 64 partitions on this
1145 * architecture, no less.
1146 */
1147 if (xp_max_npartitions != 64)
1148 return -EINVAL;
1149
1150 xpc_init_sn2();
1151
1152 } else if (is_uv()) {
1153 xpc_init_uv();
1154
1155 } else {
Dean Nelson408865c2005-09-08 10:46:58 -05001156 return -ENODEV;
Dean Nelson94bd2702008-07-29 22:34:05 -07001157 }
Dean Nelson408865c2005-09-08 10:46:58 -05001158
Dean Nelsonbc63d382008-07-29 22:34:04 -07001159 snprintf(xpc_part->bus_id, BUS_ID_SIZE, "part");
1160 snprintf(xpc_chan->bus_id, BUS_ID_SIZE, "chan");
1161
Dean Nelson7682a4c2006-08-08 15:03:29 -05001162 buf_size = max(XPC_RP_VARS_SIZE,
Dean Nelson35190502008-04-22 14:48:55 -05001163 XPC_RP_HEADER_SIZE + XP_NASID_MASK_BYTES);
Dean Nelson7682a4c2006-08-08 15:03:29 -05001164 xpc_remote_copy_buffer = xpc_kmalloc_cacheline_aligned(buf_size,
Dean Nelson35190502008-04-22 14:48:55 -05001165 GFP_KERNEL,
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001166 &xpc_remote_copy_buffer_base);
Dean Nelsonbc63d382008-07-29 22:34:04 -07001167 if (xpc_remote_copy_buffer == NULL) {
1168 dev_err(xpc_part, "can't get memory for remote copy buffer\n");
Dean Nelson7682a4c2006-08-08 15:03:29 -05001169 return -ENOMEM;
Dean Nelsonbc63d382008-07-29 22:34:04 -07001170 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001171
Dean Nelsonbc63d382008-07-29 22:34:04 -07001172 xpc_partitions = kzalloc(sizeof(struct xpc_partition) *
1173 xp_max_npartitions, GFP_KERNEL);
1174 if (xpc_partitions == NULL) {
1175 dev_err(xpc_part, "can't get memory for partition structure\n");
1176 ret = -ENOMEM;
1177 goto out_1;
1178 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001179
1180 /*
1181 * The first few fields of each entry of xpc_partitions[] need to
1182 * be initialized now so that calls to xpc_connect() and
1183 * xpc_disconnect() can be made prior to the activation of any remote
1184 * partition. NOTE THAT NONE OF THE OTHER FIELDS BELONGING TO THESE
1185 * ENTRIES ARE MEANINGFUL UNTIL AFTER AN ENTRY'S CORRESPONDING
1186 * PARTITION HAS BEEN ACTIVATED.
1187 */
Dean Nelsonbc63d382008-07-29 22:34:04 -07001188 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001189 part = &xpc_partitions[partid];
1190
Dean Nelson35190502008-04-22 14:48:55 -05001191 DBUG_ON((u64)part != L1_CACHE_ALIGN((u64)part));
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001192
1193 part->act_IRQ_rcvd = 0;
1194 spin_lock_init(&part->act_lock);
1195 part->act_state = XPC_P_INACTIVE;
1196 XPC_SET_REASON(part, 0, 0);
Dean Nelsona607c382005-09-01 14:01:37 -05001197
1198 init_timer(&part->disengage_request_timer);
1199 part->disengage_request_timer.function =
Dean Nelson35190502008-04-22 14:48:55 -05001200 xpc_timeout_partition_disengage_request;
1201 part->disengage_request_timer.data = (unsigned long)part;
Dean Nelsona607c382005-09-01 14:01:37 -05001202
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001203 part->setup_state = XPC_P_UNSET;
1204 init_waitqueue_head(&part->teardown_wq);
1205 atomic_set(&part->references, 0);
1206 }
1207
Dean Nelsonbc63d382008-07-29 22:34:04 -07001208 xpc_sysctl = register_sysctl_table(xpc_sys_dir);
1209
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001210 /*
1211 * Open up protections for IPI operations (and AMO operations on
1212 * Shub 1.1 systems).
1213 */
1214 xpc_allow_IPI_ops();
1215
1216 /*
1217 * Interrupts being processed will increment this atomic variable and
1218 * awaken the heartbeat thread which will process the interrupts.
1219 */
1220 atomic_set(&xpc_act_IRQ_rcvd, 0);
1221
1222 /*
1223 * This is safe to do before the xpc_hb_checker thread has started
1224 * because the handler releases a wait queue. If an interrupt is
1225 * received before the thread is waiting, it will not go to sleep,
1226 * but rather immediately process the interrupt.
1227 */
1228 ret = request_irq(SGI_XPC_ACTIVATE, xpc_act_IRQ_handler, 0,
Dean Nelson35190502008-04-22 14:48:55 -05001229 "xpc hb", NULL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001230 if (ret != 0) {
1231 dev_err(xpc_part, "can't register ACTIVATE IRQ handler, "
1232 "errno=%d\n", -ret);
Dean Nelsonbc63d382008-07-29 22:34:04 -07001233 ret = -EBUSY;
1234 goto out_2;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001235 }
1236
1237 /*
1238 * Fill the partition reserved page with the information needed by
1239 * other partitions to discover we are alive and establish initial
1240 * communications.
1241 */
Dean Nelson94bd2702008-07-29 22:34:05 -07001242 xpc_rsvd_page = xpc_setup_rsvd_page();
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001243 if (xpc_rsvd_page == NULL) {
Dean Nelsonbc63d382008-07-29 22:34:04 -07001244 dev_err(xpc_part, "can't setup our reserved page\n");
1245 ret = -EBUSY;
1246 goto out_3;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001247 }
1248
Dean Nelsona607c382005-09-01 14:01:37 -05001249 /* add ourselves to the reboot_notifier_list */
1250 ret = register_reboot_notifier(&xpc_reboot_notifier);
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001251 if (ret != 0)
Dean Nelsona607c382005-09-01 14:01:37 -05001252 dev_warn(xpc_part, "can't register reboot notifier\n");
Dean Nelsona607c382005-09-01 14:01:37 -05001253
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07001254 /* add ourselves to the die_notifier list */
Dean Nelson780d09e2005-11-09 14:41:57 -06001255 ret = register_die_notifier(&xpc_die_notifier);
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001256 if (ret != 0)
Dean Nelson780d09e2005-11-09 14:41:57 -06001257 dev_warn(xpc_part, "can't register die notifier\n");
Dean Nelson780d09e2005-11-09 14:41:57 -06001258
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001259 /*
1260 * The real work-horse behind xpc. This processes incoming
1261 * interrupts and monitors remote heartbeats.
1262 */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001263 kthread = kthread_run(xpc_hb_checker, NULL, XPC_HB_CHECK_THREAD_NAME);
1264 if (IS_ERR(kthread)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001265 dev_err(xpc_part, "failed while forking hb check thread\n");
Dean Nelsonbc63d382008-07-29 22:34:04 -07001266 ret = -EBUSY;
1267 goto out_4;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001268 }
1269
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001270 /*
1271 * Startup a thread that will attempt to discover other partitions to
1272 * activate based on info provided by SAL. This new thread is short
1273 * lived and will exit once discovery is complete.
1274 */
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001275 kthread = kthread_run(xpc_initiate_discovery, NULL,
1276 XPC_DISCOVERY_THREAD_NAME);
1277 if (IS_ERR(kthread)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001278 dev_err(xpc_part, "failed while forking discovery thread\n");
1279
1280 /* mark this new thread as a non-starter */
Jes Sorensenf9e505a2006-01-17 12:52:21 -05001281 complete(&xpc_discovery_exited);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001282
Dean Nelson65c17b82008-05-12 14:02:02 -07001283 xpc_do_exit(xpUnloading);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001284 return -EBUSY;
1285 }
1286
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001287 /* set the interface to point at XPC's functions */
1288 xpc_set_interface(xpc_initiate_connect, xpc_initiate_disconnect,
1289 xpc_initiate_allocate, xpc_initiate_send,
1290 xpc_initiate_send_notify, xpc_initiate_received,
1291 xpc_initiate_partid_to_nasids);
1292
1293 return 0;
Dean Nelsonbc63d382008-07-29 22:34:04 -07001294
1295 /* initialization was not successful */
1296out_4:
1297 /* indicate to others that our reserved page is uninitialized */
Dean Nelson94bd2702008-07-29 22:34:05 -07001298 xpc_rsvd_page->stamp = ZERO_STAMP;
1299
Dean Nelsonbc63d382008-07-29 22:34:04 -07001300 (void)unregister_die_notifier(&xpc_die_notifier);
1301 (void)unregister_reboot_notifier(&xpc_reboot_notifier);
1302out_3:
1303 free_irq(SGI_XPC_ACTIVATE, NULL);
1304out_2:
1305 xpc_restrict_IPI_ops();
1306 if (xpc_sysctl)
1307 unregister_sysctl_table(xpc_sysctl);
1308 kfree(xpc_partitions);
1309out_1:
1310 kfree(xpc_remote_copy_buffer_base);
1311 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001312}
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001313
Dean Nelson35190502008-04-22 14:48:55 -05001314module_init(xpc_init);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001315
1316void __exit
1317xpc_exit(void)
1318{
Dean Nelson65c17b82008-05-12 14:02:02 -07001319 xpc_do_exit(xpUnloading);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001320}
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001321
Dean Nelson35190502008-04-22 14:48:55 -05001322module_exit(xpc_exit);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001323
1324MODULE_AUTHOR("Silicon Graphics, Inc.");
1325MODULE_DESCRIPTION("Cross Partition Communication (XPC) support");
1326MODULE_LICENSE("GPL");
1327
1328module_param(xpc_hb_interval, int, 0);
1329MODULE_PARM_DESC(xpc_hb_interval, "Number of seconds between "
Dean Nelson35190502008-04-22 14:48:55 -05001330 "heartbeat increments.");
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001331
1332module_param(xpc_hb_check_interval, int, 0);
1333MODULE_PARM_DESC(xpc_hb_check_interval, "Number of seconds between "
Dean Nelson35190502008-04-22 14:48:55 -05001334 "heartbeat checks.");
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001335
Dean Nelsone54af722005-10-25 14:07:43 -05001336module_param(xpc_disengage_request_timelimit, int, 0);
1337MODULE_PARM_DESC(xpc_disengage_request_timelimit, "Number of seconds to wait "
Dean Nelson35190502008-04-22 14:48:55 -05001338 "for disengage request to complete.");
Dean Nelsone54af722005-10-25 14:07:43 -05001339
Dean Nelson1f4674b2006-01-10 11:08:00 -06001340module_param(xpc_kdebug_ignore, int, 0);
1341MODULE_PARM_DESC(xpc_kdebug_ignore, "Should lack of heartbeat be ignored by "
Dean Nelson35190502008-04-22 14:48:55 -05001342 "other partitions when dropping into kdebug.");