blob: 9a6268c89fddc0c49f65001941e13d045a5063a5 [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 Nelson261f3b42008-07-29 22:34:16 -070018#include <linux/device.h>
19#include <linux/hardirq.h>
Dean Nelson45d9ca42008-04-22 14:46:56 -050020#include "xpc.h"
Robin Holtc2c9f112009-12-15 16:47:56 -080021#include <asm/uv/uv_hub.h>
Dean Nelson89eb8eb2005-03-23 19:50:00 -070022
Dean Nelson89eb8eb2005-03-23 19:50:00 -070023/* XPC is exiting flag */
24int xpc_exiting;
25
Dean Nelson4b38fcd2005-10-25 14:09:51 -050026/* this partition's reserved page pointers */
Dean Nelson89eb8eb2005-03-23 19:50:00 -070027struct xpc_rsvd_page *xpc_rsvd_page;
Dean Nelson04de7412008-07-29 22:34:14 -070028static unsigned long *xpc_part_nasids;
29unsigned long *xpc_mach_nasids;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070030
Dean Nelson04de7412008-07-29 22:34:14 -070031static int xpc_nasid_mask_nbytes; /* #of bytes in nasid mask */
32int xpc_nasid_mask_nlongs; /* #of longs in nasid mask */
Dean Nelson4b38fcd2005-10-25 14:09:51 -050033
Dean Nelsonbc63d382008-07-29 22:34:04 -070034struct xpc_partition *xpc_partitions;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070035
Dean Nelson89eb8eb2005-03-23 19:50:00 -070036/*
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050037 * Guarantee that the kmalloc'd memory is cacheline aligned.
38 */
Dean Nelson7682a4c2006-08-08 15:03:29 -050039void *
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050040xpc_kmalloc_cacheline_aligned(size_t size, gfp_t flags, void **base)
41{
42 /* see if kmalloc will give us cachline aligned memory by default */
43 *base = kmalloc(size, flags);
Dean Nelson2c2b94f2008-04-22 14:50:17 -050044 if (*base == NULL)
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050045 return NULL;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050046
47 if ((u64)*base == L1_CACHE_ALIGN((u64)*base))
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050048 return *base;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050049
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050050 kfree(*base);
51
52 /* nope, we'll have to do it ourselves */
53 *base = kmalloc(size + L1_CACHE_BYTES, flags);
Dean Nelson2c2b94f2008-04-22 14:50:17 -050054 if (*base == NULL)
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050055 return NULL;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050056
Dean Nelson4a3ad2d2008-04-22 14:48:01 -050057 return (void *)L1_CACHE_ALIGN((u64)*base);
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050058}
59
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050060/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -070061 * Given a nasid, get the physical address of the partition's reserved page
62 * for that nasid. This function returns 0 on any error.
63 */
Dean Nelsona812dcc2008-07-29 22:34:16 -070064static unsigned long
Dean Nelson27929022005-10-25 14:11:53 -050065xpc_get_rsvd_page_pa(int nasid)
Dean Nelson89eb8eb2005-03-23 19:50:00 -070066{
Dean Nelson908787d2008-07-29 22:34:05 -070067 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070068 u64 cookie = 0;
Dean Nelsona812dcc2008-07-29 22:34:16 -070069 unsigned long rp_pa = nasid; /* seed with nasid */
Dean Nelson261f3b42008-07-29 22:34:16 -070070 size_t len = 0;
Dean Nelsona812dcc2008-07-29 22:34:16 -070071 size_t buf_len = 0;
72 void *buf = buf;
Dean Nelson27929022005-10-25 14:11:53 -050073 void *buf_base = NULL;
Robin Holta7665b02009-04-13 14:40:19 -070074 enum xp_retval (*get_partition_rsvd_page_pa)
75 (void *, u64 *, unsigned long *, size_t *) =
76 xpc_arch_ops.get_partition_rsvd_page_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070077
Dean Nelson89eb8eb2005-03-23 19:50:00 -070078 while (1) {
79
Dean Nelson5b8669d2008-07-29 22:34:18 -070080 /* !!! rp_pa will need to be _gpa on UV.
81 * ??? So do we save it into the architecture specific parts
82 * ??? of the xpc_partition structure? Do we rename this
83 * ??? function or have two versions? Rename rp_pa for UV to
84 * ??? rp_gpa?
85 */
Robin Holta7665b02009-04-13 14:40:19 -070086 ret = get_partition_rsvd_page_pa(buf, &cookie, &rp_pa, &len);
Dean Nelson89eb8eb2005-03-23 19:50:00 -070087
Dean Nelson261f3b42008-07-29 22:34:16 -070088 dev_dbg(xpc_part, "SAL returned with ret=%d, cookie=0x%016lx, "
89 "address=0x%016lx, len=0x%016lx\n", ret,
Dean Nelsona812dcc2008-07-29 22:34:16 -070090 (unsigned long)cookie, rp_pa, len);
Dean Nelson89eb8eb2005-03-23 19:50:00 -070091
Dean Nelson261f3b42008-07-29 22:34:16 -070092 if (ret != xpNeedMoreInfo)
Dean Nelson89eb8eb2005-03-23 19:50:00 -070093 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070094
Dean Nelsonea57f802008-07-29 22:34:14 -070095 /* !!! L1_CACHE_ALIGN() is only a sn2-bte_copy requirement */
Robin Holtc2c9f112009-12-15 16:47:56 -080096 if (is_shub())
97 len = L1_CACHE_ALIGN(len);
98
99 if (len > buf_len) {
100 if (buf_base != NULL)
101 kfree(buf_base);
Dean Nelson27929022005-10-25 14:11:53 -0500102 buf_len = L1_CACHE_ALIGN(len);
Dean Nelsona812dcc2008-07-29 22:34:16 -0700103 buf = xpc_kmalloc_cacheline_aligned(buf_len, GFP_KERNEL,
104 &buf_base);
Dean Nelson27929022005-10-25 14:11:53 -0500105 if (buf_base == NULL) {
106 dev_err(xpc_part, "unable to kmalloc "
Dean Nelsona812dcc2008-07-29 22:34:16 -0700107 "len=0x%016lx\n", buf_len);
Dean Nelson261f3b42008-07-29 22:34:16 -0700108 ret = xpNoMemory;
Dean Nelson27929022005-10-25 14:11:53 -0500109 break;
110 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700111 }
112
Robin Holtc2c9f112009-12-15 16:47:56 -0800113 ret = xp_remote_memcpy(xp_pa(buf), rp_pa, len);
Dean Nelson908787d2008-07-29 22:34:05 -0700114 if (ret != xpSuccess) {
115 dev_dbg(xpc_part, "xp_remote_memcpy failed %d\n", ret);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700116 break;
117 }
118 }
119
Jesper Juhlcbf283c2006-04-20 10:11:09 -0700120 kfree(buf_base);
Dean Nelson27929022005-10-25 14:11:53 -0500121
Dean Nelson261f3b42008-07-29 22:34:16 -0700122 if (ret != xpSuccess)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700123 rp_pa = 0;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500124
Dean Nelsona812dcc2008-07-29 22:34:16 -0700125 dev_dbg(xpc_part, "reserved page at phys address 0x%016lx\n", rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700126 return rp_pa;
127}
128
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700129/*
130 * Fill the partition reserved page with the information needed by
131 * other partitions to discover we are alive and establish initial
132 * communications.
133 */
Dean Nelson5b8669d2008-07-29 22:34:18 -0700134int
Dean Nelson94bd2702008-07-29 22:34:05 -0700135xpc_setup_rsvd_page(void)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700136{
Dean Nelson5b8669d2008-07-29 22:34:18 -0700137 int ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700138 struct xpc_rsvd_page *rp;
Dean Nelsona812dcc2008-07-29 22:34:16 -0700139 unsigned long rp_pa;
Dean Nelson81fe7882008-07-29 22:34:15 -0700140 unsigned long new_ts_jiffies;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700141
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700142 /* get the local reserved page's address */
143
Dean Nelson27929022005-10-25 14:11:53 -0500144 preempt_disable();
Dean Nelson261f3b42008-07-29 22:34:16 -0700145 rp_pa = xpc_get_rsvd_page_pa(xp_cpu_to_nasid(smp_processor_id()));
Dean Nelson27929022005-10-25 14:11:53 -0500146 preempt_enable();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700147 if (rp_pa == 0) {
148 dev_err(xpc_part, "SAL failed to locate the reserved page\n");
Dean Nelson5b8669d2008-07-29 22:34:18 -0700149 return -ESRCH;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700150 }
Robin Holtc2c9f112009-12-15 16:47:56 -0800151 rp = (struct xpc_rsvd_page *)__va(xp_socket_pa(rp_pa));
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700152
Dean Nelson94bd2702008-07-29 22:34:05 -0700153 if (rp->SAL_version < 3) {
154 /* SAL_versions < 3 had a SAL_partid defined as a u8 */
155 rp->SAL_partid &= 0xff;
156 }
Dean Nelson261f3b42008-07-29 22:34:16 -0700157 BUG_ON(rp->SAL_partid != xp_partition_id);
Dean Nelson94bd2702008-07-29 22:34:05 -0700158
159 if (rp->SAL_partid < 0 || rp->SAL_partid >= xp_max_npartitions) {
160 dev_err(xpc_part, "the reserved page's partid of %d is outside "
161 "supported range (< 0 || >= %d)\n", rp->SAL_partid,
162 xp_max_npartitions);
Dean Nelson5b8669d2008-07-29 22:34:18 -0700163 return -EINVAL;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700164 }
165
166 rp->version = XPC_RP_VERSION;
Dean Nelson94bd2702008-07-29 22:34:05 -0700167 rp->max_npartitions = xp_max_npartitions;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700168
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500169 /* establish the actual sizes of the nasid masks */
170 if (rp->SAL_version == 1) {
171 /* SAL_version 1 didn't set the nasids_size field */
Dean Nelson94bd2702008-07-29 22:34:05 -0700172 rp->SAL_nasids_size = 128;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500173 }
Dean Nelson04de7412008-07-29 22:34:14 -0700174 xpc_nasid_mask_nbytes = rp->SAL_nasids_size;
175 xpc_nasid_mask_nlongs = BITS_TO_LONGS(rp->SAL_nasids_size *
176 BITS_PER_BYTE);
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500177
178 /* setup the pointers to the various items in the reserved page */
179 xpc_part_nasids = XPC_RP_PART_NASIDS(rp);
180 xpc_mach_nasids = XPC_RP_MACH_NASIDS(rp);
Dean Nelson94bd2702008-07-29 22:34:05 -0700181
Robin Holta7665b02009-04-13 14:40:19 -0700182 ret = xpc_arch_ops.setup_rsvd_page(rp);
Dean Nelson5b8669d2008-07-29 22:34:18 -0700183 if (ret != 0)
184 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700185
186 /*
Dean Nelson94bd2702008-07-29 22:34:05 -0700187 * Set timestamp of when reserved page was setup by XPC.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700188 * This signifies to the remote partition that our reserved
189 * page is initialized.
190 */
Dean Nelson81fe7882008-07-29 22:34:15 -0700191 new_ts_jiffies = jiffies;
192 if (new_ts_jiffies == 0 || new_ts_jiffies == rp->ts_jiffies)
193 new_ts_jiffies++;
194 rp->ts_jiffies = new_ts_jiffies;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700195
Dean Nelson5b8669d2008-07-29 22:34:18 -0700196 xpc_rsvd_page = rp;
197 return 0;
198}
199
200void
201xpc_teardown_rsvd_page(void)
202{
203 /* a zero timestamp indicates our rsvd page is not initialized */
204 xpc_rsvd_page->ts_jiffies = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700205}
206
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700207/*
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500208 * Get a copy of a portion of the remote partition's rsvd page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700209 *
210 * remote_rp points to a buffer that is cacheline aligned for BTE copies and
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500211 * is large enough to contain a copy of their reserved page header and
212 * part_nasids mask.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700213 */
Dean Nelson33ba3c72008-07-29 22:34:07 -0700214enum xp_retval
Dean Nelson04de7412008-07-29 22:34:14 -0700215xpc_get_remote_rp(int nasid, unsigned long *discovered_nasids,
Dean Nelsona812dcc2008-07-29 22:34:16 -0700216 struct xpc_rsvd_page *remote_rp, unsigned long *remote_rp_pa)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700217{
Dean Nelson04de7412008-07-29 22:34:14 -0700218 int l;
Dean Nelson908787d2008-07-29 22:34:05 -0700219 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700220
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700221 /* get the reserved page's physical address */
222
Dean Nelson27929022005-10-25 14:11:53 -0500223 *remote_rp_pa = xpc_get_rsvd_page_pa(nasid);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500224 if (*remote_rp_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -0700225 return xpNoRsvdPageAddr;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700226
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500227 /* pull over the reserved page header and part_nasids mask */
Dean Nelsona812dcc2008-07-29 22:34:16 -0700228 ret = xp_remote_memcpy(xp_pa(remote_rp), *remote_rp_pa,
Dean Nelson04de7412008-07-29 22:34:14 -0700229 XPC_RP_HEADER_SIZE + xpc_nasid_mask_nbytes);
Dean Nelson908787d2008-07-29 22:34:05 -0700230 if (ret != xpSuccess)
231 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700232
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700233 if (discovered_nasids != NULL) {
Dean Nelson04de7412008-07-29 22:34:14 -0700234 unsigned long *remote_part_nasids =
235 XPC_RP_PART_NASIDS(remote_rp);
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500236
Dean Nelson04de7412008-07-29 22:34:14 -0700237 for (l = 0; l < xpc_nasid_mask_nlongs; l++)
238 discovered_nasids[l] |= remote_part_nasids[l];
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700239 }
240
Dean Nelson81fe7882008-07-29 22:34:15 -0700241 /* zero timestamp indicates the reserved page has not been setup */
242 if (remote_rp->ts_jiffies == 0)
Dean Nelson94bd2702008-07-29 22:34:05 -0700243 return xpRsvdPageNotSet;
244
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700245 if (XPC_VERSION_MAJOR(remote_rp->version) !=
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500246 XPC_VERSION_MAJOR(XPC_RP_VERSION)) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700247 return xpBadVersion;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700248 }
249
Dean Nelsona47d5da2008-07-29 22:34:09 -0700250 /* check that both remote and local partids are valid for each side */
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700251 if (remote_rp->SAL_partid < 0 ||
252 remote_rp->SAL_partid >= xp_max_npartitions ||
Dean Nelson261f3b42008-07-29 22:34:16 -0700253 remote_rp->max_npartitions <= xp_partition_id) {
Dean Nelson94bd2702008-07-29 22:34:05 -0700254 return xpInvalidPartid;
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700255 }
256
Dean Nelson261f3b42008-07-29 22:34:16 -0700257 if (remote_rp->SAL_partid == xp_partition_id)
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700258 return xpLocalPartid;
Dean Nelson94bd2702008-07-29 22:34:05 -0700259
Dean Nelson65c17b82008-05-12 14:02:02 -0700260 return xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700261}
262
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700263/*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700264 * See if the other side has responded to a partition deactivate request
265 * from us. Though we requested the remote partition to deactivate with regard
266 * to us, we really only need to wait for the other side to disengage from us.
Dean Nelsona607c382005-09-01 14:01:37 -0500267 */
268int
269xpc_partition_disengaged(struct xpc_partition *part)
270{
Dean Nelson64d032b2008-05-12 14:02:03 -0700271 short partid = XPC_PARTID(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500272 int disengaged;
273
Robin Holta7665b02009-04-13 14:40:19 -0700274 disengaged = !xpc_arch_ops.partition_engaged(partid);
Dean Nelsona47d5da2008-07-29 22:34:09 -0700275 if (part->disengage_timeout) {
Dean Nelsona607c382005-09-01 14:01:37 -0500276 if (!disengaged) {
Dean Nelsona47d5da2008-07-29 22:34:09 -0700277 if (time_is_after_jiffies(part->disengage_timeout)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500278 /* timelimit hasn't been reached yet */
279 return 0;
280 }
281
282 /*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700283 * Other side hasn't responded to our deactivate
Dean Nelsona607c382005-09-01 14:01:37 -0500284 * request in a timely fashion, so assume it's dead.
285 */
286
Dean Nelsona47d5da2008-07-29 22:34:09 -0700287 dev_info(xpc_part, "deactivate request to remote "
288 "partition %d timed out\n", partid);
289 xpc_disengage_timedout = 1;
Robin Holta7665b02009-04-13 14:40:19 -0700290 xpc_arch_ops.assume_partition_disengaged(partid);
Dean Nelsona607c382005-09-01 14:01:37 -0500291 disengaged = 1;
292 }
Dean Nelsona47d5da2008-07-29 22:34:09 -0700293 part->disengage_timeout = 0;
Dean Nelsona607c382005-09-01 14:01:37 -0500294
295 /* cancel the timer function, provided it's not us */
Dean Nelsona47d5da2008-07-29 22:34:09 -0700296 if (!in_interrupt())
297 del_singleshot_timer_sync(&part->disengage_timer);
Dean Nelsona607c382005-09-01 14:01:37 -0500298
Dean Nelson83469b52008-07-29 22:34:18 -0700299 DBUG_ON(part->act_state != XPC_P_AS_DEACTIVATING &&
300 part->act_state != XPC_P_AS_INACTIVE);
301 if (part->act_state != XPC_P_AS_INACTIVE)
Dean Nelsona607c382005-09-01 14:01:37 -0500302 xpc_wakeup_channel_mgr(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500303
Robin Holta7665b02009-04-13 14:40:19 -0700304 xpc_arch_ops.cancel_partition_deactivation_request(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500305 }
306 return disengaged;
307}
308
Dean Nelsona607c382005-09-01 14:01:37 -0500309/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700310 * Mark specified partition as active.
311 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700312enum xp_retval
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700313xpc_mark_partition_active(struct xpc_partition *part)
314{
315 unsigned long irq_flags;
Dean Nelson65c17b82008-05-12 14:02:02 -0700316 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700317
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700318 dev_dbg(xpc_part, "setting partition %d to ACTIVE\n", XPC_PARTID(part));
319
320 spin_lock_irqsave(&part->act_lock, irq_flags);
Dean Nelson83469b52008-07-29 22:34:18 -0700321 if (part->act_state == XPC_P_AS_ACTIVATING) {
322 part->act_state = XPC_P_AS_ACTIVE;
Dean Nelson65c17b82008-05-12 14:02:02 -0700323 ret = xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700324 } else {
Dean Nelson65c17b82008-05-12 14:02:02 -0700325 DBUG_ON(part->reason == xpSuccess);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700326 ret = part->reason;
327 }
328 spin_unlock_irqrestore(&part->act_lock, irq_flags);
329
330 return ret;
331}
332
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700333/*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700334 * Start the process of deactivating the specified partition.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700335 */
336void
337xpc_deactivate_partition(const int line, struct xpc_partition *part,
Dean Nelson65c17b82008-05-12 14:02:02 -0700338 enum xp_retval reason)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700339{
340 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700341
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700342 spin_lock_irqsave(&part->act_lock, irq_flags);
343
Dean Nelson83469b52008-07-29 22:34:18 -0700344 if (part->act_state == XPC_P_AS_INACTIVE) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700345 XPC_SET_REASON(part, reason, line);
346 spin_unlock_irqrestore(&part->act_lock, irq_flags);
Dean Nelson65c17b82008-05-12 14:02:02 -0700347 if (reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700348 /* we interrupt ourselves to reactivate partition */
Robin Holta7665b02009-04-13 14:40:19 -0700349 xpc_arch_ops.request_partition_reactivation(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700350 }
351 return;
352 }
Dean Nelson83469b52008-07-29 22:34:18 -0700353 if (part->act_state == XPC_P_AS_DEACTIVATING) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700354 if ((part->reason == xpUnloading && reason != xpUnloading) ||
355 reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700356 XPC_SET_REASON(part, reason, line);
357 }
358 spin_unlock_irqrestore(&part->act_lock, irq_flags);
359 return;
360 }
361
Dean Nelson83469b52008-07-29 22:34:18 -0700362 part->act_state = XPC_P_AS_DEACTIVATING;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700363 XPC_SET_REASON(part, reason, line);
364
365 spin_unlock_irqrestore(&part->act_lock, irq_flags);
366
Dean Nelsona47d5da2008-07-29 22:34:09 -0700367 /* ask remote partition to deactivate with regard to us */
Robin Holta7665b02009-04-13 14:40:19 -0700368 xpc_arch_ops.request_partition_deactivation(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700369
Dean Nelsona47d5da2008-07-29 22:34:09 -0700370 /* set a timelimit on the disengage phase of the deactivation request */
371 part->disengage_timeout = jiffies + (xpc_disengage_timelimit * HZ);
372 part->disengage_timer.expires = part->disengage_timeout;
373 add_timer(&part->disengage_timer);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700374
Dean Nelsone54af722005-10-25 14:07:43 -0500375 dev_dbg(xpc_part, "bringing partition %d down, reason = %d\n",
376 XPC_PARTID(part), reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700377
Dean Nelsona607c382005-09-01 14:01:37 -0500378 xpc_partition_going_down(part, reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700379}
380
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700381/*
Dean Nelsona607c382005-09-01 14:01:37 -0500382 * Mark specified partition as inactive.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700383 */
384void
385xpc_mark_partition_inactive(struct xpc_partition *part)
386{
387 unsigned long irq_flags;
388
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700389 dev_dbg(xpc_part, "setting partition %d to INACTIVE\n",
390 XPC_PARTID(part));
391
392 spin_lock_irqsave(&part->act_lock, irq_flags);
Dean Nelson83469b52008-07-29 22:34:18 -0700393 part->act_state = XPC_P_AS_INACTIVE;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700394 spin_unlock_irqrestore(&part->act_lock, irq_flags);
395 part->remote_rp_pa = 0;
396}
397
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700398/*
399 * SAL has provided a partition and machine mask. The partition mask
400 * contains a bit for each even nasid in our partition. The machine
401 * mask contains a bit for each even nasid in the entire machine.
402 *
403 * Using those two bit arrays, we can determine which nasids are
404 * known in the machine. Each should also have a reserved page
405 * initialized if they are available for partitioning.
406 */
407void
408xpc_discovery(void)
409{
410 void *remote_rp_base;
411 struct xpc_rsvd_page *remote_rp;
Dean Nelsona812dcc2008-07-29 22:34:16 -0700412 unsigned long remote_rp_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700413 int region;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500414 int region_size;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700415 int max_regions;
416 int nasid;
417 struct xpc_rsvd_page *rp;
Dean Nelson04de7412008-07-29 22:34:14 -0700418 unsigned long *discovered_nasids;
Dean Nelson65c17b82008-05-12 14:02:02 -0700419 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700420
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500421 remote_rp = xpc_kmalloc_cacheline_aligned(XPC_RP_HEADER_SIZE +
Dean Nelson04de7412008-07-29 22:34:14 -0700422 xpc_nasid_mask_nbytes,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500423 GFP_KERNEL, &remote_rp_base);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500424 if (remote_rp == NULL)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700425 return;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500426
Dean Nelson04de7412008-07-29 22:34:14 -0700427 discovered_nasids = kzalloc(sizeof(long) * xpc_nasid_mask_nlongs,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500428 GFP_KERNEL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700429 if (discovered_nasids == NULL) {
430 kfree(remote_rp_base);
431 return;
432 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700433
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500434 rp = (struct xpc_rsvd_page *)xpc_rsvd_page;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700435
436 /*
437 * The term 'region' in this context refers to the minimum number of
438 * nodes that can comprise an access protection grouping. The access
439 * protection is in regards to memory, IOI and IPI.
440 */
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500441 max_regions = 64;
Dean Nelson261f3b42008-07-29 22:34:16 -0700442 region_size = xp_region_size;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500443
444 switch (region_size) {
445 case 128:
446 max_regions *= 2;
447 case 64:
448 max_regions *= 2;
449 case 32:
450 max_regions *= 2;
451 region_size = 16;
452 DBUG_ON(!is_shub2());
453 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700454
455 for (region = 0; region < max_regions; region++) {
456
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500457 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700458 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700459
460 dev_dbg(xpc_part, "searching region %d\n", region);
461
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500462 for (nasid = (region * region_size * 2);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500463 nasid < ((region + 1) * region_size * 2); nasid += 2) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700464
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500465 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700466 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700467
468 dev_dbg(xpc_part, "checking nasid %d\n", nasid);
469
Dean Nelson04de7412008-07-29 22:34:14 -0700470 if (test_bit(nasid / 2, xpc_part_nasids)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700471 dev_dbg(xpc_part, "PROM indicates Nasid %d is "
472 "part of the local partition; skipping "
473 "region\n", nasid);
474 break;
475 }
476
Dean Nelson04de7412008-07-29 22:34:14 -0700477 if (!(test_bit(nasid / 2, xpc_mach_nasids))) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700478 dev_dbg(xpc_part, "PROM indicates Nasid %d was "
479 "not on Numa-Link network at reset\n",
480 nasid);
481 continue;
482 }
483
Dean Nelson04de7412008-07-29 22:34:14 -0700484 if (test_bit(nasid / 2, discovered_nasids)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700485 dev_dbg(xpc_part, "Nasid %d is part of a "
486 "partition which was previously "
487 "discovered\n", nasid);
488 continue;
489 }
490
Dean Nelson33ba3c72008-07-29 22:34:07 -0700491 /* pull over the rsvd page header & part_nasids mask */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700492
493 ret = xpc_get_remote_rp(nasid, discovered_nasids,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500494 remote_rp, &remote_rp_pa);
Dean Nelson65c17b82008-05-12 14:02:02 -0700495 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700496 dev_dbg(xpc_part, "unable to get reserved page "
497 "from nasid %d, reason=%d\n", nasid,
498 ret);
499
Dean Nelson65c17b82008-05-12 14:02:02 -0700500 if (ret == xpLocalPartid)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700501 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500502
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700503 continue;
504 }
505
Robin Holta7665b02009-04-13 14:40:19 -0700506 xpc_arch_ops.request_partition_activation(remote_rp,
Dean Nelsona47d5da2008-07-29 22:34:09 -0700507 remote_rp_pa, nasid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700508 }
509 }
510
511 kfree(discovered_nasids);
512 kfree(remote_rp_base);
513}
514
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700515/*
516 * Given a partid, get the nasids owned by that partition from the
Dean Nelson3a7d5552005-04-04 13:14:00 -0700517 * remote partition's reserved page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700518 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700519enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700520xpc_initiate_partid_to_nasids(short partid, void *nasid_mask)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700521{
522 struct xpc_partition *part;
Dean Nelsona812dcc2008-07-29 22:34:16 -0700523 unsigned long part_nasid_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700524
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700525 part = &xpc_partitions[partid];
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500526 if (part->remote_rp_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -0700527 return xpPartitionDown;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700528
Dean Nelson04de7412008-07-29 22:34:14 -0700529 memset(nasid_mask, 0, xpc_nasid_mask_nbytes);
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500530
Dean Nelsona812dcc2008-07-29 22:34:16 -0700531 part_nasid_pa = (unsigned long)XPC_RP_PART_NASIDS(part->remote_rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700532
Dean Nelsona812dcc2008-07-29 22:34:16 -0700533 return xp_remote_memcpy(xp_pa(nasid_mask), part_nasid_pa,
Dean Nelson04de7412008-07-29 22:34:14 -0700534 xpc_nasid_mask_nbytes);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700535}