blob: 6722f6fe4dc7a3820dd6dda91beff08d627c7b1b [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"
Dean Nelson89eb8eb2005-03-23 19:50:00 -070021
Dean Nelson89eb8eb2005-03-23 19:50:00 -070022/* XPC is exiting flag */
23int xpc_exiting;
24
Dean Nelson4b38fcd2005-10-25 14:09:51 -050025/* this partition's reserved page pointers */
Dean Nelson89eb8eb2005-03-23 19:50:00 -070026struct xpc_rsvd_page *xpc_rsvd_page;
Dean Nelson04de7412008-07-29 22:34:14 -070027static unsigned long *xpc_part_nasids;
28unsigned long *xpc_mach_nasids;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070029
Dean Nelson04de7412008-07-29 22:34:14 -070030static int xpc_nasid_mask_nbytes; /* #of bytes in nasid mask */
31int xpc_nasid_mask_nlongs; /* #of longs in nasid mask */
Dean Nelson4b38fcd2005-10-25 14:09:51 -050032
Dean Nelsonbc63d382008-07-29 22:34:04 -070033struct xpc_partition *xpc_partitions;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070034
Dean Nelson89eb8eb2005-03-23 19:50:00 -070035/*
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050036 * Guarantee that the kmalloc'd memory is cacheline aligned.
37 */
Dean Nelson7682a4c2006-08-08 15:03:29 -050038void *
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050039xpc_kmalloc_cacheline_aligned(size_t size, gfp_t flags, void **base)
40{
41 /* see if kmalloc will give us cachline aligned memory by default */
42 *base = kmalloc(size, flags);
Dean Nelson2c2b94f2008-04-22 14:50:17 -050043 if (*base == NULL)
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050044 return NULL;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050045
46 if ((u64)*base == L1_CACHE_ALIGN((u64)*base))
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050047 return *base;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050048
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050049 kfree(*base);
50
51 /* nope, we'll have to do it ourselves */
52 *base = kmalloc(size + L1_CACHE_BYTES, flags);
Dean Nelson2c2b94f2008-04-22 14:50:17 -050053 if (*base == NULL)
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050054 return NULL;
Dean Nelson2c2b94f2008-04-22 14:50:17 -050055
Dean Nelson4a3ad2d2008-04-22 14:48:01 -050056 return (void *)L1_CACHE_ALIGN((u64)*base);
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050057}
58
Jes Sorensen7aa6ba42006-02-17 05:18:43 -050059/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -070060 * Given a nasid, get the physical address of the partition's reserved page
61 * for that nasid. This function returns 0 on any error.
62 */
Dean Nelsona812dcc2008-07-29 22:34:16 -070063static unsigned long
Dean Nelson27929022005-10-25 14:11:53 -050064xpc_get_rsvd_page_pa(int nasid)
Dean Nelson89eb8eb2005-03-23 19:50:00 -070065{
Dean Nelson908787d2008-07-29 22:34:05 -070066 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070067 u64 cookie = 0;
Dean Nelsona812dcc2008-07-29 22:34:16 -070068 unsigned long rp_pa = nasid; /* seed with nasid */
Dean Nelson261f3b42008-07-29 22:34:16 -070069 size_t len = 0;
Dean Nelsona812dcc2008-07-29 22:34:16 -070070 size_t buf_len = 0;
71 void *buf = buf;
Dean Nelson27929022005-10-25 14:11:53 -050072 void *buf_base = NULL;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070073
Dean Nelson89eb8eb2005-03-23 19:50:00 -070074 while (1) {
75
Dean Nelson5b8669d2008-07-29 22:34:18 -070076 /* !!! rp_pa will need to be _gpa on UV.
77 * ??? So do we save it into the architecture specific parts
78 * ??? of the xpc_partition structure? Do we rename this
79 * ??? function or have two versions? Rename rp_pa for UV to
80 * ??? rp_gpa?
81 */
Dean Nelson261f3b42008-07-29 22:34:16 -070082 ret = xpc_get_partition_rsvd_page_pa(buf, &cookie, &rp_pa,
83 &len);
Dean Nelson89eb8eb2005-03-23 19:50:00 -070084
Dean Nelson261f3b42008-07-29 22:34:16 -070085 dev_dbg(xpc_part, "SAL returned with ret=%d, cookie=0x%016lx, "
86 "address=0x%016lx, len=0x%016lx\n", ret,
Dean Nelsona812dcc2008-07-29 22:34:16 -070087 (unsigned long)cookie, rp_pa, len);
Dean Nelson89eb8eb2005-03-23 19:50:00 -070088
Dean Nelson261f3b42008-07-29 22:34:16 -070089 if (ret != xpNeedMoreInfo)
Dean Nelson89eb8eb2005-03-23 19:50:00 -070090 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -070091
Dean Nelsonea57f802008-07-29 22:34:14 -070092 /* !!! L1_CACHE_ALIGN() is only a sn2-bte_copy requirement */
Dean Nelson27929022005-10-25 14:11:53 -050093 if (L1_CACHE_ALIGN(len) > buf_len) {
Jesper Juhlcbf283c2006-04-20 10:11:09 -070094 kfree(buf_base);
Dean Nelson27929022005-10-25 14:11:53 -050095 buf_len = L1_CACHE_ALIGN(len);
Dean Nelsona812dcc2008-07-29 22:34:16 -070096 buf = xpc_kmalloc_cacheline_aligned(buf_len, GFP_KERNEL,
97 &buf_base);
Dean Nelson27929022005-10-25 14:11:53 -050098 if (buf_base == NULL) {
99 dev_err(xpc_part, "unable to kmalloc "
Dean Nelsona812dcc2008-07-29 22:34:16 -0700100 "len=0x%016lx\n", buf_len);
Dean Nelson261f3b42008-07-29 22:34:16 -0700101 ret = xpNoMemory;
Dean Nelson27929022005-10-25 14:11:53 -0500102 break;
103 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700104 }
105
Dean Nelsona812dcc2008-07-29 22:34:16 -0700106 ret = xp_remote_memcpy(xp_pa(buf), rp_pa, buf_len);
Dean Nelson908787d2008-07-29 22:34:05 -0700107 if (ret != xpSuccess) {
108 dev_dbg(xpc_part, "xp_remote_memcpy failed %d\n", ret);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700109 break;
110 }
111 }
112
Jesper Juhlcbf283c2006-04-20 10:11:09 -0700113 kfree(buf_base);
Dean Nelson27929022005-10-25 14:11:53 -0500114
Dean Nelson261f3b42008-07-29 22:34:16 -0700115 if (ret != xpSuccess)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700116 rp_pa = 0;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500117
Dean Nelsona812dcc2008-07-29 22:34:16 -0700118 dev_dbg(xpc_part, "reserved page at phys address 0x%016lx\n", rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700119 return rp_pa;
120}
121
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700122/*
123 * Fill the partition reserved page with the information needed by
124 * other partitions to discover we are alive and establish initial
125 * communications.
126 */
Dean Nelson5b8669d2008-07-29 22:34:18 -0700127int
Dean Nelson94bd2702008-07-29 22:34:05 -0700128xpc_setup_rsvd_page(void)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700129{
Dean Nelson5b8669d2008-07-29 22:34:18 -0700130 int ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700131 struct xpc_rsvd_page *rp;
Dean Nelsona812dcc2008-07-29 22:34:16 -0700132 unsigned long rp_pa;
Dean Nelson81fe7882008-07-29 22:34:15 -0700133 unsigned long new_ts_jiffies;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700134
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700135 /* get the local reserved page's address */
136
Dean Nelson27929022005-10-25 14:11:53 -0500137 preempt_disable();
Dean Nelson261f3b42008-07-29 22:34:16 -0700138 rp_pa = xpc_get_rsvd_page_pa(xp_cpu_to_nasid(smp_processor_id()));
Dean Nelson27929022005-10-25 14:11:53 -0500139 preempt_enable();
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700140 if (rp_pa == 0) {
141 dev_err(xpc_part, "SAL failed to locate the reserved page\n");
Dean Nelson5b8669d2008-07-29 22:34:18 -0700142 return -ESRCH;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700143 }
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500144 rp = (struct xpc_rsvd_page *)__va(rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700145
Dean Nelson94bd2702008-07-29 22:34:05 -0700146 if (rp->SAL_version < 3) {
147 /* SAL_versions < 3 had a SAL_partid defined as a u8 */
148 rp->SAL_partid &= 0xff;
149 }
Dean Nelson261f3b42008-07-29 22:34:16 -0700150 BUG_ON(rp->SAL_partid != xp_partition_id);
Dean Nelson94bd2702008-07-29 22:34:05 -0700151
152 if (rp->SAL_partid < 0 || rp->SAL_partid >= xp_max_npartitions) {
153 dev_err(xpc_part, "the reserved page's partid of %d is outside "
154 "supported range (< 0 || >= %d)\n", rp->SAL_partid,
155 xp_max_npartitions);
Dean Nelson5b8669d2008-07-29 22:34:18 -0700156 return -EINVAL;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700157 }
158
159 rp->version = XPC_RP_VERSION;
Dean Nelson94bd2702008-07-29 22:34:05 -0700160 rp->max_npartitions = xp_max_npartitions;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700161
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500162 /* establish the actual sizes of the nasid masks */
163 if (rp->SAL_version == 1) {
164 /* SAL_version 1 didn't set the nasids_size field */
Dean Nelson94bd2702008-07-29 22:34:05 -0700165 rp->SAL_nasids_size = 128;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500166 }
Dean Nelson04de7412008-07-29 22:34:14 -0700167 xpc_nasid_mask_nbytes = rp->SAL_nasids_size;
168 xpc_nasid_mask_nlongs = BITS_TO_LONGS(rp->SAL_nasids_size *
169 BITS_PER_BYTE);
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500170
171 /* setup the pointers to the various items in the reserved page */
172 xpc_part_nasids = XPC_RP_PART_NASIDS(rp);
173 xpc_mach_nasids = XPC_RP_MACH_NASIDS(rp);
Dean Nelson94bd2702008-07-29 22:34:05 -0700174
Dean Nelson5b8669d2008-07-29 22:34:18 -0700175 ret = xpc_setup_rsvd_page_sn(rp);
176 if (ret != 0)
177 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700178
179 /*
Dean Nelson94bd2702008-07-29 22:34:05 -0700180 * Set timestamp of when reserved page was setup by XPC.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700181 * This signifies to the remote partition that our reserved
182 * page is initialized.
183 */
Dean Nelson81fe7882008-07-29 22:34:15 -0700184 new_ts_jiffies = jiffies;
185 if (new_ts_jiffies == 0 || new_ts_jiffies == rp->ts_jiffies)
186 new_ts_jiffies++;
187 rp->ts_jiffies = new_ts_jiffies;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700188
Dean Nelson5b8669d2008-07-29 22:34:18 -0700189 xpc_rsvd_page = rp;
190 return 0;
191}
192
193void
194xpc_teardown_rsvd_page(void)
195{
196 /* a zero timestamp indicates our rsvd page is not initialized */
197 xpc_rsvd_page->ts_jiffies = 0;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700198}
199
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700200/*
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500201 * Get a copy of a portion of the remote partition's rsvd page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700202 *
203 * remote_rp points to a buffer that is cacheline aligned for BTE copies and
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500204 * is large enough to contain a copy of their reserved page header and
205 * part_nasids mask.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700206 */
Dean Nelson33ba3c72008-07-29 22:34:07 -0700207enum xp_retval
Dean Nelson04de7412008-07-29 22:34:14 -0700208xpc_get_remote_rp(int nasid, unsigned long *discovered_nasids,
Dean Nelsona812dcc2008-07-29 22:34:16 -0700209 struct xpc_rsvd_page *remote_rp, unsigned long *remote_rp_pa)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700210{
Dean Nelson04de7412008-07-29 22:34:14 -0700211 int l;
Dean Nelson908787d2008-07-29 22:34:05 -0700212 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700213
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700214 /* get the reserved page's physical address */
215
Dean Nelson27929022005-10-25 14:11:53 -0500216 *remote_rp_pa = xpc_get_rsvd_page_pa(nasid);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500217 if (*remote_rp_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -0700218 return xpNoRsvdPageAddr;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700219
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500220 /* pull over the reserved page header and part_nasids mask */
Dean Nelsona812dcc2008-07-29 22:34:16 -0700221 ret = xp_remote_memcpy(xp_pa(remote_rp), *remote_rp_pa,
Dean Nelson04de7412008-07-29 22:34:14 -0700222 XPC_RP_HEADER_SIZE + xpc_nasid_mask_nbytes);
Dean Nelson908787d2008-07-29 22:34:05 -0700223 if (ret != xpSuccess)
224 return ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700225
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700226 if (discovered_nasids != NULL) {
Dean Nelson04de7412008-07-29 22:34:14 -0700227 unsigned long *remote_part_nasids =
228 XPC_RP_PART_NASIDS(remote_rp);
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500229
Dean Nelson04de7412008-07-29 22:34:14 -0700230 for (l = 0; l < xpc_nasid_mask_nlongs; l++)
231 discovered_nasids[l] |= remote_part_nasids[l];
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700232 }
233
Dean Nelson81fe7882008-07-29 22:34:15 -0700234 /* zero timestamp indicates the reserved page has not been setup */
235 if (remote_rp->ts_jiffies == 0)
Dean Nelson94bd2702008-07-29 22:34:05 -0700236 return xpRsvdPageNotSet;
237
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700238 if (XPC_VERSION_MAJOR(remote_rp->version) !=
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500239 XPC_VERSION_MAJOR(XPC_RP_VERSION)) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700240 return xpBadVersion;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700241 }
242
Dean Nelsona47d5da2008-07-29 22:34:09 -0700243 /* check that both remote and local partids are valid for each side */
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700244 if (remote_rp->SAL_partid < 0 ||
245 remote_rp->SAL_partid >= xp_max_npartitions ||
Dean Nelson261f3b42008-07-29 22:34:16 -0700246 remote_rp->max_npartitions <= xp_partition_id) {
Dean Nelson94bd2702008-07-29 22:34:05 -0700247 return xpInvalidPartid;
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700248 }
249
Dean Nelson261f3b42008-07-29 22:34:16 -0700250 if (remote_rp->SAL_partid == xp_partition_id)
Dean Nelsonaaa3cd62008-07-29 22:34:07 -0700251 return xpLocalPartid;
Dean Nelson94bd2702008-07-29 22:34:05 -0700252
Dean Nelson65c17b82008-05-12 14:02:02 -0700253 return xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700254}
255
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700256/*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700257 * See if the other side has responded to a partition deactivate request
258 * from us. Though we requested the remote partition to deactivate with regard
259 * to us, we really only need to wait for the other side to disengage from us.
Dean Nelsona607c382005-09-01 14:01:37 -0500260 */
261int
262xpc_partition_disengaged(struct xpc_partition *part)
263{
Dean Nelson64d032b2008-05-12 14:02:03 -0700264 short partid = XPC_PARTID(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500265 int disengaged;
266
Dean Nelsona47d5da2008-07-29 22:34:09 -0700267 disengaged = !xpc_partition_engaged(partid);
268 if (part->disengage_timeout) {
Dean Nelsona607c382005-09-01 14:01:37 -0500269 if (!disengaged) {
Dean Nelsona47d5da2008-07-29 22:34:09 -0700270 if (time_is_after_jiffies(part->disengage_timeout)) {
Dean Nelsona607c382005-09-01 14:01:37 -0500271 /* timelimit hasn't been reached yet */
272 return 0;
273 }
274
275 /*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700276 * Other side hasn't responded to our deactivate
Dean Nelsona607c382005-09-01 14:01:37 -0500277 * request in a timely fashion, so assume it's dead.
278 */
279
Dean Nelsona47d5da2008-07-29 22:34:09 -0700280 dev_info(xpc_part, "deactivate request to remote "
281 "partition %d timed out\n", partid);
282 xpc_disengage_timedout = 1;
283 xpc_assume_partition_disengaged(partid);
Dean Nelsona607c382005-09-01 14:01:37 -0500284 disengaged = 1;
285 }
Dean Nelsona47d5da2008-07-29 22:34:09 -0700286 part->disengage_timeout = 0;
Dean Nelsona607c382005-09-01 14:01:37 -0500287
288 /* cancel the timer function, provided it's not us */
Dean Nelsona47d5da2008-07-29 22:34:09 -0700289 if (!in_interrupt())
290 del_singleshot_timer_sync(&part->disengage_timer);
Dean Nelsona607c382005-09-01 14:01:37 -0500291
Dean Nelson83469b52008-07-29 22:34:18 -0700292 DBUG_ON(part->act_state != XPC_P_AS_DEACTIVATING &&
293 part->act_state != XPC_P_AS_INACTIVE);
294 if (part->act_state != XPC_P_AS_INACTIVE)
Dean Nelsona607c382005-09-01 14:01:37 -0500295 xpc_wakeup_channel_mgr(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500296
Dean Nelsona47d5da2008-07-29 22:34:09 -0700297 xpc_cancel_partition_deactivation_request(part);
Dean Nelsona607c382005-09-01 14:01:37 -0500298 }
299 return disengaged;
300}
301
Dean Nelsona607c382005-09-01 14:01:37 -0500302/*
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700303 * Mark specified partition as active.
304 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700305enum xp_retval
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700306xpc_mark_partition_active(struct xpc_partition *part)
307{
308 unsigned long irq_flags;
Dean Nelson65c17b82008-05-12 14:02:02 -0700309 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700310
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700311 dev_dbg(xpc_part, "setting partition %d to ACTIVE\n", XPC_PARTID(part));
312
313 spin_lock_irqsave(&part->act_lock, irq_flags);
Dean Nelson83469b52008-07-29 22:34:18 -0700314 if (part->act_state == XPC_P_AS_ACTIVATING) {
315 part->act_state = XPC_P_AS_ACTIVE;
Dean Nelson65c17b82008-05-12 14:02:02 -0700316 ret = xpSuccess;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700317 } else {
Dean Nelson65c17b82008-05-12 14:02:02 -0700318 DBUG_ON(part->reason == xpSuccess);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700319 ret = part->reason;
320 }
321 spin_unlock_irqrestore(&part->act_lock, irq_flags);
322
323 return ret;
324}
325
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700326/*
Dean Nelsona47d5da2008-07-29 22:34:09 -0700327 * Start the process of deactivating the specified partition.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700328 */
329void
330xpc_deactivate_partition(const int line, struct xpc_partition *part,
Dean Nelson65c17b82008-05-12 14:02:02 -0700331 enum xp_retval reason)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700332{
333 unsigned long irq_flags;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700334
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700335 spin_lock_irqsave(&part->act_lock, irq_flags);
336
Dean Nelson83469b52008-07-29 22:34:18 -0700337 if (part->act_state == XPC_P_AS_INACTIVE) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700338 XPC_SET_REASON(part, reason, line);
339 spin_unlock_irqrestore(&part->act_lock, irq_flags);
Dean Nelson65c17b82008-05-12 14:02:02 -0700340 if (reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700341 /* we interrupt ourselves to reactivate partition */
Dean Nelsona47d5da2008-07-29 22:34:09 -0700342 xpc_request_partition_reactivation(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700343 }
344 return;
345 }
Dean Nelson83469b52008-07-29 22:34:18 -0700346 if (part->act_state == XPC_P_AS_DEACTIVATING) {
Dean Nelson65c17b82008-05-12 14:02:02 -0700347 if ((part->reason == xpUnloading && reason != xpUnloading) ||
348 reason == xpReactivating) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700349 XPC_SET_REASON(part, reason, line);
350 }
351 spin_unlock_irqrestore(&part->act_lock, irq_flags);
352 return;
353 }
354
Dean Nelson83469b52008-07-29 22:34:18 -0700355 part->act_state = XPC_P_AS_DEACTIVATING;
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
Dean Nelsona47d5da2008-07-29 22:34:09 -0700360 /* ask remote partition to deactivate with regard to us */
361 xpc_request_partition_deactivation(part);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700362
Dean Nelsona47d5da2008-07-29 22:34:09 -0700363 /* set a timelimit on the disengage phase of the deactivation request */
364 part->disengage_timeout = jiffies + (xpc_disengage_timelimit * HZ);
365 part->disengage_timer.expires = part->disengage_timeout;
366 add_timer(&part->disengage_timer);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700367
Dean Nelsone54af722005-10-25 14:07:43 -0500368 dev_dbg(xpc_part, "bringing partition %d down, reason = %d\n",
369 XPC_PARTID(part), reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700370
Dean Nelsona607c382005-09-01 14:01:37 -0500371 xpc_partition_going_down(part, reason);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700372}
373
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700374/*
Dean Nelsona607c382005-09-01 14:01:37 -0500375 * Mark specified partition as inactive.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700376 */
377void
378xpc_mark_partition_inactive(struct xpc_partition *part)
379{
380 unsigned long irq_flags;
381
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700382 dev_dbg(xpc_part, "setting partition %d to INACTIVE\n",
383 XPC_PARTID(part));
384
385 spin_lock_irqsave(&part->act_lock, irq_flags);
Dean Nelson83469b52008-07-29 22:34:18 -0700386 part->act_state = XPC_P_AS_INACTIVE;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700387 spin_unlock_irqrestore(&part->act_lock, irq_flags);
388 part->remote_rp_pa = 0;
389}
390
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700391/*
392 * SAL has provided a partition and machine mask. The partition mask
393 * contains a bit for each even nasid in our partition. The machine
394 * mask contains a bit for each even nasid in the entire machine.
395 *
396 * Using those two bit arrays, we can determine which nasids are
397 * known in the machine. Each should also have a reserved page
398 * initialized if they are available for partitioning.
399 */
400void
401xpc_discovery(void)
402{
403 void *remote_rp_base;
404 struct xpc_rsvd_page *remote_rp;
Dean Nelsona812dcc2008-07-29 22:34:16 -0700405 unsigned long remote_rp_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700406 int region;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500407 int region_size;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700408 int max_regions;
409 int nasid;
410 struct xpc_rsvd_page *rp;
Dean Nelson04de7412008-07-29 22:34:14 -0700411 unsigned long *discovered_nasids;
Dean Nelson65c17b82008-05-12 14:02:02 -0700412 enum xp_retval ret;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700413
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500414 remote_rp = xpc_kmalloc_cacheline_aligned(XPC_RP_HEADER_SIZE +
Dean Nelson04de7412008-07-29 22:34:14 -0700415 xpc_nasid_mask_nbytes,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500416 GFP_KERNEL, &remote_rp_base);
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500417 if (remote_rp == NULL)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700418 return;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500419
Dean Nelson04de7412008-07-29 22:34:14 -0700420 discovered_nasids = kzalloc(sizeof(long) * xpc_nasid_mask_nlongs,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500421 GFP_KERNEL);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700422 if (discovered_nasids == NULL) {
423 kfree(remote_rp_base);
424 return;
425 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700426
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500427 rp = (struct xpc_rsvd_page *)xpc_rsvd_page;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700428
429 /*
430 * The term 'region' in this context refers to the minimum number of
431 * nodes that can comprise an access protection grouping. The access
432 * protection is in regards to memory, IOI and IPI.
433 */
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500434 max_regions = 64;
Dean Nelson261f3b42008-07-29 22:34:16 -0700435 region_size = xp_region_size;
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500436
437 switch (region_size) {
438 case 128:
439 max_regions *= 2;
440 case 64:
441 max_regions *= 2;
442 case 32:
443 max_regions *= 2;
444 region_size = 16;
445 DBUG_ON(!is_shub2());
446 }
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700447
448 for (region = 0; region < max_regions; region++) {
449
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500450 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700451 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700452
453 dev_dbg(xpc_part, "searching region %d\n", region);
454
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500455 for (nasid = (region * region_size * 2);
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500456 nasid < ((region + 1) * region_size * 2); nasid += 2) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700457
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500458 if (xpc_exiting)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700459 break;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700460
461 dev_dbg(xpc_part, "checking nasid %d\n", nasid);
462
Dean Nelson04de7412008-07-29 22:34:14 -0700463 if (test_bit(nasid / 2, xpc_part_nasids)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700464 dev_dbg(xpc_part, "PROM indicates Nasid %d is "
465 "part of the local partition; skipping "
466 "region\n", nasid);
467 break;
468 }
469
Dean Nelson04de7412008-07-29 22:34:14 -0700470 if (!(test_bit(nasid / 2, xpc_mach_nasids))) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700471 dev_dbg(xpc_part, "PROM indicates Nasid %d was "
472 "not on Numa-Link network at reset\n",
473 nasid);
474 continue;
475 }
476
Dean Nelson04de7412008-07-29 22:34:14 -0700477 if (test_bit(nasid / 2, discovered_nasids)) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700478 dev_dbg(xpc_part, "Nasid %d is part of a "
479 "partition which was previously "
480 "discovered\n", nasid);
481 continue;
482 }
483
Dean Nelson33ba3c72008-07-29 22:34:07 -0700484 /* pull over the rsvd page header & part_nasids mask */
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700485
486 ret = xpc_get_remote_rp(nasid, discovered_nasids,
Dean Nelson4a3ad2d2008-04-22 14:48:01 -0500487 remote_rp, &remote_rp_pa);
Dean Nelson65c17b82008-05-12 14:02:02 -0700488 if (ret != xpSuccess) {
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700489 dev_dbg(xpc_part, "unable to get reserved page "
490 "from nasid %d, reason=%d\n", nasid,
491 ret);
492
Dean Nelson65c17b82008-05-12 14:02:02 -0700493 if (ret == xpLocalPartid)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700494 break;
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500495
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700496 continue;
497 }
498
Dean Nelsona47d5da2008-07-29 22:34:09 -0700499 xpc_request_partition_activation(remote_rp,
500 remote_rp_pa, nasid);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700501 }
502 }
503
504 kfree(discovered_nasids);
505 kfree(remote_rp_base);
506}
507
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700508/*
509 * Given a partid, get the nasids owned by that partition from the
Dean Nelson3a7d5552005-04-04 13:14:00 -0700510 * remote partition's reserved page.
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700511 */
Dean Nelson65c17b82008-05-12 14:02:02 -0700512enum xp_retval
Dean Nelson64d032b2008-05-12 14:02:03 -0700513xpc_initiate_partid_to_nasids(short partid, void *nasid_mask)
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700514{
515 struct xpc_partition *part;
Dean Nelsona812dcc2008-07-29 22:34:16 -0700516 unsigned long part_nasid_pa;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700517
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700518 part = &xpc_partitions[partid];
Dean Nelson2c2b94f2008-04-22 14:50:17 -0500519 if (part->remote_rp_pa == 0)
Dean Nelson65c17b82008-05-12 14:02:02 -0700520 return xpPartitionDown;
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700521
Dean Nelson04de7412008-07-29 22:34:14 -0700522 memset(nasid_mask, 0, xpc_nasid_mask_nbytes);
Dean Nelson4b38fcd2005-10-25 14:09:51 -0500523
Dean Nelsona812dcc2008-07-29 22:34:16 -0700524 part_nasid_pa = (unsigned long)XPC_RP_PART_NASIDS(part->remote_rp_pa);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700525
Dean Nelsona812dcc2008-07-29 22:34:16 -0700526 return xp_remote_memcpy(xp_pa(nasid_mask), part_nasid_pa,
Dean Nelson04de7412008-07-29 22:34:14 -0700527 xpc_nasid_mask_nbytes);
Dean Nelson89eb8eb2005-03-23 19:50:00 -0700528}