gru: change context load and unload
[safe/jmp/linux-2.6] / drivers / misc / sgi-gru / grufault.c
1 /*
2  * SN Platform GRU Driver
3  *
4  *              FAULT HANDLER FOR GRU DETECTED TLB MISSES
5  *
6  * This file contains code that handles TLB misses within the GRU.
7  * These misses are reported either via interrupts or user polling of
8  * the user CB.
9  *
10  *  Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2 of the License, or
15  *  (at your option) any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software
24  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
25  */
26
27 #include <linux/kernel.h>
28 #include <linux/errno.h>
29 #include <linux/spinlock.h>
30 #include <linux/mm.h>
31 #include <linux/hugetlb.h>
32 #include <linux/device.h>
33 #include <linux/io.h>
34 #include <linux/uaccess.h>
35 #include <linux/security.h>
36 #include <asm/pgtable.h>
37 #include "gru.h"
38 #include "grutables.h"
39 #include "grulib.h"
40 #include "gru_instructions.h"
41 #include <asm/uv/uv_hub.h>
42
43 /*
44  * Test if a physical address is a valid GRU GSEG address
45  */
46 static inline int is_gru_paddr(unsigned long paddr)
47 {
48         return paddr >= gru_start_paddr && paddr < gru_end_paddr;
49 }
50
51 /*
52  * Find the vma of a GRU segment. Caller must hold mmap_sem.
53  */
54 struct vm_area_struct *gru_find_vma(unsigned long vaddr)
55 {
56         struct vm_area_struct *vma;
57
58         vma = find_vma(current->mm, vaddr);
59         if (vma && vma->vm_start <= vaddr && vma->vm_ops == &gru_vm_ops)
60                 return vma;
61         return NULL;
62 }
63
64 /*
65  * Find and lock the gts that contains the specified user vaddr.
66  *
67  * Returns:
68  *      - *gts with the mmap_sem locked for read and the GTS locked.
69  *      - NULL if vaddr invalid OR is not a valid GSEG vaddr.
70  */
71
72 static struct gru_thread_state *gru_find_lock_gts(unsigned long vaddr)
73 {
74         struct mm_struct *mm = current->mm;
75         struct vm_area_struct *vma;
76         struct gru_thread_state *gts = NULL;
77
78         down_read(&mm->mmap_sem);
79         vma = gru_find_vma(vaddr);
80         if (vma)
81                 gts = gru_find_thread_state(vma, TSID(vaddr, vma));
82         if (gts)
83                 mutex_lock(&gts->ts_ctxlock);
84         else
85                 up_read(&mm->mmap_sem);
86         return gts;
87 }
88
89 static struct gru_thread_state *gru_alloc_locked_gts(unsigned long vaddr)
90 {
91         struct mm_struct *mm = current->mm;
92         struct vm_area_struct *vma;
93         struct gru_thread_state *gts = NULL;
94
95         down_write(&mm->mmap_sem);
96         vma = gru_find_vma(vaddr);
97         if (vma)
98                 gts = gru_alloc_thread_state(vma, TSID(vaddr, vma));
99         if (gts) {
100                 mutex_lock(&gts->ts_ctxlock);
101                 downgrade_write(&mm->mmap_sem);
102         } else {
103                 up_write(&mm->mmap_sem);
104         }
105
106         return gts;
107 }
108
109 /*
110  * Unlock a GTS that was previously locked with gru_find_lock_gts().
111  */
112 static void gru_unlock_gts(struct gru_thread_state *gts)
113 {
114         mutex_unlock(&gts->ts_ctxlock);
115         up_read(&current->mm->mmap_sem);
116 }
117
118 /*
119  * Set a CB.istatus to active using a user virtual address. This must be done
120  * just prior to a TFH RESTART. The new cb.istatus is an in-cache status ONLY.
121  * If the line is evicted, the status may be lost. The in-cache update
122  * is necessary to prevent the user from seeing a stale cb.istatus that will
123  * change as soon as the TFH restart is complete. Races may cause an
124  * occasional failure to clear the cb.istatus, but that is ok.
125  *
126  * If the cb address is not valid (should not happen, but...), nothing
127  * bad will happen.. The get_user()/put_user() will fail but there
128  * are no bad side-effects.
129  */
130 static void gru_cb_set_istatus_active(unsigned long __user *cb)
131 {
132         union {
133                 struct gru_instruction_bits bits;
134                 unsigned long dw;
135         } u;
136
137         if (cb) {
138                 get_user(u.dw, cb);
139                 u.bits.istatus = CBS_ACTIVE;
140                 put_user(u.dw, cb);
141         }
142 }
143
144 /*
145  * Convert a interrupt IRQ to a pointer to the GRU GTS that caused the
146  * interrupt. Interrupts are always sent to a cpu on the blade that contains the
147  * GRU (except for headless blades which are not currently supported). A blade
148  * has N grus; a block of N consecutive IRQs is assigned to the GRUs. The IRQ
149  * number uniquely identifies the GRU chiplet on the local blade that caused the
150  * interrupt. Always called in interrupt context.
151  */
152 static inline struct gru_state *irq_to_gru(int irq)
153 {
154         return &gru_base[uv_numa_blade_id()]->bs_grus[irq - IRQ_GRU];
155 }
156
157 /*
158  * Read & clear a TFM
159  *
160  * The GRU has an array of fault maps. A map is private to a cpu
161  * Only one cpu will be accessing a cpu's fault map.
162  *
163  * This function scans the cpu-private fault map & clears all bits that
164  * are set. The function returns a bitmap that indicates the bits that
165  * were cleared. Note that sense the maps may be updated asynchronously by
166  * the GRU, atomic operations must be used to clear bits.
167  */
168 static void get_clear_fault_map(struct gru_state *gru,
169                                 struct gru_tlb_fault_map *map)
170 {
171         unsigned long i, k;
172         struct gru_tlb_fault_map *tfm;
173
174         tfm = get_tfm_for_cpu(gru, gru_cpu_fault_map_id());
175         prefetchw(tfm);         /* Helps on hardware, required for emulator */
176         for (i = 0; i < BITS_TO_LONGS(GRU_NUM_CBE); i++) {
177                 k = tfm->fault_bits[i];
178                 if (k)
179                         k = xchg(&tfm->fault_bits[i], 0UL);
180                 map->fault_bits[i] = k;
181         }
182
183         /*
184          * Not functionally required but helps performance. (Required
185          * on emulator)
186          */
187         gru_flush_cache(tfm);
188 }
189
190 /*
191  * Atomic (interrupt context) & non-atomic (user context) functions to
192  * convert a vaddr into a physical address. The size of the page
193  * is returned in pageshift.
194  *      returns:
195  *                0 - successful
196  *              < 0 - error code
197  *                1 - (atomic only) try again in non-atomic context
198  */
199 static int non_atomic_pte_lookup(struct vm_area_struct *vma,
200                                  unsigned long vaddr, int write,
201                                  unsigned long *paddr, int *pageshift)
202 {
203         struct page *page;
204
205         /* ZZZ Need to handle HUGE pages */
206         if (is_vm_hugetlb_page(vma))
207                 return -EFAULT;
208         *pageshift = PAGE_SHIFT;
209         if (get_user_pages
210             (current, current->mm, vaddr, 1, write, 0, &page, NULL) <= 0)
211                 return -EFAULT;
212         *paddr = page_to_phys(page);
213         put_page(page);
214         return 0;
215 }
216
217 /*
218  * atomic_pte_lookup
219  *
220  * Convert a user virtual address to a physical address
221  * Only supports Intel large pages (2MB only) on x86_64.
222  *      ZZZ - hugepage support is incomplete
223  *
224  * NOTE: mmap_sem is already held on entry to this function. This
225  * guarantees existence of the page tables.
226  */
227 static int atomic_pte_lookup(struct vm_area_struct *vma, unsigned long vaddr,
228         int write, unsigned long *paddr, int *pageshift)
229 {
230         pgd_t *pgdp;
231         pmd_t *pmdp;
232         pud_t *pudp;
233         pte_t pte;
234
235         pgdp = pgd_offset(vma->vm_mm, vaddr);
236         if (unlikely(pgd_none(*pgdp)))
237                 goto err;
238
239         pudp = pud_offset(pgdp, vaddr);
240         if (unlikely(pud_none(*pudp)))
241                 goto err;
242
243         pmdp = pmd_offset(pudp, vaddr);
244         if (unlikely(pmd_none(*pmdp)))
245                 goto err;
246 #ifdef CONFIG_X86_64
247         if (unlikely(pmd_large(*pmdp)))
248                 pte = *(pte_t *) pmdp;
249         else
250 #endif
251                 pte = *pte_offset_kernel(pmdp, vaddr);
252
253         if (unlikely(!pte_present(pte) ||
254                      (write && (!pte_write(pte) || !pte_dirty(pte)))))
255                 return 1;
256
257         *paddr = pte_pfn(pte) << PAGE_SHIFT;
258 #ifdef CONFIG_HUGETLB_PAGE
259         *pageshift = is_vm_hugetlb_page(vma) ? HPAGE_SHIFT : PAGE_SHIFT;
260 #else
261         *pageshift = PAGE_SHIFT;
262 #endif
263         return 0;
264
265 err:
266         local_irq_enable();
267         return 1;
268 }
269
270 static int gru_vtop(struct gru_thread_state *gts, unsigned long vaddr,
271                     int write, int atomic, unsigned long *gpa, int *pageshift)
272 {
273         struct mm_struct *mm = gts->ts_mm;
274         struct vm_area_struct *vma;
275         unsigned long paddr;
276         int ret, ps;
277
278         vma = find_vma(mm, vaddr);
279         if (!vma)
280                 goto inval;
281
282         /*
283          * Atomic lookup is faster & usually works even if called in non-atomic
284          * context.
285          */
286         rmb();  /* Must/check ms_range_active before loading PTEs */
287         ret = atomic_pte_lookup(vma, vaddr, write, &paddr, &ps);
288         if (ret) {
289                 if (atomic)
290                         goto upm;
291                 if (non_atomic_pte_lookup(vma, vaddr, write, &paddr, &ps))
292                         goto inval;
293         }
294         if (is_gru_paddr(paddr))
295                 goto inval;
296         paddr = paddr & ~((1UL << ps) - 1);
297         *gpa = uv_soc_phys_ram_to_gpa(paddr);
298         *pageshift = ps;
299         return 0;
300
301 inval:
302         return -1;
303 upm:
304         return -2;
305 }
306
307
308 /*
309  * Drop a TLB entry into the GRU. The fault is described by info in an TFH.
310  *      Input:
311  *              cb    Address of user CBR. Null if not running in user context
312  *      Return:
313  *                0 = dropin, exception, or switch to UPM successful
314  *                1 = range invalidate active
315  *              < 0 = error code
316  *
317  */
318 static int gru_try_dropin(struct gru_thread_state *gts,
319                           struct gru_tlb_fault_handle *tfh,
320                           unsigned long __user *cb)
321 {
322         int pageshift = 0, asid, write, ret, atomic = !cb;
323         unsigned long gpa = 0, vaddr = 0;
324
325         /*
326          * NOTE: The GRU contains magic hardware that eliminates races between
327          * TLB invalidates and TLB dropins. If an invalidate occurs
328          * in the window between reading the TFH and the subsequent TLB dropin,
329          * the dropin is ignored. This eliminates the need for additional locks.
330          */
331
332         /*
333          * Error if TFH state is IDLE or FMM mode & the user issuing a UPM call.
334          * Might be a hardware race OR a stupid user. Ignore FMM because FMM
335          * is a transient state.
336          */
337         if (tfh->status != TFHSTATUS_EXCEPTION)
338                 goto failnoexception;
339         if (tfh->state == TFHSTATE_IDLE)
340                 goto failidle;
341         if (tfh->state == TFHSTATE_MISS_FMM && cb)
342                 goto failfmm;
343
344         write = (tfh->cause & TFHCAUSE_TLB_MOD) != 0;
345         vaddr = tfh->missvaddr;
346         asid = tfh->missasid;
347         if (asid == 0)
348                 goto failnoasid;
349
350         rmb();  /* TFH must be cache resident before reading ms_range_active */
351
352         /*
353          * TFH is cache resident - at least briefly. Fail the dropin
354          * if a range invalidate is active.
355          */
356         if (atomic_read(&gts->ts_gms->ms_range_active))
357                 goto failactive;
358
359         ret = gru_vtop(gts, vaddr, write, atomic, &gpa, &pageshift);
360         if (ret == -1)
361                 goto failinval;
362         if (ret == -2)
363                 goto failupm;
364
365         if (!(gts->ts_sizeavail & GRU_SIZEAVAIL(pageshift))) {
366                 gts->ts_sizeavail |= GRU_SIZEAVAIL(pageshift);
367                 if (atomic || !gru_update_cch(gts, 0)) {
368                         gts->ts_force_cch_reload = 1;
369                         goto failupm;
370                 }
371         }
372         gru_cb_set_istatus_active(cb);
373         tfh_write_restart(tfh, gpa, GAA_RAM, vaddr, asid, write,
374                           GRU_PAGESIZE(pageshift));
375         STAT(tlb_dropin);
376         gru_dbg(grudev,
377                 "%s: tfh 0x%p, vaddr 0x%lx, asid 0x%x, ps %d, gpa 0x%lx\n",
378                 ret ? "non-atomic" : "atomic", tfh, vaddr, asid,
379                 pageshift, gpa);
380         return 0;
381
382 failnoasid:
383         /* No asid (delayed unload). */
384         STAT(tlb_dropin_fail_no_asid);
385         gru_dbg(grudev, "FAILED no_asid tfh: 0x%p, vaddr 0x%lx\n", tfh, vaddr);
386         if (!cb)
387                 tfh_user_polling_mode(tfh);
388         else
389                 gru_flush_cache(tfh);
390         return -EAGAIN;
391
392 failupm:
393         /* Atomic failure switch CBR to UPM */
394         tfh_user_polling_mode(tfh);
395         STAT(tlb_dropin_fail_upm);
396         gru_dbg(grudev, "FAILED upm tfh: 0x%p, vaddr 0x%lx\n", tfh, vaddr);
397         return 1;
398
399 failfmm:
400         /* FMM state on UPM call */
401         gru_flush_cache(tfh);
402         STAT(tlb_dropin_fail_fmm);
403         gru_dbg(grudev, "FAILED fmm tfh: 0x%p, state %d\n", tfh, tfh->state);
404         return 0;
405
406 failnoexception:
407         /* TFH status did not show exception pending */
408         gru_flush_cache(tfh);
409         if (cb)
410                 gru_flush_cache(cb);
411         STAT(tlb_dropin_fail_no_exception);
412         gru_dbg(grudev, "FAILED non-exception tfh: 0x%p, status %d, state %d\n", tfh, tfh->status, tfh->state);
413         return 0;
414
415 failidle:
416         /* TFH state was idle  - no miss pending */
417         gru_flush_cache(tfh);
418         if (cb)
419                 gru_flush_cache(cb);
420         STAT(tlb_dropin_fail_idle);
421         gru_dbg(grudev, "FAILED idle tfh: 0x%p, state %d\n", tfh, tfh->state);
422         return 0;
423
424 failinval:
425         /* All errors (atomic & non-atomic) switch CBR to EXCEPTION state */
426         tfh_exception(tfh);
427         STAT(tlb_dropin_fail_invalid);
428         gru_dbg(grudev, "FAILED inval tfh: 0x%p, vaddr 0x%lx\n", tfh, vaddr);
429         return -EFAULT;
430
431 failactive:
432         /* Range invalidate active. Switch to UPM iff atomic */
433         if (!cb)
434                 tfh_user_polling_mode(tfh);
435         else
436                 gru_flush_cache(tfh);
437         STAT(tlb_dropin_fail_range_active);
438         gru_dbg(grudev, "FAILED range active: tfh 0x%p, vaddr 0x%lx\n",
439                 tfh, vaddr);
440         return 1;
441 }
442
443 /*
444  * Process an external interrupt from the GRU. This interrupt is
445  * caused by a TLB miss.
446  * Note that this is the interrupt handler that is registered with linux
447  * interrupt handlers.
448  */
449 irqreturn_t gru_intr(int irq, void *dev_id)
450 {
451         struct gru_state *gru;
452         struct gru_tlb_fault_map map;
453         struct gru_thread_state *gts;
454         struct gru_tlb_fault_handle *tfh = NULL;
455         int cbrnum, ctxnum;
456
457         STAT(intr);
458
459         gru = irq_to_gru(irq);
460         if (!gru) {
461                 dev_err(grudev, "GRU: invalid interrupt: cpu %d, irq %d\n",
462                         raw_smp_processor_id(), irq);
463                 return IRQ_NONE;
464         }
465         get_clear_fault_map(gru, &map);
466         gru_dbg(grudev, "irq %d, gru %x, map 0x%lx\n", irq, gru->gs_gid,
467                 map.fault_bits[0]);
468
469         for_each_cbr_in_tfm(cbrnum, map.fault_bits) {
470                 tfh = get_tfh_by_index(gru, cbrnum);
471                 prefetchw(tfh); /* Helps on hdw, required for emulator */
472
473                 /*
474                  * When hardware sets a bit in the faultmap, it implicitly
475                  * locks the GRU context so that it cannot be unloaded.
476                  * The gts cannot change until a TFH start/writestart command
477                  * is issued.
478                  */
479                 ctxnum = tfh->ctxnum;
480                 gts = gru->gs_gts[ctxnum];
481
482                 /*
483                  * This is running in interrupt context. Trylock the mmap_sem.
484                  * If it fails, retry the fault in user context.
485                  */
486                 if (!gts->ts_force_cch_reload &&
487                                         down_read_trylock(&gts->ts_mm->mmap_sem)) {
488                         gru_try_dropin(gts, tfh, NULL);
489                         up_read(&gts->ts_mm->mmap_sem);
490                 } else {
491                         tfh_user_polling_mode(tfh);
492                         STAT(intr_mm_lock_failed);
493                 }
494         }
495         return IRQ_HANDLED;
496 }
497
498
499 static int gru_user_dropin(struct gru_thread_state *gts,
500                            struct gru_tlb_fault_handle *tfh,
501                            unsigned long __user *cb)
502 {
503         struct gru_mm_struct *gms = gts->ts_gms;
504         int ret;
505
506         while (1) {
507                 wait_event(gms->ms_wait_queue,
508                            atomic_read(&gms->ms_range_active) == 0);
509                 prefetchw(tfh); /* Helps on hdw, required for emulator */
510                 ret = gru_try_dropin(gts, tfh, cb);
511                 if (ret <= 0)
512                         return ret;
513                 STAT(call_os_wait_queue);
514         }
515 }
516
517 /*
518  * This interface is called as a result of a user detecting a "call OS" bit
519  * in a user CB. Normally means that a TLB fault has occurred.
520  *      cb - user virtual address of the CB
521  */
522 int gru_handle_user_call_os(unsigned long cb)
523 {
524         struct gru_tlb_fault_handle *tfh;
525         struct gru_thread_state *gts;
526         unsigned long __user *cbp;
527         int ucbnum, cbrnum, ret = -EINVAL;
528
529         STAT(call_os);
530         gru_dbg(grudev, "address 0x%lx\n", cb);
531
532         /* sanity check the cb pointer */
533         ucbnum = get_cb_number((void *)cb);
534         if ((cb & (GRU_HANDLE_STRIDE - 1)) || ucbnum >= GRU_NUM_CB)
535                 return -EINVAL;
536         cbp = (unsigned long *)cb;
537
538         gts = gru_find_lock_gts(cb);
539         if (!gts)
540                 return -EINVAL;
541
542         if (ucbnum >= gts->ts_cbr_au_count * GRU_CBR_AU_SIZE)
543                 goto exit;
544
545         /*
546          * If force_unload is set, the UPM TLB fault is phony. The task
547          * has migrated to another node and the GSEG must be moved. Just
548          * unload the context. The task will page fault and assign a new
549          * context.
550          */
551         if (gts->ts_tgid_owner == current->tgid && gts->ts_blade >= 0 &&
552                                 gts->ts_blade != uv_numa_blade_id()) {
553                 STAT(call_os_offnode_reference);
554                 gts->ts_force_unload = 1;
555         }
556
557         /*
558          * CCH may contain stale data if ts_force_cch_reload is set.
559          */
560         if (gts->ts_gru && gts->ts_force_cch_reload) {
561                 gts->ts_force_cch_reload = 0;
562                 gru_update_cch(gts, 0);
563         }
564
565         ret = -EAGAIN;
566         cbrnum = thread_cbr_number(gts, ucbnum);
567         if (gts->ts_force_unload) {
568                 gru_unload_context(gts, 1);
569         } else if (gts->ts_gru) {
570                 tfh = get_tfh_by_index(gts->ts_gru, cbrnum);
571                 ret = gru_user_dropin(gts, tfh, cbp);
572         }
573 exit:
574         gru_unlock_gts(gts);
575         return ret;
576 }
577
578 /*
579  * Fetch the exception detail information for a CB that terminated with
580  * an exception.
581  */
582 int gru_get_exception_detail(unsigned long arg)
583 {
584         struct control_block_extended_exc_detail excdet;
585         struct gru_control_block_extended *cbe;
586         struct gru_thread_state *gts;
587         int ucbnum, cbrnum, ret;
588
589         STAT(user_exception);
590         if (copy_from_user(&excdet, (void __user *)arg, sizeof(excdet)))
591                 return -EFAULT;
592
593         gru_dbg(grudev, "address 0x%lx\n", excdet.cb);
594         gts = gru_find_lock_gts(excdet.cb);
595         if (!gts)
596                 return -EINVAL;
597
598         ucbnum = get_cb_number((void *)excdet.cb);
599         if (ucbnum >= gts->ts_cbr_au_count * GRU_CBR_AU_SIZE) {
600                 ret = -EINVAL;
601         } else if (gts->ts_gru) {
602                 cbrnum = thread_cbr_number(gts, ucbnum);
603                 cbe = get_cbe_by_index(gts->ts_gru, cbrnum);
604                 prefetchw(cbe);/* Harmless on hardware, required for emulator */
605                 excdet.opc = cbe->opccpy;
606                 excdet.exopc = cbe->exopccpy;
607                 excdet.ecause = cbe->ecause;
608                 excdet.exceptdet0 = cbe->idef1upd;
609                 excdet.exceptdet1 = cbe->idef3upd;
610                 excdet.cbrstate = cbe->cbrstate;
611                 excdet.cbrexecstatus = cbe->cbrexecstatus;
612                 ret = 0;
613         } else {
614                 ret = -EAGAIN;
615         }
616         gru_unlock_gts(gts);
617
618         gru_dbg(grudev,
619                 "cb 0x%lx, op %d, exopc %d, cbrstate %d, cbrexecstatus 0x%x, ecause 0x%x, "
620                 "exdet0 0x%lx, exdet1 0x%x\n",
621                 excdet.cb, excdet.opc, excdet.exopc, excdet.cbrstate, excdet.cbrexecstatus,
622                 excdet.ecause, excdet.exceptdet0, excdet.exceptdet1);
623         if (!ret && copy_to_user((void __user *)arg, &excdet, sizeof(excdet)))
624                 ret = -EFAULT;
625         return ret;
626 }
627
628 /*
629  * User request to unload a context. Content is saved for possible reload.
630  */
631 static int gru_unload_all_contexts(void)
632 {
633         struct gru_thread_state *gts;
634         struct gru_state *gru;
635         int gid, ctxnum;
636
637         if (!capable(CAP_SYS_ADMIN))
638                 return -EPERM;
639         foreach_gid(gid) {
640                 gru = GID_TO_GRU(gid);
641                 spin_lock(&gru->gs_lock);
642                 for (ctxnum = 0; ctxnum < GRU_NUM_CCH; ctxnum++) {
643                         gts = gru->gs_gts[ctxnum];
644                         if (gts && mutex_trylock(&gts->ts_ctxlock)) {
645                                 spin_unlock(&gru->gs_lock);
646                                 gru_unload_context(gts, 1);
647                                 mutex_unlock(&gts->ts_ctxlock);
648                                 spin_lock(&gru->gs_lock);
649                         }
650                 }
651                 spin_unlock(&gru->gs_lock);
652         }
653         return 0;
654 }
655
656 int gru_user_unload_context(unsigned long arg)
657 {
658         struct gru_thread_state *gts;
659         struct gru_unload_context_req req;
660
661         STAT(user_unload_context);
662         if (copy_from_user(&req, (void __user *)arg, sizeof(req)))
663                 return -EFAULT;
664
665         gru_dbg(grudev, "gseg 0x%lx\n", req.gseg);
666
667         if (!req.gseg)
668                 return gru_unload_all_contexts();
669
670         gts = gru_find_lock_gts(req.gseg);
671         if (!gts)
672                 return -EINVAL;
673
674         if (gts->ts_gru)
675                 gru_unload_context(gts, 1);
676         gru_unlock_gts(gts);
677
678         return 0;
679 }
680
681 /*
682  * User request to flush a range of virtual addresses from the GRU TLB
683  * (Mainly for testing).
684  */
685 int gru_user_flush_tlb(unsigned long arg)
686 {
687         struct gru_thread_state *gts;
688         struct gru_flush_tlb_req req;
689
690         STAT(user_flush_tlb);
691         if (copy_from_user(&req, (void __user *)arg, sizeof(req)))
692                 return -EFAULT;
693
694         gru_dbg(grudev, "gseg 0x%lx, vaddr 0x%lx, len 0x%lx\n", req.gseg,
695                 req.vaddr, req.len);
696
697         gts = gru_find_lock_gts(req.gseg);
698         if (!gts)
699                 return -EINVAL;
700
701         gru_flush_tlb_range(gts->ts_gms, req.vaddr, req.len);
702         gru_unlock_gts(gts);
703
704         return 0;
705 }
706
707 /*
708  * Register the current task as the user of the GSEG slice.
709  * Needed for TLB fault interrupt targeting.
710  */
711 int gru_set_task_slice(long address)
712 {
713         struct gru_thread_state *gts;
714
715         STAT(set_task_slice);
716         gru_dbg(grudev, "address 0x%lx\n", address);
717         gts = gru_alloc_locked_gts(address);
718         if (!gts)
719                 return -EINVAL;
720
721         gts->ts_tgid_owner = current->tgid;
722         gru_unlock_gts(gts);
723
724         return 0;
725 }