blob: 1db84cb4914381f50056b1cf3008851a3c51a1d2 [file] [log] [blame]
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Dean Nelson45d9ca42008-04-22 14:46:56 -05006 * Copyright (c) 2004-2008 Silicon Graphics, Inc. All Rights Reserved.
Dean Nelson89eb8eb2005-03-23 19:50:00 -07007 */
8
Dean Nelson89eb8eb2005-03-23 19:50:00 -07009/*
10 * Cross Partition Communication (XPC) 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 Nelson89eb8eb2005-03-23 19:50:00 -070018#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 Nelson89eb8eb2005-03-23 19:50:00 -070023#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 Nelson45d9ca42008-04-22 14:46:56 -050027#include "xpc.h"
Dean Nelson89eb8eb2005-03-23 19:50:00 -070028
Dean Nelson89eb8eb2005-03-23 19:50:00 -070029/* XPC is exiting flag */
30int xpc_exiting;
31
Dean Nelson89eb8eb2005-03-23 19:50:00 -070032/* SH_IPI_ACCESS shub register value on startup */
33static u64 xpc_sh1_IPI_access;
34static u64 xpc_sh2_IPI_access0;
35static u64 xpc_sh2_IPI_access1;
36static u64 xpc_sh2_IPI_access2;
37static u64 xpc_sh2_IPI_access3;
38
Dean Nelson89eb8eb2005-03-23 19:50:00 -070039/* original protection values for each node */
Jack Steiner24ee0a62005-09-12 12:15:43 -050040u64 xpc_prot_vec[MAX_NUMNODES];
Dean Nelson89eb8eb2005-03-23 19:50:00 -070041
Dean Nelson4b38fcd2005-10-25 14:09:51 -050042/* this partition's reserved page pointers */
Dean Nelson89eb8eb2005-03-23 19:50:00 -070043struct xpc_rsvd_page *xpc_rsvd_page;
Dean Nelson4b38fcd2005-10-25 14:09:51 -050044static u64 *xpc_part_nasids;
45static u64 *xpc_mach_nasids;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070046
Dean Nelson94bd2702008-07-29 22:34:05 -070047/* >>> next two variables should be 'xpc_' if they remain here */
48static int xp_sizeof_nasid_mask; /* actual size in bytes of nasid mask */
49int xp_nasid_mask_words; /* actual size in words of nasid mask */
Dean Nelson4b38fcd2005-10-25 14:09:51 -050050
Dean Nelsonbc63d382008-07-29 22:34:04 -070051struct xpc_partition *xpc_partitions;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070052
Dean Nelson89eb8eb2005-03-23 19:50:00 -070053/*
Dean Nelson4b38fcd2005-10-25 14:09:51 -050054 * 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 Nelson89eb8eb2005-03-23 19:50:00 -070057 */
Dean Nelson7682a4c2006-08-08 15:03:29 -050058char *xpc_remote_copy_buffer;
59void *xpc_remote_copy_buffer_base;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070060
Dean Nelson89eb8eb2005-03-23 19:50:00 -070061/*
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050062 * Guarantee that the kmalloc'd memory is cacheline aligned.
63 */
Dean Nelson7682a4c2006-08-08 15:03:29 -050064void *
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050065xpc_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 Nelson2c2b94f2008-04-22 14:50:17 -050069 if (*base == NULL)
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050070 return NULL;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050071
72 if ((u64)*base == L1_CACHE_ALIGN((u64)*base))
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050073 return *base;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050074
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050075 kfree(*base);
76
77 /* nope, we'll have to do it ourselves */
78 *base = kmalloc(size + L1_CACHE_BYTES, flags);
Dean Nelson2c2b94f2008-04-22 14:50:17 -050079 if (*base == NULL)
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050080 return NULL;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050081
Dean Nelson4a3ad2d2008-04-22 14:48:01 -050082 return (void *)L1_CACHE_ALIGN((u64)*base);
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050083}
84
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050085/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -070086 * 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 */
89static u64
Dean Nelson27929022005-10-25 14:11:53 -050090xpc_get_rsvd_page_pa(int nasid)
Dean Nelson89eb8eb2005-03-23 19:50:00 -070091{
Dean Nelson908787d2008-07-29 22:34:05 -070092 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070093 s64 status;
94 u64 cookie = 0;
95 u64 rp_pa = nasid; /* seed with nasid */
96 u64 len = 0;
Dean Nelson27929022005-10-25 14:11:53 -050097 u64 buf = buf;
98 u64 buf_len = 0;
99 void *buf_base = NULL;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700100
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700101 while (1) {
102
103 status = sn_partition_reserved_page_pa(buf, &cookie, &rp_pa,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500104 &len);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700105
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 Nelson2c2b94f2008-04-22 14:50:17 -0500110 if (status != SALRET_MORE_PASSES)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700111 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700112
Dean Nelson908787d2008-07-29 22:34:05 -0700113 /* >>> L1_CACHE_ALIGN() is only a sn2-bte_copy requirement */
Dean Nelson27929022005-10-25 14:11:53 -0500114 if (L1_CACHE_ALIGN(len) > buf_len) {
Jesper Juhlcbf283c2006-04-20 10:11:09 -0700115 kfree(buf_base);
Dean Nelson27929022005-10-25 14:11:53 -0500116 buf_len = L1_CACHE_ALIGN(len);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500117 buf = (u64)xpc_kmalloc_cacheline_aligned(buf_len,
118 GFP_KERNEL,
119 &buf_base);
Dean Nelson27929022005-10-25 14:11:53 -0500120 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 Nelson89eb8eb2005-03-23 19:50:00 -0700126 }
127
Dean Nelson908787d2008-07-29 22:34:05 -0700128 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 Nelson89eb8eb2005-03-23 19:50:00 -0700131 status = SALRET_ERROR;
132 break;
133 }
134 }
135
Jesper Juhlcbf283c2006-04-20 10:11:09 -0700136 kfree(buf_base);
Dean Nelson27929022005-10-25 14:11:53 -0500137
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500138 if (status != SALRET_OK)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700139 rp_pa = 0;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500140
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700141 dev_dbg(xpc_part, "reserved page at phys address 0x%016lx\n", rp_pa);
142 return rp_pa;
143}
144
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700145/*
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 */
150struct xpc_rsvd_page *
Dean Nelson94bd2702008-07-29 22:34:05 -0700151xpc_setup_rsvd_page(void)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700152{
153 struct xpc_rsvd_page *rp;
Dean Nelson94bd2702008-07-29 22:34:05 -0700154 u64 rp_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700155
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700156 /* get the local reserved page's address */
157
Dean Nelson27929022005-10-25 14:11:53 -0500158 preempt_disable();
159 rp_pa = xpc_get_rsvd_page_pa(cpuid_to_nasid(smp_processor_id()));
160 preempt_enable();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700161 if (rp_pa == 0) {
162 dev_err(xpc_part, "SAL failed to locate the reserved page\n");
163 return NULL;
164 }
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500165 rp = (struct xpc_rsvd_page *)__va(rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700166
Dean Nelson94bd2702008-07-29 22:34:05 -0700167 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 Nelson89eb8eb2005-03-23 19:50:00 -0700177 return NULL;
178 }
179
180 rp->version = XPC_RP_VERSION;
Dean Nelson94bd2702008-07-29 22:34:05 -0700181 rp->max_npartitions = xp_max_npartitions;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700182
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500183 /* 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 Nelson94bd2702008-07-29 22:34:05 -0700186 rp->SAL_nasids_size = 128;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500187 }
Dean Nelson94bd2702008-07-29 22:34:05 -0700188 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 Nelson4b38fcd2005-10-25 14:09:51 -0500191
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 Nelson94bd2702008-07-29 22:34:05 -0700195
196 if (xpc_rsvd_page_init(rp) != xpSuccess)
197 return NULL;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700198
199 /*
Dean Nelson94bd2702008-07-29 22:34:05 -0700200 * Set timestamp of when reserved page was setup by XPC.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700201 * This signifies to the remote partition that our reserved
202 * page is initialized.
203 */
Dean Nelson94bd2702008-07-29 22:34:05 -0700204 rp->stamp = CURRENT_TIME;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700205
206 return rp;
207}
208
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700209/*
210 * Change protections to allow IPI operations (and AMO operations on
211 * Shub 1.1 systems).
212 */
213void
214xpc_allow_IPI_ops(void)
215{
216 int node;
217 int nasid;
218
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500219 /* >>> Change SH_IPI_ACCESS code to use SAL call once it is available */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700220
221 if (is_shub2()) {
222 xpc_sh2_IPI_access0 =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500223 (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS0));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700224 xpc_sh2_IPI_access1 =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500225 (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS1));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700226 xpc_sh2_IPI_access2 =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500227 (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS2));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700228 xpc_sh2_IPI_access3 =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500229 (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS3));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700230
231 for_each_online_node(node) {
232 nasid = cnodeid_to_nasid(node);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500233 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 Nelson89eb8eb2005-03-23 19:50:00 -0700241 }
242
243 } else {
244 xpc_sh1_IPI_access =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500245 (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH1_IPI_ACCESS));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700246
247 for_each_online_node(node) {
248 nasid = cnodeid_to_nasid(node);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500249 HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS),
250 -1UL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700251
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 Nelson4a3ad2d2008-04-22 14:48:01 -0500258 xpc_prot_vec[node] = (u64)HUB_L((u64 *)
259 GLOBAL_MMR_ADDR
260 (nasid,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500261 SH1_MD_DQLP_MMR_DIR_PRIVEC0));
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500262 HUB_S((u64 *)
263 GLOBAL_MMR_ADDR(nasid,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500264 SH1_MD_DQLP_MMR_DIR_PRIVEC0),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500265 -1UL);
266 HUB_S((u64 *)
267 GLOBAL_MMR_ADDR(nasid,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500268 SH1_MD_DQRP_MMR_DIR_PRIVEC0),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500269 -1UL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700270 }
271 }
272 }
273}
274
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700275/*
276 * Restrict protections to disallow IPI operations (and AMO operations on
277 * Shub 1.1 systems).
278 */
279void
280xpc_restrict_IPI_ops(void)
281{
282 int node;
283 int nasid;
284
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500285 /* >>> Change SH_IPI_ACCESS code to use SAL call once it is available */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700286
287 if (is_shub2()) {
288
289 for_each_online_node(node) {
290 nasid = cnodeid_to_nasid(node);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500291 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 Nelson89eb8eb2005-03-23 19:50:00 -0700299 }
300
301 } else {
302
303 for_each_online_node(node) {
304 nasid = cnodeid_to_nasid(node);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500305 HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS),
306 xpc_sh1_IPI_access);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700307
308 if (enable_shub_wars_1_1()) {
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500309 HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500310 SH1_MD_DQLP_MMR_DIR_PRIVEC0),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500311 xpc_prot_vec[node]);
312 HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid,
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500313 SH1_MD_DQRP_MMR_DIR_PRIVEC0),
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500314 xpc_prot_vec[node]);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700315 }
316 }
317 }
318}
319
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700320/*
321 * At periodic intervals, scan through all active partitions and ensure
322 * their heartbeat is still active. If not, the partition is deactivated.
323 */
324void
325xpc_check_remote_hb(void)
326{
327 struct xpc_vars *remote_vars;
328 struct xpc_partition *part;
Dean Nelson64d032b2008-05-12 14:02:03 -0700329 short partid;
Dean Nelson908787d2008-07-29 22:34:05 -0700330 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700331
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500332 remote_vars = (struct xpc_vars *)xpc_remote_copy_buffer;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700333
Dean Nelsonbc63d382008-07-29 22:34:04 -0700334 for (partid = 0; partid < xp_max_npartitions; partid++) {
Dean Nelsona607c382005-09-01 14:01:37 -0500335
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500336 if (xpc_exiting)
Dean Nelsona607c382005-09-01 14:01:37 -0500337 break;
Dean Nelsona607c382005-09-01 14:01:37 -0500338
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500339 if (partid == sn_partition_id)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700340 continue;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700341
342 part = &xpc_partitions[partid];
343
344 if (part->act_state == XPC_P_INACTIVE ||
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500345 part->act_state == XPC_P_DEACTIVATING) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700346 continue;
347 }
348
349 /* pull the remote_hb cache line */
Dean Nelson908787d2008-07-29 22:34:05 -0700350 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 Nelson89eb8eb2005-03-23 19:50:00 -0700355 continue;
356 }
357
358 dev_dbg(xpc_part, "partid = %d, heartbeat = %ld, last_heartbeat"
Dean Nelson780d09e2005-11-09 14:41:57 -0600359 " = %ld, heartbeat_offline = %ld, HB_mask = 0x%lx\n",
360 partid, remote_vars->heartbeat, part->last_heartbeat,
361 remote_vars->heartbeat_offline,
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700362 remote_vars->heartbeating_to_mask);
363
364 if (((remote_vars->heartbeat == part->last_heartbeat) &&
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500365 (remote_vars->heartbeat_offline == 0)) ||
366 !xpc_hb_allowed(sn_partition_id, remote_vars)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700367
Dean Nelson65c17b82008-05-12 14:02:02 -0700368 XPC_DEACTIVATE_PARTITION(part, xpNoHeartbeat);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700369 continue;
370 }
371
372 part->last_heartbeat = remote_vars->heartbeat;
373 }
374}
375
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700376/*
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500377 * Get a copy of a portion of the remote partition's rsvd page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700378 *
379 * remote_rp points to a buffer that is cacheline aligned for BTE copies and
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500380 * is large enough to contain a copy of their reserved page header and
381 * part_nasids mask.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700382 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700383static enum xp_retval
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700384xpc_get_remote_rp(int nasid, u64 *discovered_nasids,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500385 struct xpc_rsvd_page *remote_rp, u64 *remote_rp_pa)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700386{
Dean Nelson908787d2008-07-29 22:34:05 -0700387 int i;
388 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700389
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700390 /* get the reserved page's physical address */
391
Dean Nelson27929022005-10-25 14:11:53 -0500392 *remote_rp_pa = xpc_get_rsvd_page_pa(nasid);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500393 if (*remote_rp_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -0700394 return xpNoRsvdPageAddr;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700395
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500396 /* pull over the reserved page header and part_nasids mask */
Dean Nelson908787d2008-07-29 22:34:05 -0700397 ret = xp_remote_memcpy(remote_rp, (void *)*remote_rp_pa,
Dean Nelson94bd2702008-07-29 22:34:05 -0700398 XPC_RP_HEADER_SIZE + xp_sizeof_nasid_mask);
Dean Nelson908787d2008-07-29 22:34:05 -0700399 if (ret != xpSuccess)
400 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700401
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700402 if (discovered_nasids != NULL) {
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500403 u64 *remote_part_nasids = XPC_RP_PART_NASIDS(remote_rp);
404
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500405 for (i = 0; i < xp_nasid_mask_words; i++)
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500406 discovered_nasids[i] |= remote_part_nasids[i];
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700407 }
408
Dean Nelson94bd2702008-07-29 22:34:05 -0700409 /* check that the partid is valid and is for another partition */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700410
Dean Nelson94bd2702008-07-29 22:34:05 -0700411 if (remote_rp->SAL_partid < 0 ||
412 remote_rp->SAL_partid >= xp_max_npartitions) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700413 return xpInvalidPartid;
Dean Nelson94bd2702008-07-29 22:34:05 -0700414 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700415
Dean Nelson94bd2702008-07-29 22:34:05 -0700416 if (remote_rp->SAL_partid == sn_partition_id)
Dean Nelson65c17b82008-05-12 14:02:02 -0700417 return xpLocalPartid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700418
Dean Nelson94bd2702008-07-29 22:34:05 -0700419 /* 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 Nelson89eb8eb2005-03-23 19:50:00 -0700423 if (XPC_VERSION_MAJOR(remote_rp->version) !=
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500424 XPC_VERSION_MAJOR(XPC_RP_VERSION)) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700425 return xpBadVersion;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700426 }
427
Dean Nelson94bd2702008-07-29 22:34:05 -0700428 if (remote_rp->max_npartitions <= sn_partition_id)
429 return xpInvalidPartid;
430
Dean Nelson65c17b82008-05-12 14:02:02 -0700431 return xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700432}
433
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700434/*
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500435 * Get a copy of the remote partition's XPC variables from the reserved page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700436 *
437 * remote_vars points to a buffer that is cacheline aligned for BTE copies and
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500438 * assumed to be of size XPC_RP_VARS_SIZE.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700439 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700440static enum xp_retval
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700441xpc_get_remote_vars(u64 remote_vars_pa, struct xpc_vars *remote_vars)
442{
Dean Nelson908787d2008-07-29 22:34:05 -0700443 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700444
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500445 if (remote_vars_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -0700446 return xpVarsNotSet;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700447
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700448 /* pull over the cross partition variables */
Dean Nelson908787d2008-07-29 22:34:05 -0700449 ret = xp_remote_memcpy(remote_vars, (void *)remote_vars_pa,
450 XPC_RP_VARS_SIZE);
451 if (ret != xpSuccess)
452 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700453
454 if (XPC_VERSION_MAJOR(remote_vars->version) !=
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500455 XPC_VERSION_MAJOR(XPC_V_VERSION)) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700456 return xpBadVersion;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700457 }
458
Dean Nelson65c17b82008-05-12 14:02:02 -0700459 return xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700460}
461
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700462/*
Dean Nelsona607c382005-09-01 14:01:37 -0500463 * Update the remote partition's info.
464 */
465static void
466xpc_update_partition_info(struct xpc_partition *part, u8 remote_rp_version,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500467 struct timespec *remote_rp_stamp, u64 remote_rp_pa,
468 u64 remote_vars_pa, struct xpc_vars *remote_vars)
Dean Nelsona607c382005-09-01 14:01:37 -0500469{
470 part->remote_rp_version = remote_rp_version;
Tony Luckb9ae3bd2007-05-10 11:47:38 -0700471 dev_dbg(xpc_part, " remote_rp_version = 0x%016x\n",
Dean Nelsona607c382005-09-01 14:01:37 -0500472 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
489 part->remote_vars_part_pa = remote_vars->vars_part_pa;
490 dev_dbg(xpc_part, " remote_vars_part_pa = 0x%016lx\n",
491 part->remote_vars_part_pa);
492
493 part->remote_act_nasid = remote_vars->act_nasid;
494 dev_dbg(xpc_part, " remote_act_nasid = 0x%x\n",
495 part->remote_act_nasid);
496
497 part->remote_act_phys_cpuid = remote_vars->act_phys_cpuid;
498 dev_dbg(xpc_part, " remote_act_phys_cpuid = 0x%x\n",
499 part->remote_act_phys_cpuid);
500
501 part->remote_amos_page_pa = remote_vars->amos_page_pa;
502 dev_dbg(xpc_part, " remote_amos_page_pa = 0x%lx\n",
503 part->remote_amos_page_pa);
504
505 part->remote_vars_version = remote_vars->version;
506 dev_dbg(xpc_part, " remote_vars_version = 0x%x\n",
507 part->remote_vars_version);
508}
509
Dean Nelsona607c382005-09-01 14:01:37 -0500510/*
Dean Nelsone54af722005-10-25 14:07:43 -0500511 * Prior code has determined the nasid which generated an IPI. Inspect
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700512 * that nasid to determine if its partition needs to be activated or
513 * deactivated.
514 *
515 * A partition is consider "awaiting activation" if our partition
516 * flags indicate it is not active and it has a heartbeat. A
517 * partition is considered "awaiting deactivation" if our partition
518 * flags indicate it is active but it has no heartbeat or it is not
519 * sending its heartbeat to us.
520 *
521 * To determine the heartbeat, the remote nasid must have a properly
522 * initialized reserved page.
523 */
524static void
525xpc_identify_act_IRQ_req(int nasid)
526{
527 struct xpc_rsvd_page *remote_rp;
528 struct xpc_vars *remote_vars;
Dean Nelsona607c382005-09-01 14:01:37 -0500529 u64 remote_rp_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700530 u64 remote_vars_pa;
Dean Nelsona607c382005-09-01 14:01:37 -0500531 int remote_rp_version;
532 int reactivate = 0;
533 int stamp_diff;
Dean Nelson94bd2702008-07-29 22:34:05 -0700534 struct timespec remote_rp_stamp = { 0, 0 }; /*>>> ZERO_STAMP */
Dean Nelson64d032b2008-05-12 14:02:03 -0700535 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700536 struct xpc_partition *part;
Dean Nelson65c17b82008-05-12 14:02:02 -0700537 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700538
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700539 /* pull over the reserved page structure */
540
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500541 remote_rp = (struct xpc_rsvd_page *)xpc_remote_copy_buffer;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700542
Dean Nelsona607c382005-09-01 14:01:37 -0500543 ret = xpc_get_remote_rp(nasid, NULL, remote_rp, &remote_rp_pa);
Dean Nelson65c17b82008-05-12 14:02:02 -0700544 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700545 dev_warn(xpc_part, "unable to get reserved page from nasid %d, "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500546 "which sent interrupt, reason=%d\n", nasid, ret);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700547 return;
548 }
549
Dean Nelson94bd2702008-07-29 22:34:05 -0700550 remote_vars_pa = remote_rp->sn.vars_pa;
Dean Nelsona607c382005-09-01 14:01:37 -0500551 remote_rp_version = remote_rp->version;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500552 if (XPC_SUPPORTS_RP_STAMP(remote_rp_version))
Dean Nelsona607c382005-09-01 14:01:37 -0500553 remote_rp_stamp = remote_rp->stamp;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500554
Dean Nelson94bd2702008-07-29 22:34:05 -0700555 partid = remote_rp->SAL_partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700556 part = &xpc_partitions[partid];
557
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700558 /* pull over the cross partition variables */
559
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500560 remote_vars = (struct xpc_vars *)xpc_remote_copy_buffer;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700561
562 ret = xpc_get_remote_vars(remote_vars_pa, remote_vars);
Dean Nelson65c17b82008-05-12 14:02:02 -0700563 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700564
565 dev_warn(xpc_part, "unable to get XPC variables from nasid %d, "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500566 "which sent interrupt, reason=%d\n", nasid, ret);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700567
568 XPC_DEACTIVATE_PARTITION(part, ret);
569 return;
570 }
571
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700572 part->act_IRQ_rcvd++;
573
574 dev_dbg(xpc_part, "partid for nasid %d is %d; IRQs = %d; HB = "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500575 "%ld:0x%lx\n", (int)nasid, (int)partid, part->act_IRQ_rcvd,
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700576 remote_vars->heartbeat, remote_vars->heartbeating_to_mask);
577
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500578 if (xpc_partition_disengaged(part) &&
579 part->act_state == XPC_P_INACTIVE) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700580
Dean Nelsona607c382005-09-01 14:01:37 -0500581 xpc_update_partition_info(part, remote_rp_version,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500582 &remote_rp_stamp, remote_rp_pa,
583 remote_vars_pa, remote_vars);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700584
Dean Nelsona607c382005-09-01 14:01:37 -0500585 if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version)) {
586 if (xpc_partition_disengage_requested(1UL << partid)) {
587 /*
588 * Other side is waiting on us to disengage,
589 * even though we already have.
590 */
591 return;
592 }
593 } else {
594 /* other side doesn't support disengage requests */
595 xpc_clear_partition_disengage_request(1UL << partid);
596 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700597
598 xpc_activate_partition(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500599 return;
600 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700601
Dean Nelsona607c382005-09-01 14:01:37 -0500602 DBUG_ON(part->remote_rp_version == 0);
603 DBUG_ON(part->remote_vars_version == 0);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700604
Dean Nelsona607c382005-09-01 14:01:37 -0500605 if (!XPC_SUPPORTS_RP_STAMP(part->remote_rp_version)) {
606 DBUG_ON(XPC_SUPPORTS_DISENGAGE_REQUEST(part->
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500607 remote_vars_version));
Dean Nelsona607c382005-09-01 14:01:37 -0500608
609 if (!XPC_SUPPORTS_RP_STAMP(remote_rp_version)) {
610 DBUG_ON(XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500611 version));
Dean Nelsona607c382005-09-01 14:01:37 -0500612 /* see if the other side rebooted */
613 if (part->remote_amos_page_pa ==
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500614 remote_vars->amos_page_pa &&
615 xpc_hb_allowed(sn_partition_id, remote_vars)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500616 /* doesn't look that way, so ignore the IPI */
617 return;
618 }
619 }
620
621 /*
622 * Other side rebooted and previous XPC didn't support the
623 * disengage request, so we don't need to do anything special.
624 */
625
626 xpc_update_partition_info(part, remote_rp_version,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500627 &remote_rp_stamp, remote_rp_pa,
628 remote_vars_pa, remote_vars);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700629 part->reactivate_nasid = nasid;
Dean Nelson65c17b82008-05-12 14:02:02 -0700630 XPC_DEACTIVATE_PARTITION(part, xpReactivating);
Dean Nelsona607c382005-09-01 14:01:37 -0500631 return;
632 }
633
634 DBUG_ON(!XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version));
635
636 if (!XPC_SUPPORTS_RP_STAMP(remote_rp_version)) {
637 DBUG_ON(!XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->version));
638
639 /*
640 * Other side rebooted and previous XPC did support the
641 * disengage request, but the new one doesn't.
642 */
643
644 xpc_clear_partition_engaged(1UL << partid);
645 xpc_clear_partition_disengage_request(1UL << partid);
646
647 xpc_update_partition_info(part, remote_rp_version,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500648 &remote_rp_stamp, remote_rp_pa,
649 remote_vars_pa, remote_vars);
Dean Nelsona607c382005-09-01 14:01:37 -0500650 reactivate = 1;
651
652 } else {
653 DBUG_ON(!XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->version));
654
655 stamp_diff = xpc_compare_stamps(&part->remote_rp_stamp,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500656 &remote_rp_stamp);
Dean Nelsona607c382005-09-01 14:01:37 -0500657 if (stamp_diff != 0) {
658 DBUG_ON(stamp_diff >= 0);
659
660 /*
661 * Other side rebooted and the previous XPC did support
662 * the disengage request, as does the new one.
663 */
664
665 DBUG_ON(xpc_partition_engaged(1UL << partid));
666 DBUG_ON(xpc_partition_disengage_requested(1UL <<
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500667 partid));
Dean Nelsona607c382005-09-01 14:01:37 -0500668
669 xpc_update_partition_info(part, remote_rp_version,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500670 &remote_rp_stamp,
671 remote_rp_pa, remote_vars_pa,
672 remote_vars);
Dean Nelsona607c382005-09-01 14:01:37 -0500673 reactivate = 1;
674 }
675 }
676
Dean Nelson246c7e32005-12-22 14:32:56 -0600677 if (part->disengage_request_timeout > 0 &&
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500678 !xpc_partition_disengaged(part)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500679 /* still waiting on other side to disengage from us */
680 return;
681 }
682
683 if (reactivate) {
684 part->reactivate_nasid = nasid;
Dean Nelson65c17b82008-05-12 14:02:02 -0700685 XPC_DEACTIVATE_PARTITION(part, xpReactivating);
Dean Nelsona607c382005-09-01 14:01:37 -0500686
687 } else if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version) &&
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500688 xpc_partition_disengage_requested(1UL << partid)) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700689 XPC_DEACTIVATE_PARTITION(part, xpOtherGoingDown);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700690 }
691}
692
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700693/*
694 * Loop through the activation AMO variables and process any bits
695 * which are set. Each bit indicates a nasid sending a partition
696 * activation or deactivation request.
697 *
698 * Return #of IRQs detected.
699 */
700int
701xpc_identify_act_IRQ_sender(void)
702{
703 int word, bit;
704 u64 nasid_mask;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500705 u64 nasid; /* remote nasid */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700706 int n_IRQs_detected = 0;
707 AMO_t *act_amos;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700708
Dean Nelsona607c382005-09-01 14:01:37 -0500709 act_amos = xpc_vars->amos_page + XPC_ACTIVATE_IRQ_AMOS;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700710
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700711 /* scan through act AMO variable looking for non-zero entries */
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500712 for (word = 0; word < xp_nasid_mask_words; word++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700713
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500714 if (xpc_exiting)
Dean Nelsona607c382005-09-01 14:01:37 -0500715 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700716
717 nasid_mask = xpc_IPI_receive(&act_amos[word]);
718 if (nasid_mask == 0) {
719 /* no IRQs from nasids in this variable */
720 continue;
721 }
722
723 dev_dbg(xpc_part, "AMO[%d] gave back 0x%lx\n", word,
724 nasid_mask);
725
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700726 /*
727 * If this nasid has been added to the machine since
728 * our partition was reset, this will retain the
729 * remote nasid in our reserved pages machine mask.
730 * This is used in the event of module reload.
731 */
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500732 xpc_mach_nasids[word] |= nasid_mask;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700733
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700734 /* locate the nasid(s) which sent interrupts */
735
736 for (bit = 0; bit < (8 * sizeof(u64)); bit++) {
737 if (nasid_mask & (1UL << bit)) {
738 n_IRQs_detected++;
739 nasid = XPC_NASID_FROM_W_B(word, bit);
740 dev_dbg(xpc_part, "interrupt from nasid %ld\n",
741 nasid);
742 xpc_identify_act_IRQ_req(nasid);
743 }
744 }
745 }
746 return n_IRQs_detected;
747}
748
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700749/*
Dean Nelsona607c382005-09-01 14:01:37 -0500750 * See if the other side has responded to a partition disengage request
751 * from us.
752 */
753int
754xpc_partition_disengaged(struct xpc_partition *part)
755{
Dean Nelson64d032b2008-05-12 14:02:03 -0700756 short partid = XPC_PARTID(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500757 int disengaged;
758
Dean Nelsona607c382005-09-01 14:01:37 -0500759 disengaged = (xpc_partition_engaged(1UL << partid) == 0);
760 if (part->disengage_request_timeout) {
761 if (!disengaged) {
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500762 if (time_before(jiffies,
763 part->disengage_request_timeout)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500764 /* timelimit hasn't been reached yet */
765 return 0;
766 }
767
768 /*
769 * Other side hasn't responded to our disengage
770 * request in a timely fashion, so assume it's dead.
771 */
772
Dean Nelson1ecaded2006-01-06 09:48:21 -0600773 dev_info(xpc_part, "disengage from remote partition %d "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500774 "timed out\n", partid);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600775 xpc_disengage_request_timedout = 1;
Dean Nelsona607c382005-09-01 14:01:37 -0500776 xpc_clear_partition_engaged(1UL << partid);
777 disengaged = 1;
778 }
779 part->disengage_request_timeout = 0;
780
781 /* cancel the timer function, provided it's not us */
782 if (!in_interrupt()) {
783 del_singleshot_timer_sync(&part->
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500784 disengage_request_timer);
Dean Nelsona607c382005-09-01 14:01:37 -0500785 }
786
787 DBUG_ON(part->act_state != XPC_P_DEACTIVATING &&
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500788 part->act_state != XPC_P_INACTIVE);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500789 if (part->act_state != XPC_P_INACTIVE)
Dean Nelsona607c382005-09-01 14:01:37 -0500790 xpc_wakeup_channel_mgr(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500791
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500792 if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version))
Dean Nelsona607c382005-09-01 14:01:37 -0500793 xpc_cancel_partition_disengage_request(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500794 }
795 return disengaged;
796}
797
Dean Nelsona607c382005-09-01 14:01:37 -0500798/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700799 * Mark specified partition as active.
800 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700801enum xp_retval
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700802xpc_mark_partition_active(struct xpc_partition *part)
803{
804 unsigned long irq_flags;
Dean Nelson65c17b82008-05-12 14:02:02 -0700805 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700806
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700807 dev_dbg(xpc_part, "setting partition %d to ACTIVE\n", XPC_PARTID(part));
808
809 spin_lock_irqsave(&part->act_lock, irq_flags);
810 if (part->act_state == XPC_P_ACTIVATING) {
811 part->act_state = XPC_P_ACTIVE;
Dean Nelson65c17b82008-05-12 14:02:02 -0700812 ret = xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700813 } else {
Dean Nelson65c17b82008-05-12 14:02:02 -0700814 DBUG_ON(part->reason == xpSuccess);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700815 ret = part->reason;
816 }
817 spin_unlock_irqrestore(&part->act_lock, irq_flags);
818
819 return ret;
820}
821
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700822/*
823 * Notify XPC that the partition is down.
824 */
825void
826xpc_deactivate_partition(const int line, struct xpc_partition *part,
Dean Nelson65c17b82008-05-12 14:02:02 -0700827 enum xp_retval reason)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700828{
829 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700830
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700831 spin_lock_irqsave(&part->act_lock, irq_flags);
832
833 if (part->act_state == XPC_P_INACTIVE) {
834 XPC_SET_REASON(part, reason, line);
835 spin_unlock_irqrestore(&part->act_lock, irq_flags);
Dean Nelson65c17b82008-05-12 14:02:02 -0700836 if (reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700837 /* we interrupt ourselves to reactivate partition */
838 xpc_IPI_send_reactivate(part);
839 }
840 return;
841 }
842 if (part->act_state == XPC_P_DEACTIVATING) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700843 if ((part->reason == xpUnloading && reason != xpUnloading) ||
844 reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700845 XPC_SET_REASON(part, reason, line);
846 }
847 spin_unlock_irqrestore(&part->act_lock, irq_flags);
848 return;
849 }
850
851 part->act_state = XPC_P_DEACTIVATING;
852 XPC_SET_REASON(part, reason, line);
853
854 spin_unlock_irqrestore(&part->act_lock, irq_flags);
855
Dean Nelsona607c382005-09-01 14:01:37 -0500856 if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version)) {
857 xpc_request_partition_disengage(part);
858 xpc_IPI_send_disengage(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700859
Dean Nelsona607c382005-09-01 14:01:37 -0500860 /* set a timelimit on the disengage request */
861 part->disengage_request_timeout = jiffies +
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500862 (xpc_disengage_request_timelimit * HZ);
Dean Nelsona607c382005-09-01 14:01:37 -0500863 part->disengage_request_timer.expires =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500864 part->disengage_request_timeout;
Dean Nelsona607c382005-09-01 14:01:37 -0500865 add_timer(&part->disengage_request_timer);
866 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700867
Dean Nelsone54af722005-10-25 14:07:43 -0500868 dev_dbg(xpc_part, "bringing partition %d down, reason = %d\n",
869 XPC_PARTID(part), reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700870
Dean Nelsona607c382005-09-01 14:01:37 -0500871 xpc_partition_going_down(part, reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700872}
873
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700874/*
Dean Nelsona607c382005-09-01 14:01:37 -0500875 * Mark specified partition as inactive.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700876 */
877void
878xpc_mark_partition_inactive(struct xpc_partition *part)
879{
880 unsigned long irq_flags;
881
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700882 dev_dbg(xpc_part, "setting partition %d to INACTIVE\n",
883 XPC_PARTID(part));
884
885 spin_lock_irqsave(&part->act_lock, irq_flags);
886 part->act_state = XPC_P_INACTIVE;
887 spin_unlock_irqrestore(&part->act_lock, irq_flags);
888 part->remote_rp_pa = 0;
889}
890
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700891/*
892 * SAL has provided a partition and machine mask. The partition mask
893 * contains a bit for each even nasid in our partition. The machine
894 * mask contains a bit for each even nasid in the entire machine.
895 *
896 * Using those two bit arrays, we can determine which nasids are
897 * known in the machine. Each should also have a reserved page
898 * initialized if they are available for partitioning.
899 */
900void
901xpc_discovery(void)
902{
903 void *remote_rp_base;
904 struct xpc_rsvd_page *remote_rp;
905 struct xpc_vars *remote_vars;
Dean Nelsona607c382005-09-01 14:01:37 -0500906 u64 remote_rp_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700907 u64 remote_vars_pa;
908 int region;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500909 int region_size;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700910 int max_regions;
911 int nasid;
912 struct xpc_rsvd_page *rp;
Dean Nelson64d032b2008-05-12 14:02:03 -0700913 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700914 struct xpc_partition *part;
915 u64 *discovered_nasids;
Dean Nelson65c17b82008-05-12 14:02:02 -0700916 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700917
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500918 remote_rp = xpc_kmalloc_cacheline_aligned(XPC_RP_HEADER_SIZE +
Dean Nelson94bd2702008-07-29 22:34:05 -0700919 xp_sizeof_nasid_mask,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500920 GFP_KERNEL, &remote_rp_base);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500921 if (remote_rp == NULL)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700922 return;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500923
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500924 remote_vars = (struct xpc_vars *)remote_rp;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700925
Jes Sorensen7aa6ba42006-02-17 05:18:43 -0500926 discovered_nasids = kzalloc(sizeof(u64) * xp_nasid_mask_words,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500927 GFP_KERNEL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700928 if (discovered_nasids == NULL) {
929 kfree(remote_rp_base);
930 return;
931 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700932
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500933 rp = (struct xpc_rsvd_page *)xpc_rsvd_page;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700934
935 /*
936 * The term 'region' in this context refers to the minimum number of
937 * nodes that can comprise an access protection grouping. The access
938 * protection is in regards to memory, IOI and IPI.
939 */
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500940 max_regions = 64;
941 region_size = sn_region_size;
942
943 switch (region_size) {
944 case 128:
945 max_regions *= 2;
946 case 64:
947 max_regions *= 2;
948 case 32:
949 max_regions *= 2;
950 region_size = 16;
951 DBUG_ON(!is_shub2());
952 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700953
954 for (region = 0; region < max_regions; region++) {
955
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500956 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700957 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700958
959 dev_dbg(xpc_part, "searching region %d\n", region);
960
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500961 for (nasid = (region * region_size * 2);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500962 nasid < ((region + 1) * region_size * 2); nasid += 2) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700963
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500964 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700965 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700966
967 dev_dbg(xpc_part, "checking nasid %d\n", nasid);
968
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500969 if (XPC_NASID_IN_ARRAY(nasid, xpc_part_nasids)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700970 dev_dbg(xpc_part, "PROM indicates Nasid %d is "
971 "part of the local partition; skipping "
972 "region\n", nasid);
973 break;
974 }
975
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500976 if (!(XPC_NASID_IN_ARRAY(nasid, xpc_mach_nasids))) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700977 dev_dbg(xpc_part, "PROM indicates Nasid %d was "
978 "not on Numa-Link network at reset\n",
979 nasid);
980 continue;
981 }
982
983 if (XPC_NASID_IN_ARRAY(nasid, discovered_nasids)) {
984 dev_dbg(xpc_part, "Nasid %d is part of a "
985 "partition which was previously "
986 "discovered\n", nasid);
987 continue;
988 }
989
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700990 /* pull over the reserved page structure */
991
992 ret = xpc_get_remote_rp(nasid, discovered_nasids,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500993 remote_rp, &remote_rp_pa);
Dean Nelson65c17b82008-05-12 14:02:02 -0700994 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700995 dev_dbg(xpc_part, "unable to get reserved page "
996 "from nasid %d, reason=%d\n", nasid,
997 ret);
998
Dean Nelson65c17b82008-05-12 14:02:02 -0700999 if (ret == xpLocalPartid)
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001000 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001001
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001002 continue;
1003 }
1004
Dean Nelson94bd2702008-07-29 22:34:05 -07001005 remote_vars_pa = remote_rp->sn.vars_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001006
Dean Nelson94bd2702008-07-29 22:34:05 -07001007 partid = remote_rp->SAL_partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001008 part = &xpc_partitions[partid];
1009
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001010 /* pull over the cross partition variables */
1011
1012 ret = xpc_get_remote_vars(remote_vars_pa, remote_vars);
Dean Nelson65c17b82008-05-12 14:02:02 -07001013 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001014 dev_dbg(xpc_part, "unable to get XPC variables "
1015 "from nasid %d, reason=%d\n", nasid,
1016 ret);
1017
1018 XPC_DEACTIVATE_PARTITION(part, ret);
1019 continue;
1020 }
1021
1022 if (part->act_state != XPC_P_INACTIVE) {
1023 dev_dbg(xpc_part, "partition %d on nasid %d is "
1024 "already activating\n", partid, nasid);
1025 break;
1026 }
1027
1028 /*
1029 * Register the remote partition's AMOs with SAL so it
1030 * can handle and cleanup errors within that address
1031 * range should the remote partition go down. We don't
1032 * unregister this range because it is difficult to
1033 * tell when outstanding writes to the remote partition
1034 * are finished and thus when it is thus safe to
1035 * unregister. This should not result in wasted space
1036 * in the SAL xp_addr_region table because we should
1037 * get the same page for remote_act_amos_pa after
1038 * module reloads and system reboots.
1039 */
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001040 if (sn_register_xp_addr_region
1041 (remote_vars->amos_page_pa, PAGE_SIZE, 1) < 0) {
1042 dev_dbg(xpc_part,
1043 "partition %d failed to "
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001044 "register xp_addr region 0x%016lx\n",
1045 partid, remote_vars->amos_page_pa);
1046
Dean Nelson65c17b82008-05-12 14:02:02 -07001047 XPC_SET_REASON(part, xpPhysAddrRegFailed,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001048 __LINE__);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001049 break;
1050 }
1051
1052 /*
1053 * The remote nasid is valid and available.
1054 * Send an interrupt to that nasid to notify
1055 * it that we are ready to begin activation.
1056 */
1057 dev_dbg(xpc_part, "sending an interrupt to AMO 0x%lx, "
1058 "nasid %d, phys_cpuid 0x%x\n",
1059 remote_vars->amos_page_pa,
1060 remote_vars->act_nasid,
1061 remote_vars->act_phys_cpuid);
1062
Dean Nelsona607c382005-09-01 14:01:37 -05001063 if (XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001064 version)) {
Dean Nelsona607c382005-09-01 14:01:37 -05001065 part->remote_amos_page_pa =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001066 remote_vars->amos_page_pa;
Dean Nelsona607c382005-09-01 14:01:37 -05001067 xpc_mark_partition_disengaged(part);
1068 xpc_cancel_partition_disengage_request(part);
1069 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001070 xpc_IPI_send_activate(remote_vars);
1071 }
1072 }
1073
1074 kfree(discovered_nasids);
1075 kfree(remote_rp_base);
1076}
1077
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001078/*
1079 * Given a partid, get the nasids owned by that partition from the
Dean Nelson3a7d5552005-04-04 13:14:00 -07001080 * remote partition's reserved page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001081 */
Dean Nelson65c17b82008-05-12 14:02:02 -07001082enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -07001083xpc_initiate_partid_to_nasids(short partid, void *nasid_mask)
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001084{
1085 struct xpc_partition *part;
1086 u64 part_nasid_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001087
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001088 part = &xpc_partitions[partid];
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001089 if (part->remote_rp_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -07001090 return xpPartitionDown;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001091
Dean Nelson4b38fcd2005-10-25 14:09:51 -05001092 memset(nasid_mask, 0, XP_NASID_MASK_BYTES);
1093
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001094 part_nasid_pa = (u64)XPC_RP_PART_NASIDS(part->remote_rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001095
Dean Nelson908787d2008-07-29 22:34:05 -07001096 return xp_remote_memcpy(nasid_mask, (void *)part_nasid_pa,
Dean Nelson94bd2702008-07-29 22:34:05 -07001097 xp_sizeof_nasid_mask);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001098}