Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -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 | * |
Dean Nelson | 45d9ca4 | 2008-04-22 14:46:56 -0500 | [diff] [blame] | 6 | * Copyright (c) 2004-2008 Silicon Graphics, Inc. All Rights Reserved. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 9 | /* |
| 10 | * Cross Partition Communication (XPC) partition support. |
| 11 | * |
| 12 | * This is the part of XPC that detects the presence/absence of |
| 13 | * other partitions. It provides a heartbeat and monitors the |
| 14 | * heartbeats of other partitions. |
| 15 | * |
| 16 | */ |
| 17 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/sysctl.h> |
| 20 | #include <linux/cache.h> |
| 21 | #include <linux/mmzone.h> |
| 22 | #include <linux/nodemask.h> |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 23 | #include <asm/sn/intr.h> |
| 24 | #include <asm/sn/sn_sal.h> |
| 25 | #include <asm/sn/nodepda.h> |
| 26 | #include <asm/sn/addrs.h> |
Dean Nelson | 45d9ca4 | 2008-04-22 14:46:56 -0500 | [diff] [blame] | 27 | #include "xpc.h" |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 28 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 29 | /* XPC is exiting flag */ |
| 30 | int xpc_exiting; |
| 31 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 32 | /* SH_IPI_ACCESS shub register value on startup */ |
| 33 | static u64 xpc_sh1_IPI_access; |
| 34 | static u64 xpc_sh2_IPI_access0; |
| 35 | static u64 xpc_sh2_IPI_access1; |
| 36 | static u64 xpc_sh2_IPI_access2; |
| 37 | static u64 xpc_sh2_IPI_access3; |
| 38 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 39 | /* original protection values for each node */ |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 40 | u64 xpc_prot_vec[MAX_NUMNODES]; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 41 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 42 | /* this partition's reserved page pointers */ |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 43 | struct xpc_rsvd_page *xpc_rsvd_page; |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 44 | static u64 *xpc_part_nasids; |
| 45 | static u64 *xpc_mach_nasids; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 46 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 47 | /* >>> next two variables should be 'xpc_' if they remain here */ |
| 48 | static int xp_sizeof_nasid_mask; /* actual size in bytes of nasid mask */ |
| 49 | int xp_nasid_mask_words; /* actual size in words of nasid mask */ |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 50 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 51 | struct xpc_partition *xpc_partitions; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 52 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 53 | /* |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 54 | * Generic buffer used to store a local copy of portions of a remote |
| 55 | * partition's reserved page (either its header and part_nasids mask, |
| 56 | * or its vars). |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 57 | */ |
Dean Nelson | 7682a4c | 2006-08-08 15:03:29 -0500 | [diff] [blame] | 58 | char *xpc_remote_copy_buffer; |
| 59 | void *xpc_remote_copy_buffer_base; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 60 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 61 | /* |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 62 | * Guarantee that the kmalloc'd memory is cacheline aligned. |
| 63 | */ |
Dean Nelson | 7682a4c | 2006-08-08 15:03:29 -0500 | [diff] [blame] | 64 | void * |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 65 | xpc_kmalloc_cacheline_aligned(size_t size, gfp_t flags, void **base) |
| 66 | { |
| 67 | /* see if kmalloc will give us cachline aligned memory by default */ |
| 68 | *base = kmalloc(size, flags); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 69 | if (*base == NULL) |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 70 | return NULL; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 71 | |
| 72 | if ((u64)*base == L1_CACHE_ALIGN((u64)*base)) |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 73 | return *base; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 74 | |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 75 | kfree(*base); |
| 76 | |
| 77 | /* nope, we'll have to do it ourselves */ |
| 78 | *base = kmalloc(size + L1_CACHE_BYTES, flags); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 79 | if (*base == NULL) |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 80 | return NULL; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 81 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 82 | return (void *)L1_CACHE_ALIGN((u64)*base); |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 83 | } |
| 84 | |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 85 | /* |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 86 | * Given a nasid, get the physical address of the partition's reserved page |
| 87 | * for that nasid. This function returns 0 on any error. |
| 88 | */ |
| 89 | static u64 |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 90 | xpc_get_rsvd_page_pa(int nasid) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 91 | { |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 92 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 93 | s64 status; |
| 94 | u64 cookie = 0; |
| 95 | u64 rp_pa = nasid; /* seed with nasid */ |
| 96 | u64 len = 0; |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 97 | u64 buf = buf; |
| 98 | u64 buf_len = 0; |
| 99 | void *buf_base = NULL; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 100 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 101 | while (1) { |
| 102 | |
| 103 | status = sn_partition_reserved_page_pa(buf, &cookie, &rp_pa, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 104 | &len); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 105 | |
| 106 | dev_dbg(xpc_part, "SAL returned with status=%li, cookie=" |
| 107 | "0x%016lx, address=0x%016lx, len=0x%016lx\n", |
| 108 | status, cookie, rp_pa, len); |
| 109 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 110 | if (status != SALRET_MORE_PASSES) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 111 | break; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 112 | |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 113 | /* >>> L1_CACHE_ALIGN() is only a sn2-bte_copy requirement */ |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 114 | if (L1_CACHE_ALIGN(len) > buf_len) { |
Jesper Juhl | cbf283c | 2006-04-20 10:11:09 -0700 | [diff] [blame] | 115 | kfree(buf_base); |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 116 | buf_len = L1_CACHE_ALIGN(len); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 117 | buf = (u64)xpc_kmalloc_cacheline_aligned(buf_len, |
| 118 | GFP_KERNEL, |
| 119 | &buf_base); |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 120 | if (buf_base == NULL) { |
| 121 | dev_err(xpc_part, "unable to kmalloc " |
| 122 | "len=0x%016lx\n", buf_len); |
| 123 | status = SALRET_ERROR; |
| 124 | break; |
| 125 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 128 | ret = xp_remote_memcpy((void *)buf, (void *)rp_pa, buf_len); |
| 129 | if (ret != xpSuccess) { |
| 130 | dev_dbg(xpc_part, "xp_remote_memcpy failed %d\n", ret); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 131 | status = SALRET_ERROR; |
| 132 | break; |
| 133 | } |
| 134 | } |
| 135 | |
Jesper Juhl | cbf283c | 2006-04-20 10:11:09 -0700 | [diff] [blame] | 136 | kfree(buf_base); |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 137 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 138 | if (status != SALRET_OK) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 139 | rp_pa = 0; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 140 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 141 | dev_dbg(xpc_part, "reserved page at phys address 0x%016lx\n", rp_pa); |
| 142 | return rp_pa; |
| 143 | } |
| 144 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 145 | /* |
| 146 | * Fill the partition reserved page with the information needed by |
| 147 | * other partitions to discover we are alive and establish initial |
| 148 | * communications. |
| 149 | */ |
| 150 | struct xpc_rsvd_page * |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 151 | xpc_setup_rsvd_page(void) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 152 | { |
| 153 | struct xpc_rsvd_page *rp; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 154 | u64 rp_pa; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 155 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 156 | /* get the local reserved page's address */ |
| 157 | |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 158 | preempt_disable(); |
| 159 | rp_pa = xpc_get_rsvd_page_pa(cpuid_to_nasid(smp_processor_id())); |
| 160 | preempt_enable(); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 161 | if (rp_pa == 0) { |
| 162 | dev_err(xpc_part, "SAL failed to locate the reserved page\n"); |
| 163 | return NULL; |
| 164 | } |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 165 | rp = (struct xpc_rsvd_page *)__va(rp_pa); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 166 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 167 | if (rp->SAL_version < 3) { |
| 168 | /* SAL_versions < 3 had a SAL_partid defined as a u8 */ |
| 169 | rp->SAL_partid &= 0xff; |
| 170 | } |
| 171 | BUG_ON(rp->SAL_partid != sn_partition_id); |
| 172 | |
| 173 | if (rp->SAL_partid < 0 || rp->SAL_partid >= xp_max_npartitions) { |
| 174 | dev_err(xpc_part, "the reserved page's partid of %d is outside " |
| 175 | "supported range (< 0 || >= %d)\n", rp->SAL_partid, |
| 176 | xp_max_npartitions); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 177 | return NULL; |
| 178 | } |
| 179 | |
| 180 | rp->version = XPC_RP_VERSION; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 181 | rp->max_npartitions = xp_max_npartitions; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 182 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 183 | /* establish the actual sizes of the nasid masks */ |
| 184 | if (rp->SAL_version == 1) { |
| 185 | /* SAL_version 1 didn't set the nasids_size field */ |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 186 | rp->SAL_nasids_size = 128; |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 187 | } |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 188 | xp_sizeof_nasid_mask = rp->SAL_nasids_size; |
| 189 | xp_nasid_mask_words = DIV_ROUND_UP(xp_sizeof_nasid_mask, |
| 190 | BYTES_PER_WORD); |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 191 | |
| 192 | /* setup the pointers to the various items in the reserved page */ |
| 193 | xpc_part_nasids = XPC_RP_PART_NASIDS(rp); |
| 194 | xpc_mach_nasids = XPC_RP_MACH_NASIDS(rp); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 195 | |
| 196 | if (xpc_rsvd_page_init(rp) != xpSuccess) |
| 197 | return NULL; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 198 | |
| 199 | /* |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 200 | * Set timestamp of when reserved page was setup by XPC. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 201 | * This signifies to the remote partition that our reserved |
| 202 | * page is initialized. |
| 203 | */ |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 204 | rp->stamp = CURRENT_TIME; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 205 | |
| 206 | return rp; |
| 207 | } |
| 208 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 209 | /* |
| 210 | * Change protections to allow IPI operations (and AMO operations on |
| 211 | * Shub 1.1 systems). |
| 212 | */ |
| 213 | void |
| 214 | xpc_allow_IPI_ops(void) |
| 215 | { |
| 216 | int node; |
| 217 | int nasid; |
| 218 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 219 | /* >>> Change SH_IPI_ACCESS code to use SAL call once it is available */ |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 220 | |
| 221 | if (is_shub2()) { |
| 222 | xpc_sh2_IPI_access0 = |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 223 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS0)); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 224 | xpc_sh2_IPI_access1 = |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 225 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS1)); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 226 | xpc_sh2_IPI_access2 = |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 227 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS2)); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 228 | xpc_sh2_IPI_access3 = |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 229 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS3)); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 230 | |
| 231 | for_each_online_node(node) { |
| 232 | nasid = cnodeid_to_nasid(node); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 233 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS0), |
| 234 | -1UL); |
| 235 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS1), |
| 236 | -1UL); |
| 237 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS2), |
| 238 | -1UL); |
| 239 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS3), |
| 240 | -1UL); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | } else { |
| 244 | xpc_sh1_IPI_access = |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 245 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH1_IPI_ACCESS)); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 246 | |
| 247 | for_each_online_node(node) { |
| 248 | nasid = cnodeid_to_nasid(node); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 249 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS), |
| 250 | -1UL); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 251 | |
| 252 | /* |
| 253 | * Since the BIST collides with memory operations on |
| 254 | * SHUB 1.1 sn_change_memprotect() cannot be used. |
| 255 | */ |
| 256 | if (enable_shub_wars_1_1()) { |
| 257 | /* open up everything */ |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 258 | xpc_prot_vec[node] = (u64)HUB_L((u64 *) |
| 259 | GLOBAL_MMR_ADDR |
| 260 | (nasid, |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 261 | SH1_MD_DQLP_MMR_DIR_PRIVEC0)); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 262 | HUB_S((u64 *) |
| 263 | GLOBAL_MMR_ADDR(nasid, |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 264 | SH1_MD_DQLP_MMR_DIR_PRIVEC0), |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 265 | -1UL); |
| 266 | HUB_S((u64 *) |
| 267 | GLOBAL_MMR_ADDR(nasid, |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 268 | SH1_MD_DQRP_MMR_DIR_PRIVEC0), |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 269 | -1UL); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 270 | } |
| 271 | } |
| 272 | } |
| 273 | } |
| 274 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 275 | /* |
| 276 | * Restrict protections to disallow IPI operations (and AMO operations on |
| 277 | * Shub 1.1 systems). |
| 278 | */ |
| 279 | void |
| 280 | xpc_restrict_IPI_ops(void) |
| 281 | { |
| 282 | int node; |
| 283 | int nasid; |
| 284 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 285 | /* >>> Change SH_IPI_ACCESS code to use SAL call once it is available */ |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 286 | |
| 287 | if (is_shub2()) { |
| 288 | |
| 289 | for_each_online_node(node) { |
| 290 | nasid = cnodeid_to_nasid(node); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 291 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS0), |
| 292 | xpc_sh2_IPI_access0); |
| 293 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS1), |
| 294 | xpc_sh2_IPI_access1); |
| 295 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS2), |
| 296 | xpc_sh2_IPI_access2); |
| 297 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS3), |
| 298 | xpc_sh2_IPI_access3); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | } else { |
| 302 | |
| 303 | for_each_online_node(node) { |
| 304 | nasid = cnodeid_to_nasid(node); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 305 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS), |
| 306 | xpc_sh1_IPI_access); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 307 | |
| 308 | if (enable_shub_wars_1_1()) { |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 309 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 310 | SH1_MD_DQLP_MMR_DIR_PRIVEC0), |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 311 | xpc_prot_vec[node]); |
| 312 | HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 313 | SH1_MD_DQRP_MMR_DIR_PRIVEC0), |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 314 | xpc_prot_vec[node]); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 320 | /* |
| 321 | * At periodic intervals, scan through all active partitions and ensure |
| 322 | * their heartbeat is still active. If not, the partition is deactivated. |
| 323 | */ |
| 324 | void |
| 325 | xpc_check_remote_hb(void) |
| 326 | { |
| 327 | struct xpc_vars *remote_vars; |
| 328 | struct xpc_partition *part; |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 329 | short partid; |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 330 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 331 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 332 | remote_vars = (struct xpc_vars *)xpc_remote_copy_buffer; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 333 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 334 | for (partid = 0; partid < xp_max_npartitions; partid++) { |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 335 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 336 | if (xpc_exiting) |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 337 | break; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 338 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 339 | if (partid == sn_partition_id) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 340 | continue; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 341 | |
| 342 | part = &xpc_partitions[partid]; |
| 343 | |
| 344 | if (part->act_state == XPC_P_INACTIVE || |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 345 | part->act_state == XPC_P_DEACTIVATING) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 346 | continue; |
| 347 | } |
| 348 | |
| 349 | /* pull the remote_hb cache line */ |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 350 | ret = xp_remote_memcpy(remote_vars, |
| 351 | (void *)part->remote_vars_pa, |
| 352 | XPC_RP_VARS_SIZE); |
| 353 | if (ret != xpSuccess) { |
| 354 | XPC_DEACTIVATE_PARTITION(part, ret); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 355 | continue; |
| 356 | } |
| 357 | |
| 358 | dev_dbg(xpc_part, "partid = %d, heartbeat = %ld, last_heartbeat" |
Dean Nelson | 780d09e | 2005-11-09 14:41:57 -0600 | [diff] [blame] | 359 | " = %ld, heartbeat_offline = %ld, HB_mask = 0x%lx\n", |
| 360 | partid, remote_vars->heartbeat, part->last_heartbeat, |
| 361 | remote_vars->heartbeat_offline, |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 362 | remote_vars->heartbeating_to_mask); |
| 363 | |
| 364 | if (((remote_vars->heartbeat == part->last_heartbeat) && |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 365 | (remote_vars->heartbeat_offline == 0)) || |
| 366 | !xpc_hb_allowed(sn_partition_id, remote_vars)) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 367 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 368 | XPC_DEACTIVATE_PARTITION(part, xpNoHeartbeat); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 369 | continue; |
| 370 | } |
| 371 | |
| 372 | part->last_heartbeat = remote_vars->heartbeat; |
| 373 | } |
| 374 | } |
| 375 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 376 | /* |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 377 | * Get a copy of a portion of the remote partition's rsvd page. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 378 | * |
| 379 | * remote_rp points to a buffer that is cacheline aligned for BTE copies and |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 380 | * is large enough to contain a copy of their reserved page header and |
| 381 | * part_nasids mask. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 382 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 383 | static enum xp_retval |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 384 | xpc_get_remote_rp(int nasid, u64 *discovered_nasids, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 385 | struct xpc_rsvd_page *remote_rp, u64 *remote_rp_pa) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 386 | { |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 387 | int i; |
| 388 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 389 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 390 | /* get the reserved page's physical address */ |
| 391 | |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 392 | *remote_rp_pa = xpc_get_rsvd_page_pa(nasid); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 393 | if (*remote_rp_pa == 0) |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 394 | return xpNoRsvdPageAddr; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 395 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 396 | /* pull over the reserved page header and part_nasids mask */ |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 397 | ret = xp_remote_memcpy(remote_rp, (void *)*remote_rp_pa, |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 398 | XPC_RP_HEADER_SIZE + xp_sizeof_nasid_mask); |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 399 | if (ret != xpSuccess) |
| 400 | return ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 401 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 402 | if (discovered_nasids != NULL) { |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 403 | u64 *remote_part_nasids = XPC_RP_PART_NASIDS(remote_rp); |
| 404 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 405 | for (i = 0; i < xp_nasid_mask_words; i++) |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 406 | discovered_nasids[i] |= remote_part_nasids[i]; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 409 | /* check that the partid is valid and is for another partition */ |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 410 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 411 | if (remote_rp->SAL_partid < 0 || |
| 412 | remote_rp->SAL_partid >= xp_max_npartitions) { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 413 | return xpInvalidPartid; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 414 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 415 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 416 | if (remote_rp->SAL_partid == sn_partition_id) |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 417 | return xpLocalPartid; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 418 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 419 | /* see if the rest of the reserved page has been set up by XPC */ |
| 420 | if (timespec_equal(&remote_rp->stamp, &ZERO_STAMP)) |
| 421 | return xpRsvdPageNotSet; |
| 422 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 423 | if (XPC_VERSION_MAJOR(remote_rp->version) != |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 424 | XPC_VERSION_MAJOR(XPC_RP_VERSION)) { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 425 | return xpBadVersion; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 426 | } |
| 427 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 428 | if (remote_rp->max_npartitions <= sn_partition_id) |
| 429 | return xpInvalidPartid; |
| 430 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 431 | return xpSuccess; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 432 | } |
| 433 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 434 | /* |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 435 | * Get a copy of the remote partition's XPC variables from the reserved page. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 436 | * |
| 437 | * remote_vars points to a buffer that is cacheline aligned for BTE copies and |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 438 | * assumed to be of size XPC_RP_VARS_SIZE. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 439 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 440 | static enum xp_retval |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 441 | xpc_get_remote_vars(u64 remote_vars_pa, struct xpc_vars *remote_vars) |
| 442 | { |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 443 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 444 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 445 | if (remote_vars_pa == 0) |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 446 | return xpVarsNotSet; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 447 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 448 | /* pull over the cross partition variables */ |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 449 | ret = xp_remote_memcpy(remote_vars, (void *)remote_vars_pa, |
| 450 | XPC_RP_VARS_SIZE); |
| 451 | if (ret != xpSuccess) |
| 452 | return ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 453 | |
| 454 | if (XPC_VERSION_MAJOR(remote_vars->version) != |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 455 | XPC_VERSION_MAJOR(XPC_V_VERSION)) { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 456 | return xpBadVersion; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 459 | return xpSuccess; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 462 | /* |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 463 | * Update the remote partition's info. |
| 464 | */ |
| 465 | static void |
| 466 | xpc_update_partition_info(struct xpc_partition *part, u8 remote_rp_version, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 467 | struct timespec *remote_rp_stamp, u64 remote_rp_pa, |
| 468 | u64 remote_vars_pa, struct xpc_vars *remote_vars) |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 469 | { |
| 470 | part->remote_rp_version = remote_rp_version; |
Tony Luck | b9ae3bd | 2007-05-10 11:47:38 -0700 | [diff] [blame] | 471 | dev_dbg(xpc_part, " remote_rp_version = 0x%016x\n", |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 472 | part->remote_rp_version); |
| 473 | |
| 474 | part->remote_rp_stamp = *remote_rp_stamp; |
| 475 | dev_dbg(xpc_part, " remote_rp_stamp (tv_sec = 0x%lx tv_nsec = 0x%lx\n", |
| 476 | part->remote_rp_stamp.tv_sec, part->remote_rp_stamp.tv_nsec); |
| 477 | |
| 478 | part->remote_rp_pa = remote_rp_pa; |
| 479 | dev_dbg(xpc_part, " remote_rp_pa = 0x%016lx\n", part->remote_rp_pa); |
| 480 | |
| 481 | part->remote_vars_pa = remote_vars_pa; |
| 482 | dev_dbg(xpc_part, " remote_vars_pa = 0x%016lx\n", |
| 483 | part->remote_vars_pa); |
| 484 | |
| 485 | part->last_heartbeat = remote_vars->heartbeat; |
| 486 | dev_dbg(xpc_part, " last_heartbeat = 0x%016lx\n", |
| 487 | part->last_heartbeat); |
| 488 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame^] | 489 | /* >>> remote_vars_part_pa and vars_part_pa are sn2 only!!! */ |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 490 | part->remote_vars_part_pa = remote_vars->vars_part_pa; |
| 491 | dev_dbg(xpc_part, " remote_vars_part_pa = 0x%016lx\n", |
| 492 | part->remote_vars_part_pa); |
| 493 | |
| 494 | part->remote_act_nasid = remote_vars->act_nasid; |
| 495 | dev_dbg(xpc_part, " remote_act_nasid = 0x%x\n", |
| 496 | part->remote_act_nasid); |
| 497 | |
| 498 | part->remote_act_phys_cpuid = remote_vars->act_phys_cpuid; |
| 499 | dev_dbg(xpc_part, " remote_act_phys_cpuid = 0x%x\n", |
| 500 | part->remote_act_phys_cpuid); |
| 501 | |
| 502 | part->remote_amos_page_pa = remote_vars->amos_page_pa; |
| 503 | dev_dbg(xpc_part, " remote_amos_page_pa = 0x%lx\n", |
| 504 | part->remote_amos_page_pa); |
| 505 | |
| 506 | part->remote_vars_version = remote_vars->version; |
| 507 | dev_dbg(xpc_part, " remote_vars_version = 0x%x\n", |
| 508 | part->remote_vars_version); |
| 509 | } |
| 510 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 511 | /* |
Dean Nelson | e54af72 | 2005-10-25 14:07:43 -0500 | [diff] [blame] | 512 | * Prior code has determined the nasid which generated an IPI. Inspect |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 513 | * that nasid to determine if its partition needs to be activated or |
| 514 | * deactivated. |
| 515 | * |
| 516 | * A partition is consider "awaiting activation" if our partition |
| 517 | * flags indicate it is not active and it has a heartbeat. A |
| 518 | * partition is considered "awaiting deactivation" if our partition |
| 519 | * flags indicate it is active but it has no heartbeat or it is not |
| 520 | * sending its heartbeat to us. |
| 521 | * |
| 522 | * To determine the heartbeat, the remote nasid must have a properly |
| 523 | * initialized reserved page. |
| 524 | */ |
| 525 | static void |
| 526 | xpc_identify_act_IRQ_req(int nasid) |
| 527 | { |
| 528 | struct xpc_rsvd_page *remote_rp; |
| 529 | struct xpc_vars *remote_vars; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 530 | u64 remote_rp_pa; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 531 | u64 remote_vars_pa; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 532 | int remote_rp_version; |
| 533 | int reactivate = 0; |
| 534 | int stamp_diff; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 535 | struct timespec remote_rp_stamp = { 0, 0 }; /*>>> ZERO_STAMP */ |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 536 | short partid; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 537 | struct xpc_partition *part; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 538 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 539 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 540 | /* pull over the reserved page structure */ |
| 541 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 542 | remote_rp = (struct xpc_rsvd_page *)xpc_remote_copy_buffer; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 543 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 544 | ret = xpc_get_remote_rp(nasid, NULL, remote_rp, &remote_rp_pa); |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 545 | if (ret != xpSuccess) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 546 | dev_warn(xpc_part, "unable to get reserved page from nasid %d, " |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 547 | "which sent interrupt, reason=%d\n", nasid, ret); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 548 | return; |
| 549 | } |
| 550 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 551 | remote_vars_pa = remote_rp->sn.vars_pa; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 552 | remote_rp_version = remote_rp->version; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 553 | if (XPC_SUPPORTS_RP_STAMP(remote_rp_version)) |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 554 | remote_rp_stamp = remote_rp->stamp; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 555 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 556 | partid = remote_rp->SAL_partid; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 557 | part = &xpc_partitions[partid]; |
| 558 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 559 | /* pull over the cross partition variables */ |
| 560 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 561 | remote_vars = (struct xpc_vars *)xpc_remote_copy_buffer; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 562 | |
| 563 | ret = xpc_get_remote_vars(remote_vars_pa, remote_vars); |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 564 | if (ret != xpSuccess) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 565 | |
| 566 | dev_warn(xpc_part, "unable to get XPC variables from nasid %d, " |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 567 | "which sent interrupt, reason=%d\n", nasid, ret); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 568 | |
| 569 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 570 | return; |
| 571 | } |
| 572 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 573 | part->act_IRQ_rcvd++; |
| 574 | |
| 575 | dev_dbg(xpc_part, "partid for nasid %d is %d; IRQs = %d; HB = " |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 576 | "%ld:0x%lx\n", (int)nasid, (int)partid, part->act_IRQ_rcvd, |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 577 | remote_vars->heartbeat, remote_vars->heartbeating_to_mask); |
| 578 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 579 | if (xpc_partition_disengaged(part) && |
| 580 | part->act_state == XPC_P_INACTIVE) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 581 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 582 | xpc_update_partition_info(part, remote_rp_version, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 583 | &remote_rp_stamp, remote_rp_pa, |
| 584 | remote_vars_pa, remote_vars); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 585 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 586 | if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version)) { |
| 587 | if (xpc_partition_disengage_requested(1UL << partid)) { |
| 588 | /* |
| 589 | * Other side is waiting on us to disengage, |
| 590 | * even though we already have. |
| 591 | */ |
| 592 | return; |
| 593 | } |
| 594 | } else { |
| 595 | /* other side doesn't support disengage requests */ |
| 596 | xpc_clear_partition_disengage_request(1UL << partid); |
| 597 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 598 | |
| 599 | xpc_activate_partition(part); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 600 | return; |
| 601 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 602 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 603 | DBUG_ON(part->remote_rp_version == 0); |
| 604 | DBUG_ON(part->remote_vars_version == 0); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 605 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 606 | if (!XPC_SUPPORTS_RP_STAMP(part->remote_rp_version)) { |
| 607 | DBUG_ON(XPC_SUPPORTS_DISENGAGE_REQUEST(part-> |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 608 | remote_vars_version)); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 609 | |
| 610 | if (!XPC_SUPPORTS_RP_STAMP(remote_rp_version)) { |
| 611 | DBUG_ON(XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars-> |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 612 | version)); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 613 | /* see if the other side rebooted */ |
| 614 | if (part->remote_amos_page_pa == |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 615 | remote_vars->amos_page_pa && |
| 616 | xpc_hb_allowed(sn_partition_id, remote_vars)) { |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 617 | /* doesn't look that way, so ignore the IPI */ |
| 618 | return; |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | /* |
| 623 | * Other side rebooted and previous XPC didn't support the |
| 624 | * disengage request, so we don't need to do anything special. |
| 625 | */ |
| 626 | |
| 627 | xpc_update_partition_info(part, remote_rp_version, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 628 | &remote_rp_stamp, remote_rp_pa, |
| 629 | remote_vars_pa, remote_vars); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 630 | part->reactivate_nasid = nasid; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 631 | XPC_DEACTIVATE_PARTITION(part, xpReactivating); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 632 | return; |
| 633 | } |
| 634 | |
| 635 | DBUG_ON(!XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version)); |
| 636 | |
| 637 | if (!XPC_SUPPORTS_RP_STAMP(remote_rp_version)) { |
| 638 | DBUG_ON(!XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->version)); |
| 639 | |
| 640 | /* |
| 641 | * Other side rebooted and previous XPC did support the |
| 642 | * disengage request, but the new one doesn't. |
| 643 | */ |
| 644 | |
| 645 | xpc_clear_partition_engaged(1UL << partid); |
| 646 | xpc_clear_partition_disengage_request(1UL << partid); |
| 647 | |
| 648 | xpc_update_partition_info(part, remote_rp_version, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 649 | &remote_rp_stamp, remote_rp_pa, |
| 650 | remote_vars_pa, remote_vars); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 651 | reactivate = 1; |
| 652 | |
| 653 | } else { |
| 654 | DBUG_ON(!XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->version)); |
| 655 | |
| 656 | stamp_diff = xpc_compare_stamps(&part->remote_rp_stamp, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 657 | &remote_rp_stamp); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 658 | if (stamp_diff != 0) { |
| 659 | DBUG_ON(stamp_diff >= 0); |
| 660 | |
| 661 | /* |
| 662 | * Other side rebooted and the previous XPC did support |
| 663 | * the disengage request, as does the new one. |
| 664 | */ |
| 665 | |
| 666 | DBUG_ON(xpc_partition_engaged(1UL << partid)); |
| 667 | DBUG_ON(xpc_partition_disengage_requested(1UL << |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 668 | partid)); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 669 | |
| 670 | xpc_update_partition_info(part, remote_rp_version, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 671 | &remote_rp_stamp, |
| 672 | remote_rp_pa, remote_vars_pa, |
| 673 | remote_vars); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 674 | reactivate = 1; |
| 675 | } |
| 676 | } |
| 677 | |
Dean Nelson | 246c7e3 | 2005-12-22 14:32:56 -0600 | [diff] [blame] | 678 | if (part->disengage_request_timeout > 0 && |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 679 | !xpc_partition_disengaged(part)) { |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 680 | /* still waiting on other side to disengage from us */ |
| 681 | return; |
| 682 | } |
| 683 | |
| 684 | if (reactivate) { |
| 685 | part->reactivate_nasid = nasid; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 686 | XPC_DEACTIVATE_PARTITION(part, xpReactivating); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 687 | |
| 688 | } else if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version) && |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 689 | xpc_partition_disengage_requested(1UL << partid)) { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 690 | XPC_DEACTIVATE_PARTITION(part, xpOtherGoingDown); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 691 | } |
| 692 | } |
| 693 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 694 | /* |
| 695 | * Loop through the activation AMO variables and process any bits |
| 696 | * which are set. Each bit indicates a nasid sending a partition |
| 697 | * activation or deactivation request. |
| 698 | * |
| 699 | * Return #of IRQs detected. |
| 700 | */ |
| 701 | int |
| 702 | xpc_identify_act_IRQ_sender(void) |
| 703 | { |
| 704 | int word, bit; |
| 705 | u64 nasid_mask; |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 706 | u64 nasid; /* remote nasid */ |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 707 | int n_IRQs_detected = 0; |
| 708 | AMO_t *act_amos; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 709 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 710 | act_amos = xpc_vars->amos_page + XPC_ACTIVATE_IRQ_AMOS; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 711 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 712 | /* scan through act AMO variable looking for non-zero entries */ |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 713 | for (word = 0; word < xp_nasid_mask_words; word++) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 714 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 715 | if (xpc_exiting) |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 716 | break; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 717 | |
| 718 | nasid_mask = xpc_IPI_receive(&act_amos[word]); |
| 719 | if (nasid_mask == 0) { |
| 720 | /* no IRQs from nasids in this variable */ |
| 721 | continue; |
| 722 | } |
| 723 | |
| 724 | dev_dbg(xpc_part, "AMO[%d] gave back 0x%lx\n", word, |
| 725 | nasid_mask); |
| 726 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 727 | /* |
| 728 | * If this nasid has been added to the machine since |
| 729 | * our partition was reset, this will retain the |
| 730 | * remote nasid in our reserved pages machine mask. |
| 731 | * This is used in the event of module reload. |
| 732 | */ |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 733 | xpc_mach_nasids[word] |= nasid_mask; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 734 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 735 | /* locate the nasid(s) which sent interrupts */ |
| 736 | |
| 737 | for (bit = 0; bit < (8 * sizeof(u64)); bit++) { |
| 738 | if (nasid_mask & (1UL << bit)) { |
| 739 | n_IRQs_detected++; |
| 740 | nasid = XPC_NASID_FROM_W_B(word, bit); |
| 741 | dev_dbg(xpc_part, "interrupt from nasid %ld\n", |
| 742 | nasid); |
| 743 | xpc_identify_act_IRQ_req(nasid); |
| 744 | } |
| 745 | } |
| 746 | } |
| 747 | return n_IRQs_detected; |
| 748 | } |
| 749 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 750 | /* |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 751 | * See if the other side has responded to a partition disengage request |
| 752 | * from us. |
| 753 | */ |
| 754 | int |
| 755 | xpc_partition_disengaged(struct xpc_partition *part) |
| 756 | { |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 757 | short partid = XPC_PARTID(part); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 758 | int disengaged; |
| 759 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 760 | disengaged = (xpc_partition_engaged(1UL << partid) == 0); |
| 761 | if (part->disengage_request_timeout) { |
| 762 | if (!disengaged) { |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 763 | if (time_before(jiffies, |
| 764 | part->disengage_request_timeout)) { |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 765 | /* timelimit hasn't been reached yet */ |
| 766 | return 0; |
| 767 | } |
| 768 | |
| 769 | /* |
| 770 | * Other side hasn't responded to our disengage |
| 771 | * request in a timely fashion, so assume it's dead. |
| 772 | */ |
| 773 | |
Dean Nelson | 1ecaded | 2006-01-06 09:48:21 -0600 | [diff] [blame] | 774 | dev_info(xpc_part, "disengage from remote partition %d " |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 775 | "timed out\n", partid); |
Dean Nelson | 1ecaded | 2006-01-06 09:48:21 -0600 | [diff] [blame] | 776 | xpc_disengage_request_timedout = 1; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 777 | xpc_clear_partition_engaged(1UL << partid); |
| 778 | disengaged = 1; |
| 779 | } |
| 780 | part->disengage_request_timeout = 0; |
| 781 | |
| 782 | /* cancel the timer function, provided it's not us */ |
| 783 | if (!in_interrupt()) { |
| 784 | del_singleshot_timer_sync(&part-> |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 785 | disengage_request_timer); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | DBUG_ON(part->act_state != XPC_P_DEACTIVATING && |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 789 | part->act_state != XPC_P_INACTIVE); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 790 | if (part->act_state != XPC_P_INACTIVE) |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 791 | xpc_wakeup_channel_mgr(part); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 792 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 793 | if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version)) |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 794 | xpc_cancel_partition_disengage_request(part); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 795 | } |
| 796 | return disengaged; |
| 797 | } |
| 798 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 799 | /* |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 800 | * Mark specified partition as active. |
| 801 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 802 | enum xp_retval |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 803 | xpc_mark_partition_active(struct xpc_partition *part) |
| 804 | { |
| 805 | unsigned long irq_flags; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 806 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 807 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 808 | dev_dbg(xpc_part, "setting partition %d to ACTIVE\n", XPC_PARTID(part)); |
| 809 | |
| 810 | spin_lock_irqsave(&part->act_lock, irq_flags); |
| 811 | if (part->act_state == XPC_P_ACTIVATING) { |
| 812 | part->act_state = XPC_P_ACTIVE; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 813 | ret = xpSuccess; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 814 | } else { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 815 | DBUG_ON(part->reason == xpSuccess); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 816 | ret = part->reason; |
| 817 | } |
| 818 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 819 | |
| 820 | return ret; |
| 821 | } |
| 822 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 823 | /* |
| 824 | * Notify XPC that the partition is down. |
| 825 | */ |
| 826 | void |
| 827 | xpc_deactivate_partition(const int line, struct xpc_partition *part, |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 828 | enum xp_retval reason) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 829 | { |
| 830 | unsigned long irq_flags; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 831 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 832 | spin_lock_irqsave(&part->act_lock, irq_flags); |
| 833 | |
| 834 | if (part->act_state == XPC_P_INACTIVE) { |
| 835 | XPC_SET_REASON(part, reason, line); |
| 836 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 837 | if (reason == xpReactivating) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 838 | /* we interrupt ourselves to reactivate partition */ |
| 839 | xpc_IPI_send_reactivate(part); |
| 840 | } |
| 841 | return; |
| 842 | } |
| 843 | if (part->act_state == XPC_P_DEACTIVATING) { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 844 | if ((part->reason == xpUnloading && reason != xpUnloading) || |
| 845 | reason == xpReactivating) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 846 | XPC_SET_REASON(part, reason, line); |
| 847 | } |
| 848 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 849 | return; |
| 850 | } |
| 851 | |
| 852 | part->act_state = XPC_P_DEACTIVATING; |
| 853 | XPC_SET_REASON(part, reason, line); |
| 854 | |
| 855 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 856 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 857 | if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version)) { |
| 858 | xpc_request_partition_disengage(part); |
| 859 | xpc_IPI_send_disengage(part); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 860 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 861 | /* set a timelimit on the disengage request */ |
| 862 | part->disengage_request_timeout = jiffies + |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 863 | (xpc_disengage_request_timelimit * HZ); |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 864 | part->disengage_request_timer.expires = |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 865 | part->disengage_request_timeout; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 866 | add_timer(&part->disengage_request_timer); |
| 867 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 868 | |
Dean Nelson | e54af72 | 2005-10-25 14:07:43 -0500 | [diff] [blame] | 869 | dev_dbg(xpc_part, "bringing partition %d down, reason = %d\n", |
| 870 | XPC_PARTID(part), reason); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 871 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 872 | xpc_partition_going_down(part, reason); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 873 | } |
| 874 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 875 | /* |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 876 | * Mark specified partition as inactive. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 877 | */ |
| 878 | void |
| 879 | xpc_mark_partition_inactive(struct xpc_partition *part) |
| 880 | { |
| 881 | unsigned long irq_flags; |
| 882 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 883 | dev_dbg(xpc_part, "setting partition %d to INACTIVE\n", |
| 884 | XPC_PARTID(part)); |
| 885 | |
| 886 | spin_lock_irqsave(&part->act_lock, irq_flags); |
| 887 | part->act_state = XPC_P_INACTIVE; |
| 888 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 889 | part->remote_rp_pa = 0; |
| 890 | } |
| 891 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 892 | /* |
| 893 | * SAL has provided a partition and machine mask. The partition mask |
| 894 | * contains a bit for each even nasid in our partition. The machine |
| 895 | * mask contains a bit for each even nasid in the entire machine. |
| 896 | * |
| 897 | * Using those two bit arrays, we can determine which nasids are |
| 898 | * known in the machine. Each should also have a reserved page |
| 899 | * initialized if they are available for partitioning. |
| 900 | */ |
| 901 | void |
| 902 | xpc_discovery(void) |
| 903 | { |
| 904 | void *remote_rp_base; |
| 905 | struct xpc_rsvd_page *remote_rp; |
| 906 | struct xpc_vars *remote_vars; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 907 | u64 remote_rp_pa; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 908 | u64 remote_vars_pa; |
| 909 | int region; |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 910 | int region_size; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 911 | int max_regions; |
| 912 | int nasid; |
| 913 | struct xpc_rsvd_page *rp; |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 914 | short partid; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 915 | struct xpc_partition *part; |
| 916 | u64 *discovered_nasids; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 917 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 918 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 919 | remote_rp = xpc_kmalloc_cacheline_aligned(XPC_RP_HEADER_SIZE + |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 920 | xp_sizeof_nasid_mask, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 921 | GFP_KERNEL, &remote_rp_base); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 922 | if (remote_rp == NULL) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 923 | return; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 924 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 925 | remote_vars = (struct xpc_vars *)remote_rp; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 926 | |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 927 | discovered_nasids = kzalloc(sizeof(u64) * xp_nasid_mask_words, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 928 | GFP_KERNEL); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 929 | if (discovered_nasids == NULL) { |
| 930 | kfree(remote_rp_base); |
| 931 | return; |
| 932 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 933 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 934 | rp = (struct xpc_rsvd_page *)xpc_rsvd_page; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 935 | |
| 936 | /* |
| 937 | * The term 'region' in this context refers to the minimum number of |
| 938 | * nodes that can comprise an access protection grouping. The access |
| 939 | * protection is in regards to memory, IOI and IPI. |
| 940 | */ |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 941 | max_regions = 64; |
| 942 | region_size = sn_region_size; |
| 943 | |
| 944 | switch (region_size) { |
| 945 | case 128: |
| 946 | max_regions *= 2; |
| 947 | case 64: |
| 948 | max_regions *= 2; |
| 949 | case 32: |
| 950 | max_regions *= 2; |
| 951 | region_size = 16; |
| 952 | DBUG_ON(!is_shub2()); |
| 953 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 954 | |
| 955 | for (region = 0; region < max_regions; region++) { |
| 956 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 957 | if (xpc_exiting) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 958 | break; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 959 | |
| 960 | dev_dbg(xpc_part, "searching region %d\n", region); |
| 961 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 962 | for (nasid = (region * region_size * 2); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 963 | nasid < ((region + 1) * region_size * 2); nasid += 2) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 964 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 965 | if (xpc_exiting) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 966 | break; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 967 | |
| 968 | dev_dbg(xpc_part, "checking nasid %d\n", nasid); |
| 969 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 970 | if (XPC_NASID_IN_ARRAY(nasid, xpc_part_nasids)) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 971 | dev_dbg(xpc_part, "PROM indicates Nasid %d is " |
| 972 | "part of the local partition; skipping " |
| 973 | "region\n", nasid); |
| 974 | break; |
| 975 | } |
| 976 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 977 | if (!(XPC_NASID_IN_ARRAY(nasid, xpc_mach_nasids))) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 978 | dev_dbg(xpc_part, "PROM indicates Nasid %d was " |
| 979 | "not on Numa-Link network at reset\n", |
| 980 | nasid); |
| 981 | continue; |
| 982 | } |
| 983 | |
| 984 | if (XPC_NASID_IN_ARRAY(nasid, discovered_nasids)) { |
| 985 | dev_dbg(xpc_part, "Nasid %d is part of a " |
| 986 | "partition which was previously " |
| 987 | "discovered\n", nasid); |
| 988 | continue; |
| 989 | } |
| 990 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 991 | /* pull over the reserved page structure */ |
| 992 | |
| 993 | ret = xpc_get_remote_rp(nasid, discovered_nasids, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 994 | remote_rp, &remote_rp_pa); |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 995 | if (ret != xpSuccess) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 996 | dev_dbg(xpc_part, "unable to get reserved page " |
| 997 | "from nasid %d, reason=%d\n", nasid, |
| 998 | ret); |
| 999 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 1000 | if (ret == xpLocalPartid) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1001 | break; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 1002 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1003 | continue; |
| 1004 | } |
| 1005 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 1006 | remote_vars_pa = remote_rp->sn.vars_pa; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1007 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 1008 | partid = remote_rp->SAL_partid; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1009 | part = &xpc_partitions[partid]; |
| 1010 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1011 | /* pull over the cross partition variables */ |
| 1012 | |
| 1013 | ret = xpc_get_remote_vars(remote_vars_pa, remote_vars); |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 1014 | if (ret != xpSuccess) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1015 | dev_dbg(xpc_part, "unable to get XPC variables " |
| 1016 | "from nasid %d, reason=%d\n", nasid, |
| 1017 | ret); |
| 1018 | |
| 1019 | XPC_DEACTIVATE_PARTITION(part, ret); |
| 1020 | continue; |
| 1021 | } |
| 1022 | |
| 1023 | if (part->act_state != XPC_P_INACTIVE) { |
| 1024 | dev_dbg(xpc_part, "partition %d on nasid %d is " |
| 1025 | "already activating\n", partid, nasid); |
| 1026 | break; |
| 1027 | } |
| 1028 | |
| 1029 | /* |
| 1030 | * Register the remote partition's AMOs with SAL so it |
| 1031 | * can handle and cleanup errors within that address |
| 1032 | * range should the remote partition go down. We don't |
| 1033 | * unregister this range because it is difficult to |
| 1034 | * tell when outstanding writes to the remote partition |
| 1035 | * are finished and thus when it is thus safe to |
| 1036 | * unregister. This should not result in wasted space |
| 1037 | * in the SAL xp_addr_region table because we should |
| 1038 | * get the same page for remote_act_amos_pa after |
| 1039 | * module reloads and system reboots. |
| 1040 | */ |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 1041 | if (sn_register_xp_addr_region |
| 1042 | (remote_vars->amos_page_pa, PAGE_SIZE, 1) < 0) { |
| 1043 | dev_dbg(xpc_part, |
| 1044 | "partition %d failed to " |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1045 | "register xp_addr region 0x%016lx\n", |
| 1046 | partid, remote_vars->amos_page_pa); |
| 1047 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 1048 | XPC_SET_REASON(part, xpPhysAddrRegFailed, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 1049 | __LINE__); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1050 | break; |
| 1051 | } |
| 1052 | |
| 1053 | /* |
| 1054 | * The remote nasid is valid and available. |
| 1055 | * Send an interrupt to that nasid to notify |
| 1056 | * it that we are ready to begin activation. |
| 1057 | */ |
| 1058 | dev_dbg(xpc_part, "sending an interrupt to AMO 0x%lx, " |
| 1059 | "nasid %d, phys_cpuid 0x%x\n", |
| 1060 | remote_vars->amos_page_pa, |
| 1061 | remote_vars->act_nasid, |
| 1062 | remote_vars->act_phys_cpuid); |
| 1063 | |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 1064 | if (XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars-> |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 1065 | version)) { |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 1066 | part->remote_amos_page_pa = |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 1067 | remote_vars->amos_page_pa; |
Dean Nelson | a607c38 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 1068 | xpc_mark_partition_disengaged(part); |
| 1069 | xpc_cancel_partition_disengage_request(part); |
| 1070 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1071 | xpc_IPI_send_activate(remote_vars); |
| 1072 | } |
| 1073 | } |
| 1074 | |
| 1075 | kfree(discovered_nasids); |
| 1076 | kfree(remote_rp_base); |
| 1077 | } |
| 1078 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1079 | /* |
| 1080 | * Given a partid, get the nasids owned by that partition from the |
Dean Nelson | 3a7d555 | 2005-04-04 13:14:00 -0700 | [diff] [blame] | 1081 | * remote partition's reserved page. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1082 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 1083 | enum xp_retval |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 1084 | xpc_initiate_partid_to_nasids(short partid, void *nasid_mask) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1085 | { |
| 1086 | struct xpc_partition *part; |
| 1087 | u64 part_nasid_pa; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1088 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1089 | part = &xpc_partitions[partid]; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 1090 | if (part->remote_rp_pa == 0) |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 1091 | return xpPartitionDown; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1092 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 1093 | memset(nasid_mask, 0, XP_NASID_MASK_BYTES); |
| 1094 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 1095 | part_nasid_pa = (u64)XPC_RP_PART_NASIDS(part->remote_rp_pa); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1096 | |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 1097 | return xp_remote_memcpy(nasid_mask, (void *)part_nasid_pa, |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 1098 | xp_sizeof_nasid_mask); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 1099 | } |