Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 1 | /* |
| 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 | * |
Robin Holt | a374c57 | 2009-04-13 14:40:18 -0700 | [diff] [blame] | 6 | * Copyright (c) 2008-2009 Silicon Graphics, Inc. All Rights Reserved. |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * Cross Partition Communication (XPC) sn2-based functions. |
| 11 | * |
| 12 | * Architecture specific implementation of common functions. |
| 13 | * |
| 14 | */ |
| 15 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 16 | #include <linux/delay.h> |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 17 | #include <asm/uncached.h> |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 18 | #include <asm/sn/mspec.h> |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 19 | #include <asm/sn/sn_sal.h> |
| 20 | #include "xpc.h" |
| 21 | |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 22 | /* |
| 23 | * Define the number of u64s required to represent all the C-brick nasids |
| 24 | * as a bitmap. The cross-partition kernel modules deal only with |
| 25 | * C-brick nasids, thus the need for bitmaps which don't account for |
| 26 | * odd-numbered (non C-brick) nasids. |
| 27 | */ |
| 28 | #define XPC_MAX_PHYSNODES_SN2 (MAX_NUMALINK_NODES / 2) |
| 29 | #define XP_NASID_MASK_BYTES_SN2 ((XPC_MAX_PHYSNODES_SN2 + 7) / 8) |
| 30 | #define XP_NASID_MASK_WORDS_SN2 ((XPC_MAX_PHYSNODES_SN2 + 63) / 64) |
| 31 | |
| 32 | /* |
| 33 | * Memory for XPC's amo variables is allocated by the MSPEC driver. These |
| 34 | * pages are located in the lowest granule. The lowest granule uses 4k pages |
| 35 | * for cached references and an alternate TLB handler to never provide a |
| 36 | * cacheable mapping for the entire region. This will prevent speculative |
| 37 | * reading of cached copies of our lines from being issued which will cause |
| 38 | * a PI FSB Protocol error to be generated by the SHUB. For XPC, we need 64 |
| 39 | * amo variables (based on XP_MAX_NPARTITIONS_SN2) to identify the senders of |
| 40 | * NOTIFY IRQs, 128 amo variables (based on XP_NASID_MASK_WORDS_SN2) to identify |
| 41 | * the senders of ACTIVATE IRQs, 1 amo variable to identify which remote |
| 42 | * partitions (i.e., XPCs) consider themselves currently engaged with the |
| 43 | * local XPC and 1 amo variable to request partition deactivation. |
| 44 | */ |
| 45 | #define XPC_NOTIFY_IRQ_AMOS_SN2 0 |
| 46 | #define XPC_ACTIVATE_IRQ_AMOS_SN2 (XPC_NOTIFY_IRQ_AMOS_SN2 + \ |
| 47 | XP_MAX_NPARTITIONS_SN2) |
| 48 | #define XPC_ENGAGED_PARTITIONS_AMO_SN2 (XPC_ACTIVATE_IRQ_AMOS_SN2 + \ |
| 49 | XP_NASID_MASK_WORDS_SN2) |
| 50 | #define XPC_DEACTIVATE_REQUEST_AMO_SN2 (XPC_ENGAGED_PARTITIONS_AMO_SN2 + 1) |
| 51 | |
| 52 | /* |
| 53 | * Buffer used to store a local copy of portions of a remote partition's |
| 54 | * reserved page (either its header and part_nasids mask, or its vars). |
| 55 | */ |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 56 | static void *xpc_remote_copy_buffer_base_sn2; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 57 | static char *xpc_remote_copy_buffer_sn2; |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 58 | |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 59 | static struct xpc_vars_sn2 *xpc_vars_sn2; |
| 60 | static struct xpc_vars_part_sn2 *xpc_vars_part_sn2; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 61 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 62 | static int |
Robin Holt | a7665b0 | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 63 | xpc_setup_partitions_sn2(void) |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 64 | { |
| 65 | /* nothing needs to be done */ |
| 66 | return 0; |
| 67 | } |
| 68 | |
Jack Steiner | 6f2584f | 2009-04-02 16:59:10 -0700 | [diff] [blame] | 69 | static void |
Robin Holt | a7665b0 | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 70 | xpc_teardown_partitions_sn2(void) |
Jack Steiner | 6f2584f | 2009-04-02 16:59:10 -0700 | [diff] [blame] | 71 | { |
| 72 | /* nothing needs to be done */ |
| 73 | } |
| 74 | |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 75 | /* SH_IPI_ACCESS shub register value on startup */ |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 76 | static u64 xpc_sh1_IPI_access_sn2; |
| 77 | static u64 xpc_sh2_IPI_access0_sn2; |
| 78 | static u64 xpc_sh2_IPI_access1_sn2; |
| 79 | static u64 xpc_sh2_IPI_access2_sn2; |
| 80 | static u64 xpc_sh2_IPI_access3_sn2; |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 81 | |
| 82 | /* |
| 83 | * Change protections to allow IPI operations. |
| 84 | */ |
| 85 | static void |
| 86 | xpc_allow_IPI_ops_sn2(void) |
| 87 | { |
| 88 | int node; |
| 89 | int nasid; |
| 90 | |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 91 | /* !!! The following should get moved into SAL. */ |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 92 | if (is_shub2()) { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 93 | xpc_sh2_IPI_access0_sn2 = |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 94 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS0)); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 95 | xpc_sh2_IPI_access1_sn2 = |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 96 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS1)); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 97 | xpc_sh2_IPI_access2_sn2 = |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 98 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS2)); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 99 | xpc_sh2_IPI_access3_sn2 = |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 100 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS3)); |
| 101 | |
| 102 | for_each_online_node(node) { |
| 103 | nasid = cnodeid_to_nasid(node); |
| 104 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS0), |
| 105 | -1UL); |
| 106 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS1), |
| 107 | -1UL); |
| 108 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS2), |
| 109 | -1UL); |
| 110 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS3), |
| 111 | -1UL); |
| 112 | } |
| 113 | } else { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 114 | xpc_sh1_IPI_access_sn2 = |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 115 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH1_IPI_ACCESS)); |
| 116 | |
| 117 | for_each_online_node(node) { |
| 118 | nasid = cnodeid_to_nasid(node); |
| 119 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS), |
| 120 | -1UL); |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /* |
| 126 | * Restrict protections to disallow IPI operations. |
| 127 | */ |
| 128 | static void |
| 129 | xpc_disallow_IPI_ops_sn2(void) |
| 130 | { |
| 131 | int node; |
| 132 | int nasid; |
| 133 | |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 134 | /* !!! The following should get moved into SAL. */ |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 135 | if (is_shub2()) { |
| 136 | for_each_online_node(node) { |
| 137 | nasid = cnodeid_to_nasid(node); |
| 138 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS0), |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 139 | xpc_sh2_IPI_access0_sn2); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 140 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS1), |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 141 | xpc_sh2_IPI_access1_sn2); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 142 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS2), |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 143 | xpc_sh2_IPI_access2_sn2); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 144 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS3), |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 145 | xpc_sh2_IPI_access3_sn2); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 146 | } |
| 147 | } else { |
| 148 | for_each_online_node(node) { |
| 149 | nasid = cnodeid_to_nasid(node); |
| 150 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS), |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 151 | xpc_sh1_IPI_access_sn2); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 152 | } |
| 153 | } |
| 154 | } |
| 155 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 156 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 157 | * The following set of functions are used for the sending and receiving of |
| 158 | * IRQs (also known as IPIs). There are two flavors of IRQs, one that is |
| 159 | * associated with partition activity (SGI_XPC_ACTIVATE) and the other that |
| 160 | * is associated with channel activity (SGI_XPC_NOTIFY). |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 161 | */ |
| 162 | |
| 163 | static u64 |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 164 | xpc_receive_IRQ_amo_sn2(struct amo *amo) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 165 | { |
| 166 | return FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_CLEAR); |
| 167 | } |
| 168 | |
| 169 | static enum xp_retval |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 170 | xpc_send_IRQ_sn2(struct amo *amo, u64 flag, int nasid, int phys_cpuid, |
| 171 | int vector) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 172 | { |
| 173 | int ret = 0; |
| 174 | unsigned long irq_flags; |
| 175 | |
| 176 | local_irq_save(irq_flags); |
| 177 | |
| 178 | FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_OR, flag); |
| 179 | sn_send_IPI_phys(nasid, phys_cpuid, vector, 0); |
| 180 | |
| 181 | /* |
| 182 | * We must always use the nofault function regardless of whether we |
| 183 | * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we |
| 184 | * didn't, we'd never know that the other partition is down and would |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 185 | * keep sending IRQs and amos to it until the heartbeat times out. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 186 | */ |
| 187 | ret = xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo->variable), |
| 188 | xp_nofault_PIOR_target)); |
| 189 | |
| 190 | local_irq_restore(irq_flags); |
| 191 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 192 | return (ret == 0) ? xpSuccess : xpPioReadError; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 195 | static struct amo * |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 196 | xpc_init_IRQ_amo_sn2(int index) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 197 | { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 198 | struct amo *amo = xpc_vars_sn2->amos_page + index; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 199 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 200 | (void)xpc_receive_IRQ_amo_sn2(amo); /* clear amo variable */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 201 | return amo; |
| 202 | } |
| 203 | |
| 204 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 205 | * Functions associated with SGI_XPC_ACTIVATE IRQ. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 206 | */ |
| 207 | |
| 208 | /* |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 209 | * Notify the heartbeat check thread that an activate IRQ has been received. |
| 210 | */ |
| 211 | static irqreturn_t |
| 212 | xpc_handle_activate_IRQ_sn2(int irq, void *dev_id) |
| 213 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 214 | unsigned long irq_flags; |
| 215 | |
| 216 | spin_lock_irqsave(&xpc_activate_IRQ_rcvd_lock, irq_flags); |
| 217 | xpc_activate_IRQ_rcvd++; |
| 218 | spin_unlock_irqrestore(&xpc_activate_IRQ_rcvd_lock, irq_flags); |
| 219 | |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 220 | wake_up_interruptible(&xpc_activate_IRQ_wq); |
| 221 | return IRQ_HANDLED; |
| 222 | } |
| 223 | |
| 224 | /* |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 225 | * Flag the appropriate amo variable and send an IRQ to the specified node. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 226 | */ |
| 227 | static void |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 228 | xpc_send_activate_IRQ_sn2(unsigned long amos_page_pa, int from_nasid, |
| 229 | int to_nasid, int to_phys_cpuid) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 230 | { |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 231 | struct amo *amos = (struct amo *)__va(amos_page_pa + |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 232 | (XPC_ACTIVATE_IRQ_AMOS_SN2 * |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 233 | sizeof(struct amo))); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 234 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 235 | (void)xpc_send_IRQ_sn2(&amos[BIT_WORD(from_nasid / 2)], |
| 236 | BIT_MASK(from_nasid / 2), to_nasid, |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 237 | to_phys_cpuid, SGI_XPC_ACTIVATE); |
| 238 | } |
| 239 | |
| 240 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 241 | xpc_send_local_activate_IRQ_sn2(int from_nasid) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 242 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 243 | unsigned long irq_flags; |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 244 | struct amo *amos = (struct amo *)__va(xpc_vars_sn2->amos_page_pa + |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 245 | (XPC_ACTIVATE_IRQ_AMOS_SN2 * |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 246 | sizeof(struct amo))); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 247 | |
| 248 | /* fake the sending and receipt of an activate IRQ from remote nasid */ |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 249 | FETCHOP_STORE_OP(TO_AMO((u64)&amos[BIT_WORD(from_nasid / 2)].variable), |
| 250 | FETCHOP_OR, BIT_MASK(from_nasid / 2)); |
| 251 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 252 | spin_lock_irqsave(&xpc_activate_IRQ_rcvd_lock, irq_flags); |
| 253 | xpc_activate_IRQ_rcvd++; |
| 254 | spin_unlock_irqrestore(&xpc_activate_IRQ_rcvd_lock, irq_flags); |
| 255 | |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 256 | wake_up_interruptible(&xpc_activate_IRQ_wq); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 259 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 260 | * Functions associated with SGI_XPC_NOTIFY IRQ. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 261 | */ |
| 262 | |
| 263 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 264 | * Check to see if any chctl flags were sent from the specified partition. |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 265 | */ |
| 266 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 267 | xpc_check_for_sent_chctl_flags_sn2(struct xpc_partition *part) |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 268 | { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 269 | union xpc_channel_ctl_flags chctl; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 270 | unsigned long irq_flags; |
| 271 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 272 | chctl.all_flags = xpc_receive_IRQ_amo_sn2(part->sn.sn2. |
| 273 | local_chctl_amo_va); |
| 274 | if (chctl.all_flags == 0) |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 275 | return; |
| 276 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 277 | spin_lock_irqsave(&part->chctl_lock, irq_flags); |
| 278 | part->chctl.all_flags |= chctl.all_flags; |
| 279 | spin_unlock_irqrestore(&part->chctl_lock, irq_flags); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 280 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 281 | dev_dbg(xpc_chan, "received notify IRQ from partid=%d, chctl.all_flags=" |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 282 | "0x%llx\n", XPC_PARTID(part), chctl.all_flags); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 283 | |
| 284 | xpc_wakeup_channel_mgr(part); |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * Handle the receipt of a SGI_XPC_NOTIFY IRQ by seeing whether the specified |
| 289 | * partition actually sent it. Since SGI_XPC_NOTIFY IRQs may be shared by more |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 290 | * than one partition, we use an amo structure per partition to indicate |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 291 | * whether a partition has sent an IRQ or not. If it has, then wake up the |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 292 | * associated kthread to handle it. |
| 293 | * |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 294 | * All SGI_XPC_NOTIFY IRQs received by XPC are the result of IRQs sent by XPC |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 295 | * running on other partitions. |
| 296 | * |
| 297 | * Noteworthy Arguments: |
| 298 | * |
| 299 | * irq - Interrupt ReQuest number. NOT USED. |
| 300 | * |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 301 | * dev_id - partid of IRQ's potential sender. |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 302 | */ |
| 303 | static irqreturn_t |
| 304 | xpc_handle_notify_IRQ_sn2(int irq, void *dev_id) |
| 305 | { |
| 306 | short partid = (short)(u64)dev_id; |
| 307 | struct xpc_partition *part = &xpc_partitions[partid]; |
| 308 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 309 | DBUG_ON(partid < 0 || partid >= XP_MAX_NPARTITIONS_SN2); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 310 | |
| 311 | if (xpc_part_ref(part)) { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 312 | xpc_check_for_sent_chctl_flags_sn2(part); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 313 | |
| 314 | xpc_part_deref(part); |
| 315 | } |
| 316 | return IRQ_HANDLED; |
| 317 | } |
| 318 | |
| 319 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 320 | * Check to see if xpc_handle_notify_IRQ_sn2() dropped any IRQs on the floor |
| 321 | * because the write to their associated amo variable completed after the IRQ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 322 | * was received. |
| 323 | */ |
| 324 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 325 | xpc_check_for_dropped_notify_IRQ_sn2(struct xpc_partition *part) |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 326 | { |
| 327 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
| 328 | |
| 329 | if (xpc_part_ref(part)) { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 330 | xpc_check_for_sent_chctl_flags_sn2(part); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 331 | |
| 332 | part_sn2->dropped_notify_IRQ_timer.expires = jiffies + |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 333 | XPC_DROPPED_NOTIFY_IRQ_WAIT_INTERVAL; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 334 | add_timer(&part_sn2->dropped_notify_IRQ_timer); |
| 335 | xpc_part_deref(part); |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 340 | * Send a notify IRQ to the remote partition that is associated with the |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 341 | * specified channel. |
| 342 | */ |
| 343 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 344 | xpc_send_notify_IRQ_sn2(struct xpc_channel *ch, u8 chctl_flag, |
| 345 | char *chctl_flag_string, unsigned long *irq_flags) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 346 | { |
| 347 | struct xpc_partition *part = &xpc_partitions[ch->partid]; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 348 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 349 | union xpc_channel_ctl_flags chctl = { 0 }; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 350 | enum xp_retval ret; |
| 351 | |
Dean Nelson | 83469b5 | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 352 | if (likely(part->act_state != XPC_P_AS_DEACTIVATING)) { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 353 | chctl.flags[ch->number] = chctl_flag; |
| 354 | ret = xpc_send_IRQ_sn2(part_sn2->remote_chctl_amo_va, |
| 355 | chctl.all_flags, |
| 356 | part_sn2->notify_IRQ_nasid, |
| 357 | part_sn2->notify_IRQ_phys_cpuid, |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 358 | SGI_XPC_NOTIFY); |
| 359 | dev_dbg(xpc_chan, "%s sent to partid=%d, channel=%d, ret=%d\n", |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 360 | chctl_flag_string, ch->partid, ch->number, ret); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 361 | if (unlikely(ret != xpSuccess)) { |
| 362 | if (irq_flags != NULL) |
| 363 | spin_unlock_irqrestore(&ch->lock, *irq_flags); |
| 364 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 365 | if (irq_flags != NULL) |
| 366 | spin_lock_irqsave(&ch->lock, *irq_flags); |
| 367 | } |
| 368 | } |
| 369 | } |
| 370 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 371 | #define XPC_SEND_NOTIFY_IRQ_SN2(_ch, _ipi_f, _irq_f) \ |
| 372 | xpc_send_notify_IRQ_sn2(_ch, _ipi_f, #_ipi_f, _irq_f) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 373 | |
| 374 | /* |
| 375 | * Make it look like the remote partition, which is associated with the |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 376 | * specified channel, sent us a notify IRQ. This faked IRQ will be handled |
| 377 | * by xpc_check_for_dropped_notify_IRQ_sn2(). |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 378 | */ |
| 379 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 380 | xpc_send_local_notify_IRQ_sn2(struct xpc_channel *ch, u8 chctl_flag, |
| 381 | char *chctl_flag_string) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 382 | { |
| 383 | struct xpc_partition *part = &xpc_partitions[ch->partid]; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 384 | union xpc_channel_ctl_flags chctl = { 0 }; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 385 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 386 | chctl.flags[ch->number] = chctl_flag; |
| 387 | FETCHOP_STORE_OP(TO_AMO((u64)&part->sn.sn2.local_chctl_amo_va-> |
| 388 | variable), FETCHOP_OR, chctl.all_flags); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 389 | dev_dbg(xpc_chan, "%s sent local from partid=%d, channel=%d\n", |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 390 | chctl_flag_string, ch->partid, ch->number); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 393 | #define XPC_SEND_LOCAL_NOTIFY_IRQ_SN2(_ch, _ipi_f) \ |
| 394 | xpc_send_local_notify_IRQ_sn2(_ch, _ipi_f, #_ipi_f) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 395 | |
| 396 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 397 | xpc_send_chctl_closerequest_sn2(struct xpc_channel *ch, |
| 398 | unsigned long *irq_flags) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 399 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 400 | struct xpc_openclose_args *args = ch->sn.sn2.local_openclose_args; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 401 | |
| 402 | args->reason = ch->reason; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 403 | XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_CLOSEREQUEST, irq_flags); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 407 | xpc_send_chctl_closereply_sn2(struct xpc_channel *ch, unsigned long *irq_flags) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 408 | { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 409 | XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_CLOSEREPLY, irq_flags); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 413 | xpc_send_chctl_openrequest_sn2(struct xpc_channel *ch, unsigned long *irq_flags) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 414 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 415 | struct xpc_openclose_args *args = ch->sn.sn2.local_openclose_args; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 416 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 417 | args->entry_size = ch->entry_size; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 418 | args->local_nentries = ch->local_nentries; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 419 | XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_OPENREQUEST, irq_flags); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 423 | xpc_send_chctl_openreply_sn2(struct xpc_channel *ch, unsigned long *irq_flags) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 424 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 425 | struct xpc_openclose_args *args = ch->sn.sn2.local_openclose_args; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 426 | |
| 427 | args->remote_nentries = ch->remote_nentries; |
| 428 | args->local_nentries = ch->local_nentries; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 429 | args->local_msgqueue_pa = xp_pa(ch->sn.sn2.local_msgqueue); |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 430 | XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_OPENREPLY, irq_flags); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 431 | } |
| 432 | |
| 433 | static void |
Robin Holt | efdd06e | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 434 | xpc_send_chctl_opencomplete_sn2(struct xpc_channel *ch, |
| 435 | unsigned long *irq_flags) |
| 436 | { |
| 437 | XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_OPENCOMPLETE, irq_flags); |
| 438 | } |
| 439 | |
| 440 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 441 | xpc_send_chctl_msgrequest_sn2(struct xpc_channel *ch) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 442 | { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 443 | XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_MSGREQUEST, NULL); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 447 | xpc_send_chctl_local_msgrequest_sn2(struct xpc_channel *ch) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 448 | { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 449 | XPC_SEND_LOCAL_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_MSGREQUEST); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Jack Steiner | 6f2584f | 2009-04-02 16:59:10 -0700 | [diff] [blame] | 452 | static enum xp_retval |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 453 | xpc_save_remote_msgqueue_pa_sn2(struct xpc_channel *ch, |
| 454 | unsigned long msgqueue_pa) |
| 455 | { |
| 456 | ch->sn.sn2.remote_msgqueue_pa = msgqueue_pa; |
Jack Steiner | 6f2584f | 2009-04-02 16:59:10 -0700 | [diff] [blame] | 457 | return xpSuccess; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 460 | /* |
| 461 | * This next set of functions are used to keep track of when a partition is |
| 462 | * potentially engaged in accessing memory belonging to another partition. |
| 463 | */ |
| 464 | |
| 465 | static void |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 466 | xpc_indicate_partition_engaged_sn2(struct xpc_partition *part) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 467 | { |
| 468 | unsigned long irq_flags; |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 469 | struct amo *amo = (struct amo *)__va(part->sn.sn2.remote_amos_page_pa + |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 470 | (XPC_ENGAGED_PARTITIONS_AMO_SN2 * |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 471 | sizeof(struct amo))); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 472 | |
| 473 | local_irq_save(irq_flags); |
| 474 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 475 | /* set bit corresponding to our partid in remote partition's amo */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 476 | FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_OR, |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 477 | BIT(sn_partition_id)); |
| 478 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 479 | /* |
| 480 | * We must always use the nofault function regardless of whether we |
| 481 | * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we |
| 482 | * didn't, we'd never know that the other partition is down and would |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 483 | * keep sending IRQs and amos to it until the heartbeat times out. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 484 | */ |
| 485 | (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo-> |
| 486 | variable), |
| 487 | xp_nofault_PIOR_target)); |
| 488 | |
| 489 | local_irq_restore(irq_flags); |
| 490 | } |
| 491 | |
| 492 | static void |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 493 | xpc_indicate_partition_disengaged_sn2(struct xpc_partition *part) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 494 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 495 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 496 | unsigned long irq_flags; |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 497 | struct amo *amo = (struct amo *)__va(part_sn2->remote_amos_page_pa + |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 498 | (XPC_ENGAGED_PARTITIONS_AMO_SN2 * |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 499 | sizeof(struct amo))); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 500 | |
| 501 | local_irq_save(irq_flags); |
| 502 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 503 | /* clear bit corresponding to our partid in remote partition's amo */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 504 | FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_AND, |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 505 | ~BIT(sn_partition_id)); |
| 506 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 507 | /* |
| 508 | * We must always use the nofault function regardless of whether we |
| 509 | * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we |
| 510 | * didn't, we'd never know that the other partition is down and would |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 511 | * keep sending IRQs and amos to it until the heartbeat times out. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 512 | */ |
| 513 | (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo-> |
| 514 | variable), |
| 515 | xp_nofault_PIOR_target)); |
| 516 | |
| 517 | local_irq_restore(irq_flags); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 518 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 519 | /* |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 520 | * Send activate IRQ to get other side to see that we've cleared our |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 521 | * bit in their engaged partitions amo. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 522 | */ |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 523 | xpc_send_activate_IRQ_sn2(part_sn2->remote_amos_page_pa, |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 524 | cnodeid_to_nasid(0), |
| 525 | part_sn2->activate_IRQ_nasid, |
| 526 | part_sn2->activate_IRQ_phys_cpuid); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 527 | } |
| 528 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 529 | static void |
| 530 | xpc_assume_partition_disengaged_sn2(short partid) |
| 531 | { |
| 532 | struct amo *amo = xpc_vars_sn2->amos_page + |
| 533 | XPC_ENGAGED_PARTITIONS_AMO_SN2; |
| 534 | |
| 535 | /* clear bit(s) based on partid mask in our partition's amo */ |
| 536 | FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_AND, |
| 537 | ~BIT(partid)); |
| 538 | } |
| 539 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 540 | static int |
| 541 | xpc_partition_engaged_sn2(short partid) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 542 | { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 543 | struct amo *amo = xpc_vars_sn2->amos_page + |
| 544 | XPC_ENGAGED_PARTITIONS_AMO_SN2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 545 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 546 | /* our partition's amo variable ANDed with partid mask */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 547 | return (FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_LOAD) & |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 548 | BIT(partid)) != 0; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 551 | static int |
| 552 | xpc_any_partition_engaged_sn2(void) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 553 | { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 554 | struct amo *amo = xpc_vars_sn2->amos_page + |
| 555 | XPC_ENGAGED_PARTITIONS_AMO_SN2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 556 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 557 | /* our partition's amo variable */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 558 | return FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_LOAD) != 0; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 559 | } |
| 560 | |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 561 | /* original protection values for each node */ |
| 562 | static u64 xpc_prot_vec_sn2[MAX_NUMNODES]; |
| 563 | |
| 564 | /* |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 565 | * Change protections to allow amo operations on non-Shub 1.1 systems. |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 566 | */ |
| 567 | static enum xp_retval |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 568 | xpc_allow_amo_ops_sn2(struct amo *amos_page) |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 569 | { |
Dean Nelson | 6c1c325 | 2008-11-05 17:27:22 -0600 | [diff] [blame] | 570 | enum xp_retval ret = xpSuccess; |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 571 | |
| 572 | /* |
| 573 | * On SHUB 1.1, we cannot call sn_change_memprotect() since the BIST |
| 574 | * collides with memory operations. On those systems we call |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 575 | * xpc_allow_amo_ops_shub_wars_1_1_sn2() instead. |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 576 | */ |
Dean Nelson | 6c1c325 | 2008-11-05 17:27:22 -0600 | [diff] [blame] | 577 | if (!enable_shub_wars_1_1()) |
| 578 | ret = xp_expand_memprotect(ia64_tpa((u64)amos_page), PAGE_SIZE); |
| 579 | |
| 580 | return ret; |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | /* |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 584 | * Change protections to allow amo operations on Shub 1.1 systems. |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 585 | */ |
| 586 | static void |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 587 | xpc_allow_amo_ops_shub_wars_1_1_sn2(void) |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 588 | { |
| 589 | int node; |
| 590 | int nasid; |
| 591 | |
| 592 | if (!enable_shub_wars_1_1()) |
| 593 | return; |
| 594 | |
| 595 | for_each_online_node(node) { |
| 596 | nasid = cnodeid_to_nasid(node); |
| 597 | /* save current protection values */ |
| 598 | xpc_prot_vec_sn2[node] = |
| 599 | (u64)HUB_L((u64 *)GLOBAL_MMR_ADDR(nasid, |
| 600 | SH1_MD_DQLP_MMR_DIR_PRIVEC0)); |
| 601 | /* open up everything */ |
| 602 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, |
| 603 | SH1_MD_DQLP_MMR_DIR_PRIVEC0), |
| 604 | -1UL); |
| 605 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, |
| 606 | SH1_MD_DQRP_MMR_DIR_PRIVEC0), |
| 607 | -1UL); |
| 608 | } |
| 609 | } |
| 610 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 611 | static enum xp_retval |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 612 | xpc_get_partition_rsvd_page_pa_sn2(void *buf, u64 *cookie, unsigned long *rp_pa, |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 613 | size_t *len) |
| 614 | { |
| 615 | s64 status; |
| 616 | enum xp_retval ret; |
| 617 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 618 | status = sn_partition_reserved_page_pa((u64)buf, cookie, |
| 619 | (u64 *)rp_pa, (u64 *)len); |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 620 | if (status == SALRET_OK) |
| 621 | ret = xpSuccess; |
| 622 | else if (status == SALRET_MORE_PASSES) |
| 623 | ret = xpNeedMoreInfo; |
| 624 | else |
| 625 | ret = xpSalError; |
| 626 | |
| 627 | return ret; |
| 628 | } |
| 629 | |
| 630 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 631 | static int |
Robin Holt | a7665b0 | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 632 | xpc_setup_rsvd_page_sn2(struct xpc_rsvd_page *rp) |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 633 | { |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 634 | struct amo *amos_page; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 635 | int i; |
| 636 | int ret; |
| 637 | |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 638 | xpc_vars_sn2 = XPC_RP_VARS(rp); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 639 | |
Robin Holt | a374c57 | 2009-04-13 14:40:18 -0700 | [diff] [blame] | 640 | rp->sn.sn2.vars_pa = xp_pa(xpc_vars_sn2); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 641 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 642 | /* vars_part array follows immediately after vars */ |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 643 | xpc_vars_part_sn2 = (struct xpc_vars_part_sn2 *)((u8 *)XPC_RP_VARS(rp) + |
| 644 | XPC_RP_VARS_SIZE); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 645 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 646 | /* |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 647 | * Before clearing xpc_vars_sn2, see if a page of amos had been |
| 648 | * previously allocated. If not we'll need to allocate one and set |
| 649 | * permissions so that cross-partition amos are allowed. |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 650 | * |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 651 | * The allocated amo page needs MCA reporting to remain disabled after |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 652 | * XPC has unloaded. To make this work, we keep a copy of the pointer |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 653 | * to this page (i.e., amos_page) in the struct xpc_vars_sn2 structure, |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 654 | * which is pointed to by the reserved page, and re-use that saved copy |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 655 | * on subsequent loads of XPC. This amo page is never freed, and its |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 656 | * memory protections are never restricted. |
| 657 | */ |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 658 | amos_page = xpc_vars_sn2->amos_page; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 659 | if (amos_page == NULL) { |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 660 | amos_page = (struct amo *)TO_AMO(uncached_alloc_page(0, 1)); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 661 | if (amos_page == NULL) { |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 662 | dev_err(xpc_part, "can't allocate page of amos\n"); |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 663 | return -ENOMEM; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | /* |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 667 | * Open up amo-R/W to cpu. This is done on Shub 1.1 systems |
| 668 | * when xpc_allow_amo_ops_shub_wars_1_1_sn2() is called. |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 669 | */ |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 670 | ret = xpc_allow_amo_ops_sn2(amos_page); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 671 | if (ret != xpSuccess) { |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 672 | dev_err(xpc_part, "can't allow amo operations\n"); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 673 | uncached_free_page(__IA64_UNCACHED_OFFSET | |
| 674 | TO_PHYS((u64)amos_page), 1); |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 675 | return -EPERM; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 676 | } |
| 677 | } |
| 678 | |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 679 | /* clear xpc_vars_sn2 */ |
| 680 | memset(xpc_vars_sn2, 0, sizeof(struct xpc_vars_sn2)); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 681 | |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 682 | xpc_vars_sn2->version = XPC_V_VERSION; |
| 683 | xpc_vars_sn2->activate_IRQ_nasid = cpuid_to_nasid(0); |
| 684 | xpc_vars_sn2->activate_IRQ_phys_cpuid = cpu_physical_id(0); |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 685 | xpc_vars_sn2->vars_part_pa = xp_pa(xpc_vars_part_sn2); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 686 | xpc_vars_sn2->amos_page_pa = ia64_tpa((u64)amos_page); |
| 687 | xpc_vars_sn2->amos_page = amos_page; /* save for next load of XPC */ |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 688 | |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 689 | /* clear xpc_vars_part_sn2 */ |
| 690 | memset((u64 *)xpc_vars_part_sn2, 0, sizeof(struct xpc_vars_part_sn2) * |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 691 | XP_MAX_NPARTITIONS_SN2); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 692 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 693 | /* initialize the activate IRQ related amo variables */ |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 694 | for (i = 0; i < xpc_nasid_mask_nlongs; i++) |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 695 | (void)xpc_init_IRQ_amo_sn2(XPC_ACTIVATE_IRQ_AMOS_SN2 + i); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 696 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 697 | /* initialize the engaged remote partitions related amo variables */ |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 698 | (void)xpc_init_IRQ_amo_sn2(XPC_ENGAGED_PARTITIONS_AMO_SN2); |
| 699 | (void)xpc_init_IRQ_amo_sn2(XPC_DEACTIVATE_REQUEST_AMO_SN2); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 700 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 701 | return 0; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 702 | } |
| 703 | |
Robin Holt | a374c57 | 2009-04-13 14:40:18 -0700 | [diff] [blame] | 704 | static int |
| 705 | xpc_hb_allowed_sn2(short partid, void *heartbeating_to_mask) |
| 706 | { |
| 707 | return test_bit(partid, heartbeating_to_mask); |
| 708 | } |
| 709 | |
| 710 | static void |
| 711 | xpc_allow_hb_sn2(short partid) |
| 712 | { |
| 713 | DBUG_ON(xpc_vars_sn2 == NULL); |
| 714 | set_bit(partid, xpc_vars_sn2->heartbeating_to_mask); |
| 715 | } |
| 716 | |
| 717 | static void |
| 718 | xpc_disallow_hb_sn2(short partid) |
| 719 | { |
| 720 | DBUG_ON(xpc_vars_sn2 == NULL); |
| 721 | clear_bit(partid, xpc_vars_sn2->heartbeating_to_mask); |
| 722 | } |
| 723 | |
| 724 | static void |
| 725 | xpc_disallow_all_hbs_sn2(void) |
| 726 | { |
| 727 | DBUG_ON(xpc_vars_sn2 == NULL); |
| 728 | bitmap_zero(xpc_vars_sn2->heartbeating_to_mask, xp_max_npartitions); |
| 729 | } |
| 730 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 731 | static void |
| 732 | xpc_increment_heartbeat_sn2(void) |
| 733 | { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 734 | xpc_vars_sn2->heartbeat++; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | static void |
| 738 | xpc_offline_heartbeat_sn2(void) |
| 739 | { |
| 740 | xpc_increment_heartbeat_sn2(); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 741 | xpc_vars_sn2->heartbeat_offline = 1; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | static void |
| 745 | xpc_online_heartbeat_sn2(void) |
| 746 | { |
| 747 | xpc_increment_heartbeat_sn2(); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 748 | xpc_vars_sn2->heartbeat_offline = 0; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | static void |
| 752 | xpc_heartbeat_init_sn2(void) |
| 753 | { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 754 | DBUG_ON(xpc_vars_sn2 == NULL); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 755 | |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 756 | bitmap_zero(xpc_vars_sn2->heartbeating_to_mask, XP_MAX_NPARTITIONS_SN2); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 757 | xpc_online_heartbeat_sn2(); |
| 758 | } |
| 759 | |
| 760 | static void |
| 761 | xpc_heartbeat_exit_sn2(void) |
| 762 | { |
| 763 | xpc_offline_heartbeat_sn2(); |
| 764 | } |
| 765 | |
Dean Nelson | 61deb86 | 2008-07-29 22:34:17 -0700 | [diff] [blame] | 766 | static enum xp_retval |
| 767 | xpc_get_remote_heartbeat_sn2(struct xpc_partition *part) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 768 | { |
| 769 | struct xpc_vars_sn2 *remote_vars; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 770 | enum xp_retval ret; |
| 771 | |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 772 | remote_vars = (struct xpc_vars_sn2 *)xpc_remote_copy_buffer_sn2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 773 | |
Dean Nelson | 61deb86 | 2008-07-29 22:34:17 -0700 | [diff] [blame] | 774 | /* pull the remote vars structure that contains the heartbeat */ |
| 775 | ret = xp_remote_memcpy(xp_pa(remote_vars), |
| 776 | part->sn.sn2.remote_vars_pa, |
| 777 | XPC_RP_VARS_SIZE); |
| 778 | if (ret != xpSuccess) |
| 779 | return ret; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 780 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 781 | dev_dbg(xpc_part, "partid=%d, heartbeat=%lld, last_heartbeat=%lld, " |
| 782 | "heartbeat_offline=%lld, HB_mask[0]=0x%lx\n", XPC_PARTID(part), |
Dean Nelson | 61deb86 | 2008-07-29 22:34:17 -0700 | [diff] [blame] | 783 | remote_vars->heartbeat, part->last_heartbeat, |
| 784 | remote_vars->heartbeat_offline, |
| 785 | remote_vars->heartbeating_to_mask[0]); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 786 | |
Dean Nelson | 61deb86 | 2008-07-29 22:34:17 -0700 | [diff] [blame] | 787 | if ((remote_vars->heartbeat == part->last_heartbeat && |
Robin Holt | a374c57 | 2009-04-13 14:40:18 -0700 | [diff] [blame] | 788 | !remote_vars->heartbeat_offline) || |
| 789 | !xpc_hb_allowed_sn2(sn_partition_id, |
| 790 | remote_vars->heartbeating_to_mask)) { |
Dean Nelson | 61deb86 | 2008-07-29 22:34:17 -0700 | [diff] [blame] | 791 | ret = xpNoHeartbeat; |
| 792 | } else { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 793 | part->last_heartbeat = remote_vars->heartbeat; |
| 794 | } |
Dean Nelson | 61deb86 | 2008-07-29 22:34:17 -0700 | [diff] [blame] | 795 | |
| 796 | return ret; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | /* |
| 800 | * Get a copy of the remote partition's XPC variables from the reserved page. |
| 801 | * |
| 802 | * remote_vars points to a buffer that is cacheline aligned for BTE copies and |
| 803 | * assumed to be of size XPC_RP_VARS_SIZE. |
| 804 | */ |
| 805 | static enum xp_retval |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 806 | xpc_get_remote_vars_sn2(unsigned long remote_vars_pa, |
| 807 | struct xpc_vars_sn2 *remote_vars) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 808 | { |
| 809 | enum xp_retval ret; |
| 810 | |
| 811 | if (remote_vars_pa == 0) |
| 812 | return xpVarsNotSet; |
| 813 | |
| 814 | /* pull over the cross partition variables */ |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 815 | ret = xp_remote_memcpy(xp_pa(remote_vars), remote_vars_pa, |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 816 | XPC_RP_VARS_SIZE); |
| 817 | if (ret != xpSuccess) |
| 818 | return ret; |
| 819 | |
| 820 | if (XPC_VERSION_MAJOR(remote_vars->version) != |
| 821 | XPC_VERSION_MAJOR(XPC_V_VERSION)) { |
| 822 | return xpBadVersion; |
| 823 | } |
| 824 | |
| 825 | return xpSuccess; |
| 826 | } |
| 827 | |
| 828 | static void |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 829 | xpc_request_partition_activation_sn2(struct xpc_rsvd_page *remote_rp, |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 830 | unsigned long remote_rp_pa, int nasid) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 831 | { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 832 | xpc_send_local_activate_IRQ_sn2(nasid); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | static void |
| 836 | xpc_request_partition_reactivation_sn2(struct xpc_partition *part) |
| 837 | { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 838 | xpc_send_local_activate_IRQ_sn2(part->sn.sn2.activate_IRQ_nasid); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 839 | } |
| 840 | |
| 841 | static void |
| 842 | xpc_request_partition_deactivation_sn2(struct xpc_partition *part) |
| 843 | { |
| 844 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
| 845 | unsigned long irq_flags; |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 846 | struct amo *amo = (struct amo *)__va(part_sn2->remote_amos_page_pa + |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 847 | (XPC_DEACTIVATE_REQUEST_AMO_SN2 * |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 848 | sizeof(struct amo))); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 849 | |
| 850 | local_irq_save(irq_flags); |
| 851 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 852 | /* set bit corresponding to our partid in remote partition's amo */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 853 | FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_OR, |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 854 | BIT(sn_partition_id)); |
| 855 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 856 | /* |
| 857 | * We must always use the nofault function regardless of whether we |
| 858 | * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we |
| 859 | * didn't, we'd never know that the other partition is down and would |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 860 | * keep sending IRQs and amos to it until the heartbeat times out. |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 861 | */ |
| 862 | (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo-> |
| 863 | variable), |
| 864 | xp_nofault_PIOR_target)); |
| 865 | |
| 866 | local_irq_restore(irq_flags); |
| 867 | |
| 868 | /* |
| 869 | * Send activate IRQ to get other side to see that we've set our |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 870 | * bit in their deactivate request amo. |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 871 | */ |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 872 | xpc_send_activate_IRQ_sn2(part_sn2->remote_amos_page_pa, |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 873 | cnodeid_to_nasid(0), |
| 874 | part_sn2->activate_IRQ_nasid, |
| 875 | part_sn2->activate_IRQ_phys_cpuid); |
| 876 | } |
| 877 | |
| 878 | static void |
| 879 | xpc_cancel_partition_deactivation_request_sn2(struct xpc_partition *part) |
| 880 | { |
| 881 | unsigned long irq_flags; |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 882 | struct amo *amo = (struct amo *)__va(part->sn.sn2.remote_amos_page_pa + |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 883 | (XPC_DEACTIVATE_REQUEST_AMO_SN2 * |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 884 | sizeof(struct amo))); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 885 | |
| 886 | local_irq_save(irq_flags); |
| 887 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 888 | /* clear bit corresponding to our partid in remote partition's amo */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 889 | FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_AND, |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 890 | ~BIT(sn_partition_id)); |
| 891 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 892 | /* |
| 893 | * We must always use the nofault function regardless of whether we |
| 894 | * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we |
| 895 | * didn't, we'd never know that the other partition is down and would |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 896 | * keep sending IRQs and amos to it until the heartbeat times out. |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 897 | */ |
| 898 | (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo-> |
| 899 | variable), |
| 900 | xp_nofault_PIOR_target)); |
| 901 | |
| 902 | local_irq_restore(irq_flags); |
| 903 | } |
| 904 | |
| 905 | static int |
| 906 | xpc_partition_deactivation_requested_sn2(short partid) |
| 907 | { |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 908 | struct amo *amo = xpc_vars_sn2->amos_page + |
| 909 | XPC_DEACTIVATE_REQUEST_AMO_SN2; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 910 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 911 | /* our partition's amo variable ANDed with partid mask */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 912 | return (FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_LOAD) & |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 913 | BIT(partid)) != 0; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | /* |
| 917 | * Update the remote partition's info. |
| 918 | */ |
| 919 | static void |
| 920 | xpc_update_partition_info_sn2(struct xpc_partition *part, u8 remote_rp_version, |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 921 | unsigned long *remote_rp_ts_jiffies, |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 922 | unsigned long remote_rp_pa, |
| 923 | unsigned long remote_vars_pa, |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 924 | struct xpc_vars_sn2 *remote_vars) |
| 925 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 926 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
| 927 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 928 | part->remote_rp_version = remote_rp_version; |
| 929 | dev_dbg(xpc_part, " remote_rp_version = 0x%016x\n", |
| 930 | part->remote_rp_version); |
| 931 | |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 932 | part->remote_rp_ts_jiffies = *remote_rp_ts_jiffies; |
| 933 | dev_dbg(xpc_part, " remote_rp_ts_jiffies = 0x%016lx\n", |
| 934 | part->remote_rp_ts_jiffies); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 935 | |
| 936 | part->remote_rp_pa = remote_rp_pa; |
| 937 | dev_dbg(xpc_part, " remote_rp_pa = 0x%016lx\n", part->remote_rp_pa); |
| 938 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 939 | part_sn2->remote_vars_pa = remote_vars_pa; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 940 | dev_dbg(xpc_part, " remote_vars_pa = 0x%016lx\n", |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 941 | part_sn2->remote_vars_pa); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 942 | |
Dean Nelson | 158bc69 | 2009-01-15 13:50:57 -0800 | [diff] [blame] | 943 | part->last_heartbeat = remote_vars->heartbeat - 1; |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 944 | dev_dbg(xpc_part, " last_heartbeat = 0x%016llx\n", |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 945 | part->last_heartbeat); |
| 946 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 947 | part_sn2->remote_vars_part_pa = remote_vars->vars_part_pa; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 948 | dev_dbg(xpc_part, " remote_vars_part_pa = 0x%016lx\n", |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 949 | part_sn2->remote_vars_part_pa); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 950 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 951 | part_sn2->activate_IRQ_nasid = remote_vars->activate_IRQ_nasid; |
| 952 | dev_dbg(xpc_part, " activate_IRQ_nasid = 0x%x\n", |
| 953 | part_sn2->activate_IRQ_nasid); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 954 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 955 | part_sn2->activate_IRQ_phys_cpuid = |
| 956 | remote_vars->activate_IRQ_phys_cpuid; |
| 957 | dev_dbg(xpc_part, " activate_IRQ_phys_cpuid = 0x%x\n", |
| 958 | part_sn2->activate_IRQ_phys_cpuid); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 959 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 960 | part_sn2->remote_amos_page_pa = remote_vars->amos_page_pa; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 961 | dev_dbg(xpc_part, " remote_amos_page_pa = 0x%lx\n", |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 962 | part_sn2->remote_amos_page_pa); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 963 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 964 | part_sn2->remote_vars_version = remote_vars->version; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 965 | dev_dbg(xpc_part, " remote_vars_version = 0x%x\n", |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 966 | part_sn2->remote_vars_version); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 967 | } |
| 968 | |
| 969 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 970 | * Prior code has determined the nasid which generated a activate IRQ. |
| 971 | * Inspect that nasid to determine if its partition needs to be activated |
| 972 | * or deactivated. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 973 | * |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 974 | * A partition is considered "awaiting activation" if our partition |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 975 | * flags indicate it is not active and it has a heartbeat. A |
| 976 | * partition is considered "awaiting deactivation" if our partition |
| 977 | * flags indicate it is active but it has no heartbeat or it is not |
| 978 | * sending its heartbeat to us. |
| 979 | * |
| 980 | * To determine the heartbeat, the remote nasid must have a properly |
| 981 | * initialized reserved page. |
| 982 | */ |
| 983 | static void |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 984 | xpc_identify_activate_IRQ_req_sn2(int nasid) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 985 | { |
| 986 | struct xpc_rsvd_page *remote_rp; |
| 987 | struct xpc_vars_sn2 *remote_vars; |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 988 | unsigned long remote_rp_pa; |
| 989 | unsigned long remote_vars_pa; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 990 | int remote_rp_version; |
| 991 | int reactivate = 0; |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 992 | unsigned long remote_rp_ts_jiffies = 0; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 993 | short partid; |
| 994 | struct xpc_partition *part; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 995 | struct xpc_partition_sn2 *part_sn2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 996 | enum xp_retval ret; |
| 997 | |
| 998 | /* pull over the reserved page structure */ |
| 999 | |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 1000 | remote_rp = (struct xpc_rsvd_page *)xpc_remote_copy_buffer_sn2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1001 | |
| 1002 | ret = xpc_get_remote_rp(nasid, NULL, remote_rp, &remote_rp_pa); |
| 1003 | if (ret != xpSuccess) { |
| 1004 | dev_warn(xpc_part, "unable to get reserved page from nasid %d, " |
| 1005 | "which sent interrupt, reason=%d\n", nasid, ret); |
| 1006 | return; |
| 1007 | } |
| 1008 | |
Robin Holt | a374c57 | 2009-04-13 14:40:18 -0700 | [diff] [blame] | 1009 | remote_vars_pa = remote_rp->sn.sn2.vars_pa; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1010 | remote_rp_version = remote_rp->version; |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 1011 | remote_rp_ts_jiffies = remote_rp->ts_jiffies; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1012 | |
| 1013 | partid = remote_rp->SAL_partid; |
| 1014 | part = &xpc_partitions[partid]; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1015 | part_sn2 = &part->sn.sn2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1016 | |
| 1017 | /* pull over the cross partition variables */ |
| 1018 | |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 1019 | remote_vars = (struct xpc_vars_sn2 *)xpc_remote_copy_buffer_sn2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1020 | |
| 1021 | ret = xpc_get_remote_vars_sn2(remote_vars_pa, remote_vars); |
| 1022 | if (ret != xpSuccess) { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1023 | dev_warn(xpc_part, "unable to get XPC variables from nasid %d, " |
| 1024 | "which sent interrupt, reason=%d\n", nasid, ret); |
| 1025 | |
| 1026 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 1027 | return; |
| 1028 | } |
| 1029 | |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1030 | part->activate_IRQ_rcvd++; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1031 | |
| 1032 | dev_dbg(xpc_part, "partid for nasid %d is %d; IRQs = %d; HB = " |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1033 | "%lld:0x%lx\n", (int)nasid, (int)partid, |
| 1034 | part->activate_IRQ_rcvd, |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1035 | remote_vars->heartbeat, remote_vars->heartbeating_to_mask[0]); |
| 1036 | |
| 1037 | if (xpc_partition_disengaged(part) && |
Dean Nelson | 83469b5 | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1038 | part->act_state == XPC_P_AS_INACTIVE) { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1039 | |
| 1040 | xpc_update_partition_info_sn2(part, remote_rp_version, |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 1041 | &remote_rp_ts_jiffies, |
| 1042 | remote_rp_pa, remote_vars_pa, |
| 1043 | remote_vars); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1044 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1045 | if (xpc_partition_deactivation_requested_sn2(partid)) { |
| 1046 | /* |
| 1047 | * Other side is waiting on us to deactivate even though |
| 1048 | * we already have. |
| 1049 | */ |
| 1050 | return; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1051 | } |
| 1052 | |
| 1053 | xpc_activate_partition(part); |
| 1054 | return; |
| 1055 | } |
| 1056 | |
| 1057 | DBUG_ON(part->remote_rp_version == 0); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1058 | DBUG_ON(part_sn2->remote_vars_version == 0); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1059 | |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 1060 | if (remote_rp_ts_jiffies != part->remote_rp_ts_jiffies) { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1061 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1062 | /* the other side rebooted */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1063 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1064 | DBUG_ON(xpc_partition_engaged_sn2(partid)); |
| 1065 | DBUG_ON(xpc_partition_deactivation_requested_sn2(partid)); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1066 | |
| 1067 | xpc_update_partition_info_sn2(part, remote_rp_version, |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 1068 | &remote_rp_ts_jiffies, |
| 1069 | remote_rp_pa, remote_vars_pa, |
| 1070 | remote_vars); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1071 | reactivate = 1; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1072 | } |
| 1073 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1074 | if (part->disengage_timeout > 0 && !xpc_partition_disengaged(part)) { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1075 | /* still waiting on other side to disengage from us */ |
| 1076 | return; |
| 1077 | } |
| 1078 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1079 | if (reactivate) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1080 | XPC_DEACTIVATE_PARTITION(part, xpReactivating); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1081 | else if (xpc_partition_deactivation_requested_sn2(partid)) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1082 | XPC_DEACTIVATE_PARTITION(part, xpOtherGoingDown); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1083 | } |
| 1084 | |
| 1085 | /* |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1086 | * Loop through the activation amo variables and process any bits |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1087 | * which are set. Each bit indicates a nasid sending a partition |
| 1088 | * activation or deactivation request. |
| 1089 | * |
| 1090 | * Return #of IRQs detected. |
| 1091 | */ |
| 1092 | int |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1093 | xpc_identify_activate_IRQ_sender_sn2(void) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1094 | { |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1095 | int l; |
| 1096 | int b; |
| 1097 | unsigned long nasid_mask_long; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1098 | u64 nasid; /* remote nasid */ |
| 1099 | int n_IRQs_detected = 0; |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1100 | struct amo *act_amos; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1101 | |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 1102 | act_amos = xpc_vars_sn2->amos_page + XPC_ACTIVATE_IRQ_AMOS_SN2; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1103 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1104 | /* scan through activate amo variables looking for non-zero entries */ |
| 1105 | for (l = 0; l < xpc_nasid_mask_nlongs; l++) { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1106 | |
| 1107 | if (xpc_exiting) |
| 1108 | break; |
| 1109 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1110 | nasid_mask_long = xpc_receive_IRQ_amo_sn2(&act_amos[l]); |
| 1111 | |
| 1112 | b = find_first_bit(&nasid_mask_long, BITS_PER_LONG); |
| 1113 | if (b >= BITS_PER_LONG) { |
| 1114 | /* no IRQs from nasids in this amo variable */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1115 | continue; |
| 1116 | } |
| 1117 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1118 | dev_dbg(xpc_part, "amo[%d] gave back 0x%lx\n", l, |
| 1119 | nasid_mask_long); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1120 | |
| 1121 | /* |
| 1122 | * If this nasid has been added to the machine since |
| 1123 | * our partition was reset, this will retain the |
| 1124 | * remote nasid in our reserved pages machine mask. |
| 1125 | * This is used in the event of module reload. |
| 1126 | */ |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1127 | xpc_mach_nasids[l] |= nasid_mask_long; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1128 | |
| 1129 | /* locate the nasid(s) which sent interrupts */ |
| 1130 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1131 | do { |
| 1132 | n_IRQs_detected++; |
| 1133 | nasid = (l * BITS_PER_LONG + b) * 2; |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1134 | dev_dbg(xpc_part, "interrupt from nasid %lld\n", nasid); |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1135 | xpc_identify_activate_IRQ_req_sn2(nasid); |
| 1136 | |
| 1137 | b = find_next_bit(&nasid_mask_long, BITS_PER_LONG, |
| 1138 | b + 1); |
| 1139 | } while (b < BITS_PER_LONG); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1140 | } |
| 1141 | return n_IRQs_detected; |
| 1142 | } |
| 1143 | |
| 1144 | static void |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1145 | xpc_process_activate_IRQ_rcvd_sn2(void) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1146 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1147 | unsigned long irq_flags; |
| 1148 | int n_IRQs_expected; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1149 | int n_IRQs_detected; |
| 1150 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1151 | spin_lock_irqsave(&xpc_activate_IRQ_rcvd_lock, irq_flags); |
| 1152 | n_IRQs_expected = xpc_activate_IRQ_rcvd; |
| 1153 | xpc_activate_IRQ_rcvd = 0; |
| 1154 | spin_unlock_irqrestore(&xpc_activate_IRQ_rcvd_lock, irq_flags); |
| 1155 | |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1156 | n_IRQs_detected = xpc_identify_activate_IRQ_sender_sn2(); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1157 | if (n_IRQs_detected < n_IRQs_expected) { |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1158 | /* retry once to help avoid missing amo */ |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1159 | (void)xpc_identify_activate_IRQ_sender_sn2(); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1160 | } |
| 1161 | } |
| 1162 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1163 | /* |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1164 | * Setup the channel structures that are sn2 specific. |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1165 | */ |
| 1166 | static enum xp_retval |
Robin Holt | a7665b0 | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 1167 | xpc_setup_ch_structures_sn2(struct xpc_partition *part) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1168 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1169 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1170 | struct xpc_channel_sn2 *ch_sn2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1171 | enum xp_retval retval; |
| 1172 | int ret; |
| 1173 | int cpuid; |
| 1174 | int ch_number; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1175 | struct timer_list *timer; |
| 1176 | short partid = XPC_PARTID(part); |
| 1177 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1178 | /* allocate all the required GET/PUT values */ |
| 1179 | |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1180 | part_sn2->local_GPs = |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1181 | xpc_kzalloc_cacheline_aligned(XPC_GP_SIZE, GFP_KERNEL, |
| 1182 | &part_sn2->local_GPs_base); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1183 | if (part_sn2->local_GPs == NULL) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1184 | dev_err(xpc_chan, "can't get memory for local get/put " |
| 1185 | "values\n"); |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1186 | return xpNoMemory; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1187 | } |
| 1188 | |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1189 | part_sn2->remote_GPs = |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1190 | xpc_kzalloc_cacheline_aligned(XPC_GP_SIZE, GFP_KERNEL, |
| 1191 | &part_sn2->remote_GPs_base); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1192 | if (part_sn2->remote_GPs == NULL) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1193 | dev_err(xpc_chan, "can't get memory for remote get/put " |
| 1194 | "values\n"); |
| 1195 | retval = xpNoMemory; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1196 | goto out_1; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1197 | } |
| 1198 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1199 | part_sn2->remote_GPs_pa = 0; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1200 | |
| 1201 | /* allocate all the required open and close args */ |
| 1202 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1203 | part_sn2->local_openclose_args = |
| 1204 | xpc_kzalloc_cacheline_aligned(XPC_OPENCLOSE_ARGS_SIZE, |
| 1205 | GFP_KERNEL, &part_sn2-> |
| 1206 | local_openclose_args_base); |
| 1207 | if (part_sn2->local_openclose_args == NULL) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1208 | dev_err(xpc_chan, "can't get memory for local connect args\n"); |
| 1209 | retval = xpNoMemory; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1210 | goto out_2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1211 | } |
| 1212 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1213 | part_sn2->remote_openclose_args_pa = 0; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1214 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1215 | part_sn2->local_chctl_amo_va = xpc_init_IRQ_amo_sn2(partid); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1216 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1217 | part_sn2->notify_IRQ_nasid = 0; |
| 1218 | part_sn2->notify_IRQ_phys_cpuid = 0; |
| 1219 | part_sn2->remote_chctl_amo_va = NULL; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1220 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1221 | sprintf(part_sn2->notify_IRQ_owner, "xpc%02d", partid); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1222 | ret = request_irq(SGI_XPC_NOTIFY, xpc_handle_notify_IRQ_sn2, |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1223 | IRQF_SHARED, part_sn2->notify_IRQ_owner, |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1224 | (void *)(u64)partid); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1225 | if (ret != 0) { |
| 1226 | dev_err(xpc_chan, "can't register NOTIFY IRQ handler, " |
| 1227 | "errno=%d\n", -ret); |
| 1228 | retval = xpLackOfResources; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1229 | goto out_3; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1230 | } |
| 1231 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1232 | /* Setup a timer to check for dropped notify IRQs */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1233 | timer = &part_sn2->dropped_notify_IRQ_timer; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1234 | init_timer(timer); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1235 | timer->function = |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1236 | (void (*)(unsigned long))xpc_check_for_dropped_notify_IRQ_sn2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1237 | timer->data = (unsigned long)part; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1238 | timer->expires = jiffies + XPC_DROPPED_NOTIFY_IRQ_WAIT_INTERVAL; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1239 | add_timer(timer); |
| 1240 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1241 | for (ch_number = 0; ch_number < part->nchannels; ch_number++) { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1242 | ch_sn2 = &part->channels[ch_number].sn.sn2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1243 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1244 | ch_sn2->local_GP = &part_sn2->local_GPs[ch_number]; |
| 1245 | ch_sn2->local_openclose_args = |
| 1246 | &part_sn2->local_openclose_args[ch_number]; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1247 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1248 | mutex_init(&ch_sn2->msg_to_pull_mutex); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1249 | } |
| 1250 | |
| 1251 | /* |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1252 | * Setup the per partition specific variables required by the |
| 1253 | * remote partition to establish channel connections with us. |
| 1254 | * |
| 1255 | * The setting of the magic # indicates that these per partition |
| 1256 | * specific variables are ready to be used. |
| 1257 | */ |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1258 | xpc_vars_part_sn2[partid].GPs_pa = xp_pa(part_sn2->local_GPs); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 1259 | xpc_vars_part_sn2[partid].openclose_args_pa = |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1260 | xp_pa(part_sn2->local_openclose_args); |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 1261 | xpc_vars_part_sn2[partid].chctl_amo_pa = |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1262 | xp_pa(part_sn2->local_chctl_amo_va); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1263 | cpuid = raw_smp_processor_id(); /* any CPU in this partition will do */ |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 1264 | xpc_vars_part_sn2[partid].notify_IRQ_nasid = cpuid_to_nasid(cpuid); |
| 1265 | xpc_vars_part_sn2[partid].notify_IRQ_phys_cpuid = |
| 1266 | cpu_physical_id(cpuid); |
| 1267 | xpc_vars_part_sn2[partid].nchannels = part->nchannels; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1268 | xpc_vars_part_sn2[partid].magic = XPC_VP_MAGIC1_SN2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1269 | |
| 1270 | return xpSuccess; |
| 1271 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1272 | /* setup of ch structures failed */ |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1273 | out_3: |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1274 | kfree(part_sn2->local_openclose_args_base); |
| 1275 | part_sn2->local_openclose_args = NULL; |
| 1276 | out_2: |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1277 | kfree(part_sn2->remote_GPs_base); |
| 1278 | part_sn2->remote_GPs = NULL; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1279 | out_1: |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1280 | kfree(part_sn2->local_GPs_base); |
| 1281 | part_sn2->local_GPs = NULL; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1282 | return retval; |
| 1283 | } |
| 1284 | |
| 1285 | /* |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1286 | * Teardown the channel structures that are sn2 specific. |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1287 | */ |
| 1288 | static void |
Robin Holt | a7665b0 | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 1289 | xpc_teardown_ch_structures_sn2(struct xpc_partition *part) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1290 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1291 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1292 | short partid = XPC_PARTID(part); |
| 1293 | |
| 1294 | /* |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1295 | * Indicate that the variables specific to the remote partition are no |
| 1296 | * longer available for its use. |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1297 | */ |
Dean Nelson | 8e85c23 | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 1298 | xpc_vars_part_sn2[partid].magic = 0; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1299 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1300 | /* in case we've still got outstanding timers registered... */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1301 | del_timer_sync(&part_sn2->dropped_notify_IRQ_timer); |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1302 | free_irq(SGI_XPC_NOTIFY, (void *)(u64)partid); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1303 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1304 | kfree(part_sn2->local_openclose_args_base); |
| 1305 | part_sn2->local_openclose_args = NULL; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1306 | kfree(part_sn2->remote_GPs_base); |
| 1307 | part_sn2->remote_GPs = NULL; |
| 1308 | kfree(part_sn2->local_GPs_base); |
| 1309 | part_sn2->local_GPs = NULL; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1310 | part_sn2->local_chctl_amo_va = NULL; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1311 | } |
| 1312 | |
| 1313 | /* |
| 1314 | * Create a wrapper that hides the underlying mechanism for pulling a cacheline |
| 1315 | * (or multiple cachelines) from a remote partition. |
| 1316 | * |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1317 | * src_pa must be a cacheline aligned physical address on the remote partition. |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1318 | * dst must be a cacheline aligned virtual address on this partition. |
| 1319 | * cnt must be cacheline sized |
| 1320 | */ |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 1321 | /* ??? Replace this function by call to xp_remote_memcpy() or bte_copy()? */ |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1322 | static enum xp_retval |
| 1323 | xpc_pull_remote_cachelines_sn2(struct xpc_partition *part, void *dst, |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1324 | const unsigned long src_pa, size_t cnt) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1325 | { |
| 1326 | enum xp_retval ret; |
| 1327 | |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1328 | DBUG_ON(src_pa != L1_CACHE_ALIGN(src_pa)); |
| 1329 | DBUG_ON((unsigned long)dst != L1_CACHE_ALIGN((unsigned long)dst)); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1330 | DBUG_ON(cnt != L1_CACHE_ALIGN(cnt)); |
| 1331 | |
Dean Nelson | 83469b5 | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1332 | if (part->act_state == XPC_P_AS_DEACTIVATING) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1333 | return part->reason; |
| 1334 | |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1335 | ret = xp_remote_memcpy(xp_pa(dst), src_pa, cnt); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1336 | if (ret != xpSuccess) { |
| 1337 | dev_dbg(xpc_chan, "xp_remote_memcpy() from partition %d failed," |
| 1338 | " ret=%d\n", XPC_PARTID(part), ret); |
| 1339 | } |
| 1340 | return ret; |
| 1341 | } |
| 1342 | |
| 1343 | /* |
| 1344 | * Pull the remote per partition specific variables from the specified |
| 1345 | * partition. |
| 1346 | */ |
| 1347 | static enum xp_retval |
| 1348 | xpc_pull_remote_vars_part_sn2(struct xpc_partition *part) |
| 1349 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1350 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1351 | u8 buffer[L1_CACHE_BYTES * 2]; |
| 1352 | struct xpc_vars_part_sn2 *pulled_entry_cacheline = |
| 1353 | (struct xpc_vars_part_sn2 *)L1_CACHE_ALIGN((u64)buffer); |
| 1354 | struct xpc_vars_part_sn2 *pulled_entry; |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1355 | unsigned long remote_entry_cacheline_pa; |
| 1356 | unsigned long remote_entry_pa; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1357 | short partid = XPC_PARTID(part); |
| 1358 | enum xp_retval ret; |
| 1359 | |
| 1360 | /* pull the cacheline that contains the variables we're interested in */ |
| 1361 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1362 | DBUG_ON(part_sn2->remote_vars_part_pa != |
| 1363 | L1_CACHE_ALIGN(part_sn2->remote_vars_part_pa)); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1364 | DBUG_ON(sizeof(struct xpc_vars_part_sn2) != L1_CACHE_BYTES / 2); |
| 1365 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1366 | remote_entry_pa = part_sn2->remote_vars_part_pa + |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1367 | sn_partition_id * sizeof(struct xpc_vars_part_sn2); |
| 1368 | |
| 1369 | remote_entry_cacheline_pa = (remote_entry_pa & ~(L1_CACHE_BYTES - 1)); |
| 1370 | |
| 1371 | pulled_entry = (struct xpc_vars_part_sn2 *)((u64)pulled_entry_cacheline |
| 1372 | + (remote_entry_pa & |
| 1373 | (L1_CACHE_BYTES - 1))); |
| 1374 | |
| 1375 | ret = xpc_pull_remote_cachelines_sn2(part, pulled_entry_cacheline, |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1376 | remote_entry_cacheline_pa, |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1377 | L1_CACHE_BYTES); |
| 1378 | if (ret != xpSuccess) { |
| 1379 | dev_dbg(xpc_chan, "failed to pull XPC vars_part from " |
| 1380 | "partition %d, ret=%d\n", partid, ret); |
| 1381 | return ret; |
| 1382 | } |
| 1383 | |
| 1384 | /* see if they've been set up yet */ |
| 1385 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1386 | if (pulled_entry->magic != XPC_VP_MAGIC1_SN2 && |
| 1387 | pulled_entry->magic != XPC_VP_MAGIC2_SN2) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1388 | |
| 1389 | if (pulled_entry->magic != 0) { |
| 1390 | dev_dbg(xpc_chan, "partition %d's XPC vars_part for " |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1391 | "partition %d has bad magic value (=0x%llx)\n", |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1392 | partid, sn_partition_id, pulled_entry->magic); |
| 1393 | return xpBadMagic; |
| 1394 | } |
| 1395 | |
| 1396 | /* they've not been initialized yet */ |
| 1397 | return xpRetry; |
| 1398 | } |
| 1399 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1400 | if (xpc_vars_part_sn2[partid].magic == XPC_VP_MAGIC1_SN2) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1401 | |
| 1402 | /* validate the variables */ |
| 1403 | |
| 1404 | if (pulled_entry->GPs_pa == 0 || |
| 1405 | pulled_entry->openclose_args_pa == 0 || |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1406 | pulled_entry->chctl_amo_pa == 0) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1407 | |
| 1408 | dev_err(xpc_chan, "partition %d's XPC vars_part for " |
| 1409 | "partition %d are not valid\n", partid, |
| 1410 | sn_partition_id); |
| 1411 | return xpInvalidAddress; |
| 1412 | } |
| 1413 | |
| 1414 | /* the variables we imported look to be valid */ |
| 1415 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1416 | part_sn2->remote_GPs_pa = pulled_entry->GPs_pa; |
| 1417 | part_sn2->remote_openclose_args_pa = |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1418 | pulled_entry->openclose_args_pa; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1419 | part_sn2->remote_chctl_amo_va = |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1420 | (struct amo *)__va(pulled_entry->chctl_amo_pa); |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1421 | part_sn2->notify_IRQ_nasid = pulled_entry->notify_IRQ_nasid; |
| 1422 | part_sn2->notify_IRQ_phys_cpuid = |
| 1423 | pulled_entry->notify_IRQ_phys_cpuid; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1424 | |
| 1425 | if (part->nchannels > pulled_entry->nchannels) |
| 1426 | part->nchannels = pulled_entry->nchannels; |
| 1427 | |
| 1428 | /* let the other side know that we've pulled their variables */ |
| 1429 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1430 | xpc_vars_part_sn2[partid].magic = XPC_VP_MAGIC2_SN2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1431 | } |
| 1432 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1433 | if (pulled_entry->magic == XPC_VP_MAGIC1_SN2) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1434 | return xpRetry; |
| 1435 | |
| 1436 | return xpSuccess; |
| 1437 | } |
| 1438 | |
| 1439 | /* |
| 1440 | * Establish first contact with the remote partititon. This involves pulling |
| 1441 | * the XPC per partition variables from the remote partition and waiting for |
| 1442 | * the remote partition to pull ours. |
| 1443 | */ |
| 1444 | static enum xp_retval |
| 1445 | xpc_make_first_contact_sn2(struct xpc_partition *part) |
| 1446 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1447 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1448 | enum xp_retval ret; |
| 1449 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1450 | /* |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1451 | * Register the remote partition's amos with SAL so it can handle |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1452 | * and cleanup errors within that address range should the remote |
| 1453 | * partition go down. We don't unregister this range because it is |
| 1454 | * difficult to tell when outstanding writes to the remote partition |
| 1455 | * are finished and thus when it is safe to unregister. This should |
| 1456 | * not result in wasted space in the SAL xp_addr_region table because |
| 1457 | * we should get the same page for remote_amos_page_pa after module |
| 1458 | * reloads and system reboots. |
| 1459 | */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1460 | if (sn_register_xp_addr_region(part_sn2->remote_amos_page_pa, |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1461 | PAGE_SIZE, 1) < 0) { |
| 1462 | dev_warn(xpc_part, "xpc_activating(%d) failed to register " |
| 1463 | "xp_addr region\n", XPC_PARTID(part)); |
| 1464 | |
| 1465 | ret = xpPhysAddrRegFailed; |
| 1466 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 1467 | return ret; |
| 1468 | } |
| 1469 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1470 | /* |
| 1471 | * Send activate IRQ to get other side to activate if they've not |
| 1472 | * already begun to do so. |
| 1473 | */ |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1474 | xpc_send_activate_IRQ_sn2(part_sn2->remote_amos_page_pa, |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1475 | cnodeid_to_nasid(0), |
| 1476 | part_sn2->activate_IRQ_nasid, |
| 1477 | part_sn2->activate_IRQ_phys_cpuid); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 1478 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1479 | while ((ret = xpc_pull_remote_vars_part_sn2(part)) != xpSuccess) { |
| 1480 | if (ret != xpRetry) { |
| 1481 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 1482 | return ret; |
| 1483 | } |
| 1484 | |
| 1485 | dev_dbg(xpc_part, "waiting to make first contact with " |
| 1486 | "partition %d\n", XPC_PARTID(part)); |
| 1487 | |
| 1488 | /* wait a 1/4 of a second or so */ |
| 1489 | (void)msleep_interruptible(250); |
| 1490 | |
Dean Nelson | 83469b5 | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1491 | if (part->act_state == XPC_P_AS_DEACTIVATING) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1492 | return part->reason; |
| 1493 | } |
| 1494 | |
| 1495 | return xpSuccess; |
| 1496 | } |
| 1497 | |
| 1498 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1499 | * Get the chctl flags and pull the openclose args and/or remote GPs as needed. |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1500 | */ |
| 1501 | static u64 |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1502 | xpc_get_chctl_all_flags_sn2(struct xpc_partition *part) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1503 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1504 | struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1505 | unsigned long irq_flags; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1506 | union xpc_channel_ctl_flags chctl; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1507 | enum xp_retval ret; |
| 1508 | |
| 1509 | /* |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1510 | * See if there are any chctl flags to be handled. |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1511 | */ |
| 1512 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1513 | spin_lock_irqsave(&part->chctl_lock, irq_flags); |
| 1514 | chctl = part->chctl; |
| 1515 | if (chctl.all_flags != 0) |
| 1516 | part->chctl.all_flags = 0; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1517 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1518 | spin_unlock_irqrestore(&part->chctl_lock, irq_flags); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1519 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1520 | if (xpc_any_openclose_chctl_flags_set(&chctl)) { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1521 | ret = xpc_pull_remote_cachelines_sn2(part, part-> |
| 1522 | remote_openclose_args, |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1523 | part_sn2-> |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1524 | remote_openclose_args_pa, |
| 1525 | XPC_OPENCLOSE_ARGS_SIZE); |
| 1526 | if (ret != xpSuccess) { |
| 1527 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 1528 | |
| 1529 | dev_dbg(xpc_chan, "failed to pull openclose args from " |
| 1530 | "partition %d, ret=%d\n", XPC_PARTID(part), |
| 1531 | ret); |
| 1532 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1533 | /* don't bother processing chctl flags anymore */ |
| 1534 | chctl.all_flags = 0; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1535 | } |
| 1536 | } |
| 1537 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1538 | if (xpc_any_msg_chctl_flags_set(&chctl)) { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1539 | ret = xpc_pull_remote_cachelines_sn2(part, part_sn2->remote_GPs, |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1540 | part_sn2->remote_GPs_pa, |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1541 | XPC_GP_SIZE); |
| 1542 | if (ret != xpSuccess) { |
| 1543 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 1544 | |
| 1545 | dev_dbg(xpc_chan, "failed to pull GPs from partition " |
| 1546 | "%d, ret=%d\n", XPC_PARTID(part), ret); |
| 1547 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1548 | /* don't bother processing chctl flags anymore */ |
| 1549 | chctl.all_flags = 0; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1550 | } |
| 1551 | } |
| 1552 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1553 | return chctl.all_flags; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1554 | } |
| 1555 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1556 | /* |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1557 | * Allocate the local message queue and the notify queue. |
| 1558 | */ |
| 1559 | static enum xp_retval |
| 1560 | xpc_allocate_local_msgqueue_sn2(struct xpc_channel *ch) |
| 1561 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1562 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1563 | unsigned long irq_flags; |
| 1564 | int nentries; |
| 1565 | size_t nbytes; |
| 1566 | |
| 1567 | for (nentries = ch->local_nentries; nentries > 0; nentries--) { |
| 1568 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1569 | nbytes = nentries * ch->entry_size; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1570 | ch_sn2->local_msgqueue = |
| 1571 | xpc_kzalloc_cacheline_aligned(nbytes, GFP_KERNEL, |
| 1572 | &ch_sn2->local_msgqueue_base); |
| 1573 | if (ch_sn2->local_msgqueue == NULL) |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1574 | continue; |
| 1575 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1576 | nbytes = nentries * sizeof(struct xpc_notify_sn2); |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1577 | ch_sn2->notify_queue = kzalloc(nbytes, GFP_KERNEL); |
| 1578 | if (ch_sn2->notify_queue == NULL) { |
| 1579 | kfree(ch_sn2->local_msgqueue_base); |
| 1580 | ch_sn2->local_msgqueue = NULL; |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1581 | continue; |
| 1582 | } |
| 1583 | |
| 1584 | spin_lock_irqsave(&ch->lock, irq_flags); |
| 1585 | if (nentries < ch->local_nentries) { |
| 1586 | dev_dbg(xpc_chan, "nentries=%d local_nentries=%d, " |
| 1587 | "partid=%d, channel=%d\n", nentries, |
| 1588 | ch->local_nentries, ch->partid, ch->number); |
| 1589 | |
| 1590 | ch->local_nentries = nentries; |
| 1591 | } |
| 1592 | spin_unlock_irqrestore(&ch->lock, irq_flags); |
| 1593 | return xpSuccess; |
| 1594 | } |
| 1595 | |
| 1596 | dev_dbg(xpc_chan, "can't get memory for local message queue and notify " |
| 1597 | "queue, partid=%d, channel=%d\n", ch->partid, ch->number); |
| 1598 | return xpNoMemory; |
| 1599 | } |
| 1600 | |
| 1601 | /* |
| 1602 | * Allocate the cached remote message queue. |
| 1603 | */ |
| 1604 | static enum xp_retval |
| 1605 | xpc_allocate_remote_msgqueue_sn2(struct xpc_channel *ch) |
| 1606 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1607 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1608 | unsigned long irq_flags; |
| 1609 | int nentries; |
| 1610 | size_t nbytes; |
| 1611 | |
| 1612 | DBUG_ON(ch->remote_nentries <= 0); |
| 1613 | |
| 1614 | for (nentries = ch->remote_nentries; nentries > 0; nentries--) { |
| 1615 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1616 | nbytes = nentries * ch->entry_size; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1617 | ch_sn2->remote_msgqueue = |
| 1618 | xpc_kzalloc_cacheline_aligned(nbytes, GFP_KERNEL, &ch_sn2-> |
| 1619 | remote_msgqueue_base); |
| 1620 | if (ch_sn2->remote_msgqueue == NULL) |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1621 | continue; |
| 1622 | |
| 1623 | spin_lock_irqsave(&ch->lock, irq_flags); |
| 1624 | if (nentries < ch->remote_nentries) { |
| 1625 | dev_dbg(xpc_chan, "nentries=%d remote_nentries=%d, " |
| 1626 | "partid=%d, channel=%d\n", nentries, |
| 1627 | ch->remote_nentries, ch->partid, ch->number); |
| 1628 | |
| 1629 | ch->remote_nentries = nentries; |
| 1630 | } |
| 1631 | spin_unlock_irqrestore(&ch->lock, irq_flags); |
| 1632 | return xpSuccess; |
| 1633 | } |
| 1634 | |
| 1635 | dev_dbg(xpc_chan, "can't get memory for cached remote message queue, " |
| 1636 | "partid=%d, channel=%d\n", ch->partid, ch->number); |
| 1637 | return xpNoMemory; |
| 1638 | } |
| 1639 | |
| 1640 | /* |
| 1641 | * Allocate message queues and other stuff associated with a channel. |
| 1642 | * |
| 1643 | * Note: Assumes all of the channel sizes are filled in. |
| 1644 | */ |
| 1645 | static enum xp_retval |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1646 | xpc_setup_msg_structures_sn2(struct xpc_channel *ch) |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1647 | { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1648 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1649 | enum xp_retval ret; |
| 1650 | |
| 1651 | DBUG_ON(ch->flags & XPC_C_SETUP); |
| 1652 | |
| 1653 | ret = xpc_allocate_local_msgqueue_sn2(ch); |
| 1654 | if (ret == xpSuccess) { |
| 1655 | |
| 1656 | ret = xpc_allocate_remote_msgqueue_sn2(ch); |
| 1657 | if (ret != xpSuccess) { |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1658 | kfree(ch_sn2->local_msgqueue_base); |
| 1659 | ch_sn2->local_msgqueue = NULL; |
| 1660 | kfree(ch_sn2->notify_queue); |
| 1661 | ch_sn2->notify_queue = NULL; |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1662 | } |
| 1663 | } |
| 1664 | return ret; |
| 1665 | } |
| 1666 | |
| 1667 | /* |
| 1668 | * Free up message queues and other stuff that were allocated for the specified |
| 1669 | * channel. |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1670 | */ |
| 1671 | static void |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1672 | xpc_teardown_msg_structures_sn2(struct xpc_channel *ch) |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1673 | { |
| 1674 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
| 1675 | |
| 1676 | DBUG_ON(!spin_is_locked(&ch->lock)); |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1677 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1678 | ch_sn2->remote_msgqueue_pa = 0; |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1679 | |
| 1680 | ch_sn2->local_GP->get = 0; |
| 1681 | ch_sn2->local_GP->put = 0; |
| 1682 | ch_sn2->remote_GP.get = 0; |
| 1683 | ch_sn2->remote_GP.put = 0; |
| 1684 | ch_sn2->w_local_GP.get = 0; |
| 1685 | ch_sn2->w_local_GP.put = 0; |
| 1686 | ch_sn2->w_remote_GP.get = 0; |
| 1687 | ch_sn2->w_remote_GP.put = 0; |
| 1688 | ch_sn2->next_msg_to_pull = 0; |
| 1689 | |
| 1690 | if (ch->flags & XPC_C_SETUP) { |
| 1691 | dev_dbg(xpc_chan, "ch->flags=0x%x, partid=%d, channel=%d\n", |
| 1692 | ch->flags, ch->partid, ch->number); |
| 1693 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1694 | kfree(ch_sn2->local_msgqueue_base); |
| 1695 | ch_sn2->local_msgqueue = NULL; |
| 1696 | kfree(ch_sn2->remote_msgqueue_base); |
| 1697 | ch_sn2->remote_msgqueue = NULL; |
| 1698 | kfree(ch_sn2->notify_queue); |
| 1699 | ch_sn2->notify_queue = NULL; |
Dean Nelson | 185c3a1 | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 1700 | } |
| 1701 | } |
| 1702 | |
| 1703 | /* |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1704 | * Notify those who wanted to be notified upon delivery of their message. |
| 1705 | */ |
| 1706 | static void |
| 1707 | xpc_notify_senders_sn2(struct xpc_channel *ch, enum xp_retval reason, s64 put) |
| 1708 | { |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1709 | struct xpc_notify_sn2 *notify; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1710 | u8 notify_type; |
| 1711 | s64 get = ch->sn.sn2.w_remote_GP.get - 1; |
| 1712 | |
| 1713 | while (++get < put && atomic_read(&ch->n_to_notify) > 0) { |
| 1714 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1715 | notify = &ch->sn.sn2.notify_queue[get % ch->local_nentries]; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1716 | |
| 1717 | /* |
| 1718 | * See if the notify entry indicates it was associated with |
| 1719 | * a message who's sender wants to be notified. It is possible |
| 1720 | * that it is, but someone else is doing or has done the |
| 1721 | * notification. |
| 1722 | */ |
| 1723 | notify_type = notify->type; |
| 1724 | if (notify_type == 0 || |
| 1725 | cmpxchg(¬ify->type, notify_type, 0) != notify_type) { |
| 1726 | continue; |
| 1727 | } |
| 1728 | |
| 1729 | DBUG_ON(notify_type != XPC_N_CALL); |
| 1730 | |
| 1731 | atomic_dec(&ch->n_to_notify); |
| 1732 | |
| 1733 | if (notify->func != NULL) { |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1734 | dev_dbg(xpc_chan, "notify->func() called, notify=0x%p " |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1735 | "msg_number=%lld partid=%d channel=%d\n", |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1736 | (void *)notify, get, ch->partid, ch->number); |
| 1737 | |
| 1738 | notify->func(reason, ch->partid, ch->number, |
| 1739 | notify->key); |
| 1740 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1741 | dev_dbg(xpc_chan, "notify->func() returned, notify=0x%p" |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1742 | " msg_number=%lld partid=%d channel=%d\n", |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1743 | (void *)notify, get, ch->partid, ch->number); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1744 | } |
| 1745 | } |
| 1746 | } |
| 1747 | |
| 1748 | static void |
| 1749 | xpc_notify_senders_of_disconnect_sn2(struct xpc_channel *ch) |
| 1750 | { |
| 1751 | xpc_notify_senders_sn2(ch, ch->reason, ch->sn.sn2.w_local_GP.put); |
| 1752 | } |
| 1753 | |
| 1754 | /* |
| 1755 | * Clear some of the msg flags in the local message queue. |
| 1756 | */ |
| 1757 | static inline void |
| 1758 | xpc_clear_local_msgqueue_flags_sn2(struct xpc_channel *ch) |
| 1759 | { |
| 1760 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1761 | struct xpc_msg_sn2 *msg; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1762 | s64 get; |
| 1763 | |
| 1764 | get = ch_sn2->w_remote_GP.get; |
| 1765 | do { |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1766 | msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->local_msgqueue + |
| 1767 | (get % ch->local_nentries) * |
| 1768 | ch->entry_size); |
Robin Holt | 252523e | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 1769 | DBUG_ON(!(msg->flags & XPC_M_SN2_READY)); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1770 | msg->flags = 0; |
| 1771 | } while (++get < ch_sn2->remote_GP.get); |
| 1772 | } |
| 1773 | |
| 1774 | /* |
| 1775 | * Clear some of the msg flags in the remote message queue. |
| 1776 | */ |
| 1777 | static inline void |
| 1778 | xpc_clear_remote_msgqueue_flags_sn2(struct xpc_channel *ch) |
| 1779 | { |
| 1780 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1781 | struct xpc_msg_sn2 *msg; |
Robin Holt | 6e873ec | 2009-04-02 16:59:14 -0700 | [diff] [blame] | 1782 | s64 put, remote_nentries = ch->remote_nentries; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1783 | |
Robin Holt | 252523e | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 1784 | /* flags are zeroed when the buffer is allocated */ |
Robin Holt | 6e873ec | 2009-04-02 16:59:14 -0700 | [diff] [blame] | 1785 | if (ch_sn2->remote_GP.put < remote_nentries) |
Robin Holt | 252523e | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 1786 | return; |
| 1787 | |
Robin Holt | 6e873ec | 2009-04-02 16:59:14 -0700 | [diff] [blame] | 1788 | put = max(ch_sn2->w_remote_GP.put, remote_nentries); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1789 | do { |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1790 | msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->remote_msgqueue + |
Robin Holt | 6e873ec | 2009-04-02 16:59:14 -0700 | [diff] [blame] | 1791 | (put % remote_nentries) * |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1792 | ch->entry_size); |
Robin Holt | 252523e | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 1793 | DBUG_ON(!(msg->flags & XPC_M_SN2_READY)); |
| 1794 | DBUG_ON(!(msg->flags & XPC_M_SN2_DONE)); |
Robin Holt | 6e873ec | 2009-04-02 16:59:14 -0700 | [diff] [blame] | 1795 | DBUG_ON(msg->number != put - remote_nentries); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1796 | msg->flags = 0; |
| 1797 | } while (++put < ch_sn2->remote_GP.put); |
| 1798 | } |
| 1799 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1800 | static int |
| 1801 | xpc_n_of_deliverable_payloads_sn2(struct xpc_channel *ch) |
| 1802 | { |
| 1803 | return ch->sn.sn2.w_remote_GP.put - ch->sn.sn2.w_local_GP.get; |
| 1804 | } |
| 1805 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1806 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 1807 | xpc_process_msg_chctl_flags_sn2(struct xpc_partition *part, int ch_number) |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1808 | { |
| 1809 | struct xpc_channel *ch = &part->channels[ch_number]; |
| 1810 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1811 | int npayloads_sent; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1812 | |
| 1813 | ch_sn2->remote_GP = part->sn.sn2.remote_GPs[ch_number]; |
| 1814 | |
| 1815 | /* See what, if anything, has changed for each connected channel */ |
| 1816 | |
| 1817 | xpc_msgqueue_ref(ch); |
| 1818 | |
| 1819 | if (ch_sn2->w_remote_GP.get == ch_sn2->remote_GP.get && |
| 1820 | ch_sn2->w_remote_GP.put == ch_sn2->remote_GP.put) { |
| 1821 | /* nothing changed since GPs were last pulled */ |
| 1822 | xpc_msgqueue_deref(ch); |
| 1823 | return; |
| 1824 | } |
| 1825 | |
| 1826 | if (!(ch->flags & XPC_C_CONNECTED)) { |
| 1827 | xpc_msgqueue_deref(ch); |
| 1828 | return; |
| 1829 | } |
| 1830 | |
| 1831 | /* |
| 1832 | * First check to see if messages recently sent by us have been |
| 1833 | * received by the other side. (The remote GET value will have |
| 1834 | * changed since we last looked at it.) |
| 1835 | */ |
| 1836 | |
| 1837 | if (ch_sn2->w_remote_GP.get != ch_sn2->remote_GP.get) { |
| 1838 | |
| 1839 | /* |
| 1840 | * We need to notify any senders that want to be notified |
| 1841 | * that their sent messages have been received by their |
| 1842 | * intended recipients. We need to do this before updating |
| 1843 | * w_remote_GP.get so that we don't allocate the same message |
| 1844 | * queue entries prematurely (see xpc_allocate_msg()). |
| 1845 | */ |
| 1846 | if (atomic_read(&ch->n_to_notify) > 0) { |
| 1847 | /* |
| 1848 | * Notify senders that messages sent have been |
| 1849 | * received and delivered by the other side. |
| 1850 | */ |
| 1851 | xpc_notify_senders_sn2(ch, xpMsgDelivered, |
| 1852 | ch_sn2->remote_GP.get); |
| 1853 | } |
| 1854 | |
| 1855 | /* |
| 1856 | * Clear msg->flags in previously sent messages, so that |
| 1857 | * they're ready for xpc_allocate_msg(). |
| 1858 | */ |
| 1859 | xpc_clear_local_msgqueue_flags_sn2(ch); |
| 1860 | |
| 1861 | ch_sn2->w_remote_GP.get = ch_sn2->remote_GP.get; |
| 1862 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1863 | dev_dbg(xpc_chan, "w_remote_GP.get changed to %lld, partid=%d, " |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1864 | "channel=%d\n", ch_sn2->w_remote_GP.get, ch->partid, |
| 1865 | ch->number); |
| 1866 | |
| 1867 | /* |
| 1868 | * If anyone was waiting for message queue entries to become |
| 1869 | * available, wake them up. |
| 1870 | */ |
| 1871 | if (atomic_read(&ch->n_on_msg_allocate_wq) > 0) |
| 1872 | wake_up(&ch->msg_allocate_wq); |
| 1873 | } |
| 1874 | |
| 1875 | /* |
| 1876 | * Now check for newly sent messages by the other side. (The remote |
| 1877 | * PUT value will have changed since we last looked at it.) |
| 1878 | */ |
| 1879 | |
| 1880 | if (ch_sn2->w_remote_GP.put != ch_sn2->remote_GP.put) { |
| 1881 | /* |
| 1882 | * Clear msg->flags in previously received messages, so that |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1883 | * they're ready for xpc_get_deliverable_payload_sn2(). |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1884 | */ |
| 1885 | xpc_clear_remote_msgqueue_flags_sn2(ch); |
| 1886 | |
Robin Holt | 69b3bb6 | 2009-01-29 14:25:06 -0800 | [diff] [blame] | 1887 | smp_wmb(); /* ensure flags have been cleared before bte_copy */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1888 | ch_sn2->w_remote_GP.put = ch_sn2->remote_GP.put; |
| 1889 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1890 | dev_dbg(xpc_chan, "w_remote_GP.put changed to %lld, partid=%d, " |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1891 | "channel=%d\n", ch_sn2->w_remote_GP.put, ch->partid, |
| 1892 | ch->number); |
| 1893 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1894 | npayloads_sent = xpc_n_of_deliverable_payloads_sn2(ch); |
| 1895 | if (npayloads_sent > 0) { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1896 | dev_dbg(xpc_chan, "msgs waiting to be copied and " |
| 1897 | "delivered=%d, partid=%d, channel=%d\n", |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1898 | npayloads_sent, ch->partid, ch->number); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1899 | |
| 1900 | if (ch->flags & XPC_C_CONNECTEDCALLOUT_MADE) |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1901 | xpc_activate_kthreads(ch, npayloads_sent); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1902 | } |
| 1903 | } |
| 1904 | |
| 1905 | xpc_msgqueue_deref(ch); |
| 1906 | } |
| 1907 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1908 | static struct xpc_msg_sn2 * |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1909 | xpc_pull_remote_msg_sn2(struct xpc_channel *ch, s64 get) |
| 1910 | { |
| 1911 | struct xpc_partition *part = &xpc_partitions[ch->partid]; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1912 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1913 | unsigned long remote_msg_pa; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1914 | struct xpc_msg_sn2 *msg; |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1915 | u32 msg_index; |
| 1916 | u32 nmsgs; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1917 | u64 msg_offset; |
| 1918 | enum xp_retval ret; |
| 1919 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1920 | if (mutex_lock_interruptible(&ch_sn2->msg_to_pull_mutex) != 0) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1921 | /* we were interrupted by a signal */ |
| 1922 | return NULL; |
| 1923 | } |
| 1924 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1925 | while (get >= ch_sn2->next_msg_to_pull) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1926 | |
| 1927 | /* pull as many messages as are ready and able to be pulled */ |
| 1928 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1929 | msg_index = ch_sn2->next_msg_to_pull % ch->remote_nentries; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1930 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1931 | DBUG_ON(ch_sn2->next_msg_to_pull >= ch_sn2->w_remote_GP.put); |
| 1932 | nmsgs = ch_sn2->w_remote_GP.put - ch_sn2->next_msg_to_pull; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1933 | if (msg_index + nmsgs > ch->remote_nentries) { |
| 1934 | /* ignore the ones that wrap the msg queue for now */ |
| 1935 | nmsgs = ch->remote_nentries - msg_index; |
| 1936 | } |
| 1937 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1938 | msg_offset = msg_index * ch->entry_size; |
| 1939 | msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->remote_msgqueue + |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 1940 | msg_offset); |
| 1941 | remote_msg_pa = ch_sn2->remote_msgqueue_pa + msg_offset; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1942 | |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 1943 | ret = xpc_pull_remote_cachelines_sn2(part, msg, remote_msg_pa, |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1944 | nmsgs * ch->entry_size); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1945 | if (ret != xpSuccess) { |
| 1946 | |
| 1947 | dev_dbg(xpc_chan, "failed to pull %d msgs starting with" |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 1948 | " msg %lld from partition %d, channel=%d, " |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1949 | "ret=%d\n", nmsgs, ch_sn2->next_msg_to_pull, |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1950 | ch->partid, ch->number, ret); |
| 1951 | |
| 1952 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 1953 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1954 | mutex_unlock(&ch_sn2->msg_to_pull_mutex); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1955 | return NULL; |
| 1956 | } |
| 1957 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1958 | ch_sn2->next_msg_to_pull += nmsgs; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1959 | } |
| 1960 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1961 | mutex_unlock(&ch_sn2->msg_to_pull_mutex); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1962 | |
| 1963 | /* return the message we were looking for */ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1964 | msg_offset = (get % ch->remote_nentries) * ch->entry_size; |
| 1965 | msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->remote_msgqueue + msg_offset); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1966 | |
| 1967 | return msg; |
| 1968 | } |
| 1969 | |
| 1970 | /* |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1971 | * Get the next deliverable message's payload. |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1972 | */ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1973 | static void * |
| 1974 | xpc_get_deliverable_payload_sn2(struct xpc_channel *ch) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1975 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1976 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 1977 | struct xpc_msg_sn2 *msg; |
| 1978 | void *payload = NULL; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1979 | s64 get; |
| 1980 | |
| 1981 | do { |
| 1982 | if (ch->flags & XPC_C_DISCONNECTING) |
| 1983 | break; |
| 1984 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1985 | get = ch_sn2->w_local_GP.get; |
Robin Holt | 69b3bb6 | 2009-01-29 14:25:06 -0800 | [diff] [blame] | 1986 | smp_rmb(); /* guarantee that .get loads before .put */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1987 | if (get == ch_sn2->w_remote_GP.put) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1988 | break; |
| 1989 | |
| 1990 | /* There are messages waiting to be pulled and delivered. |
| 1991 | * We need to try to secure one for ourselves. We'll do this |
| 1992 | * by trying to increment w_local_GP.get and hope that no one |
| 1993 | * else beats us to it. If they do, we'll we'll simply have |
| 1994 | * to try again for the next one. |
| 1995 | */ |
| 1996 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 1997 | if (cmpxchg(&ch_sn2->w_local_GP.get, get, get + 1) == get) { |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 1998 | /* we got the entry referenced by get */ |
| 1999 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 2000 | dev_dbg(xpc_chan, "w_local_GP.get changed to %lld, " |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 2001 | "partid=%d, channel=%d\n", get + 1, |
| 2002 | ch->partid, ch->number); |
| 2003 | |
| 2004 | /* pull the message from the remote partition */ |
| 2005 | |
| 2006 | msg = xpc_pull_remote_msg_sn2(ch, get); |
| 2007 | |
Robin Holt | 17e2161 | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 2008 | if (msg != NULL) { |
| 2009 | DBUG_ON(msg->number != get); |
| 2010 | DBUG_ON(msg->flags & XPC_M_SN2_DONE); |
| 2011 | DBUG_ON(!(msg->flags & XPC_M_SN2_READY)); |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 2012 | |
Robin Holt | 17e2161 | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 2013 | payload = &msg->payload; |
| 2014 | } |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 2015 | break; |
| 2016 | } |
| 2017 | |
| 2018 | } while (1); |
| 2019 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2020 | return payload; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 2021 | } |
| 2022 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2023 | /* |
| 2024 | * Now we actually send the messages that are ready to be sent by advancing |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2025 | * the local message queue's Put value and then send a chctl msgrequest to the |
| 2026 | * recipient partition. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2027 | */ |
| 2028 | static void |
| 2029 | xpc_send_msgs_sn2(struct xpc_channel *ch, s64 initial_put) |
| 2030 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2031 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2032 | struct xpc_msg_sn2 *msg; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2033 | s64 put = initial_put + 1; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2034 | int send_msgrequest = 0; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2035 | |
| 2036 | while (1) { |
| 2037 | |
| 2038 | while (1) { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2039 | if (put == ch_sn2->w_local_GP.put) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2040 | break; |
| 2041 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2042 | msg = (struct xpc_msg_sn2 *)((u64)ch_sn2-> |
| 2043 | local_msgqueue + (put % |
| 2044 | ch->local_nentries) * |
| 2045 | ch->entry_size); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2046 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2047 | if (!(msg->flags & XPC_M_SN2_READY)) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2048 | break; |
| 2049 | |
| 2050 | put++; |
| 2051 | } |
| 2052 | |
| 2053 | if (put == initial_put) { |
| 2054 | /* nothing's changed */ |
| 2055 | break; |
| 2056 | } |
| 2057 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2058 | if (cmpxchg_rel(&ch_sn2->local_GP->put, initial_put, put) != |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2059 | initial_put) { |
| 2060 | /* someone else beat us to it */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2061 | DBUG_ON(ch_sn2->local_GP->put < initial_put); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2062 | break; |
| 2063 | } |
| 2064 | |
| 2065 | /* we just set the new value of local_GP->put */ |
| 2066 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 2067 | dev_dbg(xpc_chan, "local_GP->put changed to %lld, partid=%d, " |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2068 | "channel=%d\n", put, ch->partid, ch->number); |
| 2069 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2070 | send_msgrequest = 1; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2071 | |
| 2072 | /* |
| 2073 | * We need to ensure that the message referenced by |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2074 | * local_GP->put is not XPC_M_SN2_READY or that local_GP->put |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2075 | * equals w_local_GP.put, so we'll go have a look. |
| 2076 | */ |
| 2077 | initial_put = put; |
| 2078 | } |
| 2079 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2080 | if (send_msgrequest) |
| 2081 | xpc_send_chctl_msgrequest_sn2(ch); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2082 | } |
| 2083 | |
| 2084 | /* |
| 2085 | * Allocate an entry for a message from the message queue associated with the |
| 2086 | * specified channel. |
| 2087 | */ |
| 2088 | static enum xp_retval |
| 2089 | xpc_allocate_msg_sn2(struct xpc_channel *ch, u32 flags, |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2090 | struct xpc_msg_sn2 **address_of_msg) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2091 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2092 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2093 | struct xpc_msg_sn2 *msg; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2094 | enum xp_retval ret; |
| 2095 | s64 put; |
| 2096 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2097 | /* |
| 2098 | * Get the next available message entry from the local message queue. |
| 2099 | * If none are available, we'll make sure that we grab the latest |
| 2100 | * GP values. |
| 2101 | */ |
| 2102 | ret = xpTimeout; |
| 2103 | |
| 2104 | while (1) { |
| 2105 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2106 | put = ch_sn2->w_local_GP.put; |
Robin Holt | 69b3bb6 | 2009-01-29 14:25:06 -0800 | [diff] [blame] | 2107 | smp_rmb(); /* guarantee that .put loads before .get */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2108 | if (put - ch_sn2->w_remote_GP.get < ch->local_nentries) { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2109 | |
| 2110 | /* There are available message entries. We need to try |
| 2111 | * to secure one for ourselves. We'll do this by trying |
| 2112 | * to increment w_local_GP.put as long as someone else |
| 2113 | * doesn't beat us to it. If they do, we'll have to |
| 2114 | * try again. |
| 2115 | */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2116 | if (cmpxchg(&ch_sn2->w_local_GP.put, put, put + 1) == |
| 2117 | put) { |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2118 | /* we got the entry referenced by put */ |
| 2119 | break; |
| 2120 | } |
| 2121 | continue; /* try again */ |
| 2122 | } |
| 2123 | |
| 2124 | /* |
| 2125 | * There aren't any available msg entries at this time. |
| 2126 | * |
| 2127 | * In waiting for a message entry to become available, |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2128 | * we set a timeout in case the other side is not sending |
| 2129 | * completion interrupts. This lets us fake a notify IRQ |
| 2130 | * that will cause the notify IRQ handler to fetch the latest |
| 2131 | * GP values as if an interrupt was sent by the other side. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2132 | */ |
| 2133 | if (ret == xpTimeout) |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2134 | xpc_send_chctl_local_msgrequest_sn2(ch); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2135 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2136 | if (flags & XPC_NOWAIT) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2137 | return xpNoWait; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2138 | |
| 2139 | ret = xpc_allocate_msg_wait(ch); |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2140 | if (ret != xpInterrupted && ret != xpTimeout) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2141 | return ret; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | /* get the message's address and initialize it */ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2145 | msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->local_msgqueue + |
| 2146 | (put % ch->local_nentries) * |
| 2147 | ch->entry_size); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2148 | |
| 2149 | DBUG_ON(msg->flags != 0); |
| 2150 | msg->number = put; |
| 2151 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 2152 | dev_dbg(xpc_chan, "w_local_GP.put changed to %lld; msg=0x%p, " |
| 2153 | "msg_number=%lld, partid=%d, channel=%d\n", put + 1, |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2154 | (void *)msg, msg->number, ch->partid, ch->number); |
| 2155 | |
| 2156 | *address_of_msg = msg; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2157 | return xpSuccess; |
| 2158 | } |
| 2159 | |
| 2160 | /* |
| 2161 | * Common code that does the actual sending of the message by advancing the |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2162 | * local message queue's Put value and sends a chctl msgrequest to the |
| 2163 | * partition the message is being sent to. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2164 | */ |
| 2165 | static enum xp_retval |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2166 | xpc_send_payload_sn2(struct xpc_channel *ch, u32 flags, void *payload, |
| 2167 | u16 payload_size, u8 notify_type, xpc_notify_func func, |
| 2168 | void *key) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2169 | { |
| 2170 | enum xp_retval ret = xpSuccess; |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 2171 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2172 | struct xpc_msg_sn2 *msg = msg; |
| 2173 | struct xpc_notify_sn2 *notify = notify; |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2174 | s64 msg_number; |
| 2175 | s64 put; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2176 | |
| 2177 | DBUG_ON(notify_type == XPC_N_CALL && func == NULL); |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2178 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2179 | if (XPC_MSG_SIZE(payload_size) > ch->entry_size) |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2180 | return xpPayloadTooBig; |
| 2181 | |
| 2182 | xpc_msgqueue_ref(ch); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2183 | |
| 2184 | if (ch->flags & XPC_C_DISCONNECTING) { |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2185 | ret = ch->reason; |
| 2186 | goto out_1; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2187 | } |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2188 | if (!(ch->flags & XPC_C_CONNECTED)) { |
| 2189 | ret = xpNotConnected; |
| 2190 | goto out_1; |
| 2191 | } |
| 2192 | |
| 2193 | ret = xpc_allocate_msg_sn2(ch, flags, &msg); |
| 2194 | if (ret != xpSuccess) |
| 2195 | goto out_1; |
| 2196 | |
| 2197 | msg_number = msg->number; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2198 | |
| 2199 | if (notify_type != 0) { |
| 2200 | /* |
| 2201 | * Tell the remote side to send an ACK interrupt when the |
| 2202 | * message has been delivered. |
| 2203 | */ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2204 | msg->flags |= XPC_M_SN2_INTERRUPT; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2205 | |
| 2206 | atomic_inc(&ch->n_to_notify); |
| 2207 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 2208 | notify = &ch_sn2->notify_queue[msg_number % ch->local_nentries]; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2209 | notify->func = func; |
| 2210 | notify->key = key; |
| 2211 | notify->type = notify_type; |
| 2212 | |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 2213 | /* ??? Is a mb() needed here? */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2214 | |
| 2215 | if (ch->flags & XPC_C_DISCONNECTING) { |
| 2216 | /* |
| 2217 | * An error occurred between our last error check and |
| 2218 | * this one. We will try to clear the type field from |
| 2219 | * the notify entry. If we succeed then |
| 2220 | * xpc_disconnect_channel() didn't already process |
| 2221 | * the notify entry. |
| 2222 | */ |
| 2223 | if (cmpxchg(¬ify->type, notify_type, 0) == |
| 2224 | notify_type) { |
| 2225 | atomic_dec(&ch->n_to_notify); |
| 2226 | ret = ch->reason; |
| 2227 | } |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2228 | goto out_1; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2229 | } |
| 2230 | } |
| 2231 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2232 | memcpy(&msg->payload, payload, payload_size); |
| 2233 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2234 | msg->flags |= XPC_M_SN2_READY; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2235 | |
| 2236 | /* |
| 2237 | * The preceding store of msg->flags must occur before the following |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2238 | * load of local_GP->put. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2239 | */ |
Robin Holt | 69b3bb6 | 2009-01-29 14:25:06 -0800 | [diff] [blame] | 2240 | smp_mb(); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2241 | |
| 2242 | /* see if the message is next in line to be sent, if so send it */ |
| 2243 | |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 2244 | put = ch_sn2->local_GP->put; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2245 | if (put == msg_number) |
| 2246 | xpc_send_msgs_sn2(ch, put); |
| 2247 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 2248 | out_1: |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2249 | xpc_msgqueue_deref(ch); |
| 2250 | return ret; |
| 2251 | } |
| 2252 | |
| 2253 | /* |
| 2254 | * Now we actually acknowledge the messages that have been delivered and ack'd |
| 2255 | * by advancing the cached remote message queue's Get value and if requested |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2256 | * send a chctl msgrequest to the message sender's partition. |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2257 | * |
| 2258 | * If a message has XPC_M_SN2_INTERRUPT set, send an interrupt to the partition |
| 2259 | * that sent the message. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2260 | */ |
| 2261 | static void |
| 2262 | xpc_acknowledge_msgs_sn2(struct xpc_channel *ch, s64 initial_get, u8 msg_flags) |
| 2263 | { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2264 | struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2265 | struct xpc_msg_sn2 *msg; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2266 | s64 get = initial_get + 1; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2267 | int send_msgrequest = 0; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2268 | |
| 2269 | while (1) { |
| 2270 | |
| 2271 | while (1) { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2272 | if (get == ch_sn2->w_local_GP.get) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2273 | break; |
| 2274 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2275 | msg = (struct xpc_msg_sn2 *)((u64)ch_sn2-> |
| 2276 | remote_msgqueue + (get % |
| 2277 | ch->remote_nentries) * |
| 2278 | ch->entry_size); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2279 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2280 | if (!(msg->flags & XPC_M_SN2_DONE)) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2281 | break; |
| 2282 | |
| 2283 | msg_flags |= msg->flags; |
| 2284 | get++; |
| 2285 | } |
| 2286 | |
| 2287 | if (get == initial_get) { |
| 2288 | /* nothing's changed */ |
| 2289 | break; |
| 2290 | } |
| 2291 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2292 | if (cmpxchg_rel(&ch_sn2->local_GP->get, initial_get, get) != |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2293 | initial_get) { |
| 2294 | /* someone else beat us to it */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2295 | DBUG_ON(ch_sn2->local_GP->get <= initial_get); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2296 | break; |
| 2297 | } |
| 2298 | |
| 2299 | /* we just set the new value of local_GP->get */ |
| 2300 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 2301 | dev_dbg(xpc_chan, "local_GP->get changed to %lld, partid=%d, " |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2302 | "channel=%d\n", get, ch->partid, ch->number); |
| 2303 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2304 | send_msgrequest = (msg_flags & XPC_M_SN2_INTERRUPT); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2305 | |
| 2306 | /* |
| 2307 | * We need to ensure that the message referenced by |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2308 | * local_GP->get is not XPC_M_SN2_DONE or that local_GP->get |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2309 | * equals w_local_GP.get, so we'll go have a look. |
| 2310 | */ |
| 2311 | initial_get = get; |
| 2312 | } |
| 2313 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 2314 | if (send_msgrequest) |
| 2315 | xpc_send_chctl_msgrequest_sn2(ch); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2316 | } |
| 2317 | |
| 2318 | static void |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2319 | xpc_received_payload_sn2(struct xpc_channel *ch, void *payload) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2320 | { |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2321 | struct xpc_msg_sn2 *msg; |
| 2322 | s64 msg_number; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2323 | s64 get; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2324 | |
| 2325 | msg = container_of(payload, struct xpc_msg_sn2, payload); |
| 2326 | msg_number = msg->number; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2327 | |
Randy Dunlap | f509e34 | 2009-09-04 17:02:59 -0700 | [diff] [blame] | 2328 | dev_dbg(xpc_chan, "msg=0x%p, msg_number=%lld, partid=%d, channel=%d\n", |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2329 | (void *)msg, msg_number, ch->partid, ch->number); |
| 2330 | |
Robin Holt | 252523e | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 2331 | DBUG_ON((((u64)msg - (u64)ch->sn.sn2.remote_msgqueue) / ch->entry_size) != |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2332 | msg_number % ch->remote_nentries); |
Robin Holt | 252523e | 2009-01-29 14:25:07 -0800 | [diff] [blame] | 2333 | DBUG_ON(!(msg->flags & XPC_M_SN2_READY)); |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2334 | DBUG_ON(msg->flags & XPC_M_SN2_DONE); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2335 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2336 | msg->flags |= XPC_M_SN2_DONE; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2337 | |
| 2338 | /* |
| 2339 | * The preceding store of msg->flags must occur before the following |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2340 | * load of local_GP->get. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2341 | */ |
Robin Holt | 69b3bb6 | 2009-01-29 14:25:06 -0800 | [diff] [blame] | 2342 | smp_mb(); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2343 | |
| 2344 | /* |
| 2345 | * See if this message is next in line to be acknowledged as having |
| 2346 | * been delivered. |
| 2347 | */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2348 | get = ch->sn.sn2.local_GP->get; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 2349 | if (get == msg_number) |
| 2350 | xpc_acknowledge_msgs_sn2(ch, get, msg->flags); |
| 2351 | } |
| 2352 | |
Robin Holt | a7665b0 | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 2353 | static struct xpc_arch_operations xpc_arch_ops_sn2 = { |
| 2354 | .setup_partitions = xpc_setup_partitions_sn2, |
| 2355 | .teardown_partitions = xpc_teardown_partitions_sn2, |
| 2356 | .process_activate_IRQ_rcvd = xpc_process_activate_IRQ_rcvd_sn2, |
| 2357 | .get_partition_rsvd_page_pa = xpc_get_partition_rsvd_page_pa_sn2, |
| 2358 | .setup_rsvd_page = xpc_setup_rsvd_page_sn2, |
| 2359 | |
| 2360 | .allow_hb = xpc_allow_hb_sn2, |
| 2361 | .disallow_hb = xpc_disallow_hb_sn2, |
| 2362 | .disallow_all_hbs = xpc_disallow_all_hbs_sn2, |
| 2363 | .increment_heartbeat = xpc_increment_heartbeat_sn2, |
| 2364 | .offline_heartbeat = xpc_offline_heartbeat_sn2, |
| 2365 | .online_heartbeat = xpc_online_heartbeat_sn2, |
| 2366 | .heartbeat_init = xpc_heartbeat_init_sn2, |
| 2367 | .heartbeat_exit = xpc_heartbeat_exit_sn2, |
| 2368 | .get_remote_heartbeat = xpc_get_remote_heartbeat_sn2, |
| 2369 | |
| 2370 | .request_partition_activation = |
| 2371 | xpc_request_partition_activation_sn2, |
| 2372 | .request_partition_reactivation = |
| 2373 | xpc_request_partition_reactivation_sn2, |
| 2374 | .request_partition_deactivation = |
| 2375 | xpc_request_partition_deactivation_sn2, |
| 2376 | .cancel_partition_deactivation_request = |
| 2377 | xpc_cancel_partition_deactivation_request_sn2, |
| 2378 | |
| 2379 | .setup_ch_structures = xpc_setup_ch_structures_sn2, |
| 2380 | .teardown_ch_structures = xpc_teardown_ch_structures_sn2, |
| 2381 | |
| 2382 | .make_first_contact = xpc_make_first_contact_sn2, |
| 2383 | |
| 2384 | .get_chctl_all_flags = xpc_get_chctl_all_flags_sn2, |
| 2385 | .send_chctl_closerequest = xpc_send_chctl_closerequest_sn2, |
| 2386 | .send_chctl_closereply = xpc_send_chctl_closereply_sn2, |
| 2387 | .send_chctl_openrequest = xpc_send_chctl_openrequest_sn2, |
| 2388 | .send_chctl_openreply = xpc_send_chctl_openreply_sn2, |
| 2389 | .send_chctl_opencomplete = xpc_send_chctl_opencomplete_sn2, |
| 2390 | .process_msg_chctl_flags = xpc_process_msg_chctl_flags_sn2, |
| 2391 | |
| 2392 | .save_remote_msgqueue_pa = xpc_save_remote_msgqueue_pa_sn2, |
| 2393 | |
| 2394 | .setup_msg_structures = xpc_setup_msg_structures_sn2, |
| 2395 | .teardown_msg_structures = xpc_teardown_msg_structures_sn2, |
| 2396 | |
| 2397 | .indicate_partition_engaged = xpc_indicate_partition_engaged_sn2, |
| 2398 | .indicate_partition_disengaged = xpc_indicate_partition_disengaged_sn2, |
| 2399 | .partition_engaged = xpc_partition_engaged_sn2, |
| 2400 | .any_partition_engaged = xpc_any_partition_engaged_sn2, |
| 2401 | .assume_partition_disengaged = xpc_assume_partition_disengaged_sn2, |
| 2402 | |
| 2403 | .n_of_deliverable_payloads = xpc_n_of_deliverable_payloads_sn2, |
| 2404 | .send_payload = xpc_send_payload_sn2, |
| 2405 | .get_deliverable_payload = xpc_get_deliverable_payload_sn2, |
| 2406 | .received_payload = xpc_received_payload_sn2, |
| 2407 | .notify_senders_of_disconnect = xpc_notify_senders_of_disconnect_sn2, |
| 2408 | }; |
| 2409 | |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2410 | int |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 2411 | xpc_init_sn2(void) |
| 2412 | { |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2413 | int ret; |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 2414 | size_t buf_size; |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2415 | |
Robin Holt | a7665b0 | 2009-04-13 14:40:19 -0700 | [diff] [blame] | 2416 | xpc_arch_ops = xpc_arch_ops_sn2; |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 2417 | |
| 2418 | if (offsetof(struct xpc_msg_sn2, payload) > XPC_MSG_HDR_MAX_SIZE) { |
| 2419 | dev_err(xpc_part, "header portion of struct xpc_msg_sn2 is " |
| 2420 | "larger than %d\n", XPC_MSG_HDR_MAX_SIZE); |
| 2421 | return -E2BIG; |
| 2422 | } |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2423 | |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 2424 | buf_size = max(XPC_RP_VARS_SIZE, |
| 2425 | XPC_RP_HEADER_SIZE + XP_NASID_MASK_BYTES_SN2); |
| 2426 | xpc_remote_copy_buffer_sn2 = xpc_kmalloc_cacheline_aligned(buf_size, |
| 2427 | GFP_KERNEL, |
| 2428 | &xpc_remote_copy_buffer_base_sn2); |
| 2429 | if (xpc_remote_copy_buffer_sn2 == NULL) { |
| 2430 | dev_err(xpc_part, "can't get memory for remote copy buffer\n"); |
| 2431 | return -ENOMEM; |
| 2432 | } |
| 2433 | |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 2434 | /* open up protections for IPI and [potentially] amo operations */ |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2435 | xpc_allow_IPI_ops_sn2(); |
Dean Nelson | c39838c | 2008-07-29 22:34:11 -0700 | [diff] [blame] | 2436 | xpc_allow_amo_ops_shub_wars_1_1_sn2(); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2437 | |
| 2438 | /* |
| 2439 | * This is safe to do before the xpc_hb_checker thread has started |
| 2440 | * because the handler releases a wait queue. If an interrupt is |
| 2441 | * received before the thread is waiting, it will not go to sleep, |
| 2442 | * but rather immediately process the interrupt. |
| 2443 | */ |
| 2444 | ret = request_irq(SGI_XPC_ACTIVATE, xpc_handle_activate_IRQ_sn2, 0, |
| 2445 | "xpc hb", NULL); |
| 2446 | if (ret != 0) { |
| 2447 | dev_err(xpc_part, "can't register ACTIVATE IRQ handler, " |
| 2448 | "errno=%d\n", -ret); |
| 2449 | xpc_disallow_IPI_ops_sn2(); |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 2450 | kfree(xpc_remote_copy_buffer_base_sn2); |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2451 | } |
| 2452 | return ret; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 2453 | } |
| 2454 | |
| 2455 | void |
| 2456 | xpc_exit_sn2(void) |
| 2457 | { |
Dean Nelson | 6e41017 | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 2458 | free_irq(SGI_XPC_ACTIVATE, NULL); |
| 2459 | xpc_disallow_IPI_ops_sn2(); |
Dean Nelson | ee6665e | 2008-07-29 22:34:13 -0700 | [diff] [blame] | 2460 | kfree(xpc_remote_copy_buffer_base_sn2); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 2461 | } |