blob: be5b7547dab45a2ab9d27b7ca9bf3f3920b65e57 [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
Dean Nelsone17d4162008-07-29 22:34:06 -0700489/* >>> remote_vars_part_pa and vars_part_pa are sn2 only!!! */
Dean Nelsona607c382005-09-01 14:01:37 -0500490 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 Nelsona607c382005-09-01 14:01:37 -0500511/*
Dean Nelsone54af722005-10-25 14:07:43 -0500512 * Prior code has determined the nasid which generated an IPI. Inspect
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700513 * 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 */
525static void
526xpc_identify_act_IRQ_req(int nasid)
527{
528 struct xpc_rsvd_page *remote_rp;
529 struct xpc_vars *remote_vars;
Dean Nelsona607c382005-09-01 14:01:37 -0500530 u64 remote_rp_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700531 u64 remote_vars_pa;
Dean Nelsona607c382005-09-01 14:01:37 -0500532 int remote_rp_version;
533 int reactivate = 0;
534 int stamp_diff;
Dean Nelson94bd2702008-07-29 22:34:05 -0700535 struct timespec remote_rp_stamp = { 0, 0 }; /*>>> ZERO_STAMP */
Dean Nelson64d032b2008-05-12 14:02:03 -0700536 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700537 struct xpc_partition *part;
Dean Nelson65c17b82008-05-12 14:02:02 -0700538 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700539
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700540 /* pull over the reserved page structure */
541
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500542 remote_rp = (struct xpc_rsvd_page *)xpc_remote_copy_buffer;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700543
Dean Nelsona607c382005-09-01 14:01:37 -0500544 ret = xpc_get_remote_rp(nasid, NULL, remote_rp, &remote_rp_pa);
Dean Nelson65c17b82008-05-12 14:02:02 -0700545 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700546 dev_warn(xpc_part, "unable to get reserved page from nasid %d, "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500547 "which sent interrupt, reason=%d\n", nasid, ret);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700548 return;
549 }
550
Dean Nelson94bd2702008-07-29 22:34:05 -0700551 remote_vars_pa = remote_rp->sn.vars_pa;
Dean Nelsona607c382005-09-01 14:01:37 -0500552 remote_rp_version = remote_rp->version;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500553 if (XPC_SUPPORTS_RP_STAMP(remote_rp_version))
Dean Nelsona607c382005-09-01 14:01:37 -0500554 remote_rp_stamp = remote_rp->stamp;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500555
Dean Nelson94bd2702008-07-29 22:34:05 -0700556 partid = remote_rp->SAL_partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700557 part = &xpc_partitions[partid];
558
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700559 /* pull over the cross partition variables */
560
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500561 remote_vars = (struct xpc_vars *)xpc_remote_copy_buffer;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700562
563 ret = xpc_get_remote_vars(remote_vars_pa, remote_vars);
Dean Nelson65c17b82008-05-12 14:02:02 -0700564 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700565
566 dev_warn(xpc_part, "unable to get XPC variables from nasid %d, "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500567 "which sent interrupt, reason=%d\n", nasid, ret);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700568
569 XPC_DEACTIVATE_PARTITION(part, ret);
570 return;
571 }
572
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700573 part->act_IRQ_rcvd++;
574
575 dev_dbg(xpc_part, "partid for nasid %d is %d; IRQs = %d; HB = "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500576 "%ld:0x%lx\n", (int)nasid, (int)partid, part->act_IRQ_rcvd,
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700577 remote_vars->heartbeat, remote_vars->heartbeating_to_mask);
578
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500579 if (xpc_partition_disengaged(part) &&
580 part->act_state == XPC_P_INACTIVE) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700581
Dean Nelsona607c382005-09-01 14:01:37 -0500582 xpc_update_partition_info(part, remote_rp_version,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500583 &remote_rp_stamp, remote_rp_pa,
584 remote_vars_pa, remote_vars);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700585
Dean Nelsona607c382005-09-01 14:01:37 -0500586 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 Nelson89eb8eb2005-03-23 19:50:00 -0700598
599 xpc_activate_partition(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500600 return;
601 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700602
Dean Nelsona607c382005-09-01 14:01:37 -0500603 DBUG_ON(part->remote_rp_version == 0);
604 DBUG_ON(part->remote_vars_version == 0);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700605
Dean Nelsona607c382005-09-01 14:01:37 -0500606 if (!XPC_SUPPORTS_RP_STAMP(part->remote_rp_version)) {
607 DBUG_ON(XPC_SUPPORTS_DISENGAGE_REQUEST(part->
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500608 remote_vars_version));
Dean Nelsona607c382005-09-01 14:01:37 -0500609
610 if (!XPC_SUPPORTS_RP_STAMP(remote_rp_version)) {
611 DBUG_ON(XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500612 version));
Dean Nelsona607c382005-09-01 14:01:37 -0500613 /* see if the other side rebooted */
614 if (part->remote_amos_page_pa ==
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500615 remote_vars->amos_page_pa &&
616 xpc_hb_allowed(sn_partition_id, remote_vars)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500617 /* 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 Nelson4a3ad2d2008-04-22 14:48:01 -0500628 &remote_rp_stamp, remote_rp_pa,
629 remote_vars_pa, remote_vars);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700630 part->reactivate_nasid = nasid;
Dean Nelson65c17b82008-05-12 14:02:02 -0700631 XPC_DEACTIVATE_PARTITION(part, xpReactivating);
Dean Nelsona607c382005-09-01 14:01:37 -0500632 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 Nelson4a3ad2d2008-04-22 14:48:01 -0500649 &remote_rp_stamp, remote_rp_pa,
650 remote_vars_pa, remote_vars);
Dean Nelsona607c382005-09-01 14:01:37 -0500651 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 Nelson4a3ad2d2008-04-22 14:48:01 -0500657 &remote_rp_stamp);
Dean Nelsona607c382005-09-01 14:01:37 -0500658 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 Nelson4a3ad2d2008-04-22 14:48:01 -0500668 partid));
Dean Nelsona607c382005-09-01 14:01:37 -0500669
670 xpc_update_partition_info(part, remote_rp_version,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500671 &remote_rp_stamp,
672 remote_rp_pa, remote_vars_pa,
673 remote_vars);
Dean Nelsona607c382005-09-01 14:01:37 -0500674 reactivate = 1;
675 }
676 }
677
Dean Nelson246c7e32005-12-22 14:32:56 -0600678 if (part->disengage_request_timeout > 0 &&
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500679 !xpc_partition_disengaged(part)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500680 /* still waiting on other side to disengage from us */
681 return;
682 }
683
684 if (reactivate) {
685 part->reactivate_nasid = nasid;
Dean Nelson65c17b82008-05-12 14:02:02 -0700686 XPC_DEACTIVATE_PARTITION(part, xpReactivating);
Dean Nelsona607c382005-09-01 14:01:37 -0500687
688 } else if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version) &&
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500689 xpc_partition_disengage_requested(1UL << partid)) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700690 XPC_DEACTIVATE_PARTITION(part, xpOtherGoingDown);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700691 }
692}
693
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700694/*
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 */
701int
702xpc_identify_act_IRQ_sender(void)
703{
704 int word, bit;
705 u64 nasid_mask;
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500706 u64 nasid; /* remote nasid */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700707 int n_IRQs_detected = 0;
708 AMO_t *act_amos;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700709
Dean Nelsona607c382005-09-01 14:01:37 -0500710 act_amos = xpc_vars->amos_page + XPC_ACTIVATE_IRQ_AMOS;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700711
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700712 /* scan through act AMO variable looking for non-zero entries */
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500713 for (word = 0; word < xp_nasid_mask_words; word++) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700714
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500715 if (xpc_exiting)
Dean Nelsona607c382005-09-01 14:01:37 -0500716 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700717
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 Nelson89eb8eb2005-03-23 19:50:00 -0700727 /*
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 Nelson4b38fcd2005-10-25 14:09:51 -0500733 xpc_mach_nasids[word] |= nasid_mask;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700734
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700735 /* 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 Nelson89eb8eb2005-03-23 19:50:00 -0700750/*
Dean Nelsona607c382005-09-01 14:01:37 -0500751 * See if the other side has responded to a partition disengage request
752 * from us.
753 */
754int
755xpc_partition_disengaged(struct xpc_partition *part)
756{
Dean Nelson64d032b2008-05-12 14:02:03 -0700757 short partid = XPC_PARTID(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500758 int disengaged;
759
Dean Nelsona607c382005-09-01 14:01:37 -0500760 disengaged = (xpc_partition_engaged(1UL << partid) == 0);
761 if (part->disengage_request_timeout) {
762 if (!disengaged) {
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500763 if (time_before(jiffies,
764 part->disengage_request_timeout)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500765 /* 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 Nelson1ecaded2006-01-06 09:48:21 -0600774 dev_info(xpc_part, "disengage from remote partition %d "
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500775 "timed out\n", partid);
Dean Nelson1ecaded2006-01-06 09:48:21 -0600776 xpc_disengage_request_timedout = 1;
Dean Nelsona607c382005-09-01 14:01:37 -0500777 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 Nelson4a3ad2d2008-04-22 14:48:01 -0500785 disengage_request_timer);
Dean Nelsona607c382005-09-01 14:01:37 -0500786 }
787
788 DBUG_ON(part->act_state != XPC_P_DEACTIVATING &&
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500789 part->act_state != XPC_P_INACTIVE);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500790 if (part->act_state != XPC_P_INACTIVE)
Dean Nelsona607c382005-09-01 14:01:37 -0500791 xpc_wakeup_channel_mgr(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500792
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500793 if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version))
Dean Nelsona607c382005-09-01 14:01:37 -0500794 xpc_cancel_partition_disengage_request(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500795 }
796 return disengaged;
797}
798
Dean Nelsona607c382005-09-01 14:01:37 -0500799/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700800 * Mark specified partition as active.
801 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700802enum xp_retval
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700803xpc_mark_partition_active(struct xpc_partition *part)
804{
805 unsigned long irq_flags;
Dean Nelson65c17b82008-05-12 14:02:02 -0700806 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700807
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700808 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 Nelson65c17b82008-05-12 14:02:02 -0700813 ret = xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700814 } else {
Dean Nelson65c17b82008-05-12 14:02:02 -0700815 DBUG_ON(part->reason == xpSuccess);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700816 ret = part->reason;
817 }
818 spin_unlock_irqrestore(&part->act_lock, irq_flags);
819
820 return ret;
821}
822
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700823/*
824 * Notify XPC that the partition is down.
825 */
826void
827xpc_deactivate_partition(const int line, struct xpc_partition *part,
Dean Nelson65c17b82008-05-12 14:02:02 -0700828 enum xp_retval reason)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700829{
830 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700831
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700832 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 Nelson65c17b82008-05-12 14:02:02 -0700837 if (reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700838 /* 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 Nelson65c17b82008-05-12 14:02:02 -0700844 if ((part->reason == xpUnloading && reason != xpUnloading) ||
845 reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700846 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 Nelsona607c382005-09-01 14:01:37 -0500857 if (XPC_SUPPORTS_DISENGAGE_REQUEST(part->remote_vars_version)) {
858 xpc_request_partition_disengage(part);
859 xpc_IPI_send_disengage(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700860
Dean Nelsona607c382005-09-01 14:01:37 -0500861 /* set a timelimit on the disengage request */
862 part->disengage_request_timeout = jiffies +
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500863 (xpc_disengage_request_timelimit * HZ);
Dean Nelsona607c382005-09-01 14:01:37 -0500864 part->disengage_request_timer.expires =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500865 part->disengage_request_timeout;
Dean Nelsona607c382005-09-01 14:01:37 -0500866 add_timer(&part->disengage_request_timer);
867 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700868
Dean Nelsone54af722005-10-25 14:07:43 -0500869 dev_dbg(xpc_part, "bringing partition %d down, reason = %d\n",
870 XPC_PARTID(part), reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700871
Dean Nelsona607c382005-09-01 14:01:37 -0500872 xpc_partition_going_down(part, reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700873}
874
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700875/*
Dean Nelsona607c382005-09-01 14:01:37 -0500876 * Mark specified partition as inactive.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700877 */
878void
879xpc_mark_partition_inactive(struct xpc_partition *part)
880{
881 unsigned long irq_flags;
882
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700883 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 Nelson89eb8eb2005-03-23 19:50:00 -0700892/*
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 */
901void
902xpc_discovery(void)
903{
904 void *remote_rp_base;
905 struct xpc_rsvd_page *remote_rp;
906 struct xpc_vars *remote_vars;
Dean Nelsona607c382005-09-01 14:01:37 -0500907 u64 remote_rp_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700908 u64 remote_vars_pa;
909 int region;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500910 int region_size;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700911 int max_regions;
912 int nasid;
913 struct xpc_rsvd_page *rp;
Dean Nelson64d032b2008-05-12 14:02:03 -0700914 short partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700915 struct xpc_partition *part;
916 u64 *discovered_nasids;
Dean Nelson65c17b82008-05-12 14:02:02 -0700917 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700918
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500919 remote_rp = xpc_kmalloc_cacheline_aligned(XPC_RP_HEADER_SIZE +
Dean Nelson94bd2702008-07-29 22:34:05 -0700920 xp_sizeof_nasid_mask,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500921 GFP_KERNEL, &remote_rp_base);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500922 if (remote_rp == NULL)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700923 return;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500924
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500925 remote_vars = (struct xpc_vars *)remote_rp;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700926
Jes Sorensen7aa6ba42006-02-17 05:18:43 -0500927 discovered_nasids = kzalloc(sizeof(u64) * xp_nasid_mask_words,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500928 GFP_KERNEL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700929 if (discovered_nasids == NULL) {
930 kfree(remote_rp_base);
931 return;
932 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700933
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500934 rp = (struct xpc_rsvd_page *)xpc_rsvd_page;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700935
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 Nelson4b38fcd2005-10-25 14:09:51 -0500941 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 Nelson89eb8eb2005-03-23 19:50:00 -0700954
955 for (region = 0; region < max_regions; region++) {
956
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500957 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700958 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700959
960 dev_dbg(xpc_part, "searching region %d\n", region);
961
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500962 for (nasid = (region * region_size * 2);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500963 nasid < ((region + 1) * region_size * 2); nasid += 2) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700964
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500965 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700966 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700967
968 dev_dbg(xpc_part, "checking nasid %d\n", nasid);
969
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500970 if (XPC_NASID_IN_ARRAY(nasid, xpc_part_nasids)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700971 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 Nelson4b38fcd2005-10-25 14:09:51 -0500977 if (!(XPC_NASID_IN_ARRAY(nasid, xpc_mach_nasids))) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700978 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 Nelson89eb8eb2005-03-23 19:50:00 -0700991 /* pull over the reserved page structure */
992
993 ret = xpc_get_remote_rp(nasid, discovered_nasids,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500994 remote_rp, &remote_rp_pa);
Dean Nelson65c17b82008-05-12 14:02:02 -0700995 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700996 dev_dbg(xpc_part, "unable to get reserved page "
997 "from nasid %d, reason=%d\n", nasid,
998 ret);
999
Dean Nelson65c17b82008-05-12 14:02:02 -07001000 if (ret == xpLocalPartid)
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001001 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001002
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001003 continue;
1004 }
1005
Dean Nelson94bd2702008-07-29 22:34:05 -07001006 remote_vars_pa = remote_rp->sn.vars_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001007
Dean Nelson94bd2702008-07-29 22:34:05 -07001008 partid = remote_rp->SAL_partid;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001009 part = &xpc_partitions[partid];
1010
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001011 /* pull over the cross partition variables */
1012
1013 ret = xpc_get_remote_vars(remote_vars_pa, remote_vars);
Dean Nelson65c17b82008-05-12 14:02:02 -07001014 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001015 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 Nelson4a3ad2d2008-04-22 14:48:01 -05001041 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 Nelson89eb8eb2005-03-23 19:50:00 -07001045 "register xp_addr region 0x%016lx\n",
1046 partid, remote_vars->amos_page_pa);
1047
Dean Nelson65c17b82008-05-12 14:02:02 -07001048 XPC_SET_REASON(part, xpPhysAddrRegFailed,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001049 __LINE__);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001050 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 Nelsona607c382005-09-01 14:01:37 -05001064 if (XPC_SUPPORTS_DISENGAGE_REQUEST(remote_vars->
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001065 version)) {
Dean Nelsona607c382005-09-01 14:01:37 -05001066 part->remote_amos_page_pa =
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001067 remote_vars->amos_page_pa;
Dean Nelsona607c382005-09-01 14:01:37 -05001068 xpc_mark_partition_disengaged(part);
1069 xpc_cancel_partition_disengage_request(part);
1070 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001071 xpc_IPI_send_activate(remote_vars);
1072 }
1073 }
1074
1075 kfree(discovered_nasids);
1076 kfree(remote_rp_base);
1077}
1078
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001079/*
1080 * Given a partid, get the nasids owned by that partition from the
Dean Nelson3a7d5552005-04-04 13:14:00 -07001081 * remote partition's reserved page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001082 */
Dean Nelson65c17b82008-05-12 14:02:02 -07001083enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -07001084xpc_initiate_partid_to_nasids(short partid, void *nasid_mask)
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001085{
1086 struct xpc_partition *part;
1087 u64 part_nasid_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001088
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001089 part = &xpc_partitions[partid];
Dean Nelson2c2b94f2008-04-22 14:50:17 -05001090 if (part->remote_rp_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -07001091 return xpPartitionDown;
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001092
Dean Nelson4b38fcd2005-10-25 14:09:51 -05001093 memset(nasid_mask, 0, XP_NASID_MASK_BYTES);
1094
Dean Nelson4a3ad2d2008-04-22 14:48:01 -05001095 part_nasid_pa = (u64)XPC_RP_PART_NASIDS(part->remote_rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001096
Dean Nelson908787d2008-07-29 22:34:05 -07001097 return xp_remote_memcpy(nasid_mask, (void *)part_nasid_pa,
Dean Nelson94bd2702008-07-29 22:34:05 -07001098 xp_sizeof_nasid_mask);
Dean Nelson89eb8eb2005-03-23 19:50:00 -07001099}