xpc_partition.c 13.6 KB
Newer Older
1 2 3 4 5
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
6
 * Copyright (c) 2004-2008 Silicon Graphics, Inc.  All Rights Reserved.
7 8 9 10 11 12 13 14 15 16 17
 */

/*
 * Cross Partition Communication (XPC) partition support.
 *
 *	This is the part of XPC that detects the presence/absence of
 *	other partitions. It provides a heartbeat and monitors the
 *	heartbeats of other partitions.
 *
 */

18 19
#include <linux/device.h>
#include <linux/hardirq.h>
20
#include <linux/slab.h>
21
#include "xpc.h"
22
#include <asm/uv/uv_hub.h>
23 24 25 26

/* XPC is exiting flag */
int xpc_exiting;

27
/* this partition's reserved page pointers */
28
struct xpc_rsvd_page *xpc_rsvd_page;
29 30
static unsigned long *xpc_part_nasids;
unsigned long *xpc_mach_nasids;
31

32 33
static int xpc_nasid_mask_nbytes;	/* #of bytes in nasid mask */
int xpc_nasid_mask_nlongs;	/* #of longs in nasid mask */
34

35
struct xpc_partition *xpc_partitions;
36

37 38 39
/*
 * Guarantee that the kmalloc'd memory is cacheline aligned.
 */
40
void *
41 42 43 44
xpc_kmalloc_cacheline_aligned(size_t size, gfp_t flags, void **base)
{
	/* see if kmalloc will give us cachline aligned memory by default */
	*base = kmalloc(size, flags);
45
	if (*base == NULL)
46
		return NULL;
47 48

	if ((u64)*base == L1_CACHE_ALIGN((u64)*base))
49
		return *base;
50

51 52 53 54
	kfree(*base);

	/* nope, we'll have to do it ourselves */
	*base = kmalloc(size + L1_CACHE_BYTES, flags);
55
	if (*base == NULL)
56
		return NULL;
57

58
	return (void *)L1_CACHE_ALIGN((u64)*base);
59 60
}

61 62 63 64
/*
 * Given a nasid, get the physical address of the  partition's reserved page
 * for that nasid. This function returns 0 on any error.
 */
65
static unsigned long
66
xpc_get_rsvd_page_pa(int nasid)
67
{
68
	enum xp_retval ret;
69
	u64 cookie = 0;
70
	unsigned long rp_pa = nasid;	/* seed with nasid */
71
	size_t len = 0;
72 73
	size_t buf_len = 0;
	void *buf = buf;
74
	void *buf_base = NULL;
R
Robin Holt 已提交
75 76 77
	enum xp_retval (*get_partition_rsvd_page_pa)
		(void *, u64 *, unsigned long *, size_t *) =
		xpc_arch_ops.get_partition_rsvd_page_pa;
78 79 80

	while (1) {

81 82 83 84 85 86
		/* !!! rp_pa will need to be _gpa on UV.
		 * ??? So do we save it into the architecture specific parts
		 * ??? of the xpc_partition structure? Do we rename this
		 * ??? function or have two versions? Rename rp_pa for UV to
		 * ??? rp_gpa?
		 */
R
Robin Holt 已提交
87
		ret = get_partition_rsvd_page_pa(buf, &cookie, &rp_pa, &len);
88

89 90
		dev_dbg(xpc_part, "SAL returned with ret=%d, cookie=0x%016lx, "
			"address=0x%016lx, len=0x%016lx\n", ret,
91
			(unsigned long)cookie, rp_pa, len);
92

93
		if (ret != xpNeedMoreInfo)
94 95
			break;

96
		/* !!! L1_CACHE_ALIGN() is only a sn2-bte_copy requirement */
97 98 99 100
		if (is_shub())
			len = L1_CACHE_ALIGN(len);

		if (len > buf_len) {
101
			kfree(buf_base);
102
			buf_len = L1_CACHE_ALIGN(len);
103 104
			buf = xpc_kmalloc_cacheline_aligned(buf_len, GFP_KERNEL,
							    &buf_base);
105 106
			if (buf_base == NULL) {
				dev_err(xpc_part, "unable to kmalloc "
107
					"len=0x%016lx\n", buf_len);
108
				ret = xpNoMemory;
109 110
				break;
			}
111 112
		}

113
		ret = xp_remote_memcpy(xp_pa(buf), rp_pa, len);
114 115
		if (ret != xpSuccess) {
			dev_dbg(xpc_part, "xp_remote_memcpy failed %d\n", ret);
116 117 118 119
			break;
		}
	}

120
	kfree(buf_base);
121

122
	if (ret != xpSuccess)
123
		rp_pa = 0;
124

125
	dev_dbg(xpc_part, "reserved page at phys address 0x%016lx\n", rp_pa);
126 127 128 129 130 131 132 133
	return rp_pa;
}

/*
 * Fill the partition reserved page with the information needed by
 * other partitions to discover we are alive and establish initial
 * communications.
 */
134
int
135
xpc_setup_rsvd_page(void)
136
{
137
	int ret;
138
	struct xpc_rsvd_page *rp;
139
	unsigned long rp_pa;
140
	unsigned long new_ts_jiffies;
141 142 143

	/* get the local reserved page's address */

144
	preempt_disable();
145
	rp_pa = xpc_get_rsvd_page_pa(xp_cpu_to_nasid(smp_processor_id()));
146
	preempt_enable();
147 148
	if (rp_pa == 0) {
		dev_err(xpc_part, "SAL failed to locate the reserved page\n");
149
		return -ESRCH;
150
	}
151
	rp = (struct xpc_rsvd_page *)__va(xp_socket_pa(rp_pa));
152

153 154 155 156
	if (rp->SAL_version < 3) {
		/* SAL_versions < 3 had a SAL_partid defined as a u8 */
		rp->SAL_partid &= 0xff;
	}
157
	BUG_ON(rp->SAL_partid != xp_partition_id);
158 159 160 161 162

	if (rp->SAL_partid < 0 || rp->SAL_partid >= xp_max_npartitions) {
		dev_err(xpc_part, "the reserved page's partid of %d is outside "
			"supported range (< 0 || >= %d)\n", rp->SAL_partid,
			xp_max_npartitions);
163
		return -EINVAL;
164 165 166
	}

	rp->version = XPC_RP_VERSION;
167
	rp->max_npartitions = xp_max_npartitions;
168

169 170 171
	/* establish the actual sizes of the nasid masks */
	if (rp->SAL_version == 1) {
		/* SAL_version 1 didn't set the nasids_size field */
172
		rp->SAL_nasids_size = 128;
173
	}
174 175 176
	xpc_nasid_mask_nbytes = rp->SAL_nasids_size;
	xpc_nasid_mask_nlongs = BITS_TO_LONGS(rp->SAL_nasids_size *
					      BITS_PER_BYTE);
177 178 179 180

	/* setup the pointers to the various items in the reserved page */
	xpc_part_nasids = XPC_RP_PART_NASIDS(rp);
	xpc_mach_nasids = XPC_RP_MACH_NASIDS(rp);
181

R
Robin Holt 已提交
182
	ret = xpc_arch_ops.setup_rsvd_page(rp);
183 184
	if (ret != 0)
		return ret;
185 186

	/*
187
	 * Set timestamp of when reserved page was setup by XPC.
188 189 190
	 * This signifies to the remote partition that our reserved
	 * page is initialized.
	 */
191 192 193 194
	new_ts_jiffies = jiffies;
	if (new_ts_jiffies == 0 || new_ts_jiffies == rp->ts_jiffies)
		new_ts_jiffies++;
	rp->ts_jiffies = new_ts_jiffies;
195

196 197 198 199 200 201 202 203 204
	xpc_rsvd_page = rp;
	return 0;
}

void
xpc_teardown_rsvd_page(void)
{
	/* a zero timestamp indicates our rsvd page is not initialized */
	xpc_rsvd_page->ts_jiffies = 0;
205 206 207
}

/*
208
 * Get a copy of a portion of the remote partition's rsvd page.
209 210
 *
 * remote_rp points to a buffer that is cacheline aligned for BTE copies and
211 212
 * is large enough to contain a copy of their reserved page header and
 * part_nasids mask.
213
 */
214
enum xp_retval
215
xpc_get_remote_rp(int nasid, unsigned long *discovered_nasids,
216
		  struct xpc_rsvd_page *remote_rp, unsigned long *remote_rp_pa)
217
{
218
	int l;
219
	enum xp_retval ret;
220 221 222

	/* get the reserved page's physical address */

223
	*remote_rp_pa = xpc_get_rsvd_page_pa(nasid);
224
	if (*remote_rp_pa == 0)
225
		return xpNoRsvdPageAddr;
226

227
	/* pull over the reserved page header and part_nasids mask */
228
	ret = xp_remote_memcpy(xp_pa(remote_rp), *remote_rp_pa,
229
			       XPC_RP_HEADER_SIZE + xpc_nasid_mask_nbytes);
230 231
	if (ret != xpSuccess)
		return ret;
232 233

	if (discovered_nasids != NULL) {
234 235
		unsigned long *remote_part_nasids =
		    XPC_RP_PART_NASIDS(remote_rp);
236

237 238
		for (l = 0; l < xpc_nasid_mask_nlongs; l++)
			discovered_nasids[l] |= remote_part_nasids[l];
239 240
	}

241 242
	/* zero timestamp indicates the reserved page has not been setup */
	if (remote_rp->ts_jiffies == 0)
243 244
		return xpRsvdPageNotSet;

245
	if (XPC_VERSION_MAJOR(remote_rp->version) !=
246
	    XPC_VERSION_MAJOR(XPC_RP_VERSION)) {
247
		return xpBadVersion;
248 249
	}

250
	/* check that both remote and local partids are valid for each side */
251 252
	if (remote_rp->SAL_partid < 0 ||
	    remote_rp->SAL_partid >= xp_max_npartitions ||
253
	    remote_rp->max_npartitions <= xp_partition_id) {
254
		return xpInvalidPartid;
255 256
	}

257
	if (remote_rp->SAL_partid == xp_partition_id)
258
		return xpLocalPartid;
259

260
	return xpSuccess;
261 262
}

263
/*
264 265 266
 * See if the other side has responded to a partition deactivate request
 * from us. Though we requested the remote partition to deactivate with regard
 * to us, we really only need to wait for the other side to disengage from us.
267 268 269 270
 */
int
xpc_partition_disengaged(struct xpc_partition *part)
{
271
	short partid = XPC_PARTID(part);
272 273
	int disengaged;

R
Robin Holt 已提交
274
	disengaged = !xpc_arch_ops.partition_engaged(partid);
275
	if (part->disengage_timeout) {
276
		if (!disengaged) {
277
			if (time_is_after_jiffies(part->disengage_timeout)) {
278 279 280 281 282
				/* timelimit hasn't been reached yet */
				return 0;
			}

			/*
283
			 * Other side hasn't responded to our deactivate
284 285 286
			 * request in a timely fashion, so assume it's dead.
			 */

287 288 289
			dev_info(xpc_part, "deactivate request to remote "
				 "partition %d timed out\n", partid);
			xpc_disengage_timedout = 1;
R
Robin Holt 已提交
290
			xpc_arch_ops.assume_partition_disengaged(partid);
291 292
			disengaged = 1;
		}
293
		part->disengage_timeout = 0;
294 295

		/* cancel the timer function, provided it's not us */
296 297
		if (!in_interrupt())
			del_singleshot_timer_sync(&part->disengage_timer);
298

299 300 301
		DBUG_ON(part->act_state != XPC_P_AS_DEACTIVATING &&
			part->act_state != XPC_P_AS_INACTIVE);
		if (part->act_state != XPC_P_AS_INACTIVE)
302 303
			xpc_wakeup_channel_mgr(part);

R
Robin Holt 已提交
304
		xpc_arch_ops.cancel_partition_deactivation_request(part);
305 306 307 308
	}
	return disengaged;
}

309 310 311
/*
 * Mark specified partition as active.
 */
312
enum xp_retval
313 314 315
xpc_mark_partition_active(struct xpc_partition *part)
{
	unsigned long irq_flags;
316
	enum xp_retval ret;
317 318 319 320

	dev_dbg(xpc_part, "setting partition %d to ACTIVE\n", XPC_PARTID(part));

	spin_lock_irqsave(&part->act_lock, irq_flags);
321 322
	if (part->act_state == XPC_P_AS_ACTIVATING) {
		part->act_state = XPC_P_AS_ACTIVE;
323
		ret = xpSuccess;
324
	} else {
325
		DBUG_ON(part->reason == xpSuccess);
326 327 328 329 330 331 332 333
		ret = part->reason;
	}
	spin_unlock_irqrestore(&part->act_lock, irq_flags);

	return ret;
}

/*
334
 * Start the process of deactivating the specified partition.
335 336 337
 */
void
xpc_deactivate_partition(const int line, struct xpc_partition *part,
338
			 enum xp_retval reason)
339 340 341 342 343
{
	unsigned long irq_flags;

	spin_lock_irqsave(&part->act_lock, irq_flags);

344
	if (part->act_state == XPC_P_AS_INACTIVE) {
345 346
		XPC_SET_REASON(part, reason, line);
		spin_unlock_irqrestore(&part->act_lock, irq_flags);
347
		if (reason == xpReactivating) {
348
			/* we interrupt ourselves to reactivate partition */
R
Robin Holt 已提交
349
			xpc_arch_ops.request_partition_reactivation(part);
350 351 352
		}
		return;
	}
353
	if (part->act_state == XPC_P_AS_DEACTIVATING) {
354 355
		if ((part->reason == xpUnloading && reason != xpUnloading) ||
		    reason == xpReactivating) {
356 357 358 359 360 361
			XPC_SET_REASON(part, reason, line);
		}
		spin_unlock_irqrestore(&part->act_lock, irq_flags);
		return;
	}

362
	part->act_state = XPC_P_AS_DEACTIVATING;
363 364 365 366
	XPC_SET_REASON(part, reason, line);

	spin_unlock_irqrestore(&part->act_lock, irq_flags);

367
	/* ask remote partition to deactivate with regard to us */
R
Robin Holt 已提交
368
	xpc_arch_ops.request_partition_deactivation(part);
369

370 371 372 373
	/* set a timelimit on the disengage phase of the deactivation request */
	part->disengage_timeout = jiffies + (xpc_disengage_timelimit * HZ);
	part->disengage_timer.expires = part->disengage_timeout;
	add_timer(&part->disengage_timer);
374

375 376
	dev_dbg(xpc_part, "bringing partition %d down, reason = %d\n",
		XPC_PARTID(part), reason);
377

378
	xpc_partition_going_down(part, reason);
379 380 381
}

/*
382
 * Mark specified partition as inactive.
383 384 385 386 387 388 389 390 391 392
 */
void
xpc_mark_partition_inactive(struct xpc_partition *part)
{
	unsigned long irq_flags;

	dev_dbg(xpc_part, "setting partition %d to INACTIVE\n",
		XPC_PARTID(part));

	spin_lock_irqsave(&part->act_lock, irq_flags);
393
	part->act_state = XPC_P_AS_INACTIVE;
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
	spin_unlock_irqrestore(&part->act_lock, irq_flags);
	part->remote_rp_pa = 0;
}

/*
 * SAL has provided a partition and machine mask.  The partition mask
 * contains a bit for each even nasid in our partition.  The machine
 * mask contains a bit for each even nasid in the entire machine.
 *
 * Using those two bit arrays, we can determine which nasids are
 * known in the machine.  Each should also have a reserved page
 * initialized if they are available for partitioning.
 */
void
xpc_discovery(void)
{
	void *remote_rp_base;
	struct xpc_rsvd_page *remote_rp;
412
	unsigned long remote_rp_pa;
413
	int region;
414
	int region_size;
415 416
	int max_regions;
	int nasid;
417
	unsigned long *discovered_nasids;
418
	enum xp_retval ret;
419

420
	remote_rp = xpc_kmalloc_cacheline_aligned(XPC_RP_HEADER_SIZE +
421
						  xpc_nasid_mask_nbytes,
422
						  GFP_KERNEL, &remote_rp_base);
423
	if (remote_rp == NULL)
424
		return;
425

K
Kees Cook 已提交
426
	discovered_nasids = kcalloc(xpc_nasid_mask_nlongs, sizeof(long),
427
				    GFP_KERNEL);
428 429 430 431 432 433 434 435 436 437
	if (discovered_nasids == NULL) {
		kfree(remote_rp_base);
		return;
	}

	/*
	 * The term 'region' in this context refers to the minimum number of
	 * nodes that can comprise an access protection grouping. The access
	 * protection is in regards to memory, IOI and IPI.
	 */
438
	region_size = xp_region_size;
439

440 441 442 443 444 445 446 447
	if (is_uv())
		max_regions = 256;
	else {
		max_regions = 64;

		switch (region_size) {
		case 128:
			max_regions *= 2;
448
			/* fall through */
449 450
		case 64:
			max_regions *= 2;
451
			/* fall through */
452 453 454 455 456
		case 32:
			max_regions *= 2;
			region_size = 16;
			DBUG_ON(!is_shub2());
		}
457
	}
458 459 460

	for (region = 0; region < max_regions; region++) {

461
		if (xpc_exiting)
462 463 464 465
			break;

		dev_dbg(xpc_part, "searching region %d\n", region);

466
		for (nasid = (region * region_size * 2);
467
		     nasid < ((region + 1) * region_size * 2); nasid += 2) {
468

469
			if (xpc_exiting)
470 471 472 473
				break;

			dev_dbg(xpc_part, "checking nasid %d\n", nasid);

474
			if (test_bit(nasid / 2, xpc_part_nasids)) {
475 476 477 478 479 480
				dev_dbg(xpc_part, "PROM indicates Nasid %d is "
					"part of the local partition; skipping "
					"region\n", nasid);
				break;
			}

481
			if (!(test_bit(nasid / 2, xpc_mach_nasids))) {
482 483 484 485 486 487
				dev_dbg(xpc_part, "PROM indicates Nasid %d was "
					"not on Numa-Link network at reset\n",
					nasid);
				continue;
			}

488
			if (test_bit(nasid / 2, discovered_nasids)) {
489 490 491 492 493 494
				dev_dbg(xpc_part, "Nasid %d is part of a "
					"partition which was previously "
					"discovered\n", nasid);
				continue;
			}

495
			/* pull over the rsvd page header & part_nasids mask */
496 497

			ret = xpc_get_remote_rp(nasid, discovered_nasids,
498
						remote_rp, &remote_rp_pa);
499
			if (ret != xpSuccess) {
500 501 502 503
				dev_dbg(xpc_part, "unable to get reserved page "
					"from nasid %d, reason=%d\n", nasid,
					ret);

504
				if (ret == xpLocalPartid)
505
					break;
506

507 508 509
				continue;
			}

R
Robin Holt 已提交
510
			xpc_arch_ops.request_partition_activation(remote_rp,
511
							 remote_rp_pa, nasid);
512 513 514 515 516 517 518 519 520
		}
	}

	kfree(discovered_nasids);
	kfree(remote_rp_base);
}

/*
 * Given a partid, get the nasids owned by that partition from the
521
 * remote partition's reserved page.
522
 */
523
enum xp_retval
524
xpc_initiate_partid_to_nasids(short partid, void *nasid_mask)
525 526
{
	struct xpc_partition *part;
527
	unsigned long part_nasid_pa;
528 529

	part = &xpc_partitions[partid];
530
	if (part->remote_rp_pa == 0)
531
		return xpPartitionDown;
532

533
	memset(nasid_mask, 0, xpc_nasid_mask_nbytes);
534

535
	part_nasid_pa = (unsigned long)XPC_RP_PART_NASIDS(part->remote_rp_pa);
536

537
	return xp_remote_memcpy(xp_pa(nasid_mask), part_nasid_pa,
538
				xpc_nasid_mask_nbytes);
539
}