grumain.c 25.3 KB
Newer Older
J
Jack Steiner 已提交
1 2 3 4 5
/*
 * SN Platform GRU Driver
 *
 *            DRIVER TABLE MANAGER + GRU CONTEXT LOAD/UNLOAD
 *
J
Jack Steiner 已提交
6
 *  Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
J
Jack Steiner 已提交
7
 *
J
Jack Steiner 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
J
Jack Steiner 已提交
21 22 23 24 25 26 27 28 29
 */

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/spinlock.h>
#include <linux/sched.h>
#include <linux/device.h>
#include <linux/list.h>
30
#include <linux/err.h>
J
Jack Steiner 已提交
31 32 33 34 35
#include <asm/uv/uv_hub.h>
#include "gru.h"
#include "grutables.h"
#include "gruhandles.h"

36
unsigned long gru_options __read_mostly;
J
Jack Steiner 已提交
37 38 39 40 41 42

static struct device_driver gru_driver = {
	.name = "gru"
};

static struct device gru_device = {
43
	.init_name = "",
J
Jack Steiner 已提交
44 45 46 47 48 49 50 51 52 53 54 55
	.driver = &gru_driver,
};

struct device *grudev = &gru_device;

/*
 * Select a gru fault map to be used by the current cpu. Note that
 * multiple cpus may be using the same map.
 *	ZZZ should be inline but did not work on emulator
 */
int gru_cpu_fault_map_id(void)
{
J
Jack Steiner 已提交
56 57 58 59 60 61
	int cpu = smp_processor_id();
	int id, core;

	core = uv_cpu_core_number(cpu);
	id = core + UV_MAX_INT_CORES * uv_cpu_socket_number(cpu);
	return id;
J
Jack Steiner 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
}

/*--------- ASID Management -------------------------------------------
 *
 *  Initially, assign asids sequentially from MIN_ASID .. MAX_ASID.
 *  Once MAX is reached, flush the TLB & start over. However,
 *  some asids may still be in use. There won't be many (percentage wise) still
 *  in use. Search active contexts & determine the value of the first
 *  asid in use ("x"s below). Set "limit" to this value.
 *  This defines a block of assignable asids.
 *
 *  When "limit" is reached, search forward from limit+1 and determine the
 *  next block of assignable asids.
 *
 *  Repeat until MAX_ASID is reached, then start over again.
 *
 *  Each time MAX_ASID is reached, increment the asid generation. Since
 *  the search for in-use asids only checks contexts with GRUs currently
 *  assigned, asids in some contexts will be missed. Prior to loading
 *  a context, the asid generation of the GTS asid is rechecked. If it
 *  doesn't match the current generation, a new asid will be assigned.
 *
 *   	0---------------x------------x---------------------x----|
 *	  ^-next	^-limit	   				^-MAX_ASID
 *
 * All asid manipulation & context loading/unloading is protected by the
 * gs_lock.
 */

/* Hit the asid limit. Start over */
static int gru_wrap_asid(struct gru_state *gru)
{
94
	gru_dbg(grudev, "gid %d\n", gru->gs_gid);
J
Jack Steiner 已提交
95 96 97 98 99 100 101 102 103 104
	STAT(asid_wrap);
	gru->gs_asid_gen++;
	return MIN_ASID;
}

/* Find the next chunk of unused asids */
static int gru_reset_asid_limit(struct gru_state *gru, int asid)
{
	int i, gid, inuse_asid, limit;

105
	gru_dbg(grudev, "gid %d, asid 0x%x\n", gru->gs_gid, asid);
J
Jack Steiner 已提交
106 107 108 109
	STAT(asid_next);
	limit = MAX_ASID;
	if (asid >= limit)
		asid = gru_wrap_asid(gru);
110
	gru_flush_all_tlb(gru);
J
Jack Steiner 已提交
111 112 113
	gid = gru->gs_gid;
again:
	for (i = 0; i < GRU_NUM_CCH; i++) {
114
		if (!gru->gs_gts[i] || is_kernel_context(gru->gs_gts[i]))
J
Jack Steiner 已提交
115 116
			continue;
		inuse_asid = gru->gs_gts[i]->ts_gms->ms_asids[gid].mt_asid;
117 118 119
		gru_dbg(grudev, "gid %d, gts %p, gms %p, inuse 0x%x, cxt %d\n",
			gru->gs_gid, gru->gs_gts[i], gru->gs_gts[i]->ts_gms,
			inuse_asid, i);
J
Jack Steiner 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
		if (inuse_asid == asid) {
			asid += ASID_INC;
			if (asid >= limit) {
				/*
				 * empty range: reset the range limit and
				 * start over
				 */
				limit = MAX_ASID;
				if (asid >= MAX_ASID)
					asid = gru_wrap_asid(gru);
				goto again;
			}
		}

		if ((inuse_asid > asid) && (inuse_asid < limit))
			limit = inuse_asid;
	}
	gru->gs_asid_limit = limit;
	gru->gs_asid = asid;
139 140
	gru_dbg(grudev, "gid %d, new asid 0x%x, new_limit 0x%x\n", gru->gs_gid,
					asid, limit);
J
Jack Steiner 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153
	return asid;
}

/* Assign a new ASID to a thread context.  */
static int gru_assign_asid(struct gru_state *gru)
{
	int asid;

	gru->gs_asid += ASID_INC;
	asid = gru->gs_asid;
	if (asid >= gru->gs_asid_limit)
		asid = gru_reset_asid_limit(gru, asid);

154
	gru_dbg(grudev, "gid %d, asid 0x%x\n", gru->gs_gid, asid);
J
Jack Steiner 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167
	return asid;
}

/*
 * Clear n bits in a word. Return a word indicating the bits that were cleared.
 * Optionally, build an array of chars that contain the bit numbers allocated.
 */
static unsigned long reserve_resources(unsigned long *p, int n, int mmax,
				       char *idx)
{
	unsigned long bits = 0;
	int i;

168
	while (n--) {
J
Jack Steiner 已提交
169 170 171 172 173 174 175
		i = find_first_bit(p, mmax);
		if (i == mmax)
			BUG();
		__clear_bit(i, p);
		__set_bit(i, &bits);
		if (idx)
			*idx++ = i;
176
	}
J
Jack Steiner 已提交
177 178 179
	return bits;
}

180
unsigned long gru_reserve_cb_resources(struct gru_state *gru, int cbr_au_count,
J
Jack Steiner 已提交
181 182 183 184 185 186
				       char *cbmap)
{
	return reserve_resources(&gru->gs_cbr_map, cbr_au_count, GRU_CBR_AU,
				 cbmap);
}

187
unsigned long gru_reserve_ds_resources(struct gru_state *gru, int dsr_au_count,
J
Jack Steiner 已提交
188 189 190 191 192 193 194 195 196 197 198
				       char *dsmap)
{
	return reserve_resources(&gru->gs_dsr_map, dsr_au_count, GRU_DSR_AU,
				 dsmap);
}

static void reserve_gru_resources(struct gru_state *gru,
				  struct gru_thread_state *gts)
{
	gru->gs_active_contexts++;
	gts->ts_cbr_map =
199
	    gru_reserve_cb_resources(gru, gts->ts_cbr_au_count,
J
Jack Steiner 已提交
200 201
				     gts->ts_cbr_idx);
	gts->ts_dsr_map =
202
	    gru_reserve_ds_resources(gru, gts->ts_dsr_au_count, NULL);
J
Jack Steiner 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
}

static void free_gru_resources(struct gru_state *gru,
			       struct gru_thread_state *gts)
{
	gru->gs_active_contexts--;
	gru->gs_cbr_map |= gts->ts_cbr_map;
	gru->gs_dsr_map |= gts->ts_dsr_map;
}

/*
 * Check if a GRU has sufficient free resources to satisfy an allocation
 * request. Note: GRU locks may or may not be held when this is called. If
 * not held, recheck after acquiring the appropriate locks.
 *
 * Returns 1 if sufficient resources, 0 if not
 */
static int check_gru_resources(struct gru_state *gru, int cbr_au_count,
			       int dsr_au_count, int max_active_contexts)
{
	return hweight64(gru->gs_cbr_map) >= cbr_au_count
		&& hweight64(gru->gs_dsr_map) >= dsr_au_count
		&& gru->gs_active_contexts < max_active_contexts;
}

/*
 * TLB manangment requires tracking all GRU chiplets that have loaded a GSEG
 * context.
 */
232 233
static int gru_load_mm_tracker(struct gru_state *gru,
					struct gru_thread_state *gts)
J
Jack Steiner 已提交
234
{
235
	struct gru_mm_struct *gms = gts->ts_gms;
J
Jack Steiner 已提交
236
	struct gru_mm_tracker *asids = &gms->ms_asids[gru->gs_gid];
237
	unsigned short ctxbitmap = (1 << gts->ts_ctxnum);
J
Jack Steiner 已提交
238 239 240 241 242
	int asid;

	spin_lock(&gms->ms_asid_lock);
	asid = asids->mt_asid;

243 244 245
	spin_lock(&gru->gs_asid_lock);
	if (asid == 0 || (asids->mt_ctxbitmap == 0 && asids->mt_asid_gen !=
			  gru->gs_asid_gen)) {
J
Jack Steiner 已提交
246 247 248 249 250 251 252
		asid = gru_assign_asid(gru);
		asids->mt_asid = asid;
		asids->mt_asid_gen = gru->gs_asid_gen;
		STAT(asid_new);
	} else {
		STAT(asid_reuse);
	}
253
	spin_unlock(&gru->gs_asid_lock);
J
Jack Steiner 已提交
254 255 256 257 258 259 260 261

	BUG_ON(asids->mt_ctxbitmap & ctxbitmap);
	asids->mt_ctxbitmap |= ctxbitmap;
	if (!test_bit(gru->gs_gid, gms->ms_asidmap))
		__set_bit(gru->gs_gid, gms->ms_asidmap);
	spin_unlock(&gms->ms_asid_lock);

	gru_dbg(grudev,
262 263 264
		"gid %d, gts %p, gms %p, ctxnum %d, asid 0x%x, asidmap 0x%lx\n",
		gru->gs_gid, gts, gms, gts->ts_ctxnum, asid,
		gms->ms_asidmap[0]);
J
Jack Steiner 已提交
265 266 267 268
	return asid;
}

static void gru_unload_mm_tracker(struct gru_state *gru,
269
					struct gru_thread_state *gts)
J
Jack Steiner 已提交
270
{
271
	struct gru_mm_struct *gms = gts->ts_gms;
J
Jack Steiner 已提交
272 273 274 275
	struct gru_mm_tracker *asids;
	unsigned short ctxbitmap;

	asids = &gms->ms_asids[gru->gs_gid];
276
	ctxbitmap = (1 << gts->ts_ctxnum);
J
Jack Steiner 已提交
277
	spin_lock(&gms->ms_asid_lock);
278
	spin_lock(&gru->gs_asid_lock);
J
Jack Steiner 已提交
279 280
	BUG_ON((asids->mt_ctxbitmap & ctxbitmap) != ctxbitmap);
	asids->mt_ctxbitmap ^= ctxbitmap;
281 282
	gru_dbg(grudev, "gid %d, gts %p, gms %p, ctxnum 0x%d, asidmap 0x%lx\n",
		gru->gs_gid, gts, gms, gts->ts_ctxnum, gms->ms_asidmap[0]);
283
	spin_unlock(&gru->gs_asid_lock);
J
Jack Steiner 已提交
284 285 286 287 288 289 290 291 292 293
	spin_unlock(&gms->ms_asid_lock);
}

/*
 * Decrement the reference count on a GTS structure. Free the structure
 * if the reference count goes to zero.
 */
void gts_drop(struct gru_thread_state *gts)
{
	if (gts && atomic_dec_return(&gts->ts_refcnt) == 0) {
294 295
		if (gts->ts_gms)
			gru_drop_mmu_notifier(gts->ts_gms);
J
Jack Steiner 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
		kfree(gts);
		STAT(gts_free);
	}
}

/*
 * Locate the GTS structure for the current thread.
 */
static struct gru_thread_state *gru_find_current_gts_nolock(struct gru_vma_data
			    *vdata, int tsid)
{
	struct gru_thread_state *gts;

	list_for_each_entry(gts, &vdata->vd_head, ts_next)
	    if (gts->ts_tsid == tsid)
		return gts;
	return NULL;
}

/*
 * Allocate a thread state structure.
 */
318
struct gru_thread_state *gru_alloc_gts(struct vm_area_struct *vma,
319 320
		int cbr_au_count, int dsr_au_count,
		unsigned char tlb_preload_count, int options, int tsid)
J
Jack Steiner 已提交
321 322
{
	struct gru_thread_state *gts;
323
	struct gru_mm_struct *gms;
J
Jack Steiner 已提交
324 325
	int bytes;

326
	bytes = DSR_BYTES(dsr_au_count) + CBR_BYTES(cbr_au_count);
J
Jack Steiner 已提交
327
	bytes += sizeof(struct gru_thread_state);
328
	gts = kmalloc(bytes, GFP_KERNEL);
J
Jack Steiner 已提交
329
	if (!gts)
330
		return ERR_PTR(-ENOMEM);
J
Jack Steiner 已提交
331 332

	STAT(gts_alloc);
333
	memset(gts, 0, sizeof(struct gru_thread_state)); /* zero out header */
J
Jack Steiner 已提交
334 335
	atomic_set(&gts->ts_refcnt, 1);
	mutex_init(&gts->ts_ctxlock);
336 337
	gts->ts_cbr_au_count = cbr_au_count;
	gts->ts_dsr_au_count = dsr_au_count;
338
	gts->ts_tlb_preload_count = tlb_preload_count;
339
	gts->ts_user_options = options;
340 341
	gts->ts_user_blade_id = -1;
	gts->ts_user_chiplet_id = -1;
J
Jack Steiner 已提交
342 343 344
	gts->ts_tsid = tsid;
	gts->ts_ctxnum = NULLCTX;
	gts->ts_tlb_int_select = -1;
345
	gts->ts_cch_req_slice = -1;
346
	gts->ts_sizeavail = GRU_SIZEAVAIL(PAGE_SHIFT);
347 348 349
	if (vma) {
		gts->ts_mm = current->mm;
		gts->ts_vma = vma;
350 351
		gms = gru_register_mmu_notifier();
		if (IS_ERR(gms))
352
			goto err;
353
		gts->ts_gms = gms;
354
	}
J
Jack Steiner 已提交
355

356
	gru_dbg(grudev, "alloc gts %p\n", gts);
J
Jack Steiner 已提交
357 358 359 360
	return gts;

err:
	gts_drop(gts);
361
	return ERR_CAST(gms);
J
Jack Steiner 已提交
362 363 364 365 366 367 368 369 370 371 372 373 374
}

/*
 * Allocate a vma private data structure.
 */
struct gru_vma_data *gru_alloc_vma_data(struct vm_area_struct *vma, int tsid)
{
	struct gru_vma_data *vdata = NULL;

	vdata = kmalloc(sizeof(*vdata), GFP_KERNEL);
	if (!vdata)
		return NULL;

J
Jack Steiner 已提交
375
	STAT(vdata_alloc);
J
Jack Steiner 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
	INIT_LIST_HEAD(&vdata->vd_head);
	spin_lock_init(&vdata->vd_lock);
	gru_dbg(grudev, "alloc vdata %p\n", vdata);
	return vdata;
}

/*
 * Find the thread state structure for the current thread.
 */
struct gru_thread_state *gru_find_thread_state(struct vm_area_struct *vma,
					int tsid)
{
	struct gru_vma_data *vdata = vma->vm_private_data;
	struct gru_thread_state *gts;

	spin_lock(&vdata->vd_lock);
	gts = gru_find_current_gts_nolock(vdata, tsid);
	spin_unlock(&vdata->vd_lock);
	gru_dbg(grudev, "vma %p, gts %p\n", vma, gts);
	return gts;
}

/*
 * Allocate a new thread state for a GSEG. Note that races may allow
 * another thread to race to create a gts.
 */
struct gru_thread_state *gru_alloc_thread_state(struct vm_area_struct *vma,
					int tsid)
{
	struct gru_vma_data *vdata = vma->vm_private_data;
	struct gru_thread_state *gts, *ngts;

408 409 410
	gts = gru_alloc_gts(vma, vdata->vd_cbr_au_count,
			    vdata->vd_dsr_au_count,
			    vdata->vd_tlb_preload_count,
411
			    vdata->vd_user_options, tsid);
412 413
	if (IS_ERR(gts))
		return gts;
J
Jack Steiner 已提交
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436

	spin_lock(&vdata->vd_lock);
	ngts = gru_find_current_gts_nolock(vdata, tsid);
	if (ngts) {
		gts_drop(gts);
		gts = ngts;
		STAT(gts_double_allocate);
	} else {
		list_add(&gts->ts_next, &vdata->vd_head);
	}
	spin_unlock(&vdata->vd_lock);
	gru_dbg(grudev, "vma %p, gts %p\n", vma, gts);
	return gts;
}

/*
 * Free the GRU context assigned to the thread state.
 */
static void gru_free_gru_context(struct gru_thread_state *gts)
{
	struct gru_state *gru;

	gru = gts->ts_gru;
437
	gru_dbg(grudev, "gts %p, gid %d\n", gts, gru->gs_gid);
J
Jack Steiner 已提交
438 439 440 441 442 443 444 445

	spin_lock(&gru->gs_lock);
	gru->gs_gts[gts->ts_ctxnum] = NULL;
	free_gru_resources(gru, gts);
	BUG_ON(test_bit(gts->ts_ctxnum, &gru->gs_context_map) == 0);
	__clear_bit(gts->ts_ctxnum, &gru->gs_context_map);
	gts->ts_ctxnum = NULLCTX;
	gts->ts_gru = NULL;
446
	gts->ts_blade = -1;
J
Jack Steiner 已提交
447 448 449 450 451 452 453 454
	spin_unlock(&gru->gs_lock);

	gts_drop(gts);
	STAT(free_context);
}

/*
 * Prefetching cachelines help hardware performance.
455
 * (Strictly a performance enhancement. Not functionally required).
J
Jack Steiner 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
 */
static void prefetch_data(void *p, int num, int stride)
{
	while (num-- > 0) {
		prefetchw(p);
		p += stride;
	}
}

static inline long gru_copy_handle(void *d, void *s)
{
	memcpy(d, s, GRU_HANDLE_BYTES);
	return GRU_HANDLE_BYTES;
}

J
Jack Steiner 已提交
471 472
static void gru_prefetch_context(void *gseg, void *cb, void *cbe,
				unsigned long cbrmap, unsigned long length)
J
Jack Steiner 已提交
473 474 475 476 477 478 479 480 481 482 483 484
{
	int i, scr;

	prefetch_data(gseg + GRU_DS_BASE, length / GRU_CACHE_LINE_BYTES,
		      GRU_CACHE_LINE_BYTES);

	for_each_cbr_in_allocation_map(i, &cbrmap, scr) {
		prefetch_data(cb, 1, GRU_CACHE_LINE_BYTES);
		prefetch_data(cbe + i * GRU_HANDLE_STRIDE, 1,
			      GRU_CACHE_LINE_BYTES);
		cb += GRU_HANDLE_STRIDE;
	}
J
Jack Steiner 已提交
485 486 487
}

static void gru_load_context_data(void *save, void *grubase, int ctxnum,
488 489
				  unsigned long cbrmap, unsigned long dsrmap,
				  int data_valid)
J
Jack Steiner 已提交
490 491 492 493
{
	void *gseg, *cb, *cbe;
	unsigned long length;
	int i, scr;
J
Jack Steiner 已提交
494

J
Jack Steiner 已提交
495
	gseg = grubase + ctxnum * GRU_GSEG_STRIDE;
J
Jack Steiner 已提交
496
	cb = gseg + GRU_CB_BASE;
J
Jack Steiner 已提交
497 498 499 500
	cbe = grubase + GRU_CBE_BASE;
	length = hweight64(dsrmap) * GRU_DSR_AU_BYTES;
	gru_prefetch_context(gseg, cb, cbe, cbrmap, length);

J
Jack Steiner 已提交
501
	for_each_cbr_in_allocation_map(i, &cbrmap, scr) {
502 503 504 505 506 507 508 509 510
		if (data_valid) {
			save += gru_copy_handle(cb, save);
			save += gru_copy_handle(cbe + i * GRU_HANDLE_STRIDE,
						save);
		} else {
			memset(cb, 0, GRU_CACHE_LINE_BYTES);
			memset(cbe + i * GRU_HANDLE_STRIDE, 0,
						GRU_CACHE_LINE_BYTES);
		}
511 512 513
		/* Flush CBE to hide race in context restart */
		mb();
		gru_flush_cache(cbe + i * GRU_HANDLE_STRIDE);
J
Jack Steiner 已提交
514 515 516
		cb += GRU_HANDLE_STRIDE;
	}

517 518 519 520
	if (data_valid)
		memcpy(gseg + GRU_DS_BASE, save, length);
	else
		memset(gseg + GRU_DS_BASE, 0, length);
J
Jack Steiner 已提交
521 522 523 524 525 526 527 528 529 530 531 532
}

static void gru_unload_context_data(void *save, void *grubase, int ctxnum,
				    unsigned long cbrmap, unsigned long dsrmap)
{
	void *gseg, *cb, *cbe;
	unsigned long length;
	int i, scr;

	gseg = grubase + ctxnum * GRU_GSEG_STRIDE;
	cb = gseg + GRU_CB_BASE;
	cbe = grubase + GRU_CBE_BASE;
J
Jack Steiner 已提交
533
	length = hweight64(dsrmap) * GRU_DSR_AU_BYTES;
534 535 536 537 538 539

	/* CBEs may not be coherent. Flush them from cache */
	for_each_cbr_in_allocation_map(i, &cbrmap, scr)
		gru_flush_cache(cbe + i * GRU_HANDLE_STRIDE);
	mb();		/* Let the CL flush complete */

J
Jack Steiner 已提交
540 541
	gru_prefetch_context(gseg, cb, cbe, cbrmap, length);

J
Jack Steiner 已提交
542 543 544 545 546 547 548 549 550 551 552 553 554 555
	for_each_cbr_in_allocation_map(i, &cbrmap, scr) {
		save += gru_copy_handle(save, cb);
		save += gru_copy_handle(save, cbe + i * GRU_HANDLE_STRIDE);
		cb += GRU_HANDLE_STRIDE;
	}
	memcpy(save, gseg + GRU_DS_BASE, length);
}

void gru_unload_context(struct gru_thread_state *gts, int savestate)
{
	struct gru_state *gru = gts->ts_gru;
	struct gru_context_configuration_handle *cch;
	int ctxnum = gts->ts_ctxnum;

556 557
	if (!is_kernel_context(gts))
		zap_vma_ptes(gts->ts_vma, UGRUADDR(gts), GRU_GSEG_PAGESIZE);
J
Jack Steiner 已提交
558 559
	cch = get_cch(gru->gs_gru_base_vaddr, ctxnum);

J
Jack Steiner 已提交
560 561
	gru_dbg(grudev, "gts %p, cbrmap 0x%lx, dsrmap 0x%lx\n",
		gts, gts->ts_cbr_map, gts->ts_dsr_map);
J
Jack Steiner 已提交
562 563 564 565
	lock_cch_handle(cch);
	if (cch_interrupt_sync(cch))
		BUG();

566 567
	if (!is_kernel_context(gts))
		gru_unload_mm_tracker(gru, gts);
568
	if (savestate) {
J
Jack Steiner 已提交
569 570 571
		gru_unload_context_data(gts->ts_gdata, gru->gs_gru_base_vaddr,
					ctxnum, gts->ts_cbr_map,
					gts->ts_dsr_map);
572 573
		gts->ts_data_valid = 1;
	}
J
Jack Steiner 已提交
574 575 576 577 578 579 580 581 582 583 584 585

	if (cch_deallocate(cch))
		BUG();
	unlock_cch_handle(cch);

	gru_free_gru_context(gts);
}

/*
 * Load a GRU context by copying it from the thread data structure in memory
 * to the GRU.
 */
586
void gru_load_context(struct gru_thread_state *gts)
J
Jack Steiner 已提交
587 588 589
{
	struct gru_state *gru = gts->ts_gru;
	struct gru_context_configuration_handle *cch;
590
	int i, err, asid, ctxnum = gts->ts_ctxnum;
J
Jack Steiner 已提交
591 592 593 594 595 596 597 598 599 600 601

	cch = get_cch(gru->gs_gru_base_vaddr, ctxnum);
	lock_cch_handle(cch);
	cch->tfm_fault_bit_enable =
	    (gts->ts_user_options == GRU_OPT_MISS_FMM_POLL
	     || gts->ts_user_options == GRU_OPT_MISS_FMM_INTR);
	cch->tlb_int_enable = (gts->ts_user_options == GRU_OPT_MISS_FMM_INTR);
	if (cch->tlb_int_enable) {
		gts->ts_tlb_int_select = gru_cpu_fault_map_id();
		cch->tlb_int_select = gts->ts_tlb_int_select;
	}
602 603 604 605 606 607
	if (gts->ts_cch_req_slice >= 0) {
		cch->req_slice_set_enable = 1;
		cch->req_slice = gts->ts_cch_req_slice;
	} else {
		cch->req_slice_set_enable =0;
	}
J
Jack Steiner 已提交
608
	cch->tfm_done_bit_enable = 0;
609 610
	cch->dsr_allocation_map = gts->ts_dsr_map;
	cch->cbr_allocation_map = gts->ts_cbr_map;
611 612 613

	if (is_kernel_context(gts)) {
		cch->unmap_enable = 1;
614 615
		cch->tfm_done_bit_enable = 1;
		cch->cb_int_enable = 1;
J
Jack Steiner 已提交
616
		cch->tlb_int_select = 0;	/* For now, ints go to cpu 0 */
617 618
	} else {
		cch->unmap_enable = 0;
619 620
		cch->tfm_done_bit_enable = 0;
		cch->cb_int_enable = 0;
621 622 623 624 625
		asid = gru_load_mm_tracker(gru, gts);
		for (i = 0; i < 8; i++) {
			cch->asid[i] = asid + i;
			cch->sizeavail[i] = gts->ts_sizeavail;
		}
626 627 628
	}

	err = cch_allocate(cch);
J
Jack Steiner 已提交
629 630 631 632 633 634 635 636
	if (err) {
		gru_dbg(grudev,
			"err %d: cch %p, gts %p, cbr 0x%lx, dsr 0x%lx\n",
			err, cch, gts, gts->ts_cbr_map, gts->ts_dsr_map);
		BUG();
	}

	gru_load_context_data(gts->ts_gdata, gru->gs_gru_base_vaddr, ctxnum,
637
			gts->ts_cbr_map, gts->ts_dsr_map, gts->ts_data_valid);
J
Jack Steiner 已提交
638 639 640 641

	if (cch_start(cch))
		BUG();
	unlock_cch_handle(cch);
J
Jack Steiner 已提交
642 643 644 645

	gru_dbg(grudev, "gid %d, gts %p, cbrmap 0x%lx, dsrmap 0x%lx, tie %d, tis %d\n",
		gts->ts_gru->gs_gid, gts, gts->ts_cbr_map, gts->ts_dsr_map,
		(gts->ts_user_options == GRU_OPT_MISS_FMM_INTR), gts->ts_tlb_int_select);
J
Jack Steiner 已提交
646 647 648 649 650
}

/*
 * Update fields in an active CCH:
 * 	- retarget interrupts on local blade
651
 * 	- update sizeavail mask
J
Jack Steiner 已提交
652
 */
653
int gru_update_cch(struct gru_thread_state *gts)
J
Jack Steiner 已提交
654 655 656 657 658 659 660 661 662 663 664 665 666
{
	struct gru_context_configuration_handle *cch;
	struct gru_state *gru = gts->ts_gru;
	int i, ctxnum = gts->ts_ctxnum, ret = 0;

	cch = get_cch(gru->gs_gru_base_vaddr, ctxnum);

	lock_cch_handle(cch);
	if (cch->state == CCHSTATE_ACTIVE) {
		if (gru->gs_gts[gts->ts_ctxnum] != gts)
			goto exit;
		if (cch_interrupt(cch))
			BUG();
667 668 669 670 671 672 673
		for (i = 0; i < 8; i++)
			cch->sizeavail[i] = gts->ts_sizeavail;
		gts->ts_tlb_int_select = gru_cpu_fault_map_id();
		cch->tlb_int_select = gru_cpu_fault_map_id();
		cch->tfm_fault_bit_enable =
		  (gts->ts_user_options == GRU_OPT_MISS_FMM_POLL
		    || gts->ts_user_options == GRU_OPT_MISS_FMM_INTR);
J
Jack Steiner 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
		if (cch_start(cch))
			BUG();
		ret = 1;
	}
exit:
	unlock_cch_handle(cch);
	return ret;
}

/*
 * Update CCH tlb interrupt select. Required when all the following is true:
 * 	- task's GRU context is loaded into a GRU
 * 	- task is using interrupt notification for TLB faults
 * 	- task has migrated to a different cpu on the same blade where
 * 	  it was previously running.
 */
static int gru_retarget_intr(struct gru_thread_state *gts)
{
	if (gts->ts_tlb_int_select < 0
	    || gts->ts_tlb_int_select == gru_cpu_fault_map_id())
		return 0;

	gru_dbg(grudev, "retarget from %d to %d\n", gts->ts_tlb_int_select,
		gru_cpu_fault_map_id());
698
	return gru_update_cch(gts);
J
Jack Steiner 已提交
699 700
}

701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
/*
 * Unload the gru context if it is not assigned to the correct blade or
 * chiplet. Misassignment can occur if the process migrates to a different
 * blade or if the user changes the selected blade/chiplet.
 * 	Return 0 if  context correct placed, otherwise 1
 */
void gru_check_context_placement(struct gru_thread_state *gts)
{
	struct gru_state *gru;
	int blade_id, chiplet_id;

	/*
	 * If the current task is the context owner, verify that the
	 * context is correctly placed. This test is skipped for non-owner
	 * references. Pthread apps use non-owner references to the CBRs.
	 */
	gru = gts->ts_gru;
	if (!gru || gts->ts_tgid_owner != current->tgid)
		return;

	blade_id = gts->ts_user_blade_id;
	if (blade_id < 0)
		blade_id = uv_numa_blade_id();

	chiplet_id = gts->ts_user_chiplet_id;
	if (gru->gs_blade_id != blade_id ||
	    (chiplet_id >= 0 && chiplet_id != gru->gs_chiplet_id)) {
		STAT(check_context_unload);
		gru_unload_context(gts, 1);
	} else if (gru_retarget_intr(gts)) {
		STAT(check_context_retarget_intr);
	}
}

J
Jack Steiner 已提交
735 736 737 738 739 740 741 742 743

/*
 * Insufficient GRU resources available on the local blade. Steal a context from
 * a process. This is a hack until a _real_ resource scheduler is written....
 */
#define next_ctxnum(n)	((n) <  GRU_NUM_CCH - 2 ? (n) + 1 : 0)
#define next_gru(b, g)	(((g) < &(b)->bs_grus[GRU_CHIPLETS_PER_BLADE - 1]) ?  \
				 ((g)+1) : &(b)->bs_grus[0])

744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
static int is_gts_stealable(struct gru_thread_state *gts,
		struct gru_blade_state *bs)
{
	if (is_kernel_context(gts))
		return down_write_trylock(&bs->bs_kgts_sema);
	else
		return mutex_trylock(&gts->ts_ctxlock);
}

static void gts_stolen(struct gru_thread_state *gts,
		struct gru_blade_state *bs)
{
	if (is_kernel_context(gts)) {
		up_write(&bs->bs_kgts_sema);
		STAT(steal_kernel_context);
	} else {
		mutex_unlock(&gts->ts_ctxlock);
		STAT(steal_user_context);
	}
}

765
void gru_steal_context(struct gru_thread_state *gts)
J
Jack Steiner 已提交
766 767 768 769 770
{
	struct gru_blade_state *blade;
	struct gru_state *gru, *gru0;
	struct gru_thread_state *ngts = NULL;
	int ctxnum, ctxnum0, flag = 0, cbr, dsr;
771 772
	int blade_id = gts->ts_user_blade_id;
	int chiplet_id = gts->ts_user_chiplet_id;
J
Jack Steiner 已提交
773

774 775
	if (blade_id < 0)
		blade_id = uv_numa_blade_id();
J
Jack Steiner 已提交
776 777 778
	cbr = gts->ts_cbr_au_count;
	dsr = gts->ts_dsr_au_count;

779
	blade = gru_base[blade_id];
J
Jack Steiner 已提交
780 781 782 783 784 785
	spin_lock(&blade->bs_lock);

	ctxnum = next_ctxnum(blade->bs_lru_ctxnum);
	gru = blade->bs_lru_gru;
	if (ctxnum == 0)
		gru = next_gru(blade, gru);
786 787
	blade->bs_lru_gru = gru;
	blade->bs_lru_ctxnum = ctxnum;
J
Jack Steiner 已提交
788 789 790
	ctxnum0 = ctxnum;
	gru0 = gru;
	while (1) {
791 792
		if (chiplet_id < 0 || chiplet_id == gru->gs_chiplet_id) {
			if (check_gru_resources(gru, cbr, dsr, GRU_NUM_CCH))
J
Jack Steiner 已提交
793
				break;
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
			spin_lock(&gru->gs_lock);
			for (; ctxnum < GRU_NUM_CCH; ctxnum++) {
				if (flag && gru == gru0 && ctxnum == ctxnum0)
					break;
				ngts = gru->gs_gts[ctxnum];
				/*
			 	* We are grabbing locks out of order, so trylock is
			 	* needed. GTSs are usually not locked, so the odds of
			 	* success are high. If trylock fails, try to steal a
			 	* different GSEG.
			 	*/
				if (ngts && is_gts_stealable(ngts, blade))
					break;
				ngts = NULL;
			}
			spin_unlock(&gru->gs_lock);
			if (ngts || (flag && gru == gru0 && ctxnum == ctxnum0))
J
Jack Steiner 已提交
811 812
				break;
		}
813
		if (flag && gru == gru0)
J
Jack Steiner 已提交
814
			break;
815
		flag = 1;
J
Jack Steiner 已提交
816 817 818 819 820 821
		ctxnum = 0;
		gru = next_gru(blade, gru);
	}
	spin_unlock(&blade->bs_lock);

	if (ngts) {
822
		gts->ustats.context_stolen++;
J
Jack Steiner 已提交
823
		ngts->ts_steal_jiffies = jiffies;
824 825
		gru_unload_context(ngts, is_kernel_context(ngts) ? 0 : 1);
		gts_stolen(ngts, blade);
J
Jack Steiner 已提交
826 827 828 829
	} else {
		STAT(steal_context_failed);
	}
	gru_dbg(grudev,
830
		"stole gid %d, ctxnum %d from gts %p. Need cb %d, ds %d;"
J
Jack Steiner 已提交
831 832 833 834 835
		" avail cb %ld, ds %ld\n",
		gru->gs_gid, ctxnum, ngts, cbr, dsr, hweight64(gru->gs_cbr_map),
		hweight64(gru->gs_dsr_map));
}

836 837 838 839 840 841 842 843 844 845 846 847
/*
 * Assign a gru context.
 */
static int gru_assign_context_number(struct gru_state *gru)
{
	int ctxnum;

	ctxnum = find_first_zero_bit(&gru->gs_context_map, GRU_NUM_CCH);
	__set_bit(ctxnum, &gru->gs_context_map);
	return ctxnum;
}

J
Jack Steiner 已提交
848 849 850
/*
 * Scan the GRUs on the local blade & assign a GRU context.
 */
851
struct gru_state *gru_assign_gru_context(struct gru_thread_state *gts)
J
Jack Steiner 已提交
852 853 854
{
	struct gru_state *gru, *grux;
	int i, max_active_contexts;
855 856
	int blade_id = gts->ts_user_blade_id;
	int chiplet_id = gts->ts_user_chiplet_id;
J
Jack Steiner 已提交
857

858 859
	if (blade_id < 0)
		blade_id = uv_numa_blade_id();
J
Jack Steiner 已提交
860 861 862
again:
	gru = NULL;
	max_active_contexts = GRU_NUM_CCH;
863 864 865
	for_each_gru_on_blade(grux, blade_id, i) {
		if (chiplet_id >= 0 && chiplet_id != grux->gs_chiplet_id)
			continue;
J
Jack Steiner 已提交
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
		if (check_gru_resources(grux, gts->ts_cbr_au_count,
					gts->ts_dsr_au_count,
					max_active_contexts)) {
			gru = grux;
			max_active_contexts = grux->gs_active_contexts;
			if (max_active_contexts == 0)
				break;
		}
	}

	if (gru) {
		spin_lock(&gru->gs_lock);
		if (!check_gru_resources(gru, gts->ts_cbr_au_count,
					 gts->ts_dsr_au_count, GRU_NUM_CCH)) {
			spin_unlock(&gru->gs_lock);
			goto again;
		}
		reserve_gru_resources(gru, gts);
		gts->ts_gru = gru;
885
		gts->ts_blade = gru->gs_blade_id;
886
		gts->ts_ctxnum = gru_assign_context_number(gru);
J
Jack Steiner 已提交
887 888 889 890 891 892
		atomic_inc(&gts->ts_refcnt);
		gru->gs_gts[gts->ts_ctxnum] = gts;
		spin_unlock(&gru->gs_lock);

		STAT(assign_context);
		gru_dbg(grudev,
893
			"gseg %p, gts %p, gid %d, ctx %d, cbr %d, dsr %d\n",
J
Jack Steiner 已提交
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
			gseg_virtual_address(gts->ts_gru, gts->ts_ctxnum), gts,
			gts->ts_gru->gs_gid, gts->ts_ctxnum,
			gts->ts_cbr_au_count, gts->ts_dsr_au_count);
	} else {
		gru_dbg(grudev, "failed to allocate a GTS %s\n", "");
		STAT(assign_context_failed);
	}

	return gru;
}

/*
 * gru_nopage
 *
 * Map the user's GRU segment
909 910
 *
 * 	Note: gru segments alway mmaped on GRU_GSEG_PAGESIZE boundaries.
J
Jack Steiner 已提交
911 912 913 914 915 916 917 918 919 920 921
 */
int gru_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
{
	struct gru_thread_state *gts;
	unsigned long paddr, vaddr;

	vaddr = (unsigned long)vmf->virtual_address;
	gru_dbg(grudev, "vma %p, vaddr 0x%lx (0x%lx)\n",
		vma, vaddr, GSEG_BASE(vaddr));
	STAT(nopfn);

922
	/* The following check ensures vaddr is a valid address in the VMA */
J
Jack Steiner 已提交
923 924 925 926 927 928
	gts = gru_find_thread_state(vma, TSID(vaddr, vma));
	if (!gts)
		return VM_FAULT_SIGBUS;

again:
	mutex_lock(&gts->ts_ctxlock);
J
Jack Steiner 已提交
929
	preempt_disable();
930

931
	gru_check_context_placement(gts);
J
Jack Steiner 已提交
932 933

	if (!gts->ts_gru) {
934
		STAT(load_user_context);
935
		if (!gru_assign_gru_context(gts)) {
J
Jack Steiner 已提交
936
			preempt_enable();
937 938
			mutex_unlock(&gts->ts_ctxlock);
			set_current_state(TASK_INTERRUPTIBLE);
J
Jack Steiner 已提交
939 940
			schedule_timeout(GRU_ASSIGN_DELAY);  /* true hack ZZZ */
			if (gts->ts_steal_jiffies + GRU_STEAL_DELAY < jiffies)
941
				gru_steal_context(gts);
J
Jack Steiner 已提交
942 943 944 945 946 947 948 949 950 951
			goto again;
		}
		gru_load_context(gts);
		paddr = gseg_physical_address(gts->ts_gru, gts->ts_ctxnum);
		remap_pfn_range(vma, vaddr & ~(GRU_GSEG_PAGESIZE - 1),
				paddr >> PAGE_SHIFT, GRU_GSEG_PAGESIZE,
				vma->vm_page_prot);
	}

	preempt_enable();
952
	mutex_unlock(&gts->ts_ctxlock);
J
Jack Steiner 已提交
953 954 955 956

	return VM_FAULT_NOPAGE;
}