blob: 30bb16efb378203370967e7a8045c7b3221c4997 [file] [log] [blame]
Ralph Campbellf9315512010-05-23 21:44:54 -07001/*
Ramkrishna Vepac804f072013-06-02 15:16:11 -04002 * Copyright (c) 2012, 2013 Intel Corporation. All rights reserved.
Mike Marciniszyn7fac3302012-07-19 13:04:25 +00003 * Copyright (c) 2006 - 2012 QLogic Corporation. All rights reserved.
Ralph Campbellf9315512010-05-23 21:44:54 -07004 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
5 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
33 */
34
35#include <linux/pci.h>
36#include <linux/poll.h>
37#include <linux/cdev.h>
38#include <linux/swap.h>
39#include <linux/vmalloc.h>
40#include <linux/highmem.h>
41#include <linux/io.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070042#include <linux/aio.h>
Ralph Campbellf9315512010-05-23 21:44:54 -070043#include <linux/jiffies.h>
44#include <asm/pgtable.h>
45#include <linux/delay.h>
Paul Gortmakerb108d972011-05-27 15:29:33 -040046#include <linux/export.h>
Ralph Campbellf9315512010-05-23 21:44:54 -070047
48#include "qib.h"
49#include "qib_common.h"
50#include "qib_user_sdma.h"
51
Mike Marciniszyn7fac3302012-07-19 13:04:25 +000052#undef pr_fmt
53#define pr_fmt(fmt) QIB_DRV_NAME ": " fmt
54
Ralph Campbellf9315512010-05-23 21:44:54 -070055static int qib_open(struct inode *, struct file *);
56static int qib_close(struct inode *, struct file *);
57static ssize_t qib_write(struct file *, const char __user *, size_t, loff_t *);
58static ssize_t qib_aio_write(struct kiocb *, const struct iovec *,
59 unsigned long, loff_t);
60static unsigned int qib_poll(struct file *, struct poll_table_struct *);
61static int qib_mmapf(struct file *, struct vm_area_struct *);
62
63static const struct file_operations qib_file_ops = {
64 .owner = THIS_MODULE,
65 .write = qib_write,
66 .aio_write = qib_aio_write,
67 .open = qib_open,
68 .release = qib_close,
69 .poll = qib_poll,
Arnd Bergmann6038f372010-08-15 18:52:59 +020070 .mmap = qib_mmapf,
71 .llseek = noop_llseek,
Ralph Campbellf9315512010-05-23 21:44:54 -070072};
73
74/*
75 * Convert kernel virtual addresses to physical addresses so they don't
76 * potentially conflict with the chip addresses used as mmap offsets.
77 * It doesn't really matter what mmap offset we use as long as we can
78 * interpret it correctly.
79 */
80static u64 cvt_kvaddr(void *p)
81{
82 struct page *page;
83 u64 paddr = 0;
84
85 page = vmalloc_to_page(p);
86 if (page)
87 paddr = page_to_pfn(page) << PAGE_SHIFT;
88
89 return paddr;
90}
91
92static int qib_get_base_info(struct file *fp, void __user *ubase,
93 size_t ubase_size)
94{
95 struct qib_ctxtdata *rcd = ctxt_fp(fp);
96 int ret = 0;
97 struct qib_base_info *kinfo = NULL;
98 struct qib_devdata *dd = rcd->dd;
99 struct qib_pportdata *ppd = rcd->ppd;
100 unsigned subctxt_cnt;
101 int shared, master;
102 size_t sz;
103
104 subctxt_cnt = rcd->subctxt_cnt;
105 if (!subctxt_cnt) {
106 shared = 0;
107 master = 0;
108 subctxt_cnt = 1;
109 } else {
110 shared = 1;
111 master = !subctxt_fp(fp);
112 }
113
114 sz = sizeof(*kinfo);
115 /* If context sharing is not requested, allow the old size structure */
116 if (!shared)
117 sz -= 7 * sizeof(u64);
118 if (ubase_size < sz) {
119 ret = -EINVAL;
120 goto bail;
121 }
122
123 kinfo = kzalloc(sizeof(*kinfo), GFP_KERNEL);
124 if (kinfo == NULL) {
125 ret = -ENOMEM;
126 goto bail;
127 }
128
129 ret = dd->f_get_base_info(rcd, kinfo);
130 if (ret < 0)
131 goto bail;
132
133 kinfo->spi_rcvhdr_cnt = dd->rcvhdrcnt;
134 kinfo->spi_rcvhdrent_size = dd->rcvhdrentsize;
135 kinfo->spi_tidegrcnt = rcd->rcvegrcnt;
136 kinfo->spi_rcv_egrbufsize = dd->rcvegrbufsize;
137 /*
138 * have to mmap whole thing
139 */
140 kinfo->spi_rcv_egrbuftotlen =
141 rcd->rcvegrbuf_chunks * rcd->rcvegrbuf_size;
142 kinfo->spi_rcv_egrperchunk = rcd->rcvegrbufs_perchunk;
143 kinfo->spi_rcv_egrchunksize = kinfo->spi_rcv_egrbuftotlen /
144 rcd->rcvegrbuf_chunks;
145 kinfo->spi_tidcnt = dd->rcvtidcnt / subctxt_cnt;
146 if (master)
147 kinfo->spi_tidcnt += dd->rcvtidcnt % subctxt_cnt;
148 /*
149 * for this use, may be cfgctxts summed over all chips that
150 * are are configured and present
151 */
152 kinfo->spi_nctxts = dd->cfgctxts;
153 /* unit (chip/board) our context is on */
154 kinfo->spi_unit = dd->unit;
155 kinfo->spi_port = ppd->port;
156 /* for now, only a single page */
157 kinfo->spi_tid_maxsize = PAGE_SIZE;
158
159 /*
160 * Doing this per context, and based on the skip value, etc. This has
161 * to be the actual buffer size, since the protocol code treats it
162 * as an array.
163 *
164 * These have to be set to user addresses in the user code via mmap.
165 * These values are used on return to user code for the mmap target
166 * addresses only. For 32 bit, same 44 bit address problem, so use
167 * the physical address, not virtual. Before 2.6.11, using the
168 * page_address() macro worked, but in 2.6.11, even that returns the
169 * full 64 bit address (upper bits all 1's). So far, using the
170 * physical addresses (or chip offsets, for chip mapping) works, but
171 * no doubt some future kernel release will change that, and we'll be
172 * on to yet another method of dealing with this.
173 * Normally only one of rcvhdr_tailaddr or rhf_offset is useful
174 * since the chips with non-zero rhf_offset don't normally
175 * enable tail register updates to host memory, but for testing,
176 * both can be enabled and used.
177 */
178 kinfo->spi_rcvhdr_base = (u64) rcd->rcvhdrq_phys;
179 kinfo->spi_rcvhdr_tailaddr = (u64) rcd->rcvhdrqtailaddr_phys;
180 kinfo->spi_rhf_offset = dd->rhf_offset;
181 kinfo->spi_rcv_egrbufs = (u64) rcd->rcvegr_phys;
182 kinfo->spi_pioavailaddr = (u64) dd->pioavailregs_phys;
183 /* setup per-unit (not port) status area for user programs */
184 kinfo->spi_status = (u64) kinfo->spi_pioavailaddr +
185 (char *) ppd->statusp -
186 (char *) dd->pioavailregs_dma;
187 kinfo->spi_uregbase = (u64) dd->uregbase + dd->ureg_align * rcd->ctxt;
188 if (!shared) {
189 kinfo->spi_piocnt = rcd->piocnt;
190 kinfo->spi_piobufbase = (u64) rcd->piobufs;
191 kinfo->spi_sendbuf_status = cvt_kvaddr(rcd->user_event_mask);
192 } else if (master) {
193 kinfo->spi_piocnt = (rcd->piocnt / subctxt_cnt) +
194 (rcd->piocnt % subctxt_cnt);
195 /* Master's PIO buffers are after all the slave's */
196 kinfo->spi_piobufbase = (u64) rcd->piobufs +
197 dd->palign *
198 (rcd->piocnt - kinfo->spi_piocnt);
199 } else {
200 unsigned slave = subctxt_fp(fp) - 1;
201
202 kinfo->spi_piocnt = rcd->piocnt / subctxt_cnt;
203 kinfo->spi_piobufbase = (u64) rcd->piobufs +
204 dd->palign * kinfo->spi_piocnt * slave;
205 }
206
207 if (shared) {
208 kinfo->spi_sendbuf_status =
209 cvt_kvaddr(&rcd->user_event_mask[subctxt_fp(fp)]);
210 /* only spi_subctxt_* fields should be set in this block! */
211 kinfo->spi_subctxt_uregbase = cvt_kvaddr(rcd->subctxt_uregbase);
212
213 kinfo->spi_subctxt_rcvegrbuf =
214 cvt_kvaddr(rcd->subctxt_rcvegrbuf);
215 kinfo->spi_subctxt_rcvhdr_base =
216 cvt_kvaddr(rcd->subctxt_rcvhdr_base);
217 }
218
219 /*
220 * All user buffers are 2KB buffers. If we ever support
221 * giving 4KB buffers to user processes, this will need some
222 * work. Can't use piobufbase directly, because it has
223 * both 2K and 4K buffer base values.
224 */
225 kinfo->spi_pioindex = (kinfo->spi_piobufbase - dd->pio2k_bufbase) /
226 dd->palign;
227 kinfo->spi_pioalign = dd->palign;
228 kinfo->spi_qpair = QIB_KD_QP;
229 /*
230 * user mode PIO buffers are always 2KB, even when 4KB can
231 * be received, and sent via the kernel; this is ibmaxlen
232 * for 2K MTU.
233 */
234 kinfo->spi_piosize = dd->piosize2k - 2 * sizeof(u32);
235 kinfo->spi_mtu = ppd->ibmaxlen; /* maxlen, not ibmtu */
236 kinfo->spi_ctxt = rcd->ctxt;
237 kinfo->spi_subctxt = subctxt_fp(fp);
238 kinfo->spi_sw_version = QIB_KERN_SWVERSION;
239 kinfo->spi_sw_version |= 1U << 31; /* QLogic-built, not kernel.org */
240 kinfo->spi_hw_version = dd->revision;
241
242 if (master)
243 kinfo->spi_runtime_flags |= QIB_RUNTIME_MASTER;
244
245 sz = (ubase_size < sizeof(*kinfo)) ? ubase_size : sizeof(*kinfo);
246 if (copy_to_user(ubase, kinfo, sz))
247 ret = -EFAULT;
248bail:
249 kfree(kinfo);
250 return ret;
251}
252
253/**
254 * qib_tid_update - update a context TID
255 * @rcd: the context
256 * @fp: the qib device file
257 * @ti: the TID information
258 *
259 * The new implementation as of Oct 2004 is that the driver assigns
260 * the tid and returns it to the caller. To reduce search time, we
261 * keep a cursor for each context, walking the shadow tid array to find
262 * one that's not in use.
263 *
264 * For now, if we can't allocate the full list, we fail, although
265 * in the long run, we'll allocate as many as we can, and the
266 * caller will deal with that by trying the remaining pages later.
267 * That means that when we fail, we have to mark the tids as not in
268 * use again, in our shadow copy.
269 *
270 * It's up to the caller to free the tids when they are done.
271 * We'll unlock the pages as they free them.
272 *
273 * Also, right now we are locking one page at a time, but since
274 * the intended use of this routine is for a single group of
275 * virtually contiguous pages, that should change to improve
276 * performance.
277 */
278static int qib_tid_update(struct qib_ctxtdata *rcd, struct file *fp,
279 const struct qib_tid_info *ti)
280{
281 int ret = 0, ntids;
282 u32 tid, ctxttid, cnt, i, tidcnt, tidoff;
283 u16 *tidlist;
284 struct qib_devdata *dd = rcd->dd;
285 u64 physaddr;
286 unsigned long vaddr;
287 u64 __iomem *tidbase;
288 unsigned long tidmap[8];
289 struct page **pagep = NULL;
290 unsigned subctxt = subctxt_fp(fp);
291
292 if (!dd->pageshadow) {
293 ret = -ENOMEM;
294 goto done;
295 }
296
297 cnt = ti->tidcnt;
298 if (!cnt) {
299 ret = -EFAULT;
300 goto done;
301 }
302 ctxttid = rcd->ctxt * dd->rcvtidcnt;
303 if (!rcd->subctxt_cnt) {
304 tidcnt = dd->rcvtidcnt;
305 tid = rcd->tidcursor;
306 tidoff = 0;
307 } else if (!subctxt) {
308 tidcnt = (dd->rcvtidcnt / rcd->subctxt_cnt) +
309 (dd->rcvtidcnt % rcd->subctxt_cnt);
310 tidoff = dd->rcvtidcnt - tidcnt;
311 ctxttid += tidoff;
312 tid = tidcursor_fp(fp);
313 } else {
314 tidcnt = dd->rcvtidcnt / rcd->subctxt_cnt;
315 tidoff = tidcnt * (subctxt - 1);
316 ctxttid += tidoff;
317 tid = tidcursor_fp(fp);
318 }
319 if (cnt > tidcnt) {
320 /* make sure it all fits in tid_pg_list */
Mike Marciniszyn7fac3302012-07-19 13:04:25 +0000321 qib_devinfo(dd->pcidev,
322 "Process tried to allocate %u TIDs, only trying max (%u)\n",
323 cnt, tidcnt);
Ralph Campbellf9315512010-05-23 21:44:54 -0700324 cnt = tidcnt;
325 }
326 pagep = (struct page **) rcd->tid_pg_list;
327 tidlist = (u16 *) &pagep[dd->rcvtidcnt];
328 pagep += tidoff;
329 tidlist += tidoff;
330
331 memset(tidmap, 0, sizeof(tidmap));
332 /* before decrement; chip actual # */
333 ntids = tidcnt;
334 tidbase = (u64 __iomem *) (((char __iomem *) dd->kregbase) +
335 dd->rcvtidbase +
336 ctxttid * sizeof(*tidbase));
337
338 /* virtual address of first page in transfer */
339 vaddr = ti->tidvaddr;
340 if (!access_ok(VERIFY_WRITE, (void __user *) vaddr,
341 cnt * PAGE_SIZE)) {
342 ret = -EFAULT;
343 goto done;
344 }
345 ret = qib_get_user_pages(vaddr, cnt, pagep);
346 if (ret) {
347 /*
348 * if (ret == -EBUSY)
349 * We can't continue because the pagep array won't be
350 * initialized. This should never happen,
351 * unless perhaps the user has mpin'ed the pages
352 * themselves.
353 */
Mike Marciniszyna46a2802015-01-16 10:52:18 -0500354 qib_devinfo(
355 dd->pcidev,
356 "Failed to lock addr %p, %u pages: errno %d\n",
357 (void *) vaddr, cnt, -ret);
Ralph Campbellf9315512010-05-23 21:44:54 -0700358 goto done;
359 }
360 for (i = 0; i < cnt; i++, vaddr += PAGE_SIZE) {
361 for (; ntids--; tid++) {
362 if (tid == tidcnt)
363 tid = 0;
364 if (!dd->pageshadow[ctxttid + tid])
365 break;
366 }
367 if (ntids < 0) {
368 /*
369 * Oops, wrapped all the way through their TIDs,
370 * and didn't have enough free; see comments at
371 * start of routine
372 */
373 i--; /* last tidlist[i] not filled in */
374 ret = -ENOMEM;
375 break;
376 }
377 tidlist[i] = tid + tidoff;
378 /* we "know" system pages and TID pages are same size */
379 dd->pageshadow[ctxttid + tid] = pagep[i];
380 dd->physshadow[ctxttid + tid] =
381 qib_map_page(dd->pcidev, pagep[i], 0, PAGE_SIZE,
382 PCI_DMA_FROMDEVICE);
383 /*
384 * don't need atomic or it's overhead
385 */
386 __set_bit(tid, tidmap);
387 physaddr = dd->physshadow[ctxttid + tid];
388 /* PERFORMANCE: below should almost certainly be cached */
389 dd->f_put_tid(dd, &tidbase[tid],
390 RCVHQ_RCV_TYPE_EXPECTED, physaddr);
391 /*
392 * don't check this tid in qib_ctxtshadow, since we
393 * just filled it in; start with the next one.
394 */
395 tid++;
396 }
397
398 if (ret) {
399 u32 limit;
400cleanup:
401 /* jump here if copy out of updated info failed... */
402 /* same code that's in qib_free_tid() */
403 limit = sizeof(tidmap) * BITS_PER_BYTE;
404 if (limit > tidcnt)
405 /* just in case size changes in future */
406 limit = tidcnt;
407 tid = find_first_bit((const unsigned long *)tidmap, limit);
408 for (; tid < limit; tid++) {
409 if (!test_bit(tid, tidmap))
410 continue;
411 if (dd->pageshadow[ctxttid + tid]) {
412 dma_addr_t phys;
413
414 phys = dd->physshadow[ctxttid + tid];
415 dd->physshadow[ctxttid + tid] = dd->tidinvalid;
416 /* PERFORMANCE: below should almost certainly
417 * be cached
418 */
419 dd->f_put_tid(dd, &tidbase[tid],
420 RCVHQ_RCV_TYPE_EXPECTED,
421 dd->tidinvalid);
422 pci_unmap_page(dd->pcidev, phys, PAGE_SIZE,
423 PCI_DMA_FROMDEVICE);
424 dd->pageshadow[ctxttid + tid] = NULL;
425 }
426 }
427 qib_release_user_pages(pagep, cnt);
428 } else {
429 /*
430 * Copy the updated array, with qib_tid's filled in, back
431 * to user. Since we did the copy in already, this "should
432 * never fail" If it does, we have to clean up...
433 */
434 if (copy_to_user((void __user *)
435 (unsigned long) ti->tidlist,
436 tidlist, cnt * sizeof(*tidlist))) {
437 ret = -EFAULT;
438 goto cleanup;
439 }
440 if (copy_to_user((void __user *) (unsigned long) ti->tidmap,
Mike Marciniszyn041af0b2015-01-16 10:50:32 -0500441 tidmap, sizeof(tidmap))) {
Ralph Campbellf9315512010-05-23 21:44:54 -0700442 ret = -EFAULT;
443 goto cleanup;
444 }
445 if (tid == tidcnt)
446 tid = 0;
447 if (!rcd->subctxt_cnt)
448 rcd->tidcursor = tid;
449 else
450 tidcursor_fp(fp) = tid;
451 }
452
453done:
454 return ret;
455}
456
457/**
458 * qib_tid_free - free a context TID
459 * @rcd: the context
460 * @subctxt: the subcontext
461 * @ti: the TID info
462 *
463 * right now we are unlocking one page at a time, but since
464 * the intended use of this routine is for a single group of
465 * virtually contiguous pages, that should change to improve
466 * performance. We check that the TID is in range for this context
467 * but otherwise don't check validity; if user has an error and
468 * frees the wrong tid, it's only their own data that can thereby
469 * be corrupted. We do check that the TID was in use, for sanity
470 * We always use our idea of the saved address, not the address that
471 * they pass in to us.
472 */
473static int qib_tid_free(struct qib_ctxtdata *rcd, unsigned subctxt,
474 const struct qib_tid_info *ti)
475{
476 int ret = 0;
477 u32 tid, ctxttid, cnt, limit, tidcnt;
478 struct qib_devdata *dd = rcd->dd;
479 u64 __iomem *tidbase;
480 unsigned long tidmap[8];
481
482 if (!dd->pageshadow) {
483 ret = -ENOMEM;
484 goto done;
485 }
486
487 if (copy_from_user(tidmap, (void __user *)(unsigned long)ti->tidmap,
Mike Marciniszyn041af0b2015-01-16 10:50:32 -0500488 sizeof(tidmap))) {
Ralph Campbellf9315512010-05-23 21:44:54 -0700489 ret = -EFAULT;
490 goto done;
491 }
492
493 ctxttid = rcd->ctxt * dd->rcvtidcnt;
494 if (!rcd->subctxt_cnt)
495 tidcnt = dd->rcvtidcnt;
496 else if (!subctxt) {
497 tidcnt = (dd->rcvtidcnt / rcd->subctxt_cnt) +
498 (dd->rcvtidcnt % rcd->subctxt_cnt);
499 ctxttid += dd->rcvtidcnt - tidcnt;
500 } else {
501 tidcnt = dd->rcvtidcnt / rcd->subctxt_cnt;
502 ctxttid += tidcnt * (subctxt - 1);
503 }
504 tidbase = (u64 __iomem *) ((char __iomem *)(dd->kregbase) +
505 dd->rcvtidbase +
506 ctxttid * sizeof(*tidbase));
507
508 limit = sizeof(tidmap) * BITS_PER_BYTE;
509 if (limit > tidcnt)
510 /* just in case size changes in future */
511 limit = tidcnt;
512 tid = find_first_bit(tidmap, limit);
513 for (cnt = 0; tid < limit; tid++) {
514 /*
515 * small optimization; if we detect a run of 3 or so without
516 * any set, use find_first_bit again. That's mainly to
517 * accelerate the case where we wrapped, so we have some at
518 * the beginning, and some at the end, and a big gap
519 * in the middle.
520 */
521 if (!test_bit(tid, tidmap))
522 continue;
523 cnt++;
524 if (dd->pageshadow[ctxttid + tid]) {
525 struct page *p;
526 dma_addr_t phys;
527
528 p = dd->pageshadow[ctxttid + tid];
529 dd->pageshadow[ctxttid + tid] = NULL;
530 phys = dd->physshadow[ctxttid + tid];
531 dd->physshadow[ctxttid + tid] = dd->tidinvalid;
532 /* PERFORMANCE: below should almost certainly be
533 * cached
534 */
535 dd->f_put_tid(dd, &tidbase[tid],
536 RCVHQ_RCV_TYPE_EXPECTED, dd->tidinvalid);
537 pci_unmap_page(dd->pcidev, phys, PAGE_SIZE,
538 PCI_DMA_FROMDEVICE);
539 qib_release_user_pages(&p, 1);
540 }
541 }
542done:
543 return ret;
544}
545
546/**
547 * qib_set_part_key - set a partition key
548 * @rcd: the context
549 * @key: the key
550 *
551 * We can have up to 4 active at a time (other than the default, which is
552 * always allowed). This is somewhat tricky, since multiple contexts may set
553 * the same key, so we reference count them, and clean up at exit. All 4
554 * partition keys are packed into a single qlogic_ib register. It's an
555 * error for a process to set the same pkey multiple times. We provide no
556 * mechanism to de-allocate a pkey at this time, we may eventually need to
557 * do that. I've used the atomic operations, and no locking, and only make
558 * a single pass through what's available. This should be more than
559 * adequate for some time. I'll think about spinlocks or the like if and as
560 * it's necessary.
561 */
562static int qib_set_part_key(struct qib_ctxtdata *rcd, u16 key)
563{
564 struct qib_pportdata *ppd = rcd->ppd;
565 int i, any = 0, pidx = -1;
566 u16 lkey = key & 0x7FFF;
567 int ret;
568
569 if (lkey == (QIB_DEFAULT_P_KEY & 0x7FFF)) {
570 /* nothing to do; this key always valid */
571 ret = 0;
572 goto bail;
573 }
574
575 if (!lkey) {
576 ret = -EINVAL;
577 goto bail;
578 }
579
580 /*
581 * Set the full membership bit, because it has to be
582 * set in the register or the packet, and it seems
583 * cleaner to set in the register than to force all
584 * callers to set it.
585 */
586 key |= 0x8000;
587
588 for (i = 0; i < ARRAY_SIZE(rcd->pkeys); i++) {
589 if (!rcd->pkeys[i] && pidx == -1)
590 pidx = i;
591 if (rcd->pkeys[i] == key) {
592 ret = -EEXIST;
593 goto bail;
594 }
595 }
596 if (pidx == -1) {
597 ret = -EBUSY;
598 goto bail;
599 }
600 for (any = i = 0; i < ARRAY_SIZE(ppd->pkeys); i++) {
601 if (!ppd->pkeys[i]) {
602 any++;
603 continue;
604 }
605 if (ppd->pkeys[i] == key) {
606 atomic_t *pkrefs = &ppd->pkeyrefs[i];
607
608 if (atomic_inc_return(pkrefs) > 1) {
609 rcd->pkeys[pidx] = key;
610 ret = 0;
611 goto bail;
612 } else {
613 /*
614 * lost race, decrement count, catch below
615 */
616 atomic_dec(pkrefs);
617 any++;
618 }
619 }
620 if ((ppd->pkeys[i] & 0x7FFF) == lkey) {
621 /*
622 * It makes no sense to have both the limited and
623 * full membership PKEY set at the same time since
624 * the unlimited one will disable the limited one.
625 */
626 ret = -EEXIST;
627 goto bail;
628 }
629 }
630 if (!any) {
631 ret = -EBUSY;
632 goto bail;
633 }
634 for (any = i = 0; i < ARRAY_SIZE(ppd->pkeys); i++) {
635 if (!ppd->pkeys[i] &&
636 atomic_inc_return(&ppd->pkeyrefs[i]) == 1) {
637 rcd->pkeys[pidx] = key;
638 ppd->pkeys[i] = key;
639 (void) ppd->dd->f_set_ib_cfg(ppd, QIB_IB_CFG_PKEYS, 0);
640 ret = 0;
641 goto bail;
642 }
643 }
644 ret = -EBUSY;
645
646bail:
647 return ret;
648}
649
650/**
651 * qib_manage_rcvq - manage a context's receive queue
652 * @rcd: the context
653 * @subctxt: the subcontext
654 * @start_stop: action to carry out
655 *
656 * start_stop == 0 disables receive on the context, for use in queue
657 * overflow conditions. start_stop==1 re-enables, to be used to
658 * re-init the software copy of the head register
659 */
660static int qib_manage_rcvq(struct qib_ctxtdata *rcd, unsigned subctxt,
661 int start_stop)
662{
663 struct qib_devdata *dd = rcd->dd;
664 unsigned int rcvctrl_op;
665
666 if (subctxt)
667 goto bail;
668 /* atomically clear receive enable ctxt. */
669 if (start_stop) {
670 /*
671 * On enable, force in-memory copy of the tail register to
672 * 0, so that protocol code doesn't have to worry about
673 * whether or not the chip has yet updated the in-memory
674 * copy or not on return from the system call. The chip
675 * always resets it's tail register back to 0 on a
676 * transition from disabled to enabled.
677 */
678 if (rcd->rcvhdrtail_kvaddr)
679 qib_clear_rcvhdrtail(rcd);
680 rcvctrl_op = QIB_RCVCTRL_CTXT_ENB;
681 } else
682 rcvctrl_op = QIB_RCVCTRL_CTXT_DIS;
683 dd->f_rcvctrl(rcd->ppd, rcvctrl_op, rcd->ctxt);
684 /* always; new head should be equal to new tail; see above */
685bail:
686 return 0;
687}
688
689static void qib_clean_part_key(struct qib_ctxtdata *rcd,
690 struct qib_devdata *dd)
691{
692 int i, j, pchanged = 0;
693 u64 oldpkey;
694 struct qib_pportdata *ppd = rcd->ppd;
695
696 /* for debugging only */
697 oldpkey = (u64) ppd->pkeys[0] |
698 ((u64) ppd->pkeys[1] << 16) |
699 ((u64) ppd->pkeys[2] << 32) |
700 ((u64) ppd->pkeys[3] << 48);
701
702 for (i = 0; i < ARRAY_SIZE(rcd->pkeys); i++) {
703 if (!rcd->pkeys[i])
704 continue;
705 for (j = 0; j < ARRAY_SIZE(ppd->pkeys); j++) {
706 /* check for match independent of the global bit */
707 if ((ppd->pkeys[j] & 0x7fff) !=
708 (rcd->pkeys[i] & 0x7fff))
709 continue;
710 if (atomic_dec_and_test(&ppd->pkeyrefs[j])) {
711 ppd->pkeys[j] = 0;
712 pchanged++;
713 }
714 break;
715 }
716 rcd->pkeys[i] = 0;
717 }
718 if (pchanged)
719 (void) ppd->dd->f_set_ib_cfg(ppd, QIB_IB_CFG_PKEYS, 0);
720}
721
722/* common code for the mappings on dma_alloc_coherent mem */
723static int qib_mmap_mem(struct vm_area_struct *vma, struct qib_ctxtdata *rcd,
724 unsigned len, void *kvaddr, u32 write_ok, char *what)
725{
726 struct qib_devdata *dd = rcd->dd;
727 unsigned long pfn;
728 int ret;
729
730 if ((vma->vm_end - vma->vm_start) > len) {
731 qib_devinfo(dd->pcidev,
732 "FAIL on %s: len %lx > %x\n", what,
733 vma->vm_end - vma->vm_start, len);
734 ret = -EFAULT;
735 goto bail;
736 }
737
738 /*
739 * shared context user code requires rcvhdrq mapped r/w, others
740 * only allowed readonly mapping.
741 */
742 if (!write_ok) {
743 if (vma->vm_flags & VM_WRITE) {
744 qib_devinfo(dd->pcidev,
745 "%s must be mapped readonly\n", what);
746 ret = -EPERM;
747 goto bail;
748 }
749
750 /* don't allow them to later change with mprotect */
751 vma->vm_flags &= ~VM_MAYWRITE;
752 }
753
754 pfn = virt_to_phys(kvaddr) >> PAGE_SHIFT;
755 ret = remap_pfn_range(vma, vma->vm_start, pfn,
756 len, vma->vm_page_prot);
757 if (ret)
Mike Marciniszyn7fac3302012-07-19 13:04:25 +0000758 qib_devinfo(dd->pcidev,
759 "%s ctxt%u mmap of %lx, %x bytes failed: %d\n",
760 what, rcd->ctxt, pfn, len, ret);
Ralph Campbellf9315512010-05-23 21:44:54 -0700761bail:
762 return ret;
763}
764
765static int mmap_ureg(struct vm_area_struct *vma, struct qib_devdata *dd,
766 u64 ureg)
767{
768 unsigned long phys;
769 unsigned long sz;
770 int ret;
771
772 /*
773 * This is real hardware, so use io_remap. This is the mechanism
774 * for the user process to update the head registers for their ctxt
775 * in the chip.
776 */
777 sz = dd->flags & QIB_HAS_HDRSUPP ? 2 * PAGE_SIZE : PAGE_SIZE;
778 if ((vma->vm_end - vma->vm_start) > sz) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +0000779 qib_devinfo(dd->pcidev,
780 "FAIL mmap userreg: reqlen %lx > PAGE\n",
781 vma->vm_end - vma->vm_start);
Ralph Campbellf9315512010-05-23 21:44:54 -0700782 ret = -EFAULT;
783 } else {
784 phys = dd->physaddr + ureg;
785 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
786
787 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND;
788 ret = io_remap_pfn_range(vma, vma->vm_start,
789 phys >> PAGE_SHIFT,
790 vma->vm_end - vma->vm_start,
791 vma->vm_page_prot);
792 }
793 return ret;
794}
795
796static int mmap_piobufs(struct vm_area_struct *vma,
797 struct qib_devdata *dd,
798 struct qib_ctxtdata *rcd,
799 unsigned piobufs, unsigned piocnt)
800{
801 unsigned long phys;
802 int ret;
803
804 /*
805 * When we map the PIO buffers in the chip, we want to map them as
806 * writeonly, no read possible; unfortunately, x86 doesn't allow
807 * for this in hardware, but we still prevent users from asking
808 * for it.
809 */
810 if ((vma->vm_end - vma->vm_start) > (piocnt * dd->palign)) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +0000811 qib_devinfo(dd->pcidev,
812 "FAIL mmap piobufs: reqlen %lx > PAGE\n",
Ralph Campbellf9315512010-05-23 21:44:54 -0700813 vma->vm_end - vma->vm_start);
814 ret = -EINVAL;
815 goto bail;
816 }
817
818 phys = dd->physaddr + piobufs;
819
820#if defined(__powerpc__)
821 /* There isn't a generic way to specify writethrough mappings */
822 pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
823 pgprot_val(vma->vm_page_prot) |= _PAGE_WRITETHRU;
824 pgprot_val(vma->vm_page_prot) &= ~_PAGE_GUARDED;
825#endif
826
827 /*
828 * don't allow them to later change to readable with mprotect (for when
829 * not initially mapped readable, as is normally the case)
830 */
831 vma->vm_flags &= ~VM_MAYREAD;
832 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND;
833
834 if (qib_wc_pat)
835 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
836
837 ret = io_remap_pfn_range(vma, vma->vm_start, phys >> PAGE_SHIFT,
838 vma->vm_end - vma->vm_start,
839 vma->vm_page_prot);
840bail:
841 return ret;
842}
843
844static int mmap_rcvegrbufs(struct vm_area_struct *vma,
845 struct qib_ctxtdata *rcd)
846{
847 struct qib_devdata *dd = rcd->dd;
848 unsigned long start, size;
849 size_t total_size, i;
850 unsigned long pfn;
851 int ret;
852
853 size = rcd->rcvegrbuf_size;
854 total_size = rcd->rcvegrbuf_chunks * size;
855 if ((vma->vm_end - vma->vm_start) > total_size) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +0000856 qib_devinfo(dd->pcidev,
857 "FAIL on egr bufs: reqlen %lx > actual %lx\n",
Ralph Campbellf9315512010-05-23 21:44:54 -0700858 vma->vm_end - vma->vm_start,
859 (unsigned long) total_size);
860 ret = -EINVAL;
861 goto bail;
862 }
863
864 if (vma->vm_flags & VM_WRITE) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +0000865 qib_devinfo(dd->pcidev,
866 "Can't map eager buffers as writable (flags=%lx)\n",
867 vma->vm_flags);
Ralph Campbellf9315512010-05-23 21:44:54 -0700868 ret = -EPERM;
869 goto bail;
870 }
871 /* don't allow them to later change to writeable with mprotect */
872 vma->vm_flags &= ~VM_MAYWRITE;
873
874 start = vma->vm_start;
875
876 for (i = 0; i < rcd->rcvegrbuf_chunks; i++, start += size) {
877 pfn = virt_to_phys(rcd->rcvegrbuf[i]) >> PAGE_SHIFT;
878 ret = remap_pfn_range(vma, start, pfn, size,
879 vma->vm_page_prot);
880 if (ret < 0)
881 goto bail;
882 }
883 ret = 0;
884
885bail:
886 return ret;
887}
888
889/*
890 * qib_file_vma_fault - handle a VMA page fault.
891 */
892static int qib_file_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
893{
894 struct page *page;
895
896 page = vmalloc_to_page((void *)(vmf->pgoff << PAGE_SHIFT));
897 if (!page)
898 return VM_FAULT_SIGBUS;
899
900 get_page(page);
901 vmf->page = page;
902
903 return 0;
904}
905
906static struct vm_operations_struct qib_file_vm_ops = {
907 .fault = qib_file_vma_fault,
908};
909
910static int mmap_kvaddr(struct vm_area_struct *vma, u64 pgaddr,
911 struct qib_ctxtdata *rcd, unsigned subctxt)
912{
913 struct qib_devdata *dd = rcd->dd;
914 unsigned subctxt_cnt;
915 unsigned long len;
916 void *addr;
917 size_t size;
918 int ret = 0;
919
920 subctxt_cnt = rcd->subctxt_cnt;
921 size = rcd->rcvegrbuf_chunks * rcd->rcvegrbuf_size;
922
923 /*
924 * Each process has all the subctxt uregbase, rcvhdrq, and
925 * rcvegrbufs mmapped - as an array for all the processes,
926 * and also separately for this process.
927 */
928 if (pgaddr == cvt_kvaddr(rcd->subctxt_uregbase)) {
929 addr = rcd->subctxt_uregbase;
930 size = PAGE_SIZE * subctxt_cnt;
931 } else if (pgaddr == cvt_kvaddr(rcd->subctxt_rcvhdr_base)) {
932 addr = rcd->subctxt_rcvhdr_base;
933 size = rcd->rcvhdrq_size * subctxt_cnt;
934 } else if (pgaddr == cvt_kvaddr(rcd->subctxt_rcvegrbuf)) {
935 addr = rcd->subctxt_rcvegrbuf;
936 size *= subctxt_cnt;
937 } else if (pgaddr == cvt_kvaddr(rcd->subctxt_uregbase +
938 PAGE_SIZE * subctxt)) {
939 addr = rcd->subctxt_uregbase + PAGE_SIZE * subctxt;
940 size = PAGE_SIZE;
941 } else if (pgaddr == cvt_kvaddr(rcd->subctxt_rcvhdr_base +
942 rcd->rcvhdrq_size * subctxt)) {
943 addr = rcd->subctxt_rcvhdr_base +
944 rcd->rcvhdrq_size * subctxt;
945 size = rcd->rcvhdrq_size;
946 } else if (pgaddr == cvt_kvaddr(&rcd->user_event_mask[subctxt])) {
947 addr = rcd->user_event_mask;
948 size = PAGE_SIZE;
949 } else if (pgaddr == cvt_kvaddr(rcd->subctxt_rcvegrbuf +
950 size * subctxt)) {
951 addr = rcd->subctxt_rcvegrbuf + size * subctxt;
952 /* rcvegrbufs are read-only on the slave */
953 if (vma->vm_flags & VM_WRITE) {
954 qib_devinfo(dd->pcidev,
Mike Marciniszyna46a2802015-01-16 10:52:18 -0500955 "Can't map eager buffers as writable (flags=%lx)\n",
956 vma->vm_flags);
Ralph Campbellf9315512010-05-23 21:44:54 -0700957 ret = -EPERM;
958 goto bail;
959 }
960 /*
961 * Don't allow permission to later change to writeable
962 * with mprotect.
963 */
964 vma->vm_flags &= ~VM_MAYWRITE;
965 } else
966 goto bail;
967 len = vma->vm_end - vma->vm_start;
968 if (len > size) {
969 ret = -EINVAL;
970 goto bail;
971 }
972
973 vma->vm_pgoff = (unsigned long) addr >> PAGE_SHIFT;
974 vma->vm_ops = &qib_file_vm_ops;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700975 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Ralph Campbellf9315512010-05-23 21:44:54 -0700976 ret = 1;
977
978bail:
979 return ret;
980}
981
982/**
983 * qib_mmapf - mmap various structures into user space
984 * @fp: the file pointer
985 * @vma: the VM area
986 *
987 * We use this to have a shared buffer between the kernel and the user code
988 * for the rcvhdr queue, egr buffers, and the per-context user regs and pio
989 * buffers in the chip. We have the open and close entries so we can bump
990 * the ref count and keep the driver from being unloaded while still mapped.
991 */
992static int qib_mmapf(struct file *fp, struct vm_area_struct *vma)
993{
994 struct qib_ctxtdata *rcd;
995 struct qib_devdata *dd;
996 u64 pgaddr, ureg;
997 unsigned piobufs, piocnt;
998 int ret, match = 1;
999
1000 rcd = ctxt_fp(fp);
1001 if (!rcd || !(vma->vm_flags & VM_SHARED)) {
1002 ret = -EINVAL;
1003 goto bail;
1004 }
1005 dd = rcd->dd;
1006
1007 /*
1008 * This is the qib_do_user_init() code, mapping the shared buffers
1009 * and per-context user registers into the user process. The address
1010 * referred to by vm_pgoff is the file offset passed via mmap().
1011 * For shared contexts, this is the kernel vmalloc() address of the
1012 * pages to share with the master.
1013 * For non-shared or master ctxts, this is a physical address.
1014 * We only do one mmap for each space mapped.
1015 */
1016 pgaddr = vma->vm_pgoff << PAGE_SHIFT;
1017
1018 /*
1019 * Check for 0 in case one of the allocations failed, but user
1020 * called mmap anyway.
1021 */
1022 if (!pgaddr) {
1023 ret = -EINVAL;
1024 goto bail;
1025 }
1026
1027 /*
1028 * Physical addresses must fit in 40 bits for our hardware.
1029 * Check for kernel virtual addresses first, anything else must
1030 * match a HW or memory address.
1031 */
1032 ret = mmap_kvaddr(vma, pgaddr, rcd, subctxt_fp(fp));
1033 if (ret) {
1034 if (ret > 0)
1035 ret = 0;
1036 goto bail;
1037 }
1038
1039 ureg = dd->uregbase + dd->ureg_align * rcd->ctxt;
1040 if (!rcd->subctxt_cnt) {
1041 /* ctxt is not shared */
1042 piocnt = rcd->piocnt;
1043 piobufs = rcd->piobufs;
1044 } else if (!subctxt_fp(fp)) {
1045 /* caller is the master */
1046 piocnt = (rcd->piocnt / rcd->subctxt_cnt) +
1047 (rcd->piocnt % rcd->subctxt_cnt);
1048 piobufs = rcd->piobufs +
1049 dd->palign * (rcd->piocnt - piocnt);
1050 } else {
1051 unsigned slave = subctxt_fp(fp) - 1;
1052
1053 /* caller is a slave */
1054 piocnt = rcd->piocnt / rcd->subctxt_cnt;
1055 piobufs = rcd->piobufs + dd->palign * piocnt * slave;
1056 }
1057
1058 if (pgaddr == ureg)
1059 ret = mmap_ureg(vma, dd, ureg);
1060 else if (pgaddr == piobufs)
1061 ret = mmap_piobufs(vma, dd, rcd, piobufs, piocnt);
1062 else if (pgaddr == dd->pioavailregs_phys)
1063 /* in-memory copy of pioavail registers */
1064 ret = qib_mmap_mem(vma, rcd, PAGE_SIZE,
1065 (void *) dd->pioavailregs_dma, 0,
1066 "pioavail registers");
1067 else if (pgaddr == rcd->rcvegr_phys)
1068 ret = mmap_rcvegrbufs(vma, rcd);
1069 else if (pgaddr == (u64) rcd->rcvhdrq_phys)
1070 /*
1071 * The rcvhdrq itself; multiple pages, contiguous
1072 * from an i/o perspective. Shared contexts need
1073 * to map r/w, so we allow writing.
1074 */
1075 ret = qib_mmap_mem(vma, rcd, rcd->rcvhdrq_size,
1076 rcd->rcvhdrq, 1, "rcvhdrq");
1077 else if (pgaddr == (u64) rcd->rcvhdrqtailaddr_phys)
1078 /* in-memory copy of rcvhdrq tail register */
1079 ret = qib_mmap_mem(vma, rcd, PAGE_SIZE,
1080 rcd->rcvhdrtail_kvaddr, 0,
1081 "rcvhdrq tail");
1082 else
1083 match = 0;
1084 if (!match)
1085 ret = -EINVAL;
1086
1087 vma->vm_private_data = NULL;
1088
1089 if (ret < 0)
1090 qib_devinfo(dd->pcidev,
1091 "mmap Failure %d: off %llx len %lx\n",
1092 -ret, (unsigned long long)pgaddr,
1093 vma->vm_end - vma->vm_start);
1094bail:
1095 return ret;
1096}
1097
1098static unsigned int qib_poll_urgent(struct qib_ctxtdata *rcd,
1099 struct file *fp,
1100 struct poll_table_struct *pt)
1101{
1102 struct qib_devdata *dd = rcd->dd;
1103 unsigned pollflag;
1104
1105 poll_wait(fp, &rcd->wait, pt);
1106
1107 spin_lock_irq(&dd->uctxt_lock);
1108 if (rcd->urgent != rcd->urgent_poll) {
1109 pollflag = POLLIN | POLLRDNORM;
1110 rcd->urgent_poll = rcd->urgent;
1111 } else {
1112 pollflag = 0;
1113 set_bit(QIB_CTXT_WAITING_URG, &rcd->flag);
1114 }
1115 spin_unlock_irq(&dd->uctxt_lock);
1116
1117 return pollflag;
1118}
1119
1120static unsigned int qib_poll_next(struct qib_ctxtdata *rcd,
1121 struct file *fp,
1122 struct poll_table_struct *pt)
1123{
1124 struct qib_devdata *dd = rcd->dd;
1125 unsigned pollflag;
1126
1127 poll_wait(fp, &rcd->wait, pt);
1128
1129 spin_lock_irq(&dd->uctxt_lock);
1130 if (dd->f_hdrqempty(rcd)) {
1131 set_bit(QIB_CTXT_WAITING_RCV, &rcd->flag);
1132 dd->f_rcvctrl(rcd->ppd, QIB_RCVCTRL_INTRAVAIL_ENB, rcd->ctxt);
1133 pollflag = 0;
1134 } else
1135 pollflag = POLLIN | POLLRDNORM;
1136 spin_unlock_irq(&dd->uctxt_lock);
1137
1138 return pollflag;
1139}
1140
1141static unsigned int qib_poll(struct file *fp, struct poll_table_struct *pt)
1142{
1143 struct qib_ctxtdata *rcd;
1144 unsigned pollflag;
1145
1146 rcd = ctxt_fp(fp);
1147 if (!rcd)
1148 pollflag = POLLERR;
1149 else if (rcd->poll_type == QIB_POLL_TYPE_URGENT)
1150 pollflag = qib_poll_urgent(rcd, fp, pt);
1151 else if (rcd->poll_type == QIB_POLL_TYPE_ANYRCV)
1152 pollflag = qib_poll_next(rcd, fp, pt);
1153 else /* invalid */
1154 pollflag = POLLERR;
1155
1156 return pollflag;
1157}
1158
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001159static void assign_ctxt_affinity(struct file *fp, struct qib_devdata *dd)
1160{
1161 struct qib_filedata *fd = fp->private_data;
1162 const unsigned int weight = cpumask_weight(&current->cpus_allowed);
1163 const struct cpumask *local_mask = cpumask_of_pcibus(dd->pcidev->bus);
1164 int local_cpu;
1165
1166 /*
1167 * If process has NOT already set it's affinity, select and
1168 * reserve a processor for it on the local NUMA node.
1169 */
1170 if ((weight >= qib_cpulist_count) &&
1171 (cpumask_weight(local_mask) <= qib_cpulist_count)) {
1172 for_each_cpu(local_cpu, local_mask)
1173 if (!test_and_set_bit(local_cpu, qib_cpulist)) {
1174 fd->rec_cpu_num = local_cpu;
1175 return;
1176 }
1177 }
1178
1179 /*
1180 * If process has NOT already set it's affinity, select and
1181 * reserve a processor for it, as a rendevous for all
1182 * users of the driver. If they don't actually later
1183 * set affinity to this cpu, or set it to some other cpu,
1184 * it just means that sooner or later we don't recommend
1185 * a cpu, and let the scheduler do it's best.
1186 */
1187 if (weight >= qib_cpulist_count) {
1188 int cpu;
1189 cpu = find_first_zero_bit(qib_cpulist,
1190 qib_cpulist_count);
1191 if (cpu == qib_cpulist_count)
1192 qib_dev_err(dd,
1193 "no cpus avail for affinity PID %u\n",
1194 current->pid);
1195 else {
1196 __set_bit(cpu, qib_cpulist);
1197 fd->rec_cpu_num = cpu;
1198 }
1199 }
1200}
1201
Ralph Campbellf9315512010-05-23 21:44:54 -07001202/*
1203 * Check that userland and driver are compatible for subcontexts.
1204 */
1205static int qib_compatible_subctxts(int user_swmajor, int user_swminor)
1206{
1207 /* this code is written long-hand for clarity */
1208 if (QIB_USER_SWMAJOR != user_swmajor) {
1209 /* no promise of compatibility if major mismatch */
1210 return 0;
1211 }
1212 if (QIB_USER_SWMAJOR == 1) {
1213 switch (QIB_USER_SWMINOR) {
1214 case 0:
1215 case 1:
1216 case 2:
1217 /* no subctxt implementation so cannot be compatible */
1218 return 0;
1219 case 3:
1220 /* 3 is only compatible with itself */
1221 return user_swminor == 3;
1222 default:
1223 /* >= 4 are compatible (or are expected to be) */
CQ Tang4668e4b2013-07-19 13:57:21 -04001224 return user_swminor <= QIB_USER_SWMINOR;
Ralph Campbellf9315512010-05-23 21:44:54 -07001225 }
1226 }
1227 /* make no promises yet for future major versions */
1228 return 0;
1229}
1230
1231static int init_subctxts(struct qib_devdata *dd,
1232 struct qib_ctxtdata *rcd,
1233 const struct qib_user_info *uinfo)
1234{
1235 int ret = 0;
1236 unsigned num_subctxts;
1237 size_t size;
1238
1239 /*
1240 * If the user is requesting zero subctxts,
1241 * skip the subctxt allocation.
1242 */
1243 if (uinfo->spu_subctxt_cnt <= 0)
1244 goto bail;
1245 num_subctxts = uinfo->spu_subctxt_cnt;
1246
1247 /* Check for subctxt compatibility */
1248 if (!qib_compatible_subctxts(uinfo->spu_userversion >> 16,
1249 uinfo->spu_userversion & 0xffff)) {
1250 qib_devinfo(dd->pcidev,
Mike Marciniszyna46a2802015-01-16 10:52:18 -05001251 "Mismatched user version (%d.%d) and driver version (%d.%d) while context sharing. Ensure that driver and library are from the same release.\n",
Ralph Campbellf9315512010-05-23 21:44:54 -07001252 (int) (uinfo->spu_userversion >> 16),
1253 (int) (uinfo->spu_userversion & 0xffff),
1254 QIB_USER_SWMAJOR, QIB_USER_SWMINOR);
1255 goto bail;
1256 }
1257 if (num_subctxts > QLOGIC_IB_MAX_SUBCTXT) {
1258 ret = -EINVAL;
1259 goto bail;
1260 }
1261
1262 rcd->subctxt_uregbase = vmalloc_user(PAGE_SIZE * num_subctxts);
1263 if (!rcd->subctxt_uregbase) {
1264 ret = -ENOMEM;
1265 goto bail;
1266 }
1267 /* Note: rcd->rcvhdrq_size isn't initialized yet. */
1268 size = ALIGN(dd->rcvhdrcnt * dd->rcvhdrentsize *
1269 sizeof(u32), PAGE_SIZE) * num_subctxts;
1270 rcd->subctxt_rcvhdr_base = vmalloc_user(size);
1271 if (!rcd->subctxt_rcvhdr_base) {
1272 ret = -ENOMEM;
1273 goto bail_ureg;
1274 }
1275
1276 rcd->subctxt_rcvegrbuf = vmalloc_user(rcd->rcvegrbuf_chunks *
1277 rcd->rcvegrbuf_size *
1278 num_subctxts);
1279 if (!rcd->subctxt_rcvegrbuf) {
1280 ret = -ENOMEM;
1281 goto bail_rhdr;
1282 }
1283
1284 rcd->subctxt_cnt = uinfo->spu_subctxt_cnt;
1285 rcd->subctxt_id = uinfo->spu_subctxt_id;
1286 rcd->active_slaves = 1;
1287 rcd->redirect_seq_cnt = 1;
1288 set_bit(QIB_CTXT_MASTER_UNINIT, &rcd->flag);
1289 goto bail;
1290
1291bail_rhdr:
1292 vfree(rcd->subctxt_rcvhdr_base);
1293bail_ureg:
1294 vfree(rcd->subctxt_uregbase);
1295 rcd->subctxt_uregbase = NULL;
1296bail:
1297 return ret;
1298}
1299
1300static int setup_ctxt(struct qib_pportdata *ppd, int ctxt,
1301 struct file *fp, const struct qib_user_info *uinfo)
1302{
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001303 struct qib_filedata *fd = fp->private_data;
Ralph Campbellf9315512010-05-23 21:44:54 -07001304 struct qib_devdata *dd = ppd->dd;
1305 struct qib_ctxtdata *rcd;
1306 void *ptmp = NULL;
1307 int ret;
Ramkrishna Vepae0f30ba2013-05-28 12:57:33 -04001308 int numa_id;
Ralph Campbellf9315512010-05-23 21:44:54 -07001309
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001310 assign_ctxt_affinity(fp, dd);
1311
1312 numa_id = qib_numa_aware ? ((fd->rec_cpu_num != -1) ?
1313 cpu_to_node(fd->rec_cpu_num) :
1314 numa_node_id()) : dd->assigned_node_id;
Ramkrishna Vepae0f30ba2013-05-28 12:57:33 -04001315
1316 rcd = qib_create_ctxtdata(ppd, ctxt, numa_id);
Ralph Campbellf9315512010-05-23 21:44:54 -07001317
1318 /*
1319 * Allocate memory for use in qib_tid_update() at open to
1320 * reduce cost of expected send setup per message segment
1321 */
1322 if (rcd)
1323 ptmp = kmalloc(dd->rcvtidcnt * sizeof(u16) +
1324 dd->rcvtidcnt * sizeof(struct page **),
1325 GFP_KERNEL);
1326
1327 if (!rcd || !ptmp) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +00001328 qib_dev_err(dd,
1329 "Unable to allocate ctxtdata memory, failing open\n");
Ralph Campbellf9315512010-05-23 21:44:54 -07001330 ret = -ENOMEM;
1331 goto bailerr;
1332 }
1333 rcd->userversion = uinfo->spu_userversion;
1334 ret = init_subctxts(dd, rcd, uinfo);
1335 if (ret)
1336 goto bailerr;
1337 rcd->tid_pg_list = ptmp;
1338 rcd->pid = current->pid;
1339 init_waitqueue_head(&dd->rcd[ctxt]->wait);
1340 strlcpy(rcd->comm, current->comm, sizeof(rcd->comm));
1341 ctxt_fp(fp) = rcd;
1342 qib_stats.sps_ctxts++;
Mike Marciniszyn29d1b162011-12-02 12:41:30 -05001343 dd->freectxts--;
Ralph Campbellf9315512010-05-23 21:44:54 -07001344 ret = 0;
1345 goto bail;
1346
1347bailerr:
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001348 if (fd->rec_cpu_num != -1)
1349 __clear_bit(fd->rec_cpu_num, qib_cpulist);
1350
Ralph Campbellf9315512010-05-23 21:44:54 -07001351 dd->rcd[ctxt] = NULL;
1352 kfree(rcd);
1353 kfree(ptmp);
1354bail:
1355 return ret;
1356}
1357
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001358static inline int usable(struct qib_pportdata *ppd)
Ralph Campbellf9315512010-05-23 21:44:54 -07001359{
1360 struct qib_devdata *dd = ppd->dd;
Ralph Campbellf9315512010-05-23 21:44:54 -07001361
1362 return dd && (dd->flags & QIB_PRESENT) && dd->kregbase && ppd->lid &&
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001363 (ppd->lflags & QIBL_LINKACTIVE);
1364}
1365
1366/*
1367 * Select a context on the given device, either using a requested port
1368 * or the port based on the context number.
1369 */
1370static int choose_port_ctxt(struct file *fp, struct qib_devdata *dd, u32 port,
1371 const struct qib_user_info *uinfo)
1372{
1373 struct qib_pportdata *ppd = NULL;
1374 int ret, ctxt;
1375
1376 if (port) {
1377 if (!usable(dd->pport + port - 1)) {
1378 ret = -ENETDOWN;
1379 goto done;
1380 } else
1381 ppd = dd->pport + port - 1;
1382 }
1383 for (ctxt = dd->first_user_ctxt; ctxt < dd->cfgctxts && dd->rcd[ctxt];
1384 ctxt++)
1385 ;
1386 if (ctxt == dd->cfgctxts) {
1387 ret = -EBUSY;
1388 goto done;
1389 }
1390 if (!ppd) {
1391 u32 pidx = ctxt % dd->num_pports;
1392 if (usable(dd->pport + pidx))
1393 ppd = dd->pport + pidx;
1394 else {
1395 for (pidx = 0; pidx < dd->num_pports && !ppd;
1396 pidx++)
1397 if (usable(dd->pport + pidx))
1398 ppd = dd->pport + pidx;
1399 }
1400 }
1401 ret = ppd ? setup_ctxt(ppd, ctxt, fp, uinfo) : -ENETDOWN;
1402done:
1403 return ret;
Ralph Campbellf9315512010-05-23 21:44:54 -07001404}
1405
1406static int find_free_ctxt(int unit, struct file *fp,
1407 const struct qib_user_info *uinfo)
1408{
1409 struct qib_devdata *dd = qib_lookup(unit);
Ralph Campbellf9315512010-05-23 21:44:54 -07001410 int ret;
Ralph Campbellf9315512010-05-23 21:44:54 -07001411
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001412 if (!dd || (uinfo->spu_port && uinfo->spu_port > dd->num_pports))
Ralph Campbellf9315512010-05-23 21:44:54 -07001413 ret = -ENODEV;
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001414 else
1415 ret = choose_port_ctxt(fp, dd, uinfo->spu_port, uinfo);
Ralph Campbellf9315512010-05-23 21:44:54 -07001416
Ralph Campbellf9315512010-05-23 21:44:54 -07001417 return ret;
1418}
1419
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001420static int get_a_ctxt(struct file *fp, const struct qib_user_info *uinfo,
1421 unsigned alg)
Ralph Campbellf9315512010-05-23 21:44:54 -07001422{
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001423 struct qib_devdata *udd = NULL;
1424 int ret = 0, devmax, npresent, nup, ndev, dusable = 0, i;
Ralph Campbellf9315512010-05-23 21:44:54 -07001425 u32 port = uinfo->spu_port, ctxt;
1426
1427 devmax = qib_count_units(&npresent, &nup);
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001428 if (!npresent) {
1429 ret = -ENXIO;
1430 goto done;
1431 }
1432 if (nup == 0) {
1433 ret = -ENETDOWN;
1434 goto done;
Ralph Campbellf9315512010-05-23 21:44:54 -07001435 }
1436
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001437 if (alg == QIB_PORT_ALG_ACROSS) {
1438 unsigned inuse = ~0U;
1439 /* find device (with ACTIVE ports) with fewest ctxts in use */
1440 for (ndev = 0; ndev < devmax; ndev++) {
1441 struct qib_devdata *dd = qib_lookup(ndev);
Mike Marciniszyn6676b3f2011-01-10 17:42:20 -08001442 unsigned cused = 0, cfree = 0, pusable = 0;
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001443 if (!dd)
1444 continue;
1445 if (port && port <= dd->num_pports &&
1446 usable(dd->pport + port - 1))
Mike Marciniszyn6676b3f2011-01-10 17:42:20 -08001447 pusable = 1;
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001448 else
1449 for (i = 0; i < dd->num_pports; i++)
1450 if (usable(dd->pport + i))
Mike Marciniszyn6676b3f2011-01-10 17:42:20 -08001451 pusable++;
1452 if (!pusable)
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001453 continue;
1454 for (ctxt = dd->first_user_ctxt; ctxt < dd->cfgctxts;
1455 ctxt++)
1456 if (dd->rcd[ctxt])
1457 cused++;
1458 else
1459 cfree++;
Dan Carpenterdb498822014-02-13 14:09:37 +03001460 if (cfree && cused < inuse) {
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001461 udd = dd;
1462 inuse = cused;
1463 }
1464 }
1465 if (udd) {
1466 ret = choose_port_ctxt(fp, udd, port, uinfo);
1467 goto done;
1468 }
1469 } else {
1470 for (ndev = 0; ndev < devmax; ndev++) {
1471 struct qib_devdata *dd = qib_lookup(ndev);
1472 if (dd) {
1473 ret = choose_port_ctxt(fp, dd, port, uinfo);
1474 if (!ret)
1475 goto done;
1476 if (ret == -EBUSY)
1477 dusable++;
1478 }
1479 }
1480 }
1481 ret = dusable ? -EBUSY : -ENETDOWN;
Ralph Campbellf9315512010-05-23 21:44:54 -07001482
1483done:
1484 return ret;
1485}
1486
1487static int find_shared_ctxt(struct file *fp,
1488 const struct qib_user_info *uinfo)
1489{
1490 int devmax, ndev, i;
1491 int ret = 0;
1492
1493 devmax = qib_count_units(NULL, NULL);
1494
1495 for (ndev = 0; ndev < devmax; ndev++) {
1496 struct qib_devdata *dd = qib_lookup(ndev);
1497
1498 /* device portion of usable() */
1499 if (!(dd && (dd->flags & QIB_PRESENT) && dd->kregbase))
1500 continue;
1501 for (i = dd->first_user_ctxt; i < dd->cfgctxts; i++) {
1502 struct qib_ctxtdata *rcd = dd->rcd[i];
1503
1504 /* Skip ctxts which are not yet open */
1505 if (!rcd || !rcd->cnt)
1506 continue;
1507 /* Skip ctxt if it doesn't match the requested one */
1508 if (rcd->subctxt_id != uinfo->spu_subctxt_id)
1509 continue;
1510 /* Verify the sharing process matches the master */
1511 if (rcd->subctxt_cnt != uinfo->spu_subctxt_cnt ||
1512 rcd->userversion != uinfo->spu_userversion ||
1513 rcd->cnt >= rcd->subctxt_cnt) {
1514 ret = -EINVAL;
1515 goto done;
1516 }
1517 ctxt_fp(fp) = rcd;
1518 subctxt_fp(fp) = rcd->cnt++;
1519 rcd->subpid[subctxt_fp(fp)] = current->pid;
1520 tidcursor_fp(fp) = 0;
1521 rcd->active_slaves |= 1 << subctxt_fp(fp);
1522 ret = 1;
1523 goto done;
1524 }
1525 }
1526
1527done:
1528 return ret;
1529}
1530
1531static int qib_open(struct inode *in, struct file *fp)
1532{
1533 /* The real work is performed later in qib_assign_ctxt() */
1534 fp->private_data = kzalloc(sizeof(struct qib_filedata), GFP_KERNEL);
1535 if (fp->private_data) /* no cpu affinity by default */
1536 ((struct qib_filedata *)fp->private_data)->rec_cpu_num = -1;
1537 return fp->private_data ? 0 : -ENOMEM;
1538}
1539
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001540static int find_hca(unsigned int cpu, int *unit)
1541{
1542 int ret = 0, devmax, npresent, nup, ndev;
1543
1544 *unit = -1;
1545
1546 devmax = qib_count_units(&npresent, &nup);
1547 if (!npresent) {
1548 ret = -ENXIO;
1549 goto done;
1550 }
1551 if (!nup) {
1552 ret = -ENETDOWN;
1553 goto done;
1554 }
1555 for (ndev = 0; ndev < devmax; ndev++) {
1556 struct qib_devdata *dd = qib_lookup(ndev);
1557 if (dd) {
1558 if (pcibus_to_node(dd->pcidev->bus) < 0) {
1559 ret = -EINVAL;
1560 goto done;
1561 }
1562 if (cpu_to_node(cpu) ==
1563 pcibus_to_node(dd->pcidev->bus)) {
1564 *unit = ndev;
1565 goto done;
1566 }
1567 }
1568 }
1569done:
1570 return ret;
1571}
1572
1573static int do_qib_user_sdma_queue_create(struct file *fp)
1574{
1575 struct qib_filedata *fd = fp->private_data;
1576 struct qib_ctxtdata *rcd = fd->rcd;
1577 struct qib_devdata *dd = rcd->dd;
1578
Yann Droneaud37a96762014-03-10 23:06:28 +01001579 if (dd->flags & QIB_HAS_SEND_DMA) {
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001580
1581 fd->pq = qib_user_sdma_queue_create(&dd->pcidev->dev,
1582 dd->unit,
1583 rcd->ctxt,
1584 fd->subctxt);
1585 if (!fd->pq)
1586 return -ENOMEM;
Yann Droneaud37a96762014-03-10 23:06:28 +01001587 }
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001588
1589 return 0;
1590}
1591
Ralph Campbellf9315512010-05-23 21:44:54 -07001592/*
1593 * Get ctxt early, so can set affinity prior to memory allocation.
1594 */
1595static int qib_assign_ctxt(struct file *fp, const struct qib_user_info *uinfo)
1596{
1597 int ret;
1598 int i_minor;
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001599 unsigned swmajor, swminor, alg = QIB_PORT_ALG_ACROSS;
Ralph Campbellf9315512010-05-23 21:44:54 -07001600
1601 /* Check to be sure we haven't already initialized this file */
1602 if (ctxt_fp(fp)) {
1603 ret = -EINVAL;
1604 goto done;
1605 }
1606
1607 /* for now, if major version is different, bail */
1608 swmajor = uinfo->spu_userversion >> 16;
1609 if (swmajor != QIB_USER_SWMAJOR) {
1610 ret = -ENODEV;
1611 goto done;
1612 }
1613
1614 swminor = uinfo->spu_userversion & 0xffff;
1615
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001616 if (swminor >= 11 && uinfo->spu_port_alg < QIB_PORT_ALG_COUNT)
1617 alg = uinfo->spu_port_alg;
1618
Ralph Campbellf9315512010-05-23 21:44:54 -07001619 mutex_lock(&qib_mutex);
1620
1621 if (qib_compatible_subctxts(swmajor, swminor) &&
1622 uinfo->spu_subctxt_cnt) {
1623 ret = find_shared_ctxt(fp, uinfo);
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001624 if (ret > 0) {
1625 ret = do_qib_user_sdma_queue_create(fp);
1626 if (!ret)
1627 assign_ctxt_affinity(fp, (ctxt_fp(fp))->dd);
1628 goto done_ok;
Ralph Campbellf9315512010-05-23 21:44:54 -07001629 }
1630 }
1631
Al Viro496ad9a2013-01-23 17:07:38 -05001632 i_minor = iminor(file_inode(fp)) - QIB_USER_MINOR_BASE;
Ralph Campbellf9315512010-05-23 21:44:54 -07001633 if (i_minor)
1634 ret = find_free_ctxt(i_minor - 1, fp, uinfo);
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001635 else {
1636 int unit;
1637 const unsigned int cpu = cpumask_first(&current->cpus_allowed);
1638 const unsigned int weight =
1639 cpumask_weight(&current->cpus_allowed);
1640
1641 if (weight == 1 && !test_bit(cpu, qib_cpulist))
1642 if (!find_hca(cpu, &unit) && unit >= 0)
1643 if (!find_free_ctxt(unit, fp, uinfo)) {
1644 ret = 0;
1645 goto done_chk_sdma;
1646 }
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001647 ret = get_a_ctxt(fp, uinfo, alg);
Ralph Campbellf9315512010-05-23 21:44:54 -07001648 }
1649
Ramkrishna Vepac804f072013-06-02 15:16:11 -04001650done_chk_sdma:
1651 if (!ret)
1652 ret = do_qib_user_sdma_queue_create(fp);
1653done_ok:
Ralph Campbellf9315512010-05-23 21:44:54 -07001654 mutex_unlock(&qib_mutex);
1655
1656done:
1657 return ret;
1658}
1659
1660
1661static int qib_do_user_init(struct file *fp,
1662 const struct qib_user_info *uinfo)
1663{
1664 int ret;
1665 struct qib_ctxtdata *rcd = ctxt_fp(fp);
1666 struct qib_devdata *dd;
1667 unsigned uctxt;
1668
1669 /* Subctxts don't need to initialize anything since master did it. */
1670 if (subctxt_fp(fp)) {
1671 ret = wait_event_interruptible(rcd->wait,
1672 !test_bit(QIB_CTXT_MASTER_UNINIT, &rcd->flag));
1673 goto bail;
1674 }
1675
1676 dd = rcd->dd;
1677
1678 /* some ctxts may get extra buffers, calculate that here */
1679 uctxt = rcd->ctxt - dd->first_user_ctxt;
1680 if (uctxt < dd->ctxts_extrabuf) {
1681 rcd->piocnt = dd->pbufsctxt + 1;
1682 rcd->pio_base = rcd->piocnt * uctxt;
1683 } else {
1684 rcd->piocnt = dd->pbufsctxt;
1685 rcd->pio_base = rcd->piocnt * uctxt +
1686 dd->ctxts_extrabuf;
1687 }
1688
1689 /*
1690 * All user buffers are 2KB buffers. If we ever support
1691 * giving 4KB buffers to user processes, this will need some
1692 * work. Can't use piobufbase directly, because it has
1693 * both 2K and 4K buffer base values. So check and handle.
1694 */
1695 if ((rcd->pio_base + rcd->piocnt) > dd->piobcnt2k) {
1696 if (rcd->pio_base >= dd->piobcnt2k) {
1697 qib_dev_err(dd,
1698 "%u:ctxt%u: no 2KB buffers available\n",
1699 dd->unit, rcd->ctxt);
1700 ret = -ENOBUFS;
1701 goto bail;
1702 }
1703 rcd->piocnt = dd->piobcnt2k - rcd->pio_base;
1704 qib_dev_err(dd, "Ctxt%u: would use 4KB bufs, using %u\n",
1705 rcd->ctxt, rcd->piocnt);
1706 }
1707
1708 rcd->piobufs = dd->pio2k_bufbase + rcd->pio_base * dd->palign;
1709 qib_chg_pioavailkernel(dd, rcd->pio_base, rcd->piocnt,
1710 TXCHK_CHG_TYPE_USER, rcd);
1711 /*
1712 * try to ensure that processes start up with consistent avail update
1713 * for their own range, at least. If system very quiet, it might
1714 * have the in-memory copy out of date at startup for this range of
1715 * buffers, when a context gets re-used. Do after the chg_pioavail
1716 * and before the rest of setup, so it's "almost certain" the dma
1717 * will have occurred (can't 100% guarantee, but should be many
1718 * decimals of 9s, with this ordering), given how much else happens
1719 * after this.
1720 */
1721 dd->f_sendctrl(dd->pport, QIB_SENDCTRL_AVAIL_BLIP);
1722
1723 /*
1724 * Now allocate the rcvhdr Q and eager TIDs; skip the TID
1725 * array for time being. If rcd->ctxt > chip-supported,
1726 * we need to do extra stuff here to handle by handling overflow
1727 * through ctxt 0, someday
1728 */
1729 ret = qib_create_rcvhdrq(dd, rcd);
1730 if (!ret)
1731 ret = qib_setup_eagerbufs(rcd);
1732 if (ret)
1733 goto bail_pio;
1734
1735 rcd->tidcursor = 0; /* start at beginning after open */
1736
1737 /* initialize poll variables... */
1738 rcd->urgent = 0;
1739 rcd->urgent_poll = 0;
1740
1741 /*
1742 * Now enable the ctxt for receive.
1743 * For chips that are set to DMA the tail register to memory
1744 * when they change (and when the update bit transitions from
1745 * 0 to 1. So for those chips, we turn it off and then back on.
1746 * This will (very briefly) affect any other open ctxts, but the
1747 * duration is very short, and therefore isn't an issue. We
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001748 * explicitly set the in-memory tail copy to 0 beforehand, so we
Ralph Campbellf9315512010-05-23 21:44:54 -07001749 * don't have to wait to be sure the DMA update has happened
1750 * (chip resets head/tail to 0 on transition to enable).
1751 */
1752 if (rcd->rcvhdrtail_kvaddr)
1753 qib_clear_rcvhdrtail(rcd);
1754
1755 dd->f_rcvctrl(rcd->ppd, QIB_RCVCTRL_CTXT_ENB | QIB_RCVCTRL_TIDFLOW_ENB,
1756 rcd->ctxt);
1757
1758 /* Notify any waiting slaves */
1759 if (rcd->subctxt_cnt) {
1760 clear_bit(QIB_CTXT_MASTER_UNINIT, &rcd->flag);
1761 wake_up(&rcd->wait);
1762 }
1763 return 0;
1764
1765bail_pio:
1766 qib_chg_pioavailkernel(dd, rcd->pio_base, rcd->piocnt,
1767 TXCHK_CHG_TYPE_KERN, rcd);
1768bail:
1769 return ret;
1770}
1771
1772/**
1773 * unlock_exptid - unlock any expected TID entries context still had in use
1774 * @rcd: ctxt
1775 *
1776 * We don't actually update the chip here, because we do a bulk update
1777 * below, using f_clear_tids.
1778 */
1779static void unlock_expected_tids(struct qib_ctxtdata *rcd)
1780{
1781 struct qib_devdata *dd = rcd->dd;
1782 int ctxt_tidbase = rcd->ctxt * dd->rcvtidcnt;
1783 int i, cnt = 0, maxtid = ctxt_tidbase + dd->rcvtidcnt;
1784
1785 for (i = ctxt_tidbase; i < maxtid; i++) {
1786 struct page *p = dd->pageshadow[i];
1787 dma_addr_t phys;
1788
1789 if (!p)
1790 continue;
1791
1792 phys = dd->physshadow[i];
1793 dd->physshadow[i] = dd->tidinvalid;
1794 dd->pageshadow[i] = NULL;
1795 pci_unmap_page(dd->pcidev, phys, PAGE_SIZE,
1796 PCI_DMA_FROMDEVICE);
1797 qib_release_user_pages(&p, 1);
1798 cnt++;
1799 }
1800}
1801
1802static int qib_close(struct inode *in, struct file *fp)
1803{
1804 int ret = 0;
1805 struct qib_filedata *fd;
1806 struct qib_ctxtdata *rcd;
1807 struct qib_devdata *dd;
1808 unsigned long flags;
1809 unsigned ctxt;
1810 pid_t pid;
1811
1812 mutex_lock(&qib_mutex);
1813
Joe Perchesea3f0e62010-09-04 18:52:43 -07001814 fd = fp->private_data;
Ralph Campbellf9315512010-05-23 21:44:54 -07001815 fp->private_data = NULL;
1816 rcd = fd->rcd;
1817 if (!rcd) {
1818 mutex_unlock(&qib_mutex);
1819 goto bail;
1820 }
1821
1822 dd = rcd->dd;
1823
1824 /* ensure all pio buffer writes in progress are flushed */
1825 qib_flush_wc();
1826
1827 /* drain user sdma queue */
1828 if (fd->pq) {
1829 qib_user_sdma_queue_drain(rcd->ppd, fd->pq);
1830 qib_user_sdma_queue_destroy(fd->pq);
1831 }
1832
1833 if (fd->rec_cpu_num != -1)
1834 __clear_bit(fd->rec_cpu_num, qib_cpulist);
1835
1836 if (--rcd->cnt) {
1837 /*
1838 * XXX If the master closes the context before the slave(s),
1839 * revoke the mmap for the eager receive queue so
1840 * the slave(s) don't wait for receive data forever.
1841 */
1842 rcd->active_slaves &= ~(1 << fd->subctxt);
1843 rcd->subpid[fd->subctxt] = 0;
1844 mutex_unlock(&qib_mutex);
1845 goto bail;
1846 }
1847
1848 /* early; no interrupt users after this */
1849 spin_lock_irqsave(&dd->uctxt_lock, flags);
1850 ctxt = rcd->ctxt;
1851 dd->rcd[ctxt] = NULL;
1852 pid = rcd->pid;
1853 rcd->pid = 0;
1854 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
1855
1856 if (rcd->rcvwait_to || rcd->piowait_to ||
1857 rcd->rcvnowait || rcd->pionowait) {
1858 rcd->rcvwait_to = 0;
1859 rcd->piowait_to = 0;
1860 rcd->rcvnowait = 0;
1861 rcd->pionowait = 0;
1862 }
1863 if (rcd->flag)
1864 rcd->flag = 0;
1865
1866 if (dd->kregbase) {
1867 /* atomically clear receive enable ctxt and intr avail. */
1868 dd->f_rcvctrl(rcd->ppd, QIB_RCVCTRL_CTXT_DIS |
1869 QIB_RCVCTRL_INTRAVAIL_DIS, ctxt);
1870
1871 /* clean up the pkeys for this ctxt user */
1872 qib_clean_part_key(rcd, dd);
1873 qib_disarm_piobufs(dd, rcd->pio_base, rcd->piocnt);
1874 qib_chg_pioavailkernel(dd, rcd->pio_base,
1875 rcd->piocnt, TXCHK_CHG_TYPE_KERN, NULL);
1876
1877 dd->f_clear_tids(dd, rcd);
1878
1879 if (dd->pageshadow)
1880 unlock_expected_tids(rcd);
1881 qib_stats.sps_ctxts--;
Mike Marciniszyn29d1b162011-12-02 12:41:30 -05001882 dd->freectxts++;
Ralph Campbellf9315512010-05-23 21:44:54 -07001883 }
1884
1885 mutex_unlock(&qib_mutex);
1886 qib_free_ctxtdata(dd, rcd); /* after releasing the mutex */
1887
1888bail:
1889 kfree(fd);
1890 return ret;
1891}
1892
1893static int qib_ctxt_info(struct file *fp, struct qib_ctxt_info __user *uinfo)
1894{
1895 struct qib_ctxt_info info;
1896 int ret;
1897 size_t sz;
1898 struct qib_ctxtdata *rcd = ctxt_fp(fp);
1899 struct qib_filedata *fd;
1900
Joe Perchesea3f0e62010-09-04 18:52:43 -07001901 fd = fp->private_data;
Ralph Campbellf9315512010-05-23 21:44:54 -07001902
1903 info.num_active = qib_count_active_units();
1904 info.unit = rcd->dd->unit;
1905 info.port = rcd->ppd->port;
1906 info.ctxt = rcd->ctxt;
1907 info.subctxt = subctxt_fp(fp);
1908 /* Number of user ctxts available for this device. */
1909 info.num_ctxts = rcd->dd->cfgctxts - rcd->dd->first_user_ctxt;
1910 info.num_subctxts = rcd->subctxt_cnt;
1911 info.rec_cpu = fd->rec_cpu_num;
1912 sz = sizeof(info);
1913
1914 if (copy_to_user(uinfo, &info, sz)) {
1915 ret = -EFAULT;
1916 goto bail;
1917 }
1918 ret = 0;
1919
1920bail:
1921 return ret;
1922}
1923
1924static int qib_sdma_get_inflight(struct qib_user_sdma_queue *pq,
1925 u32 __user *inflightp)
1926{
1927 const u32 val = qib_user_sdma_inflight_counter(pq);
1928
1929 if (put_user(val, inflightp))
1930 return -EFAULT;
1931
1932 return 0;
1933}
1934
1935static int qib_sdma_get_complete(struct qib_pportdata *ppd,
1936 struct qib_user_sdma_queue *pq,
1937 u32 __user *completep)
1938{
1939 u32 val;
1940 int err;
1941
1942 if (!pq)
1943 return -EINVAL;
1944
1945 err = qib_user_sdma_make_progress(ppd, pq);
1946 if (err < 0)
1947 return err;
1948
1949 val = qib_user_sdma_complete_counter(pq);
1950 if (put_user(val, completep))
1951 return -EFAULT;
1952
1953 return 0;
1954}
1955
1956static int disarm_req_delay(struct qib_ctxtdata *rcd)
1957{
1958 int ret = 0;
1959
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001960 if (!usable(rcd->ppd)) {
Ralph Campbellf9315512010-05-23 21:44:54 -07001961 int i;
1962 /*
1963 * if link is down, or otherwise not usable, delay
1964 * the caller up to 30 seconds, so we don't thrash
1965 * in trying to get the chip back to ACTIVE, and
1966 * set flag so they make the call again.
1967 */
1968 if (rcd->user_event_mask) {
1969 /*
1970 * subctxt_cnt is 0 if not shared, so do base
1971 * separately, first, then remaining subctxt, if any
1972 */
1973 set_bit(_QIB_EVENT_DISARM_BUFS_BIT,
1974 &rcd->user_event_mask[0]);
1975 for (i = 1; i < rcd->subctxt_cnt; i++)
1976 set_bit(_QIB_EVENT_DISARM_BUFS_BIT,
1977 &rcd->user_event_mask[i]);
1978 }
Dave Olsonbdf8edc2010-06-17 23:13:49 +00001979 for (i = 0; !usable(rcd->ppd) && i < 300; i++)
Ralph Campbellf9315512010-05-23 21:44:54 -07001980 msleep(100);
1981 ret = -ENETDOWN;
1982 }
1983 return ret;
1984}
1985
1986/*
1987 * Find all user contexts in use, and set the specified bit in their
1988 * event mask.
1989 * See also find_ctxt() for a similar use, that is specific to send buffers.
1990 */
1991int qib_set_uevent_bits(struct qib_pportdata *ppd, const int evtbit)
1992{
1993 struct qib_ctxtdata *rcd;
1994 unsigned ctxt;
1995 int ret = 0;
Ram Vepa4356d0b2011-05-27 13:41:55 +00001996 unsigned long flags;
Ralph Campbellf9315512010-05-23 21:44:54 -07001997
Ram Vepa4356d0b2011-05-27 13:41:55 +00001998 spin_lock_irqsave(&ppd->dd->uctxt_lock, flags);
Ralph Campbellf9315512010-05-23 21:44:54 -07001999 for (ctxt = ppd->dd->first_user_ctxt; ctxt < ppd->dd->cfgctxts;
2000 ctxt++) {
2001 rcd = ppd->dd->rcd[ctxt];
2002 if (!rcd)
2003 continue;
2004 if (rcd->user_event_mask) {
2005 int i;
2006 /*
2007 * subctxt_cnt is 0 if not shared, so do base
2008 * separately, first, then remaining subctxt, if any
2009 */
2010 set_bit(evtbit, &rcd->user_event_mask[0]);
2011 for (i = 1; i < rcd->subctxt_cnt; i++)
2012 set_bit(evtbit, &rcd->user_event_mask[i]);
2013 }
2014 ret = 1;
2015 break;
2016 }
Ram Vepa4356d0b2011-05-27 13:41:55 +00002017 spin_unlock_irqrestore(&ppd->dd->uctxt_lock, flags);
Ralph Campbellf9315512010-05-23 21:44:54 -07002018
2019 return ret;
2020}
2021
2022/*
2023 * clear the event notifier events for this context.
2024 * For the DISARM_BUFS case, we also take action (this obsoletes
2025 * the older QIB_CMD_DISARM_BUFS, but we keep it for backwards
2026 * compatibility.
2027 * Other bits don't currently require actions, just atomically clear.
2028 * User process then performs actions appropriate to bit having been
2029 * set, if desired, and checks again in future.
2030 */
2031static int qib_user_event_ack(struct qib_ctxtdata *rcd, int subctxt,
2032 unsigned long events)
2033{
2034 int ret = 0, i;
2035
2036 for (i = 0; i <= _QIB_MAX_EVENT_BIT; i++) {
2037 if (!test_bit(i, &events))
2038 continue;
2039 if (i == _QIB_EVENT_DISARM_BUFS_BIT) {
2040 (void)qib_disarm_piobufs_ifneeded(rcd);
2041 ret = disarm_req_delay(rcd);
2042 } else
2043 clear_bit(i, &rcd->user_event_mask[subctxt]);
2044 }
2045 return ret;
2046}
2047
2048static ssize_t qib_write(struct file *fp, const char __user *data,
2049 size_t count, loff_t *off)
2050{
2051 const struct qib_cmd __user *ucmd;
2052 struct qib_ctxtdata *rcd;
2053 const void __user *src;
2054 size_t consumed, copy = 0;
2055 struct qib_cmd cmd;
2056 ssize_t ret = 0;
2057 void *dest;
2058
2059 if (count < sizeof(cmd.type)) {
2060 ret = -EINVAL;
2061 goto bail;
2062 }
2063
2064 ucmd = (const struct qib_cmd __user *) data;
2065
2066 if (copy_from_user(&cmd.type, &ucmd->type, sizeof(cmd.type))) {
2067 ret = -EFAULT;
2068 goto bail;
2069 }
2070
2071 consumed = sizeof(cmd.type);
2072
2073 switch (cmd.type) {
2074 case QIB_CMD_ASSIGN_CTXT:
2075 case QIB_CMD_USER_INIT:
2076 copy = sizeof(cmd.cmd.user_info);
2077 dest = &cmd.cmd.user_info;
2078 src = &ucmd->cmd.user_info;
2079 break;
2080
2081 case QIB_CMD_RECV_CTRL:
2082 copy = sizeof(cmd.cmd.recv_ctrl);
2083 dest = &cmd.cmd.recv_ctrl;
2084 src = &ucmd->cmd.recv_ctrl;
2085 break;
2086
2087 case QIB_CMD_CTXT_INFO:
2088 copy = sizeof(cmd.cmd.ctxt_info);
2089 dest = &cmd.cmd.ctxt_info;
2090 src = &ucmd->cmd.ctxt_info;
2091 break;
2092
2093 case QIB_CMD_TID_UPDATE:
2094 case QIB_CMD_TID_FREE:
2095 copy = sizeof(cmd.cmd.tid_info);
2096 dest = &cmd.cmd.tid_info;
2097 src = &ucmd->cmd.tid_info;
2098 break;
2099
2100 case QIB_CMD_SET_PART_KEY:
2101 copy = sizeof(cmd.cmd.part_key);
2102 dest = &cmd.cmd.part_key;
2103 src = &ucmd->cmd.part_key;
2104 break;
2105
2106 case QIB_CMD_DISARM_BUFS:
2107 case QIB_CMD_PIOAVAILUPD: /* force an update of PIOAvail reg */
2108 copy = 0;
2109 src = NULL;
2110 dest = NULL;
2111 break;
2112
2113 case QIB_CMD_POLL_TYPE:
2114 copy = sizeof(cmd.cmd.poll_type);
2115 dest = &cmd.cmd.poll_type;
2116 src = &ucmd->cmd.poll_type;
2117 break;
2118
2119 case QIB_CMD_ARMLAUNCH_CTRL:
2120 copy = sizeof(cmd.cmd.armlaunch_ctrl);
2121 dest = &cmd.cmd.armlaunch_ctrl;
2122 src = &ucmd->cmd.armlaunch_ctrl;
2123 break;
2124
2125 case QIB_CMD_SDMA_INFLIGHT:
2126 copy = sizeof(cmd.cmd.sdma_inflight);
2127 dest = &cmd.cmd.sdma_inflight;
2128 src = &ucmd->cmd.sdma_inflight;
2129 break;
2130
2131 case QIB_CMD_SDMA_COMPLETE:
2132 copy = sizeof(cmd.cmd.sdma_complete);
2133 dest = &cmd.cmd.sdma_complete;
2134 src = &ucmd->cmd.sdma_complete;
2135 break;
2136
2137 case QIB_CMD_ACK_EVENT:
2138 copy = sizeof(cmd.cmd.event_mask);
2139 dest = &cmd.cmd.event_mask;
2140 src = &ucmd->cmd.event_mask;
2141 break;
2142
2143 default:
2144 ret = -EINVAL;
2145 goto bail;
2146 }
2147
2148 if (copy) {
2149 if ((count - consumed) < copy) {
2150 ret = -EINVAL;
2151 goto bail;
2152 }
2153 if (copy_from_user(dest, src, copy)) {
2154 ret = -EFAULT;
2155 goto bail;
2156 }
2157 consumed += copy;
2158 }
2159
2160 rcd = ctxt_fp(fp);
2161 if (!rcd && cmd.type != QIB_CMD_ASSIGN_CTXT) {
2162 ret = -EINVAL;
2163 goto bail;
2164 }
2165
2166 switch (cmd.type) {
2167 case QIB_CMD_ASSIGN_CTXT:
2168 ret = qib_assign_ctxt(fp, &cmd.cmd.user_info);
2169 if (ret)
2170 goto bail;
2171 break;
2172
2173 case QIB_CMD_USER_INIT:
2174 ret = qib_do_user_init(fp, &cmd.cmd.user_info);
2175 if (ret)
2176 goto bail;
2177 ret = qib_get_base_info(fp, (void __user *) (unsigned long)
2178 cmd.cmd.user_info.spu_base_info,
2179 cmd.cmd.user_info.spu_base_info_size);
2180 break;
2181
2182 case QIB_CMD_RECV_CTRL:
2183 ret = qib_manage_rcvq(rcd, subctxt_fp(fp), cmd.cmd.recv_ctrl);
2184 break;
2185
2186 case QIB_CMD_CTXT_INFO:
2187 ret = qib_ctxt_info(fp, (struct qib_ctxt_info __user *)
2188 (unsigned long) cmd.cmd.ctxt_info);
2189 break;
2190
2191 case QIB_CMD_TID_UPDATE:
2192 ret = qib_tid_update(rcd, fp, &cmd.cmd.tid_info);
2193 break;
2194
2195 case QIB_CMD_TID_FREE:
2196 ret = qib_tid_free(rcd, subctxt_fp(fp), &cmd.cmd.tid_info);
2197 break;
2198
2199 case QIB_CMD_SET_PART_KEY:
2200 ret = qib_set_part_key(rcd, cmd.cmd.part_key);
2201 break;
2202
2203 case QIB_CMD_DISARM_BUFS:
2204 (void)qib_disarm_piobufs_ifneeded(rcd);
2205 ret = disarm_req_delay(rcd);
2206 break;
2207
2208 case QIB_CMD_PIOAVAILUPD:
2209 qib_force_pio_avail_update(rcd->dd);
2210 break;
2211
2212 case QIB_CMD_POLL_TYPE:
2213 rcd->poll_type = cmd.cmd.poll_type;
2214 break;
2215
2216 case QIB_CMD_ARMLAUNCH_CTRL:
2217 rcd->dd->f_set_armlaunch(rcd->dd, cmd.cmd.armlaunch_ctrl);
2218 break;
2219
2220 case QIB_CMD_SDMA_INFLIGHT:
2221 ret = qib_sdma_get_inflight(user_sdma_queue_fp(fp),
2222 (u32 __user *) (unsigned long)
2223 cmd.cmd.sdma_inflight);
2224 break;
2225
2226 case QIB_CMD_SDMA_COMPLETE:
2227 ret = qib_sdma_get_complete(rcd->ppd,
2228 user_sdma_queue_fp(fp),
2229 (u32 __user *) (unsigned long)
2230 cmd.cmd.sdma_complete);
2231 break;
2232
2233 case QIB_CMD_ACK_EVENT:
2234 ret = qib_user_event_ack(rcd, subctxt_fp(fp),
2235 cmd.cmd.event_mask);
2236 break;
2237 }
2238
2239 if (ret >= 0)
2240 ret = consumed;
2241
2242bail:
2243 return ret;
2244}
2245
2246static ssize_t qib_aio_write(struct kiocb *iocb, const struct iovec *iov,
2247 unsigned long dim, loff_t off)
2248{
2249 struct qib_filedata *fp = iocb->ki_filp->private_data;
2250 struct qib_ctxtdata *rcd = ctxt_fp(iocb->ki_filp);
2251 struct qib_user_sdma_queue *pq = fp->pq;
2252
2253 if (!dim || !pq)
2254 return -EINVAL;
2255
2256 return qib_user_sdma_writev(rcd, pq, iov, dim);
2257}
2258
2259static struct class *qib_class;
2260static dev_t qib_dev;
2261
2262int qib_cdev_init(int minor, const char *name,
2263 const struct file_operations *fops,
2264 struct cdev **cdevp, struct device **devp)
2265{
2266 const dev_t dev = MKDEV(MAJOR(qib_dev), minor);
2267 struct cdev *cdev;
2268 struct device *device = NULL;
2269 int ret;
2270
2271 cdev = cdev_alloc();
2272 if (!cdev) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +00002273 pr_err("Could not allocate cdev for minor %d, %s\n",
Ralph Campbellf9315512010-05-23 21:44:54 -07002274 minor, name);
2275 ret = -ENOMEM;
2276 goto done;
2277 }
2278
2279 cdev->owner = THIS_MODULE;
2280 cdev->ops = fops;
2281 kobject_set_name(&cdev->kobj, name);
2282
2283 ret = cdev_add(cdev, dev, 1);
2284 if (ret < 0) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +00002285 pr_err("Could not add cdev for minor %d, %s (err %d)\n",
Ralph Campbellf9315512010-05-23 21:44:54 -07002286 minor, name, -ret);
2287 goto err_cdev;
2288 }
2289
Kees Cook02aa2a32013-07-03 15:04:56 -07002290 device = device_create(qib_class, NULL, dev, NULL, "%s", name);
Ralph Campbellf9315512010-05-23 21:44:54 -07002291 if (!IS_ERR(device))
2292 goto done;
2293 ret = PTR_ERR(device);
2294 device = NULL;
Mike Marciniszyn7fac3302012-07-19 13:04:25 +00002295 pr_err("Could not create device for minor %d, %s (err %d)\n",
Ralph Campbellf9315512010-05-23 21:44:54 -07002296 minor, name, -ret);
2297err_cdev:
2298 cdev_del(cdev);
2299 cdev = NULL;
2300done:
2301 *cdevp = cdev;
2302 *devp = device;
2303 return ret;
2304}
2305
2306void qib_cdev_cleanup(struct cdev **cdevp, struct device **devp)
2307{
2308 struct device *device = *devp;
2309
2310 if (device) {
2311 device_unregister(device);
2312 *devp = NULL;
2313 }
2314
2315 if (*cdevp) {
2316 cdev_del(*cdevp);
2317 *cdevp = NULL;
2318 }
2319}
2320
2321static struct cdev *wildcard_cdev;
2322static struct device *wildcard_device;
2323
2324int __init qib_dev_init(void)
2325{
2326 int ret;
2327
2328 ret = alloc_chrdev_region(&qib_dev, 0, QIB_NMINORS, QIB_DRV_NAME);
2329 if (ret < 0) {
Mike Marciniszyn7fac3302012-07-19 13:04:25 +00002330 pr_err("Could not allocate chrdev region (err %d)\n", -ret);
Ralph Campbellf9315512010-05-23 21:44:54 -07002331 goto done;
2332 }
2333
2334 qib_class = class_create(THIS_MODULE, "ipath");
2335 if (IS_ERR(qib_class)) {
2336 ret = PTR_ERR(qib_class);
Mike Marciniszyn7fac3302012-07-19 13:04:25 +00002337 pr_err("Could not create device class (err %d)\n", -ret);
Ralph Campbellf9315512010-05-23 21:44:54 -07002338 unregister_chrdev_region(qib_dev, QIB_NMINORS);
2339 }
2340
2341done:
2342 return ret;
2343}
2344
2345void qib_dev_cleanup(void)
2346{
2347 if (qib_class) {
2348 class_destroy(qib_class);
2349 qib_class = NULL;
2350 }
2351
2352 unregister_chrdev_region(qib_dev, QIB_NMINORS);
2353}
2354
2355static atomic_t user_count = ATOMIC_INIT(0);
2356
2357static void qib_user_remove(struct qib_devdata *dd)
2358{
2359 if (atomic_dec_return(&user_count) == 0)
2360 qib_cdev_cleanup(&wildcard_cdev, &wildcard_device);
2361
2362 qib_cdev_cleanup(&dd->user_cdev, &dd->user_device);
2363}
2364
2365static int qib_user_add(struct qib_devdata *dd)
2366{
2367 char name[10];
2368 int ret;
2369
2370 if (atomic_inc_return(&user_count) == 1) {
2371 ret = qib_cdev_init(0, "ipath", &qib_file_ops,
2372 &wildcard_cdev, &wildcard_device);
2373 if (ret)
2374 goto done;
2375 }
2376
2377 snprintf(name, sizeof(name), "ipath%d", dd->unit);
2378 ret = qib_cdev_init(dd->unit + 1, name, &qib_file_ops,
2379 &dd->user_cdev, &dd->user_device);
2380 if (ret)
2381 qib_user_remove(dd);
2382done:
2383 return ret;
2384}
2385
2386/*
2387 * Create per-unit files in /dev
2388 */
2389int qib_device_create(struct qib_devdata *dd)
2390{
2391 int r, ret;
2392
2393 r = qib_user_add(dd);
2394 ret = qib_diag_add(dd);
2395 if (r && !ret)
2396 ret = r;
2397 return ret;
2398}
2399
2400/*
2401 * Remove per-unit files in /dev
2402 * void, core kernel returns no errors for this stuff
2403 */
2404void qib_device_remove(struct qib_devdata *dd)
2405{
2406 qib_user_remove(dd);
2407 qib_diag_remove(dd);
2408}