2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (c) 2004-2005 Silicon Graphics, Inc. All Rights Reserved.
11 * Cross Partition Communication (XPC) support - standard version.
13 * XPC provides a message passing capability that crosses partition
14 * boundaries. This module is made up of two parts:
16 * partition This part detects the presence/absence of other
17 * partitions. It provides a heartbeat and monitors
18 * the heartbeats of other partitions.
20 * channel This part manages the channels and sends/receives
21 * messages across them to/from other partitions.
23 * There are a couple of additional functions residing in XP, which
24 * provide an interface to XPC for its users.
29 * . We currently have no way to determine which nasid an IPI came
30 * from. Thus, xpc_IPI_send() does a remote AMO write followed by
31 * an IPI. The AMO indicates where data is to be pulled from, so
32 * after the IPI arrives, the remote partition checks the AMO word.
33 * The IPI can actually arrive before the AMO however, so other code
34 * must periodically check for this case. Also, remote AMO operations
35 * do not reliably time out. Thus we do a remote PIO read solely to
36 * know whether the remote partition is down and whether we should
37 * stop sending IPIs to it. This remote PIO read operation is set up
38 * in a special nofault region so SAL knows to ignore (and cleanup)
39 * any errors due to the remote AMO write, PIO read, and/or PIO
42 * If/when new hardware solves this IPI problem, we should abandon
43 * the current approach.
48 #include <linux/kernel.h>
49 #include <linux/module.h>
50 #include <linux/init.h>
51 #include <linux/sched.h>
52 #include <linux/syscalls.h>
53 #include <linux/cache.h>
54 #include <linux/interrupt.h>
55 #include <linux/slab.h>
56 #include <linux/delay.h>
57 #include <linux/reboot.h>
58 #include <asm/sn/intr.h>
59 #include <asm/sn/sn_sal.h>
60 #include <asm/kdebug.h>
61 #include <asm/uaccess.h>
65 /* define two XPC debug device structures to be used with dev_dbg() et al */
67 struct device_driver xpc_dbg_name = {
71 struct device xpc_part_dbg_subname = {
72 .bus_id = {0}, /* set to "part" at xpc_init() time */
73 .driver = &xpc_dbg_name
76 struct device xpc_chan_dbg_subname = {
77 .bus_id = {0}, /* set to "chan" at xpc_init() time */
78 .driver = &xpc_dbg_name
81 struct device *xpc_part = &xpc_part_dbg_subname;
82 struct device *xpc_chan = &xpc_chan_dbg_subname;
85 /* systune related variables for /proc/sys directories */
87 static int xpc_hb_interval = XPC_HB_DEFAULT_INTERVAL;
88 static int xpc_hb_min_interval = 1;
89 static int xpc_hb_max_interval = 10;
91 static int xpc_hb_check_interval = XPC_HB_CHECK_DEFAULT_INTERVAL;
92 static int xpc_hb_check_min_interval = 10;
93 static int xpc_hb_check_max_interval = 120;
95 int xpc_disengage_request_timelimit = XPC_DISENGAGE_REQUEST_DEFAULT_TIMELIMIT;
96 static int xpc_disengage_request_min_timelimit = 0;
97 static int xpc_disengage_request_max_timelimit = 120;
99 static ctl_table xpc_sys_xpc_hb_dir[] = {
107 &proc_dointvec_minmax,
110 &xpc_hb_min_interval,
116 &xpc_hb_check_interval,
120 &proc_dointvec_minmax,
123 &xpc_hb_check_min_interval,
124 &xpc_hb_check_max_interval
128 static ctl_table xpc_sys_xpc_dir[] = {
139 "disengage_request_timelimit",
140 &xpc_disengage_request_timelimit,
144 &proc_dointvec_minmax,
147 &xpc_disengage_request_min_timelimit,
148 &xpc_disengage_request_max_timelimit
152 static ctl_table xpc_sys_dir[] = {
163 static struct ctl_table_header *xpc_sysctl;
166 /* #of IRQs received */
167 static atomic_t xpc_act_IRQ_rcvd;
169 /* IRQ handler notifies this wait queue on receipt of an IRQ */
170 static DECLARE_WAIT_QUEUE_HEAD(xpc_act_IRQ_wq);
172 static unsigned long xpc_hb_check_timeout;
174 /* notification that the xpc_hb_checker thread has exited */
175 static DECLARE_MUTEX_LOCKED(xpc_hb_checker_exited);
177 /* notification that the xpc_discovery thread has exited */
178 static DECLARE_MUTEX_LOCKED(xpc_discovery_exited);
181 static struct timer_list xpc_hb_timer;
184 static void xpc_kthread_waitmsgs(struct xpc_partition *, struct xpc_channel *);
187 static int xpc_system_reboot(struct notifier_block *, unsigned long, void *);
188 static struct notifier_block xpc_reboot_notifier = {
189 .notifier_call = xpc_system_reboot,
192 static int xpc_system_die(struct notifier_block *, unsigned long, void *);
193 static struct notifier_block xpc_die_notifier = {
194 .notifier_call = xpc_system_die,
199 * Timer function to enforce the timelimit on the partition disengage request.
202 xpc_timeout_partition_disengage_request(unsigned long data)
204 struct xpc_partition *part = (struct xpc_partition *) data;
207 DBUG_ON(jiffies < part->disengage_request_timeout);
209 (void) xpc_partition_disengaged(part);
211 DBUG_ON(part->disengage_request_timeout != 0);
212 DBUG_ON(xpc_partition_engaged(1UL << XPC_PARTID(part)) != 0);
217 * Notify the heartbeat check thread that an IRQ has been received.
220 xpc_act_IRQ_handler(int irq, void *dev_id, struct pt_regs *regs)
222 atomic_inc(&xpc_act_IRQ_rcvd);
223 wake_up_interruptible(&xpc_act_IRQ_wq);
229 * Timer to produce the heartbeat. The timer structures function is
230 * already set when this is initially called. A tunable is used to
231 * specify when the next timeout should occur.
234 xpc_hb_beater(unsigned long dummy)
236 xpc_vars->heartbeat++;
238 if (jiffies >= xpc_hb_check_timeout) {
239 wake_up_interruptible(&xpc_act_IRQ_wq);
242 xpc_hb_timer.expires = jiffies + (xpc_hb_interval * HZ);
243 add_timer(&xpc_hb_timer);
248 * This thread is responsible for nearly all of the partition
249 * activation/deactivation.
252 xpc_hb_checker(void *ignore)
254 int last_IRQ_count = 0;
259 /* this thread was marked active by xpc_hb_init() */
261 daemonize(XPC_HB_CHECK_THREAD_NAME);
263 set_cpus_allowed(current, cpumask_of_cpu(XPC_HB_CHECK_CPU));
265 xpc_hb_check_timeout = jiffies + (xpc_hb_check_interval * HZ);
267 while (!(volatile int) xpc_exiting) {
269 dev_dbg(xpc_part, "woke up with %d ticks rem; %d IRQs have "
271 (int) (xpc_hb_check_timeout - jiffies),
272 atomic_read(&xpc_act_IRQ_rcvd) - last_IRQ_count);
275 /* checking of remote heartbeats is skewed by IRQ handling */
276 if (jiffies >= xpc_hb_check_timeout) {
277 dev_dbg(xpc_part, "checking remote heartbeats\n");
278 xpc_check_remote_hb();
281 * We need to periodically recheck to ensure no
282 * IPI/AMO pairs have been missed. That check
283 * must always reset xpc_hb_check_timeout.
289 /* check for outstanding IRQs */
290 new_IRQ_count = atomic_read(&xpc_act_IRQ_rcvd);
291 if (last_IRQ_count < new_IRQ_count || force_IRQ != 0) {
294 dev_dbg(xpc_part, "found an IRQ to process; will be "
295 "resetting xpc_hb_check_timeout\n");
297 last_IRQ_count += xpc_identify_act_IRQ_sender();
298 if (last_IRQ_count < new_IRQ_count) {
299 /* retry once to help avoid missing AMO */
300 (void) xpc_identify_act_IRQ_sender();
302 last_IRQ_count = new_IRQ_count;
304 xpc_hb_check_timeout = jiffies +
305 (xpc_hb_check_interval * HZ);
308 /* wait for IRQ or timeout */
309 (void) wait_event_interruptible(xpc_act_IRQ_wq,
310 (last_IRQ_count < atomic_read(&xpc_act_IRQ_rcvd) ||
311 jiffies >= xpc_hb_check_timeout ||
312 (volatile int) xpc_exiting));
315 dev_dbg(xpc_part, "heartbeat checker is exiting\n");
318 /* mark this thread as having exited */
319 up(&xpc_hb_checker_exited);
325 * This thread will attempt to discover other partitions to activate
326 * based on info provided by SAL. This new thread is short lived and
327 * will exit once discovery is complete.
330 xpc_initiate_discovery(void *ignore)
332 daemonize(XPC_DISCOVERY_THREAD_NAME);
336 dev_dbg(xpc_part, "discovery thread is exiting\n");
338 /* mark this thread as having exited */
339 up(&xpc_discovery_exited);
345 * Establish first contact with the remote partititon. This involves pulling
346 * the XPC per partition variables from the remote partition and waiting for
347 * the remote partition to pull ours.
349 static enum xpc_retval
350 xpc_make_first_contact(struct xpc_partition *part)
355 while ((ret = xpc_pull_remote_vars_part(part)) != xpcSuccess) {
356 if (ret != xpcRetry) {
357 XPC_DEACTIVATE_PARTITION(part, ret);
361 dev_dbg(xpc_chan, "waiting to make first contact with "
362 "partition %d\n", XPC_PARTID(part));
364 /* wait a 1/4 of a second or so */
365 (void) msleep_interruptible(250);
367 if (part->act_state == XPC_P_DEACTIVATING) {
372 return xpc_mark_partition_active(part);
377 * The first kthread assigned to a newly activated partition is the one
378 * created by XPC HB with which it calls xpc_partition_up(). XPC hangs on to
379 * that kthread until the partition is brought down, at which time that kthread
380 * returns back to XPC HB. (The return of that kthread will signify to XPC HB
381 * that XPC has dismantled all communication infrastructure for the associated
382 * partition.) This kthread becomes the channel manager for that partition.
384 * Each active partition has a channel manager, who, besides connecting and
385 * disconnecting channels, will ensure that each of the partition's connected
386 * channels has the required number of assigned kthreads to get the work done.
389 xpc_channel_mgr(struct xpc_partition *part)
391 while (part->act_state != XPC_P_DEACTIVATING ||
392 atomic_read(&part->nchannels_active) > 0 ||
393 !xpc_partition_disengaged(part)) {
395 xpc_process_channel_activity(part);
399 * Wait until we've been requested to activate kthreads or
400 * all of the channel's message queues have been torn down or
401 * a signal is pending.
403 * The channel_mgr_requests is set to 1 after being awakened,
404 * This is done to prevent the channel mgr from making one pass
405 * through the loop for each request, since he will
406 * be servicing all the requests in one pass. The reason it's
407 * set to 1 instead of 0 is so that other kthreads will know
408 * that the channel mgr is running and won't bother trying to
411 atomic_dec(&part->channel_mgr_requests);
412 (void) wait_event_interruptible(part->channel_mgr_wq,
413 (atomic_read(&part->channel_mgr_requests) > 0 ||
414 (volatile u64) part->local_IPI_amo != 0 ||
415 ((volatile u8) part->act_state ==
416 XPC_P_DEACTIVATING &&
417 atomic_read(&part->nchannels_active) == 0 &&
418 xpc_partition_disengaged(part))));
419 atomic_set(&part->channel_mgr_requests, 1);
421 // >>> Does it need to wakeup periodically as well? In case we
422 // >>> miscalculated the #of kthreads to wakeup or create?
428 * When XPC HB determines that a partition has come up, it will create a new
429 * kthread and that kthread will call this function to attempt to set up the
430 * basic infrastructure used for Cross Partition Communication with the newly
433 * The kthread that was created by XPC HB and which setup the XPC
434 * infrastructure will remain assigned to the partition until the partition
435 * goes down. At which time the kthread will teardown the XPC infrastructure
438 * XPC HB will put the remote partition's XPC per partition specific variables
439 * physical address into xpc_partitions[partid].remote_vars_part_pa prior to
440 * calling xpc_partition_up().
443 xpc_partition_up(struct xpc_partition *part)
445 DBUG_ON(part->channels != NULL);
447 dev_dbg(xpc_chan, "activating partition %d\n", XPC_PARTID(part));
449 if (xpc_setup_infrastructure(part) != xpcSuccess) {
454 * The kthread that XPC HB called us with will become the
455 * channel manager for this partition. It will not return
456 * back to XPC HB until the partition's XPC infrastructure
457 * has been dismantled.
460 (void) xpc_part_ref(part); /* this will always succeed */
462 if (xpc_make_first_contact(part) == xpcSuccess) {
463 xpc_channel_mgr(part);
466 xpc_part_deref(part);
468 xpc_teardown_infrastructure(part);
473 xpc_activating(void *__partid)
475 partid_t partid = (u64) __partid;
476 struct xpc_partition *part = &xpc_partitions[partid];
477 unsigned long irq_flags;
478 struct sched_param param = { sched_priority: MAX_RT_PRIO - 1 };
482 DBUG_ON(partid <= 0 || partid >= XP_MAX_PARTITIONS);
484 spin_lock_irqsave(&part->act_lock, irq_flags);
486 if (part->act_state == XPC_P_DEACTIVATING) {
487 part->act_state = XPC_P_INACTIVE;
488 spin_unlock_irqrestore(&part->act_lock, irq_flags);
489 part->remote_rp_pa = 0;
493 /* indicate the thread is activating */
494 DBUG_ON(part->act_state != XPC_P_ACTIVATION_REQ);
495 part->act_state = XPC_P_ACTIVATING;
497 XPC_SET_REASON(part, 0, 0);
498 spin_unlock_irqrestore(&part->act_lock, irq_flags);
500 dev_dbg(xpc_part, "bringing partition %d up\n", partid);
502 daemonize("xpc%02d", partid);
505 * This thread needs to run at a realtime priority to prevent a
506 * significant performance degradation.
508 ret = sched_setscheduler(current, SCHED_FIFO, ¶m);
510 dev_warn(xpc_part, "unable to set pid %d to a realtime "
511 "priority, ret=%d\n", current->pid, ret);
514 /* allow this thread and its children to run on any CPU */
515 set_cpus_allowed(current, CPU_MASK_ALL);
518 * Register the remote partition's AMOs with SAL so it can handle
519 * and cleanup errors within that address range should the remote
520 * partition go down. We don't unregister this range because it is
521 * difficult to tell when outstanding writes to the remote partition
522 * are finished and thus when it is safe to unregister. This should
523 * not result in wasted space in the SAL xp_addr_region table because
524 * we should get the same page for remote_amos_page_pa after module
525 * reloads and system reboots.
527 if (sn_register_xp_addr_region(part->remote_amos_page_pa,
529 dev_warn(xpc_part, "xpc_partition_up(%d) failed to register "
530 "xp_addr region\n", partid);
532 spin_lock_irqsave(&part->act_lock, irq_flags);
533 part->act_state = XPC_P_INACTIVE;
534 XPC_SET_REASON(part, xpcPhysAddrRegFailed, __LINE__);
535 spin_unlock_irqrestore(&part->act_lock, irq_flags);
536 part->remote_rp_pa = 0;
540 xpc_allow_hb(partid, xpc_vars);
541 xpc_IPI_send_activated(part);
545 * xpc_partition_up() holds this thread and marks this partition as
546 * XPC_P_ACTIVE by calling xpc_hb_mark_active().
548 (void) xpc_partition_up(part);
550 xpc_disallow_hb(partid, xpc_vars);
551 xpc_mark_partition_inactive(part);
553 if (part->reason == xpcReactivating) {
554 /* interrupting ourselves results in activating partition */
555 xpc_IPI_send_reactivate(part);
563 xpc_activate_partition(struct xpc_partition *part)
565 partid_t partid = XPC_PARTID(part);
566 unsigned long irq_flags;
570 spin_lock_irqsave(&part->act_lock, irq_flags);
572 pid = kernel_thread(xpc_activating, (void *) ((u64) partid), 0);
574 DBUG_ON(part->act_state != XPC_P_INACTIVE);
577 part->act_state = XPC_P_ACTIVATION_REQ;
578 XPC_SET_REASON(part, xpcCloneKThread, __LINE__);
580 XPC_SET_REASON(part, xpcCloneKThreadFailed, __LINE__);
583 spin_unlock_irqrestore(&part->act_lock, irq_flags);
588 * Handle the receipt of a SGI_XPC_NOTIFY IRQ by seeing whether the specified
589 * partition actually sent it. Since SGI_XPC_NOTIFY IRQs may be shared by more
590 * than one partition, we use an AMO_t structure per partition to indicate
591 * whether a partition has sent an IPI or not. >>> If it has, then wake up the
592 * associated kthread to handle it.
594 * All SGI_XPC_NOTIFY IRQs received by XPC are the result of IPIs sent by XPC
595 * running on other partitions.
597 * Noteworthy Arguments:
599 * irq - Interrupt ReQuest number. NOT USED.
601 * dev_id - partid of IPI's potential sender.
603 * regs - processor's context before the processor entered
604 * interrupt code. NOT USED.
607 xpc_notify_IRQ_handler(int irq, void *dev_id, struct pt_regs *regs)
609 partid_t partid = (partid_t) (u64) dev_id;
610 struct xpc_partition *part = &xpc_partitions[partid];
613 DBUG_ON(partid <= 0 || partid >= XP_MAX_PARTITIONS);
615 if (xpc_part_ref(part)) {
616 xpc_check_for_channel_activity(part);
618 xpc_part_deref(part);
625 * Check to see if xpc_notify_IRQ_handler() dropped any IPIs on the floor
626 * because the write to their associated IPI amo completed after the IRQ/IPI
630 xpc_dropped_IPI_check(struct xpc_partition *part)
632 if (xpc_part_ref(part)) {
633 xpc_check_for_channel_activity(part);
635 part->dropped_IPI_timer.expires = jiffies +
636 XPC_P_DROPPED_IPI_WAIT;
637 add_timer(&part->dropped_IPI_timer);
638 xpc_part_deref(part);
644 xpc_activate_kthreads(struct xpc_channel *ch, int needed)
646 int idle = atomic_read(&ch->kthreads_idle);
647 int assigned = atomic_read(&ch->kthreads_assigned);
651 DBUG_ON(needed <= 0);
654 wakeup = (needed > idle) ? idle : needed;
657 dev_dbg(xpc_chan, "wakeup %d idle kthreads, partid=%d, "
658 "channel=%d\n", wakeup, ch->partid, ch->number);
660 /* only wakeup the requested number of kthreads */
661 wake_up_nr(&ch->idle_wq, wakeup);
668 if (needed + assigned > ch->kthreads_assigned_limit) {
669 needed = ch->kthreads_assigned_limit - assigned;
670 // >>>should never be less than 0
676 dev_dbg(xpc_chan, "create %d new kthreads, partid=%d, channel=%d\n",
677 needed, ch->partid, ch->number);
679 xpc_create_kthreads(ch, needed);
684 * This function is where XPC's kthreads wait for messages to deliver.
687 xpc_kthread_waitmsgs(struct xpc_partition *part, struct xpc_channel *ch)
690 /* deliver messages to their intended recipients */
692 while ((volatile s64) ch->w_local_GP.get <
693 (volatile s64) ch->w_remote_GP.put &&
694 !((volatile u32) ch->flags &
695 XPC_C_DISCONNECTING)) {
699 if (atomic_inc_return(&ch->kthreads_idle) >
700 ch->kthreads_idle_limit) {
701 /* too many idle kthreads on this channel */
702 atomic_dec(&ch->kthreads_idle);
706 dev_dbg(xpc_chan, "idle kthread calling "
707 "wait_event_interruptible_exclusive()\n");
709 (void) wait_event_interruptible_exclusive(ch->idle_wq,
710 ((volatile s64) ch->w_local_GP.get <
711 (volatile s64) ch->w_remote_GP.put ||
712 ((volatile u32) ch->flags &
713 XPC_C_DISCONNECTING)));
715 atomic_dec(&ch->kthreads_idle);
717 } while (!((volatile u32) ch->flags & XPC_C_DISCONNECTING));
722 xpc_daemonize_kthread(void *args)
724 partid_t partid = XPC_UNPACK_ARG1(args);
725 u16 ch_number = XPC_UNPACK_ARG2(args);
726 struct xpc_partition *part = &xpc_partitions[partid];
727 struct xpc_channel *ch;
729 unsigned long irq_flags;
732 daemonize("xpc%02dc%d", partid, ch_number);
734 dev_dbg(xpc_chan, "kthread starting, partid=%d, channel=%d\n",
737 ch = &part->channels[ch_number];
739 if (!(ch->flags & XPC_C_DISCONNECTING)) {
741 /* let registerer know that connection has been established */
743 spin_lock_irqsave(&ch->lock, irq_flags);
744 if (!(ch->flags & XPC_C_CONNECTCALLOUT)) {
745 ch->flags |= XPC_C_CONNECTCALLOUT;
746 spin_unlock_irqrestore(&ch->lock, irq_flags);
748 xpc_connected_callout(ch);
751 * It is possible that while the callout was being
752 * made that the remote partition sent some messages.
753 * If that is the case, we may need to activate
754 * additional kthreads to help deliver them. We only
755 * need one less than total #of messages to deliver.
757 n_needed = ch->w_remote_GP.put - ch->w_local_GP.get - 1;
759 !(ch->flags & XPC_C_DISCONNECTING)) {
760 xpc_activate_kthreads(ch, n_needed);
763 spin_unlock_irqrestore(&ch->lock, irq_flags);
766 xpc_kthread_waitmsgs(part, ch);
769 if (atomic_dec_return(&ch->kthreads_assigned) == 0) {
770 spin_lock_irqsave(&ch->lock, irq_flags);
771 if ((ch->flags & XPC_C_CONNECTCALLOUT) &&
772 !(ch->flags & XPC_C_DISCONNECTCALLOUT)) {
773 ch->flags |= XPC_C_DISCONNECTCALLOUT;
774 spin_unlock_irqrestore(&ch->lock, irq_flags);
776 xpc_disconnecting_callout(ch);
778 spin_unlock_irqrestore(&ch->lock, irq_flags);
780 if (atomic_dec_return(&part->nchannels_engaged) == 0) {
781 xpc_mark_partition_disengaged(part);
782 xpc_IPI_send_disengage(part);
787 xpc_msgqueue_deref(ch);
789 dev_dbg(xpc_chan, "kthread exiting, partid=%d, channel=%d\n",
792 xpc_part_deref(part);
798 * For each partition that XPC has established communications with, there is
799 * a minimum of one kernel thread assigned to perform any operation that
800 * may potentially sleep or block (basically the callouts to the asynchronous
801 * functions registered via xpc_connect()).
803 * Additional kthreads are created and destroyed by XPC as the workload
806 * A kthread is assigned to one of the active channels that exists for a given
810 xpc_create_kthreads(struct xpc_channel *ch, int needed)
812 unsigned long irq_flags;
814 u64 args = XPC_PACK_ARGS(ch->partid, ch->number);
815 struct xpc_partition *part = &xpc_partitions[ch->partid];
818 while (needed-- > 0) {
821 * The following is done on behalf of the newly created
822 * kthread. That kthread is responsible for doing the
823 * counterpart to the following before it exits.
825 (void) xpc_part_ref(part);
826 xpc_msgqueue_ref(ch);
827 if (atomic_inc_return(&ch->kthreads_assigned) == 1 &&
828 atomic_inc_return(&part->nchannels_engaged) == 1) {
829 xpc_mark_partition_engaged(part);
832 pid = kernel_thread(xpc_daemonize_kthread, (void *) args, 0);
834 /* the fork failed */
835 if (atomic_dec_return(&ch->kthreads_assigned) == 0 &&
836 atomic_dec_return(&part->nchannels_engaged) == 0) {
837 xpc_mark_partition_disengaged(part);
838 xpc_IPI_send_disengage(part);
840 xpc_msgqueue_deref(ch);
841 xpc_part_deref(part);
843 if (atomic_read(&ch->kthreads_assigned) <
844 ch->kthreads_idle_limit) {
846 * Flag this as an error only if we have an
847 * insufficient #of kthreads for the channel
850 * No xpc_msgqueue_ref() is needed here since
851 * the channel mgr is doing this.
853 spin_lock_irqsave(&ch->lock, irq_flags);
854 XPC_DISCONNECT_CHANNEL(ch, xpcLackOfResources,
856 spin_unlock_irqrestore(&ch->lock, irq_flags);
861 ch->kthreads_created++; // >>> temporary debug only!!!
867 xpc_disconnect_wait(int ch_number)
869 unsigned long irq_flags;
871 struct xpc_partition *part;
872 struct xpc_channel *ch;
873 int wakeup_channel_mgr;
876 /* now wait for all callouts to the caller's function to cease */
877 for (partid = 1; partid < XP_MAX_PARTITIONS; partid++) {
878 part = &xpc_partitions[partid];
880 if (!xpc_part_ref(part)) {
884 ch = &part->channels[ch_number];
886 if (!(ch->flags & XPC_C_WDISCONNECT)) {
887 xpc_part_deref(part);
891 (void) down(&ch->wdisconnect_sema);
893 spin_lock_irqsave(&ch->lock, irq_flags);
894 DBUG_ON(!(ch->flags & XPC_C_DISCONNECTED));
895 wakeup_channel_mgr = 0;
897 if (ch->delayed_IPI_flags) {
898 if (part->act_state != XPC_P_DEACTIVATING) {
899 spin_lock(&part->IPI_lock);
900 XPC_SET_IPI_FLAGS(part->local_IPI_amo,
901 ch->number, ch->delayed_IPI_flags);
902 spin_unlock(&part->IPI_lock);
903 wakeup_channel_mgr = 1;
905 ch->delayed_IPI_flags = 0;
908 ch->flags &= ~XPC_C_WDISCONNECT;
909 spin_unlock_irqrestore(&ch->lock, irq_flags);
911 if (wakeup_channel_mgr) {
912 xpc_wakeup_channel_mgr(part);
915 xpc_part_deref(part);
921 xpc_do_exit(enum xpc_retval reason)
924 int active_part_count;
925 struct xpc_partition *part;
926 unsigned long printmsg_time;
929 /* a 'rmmod XPC' and a 'reboot' cannot both end up here together */
930 DBUG_ON(xpc_exiting == 1);
933 * Let the heartbeat checker thread and the discovery thread
934 * (if one is running) know that they should exit. Also wake up
935 * the heartbeat checker thread in case it's sleeping.
938 wake_up_interruptible(&xpc_act_IRQ_wq);
940 /* ignore all incoming interrupts */
941 free_irq(SGI_XPC_ACTIVATE, NULL);
943 /* wait for the discovery thread to exit */
944 down(&xpc_discovery_exited);
946 /* wait for the heartbeat checker thread to exit */
947 down(&xpc_hb_checker_exited);
950 /* sleep for a 1/3 of a second or so */
951 (void) msleep_interruptible(300);
954 /* wait for all partitions to become inactive */
956 printmsg_time = jiffies;
959 active_part_count = 0;
961 for (partid = 1; partid < XP_MAX_PARTITIONS; partid++) {
962 part = &xpc_partitions[partid];
964 if (xpc_partition_disengaged(part) &&
965 part->act_state == XPC_P_INACTIVE) {
971 XPC_DEACTIVATE_PARTITION(part, reason);
974 if (active_part_count == 0) {
978 if (jiffies >= printmsg_time) {
979 dev_info(xpc_part, "waiting for partitions to "
980 "deactivate/disengage, active count=%d, remote "
981 "engaged=0x%lx\n", active_part_count,
982 xpc_partition_engaged(1UL << partid));
984 printmsg_time = jiffies +
985 (XPC_DISENGAGE_PRINTMSG_INTERVAL * HZ);
988 /* sleep for a 1/3 of a second or so */
989 (void) msleep_interruptible(300);
993 DBUG_ON(xpc_partition_engaged(-1UL));
996 /* indicate to others that our reserved page is uninitialized */
997 xpc_rsvd_page->vars_pa = 0;
999 /* now it's time to eliminate our heartbeat */
1000 del_timer_sync(&xpc_hb_timer);
1001 DBUG_ON(xpc_vars->heartbeating_to_mask != 0);
1003 /* take ourselves off of the reboot_notifier_list */
1004 (void) unregister_reboot_notifier(&xpc_reboot_notifier);
1006 /* take ourselves off of the die_notifier list */
1007 (void) unregister_die_notifier(&xpc_die_notifier);
1009 /* close down protections for IPI operations */
1010 xpc_restrict_IPI_ops();
1013 /* clear the interface to XPC's functions */
1014 xpc_clear_interface();
1017 unregister_sysctl_table(xpc_sysctl);
1023 * Called when the system is about to be either restarted or halted.
1026 xpc_die_disengage(void)
1028 struct xpc_partition *part;
1030 unsigned long engaged;
1031 long time, print_time, disengage_request_timeout;
1034 /* keep xpc_hb_checker thread from doing anything (just in case) */
1037 xpc_vars->heartbeating_to_mask = 0; /* indicate we're deactivated */
1039 for (partid = 1; partid < XP_MAX_PARTITIONS; partid++) {
1040 part = &xpc_partitions[partid];
1042 if (!XPC_SUPPORTS_DISENGAGE_REQUEST(part->
1043 remote_vars_version)) {
1045 /* just in case it was left set by an earlier XPC */
1046 xpc_clear_partition_engaged(1UL << partid);
1050 if (xpc_partition_engaged(1UL << partid) ||
1051 part->act_state != XPC_P_INACTIVE) {
1052 xpc_request_partition_disengage(part);
1053 xpc_mark_partition_disengaged(part);
1054 xpc_IPI_send_disengage(part);
1058 print_time = rtc_time();
1059 disengage_request_timeout = print_time +
1060 (xpc_disengage_request_timelimit * sn_rtc_cycles_per_second);
1062 /* wait for all other partitions to disengage from us */
1064 while ((engaged = xpc_partition_engaged(-1UL)) &&
1065 (time = rtc_time()) < disengage_request_timeout) {
1067 if (time >= print_time) {
1068 dev_info(xpc_part, "waiting for remote partitions to "
1069 "disengage, engaged=0x%lx\n", engaged);
1070 print_time = time + (XPC_DISENGAGE_PRINTMSG_INTERVAL *
1071 sn_rtc_cycles_per_second);
1074 dev_info(xpc_part, "finished waiting for remote partitions to "
1075 "disengage, engaged=0x%lx\n", engaged);
1080 * This function is called when the system is being rebooted.
1083 xpc_system_reboot(struct notifier_block *nb, unsigned long event, void *unused)
1085 enum xpc_retval reason;
1090 reason = xpcSystemReboot;
1093 reason = xpcSystemHalt;
1096 reason = xpcSystemPoweroff;
1099 reason = xpcSystemGoingDown;
1102 xpc_do_exit(reason);
1108 * This function is called when the system is being rebooted.
1111 xpc_system_die(struct notifier_block *nb, unsigned long event, void *unused)
1114 case DIE_MACHINE_RESTART:
1115 case DIE_MACHINE_HALT:
1116 xpc_die_disengage();
1118 case DIE_MCA_MONARCH_ENTER:
1119 case DIE_INIT_MONARCH_ENTER:
1120 xpc_vars->heartbeat++;
1121 xpc_vars->heartbeat_offline = 1;
1123 case DIE_MCA_MONARCH_LEAVE:
1124 case DIE_INIT_MONARCH_LEAVE:
1125 xpc_vars->heartbeat++;
1126 xpc_vars->heartbeat_offline = 0;
1139 struct xpc_partition *part;
1143 if (!ia64_platform_is("sn2")) {
1148 * xpc_remote_copy_buffer is used as a temporary buffer for bte_copy'ng
1149 * various portions of a partition's reserved page. Its size is based
1150 * on the size of the reserved page header and part_nasids mask. So we
1151 * need to ensure that the other items will fit as well.
1153 if (XPC_RP_VARS_SIZE > XPC_RP_HEADER_SIZE + XP_NASID_MASK_BYTES) {
1154 dev_err(xpc_part, "xpc_remote_copy_buffer is not big enough\n");
1157 DBUG_ON((u64) xpc_remote_copy_buffer !=
1158 L1_CACHE_ALIGN((u64) xpc_remote_copy_buffer));
1160 snprintf(xpc_part->bus_id, BUS_ID_SIZE, "part");
1161 snprintf(xpc_chan->bus_id, BUS_ID_SIZE, "chan");
1163 xpc_sysctl = register_sysctl_table(xpc_sys_dir, 1);
1166 * The first few fields of each entry of xpc_partitions[] need to
1167 * be initialized now so that calls to xpc_connect() and
1168 * xpc_disconnect() can be made prior to the activation of any remote
1169 * partition. NOTE THAT NONE OF THE OTHER FIELDS BELONGING TO THESE
1170 * ENTRIES ARE MEANINGFUL UNTIL AFTER AN ENTRY'S CORRESPONDING
1171 * PARTITION HAS BEEN ACTIVATED.
1173 for (partid = 1; partid < XP_MAX_PARTITIONS; partid++) {
1174 part = &xpc_partitions[partid];
1176 DBUG_ON((u64) part != L1_CACHE_ALIGN((u64) part));
1178 part->act_IRQ_rcvd = 0;
1179 spin_lock_init(&part->act_lock);
1180 part->act_state = XPC_P_INACTIVE;
1181 XPC_SET_REASON(part, 0, 0);
1183 init_timer(&part->disengage_request_timer);
1184 part->disengage_request_timer.function =
1185 xpc_timeout_partition_disengage_request;
1186 part->disengage_request_timer.data = (unsigned long) part;
1188 part->setup_state = XPC_P_UNSET;
1189 init_waitqueue_head(&part->teardown_wq);
1190 atomic_set(&part->references, 0);
1194 * Open up protections for IPI operations (and AMO operations on
1195 * Shub 1.1 systems).
1197 xpc_allow_IPI_ops();
1200 * Interrupts being processed will increment this atomic variable and
1201 * awaken the heartbeat thread which will process the interrupts.
1203 atomic_set(&xpc_act_IRQ_rcvd, 0);
1206 * This is safe to do before the xpc_hb_checker thread has started
1207 * because the handler releases a wait queue. If an interrupt is
1208 * received before the thread is waiting, it will not go to sleep,
1209 * but rather immediately process the interrupt.
1211 ret = request_irq(SGI_XPC_ACTIVATE, xpc_act_IRQ_handler, 0,
1214 dev_err(xpc_part, "can't register ACTIVATE IRQ handler, "
1215 "errno=%d\n", -ret);
1217 xpc_restrict_IPI_ops();
1220 unregister_sysctl_table(xpc_sysctl);
1226 * Fill the partition reserved page with the information needed by
1227 * other partitions to discover we are alive and establish initial
1230 xpc_rsvd_page = xpc_rsvd_page_init();
1231 if (xpc_rsvd_page == NULL) {
1232 dev_err(xpc_part, "could not setup our reserved page\n");
1234 free_irq(SGI_XPC_ACTIVATE, NULL);
1235 xpc_restrict_IPI_ops();
1238 unregister_sysctl_table(xpc_sysctl);
1244 /* add ourselves to the reboot_notifier_list */
1245 ret = register_reboot_notifier(&xpc_reboot_notifier);
1247 dev_warn(xpc_part, "can't register reboot notifier\n");
1250 /* add ourselves to the die_notifier list (i.e., ia64die_chain) */
1251 ret = register_die_notifier(&xpc_die_notifier);
1253 dev_warn(xpc_part, "can't register die notifier\n");
1258 * Set the beating to other partitions into motion. This is
1259 * the last requirement for other partitions' discovery to
1260 * initiate communications with us.
1262 init_timer(&xpc_hb_timer);
1263 xpc_hb_timer.function = xpc_hb_beater;
1268 * The real work-horse behind xpc. This processes incoming
1269 * interrupts and monitors remote heartbeats.
1271 pid = kernel_thread(xpc_hb_checker, NULL, 0);
1273 dev_err(xpc_part, "failed while forking hb check thread\n");
1275 /* indicate to others that our reserved page is uninitialized */
1276 xpc_rsvd_page->vars_pa = 0;
1278 /* take ourselves off of the reboot_notifier_list */
1279 (void) unregister_reboot_notifier(&xpc_reboot_notifier);
1281 /* take ourselves off of the die_notifier list */
1282 (void) unregister_die_notifier(&xpc_die_notifier);
1284 del_timer_sync(&xpc_hb_timer);
1285 free_irq(SGI_XPC_ACTIVATE, NULL);
1286 xpc_restrict_IPI_ops();
1289 unregister_sysctl_table(xpc_sysctl);
1296 * Startup a thread that will attempt to discover other partitions to
1297 * activate based on info provided by SAL. This new thread is short
1298 * lived and will exit once discovery is complete.
1300 pid = kernel_thread(xpc_initiate_discovery, NULL, 0);
1302 dev_err(xpc_part, "failed while forking discovery thread\n");
1304 /* mark this new thread as a non-starter */
1305 up(&xpc_discovery_exited);
1307 xpc_do_exit(xpcUnloading);
1312 /* set the interface to point at XPC's functions */
1313 xpc_set_interface(xpc_initiate_connect, xpc_initiate_disconnect,
1314 xpc_initiate_allocate, xpc_initiate_send,
1315 xpc_initiate_send_notify, xpc_initiate_received,
1316 xpc_initiate_partid_to_nasids);
1320 module_init(xpc_init);
1326 xpc_do_exit(xpcUnloading);
1328 module_exit(xpc_exit);
1331 MODULE_AUTHOR("Silicon Graphics, Inc.");
1332 MODULE_DESCRIPTION("Cross Partition Communication (XPC) support");
1333 MODULE_LICENSE("GPL");
1335 module_param(xpc_hb_interval, int, 0);
1336 MODULE_PARM_DESC(xpc_hb_interval, "Number of seconds between "
1337 "heartbeat increments.");
1339 module_param(xpc_hb_check_interval, int, 0);
1340 MODULE_PARM_DESC(xpc_hb_check_interval, "Number of seconds between "
1341 "heartbeat checks.");
1343 module_param(xpc_disengage_request_timelimit, int, 0);
1344 MODULE_PARM_DESC(xpc_disengage_request_timelimit, "Number of seconds to wait "
1345 "for disengage request to complete.");