2 * Copyright (c) 2006, 2007, 2008, 2009, 2010 QLogic Corporation.
4 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
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:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
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.
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
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>
42 #include <linux/uio.h>
43 #include <linux/jiffies.h>
44 #include <asm/pgtable.h>
45 #include <linux/delay.h>
48 #include "qib_common.h"
49 #include "qib_user_sdma.h"
51 static int qib_open(struct inode
*, struct file
*);
52 static int qib_close(struct inode
*, struct file
*);
53 static ssize_t
qib_write(struct file
*, const char __user
*, size_t, loff_t
*);
54 static ssize_t
qib_aio_write(struct kiocb
*, const struct iovec
*,
55 unsigned long, loff_t
);
56 static unsigned int qib_poll(struct file
*, struct poll_table_struct
*);
57 static int qib_mmapf(struct file
*, struct vm_area_struct
*);
59 static const struct file_operations qib_file_ops
= {
62 .aio_write
= qib_aio_write
,
67 .llseek
= noop_llseek
,
71 * Convert kernel virtual addresses to physical addresses so they don't
72 * potentially conflict with the chip addresses used as mmap offsets.
73 * It doesn't really matter what mmap offset we use as long as we can
74 * interpret it correctly.
76 static u64
cvt_kvaddr(void *p
)
81 page
= vmalloc_to_page(p
);
83 paddr
= page_to_pfn(page
) << PAGE_SHIFT
;
88 static int qib_get_base_info(struct file
*fp
, void __user
*ubase
,
91 struct qib_ctxtdata
*rcd
= ctxt_fp(fp
);
93 struct qib_base_info
*kinfo
= NULL
;
94 struct qib_devdata
*dd
= rcd
->dd
;
95 struct qib_pportdata
*ppd
= rcd
->ppd
;
100 subctxt_cnt
= rcd
->subctxt_cnt
;
107 master
= !subctxt_fp(fp
);
111 /* If context sharing is not requested, allow the old size structure */
113 sz
-= 7 * sizeof(u64
);
114 if (ubase_size
< sz
) {
119 kinfo
= kzalloc(sizeof(*kinfo
), GFP_KERNEL
);
125 ret
= dd
->f_get_base_info(rcd
, kinfo
);
129 kinfo
->spi_rcvhdr_cnt
= dd
->rcvhdrcnt
;
130 kinfo
->spi_rcvhdrent_size
= dd
->rcvhdrentsize
;
131 kinfo
->spi_tidegrcnt
= rcd
->rcvegrcnt
;
132 kinfo
->spi_rcv_egrbufsize
= dd
->rcvegrbufsize
;
134 * have to mmap whole thing
136 kinfo
->spi_rcv_egrbuftotlen
=
137 rcd
->rcvegrbuf_chunks
* rcd
->rcvegrbuf_size
;
138 kinfo
->spi_rcv_egrperchunk
= rcd
->rcvegrbufs_perchunk
;
139 kinfo
->spi_rcv_egrchunksize
= kinfo
->spi_rcv_egrbuftotlen
/
140 rcd
->rcvegrbuf_chunks
;
141 kinfo
->spi_tidcnt
= dd
->rcvtidcnt
/ subctxt_cnt
;
143 kinfo
->spi_tidcnt
+= dd
->rcvtidcnt
% subctxt_cnt
;
145 * for this use, may be cfgctxts summed over all chips that
146 * are are configured and present
148 kinfo
->spi_nctxts
= dd
->cfgctxts
;
149 /* unit (chip/board) our context is on */
150 kinfo
->spi_unit
= dd
->unit
;
151 kinfo
->spi_port
= ppd
->port
;
152 /* for now, only a single page */
153 kinfo
->spi_tid_maxsize
= PAGE_SIZE
;
156 * Doing this per context, and based on the skip value, etc. This has
157 * to be the actual buffer size, since the protocol code treats it
160 * These have to be set to user addresses in the user code via mmap.
161 * These values are used on return to user code for the mmap target
162 * addresses only. For 32 bit, same 44 bit address problem, so use
163 * the physical address, not virtual. Before 2.6.11, using the
164 * page_address() macro worked, but in 2.6.11, even that returns the
165 * full 64 bit address (upper bits all 1's). So far, using the
166 * physical addresses (or chip offsets, for chip mapping) works, but
167 * no doubt some future kernel release will change that, and we'll be
168 * on to yet another method of dealing with this.
169 * Normally only one of rcvhdr_tailaddr or rhf_offset is useful
170 * since the chips with non-zero rhf_offset don't normally
171 * enable tail register updates to host memory, but for testing,
172 * both can be enabled and used.
174 kinfo
->spi_rcvhdr_base
= (u64
) rcd
->rcvhdrq_phys
;
175 kinfo
->spi_rcvhdr_tailaddr
= (u64
) rcd
->rcvhdrqtailaddr_phys
;
176 kinfo
->spi_rhf_offset
= dd
->rhf_offset
;
177 kinfo
->spi_rcv_egrbufs
= (u64
) rcd
->rcvegr_phys
;
178 kinfo
->spi_pioavailaddr
= (u64
) dd
->pioavailregs_phys
;
179 /* setup per-unit (not port) status area for user programs */
180 kinfo
->spi_status
= (u64
) kinfo
->spi_pioavailaddr
+
181 (char *) ppd
->statusp
-
182 (char *) dd
->pioavailregs_dma
;
183 kinfo
->spi_uregbase
= (u64
) dd
->uregbase
+ dd
->ureg_align
* rcd
->ctxt
;
185 kinfo
->spi_piocnt
= rcd
->piocnt
;
186 kinfo
->spi_piobufbase
= (u64
) rcd
->piobufs
;
187 kinfo
->spi_sendbuf_status
= cvt_kvaddr(rcd
->user_event_mask
);
189 kinfo
->spi_piocnt
= (rcd
->piocnt
/ subctxt_cnt
) +
190 (rcd
->piocnt
% subctxt_cnt
);
191 /* Master's PIO buffers are after all the slave's */
192 kinfo
->spi_piobufbase
= (u64
) rcd
->piobufs
+
194 (rcd
->piocnt
- kinfo
->spi_piocnt
);
196 unsigned slave
= subctxt_fp(fp
) - 1;
198 kinfo
->spi_piocnt
= rcd
->piocnt
/ subctxt_cnt
;
199 kinfo
->spi_piobufbase
= (u64
) rcd
->piobufs
+
200 dd
->palign
* kinfo
->spi_piocnt
* slave
;
204 kinfo
->spi_sendbuf_status
=
205 cvt_kvaddr(&rcd
->user_event_mask
[subctxt_fp(fp
)]);
206 /* only spi_subctxt_* fields should be set in this block! */
207 kinfo
->spi_subctxt_uregbase
= cvt_kvaddr(rcd
->subctxt_uregbase
);
209 kinfo
->spi_subctxt_rcvegrbuf
=
210 cvt_kvaddr(rcd
->subctxt_rcvegrbuf
);
211 kinfo
->spi_subctxt_rcvhdr_base
=
212 cvt_kvaddr(rcd
->subctxt_rcvhdr_base
);
216 * All user buffers are 2KB buffers. If we ever support
217 * giving 4KB buffers to user processes, this will need some
218 * work. Can't use piobufbase directly, because it has
219 * both 2K and 4K buffer base values.
221 kinfo
->spi_pioindex
= (kinfo
->spi_piobufbase
- dd
->pio2k_bufbase
) /
223 kinfo
->spi_pioalign
= dd
->palign
;
224 kinfo
->spi_qpair
= QIB_KD_QP
;
226 * user mode PIO buffers are always 2KB, even when 4KB can
227 * be received, and sent via the kernel; this is ibmaxlen
230 kinfo
->spi_piosize
= dd
->piosize2k
- 2 * sizeof(u32
);
231 kinfo
->spi_mtu
= ppd
->ibmaxlen
; /* maxlen, not ibmtu */
232 kinfo
->spi_ctxt
= rcd
->ctxt
;
233 kinfo
->spi_subctxt
= subctxt_fp(fp
);
234 kinfo
->spi_sw_version
= QIB_KERN_SWVERSION
;
235 kinfo
->spi_sw_version
|= 1U << 31; /* QLogic-built, not kernel.org */
236 kinfo
->spi_hw_version
= dd
->revision
;
239 kinfo
->spi_runtime_flags
|= QIB_RUNTIME_MASTER
;
241 sz
= (ubase_size
< sizeof(*kinfo
)) ? ubase_size
: sizeof(*kinfo
);
242 if (copy_to_user(ubase
, kinfo
, sz
))
250 * qib_tid_update - update a context TID
252 * @fp: the qib device file
253 * @ti: the TID information
255 * The new implementation as of Oct 2004 is that the driver assigns
256 * the tid and returns it to the caller. To reduce search time, we
257 * keep a cursor for each context, walking the shadow tid array to find
258 * one that's not in use.
260 * For now, if we can't allocate the full list, we fail, although
261 * in the long run, we'll allocate as many as we can, and the
262 * caller will deal with that by trying the remaining pages later.
263 * That means that when we fail, we have to mark the tids as not in
264 * use again, in our shadow copy.
266 * It's up to the caller to free the tids when they are done.
267 * We'll unlock the pages as they free them.
269 * Also, right now we are locking one page at a time, but since
270 * the intended use of this routine is for a single group of
271 * virtually contiguous pages, that should change to improve
274 static int qib_tid_update(struct qib_ctxtdata
*rcd
, struct file
*fp
,
275 const struct qib_tid_info
*ti
)
278 u32 tid
, ctxttid
, cnt
, i
, tidcnt
, tidoff
;
280 struct qib_devdata
*dd
= rcd
->dd
;
283 u64 __iomem
*tidbase
;
284 unsigned long tidmap
[8];
285 struct page
**pagep
= NULL
;
286 unsigned subctxt
= subctxt_fp(fp
);
288 if (!dd
->pageshadow
) {
298 ctxttid
= rcd
->ctxt
* dd
->rcvtidcnt
;
299 if (!rcd
->subctxt_cnt
) {
300 tidcnt
= dd
->rcvtidcnt
;
301 tid
= rcd
->tidcursor
;
303 } else if (!subctxt
) {
304 tidcnt
= (dd
->rcvtidcnt
/ rcd
->subctxt_cnt
) +
305 (dd
->rcvtidcnt
% rcd
->subctxt_cnt
);
306 tidoff
= dd
->rcvtidcnt
- tidcnt
;
308 tid
= tidcursor_fp(fp
);
310 tidcnt
= dd
->rcvtidcnt
/ rcd
->subctxt_cnt
;
311 tidoff
= tidcnt
* (subctxt
- 1);
313 tid
= tidcursor_fp(fp
);
316 /* make sure it all fits in tid_pg_list */
317 qib_devinfo(dd
->pcidev
, "Process tried to allocate %u "
318 "TIDs, only trying max (%u)\n", cnt
, tidcnt
);
321 pagep
= (struct page
**) rcd
->tid_pg_list
;
322 tidlist
= (u16
*) &pagep
[dd
->rcvtidcnt
];
326 memset(tidmap
, 0, sizeof(tidmap
));
327 /* before decrement; chip actual # */
329 tidbase
= (u64 __iomem
*) (((char __iomem
*) dd
->kregbase
) +
331 ctxttid
* sizeof(*tidbase
));
333 /* virtual address of first page in transfer */
334 vaddr
= ti
->tidvaddr
;
335 if (!access_ok(VERIFY_WRITE
, (void __user
*) vaddr
,
340 ret
= qib_get_user_pages(vaddr
, cnt
, pagep
);
344 * We can't continue because the pagep array won't be
345 * initialized. This should never happen,
346 * unless perhaps the user has mpin'ed the pages
349 qib_devinfo(dd
->pcidev
,
350 "Failed to lock addr %p, %u pages: "
351 "errno %d\n", (void *) vaddr
, cnt
, -ret
);
354 for (i
= 0; i
< cnt
; i
++, vaddr
+= PAGE_SIZE
) {
355 for (; ntids
--; tid
++) {
358 if (!dd
->pageshadow
[ctxttid
+ tid
])
363 * Oops, wrapped all the way through their TIDs,
364 * and didn't have enough free; see comments at
367 i
--; /* last tidlist[i] not filled in */
371 tidlist
[i
] = tid
+ tidoff
;
372 /* we "know" system pages and TID pages are same size */
373 dd
->pageshadow
[ctxttid
+ tid
] = pagep
[i
];
374 dd
->physshadow
[ctxttid
+ tid
] =
375 qib_map_page(dd
->pcidev
, pagep
[i
], 0, PAGE_SIZE
,
378 * don't need atomic or it's overhead
380 __set_bit(tid
, tidmap
);
381 physaddr
= dd
->physshadow
[ctxttid
+ tid
];
382 /* PERFORMANCE: below should almost certainly be cached */
383 dd
->f_put_tid(dd
, &tidbase
[tid
],
384 RCVHQ_RCV_TYPE_EXPECTED
, physaddr
);
386 * don't check this tid in qib_ctxtshadow, since we
387 * just filled it in; start with the next one.
395 /* jump here if copy out of updated info failed... */
396 /* same code that's in qib_free_tid() */
397 limit
= sizeof(tidmap
) * BITS_PER_BYTE
;
399 /* just in case size changes in future */
401 tid
= find_first_bit((const unsigned long *)tidmap
, limit
);
402 for (; tid
< limit
; tid
++) {
403 if (!test_bit(tid
, tidmap
))
405 if (dd
->pageshadow
[ctxttid
+ tid
]) {
408 phys
= dd
->physshadow
[ctxttid
+ tid
];
409 dd
->physshadow
[ctxttid
+ tid
] = dd
->tidinvalid
;
410 /* PERFORMANCE: below should almost certainly
413 dd
->f_put_tid(dd
, &tidbase
[tid
],
414 RCVHQ_RCV_TYPE_EXPECTED
,
416 pci_unmap_page(dd
->pcidev
, phys
, PAGE_SIZE
,
418 dd
->pageshadow
[ctxttid
+ tid
] = NULL
;
421 qib_release_user_pages(pagep
, cnt
);
424 * Copy the updated array, with qib_tid's filled in, back
425 * to user. Since we did the copy in already, this "should
426 * never fail" If it does, we have to clean up...
428 if (copy_to_user((void __user
*)
429 (unsigned long) ti
->tidlist
,
430 tidlist
, cnt
* sizeof(*tidlist
))) {
434 if (copy_to_user((void __user
*) (unsigned long) ti
->tidmap
,
435 tidmap
, sizeof tidmap
)) {
441 if (!rcd
->subctxt_cnt
)
442 rcd
->tidcursor
= tid
;
444 tidcursor_fp(fp
) = tid
;
452 * qib_tid_free - free a context TID
454 * @subctxt: the subcontext
457 * right now we are unlocking one page at a time, but since
458 * the intended use of this routine is for a single group of
459 * virtually contiguous pages, that should change to improve
460 * performance. We check that the TID is in range for this context
461 * but otherwise don't check validity; if user has an error and
462 * frees the wrong tid, it's only their own data that can thereby
463 * be corrupted. We do check that the TID was in use, for sanity
464 * We always use our idea of the saved address, not the address that
465 * they pass in to us.
467 static int qib_tid_free(struct qib_ctxtdata
*rcd
, unsigned subctxt
,
468 const struct qib_tid_info
*ti
)
471 u32 tid
, ctxttid
, cnt
, limit
, tidcnt
;
472 struct qib_devdata
*dd
= rcd
->dd
;
473 u64 __iomem
*tidbase
;
474 unsigned long tidmap
[8];
476 if (!dd
->pageshadow
) {
481 if (copy_from_user(tidmap
, (void __user
*)(unsigned long)ti
->tidmap
,
487 ctxttid
= rcd
->ctxt
* dd
->rcvtidcnt
;
488 if (!rcd
->subctxt_cnt
)
489 tidcnt
= dd
->rcvtidcnt
;
491 tidcnt
= (dd
->rcvtidcnt
/ rcd
->subctxt_cnt
) +
492 (dd
->rcvtidcnt
% rcd
->subctxt_cnt
);
493 ctxttid
+= dd
->rcvtidcnt
- tidcnt
;
495 tidcnt
= dd
->rcvtidcnt
/ rcd
->subctxt_cnt
;
496 ctxttid
+= tidcnt
* (subctxt
- 1);
498 tidbase
= (u64 __iomem
*) ((char __iomem
*)(dd
->kregbase
) +
500 ctxttid
* sizeof(*tidbase
));
502 limit
= sizeof(tidmap
) * BITS_PER_BYTE
;
504 /* just in case size changes in future */
506 tid
= find_first_bit(tidmap
, limit
);
507 for (cnt
= 0; tid
< limit
; tid
++) {
509 * small optimization; if we detect a run of 3 or so without
510 * any set, use find_first_bit again. That's mainly to
511 * accelerate the case where we wrapped, so we have some at
512 * the beginning, and some at the end, and a big gap
515 if (!test_bit(tid
, tidmap
))
518 if (dd
->pageshadow
[ctxttid
+ tid
]) {
522 p
= dd
->pageshadow
[ctxttid
+ tid
];
523 dd
->pageshadow
[ctxttid
+ tid
] = NULL
;
524 phys
= dd
->physshadow
[ctxttid
+ tid
];
525 dd
->physshadow
[ctxttid
+ tid
] = dd
->tidinvalid
;
526 /* PERFORMANCE: below should almost certainly be
529 dd
->f_put_tid(dd
, &tidbase
[tid
],
530 RCVHQ_RCV_TYPE_EXPECTED
, dd
->tidinvalid
);
531 pci_unmap_page(dd
->pcidev
, phys
, PAGE_SIZE
,
533 qib_release_user_pages(&p
, 1);
541 * qib_set_part_key - set a partition key
545 * We can have up to 4 active at a time (other than the default, which is
546 * always allowed). This is somewhat tricky, since multiple contexts may set
547 * the same key, so we reference count them, and clean up at exit. All 4
548 * partition keys are packed into a single qlogic_ib register. It's an
549 * error for a process to set the same pkey multiple times. We provide no
550 * mechanism to de-allocate a pkey at this time, we may eventually need to
551 * do that. I've used the atomic operations, and no locking, and only make
552 * a single pass through what's available. This should be more than
553 * adequate for some time. I'll think about spinlocks or the like if and as
556 static int qib_set_part_key(struct qib_ctxtdata
*rcd
, u16 key
)
558 struct qib_pportdata
*ppd
= rcd
->ppd
;
559 int i
, any
= 0, pidx
= -1;
560 u16 lkey
= key
& 0x7FFF;
563 if (lkey
== (QIB_DEFAULT_P_KEY
& 0x7FFF)) {
564 /* nothing to do; this key always valid */
575 * Set the full membership bit, because it has to be
576 * set in the register or the packet, and it seems
577 * cleaner to set in the register than to force all
582 for (i
= 0; i
< ARRAY_SIZE(rcd
->pkeys
); i
++) {
583 if (!rcd
->pkeys
[i
] && pidx
== -1)
585 if (rcd
->pkeys
[i
] == key
) {
594 for (any
= i
= 0; i
< ARRAY_SIZE(ppd
->pkeys
); i
++) {
595 if (!ppd
->pkeys
[i
]) {
599 if (ppd
->pkeys
[i
] == key
) {
600 atomic_t
*pkrefs
= &ppd
->pkeyrefs
[i
];
602 if (atomic_inc_return(pkrefs
) > 1) {
603 rcd
->pkeys
[pidx
] = key
;
608 * lost race, decrement count, catch below
614 if ((ppd
->pkeys
[i
] & 0x7FFF) == lkey
) {
616 * It makes no sense to have both the limited and
617 * full membership PKEY set at the same time since
618 * the unlimited one will disable the limited one.
628 for (any
= i
= 0; i
< ARRAY_SIZE(ppd
->pkeys
); i
++) {
629 if (!ppd
->pkeys
[i
] &&
630 atomic_inc_return(&ppd
->pkeyrefs
[i
]) == 1) {
631 rcd
->pkeys
[pidx
] = key
;
633 (void) ppd
->dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_PKEYS
, 0);
645 * qib_manage_rcvq - manage a context's receive queue
647 * @subctxt: the subcontext
648 * @start_stop: action to carry out
650 * start_stop == 0 disables receive on the context, for use in queue
651 * overflow conditions. start_stop==1 re-enables, to be used to
652 * re-init the software copy of the head register
654 static int qib_manage_rcvq(struct qib_ctxtdata
*rcd
, unsigned subctxt
,
657 struct qib_devdata
*dd
= rcd
->dd
;
658 unsigned int rcvctrl_op
;
662 /* atomically clear receive enable ctxt. */
665 * On enable, force in-memory copy of the tail register to
666 * 0, so that protocol code doesn't have to worry about
667 * whether or not the chip has yet updated the in-memory
668 * copy or not on return from the system call. The chip
669 * always resets it's tail register back to 0 on a
670 * transition from disabled to enabled.
672 if (rcd
->rcvhdrtail_kvaddr
)
673 qib_clear_rcvhdrtail(rcd
);
674 rcvctrl_op
= QIB_RCVCTRL_CTXT_ENB
;
676 rcvctrl_op
= QIB_RCVCTRL_CTXT_DIS
;
677 dd
->f_rcvctrl(rcd
->ppd
, rcvctrl_op
, rcd
->ctxt
);
678 /* always; new head should be equal to new tail; see above */
683 static void qib_clean_part_key(struct qib_ctxtdata
*rcd
,
684 struct qib_devdata
*dd
)
686 int i
, j
, pchanged
= 0;
688 struct qib_pportdata
*ppd
= rcd
->ppd
;
690 /* for debugging only */
691 oldpkey
= (u64
) ppd
->pkeys
[0] |
692 ((u64
) ppd
->pkeys
[1] << 16) |
693 ((u64
) ppd
->pkeys
[2] << 32) |
694 ((u64
) ppd
->pkeys
[3] << 48);
696 for (i
= 0; i
< ARRAY_SIZE(rcd
->pkeys
); i
++) {
699 for (j
= 0; j
< ARRAY_SIZE(ppd
->pkeys
); j
++) {
700 /* check for match independent of the global bit */
701 if ((ppd
->pkeys
[j
] & 0x7fff) !=
702 (rcd
->pkeys
[i
] & 0x7fff))
704 if (atomic_dec_and_test(&ppd
->pkeyrefs
[j
])) {
713 (void) ppd
->dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_PKEYS
, 0);
716 /* common code for the mappings on dma_alloc_coherent mem */
717 static int qib_mmap_mem(struct vm_area_struct
*vma
, struct qib_ctxtdata
*rcd
,
718 unsigned len
, void *kvaddr
, u32 write_ok
, char *what
)
720 struct qib_devdata
*dd
= rcd
->dd
;
724 if ((vma
->vm_end
- vma
->vm_start
) > len
) {
725 qib_devinfo(dd
->pcidev
,
726 "FAIL on %s: len %lx > %x\n", what
,
727 vma
->vm_end
- vma
->vm_start
, len
);
733 * shared context user code requires rcvhdrq mapped r/w, others
734 * only allowed readonly mapping.
737 if (vma
->vm_flags
& VM_WRITE
) {
738 qib_devinfo(dd
->pcidev
,
739 "%s must be mapped readonly\n", what
);
744 /* don't allow them to later change with mprotect */
745 vma
->vm_flags
&= ~VM_MAYWRITE
;
748 pfn
= virt_to_phys(kvaddr
) >> PAGE_SHIFT
;
749 ret
= remap_pfn_range(vma
, vma
->vm_start
, pfn
,
750 len
, vma
->vm_page_prot
);
752 qib_devinfo(dd
->pcidev
, "%s ctxt%u mmap of %lx, %x "
753 "bytes failed: %d\n", what
, rcd
->ctxt
,
759 static int mmap_ureg(struct vm_area_struct
*vma
, struct qib_devdata
*dd
,
767 * This is real hardware, so use io_remap. This is the mechanism
768 * for the user process to update the head registers for their ctxt
771 sz
= dd
->flags
& QIB_HAS_HDRSUPP
? 2 * PAGE_SIZE
: PAGE_SIZE
;
772 if ((vma
->vm_end
- vma
->vm_start
) > sz
) {
773 qib_devinfo(dd
->pcidev
, "FAIL mmap userreg: reqlen "
774 "%lx > PAGE\n", vma
->vm_end
- vma
->vm_start
);
777 phys
= dd
->physaddr
+ ureg
;
778 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
780 vma
->vm_flags
|= VM_DONTCOPY
| VM_DONTEXPAND
;
781 ret
= io_remap_pfn_range(vma
, vma
->vm_start
,
783 vma
->vm_end
- vma
->vm_start
,
789 static int mmap_piobufs(struct vm_area_struct
*vma
,
790 struct qib_devdata
*dd
,
791 struct qib_ctxtdata
*rcd
,
792 unsigned piobufs
, unsigned piocnt
)
798 * When we map the PIO buffers in the chip, we want to map them as
799 * writeonly, no read possible; unfortunately, x86 doesn't allow
800 * for this in hardware, but we still prevent users from asking
803 if ((vma
->vm_end
- vma
->vm_start
) > (piocnt
* dd
->palign
)) {
804 qib_devinfo(dd
->pcidev
, "FAIL mmap piobufs: "
805 "reqlen %lx > PAGE\n",
806 vma
->vm_end
- vma
->vm_start
);
811 phys
= dd
->physaddr
+ piobufs
;
813 #if defined(__powerpc__)
814 /* There isn't a generic way to specify writethrough mappings */
815 pgprot_val(vma
->vm_page_prot
) |= _PAGE_NO_CACHE
;
816 pgprot_val(vma
->vm_page_prot
) |= _PAGE_WRITETHRU
;
817 pgprot_val(vma
->vm_page_prot
) &= ~_PAGE_GUARDED
;
821 * don't allow them to later change to readable with mprotect (for when
822 * not initially mapped readable, as is normally the case)
824 vma
->vm_flags
&= ~VM_MAYREAD
;
825 vma
->vm_flags
|= VM_DONTCOPY
| VM_DONTEXPAND
;
828 vma
->vm_page_prot
= pgprot_writecombine(vma
->vm_page_prot
);
830 ret
= io_remap_pfn_range(vma
, vma
->vm_start
, phys
>> PAGE_SHIFT
,
831 vma
->vm_end
- vma
->vm_start
,
837 static int mmap_rcvegrbufs(struct vm_area_struct
*vma
,
838 struct qib_ctxtdata
*rcd
)
840 struct qib_devdata
*dd
= rcd
->dd
;
841 unsigned long start
, size
;
842 size_t total_size
, i
;
846 size
= rcd
->rcvegrbuf_size
;
847 total_size
= rcd
->rcvegrbuf_chunks
* size
;
848 if ((vma
->vm_end
- vma
->vm_start
) > total_size
) {
849 qib_devinfo(dd
->pcidev
, "FAIL on egr bufs: "
850 "reqlen %lx > actual %lx\n",
851 vma
->vm_end
- vma
->vm_start
,
852 (unsigned long) total_size
);
857 if (vma
->vm_flags
& VM_WRITE
) {
858 qib_devinfo(dd
->pcidev
, "Can't map eager buffers as "
859 "writable (flags=%lx)\n", vma
->vm_flags
);
863 /* don't allow them to later change to writeable with mprotect */
864 vma
->vm_flags
&= ~VM_MAYWRITE
;
866 start
= vma
->vm_start
;
868 for (i
= 0; i
< rcd
->rcvegrbuf_chunks
; i
++, start
+= size
) {
869 pfn
= virt_to_phys(rcd
->rcvegrbuf
[i
]) >> PAGE_SHIFT
;
870 ret
= remap_pfn_range(vma
, start
, pfn
, size
,
882 * qib_file_vma_fault - handle a VMA page fault.
884 static int qib_file_vma_fault(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
888 page
= vmalloc_to_page((void *)(vmf
->pgoff
<< PAGE_SHIFT
));
890 return VM_FAULT_SIGBUS
;
898 static struct vm_operations_struct qib_file_vm_ops
= {
899 .fault
= qib_file_vma_fault
,
902 static int mmap_kvaddr(struct vm_area_struct
*vma
, u64 pgaddr
,
903 struct qib_ctxtdata
*rcd
, unsigned subctxt
)
905 struct qib_devdata
*dd
= rcd
->dd
;
906 unsigned subctxt_cnt
;
912 subctxt_cnt
= rcd
->subctxt_cnt
;
913 size
= rcd
->rcvegrbuf_chunks
* rcd
->rcvegrbuf_size
;
916 * Each process has all the subctxt uregbase, rcvhdrq, and
917 * rcvegrbufs mmapped - as an array for all the processes,
918 * and also separately for this process.
920 if (pgaddr
== cvt_kvaddr(rcd
->subctxt_uregbase
)) {
921 addr
= rcd
->subctxt_uregbase
;
922 size
= PAGE_SIZE
* subctxt_cnt
;
923 } else if (pgaddr
== cvt_kvaddr(rcd
->subctxt_rcvhdr_base
)) {
924 addr
= rcd
->subctxt_rcvhdr_base
;
925 size
= rcd
->rcvhdrq_size
* subctxt_cnt
;
926 } else if (pgaddr
== cvt_kvaddr(rcd
->subctxt_rcvegrbuf
)) {
927 addr
= rcd
->subctxt_rcvegrbuf
;
929 } else if (pgaddr
== cvt_kvaddr(rcd
->subctxt_uregbase
+
930 PAGE_SIZE
* subctxt
)) {
931 addr
= rcd
->subctxt_uregbase
+ PAGE_SIZE
* subctxt
;
933 } else if (pgaddr
== cvt_kvaddr(rcd
->subctxt_rcvhdr_base
+
934 rcd
->rcvhdrq_size
* subctxt
)) {
935 addr
= rcd
->subctxt_rcvhdr_base
+
936 rcd
->rcvhdrq_size
* subctxt
;
937 size
= rcd
->rcvhdrq_size
;
938 } else if (pgaddr
== cvt_kvaddr(&rcd
->user_event_mask
[subctxt
])) {
939 addr
= rcd
->user_event_mask
;
941 } else if (pgaddr
== cvt_kvaddr(rcd
->subctxt_rcvegrbuf
+
943 addr
= rcd
->subctxt_rcvegrbuf
+ size
* subctxt
;
944 /* rcvegrbufs are read-only on the slave */
945 if (vma
->vm_flags
& VM_WRITE
) {
946 qib_devinfo(dd
->pcidev
,
947 "Can't map eager buffers as "
948 "writable (flags=%lx)\n", vma
->vm_flags
);
953 * Don't allow permission to later change to writeable
956 vma
->vm_flags
&= ~VM_MAYWRITE
;
959 len
= vma
->vm_end
- vma
->vm_start
;
965 vma
->vm_pgoff
= (unsigned long) addr
>> PAGE_SHIFT
;
966 vma
->vm_ops
= &qib_file_vm_ops
;
967 vma
->vm_flags
|= VM_RESERVED
| VM_DONTEXPAND
;
975 * qib_mmapf - mmap various structures into user space
976 * @fp: the file pointer
979 * We use this to have a shared buffer between the kernel and the user code
980 * for the rcvhdr queue, egr buffers, and the per-context user regs and pio
981 * buffers in the chip. We have the open and close entries so we can bump
982 * the ref count and keep the driver from being unloaded while still mapped.
984 static int qib_mmapf(struct file
*fp
, struct vm_area_struct
*vma
)
986 struct qib_ctxtdata
*rcd
;
987 struct qib_devdata
*dd
;
989 unsigned piobufs
, piocnt
;
993 if (!rcd
|| !(vma
->vm_flags
& VM_SHARED
)) {
1000 * This is the qib_do_user_init() code, mapping the shared buffers
1001 * and per-context user registers into the user process. The address
1002 * referred to by vm_pgoff is the file offset passed via mmap().
1003 * For shared contexts, this is the kernel vmalloc() address of the
1004 * pages to share with the master.
1005 * For non-shared or master ctxts, this is a physical address.
1006 * We only do one mmap for each space mapped.
1008 pgaddr
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1011 * Check for 0 in case one of the allocations failed, but user
1012 * called mmap anyway.
1020 * Physical addresses must fit in 40 bits for our hardware.
1021 * Check for kernel virtual addresses first, anything else must
1022 * match a HW or memory address.
1024 ret
= mmap_kvaddr(vma
, pgaddr
, rcd
, subctxt_fp(fp
));
1031 ureg
= dd
->uregbase
+ dd
->ureg_align
* rcd
->ctxt
;
1032 if (!rcd
->subctxt_cnt
) {
1033 /* ctxt is not shared */
1034 piocnt
= rcd
->piocnt
;
1035 piobufs
= rcd
->piobufs
;
1036 } else if (!subctxt_fp(fp
)) {
1037 /* caller is the master */
1038 piocnt
= (rcd
->piocnt
/ rcd
->subctxt_cnt
) +
1039 (rcd
->piocnt
% rcd
->subctxt_cnt
);
1040 piobufs
= rcd
->piobufs
+
1041 dd
->palign
* (rcd
->piocnt
- piocnt
);
1043 unsigned slave
= subctxt_fp(fp
) - 1;
1045 /* caller is a slave */
1046 piocnt
= rcd
->piocnt
/ rcd
->subctxt_cnt
;
1047 piobufs
= rcd
->piobufs
+ dd
->palign
* piocnt
* slave
;
1051 ret
= mmap_ureg(vma
, dd
, ureg
);
1052 else if (pgaddr
== piobufs
)
1053 ret
= mmap_piobufs(vma
, dd
, rcd
, piobufs
, piocnt
);
1054 else if (pgaddr
== dd
->pioavailregs_phys
)
1055 /* in-memory copy of pioavail registers */
1056 ret
= qib_mmap_mem(vma
, rcd
, PAGE_SIZE
,
1057 (void *) dd
->pioavailregs_dma
, 0,
1058 "pioavail registers");
1059 else if (pgaddr
== rcd
->rcvegr_phys
)
1060 ret
= mmap_rcvegrbufs(vma
, rcd
);
1061 else if (pgaddr
== (u64
) rcd
->rcvhdrq_phys
)
1063 * The rcvhdrq itself; multiple pages, contiguous
1064 * from an i/o perspective. Shared contexts need
1065 * to map r/w, so we allow writing.
1067 ret
= qib_mmap_mem(vma
, rcd
, rcd
->rcvhdrq_size
,
1068 rcd
->rcvhdrq
, 1, "rcvhdrq");
1069 else if (pgaddr
== (u64
) rcd
->rcvhdrqtailaddr_phys
)
1070 /* in-memory copy of rcvhdrq tail register */
1071 ret
= qib_mmap_mem(vma
, rcd
, PAGE_SIZE
,
1072 rcd
->rcvhdrtail_kvaddr
, 0,
1079 vma
->vm_private_data
= NULL
;
1082 qib_devinfo(dd
->pcidev
,
1083 "mmap Failure %d: off %llx len %lx\n",
1084 -ret
, (unsigned long long)pgaddr
,
1085 vma
->vm_end
- vma
->vm_start
);
1090 static unsigned int qib_poll_urgent(struct qib_ctxtdata
*rcd
,
1092 struct poll_table_struct
*pt
)
1094 struct qib_devdata
*dd
= rcd
->dd
;
1097 poll_wait(fp
, &rcd
->wait
, pt
);
1099 spin_lock_irq(&dd
->uctxt_lock
);
1100 if (rcd
->urgent
!= rcd
->urgent_poll
) {
1101 pollflag
= POLLIN
| POLLRDNORM
;
1102 rcd
->urgent_poll
= rcd
->urgent
;
1105 set_bit(QIB_CTXT_WAITING_URG
, &rcd
->flag
);
1107 spin_unlock_irq(&dd
->uctxt_lock
);
1112 static unsigned int qib_poll_next(struct qib_ctxtdata
*rcd
,
1114 struct poll_table_struct
*pt
)
1116 struct qib_devdata
*dd
= rcd
->dd
;
1119 poll_wait(fp
, &rcd
->wait
, pt
);
1121 spin_lock_irq(&dd
->uctxt_lock
);
1122 if (dd
->f_hdrqempty(rcd
)) {
1123 set_bit(QIB_CTXT_WAITING_RCV
, &rcd
->flag
);
1124 dd
->f_rcvctrl(rcd
->ppd
, QIB_RCVCTRL_INTRAVAIL_ENB
, rcd
->ctxt
);
1127 pollflag
= POLLIN
| POLLRDNORM
;
1128 spin_unlock_irq(&dd
->uctxt_lock
);
1133 static unsigned int qib_poll(struct file
*fp
, struct poll_table_struct
*pt
)
1135 struct qib_ctxtdata
*rcd
;
1141 else if (rcd
->poll_type
== QIB_POLL_TYPE_URGENT
)
1142 pollflag
= qib_poll_urgent(rcd
, fp
, pt
);
1143 else if (rcd
->poll_type
== QIB_POLL_TYPE_ANYRCV
)
1144 pollflag
= qib_poll_next(rcd
, fp
, pt
);
1152 * Check that userland and driver are compatible for subcontexts.
1154 static int qib_compatible_subctxts(int user_swmajor
, int user_swminor
)
1156 /* this code is written long-hand for clarity */
1157 if (QIB_USER_SWMAJOR
!= user_swmajor
) {
1158 /* no promise of compatibility if major mismatch */
1161 if (QIB_USER_SWMAJOR
== 1) {
1162 switch (QIB_USER_SWMINOR
) {
1166 /* no subctxt implementation so cannot be compatible */
1169 /* 3 is only compatible with itself */
1170 return user_swminor
== 3;
1172 /* >= 4 are compatible (or are expected to be) */
1173 return user_swminor
>= 4;
1176 /* make no promises yet for future major versions */
1180 static int init_subctxts(struct qib_devdata
*dd
,
1181 struct qib_ctxtdata
*rcd
,
1182 const struct qib_user_info
*uinfo
)
1185 unsigned num_subctxts
;
1189 * If the user is requesting zero subctxts,
1190 * skip the subctxt allocation.
1192 if (uinfo
->spu_subctxt_cnt
<= 0)
1194 num_subctxts
= uinfo
->spu_subctxt_cnt
;
1196 /* Check for subctxt compatibility */
1197 if (!qib_compatible_subctxts(uinfo
->spu_userversion
>> 16,
1198 uinfo
->spu_userversion
& 0xffff)) {
1199 qib_devinfo(dd
->pcidev
,
1200 "Mismatched user version (%d.%d) and driver "
1201 "version (%d.%d) while context sharing. Ensure "
1202 "that driver and library are from the same "
1204 (int) (uinfo
->spu_userversion
>> 16),
1205 (int) (uinfo
->spu_userversion
& 0xffff),
1206 QIB_USER_SWMAJOR
, QIB_USER_SWMINOR
);
1209 if (num_subctxts
> QLOGIC_IB_MAX_SUBCTXT
) {
1214 rcd
->subctxt_uregbase
= vmalloc_user(PAGE_SIZE
* num_subctxts
);
1215 if (!rcd
->subctxt_uregbase
) {
1219 /* Note: rcd->rcvhdrq_size isn't initialized yet. */
1220 size
= ALIGN(dd
->rcvhdrcnt
* dd
->rcvhdrentsize
*
1221 sizeof(u32
), PAGE_SIZE
) * num_subctxts
;
1222 rcd
->subctxt_rcvhdr_base
= vmalloc_user(size
);
1223 if (!rcd
->subctxt_rcvhdr_base
) {
1228 rcd
->subctxt_rcvegrbuf
= vmalloc_user(rcd
->rcvegrbuf_chunks
*
1229 rcd
->rcvegrbuf_size
*
1231 if (!rcd
->subctxt_rcvegrbuf
) {
1236 rcd
->subctxt_cnt
= uinfo
->spu_subctxt_cnt
;
1237 rcd
->subctxt_id
= uinfo
->spu_subctxt_id
;
1238 rcd
->active_slaves
= 1;
1239 rcd
->redirect_seq_cnt
= 1;
1240 set_bit(QIB_CTXT_MASTER_UNINIT
, &rcd
->flag
);
1244 vfree(rcd
->subctxt_rcvhdr_base
);
1246 vfree(rcd
->subctxt_uregbase
);
1247 rcd
->subctxt_uregbase
= NULL
;
1252 static int setup_ctxt(struct qib_pportdata
*ppd
, int ctxt
,
1253 struct file
*fp
, const struct qib_user_info
*uinfo
)
1255 struct qib_devdata
*dd
= ppd
->dd
;
1256 struct qib_ctxtdata
*rcd
;
1260 rcd
= qib_create_ctxtdata(ppd
, ctxt
);
1263 * Allocate memory for use in qib_tid_update() at open to
1264 * reduce cost of expected send setup per message segment
1267 ptmp
= kmalloc(dd
->rcvtidcnt
* sizeof(u16
) +
1268 dd
->rcvtidcnt
* sizeof(struct page
**),
1271 if (!rcd
|| !ptmp
) {
1272 qib_dev_err(dd
, "Unable to allocate ctxtdata "
1273 "memory, failing open\n");
1277 rcd
->userversion
= uinfo
->spu_userversion
;
1278 ret
= init_subctxts(dd
, rcd
, uinfo
);
1281 rcd
->tid_pg_list
= ptmp
;
1282 rcd
->pid
= current
->pid
;
1283 init_waitqueue_head(&dd
->rcd
[ctxt
]->wait
);
1284 strlcpy(rcd
->comm
, current
->comm
, sizeof(rcd
->comm
));
1286 qib_stats
.sps_ctxts
++;
1291 dd
->rcd
[ctxt
] = NULL
;
1298 static inline int usable(struct qib_pportdata
*ppd
)
1300 struct qib_devdata
*dd
= ppd
->dd
;
1302 return dd
&& (dd
->flags
& QIB_PRESENT
) && dd
->kregbase
&& ppd
->lid
&&
1303 (ppd
->lflags
& QIBL_LINKACTIVE
);
1307 * Select a context on the given device, either using a requested port
1308 * or the port based on the context number.
1310 static int choose_port_ctxt(struct file
*fp
, struct qib_devdata
*dd
, u32 port
,
1311 const struct qib_user_info
*uinfo
)
1313 struct qib_pportdata
*ppd
= NULL
;
1317 if (!usable(dd
->pport
+ port
- 1)) {
1321 ppd
= dd
->pport
+ port
- 1;
1323 for (ctxt
= dd
->first_user_ctxt
; ctxt
< dd
->cfgctxts
&& dd
->rcd
[ctxt
];
1326 if (ctxt
== dd
->cfgctxts
) {
1331 u32 pidx
= ctxt
% dd
->num_pports
;
1332 if (usable(dd
->pport
+ pidx
))
1333 ppd
= dd
->pport
+ pidx
;
1335 for (pidx
= 0; pidx
< dd
->num_pports
&& !ppd
;
1337 if (usable(dd
->pport
+ pidx
))
1338 ppd
= dd
->pport
+ pidx
;
1341 ret
= ppd
? setup_ctxt(ppd
, ctxt
, fp
, uinfo
) : -ENETDOWN
;
1346 static int find_free_ctxt(int unit
, struct file
*fp
,
1347 const struct qib_user_info
*uinfo
)
1349 struct qib_devdata
*dd
= qib_lookup(unit
);
1352 if (!dd
|| (uinfo
->spu_port
&& uinfo
->spu_port
> dd
->num_pports
))
1355 ret
= choose_port_ctxt(fp
, dd
, uinfo
->spu_port
, uinfo
);
1360 static int get_a_ctxt(struct file
*fp
, const struct qib_user_info
*uinfo
,
1363 struct qib_devdata
*udd
= NULL
;
1364 int ret
= 0, devmax
, npresent
, nup
, ndev
, dusable
= 0, i
;
1365 u32 port
= uinfo
->spu_port
, ctxt
;
1367 devmax
= qib_count_units(&npresent
, &nup
);
1377 if (alg
== QIB_PORT_ALG_ACROSS
) {
1378 unsigned inuse
= ~0U;
1379 /* find device (with ACTIVE ports) with fewest ctxts in use */
1380 for (ndev
= 0; ndev
< devmax
; ndev
++) {
1381 struct qib_devdata
*dd
= qib_lookup(ndev
);
1382 unsigned cused
= 0, cfree
= 0;
1385 if (port
&& port
<= dd
->num_pports
&&
1386 usable(dd
->pport
+ port
- 1))
1389 for (i
= 0; i
< dd
->num_pports
; i
++)
1390 if (usable(dd
->pport
+ i
))
1394 for (ctxt
= dd
->first_user_ctxt
; ctxt
< dd
->cfgctxts
;
1400 if (cfree
&& cused
< inuse
) {
1406 ret
= choose_port_ctxt(fp
, udd
, port
, uinfo
);
1410 for (ndev
= 0; ndev
< devmax
; ndev
++) {
1411 struct qib_devdata
*dd
= qib_lookup(ndev
);
1413 ret
= choose_port_ctxt(fp
, dd
, port
, uinfo
);
1421 ret
= dusable
? -EBUSY
: -ENETDOWN
;
1427 static int find_shared_ctxt(struct file
*fp
,
1428 const struct qib_user_info
*uinfo
)
1430 int devmax
, ndev
, i
;
1433 devmax
= qib_count_units(NULL
, NULL
);
1435 for (ndev
= 0; ndev
< devmax
; ndev
++) {
1436 struct qib_devdata
*dd
= qib_lookup(ndev
);
1438 /* device portion of usable() */
1439 if (!(dd
&& (dd
->flags
& QIB_PRESENT
) && dd
->kregbase
))
1441 for (i
= dd
->first_user_ctxt
; i
< dd
->cfgctxts
; i
++) {
1442 struct qib_ctxtdata
*rcd
= dd
->rcd
[i
];
1444 /* Skip ctxts which are not yet open */
1445 if (!rcd
|| !rcd
->cnt
)
1447 /* Skip ctxt if it doesn't match the requested one */
1448 if (rcd
->subctxt_id
!= uinfo
->spu_subctxt_id
)
1450 /* Verify the sharing process matches the master */
1451 if (rcd
->subctxt_cnt
!= uinfo
->spu_subctxt_cnt
||
1452 rcd
->userversion
!= uinfo
->spu_userversion
||
1453 rcd
->cnt
>= rcd
->subctxt_cnt
) {
1458 subctxt_fp(fp
) = rcd
->cnt
++;
1459 rcd
->subpid
[subctxt_fp(fp
)] = current
->pid
;
1460 tidcursor_fp(fp
) = 0;
1461 rcd
->active_slaves
|= 1 << subctxt_fp(fp
);
1471 static int qib_open(struct inode
*in
, struct file
*fp
)
1473 /* The real work is performed later in qib_assign_ctxt() */
1474 fp
->private_data
= kzalloc(sizeof(struct qib_filedata
), GFP_KERNEL
);
1475 if (fp
->private_data
) /* no cpu affinity by default */
1476 ((struct qib_filedata
*)fp
->private_data
)->rec_cpu_num
= -1;
1477 return fp
->private_data
? 0 : -ENOMEM
;
1481 * Get ctxt early, so can set affinity prior to memory allocation.
1483 static int qib_assign_ctxt(struct file
*fp
, const struct qib_user_info
*uinfo
)
1487 unsigned swmajor
, swminor
, alg
= QIB_PORT_ALG_ACROSS
;
1489 /* Check to be sure we haven't already initialized this file */
1495 /* for now, if major version is different, bail */
1496 swmajor
= uinfo
->spu_userversion
>> 16;
1497 if (swmajor
!= QIB_USER_SWMAJOR
) {
1502 swminor
= uinfo
->spu_userversion
& 0xffff;
1504 if (swminor
>= 11 && uinfo
->spu_port_alg
< QIB_PORT_ALG_COUNT
)
1505 alg
= uinfo
->spu_port_alg
;
1507 mutex_lock(&qib_mutex
);
1509 if (qib_compatible_subctxts(swmajor
, swminor
) &&
1510 uinfo
->spu_subctxt_cnt
) {
1511 ret
= find_shared_ctxt(fp
, uinfo
);
1519 i_minor
= iminor(fp
->f_dentry
->d_inode
) - QIB_USER_MINOR_BASE
;
1521 ret
= find_free_ctxt(i_minor
- 1, fp
, uinfo
);
1523 ret
= get_a_ctxt(fp
, uinfo
, alg
);
1527 struct qib_filedata
*fd
= fp
->private_data
;
1528 const struct qib_ctxtdata
*rcd
= fd
->rcd
;
1529 const struct qib_devdata
*dd
= rcd
->dd
;
1531 if (dd
->flags
& QIB_HAS_SEND_DMA
) {
1532 fd
->pq
= qib_user_sdma_queue_create(&dd
->pcidev
->dev
,
1541 * If process has NOT already set it's affinity, select and
1542 * reserve a processor for it, as a rendevous for all
1543 * users of the driver. If they don't actually later
1544 * set affinity to this cpu, or set it to some other cpu,
1545 * it just means that sooner or later we don't recommend
1546 * a cpu, and let the scheduler do it's best.
1548 if (!ret
&& cpus_weight(current
->cpus_allowed
) >=
1549 qib_cpulist_count
) {
1551 cpu
= find_first_zero_bit(qib_cpulist
,
1553 if (cpu
!= qib_cpulist_count
) {
1554 __set_bit(cpu
, qib_cpulist
);
1555 fd
->rec_cpu_num
= cpu
;
1557 } else if (cpus_weight(current
->cpus_allowed
) == 1 &&
1558 test_bit(first_cpu(current
->cpus_allowed
),
1560 qib_devinfo(dd
->pcidev
, "%s PID %u affinity "
1561 "set to cpu %d; already allocated\n",
1562 current
->comm
, current
->pid
,
1563 first_cpu(current
->cpus_allowed
));
1566 mutex_unlock(&qib_mutex
);
1573 static int qib_do_user_init(struct file
*fp
,
1574 const struct qib_user_info
*uinfo
)
1577 struct qib_ctxtdata
*rcd
= ctxt_fp(fp
);
1578 struct qib_devdata
*dd
;
1581 /* Subctxts don't need to initialize anything since master did it. */
1582 if (subctxt_fp(fp
)) {
1583 ret
= wait_event_interruptible(rcd
->wait
,
1584 !test_bit(QIB_CTXT_MASTER_UNINIT
, &rcd
->flag
));
1590 /* some ctxts may get extra buffers, calculate that here */
1591 uctxt
= rcd
->ctxt
- dd
->first_user_ctxt
;
1592 if (uctxt
< dd
->ctxts_extrabuf
) {
1593 rcd
->piocnt
= dd
->pbufsctxt
+ 1;
1594 rcd
->pio_base
= rcd
->piocnt
* uctxt
;
1596 rcd
->piocnt
= dd
->pbufsctxt
;
1597 rcd
->pio_base
= rcd
->piocnt
* uctxt
+
1602 * All user buffers are 2KB buffers. If we ever support
1603 * giving 4KB buffers to user processes, this will need some
1604 * work. Can't use piobufbase directly, because it has
1605 * both 2K and 4K buffer base values. So check and handle.
1607 if ((rcd
->pio_base
+ rcd
->piocnt
) > dd
->piobcnt2k
) {
1608 if (rcd
->pio_base
>= dd
->piobcnt2k
) {
1610 "%u:ctxt%u: no 2KB buffers available\n",
1611 dd
->unit
, rcd
->ctxt
);
1615 rcd
->piocnt
= dd
->piobcnt2k
- rcd
->pio_base
;
1616 qib_dev_err(dd
, "Ctxt%u: would use 4KB bufs, using %u\n",
1617 rcd
->ctxt
, rcd
->piocnt
);
1620 rcd
->piobufs
= dd
->pio2k_bufbase
+ rcd
->pio_base
* dd
->palign
;
1621 qib_chg_pioavailkernel(dd
, rcd
->pio_base
, rcd
->piocnt
,
1622 TXCHK_CHG_TYPE_USER
, rcd
);
1624 * try to ensure that processes start up with consistent avail update
1625 * for their own range, at least. If system very quiet, it might
1626 * have the in-memory copy out of date at startup for this range of
1627 * buffers, when a context gets re-used. Do after the chg_pioavail
1628 * and before the rest of setup, so it's "almost certain" the dma
1629 * will have occurred (can't 100% guarantee, but should be many
1630 * decimals of 9s, with this ordering), given how much else happens
1633 dd
->f_sendctrl(dd
->pport
, QIB_SENDCTRL_AVAIL_BLIP
);
1636 * Now allocate the rcvhdr Q and eager TIDs; skip the TID
1637 * array for time being. If rcd->ctxt > chip-supported,
1638 * we need to do extra stuff here to handle by handling overflow
1639 * through ctxt 0, someday
1641 ret
= qib_create_rcvhdrq(dd
, rcd
);
1643 ret
= qib_setup_eagerbufs(rcd
);
1647 rcd
->tidcursor
= 0; /* start at beginning after open */
1649 /* initialize poll variables... */
1651 rcd
->urgent_poll
= 0;
1654 * Now enable the ctxt for receive.
1655 * For chips that are set to DMA the tail register to memory
1656 * when they change (and when the update bit transitions from
1657 * 0 to 1. So for those chips, we turn it off and then back on.
1658 * This will (very briefly) affect any other open ctxts, but the
1659 * duration is very short, and therefore isn't an issue. We
1660 * explictly set the in-memory tail copy to 0 beforehand, so we
1661 * don't have to wait to be sure the DMA update has happened
1662 * (chip resets head/tail to 0 on transition to enable).
1664 if (rcd
->rcvhdrtail_kvaddr
)
1665 qib_clear_rcvhdrtail(rcd
);
1667 dd
->f_rcvctrl(rcd
->ppd
, QIB_RCVCTRL_CTXT_ENB
| QIB_RCVCTRL_TIDFLOW_ENB
,
1670 /* Notify any waiting slaves */
1671 if (rcd
->subctxt_cnt
) {
1672 clear_bit(QIB_CTXT_MASTER_UNINIT
, &rcd
->flag
);
1673 wake_up(&rcd
->wait
);
1678 qib_chg_pioavailkernel(dd
, rcd
->pio_base
, rcd
->piocnt
,
1679 TXCHK_CHG_TYPE_KERN
, rcd
);
1685 * unlock_exptid - unlock any expected TID entries context still had in use
1688 * We don't actually update the chip here, because we do a bulk update
1689 * below, using f_clear_tids.
1691 static void unlock_expected_tids(struct qib_ctxtdata
*rcd
)
1693 struct qib_devdata
*dd
= rcd
->dd
;
1694 int ctxt_tidbase
= rcd
->ctxt
* dd
->rcvtidcnt
;
1695 int i
, cnt
= 0, maxtid
= ctxt_tidbase
+ dd
->rcvtidcnt
;
1697 for (i
= ctxt_tidbase
; i
< maxtid
; i
++) {
1698 struct page
*p
= dd
->pageshadow
[i
];
1704 phys
= dd
->physshadow
[i
];
1705 dd
->physshadow
[i
] = dd
->tidinvalid
;
1706 dd
->pageshadow
[i
] = NULL
;
1707 pci_unmap_page(dd
->pcidev
, phys
, PAGE_SIZE
,
1708 PCI_DMA_FROMDEVICE
);
1709 qib_release_user_pages(&p
, 1);
1714 static int qib_close(struct inode
*in
, struct file
*fp
)
1717 struct qib_filedata
*fd
;
1718 struct qib_ctxtdata
*rcd
;
1719 struct qib_devdata
*dd
;
1720 unsigned long flags
;
1724 mutex_lock(&qib_mutex
);
1726 fd
= fp
->private_data
;
1727 fp
->private_data
= NULL
;
1730 mutex_unlock(&qib_mutex
);
1736 /* ensure all pio buffer writes in progress are flushed */
1739 /* drain user sdma queue */
1741 qib_user_sdma_queue_drain(rcd
->ppd
, fd
->pq
);
1742 qib_user_sdma_queue_destroy(fd
->pq
);
1745 if (fd
->rec_cpu_num
!= -1)
1746 __clear_bit(fd
->rec_cpu_num
, qib_cpulist
);
1750 * XXX If the master closes the context before the slave(s),
1751 * revoke the mmap for the eager receive queue so
1752 * the slave(s) don't wait for receive data forever.
1754 rcd
->active_slaves
&= ~(1 << fd
->subctxt
);
1755 rcd
->subpid
[fd
->subctxt
] = 0;
1756 mutex_unlock(&qib_mutex
);
1760 /* early; no interrupt users after this */
1761 spin_lock_irqsave(&dd
->uctxt_lock
, flags
);
1763 dd
->rcd
[ctxt
] = NULL
;
1766 spin_unlock_irqrestore(&dd
->uctxt_lock
, flags
);
1768 if (rcd
->rcvwait_to
|| rcd
->piowait_to
||
1769 rcd
->rcvnowait
|| rcd
->pionowait
) {
1770 rcd
->rcvwait_to
= 0;
1771 rcd
->piowait_to
= 0;
1779 /* atomically clear receive enable ctxt and intr avail. */
1780 dd
->f_rcvctrl(rcd
->ppd
, QIB_RCVCTRL_CTXT_DIS
|
1781 QIB_RCVCTRL_INTRAVAIL_DIS
, ctxt
);
1783 /* clean up the pkeys for this ctxt user */
1784 qib_clean_part_key(rcd
, dd
);
1785 qib_disarm_piobufs(dd
, rcd
->pio_base
, rcd
->piocnt
);
1786 qib_chg_pioavailkernel(dd
, rcd
->pio_base
,
1787 rcd
->piocnt
, TXCHK_CHG_TYPE_KERN
, NULL
);
1789 dd
->f_clear_tids(dd
, rcd
);
1792 unlock_expected_tids(rcd
);
1793 qib_stats
.sps_ctxts
--;
1796 mutex_unlock(&qib_mutex
);
1797 qib_free_ctxtdata(dd
, rcd
); /* after releasing the mutex */
1804 static int qib_ctxt_info(struct file
*fp
, struct qib_ctxt_info __user
*uinfo
)
1806 struct qib_ctxt_info info
;
1809 struct qib_ctxtdata
*rcd
= ctxt_fp(fp
);
1810 struct qib_filedata
*fd
;
1812 fd
= fp
->private_data
;
1814 info
.num_active
= qib_count_active_units();
1815 info
.unit
= rcd
->dd
->unit
;
1816 info
.port
= rcd
->ppd
->port
;
1817 info
.ctxt
= rcd
->ctxt
;
1818 info
.subctxt
= subctxt_fp(fp
);
1819 /* Number of user ctxts available for this device. */
1820 info
.num_ctxts
= rcd
->dd
->cfgctxts
- rcd
->dd
->first_user_ctxt
;
1821 info
.num_subctxts
= rcd
->subctxt_cnt
;
1822 info
.rec_cpu
= fd
->rec_cpu_num
;
1825 if (copy_to_user(uinfo
, &info
, sz
)) {
1835 static int qib_sdma_get_inflight(struct qib_user_sdma_queue
*pq
,
1836 u32 __user
*inflightp
)
1838 const u32 val
= qib_user_sdma_inflight_counter(pq
);
1840 if (put_user(val
, inflightp
))
1846 static int qib_sdma_get_complete(struct qib_pportdata
*ppd
,
1847 struct qib_user_sdma_queue
*pq
,
1848 u32 __user
*completep
)
1856 err
= qib_user_sdma_make_progress(ppd
, pq
);
1860 val
= qib_user_sdma_complete_counter(pq
);
1861 if (put_user(val
, completep
))
1867 static int disarm_req_delay(struct qib_ctxtdata
*rcd
)
1871 if (!usable(rcd
->ppd
)) {
1874 * if link is down, or otherwise not usable, delay
1875 * the caller up to 30 seconds, so we don't thrash
1876 * in trying to get the chip back to ACTIVE, and
1877 * set flag so they make the call again.
1879 if (rcd
->user_event_mask
) {
1881 * subctxt_cnt is 0 if not shared, so do base
1882 * separately, first, then remaining subctxt, if any
1884 set_bit(_QIB_EVENT_DISARM_BUFS_BIT
,
1885 &rcd
->user_event_mask
[0]);
1886 for (i
= 1; i
< rcd
->subctxt_cnt
; i
++)
1887 set_bit(_QIB_EVENT_DISARM_BUFS_BIT
,
1888 &rcd
->user_event_mask
[i
]);
1890 for (i
= 0; !usable(rcd
->ppd
) && i
< 300; i
++)
1898 * Find all user contexts in use, and set the specified bit in their
1900 * See also find_ctxt() for a similar use, that is specific to send buffers.
1902 int qib_set_uevent_bits(struct qib_pportdata
*ppd
, const int evtbit
)
1904 struct qib_ctxtdata
*rcd
;
1908 spin_lock(&ppd
->dd
->uctxt_lock
);
1909 for (ctxt
= ppd
->dd
->first_user_ctxt
; ctxt
< ppd
->dd
->cfgctxts
;
1911 rcd
= ppd
->dd
->rcd
[ctxt
];
1914 if (rcd
->user_event_mask
) {
1917 * subctxt_cnt is 0 if not shared, so do base
1918 * separately, first, then remaining subctxt, if any
1920 set_bit(evtbit
, &rcd
->user_event_mask
[0]);
1921 for (i
= 1; i
< rcd
->subctxt_cnt
; i
++)
1922 set_bit(evtbit
, &rcd
->user_event_mask
[i
]);
1927 spin_unlock(&ppd
->dd
->uctxt_lock
);
1933 * clear the event notifier events for this context.
1934 * For the DISARM_BUFS case, we also take action (this obsoletes
1935 * the older QIB_CMD_DISARM_BUFS, but we keep it for backwards
1937 * Other bits don't currently require actions, just atomically clear.
1938 * User process then performs actions appropriate to bit having been
1939 * set, if desired, and checks again in future.
1941 static int qib_user_event_ack(struct qib_ctxtdata
*rcd
, int subctxt
,
1942 unsigned long events
)
1946 for (i
= 0; i
<= _QIB_MAX_EVENT_BIT
; i
++) {
1947 if (!test_bit(i
, &events
))
1949 if (i
== _QIB_EVENT_DISARM_BUFS_BIT
) {
1950 (void)qib_disarm_piobufs_ifneeded(rcd
);
1951 ret
= disarm_req_delay(rcd
);
1953 clear_bit(i
, &rcd
->user_event_mask
[subctxt
]);
1958 static ssize_t
qib_write(struct file
*fp
, const char __user
*data
,
1959 size_t count
, loff_t
*off
)
1961 const struct qib_cmd __user
*ucmd
;
1962 struct qib_ctxtdata
*rcd
;
1963 const void __user
*src
;
1964 size_t consumed
, copy
= 0;
1969 if (count
< sizeof(cmd
.type
)) {
1974 ucmd
= (const struct qib_cmd __user
*) data
;
1976 if (copy_from_user(&cmd
.type
, &ucmd
->type
, sizeof(cmd
.type
))) {
1981 consumed
= sizeof(cmd
.type
);
1984 case QIB_CMD_ASSIGN_CTXT
:
1985 case QIB_CMD_USER_INIT
:
1986 copy
= sizeof(cmd
.cmd
.user_info
);
1987 dest
= &cmd
.cmd
.user_info
;
1988 src
= &ucmd
->cmd
.user_info
;
1991 case QIB_CMD_RECV_CTRL
:
1992 copy
= sizeof(cmd
.cmd
.recv_ctrl
);
1993 dest
= &cmd
.cmd
.recv_ctrl
;
1994 src
= &ucmd
->cmd
.recv_ctrl
;
1997 case QIB_CMD_CTXT_INFO
:
1998 copy
= sizeof(cmd
.cmd
.ctxt_info
);
1999 dest
= &cmd
.cmd
.ctxt_info
;
2000 src
= &ucmd
->cmd
.ctxt_info
;
2003 case QIB_CMD_TID_UPDATE
:
2004 case QIB_CMD_TID_FREE
:
2005 copy
= sizeof(cmd
.cmd
.tid_info
);
2006 dest
= &cmd
.cmd
.tid_info
;
2007 src
= &ucmd
->cmd
.tid_info
;
2010 case QIB_CMD_SET_PART_KEY
:
2011 copy
= sizeof(cmd
.cmd
.part_key
);
2012 dest
= &cmd
.cmd
.part_key
;
2013 src
= &ucmd
->cmd
.part_key
;
2016 case QIB_CMD_DISARM_BUFS
:
2017 case QIB_CMD_PIOAVAILUPD
: /* force an update of PIOAvail reg */
2023 case QIB_CMD_POLL_TYPE
:
2024 copy
= sizeof(cmd
.cmd
.poll_type
);
2025 dest
= &cmd
.cmd
.poll_type
;
2026 src
= &ucmd
->cmd
.poll_type
;
2029 case QIB_CMD_ARMLAUNCH_CTRL
:
2030 copy
= sizeof(cmd
.cmd
.armlaunch_ctrl
);
2031 dest
= &cmd
.cmd
.armlaunch_ctrl
;
2032 src
= &ucmd
->cmd
.armlaunch_ctrl
;
2035 case QIB_CMD_SDMA_INFLIGHT
:
2036 copy
= sizeof(cmd
.cmd
.sdma_inflight
);
2037 dest
= &cmd
.cmd
.sdma_inflight
;
2038 src
= &ucmd
->cmd
.sdma_inflight
;
2041 case QIB_CMD_SDMA_COMPLETE
:
2042 copy
= sizeof(cmd
.cmd
.sdma_complete
);
2043 dest
= &cmd
.cmd
.sdma_complete
;
2044 src
= &ucmd
->cmd
.sdma_complete
;
2047 case QIB_CMD_ACK_EVENT
:
2048 copy
= sizeof(cmd
.cmd
.event_mask
);
2049 dest
= &cmd
.cmd
.event_mask
;
2050 src
= &ucmd
->cmd
.event_mask
;
2059 if ((count
- consumed
) < copy
) {
2063 if (copy_from_user(dest
, src
, copy
)) {
2071 if (!rcd
&& cmd
.type
!= QIB_CMD_ASSIGN_CTXT
) {
2077 case QIB_CMD_ASSIGN_CTXT
:
2078 ret
= qib_assign_ctxt(fp
, &cmd
.cmd
.user_info
);
2083 case QIB_CMD_USER_INIT
:
2084 ret
= qib_do_user_init(fp
, &cmd
.cmd
.user_info
);
2087 ret
= qib_get_base_info(fp
, (void __user
*) (unsigned long)
2088 cmd
.cmd
.user_info
.spu_base_info
,
2089 cmd
.cmd
.user_info
.spu_base_info_size
);
2092 case QIB_CMD_RECV_CTRL
:
2093 ret
= qib_manage_rcvq(rcd
, subctxt_fp(fp
), cmd
.cmd
.recv_ctrl
);
2096 case QIB_CMD_CTXT_INFO
:
2097 ret
= qib_ctxt_info(fp
, (struct qib_ctxt_info __user
*)
2098 (unsigned long) cmd
.cmd
.ctxt_info
);
2101 case QIB_CMD_TID_UPDATE
:
2102 ret
= qib_tid_update(rcd
, fp
, &cmd
.cmd
.tid_info
);
2105 case QIB_CMD_TID_FREE
:
2106 ret
= qib_tid_free(rcd
, subctxt_fp(fp
), &cmd
.cmd
.tid_info
);
2109 case QIB_CMD_SET_PART_KEY
:
2110 ret
= qib_set_part_key(rcd
, cmd
.cmd
.part_key
);
2113 case QIB_CMD_DISARM_BUFS
:
2114 (void)qib_disarm_piobufs_ifneeded(rcd
);
2115 ret
= disarm_req_delay(rcd
);
2118 case QIB_CMD_PIOAVAILUPD
:
2119 qib_force_pio_avail_update(rcd
->dd
);
2122 case QIB_CMD_POLL_TYPE
:
2123 rcd
->poll_type
= cmd
.cmd
.poll_type
;
2126 case QIB_CMD_ARMLAUNCH_CTRL
:
2127 rcd
->dd
->f_set_armlaunch(rcd
->dd
, cmd
.cmd
.armlaunch_ctrl
);
2130 case QIB_CMD_SDMA_INFLIGHT
:
2131 ret
= qib_sdma_get_inflight(user_sdma_queue_fp(fp
),
2132 (u32 __user
*) (unsigned long)
2133 cmd
.cmd
.sdma_inflight
);
2136 case QIB_CMD_SDMA_COMPLETE
:
2137 ret
= qib_sdma_get_complete(rcd
->ppd
,
2138 user_sdma_queue_fp(fp
),
2139 (u32 __user
*) (unsigned long)
2140 cmd
.cmd
.sdma_complete
);
2143 case QIB_CMD_ACK_EVENT
:
2144 ret
= qib_user_event_ack(rcd
, subctxt_fp(fp
),
2145 cmd
.cmd
.event_mask
);
2156 static ssize_t
qib_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
2157 unsigned long dim
, loff_t off
)
2159 struct qib_filedata
*fp
= iocb
->ki_filp
->private_data
;
2160 struct qib_ctxtdata
*rcd
= ctxt_fp(iocb
->ki_filp
);
2161 struct qib_user_sdma_queue
*pq
= fp
->pq
;
2166 return qib_user_sdma_writev(rcd
, pq
, iov
, dim
);
2169 static struct class *qib_class
;
2170 static dev_t qib_dev
;
2172 int qib_cdev_init(int minor
, const char *name
,
2173 const struct file_operations
*fops
,
2174 struct cdev
**cdevp
, struct device
**devp
)
2176 const dev_t dev
= MKDEV(MAJOR(qib_dev
), minor
);
2178 struct device
*device
= NULL
;
2181 cdev
= cdev_alloc();
2183 printk(KERN_ERR QIB_DRV_NAME
2184 ": Could not allocate cdev for minor %d, %s\n",
2190 cdev
->owner
= THIS_MODULE
;
2192 kobject_set_name(&cdev
->kobj
, name
);
2194 ret
= cdev_add(cdev
, dev
, 1);
2196 printk(KERN_ERR QIB_DRV_NAME
2197 ": Could not add cdev for minor %d, %s (err %d)\n",
2202 device
= device_create(qib_class
, NULL
, dev
, NULL
, name
);
2203 if (!IS_ERR(device
))
2205 ret
= PTR_ERR(device
);
2207 printk(KERN_ERR QIB_DRV_NAME
": Could not create "
2208 "device for minor %d, %s (err %d)\n",
2219 void qib_cdev_cleanup(struct cdev
**cdevp
, struct device
**devp
)
2221 struct device
*device
= *devp
;
2224 device_unregister(device
);
2234 static struct cdev
*wildcard_cdev
;
2235 static struct device
*wildcard_device
;
2237 int __init
qib_dev_init(void)
2241 ret
= alloc_chrdev_region(&qib_dev
, 0, QIB_NMINORS
, QIB_DRV_NAME
);
2243 printk(KERN_ERR QIB_DRV_NAME
": Could not allocate "
2244 "chrdev region (err %d)\n", -ret
);
2248 qib_class
= class_create(THIS_MODULE
, "ipath");
2249 if (IS_ERR(qib_class
)) {
2250 ret
= PTR_ERR(qib_class
);
2251 printk(KERN_ERR QIB_DRV_NAME
": Could not create "
2252 "device class (err %d)\n", -ret
);
2253 unregister_chrdev_region(qib_dev
, QIB_NMINORS
);
2260 void qib_dev_cleanup(void)
2263 class_destroy(qib_class
);
2267 unregister_chrdev_region(qib_dev
, QIB_NMINORS
);
2270 static atomic_t user_count
= ATOMIC_INIT(0);
2272 static void qib_user_remove(struct qib_devdata
*dd
)
2274 if (atomic_dec_return(&user_count
) == 0)
2275 qib_cdev_cleanup(&wildcard_cdev
, &wildcard_device
);
2277 qib_cdev_cleanup(&dd
->user_cdev
, &dd
->user_device
);
2280 static int qib_user_add(struct qib_devdata
*dd
)
2285 if (atomic_inc_return(&user_count
) == 1) {
2286 ret
= qib_cdev_init(0, "ipath", &qib_file_ops
,
2287 &wildcard_cdev
, &wildcard_device
);
2292 snprintf(name
, sizeof(name
), "ipath%d", dd
->unit
);
2293 ret
= qib_cdev_init(dd
->unit
+ 1, name
, &qib_file_ops
,
2294 &dd
->user_cdev
, &dd
->user_device
);
2296 qib_user_remove(dd
);
2302 * Create per-unit files in /dev
2304 int qib_device_create(struct qib_devdata
*dd
)
2308 r
= qib_user_add(dd
);
2309 ret
= qib_diag_add(dd
);
2316 * Remove per-unit files in /dev
2317 * void, core kernel returns no errors for this stuff
2319 void qib_device_remove(struct qib_devdata
*dd
)
2321 qib_user_remove(dd
);
2322 qib_diag_remove(dd
);