2 * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <linux/pci.h>
35 #include <linux/poll.h>
36 #include <linux/cdev.h>
37 #include <linux/swap.h>
38 #include <linux/vmalloc.h>
39 #include <asm/pgtable.h>
41 #include "ipath_kernel.h"
42 #include "ipath_common.h"
44 static int ipath_open(struct inode
*, struct file
*);
45 static int ipath_close(struct inode
*, struct file
*);
46 static ssize_t
ipath_write(struct file
*, const char __user
*, size_t,
48 static unsigned int ipath_poll(struct file
*, struct poll_table_struct
*);
49 static int ipath_mmap(struct file
*, struct vm_area_struct
*);
51 static const struct file_operations ipath_file_ops
= {
55 .release
= ipath_close
,
61 * Convert kernel virtual addresses to physical addresses so they don't
62 * potentially conflict with the chip addresses used as mmap offsets.
63 * It doesn't really matter what mmap offset we use as long as we can
64 * interpret it correctly.
66 static u64
cvt_kvaddr(void *p
)
71 page
= vmalloc_to_page(p
);
73 paddr
= page_to_pfn(page
) << PAGE_SHIFT
;
78 static int ipath_get_base_info(struct file
*fp
,
79 void __user
*ubase
, size_t ubase_size
)
81 struct ipath_portdata
*pd
= port_fp(fp
);
83 struct ipath_base_info
*kinfo
= NULL
;
84 struct ipath_devdata
*dd
= pd
->port_dd
;
89 subport_cnt
= pd
->port_subport_cnt
;
96 master
= !subport_fp(fp
);
100 /* If port sharing is not requested, allow the old size structure */
102 sz
-= 7 * sizeof(u64
);
103 if (ubase_size
< sz
) {
105 "Base size %zu, need %zu (version mismatch?)\n",
111 kinfo
= kzalloc(sizeof(*kinfo
), GFP_KERNEL
);
117 ret
= dd
->ipath_f_get_base_info(pd
, kinfo
);
121 kinfo
->spi_rcvhdr_cnt
= dd
->ipath_rcvhdrcnt
;
122 kinfo
->spi_rcvhdrent_size
= dd
->ipath_rcvhdrentsize
;
123 kinfo
->spi_tidegrcnt
= dd
->ipath_rcvegrcnt
;
124 kinfo
->spi_rcv_egrbufsize
= dd
->ipath_rcvegrbufsize
;
126 * have to mmap whole thing
128 kinfo
->spi_rcv_egrbuftotlen
=
129 pd
->port_rcvegrbuf_chunks
* pd
->port_rcvegrbuf_size
;
130 kinfo
->spi_rcv_egrperchunk
= pd
->port_rcvegrbufs_perchunk
;
131 kinfo
->spi_rcv_egrchunksize
= kinfo
->spi_rcv_egrbuftotlen
/
132 pd
->port_rcvegrbuf_chunks
;
133 kinfo
->spi_tidcnt
= dd
->ipath_rcvtidcnt
/ subport_cnt
;
135 kinfo
->spi_tidcnt
+= dd
->ipath_rcvtidcnt
% subport_cnt
;
137 * for this use, may be ipath_cfgports summed over all chips that
138 * are are configured and present
140 kinfo
->spi_nports
= dd
->ipath_cfgports
;
141 /* unit (chip/board) our port is on */
142 kinfo
->spi_unit
= dd
->ipath_unit
;
143 /* for now, only a single page */
144 kinfo
->spi_tid_maxsize
= PAGE_SIZE
;
147 * Doing this per port, and based on the skip value, etc. This has
148 * to be the actual buffer size, since the protocol code treats it
151 * These have to be set to user addresses in the user code via mmap.
152 * These values are used on return to user code for the mmap target
153 * addresses only. For 32 bit, same 44 bit address problem, so use
154 * the physical address, not virtual. Before 2.6.11, using the
155 * page_address() macro worked, but in 2.6.11, even that returns the
156 * full 64 bit address (upper bits all 1's). So far, using the
157 * physical addresses (or chip offsets, for chip mapping) works, but
158 * no doubt some future kernel release will change that, and we'll be
159 * on to yet another method of dealing with this.
161 kinfo
->spi_rcvhdr_base
= (u64
) pd
->port_rcvhdrq_phys
;
162 kinfo
->spi_rcvhdr_tailaddr
= (u64
) pd
->port_rcvhdrqtailaddr_phys
;
163 kinfo
->spi_rcv_egrbufs
= (u64
) pd
->port_rcvegr_phys
;
164 kinfo
->spi_pioavailaddr
= (u64
) dd
->ipath_pioavailregs_phys
;
165 kinfo
->spi_status
= (u64
) kinfo
->spi_pioavailaddr
+
166 (void *) dd
->ipath_statusp
-
167 (void *) dd
->ipath_pioavailregs_dma
;
169 kinfo
->spi_piocnt
= dd
->ipath_pbufsport
;
170 kinfo
->spi_piobufbase
= (u64
) pd
->port_piobufs
;
171 kinfo
->__spi_uregbase
= (u64
) dd
->ipath_uregbase
+
172 dd
->ipath_ureg_align
* pd
->port_port
;
174 kinfo
->spi_piocnt
= (dd
->ipath_pbufsport
/ subport_cnt
) +
175 (dd
->ipath_pbufsport
% subport_cnt
);
176 /* Master's PIO buffers are after all the slave's */
177 kinfo
->spi_piobufbase
= (u64
) pd
->port_piobufs
+
179 (dd
->ipath_pbufsport
- kinfo
->spi_piocnt
);
181 unsigned slave
= subport_fp(fp
) - 1;
183 kinfo
->spi_piocnt
= dd
->ipath_pbufsport
/ subport_cnt
;
184 kinfo
->spi_piobufbase
= (u64
) pd
->port_piobufs
+
185 dd
->ipath_palign
* kinfo
->spi_piocnt
* slave
;
188 kinfo
->spi_port_uregbase
= (u64
) dd
->ipath_uregbase
+
189 dd
->ipath_ureg_align
* pd
->port_port
;
190 kinfo
->spi_port_rcvegrbuf
= kinfo
->spi_rcv_egrbufs
;
191 kinfo
->spi_port_rcvhdr_base
= kinfo
->spi_rcvhdr_base
;
192 kinfo
->spi_port_rcvhdr_tailaddr
= kinfo
->spi_rcvhdr_tailaddr
;
194 kinfo
->__spi_uregbase
= cvt_kvaddr(pd
->subport_uregbase
+
195 PAGE_SIZE
* subport_fp(fp
));
197 kinfo
->spi_rcvhdr_base
= cvt_kvaddr(pd
->subport_rcvhdr_base
+
198 pd
->port_rcvhdrq_size
* subport_fp(fp
));
199 kinfo
->spi_rcvhdr_tailaddr
= 0;
200 kinfo
->spi_rcv_egrbufs
= cvt_kvaddr(pd
->subport_rcvegrbuf
+
201 pd
->port_rcvegrbuf_chunks
* pd
->port_rcvegrbuf_size
*
204 kinfo
->spi_subport_uregbase
=
205 cvt_kvaddr(pd
->subport_uregbase
);
206 kinfo
->spi_subport_rcvegrbuf
=
207 cvt_kvaddr(pd
->subport_rcvegrbuf
);
208 kinfo
->spi_subport_rcvhdr_base
=
209 cvt_kvaddr(pd
->subport_rcvhdr_base
);
210 ipath_cdbg(PROC
, "port %u flags %x %llx %llx %llx\n",
211 kinfo
->spi_port
, kinfo
->spi_runtime_flags
,
212 (unsigned long long) kinfo
->spi_subport_uregbase
,
213 (unsigned long long) kinfo
->spi_subport_rcvegrbuf
,
214 (unsigned long long) kinfo
->spi_subport_rcvhdr_base
);
217 kinfo
->spi_pioindex
= (kinfo
->spi_piobufbase
- dd
->ipath_piobufbase
) /
219 kinfo
->spi_pioalign
= dd
->ipath_palign
;
221 kinfo
->spi_qpair
= IPATH_KD_QP
;
222 kinfo
->spi_piosize
= dd
->ipath_ibmaxlen
;
223 kinfo
->spi_mtu
= dd
->ipath_ibmaxlen
; /* maxlen, not ibmtu */
224 kinfo
->spi_port
= pd
->port_port
;
225 kinfo
->spi_subport
= subport_fp(fp
);
226 kinfo
->spi_sw_version
= IPATH_KERN_SWVERSION
;
227 kinfo
->spi_hw_version
= dd
->ipath_revision
;
230 kinfo
->spi_runtime_flags
|= IPATH_RUNTIME_MASTER
;
233 sz
= (ubase_size
< sizeof(*kinfo
)) ? ubase_size
: sizeof(*kinfo
);
234 if (copy_to_user(ubase
, kinfo
, sz
))
243 * ipath_tid_update - update a port TID
245 * @fp: the ipath device file
246 * @ti: the TID information
248 * The new implementation as of Oct 2004 is that the driver assigns
249 * the tid and returns it to the caller. To make it easier to
250 * catch bugs, and to reduce search time, we keep a cursor for
251 * each port, walking the shadow tid array to find one that's not
254 * For now, if we can't allocate the full list, we fail, although
255 * in the long run, we'll allocate as many as we can, and the
256 * caller will deal with that by trying the remaining pages later.
257 * That means that when we fail, we have to mark the tids as not in
258 * use again, in our shadow copy.
260 * It's up to the caller to free the tids when they are done.
261 * We'll unlock the pages as they free them.
263 * Also, right now we are locking one page at a time, but since
264 * the intended use of this routine is for a single group of
265 * virtually contiguous pages, that should change to improve
268 static int ipath_tid_update(struct ipath_portdata
*pd
, struct file
*fp
,
269 const struct ipath_tid_info
*ti
)
272 u32 tid
, porttid
, cnt
, i
, tidcnt
, tidoff
;
274 struct ipath_devdata
*dd
= pd
->port_dd
;
277 u64 __iomem
*tidbase
;
278 unsigned long tidmap
[8];
279 struct page
**pagep
= NULL
;
280 unsigned subport
= subport_fp(fp
);
282 if (!dd
->ipath_pageshadow
) {
289 ipath_dbg("After copyin, tidcnt 0, tidlist %llx\n",
290 (unsigned long long) ti
->tidlist
);
292 * Should we treat as success? likely a bug
297 porttid
= pd
->port_port
* dd
->ipath_rcvtidcnt
;
298 if (!pd
->port_subport_cnt
) {
299 tidcnt
= dd
->ipath_rcvtidcnt
;
300 tid
= pd
->port_tidcursor
;
302 } else if (!subport
) {
303 tidcnt
= (dd
->ipath_rcvtidcnt
/ pd
->port_subport_cnt
) +
304 (dd
->ipath_rcvtidcnt
% pd
->port_subport_cnt
);
305 tidoff
= dd
->ipath_rcvtidcnt
- tidcnt
;
307 tid
= tidcursor_fp(fp
);
309 tidcnt
= dd
->ipath_rcvtidcnt
/ pd
->port_subport_cnt
;
310 tidoff
= tidcnt
* (subport
- 1);
312 tid
= tidcursor_fp(fp
);
315 /* make sure it all fits in port_tid_pg_list */
316 dev_info(&dd
->pcidev
->dev
, "Process tried to allocate %u "
317 "TIDs, only trying max (%u)\n", cnt
, tidcnt
);
320 pagep
= &((struct page
**) pd
->port_tid_pg_list
)[tidoff
];
321 tidlist
= &((u16
*) &pagep
[dd
->ipath_rcvtidcnt
])[tidoff
];
323 memset(tidmap
, 0, sizeof(tidmap
));
324 /* before decrement; chip actual # */
326 tidbase
= (u64 __iomem
*) (((char __iomem
*) dd
->ipath_kregbase
) +
327 dd
->ipath_rcvtidbase
+
328 porttid
* sizeof(*tidbase
));
330 ipath_cdbg(VERBOSE
, "Port%u %u tids, cursor %u, tidbase %p\n",
331 pd
->port_port
, cnt
, tid
, tidbase
);
333 /* virtual address of first page in transfer */
334 vaddr
= ti
->tidvaddr
;
335 if (!access_ok(VERIFY_WRITE
, (void __user
*) vaddr
,
337 ipath_dbg("Fail vaddr %p, %u pages, !access_ok\n",
342 ret
= ipath_get_user_pages(vaddr
, cnt
, pagep
);
345 ipath_dbg("Failed to lock addr %p, %u pages "
346 "(already locked)\n",
347 (void *) vaddr
, cnt
);
349 * for now, continue, and see what happens but with
350 * the new implementation, this should never happen,
351 * unless perhaps the user has mpin'ed the pages
352 * themselves (something we need to test)
356 dev_info(&dd
->pcidev
->dev
,
357 "Failed to lock addr %p, %u pages: "
358 "errno %d\n", (void *) vaddr
, cnt
, -ret
);
362 for (i
= 0; i
< cnt
; i
++, vaddr
+= PAGE_SIZE
) {
363 for (; ntids
--; tid
++) {
366 if (!dd
->ipath_pageshadow
[porttid
+ tid
])
371 * oops, wrapped all the way through their TIDs,
372 * and didn't have enough free; see comments at
375 ipath_dbg("Not enough free TIDs for %u pages "
376 "(index %d), failing\n", cnt
, i
);
377 i
--; /* last tidlist[i] not filled in */
381 tidlist
[i
] = tid
+ tidoff
;
382 ipath_cdbg(VERBOSE
, "Updating idx %u to TID %u, "
383 "vaddr %lx\n", i
, tid
+ tidoff
, vaddr
);
384 /* we "know" system pages and TID pages are same size */
385 dd
->ipath_pageshadow
[porttid
+ tid
] = pagep
[i
];
386 dd
->ipath_physshadow
[porttid
+ tid
] = ipath_map_page(
387 dd
->pcidev
, pagep
[i
], 0, PAGE_SIZE
,
390 * don't need atomic or it's overhead
392 __set_bit(tid
, tidmap
);
393 physaddr
= dd
->ipath_physshadow
[porttid
+ tid
];
394 ipath_stats
.sps_pagelocks
++;
396 "TID %u, vaddr %lx, physaddr %llx pgp %p\n",
397 tid
, vaddr
, (unsigned long long) physaddr
,
399 dd
->ipath_f_put_tid(dd
, &tidbase
[tid
], RCVHQ_RCV_TYPE_EXPECTED
,
402 * don't check this tid in ipath_portshadow, since we
403 * just filled it in; start with the next one.
411 /* jump here if copy out of updated info failed... */
412 ipath_dbg("After failure (ret=%d), undo %d of %d entries\n",
414 /* same code that's in ipath_free_tid() */
415 limit
= sizeof(tidmap
) * BITS_PER_BYTE
;
417 /* just in case size changes in future */
419 tid
= find_first_bit((const unsigned long *)tidmap
, limit
);
420 for (; tid
< limit
; tid
++) {
421 if (!test_bit(tid
, tidmap
))
423 if (dd
->ipath_pageshadow
[porttid
+ tid
]) {
424 ipath_cdbg(VERBOSE
, "Freeing TID %u\n",
426 dd
->ipath_f_put_tid(dd
, &tidbase
[tid
],
427 RCVHQ_RCV_TYPE_EXPECTED
,
428 dd
->ipath_tidinvalid
);
429 pci_unmap_page(dd
->pcidev
,
430 dd
->ipath_physshadow
[porttid
+ tid
],
431 PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
432 dd
->ipath_pageshadow
[porttid
+ tid
] = NULL
;
433 ipath_stats
.sps_pageunlocks
++;
436 ipath_release_user_pages(pagep
, cnt
);
439 * Copy the updated array, with ipath_tid's filled in, back
440 * to user. Since we did the copy in already, this "should
441 * never fail" If it does, we have to clean up...
443 if (copy_to_user((void __user
*)
444 (unsigned long) ti
->tidlist
,
445 tidlist
, cnt
* sizeof(*tidlist
))) {
449 if (copy_to_user((void __user
*) (unsigned long) ti
->tidmap
,
450 tidmap
, sizeof tidmap
)) {
456 if (!pd
->port_subport_cnt
)
457 pd
->port_tidcursor
= tid
;
459 tidcursor_fp(fp
) = tid
;
464 ipath_dbg("Failed to map %u TID pages, failing with %d\n",
470 * ipath_tid_free - free a port TID
472 * @subport: the subport
475 * right now we are unlocking one page at a time, but since
476 * the intended use of this routine is for a single group of
477 * virtually contiguous pages, that should change to improve
478 * performance. We check that the TID is in range for this port
479 * but otherwise don't check validity; if user has an error and
480 * frees the wrong tid, it's only their own data that can thereby
481 * be corrupted. We do check that the TID was in use, for sanity
482 * We always use our idea of the saved address, not the address that
483 * they pass in to us.
486 static int ipath_tid_free(struct ipath_portdata
*pd
, unsigned subport
,
487 const struct ipath_tid_info
*ti
)
490 u32 tid
, porttid
, cnt
, limit
, tidcnt
;
491 struct ipath_devdata
*dd
= pd
->port_dd
;
492 u64 __iomem
*tidbase
;
493 unsigned long tidmap
[8];
495 if (!dd
->ipath_pageshadow
) {
500 if (copy_from_user(tidmap
, (void __user
*)(unsigned long)ti
->tidmap
,
506 porttid
= pd
->port_port
* dd
->ipath_rcvtidcnt
;
507 if (!pd
->port_subport_cnt
)
508 tidcnt
= dd
->ipath_rcvtidcnt
;
510 tidcnt
= (dd
->ipath_rcvtidcnt
/ pd
->port_subport_cnt
) +
511 (dd
->ipath_rcvtidcnt
% pd
->port_subport_cnt
);
512 porttid
+= dd
->ipath_rcvtidcnt
- tidcnt
;
514 tidcnt
= dd
->ipath_rcvtidcnt
/ pd
->port_subport_cnt
;
515 porttid
+= tidcnt
* (subport
- 1);
517 tidbase
= (u64 __iomem
*) ((char __iomem
*)(dd
->ipath_kregbase
) +
518 dd
->ipath_rcvtidbase
+
519 porttid
* sizeof(*tidbase
));
521 limit
= sizeof(tidmap
) * BITS_PER_BYTE
;
523 /* just in case size changes in future */
525 tid
= find_first_bit(tidmap
, limit
);
526 ipath_cdbg(VERBOSE
, "Port%u free %u tids; first bit (max=%d) "
527 "set is %d, porttid %u\n", pd
->port_port
, ti
->tidcnt
,
528 limit
, tid
, porttid
);
529 for (cnt
= 0; tid
< limit
; tid
++) {
531 * small optimization; if we detect a run of 3 or so without
532 * any set, use find_first_bit again. That's mainly to
533 * accelerate the case where we wrapped, so we have some at
534 * the beginning, and some at the end, and a big gap
537 if (!test_bit(tid
, tidmap
))
540 if (dd
->ipath_pageshadow
[porttid
+ tid
]) {
542 p
= dd
->ipath_pageshadow
[porttid
+ tid
];
543 dd
->ipath_pageshadow
[porttid
+ tid
] = NULL
;
544 ipath_cdbg(VERBOSE
, "PID %u freeing TID %u\n",
546 dd
->ipath_f_put_tid(dd
, &tidbase
[tid
],
547 RCVHQ_RCV_TYPE_EXPECTED
,
548 dd
->ipath_tidinvalid
);
549 pci_unmap_page(dd
->pcidev
,
550 dd
->ipath_physshadow
[porttid
+ tid
],
551 PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
552 ipath_release_user_pages(&p
, 1);
553 ipath_stats
.sps_pageunlocks
++;
555 ipath_dbg("Unused tid %u, ignoring\n", tid
);
557 if (cnt
!= ti
->tidcnt
)
558 ipath_dbg("passed in tidcnt %d, only %d bits set in map\n",
562 ipath_dbg("Failed to unmap %u TID pages, failing with %d\n",
568 * ipath_set_part_key - set a partition key
572 * We can have up to 4 active at a time (other than the default, which is
573 * always allowed). This is somewhat tricky, since multiple ports may set
574 * the same key, so we reference count them, and clean up at exit. All 4
575 * partition keys are packed into a single infinipath register. It's an
576 * error for a process to set the same pkey multiple times. We provide no
577 * mechanism to de-allocate a pkey at this time, we may eventually need to
578 * do that. I've used the atomic operations, and no locking, and only make
579 * a single pass through what's available. This should be more than
580 * adequate for some time. I'll think about spinlocks or the like if and as
583 static int ipath_set_part_key(struct ipath_portdata
*pd
, u16 key
)
585 struct ipath_devdata
*dd
= pd
->port_dd
;
586 int i
, any
= 0, pidx
= -1;
587 u16 lkey
= key
& 0x7FFF;
590 if (lkey
== (IPATH_DEFAULT_P_KEY
& 0x7FFF)) {
591 /* nothing to do; this key always valid */
596 ipath_cdbg(VERBOSE
, "p%u try to set pkey %hx, current keys "
597 "%hx:%x %hx:%x %hx:%x %hx:%x\n",
598 pd
->port_port
, key
, dd
->ipath_pkeys
[0],
599 atomic_read(&dd
->ipath_pkeyrefs
[0]), dd
->ipath_pkeys
[1],
600 atomic_read(&dd
->ipath_pkeyrefs
[1]), dd
->ipath_pkeys
[2],
601 atomic_read(&dd
->ipath_pkeyrefs
[2]), dd
->ipath_pkeys
[3],
602 atomic_read(&dd
->ipath_pkeyrefs
[3]));
605 ipath_cdbg(PROC
, "p%u tries to set key 0, not allowed\n",
612 * Set the full membership bit, because it has to be
613 * set in the register or the packet, and it seems
614 * cleaner to set in the register than to force all
615 * callers to set it. (see bug 4331)
619 for (i
= 0; i
< ARRAY_SIZE(pd
->port_pkeys
); i
++) {
620 if (!pd
->port_pkeys
[i
] && pidx
== -1)
622 if (pd
->port_pkeys
[i
] == key
) {
623 ipath_cdbg(VERBOSE
, "p%u tries to set same pkey "
624 "(%x) more than once\n",
631 ipath_dbg("All pkeys for port %u already in use, "
632 "can't set %x\n", pd
->port_port
, key
);
636 for (any
= i
= 0; i
< ARRAY_SIZE(dd
->ipath_pkeys
); i
++) {
637 if (!dd
->ipath_pkeys
[i
]) {
641 if (dd
->ipath_pkeys
[i
] == key
) {
642 atomic_t
*pkrefs
= &dd
->ipath_pkeyrefs
[i
];
644 if (atomic_inc_return(pkrefs
) > 1) {
645 pd
->port_pkeys
[pidx
] = key
;
646 ipath_cdbg(VERBOSE
, "p%u set key %x "
647 "matches #%d, count now %d\n",
648 pd
->port_port
, key
, i
,
649 atomic_read(pkrefs
));
654 * lost race, decrement count, catch below
657 ipath_cdbg(VERBOSE
, "Lost race, count was "
658 "0, after dec, it's %d\n",
659 atomic_read(pkrefs
));
663 if ((dd
->ipath_pkeys
[i
] & 0x7FFF) == lkey
) {
665 * It makes no sense to have both the limited and
666 * full membership PKEY set at the same time since
667 * the unlimited one will disable the limited one.
674 ipath_dbg("port %u, all pkeys already in use, "
675 "can't set %x\n", pd
->port_port
, key
);
679 for (any
= i
= 0; i
< ARRAY_SIZE(dd
->ipath_pkeys
); i
++) {
680 if (!dd
->ipath_pkeys
[i
] &&
681 atomic_inc_return(&dd
->ipath_pkeyrefs
[i
]) == 1) {
684 /* for ipathstats, etc. */
685 ipath_stats
.sps_pkeys
[i
] = lkey
;
686 pd
->port_pkeys
[pidx
] = dd
->ipath_pkeys
[i
] = key
;
688 (u64
) dd
->ipath_pkeys
[0] |
689 ((u64
) dd
->ipath_pkeys
[1] << 16) |
690 ((u64
) dd
->ipath_pkeys
[2] << 32) |
691 ((u64
) dd
->ipath_pkeys
[3] << 48);
692 ipath_cdbg(PROC
, "p%u set key %x in #%d, "
693 "portidx %d, new pkey reg %llx\n",
694 pd
->port_port
, key
, i
, pidx
,
695 (unsigned long long) pkey
);
697 dd
, dd
->ipath_kregs
->kr_partitionkey
, pkey
);
703 ipath_dbg("port %u, all pkeys already in use 2nd pass, "
704 "can't set %x\n", pd
->port_port
, key
);
712 * ipath_manage_rcvq - manage a port's receive queue
714 * @subport: the subport
715 * @start_stop: action to carry out
717 * start_stop == 0 disables receive on the port, for use in queue
718 * overflow conditions. start_stop==1 re-enables, to be used to
719 * re-init the software copy of the head register
721 static int ipath_manage_rcvq(struct ipath_portdata
*pd
, unsigned subport
,
724 struct ipath_devdata
*dd
= pd
->port_dd
;
726 ipath_cdbg(PROC
, "%sabling rcv for unit %u port %u:%u\n",
727 start_stop
? "en" : "dis", dd
->ipath_unit
,
728 pd
->port_port
, subport
);
731 /* atomically clear receive enable port. */
734 * On enable, force in-memory copy of the tail register to
735 * 0, so that protocol code doesn't have to worry about
736 * whether or not the chip has yet updated the in-memory
737 * copy or not on return from the system call. The chip
738 * always resets it's tail register back to 0 on a
739 * transition from disabled to enabled. This could cause a
740 * problem if software was broken, and did the enable w/o
741 * the disable, but eventually the in-memory copy will be
742 * updated and correct itself, even in the face of software
745 if (pd
->port_rcvhdrtail_kvaddr
)
746 ipath_clear_rcvhdrtail(pd
);
747 set_bit(dd
->ipath_r_portenable_shift
+ pd
->port_port
,
750 clear_bit(dd
->ipath_r_portenable_shift
+ pd
->port_port
,
752 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvctrl
,
754 /* now be sure chip saw it before we return */
755 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
758 * And try to be sure that tail reg update has happened too.
759 * This should in theory interlock with the RXE changes to
760 * the tail register. Don't assign it to the tail register
761 * in memory copy, since we could overwrite an update by the
764 ipath_read_ureg32(dd
, ur_rcvhdrtail
, pd
->port_port
);
766 /* always; new head should be equal to new tail; see above */
771 static void ipath_clean_part_key(struct ipath_portdata
*pd
,
772 struct ipath_devdata
*dd
)
774 int i
, j
, pchanged
= 0;
777 /* for debugging only */
778 oldpkey
= (u64
) dd
->ipath_pkeys
[0] |
779 ((u64
) dd
->ipath_pkeys
[1] << 16) |
780 ((u64
) dd
->ipath_pkeys
[2] << 32) |
781 ((u64
) dd
->ipath_pkeys
[3] << 48);
783 for (i
= 0; i
< ARRAY_SIZE(pd
->port_pkeys
); i
++) {
784 if (!pd
->port_pkeys
[i
])
786 ipath_cdbg(VERBOSE
, "look for key[%d] %hx in pkeys\n", i
,
788 for (j
= 0; j
< ARRAY_SIZE(dd
->ipath_pkeys
); j
++) {
789 /* check for match independent of the global bit */
790 if ((dd
->ipath_pkeys
[j
] & 0x7fff) !=
791 (pd
->port_pkeys
[i
] & 0x7fff))
793 if (atomic_dec_and_test(&dd
->ipath_pkeyrefs
[j
])) {
794 ipath_cdbg(VERBOSE
, "p%u clear key "
797 pd
->port_pkeys
[i
], j
);
798 ipath_stats
.sps_pkeys
[j
] =
799 dd
->ipath_pkeys
[j
] = 0;
803 VERBOSE
, "p%u key %x matches #%d, "
804 "but ref still %d\n", pd
->port_port
,
805 pd
->port_pkeys
[i
], j
,
806 atomic_read(&dd
->ipath_pkeyrefs
[j
]));
809 pd
->port_pkeys
[i
] = 0;
812 u64 pkey
= (u64
) dd
->ipath_pkeys
[0] |
813 ((u64
) dd
->ipath_pkeys
[1] << 16) |
814 ((u64
) dd
->ipath_pkeys
[2] << 32) |
815 ((u64
) dd
->ipath_pkeys
[3] << 48);
816 ipath_cdbg(VERBOSE
, "p%u old pkey reg %llx, "
817 "new pkey reg %llx\n", pd
->port_port
,
818 (unsigned long long) oldpkey
,
819 (unsigned long long) pkey
);
820 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_partitionkey
,
826 * Initialize the port data with the receive buffer sizes
827 * so this can be done while the master port is locked.
828 * Otherwise, there is a race with a slave opening the port
829 * and seeing these fields uninitialized.
831 static void init_user_egr_sizes(struct ipath_portdata
*pd
)
833 struct ipath_devdata
*dd
= pd
->port_dd
;
834 unsigned egrperchunk
, egrcnt
, size
;
837 * to avoid wasting a lot of memory, we allocate 32KB chunks of
838 * physically contiguous memory, advance through it until used up
839 * and then allocate more. Of course, we need memory to store those
840 * extra pointers, now. Started out with 256KB, but under heavy
841 * memory pressure (creating large files and then copying them over
842 * NFS while doing lots of MPI jobs), we hit some allocation
843 * failures, even though we can sleep... (2.6.10) Still get
844 * failures at 64K. 32K is the lowest we can go without wasting
848 egrperchunk
= size
/ dd
->ipath_rcvegrbufsize
;
849 egrcnt
= dd
->ipath_rcvegrcnt
;
850 pd
->port_rcvegrbuf_chunks
= (egrcnt
+ egrperchunk
- 1) / egrperchunk
;
851 pd
->port_rcvegrbufs_perchunk
= egrperchunk
;
852 pd
->port_rcvegrbuf_size
= size
;
856 * ipath_create_user_egr - allocate eager TID buffers
857 * @pd: the port to allocate TID buffers for
859 * This routine is now quite different for user and kernel, because
860 * the kernel uses skb's, for the accelerated network performance
861 * This is the user port version
863 * Allocate the eager TID buffers and program them into infinipath
864 * They are no longer completely contiguous, we do multiple allocation
867 static int ipath_create_user_egr(struct ipath_portdata
*pd
)
869 struct ipath_devdata
*dd
= pd
->port_dd
;
870 unsigned e
, egrcnt
, egrperchunk
, chunk
, egrsize
, egroff
;
876 * GFP_USER, but without GFP_FS, so buffer cache can be
877 * coalesced (we hope); otherwise, even at order 4,
878 * heavy filesystem activity makes these fail, and we can
879 * use compound pages.
881 gfp_flags
= __GFP_WAIT
| __GFP_IO
| __GFP_COMP
;
883 egrcnt
= dd
->ipath_rcvegrcnt
;
884 /* TID number offset for this port */
885 egroff
= (pd
->port_port
- 1) * egrcnt
+ dd
->ipath_p0_rcvegrcnt
;
886 egrsize
= dd
->ipath_rcvegrbufsize
;
887 ipath_cdbg(VERBOSE
, "Allocating %d egr buffers, at egrtid "
888 "offset %x, egrsize %u\n", egrcnt
, egroff
, egrsize
);
890 chunk
= pd
->port_rcvegrbuf_chunks
;
891 egrperchunk
= pd
->port_rcvegrbufs_perchunk
;
892 size
= pd
->port_rcvegrbuf_size
;
893 pd
->port_rcvegrbuf
= kmalloc(chunk
* sizeof(pd
->port_rcvegrbuf
[0]),
895 if (!pd
->port_rcvegrbuf
) {
899 pd
->port_rcvegrbuf_phys
=
900 kmalloc(chunk
* sizeof(pd
->port_rcvegrbuf_phys
[0]),
902 if (!pd
->port_rcvegrbuf_phys
) {
906 for (e
= 0; e
< pd
->port_rcvegrbuf_chunks
; e
++) {
908 pd
->port_rcvegrbuf
[e
] = dma_alloc_coherent(
909 &dd
->pcidev
->dev
, size
, &pd
->port_rcvegrbuf_phys
[e
],
912 if (!pd
->port_rcvegrbuf
[e
]) {
914 goto bail_rcvegrbuf_phys
;
918 pd
->port_rcvegr_phys
= pd
->port_rcvegrbuf_phys
[0];
920 for (e
= chunk
= 0; chunk
< pd
->port_rcvegrbuf_chunks
; chunk
++) {
921 dma_addr_t pa
= pd
->port_rcvegrbuf_phys
[chunk
];
924 for (i
= 0; e
< egrcnt
&& i
< egrperchunk
; e
++, i
++) {
925 dd
->ipath_f_put_tid(dd
, e
+ egroff
+
929 dd
->ipath_rcvegrbase
),
930 RCVHQ_RCV_TYPE_EAGER
, pa
);
933 cond_resched(); /* don't hog the cpu */
940 for (e
= 0; e
< pd
->port_rcvegrbuf_chunks
&&
941 pd
->port_rcvegrbuf
[e
]; e
++) {
942 dma_free_coherent(&dd
->pcidev
->dev
, size
,
943 pd
->port_rcvegrbuf
[e
],
944 pd
->port_rcvegrbuf_phys
[e
]);
947 kfree(pd
->port_rcvegrbuf_phys
);
948 pd
->port_rcvegrbuf_phys
= NULL
;
950 kfree(pd
->port_rcvegrbuf
);
951 pd
->port_rcvegrbuf
= NULL
;
957 /* common code for the mappings on dma_alloc_coherent mem */
958 static int ipath_mmap_mem(struct vm_area_struct
*vma
,
959 struct ipath_portdata
*pd
, unsigned len
, int write_ok
,
960 void *kvaddr
, char *what
)
962 struct ipath_devdata
*dd
= pd
->port_dd
;
966 if ((vma
->vm_end
- vma
->vm_start
) > len
) {
967 dev_info(&dd
->pcidev
->dev
,
968 "FAIL on %s: len %lx > %x\n", what
,
969 vma
->vm_end
- vma
->vm_start
, len
);
975 if (vma
->vm_flags
& VM_WRITE
) {
976 dev_info(&dd
->pcidev
->dev
,
977 "%s must be mapped readonly\n", what
);
982 /* don't allow them to later change with mprotect */
983 vma
->vm_flags
&= ~VM_MAYWRITE
;
986 pfn
= virt_to_phys(kvaddr
) >> PAGE_SHIFT
;
987 ret
= remap_pfn_range(vma
, vma
->vm_start
, pfn
,
988 len
, vma
->vm_page_prot
);
990 dev_info(&dd
->pcidev
->dev
, "%s port%u mmap of %lx, %x "
991 "bytes r%c failed: %d\n", what
, pd
->port_port
,
992 pfn
, len
, write_ok
?'w':'o', ret
);
994 ipath_cdbg(VERBOSE
, "%s port%u mmaped %lx, %x bytes "
995 "r%c\n", what
, pd
->port_port
, pfn
, len
,
1001 static int mmap_ureg(struct vm_area_struct
*vma
, struct ipath_devdata
*dd
,
1008 * This is real hardware, so use io_remap. This is the mechanism
1009 * for the user process to update the head registers for their port
1012 if ((vma
->vm_end
- vma
->vm_start
) > PAGE_SIZE
) {
1013 dev_info(&dd
->pcidev
->dev
, "FAIL mmap userreg: reqlen "
1014 "%lx > PAGE\n", vma
->vm_end
- vma
->vm_start
);
1017 phys
= dd
->ipath_physaddr
+ ureg
;
1018 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
1020 vma
->vm_flags
|= VM_DONTCOPY
| VM_DONTEXPAND
;
1021 ret
= io_remap_pfn_range(vma
, vma
->vm_start
,
1023 vma
->vm_end
- vma
->vm_start
,
1029 static int mmap_piobufs(struct vm_area_struct
*vma
,
1030 struct ipath_devdata
*dd
,
1031 struct ipath_portdata
*pd
,
1032 unsigned piobufs
, unsigned piocnt
)
1038 * When we map the PIO buffers in the chip, we want to map them as
1039 * writeonly, no read possible. This prevents access to previous
1040 * process data, and catches users who might try to read the i/o
1041 * space due to a bug.
1043 if ((vma
->vm_end
- vma
->vm_start
) > (piocnt
* dd
->ipath_palign
)) {
1044 dev_info(&dd
->pcidev
->dev
, "FAIL mmap piobufs: "
1045 "reqlen %lx > PAGE\n",
1046 vma
->vm_end
- vma
->vm_start
);
1051 phys
= dd
->ipath_physaddr
+ piobufs
;
1053 #if defined(__powerpc__)
1054 /* There isn't a generic way to specify writethrough mappings */
1055 pgprot_val(vma
->vm_page_prot
) |= _PAGE_NO_CACHE
;
1056 pgprot_val(vma
->vm_page_prot
) |= _PAGE_WRITETHRU
;
1057 pgprot_val(vma
->vm_page_prot
) &= ~_PAGE_GUARDED
;
1061 * don't allow them to later change to readable with mprotect (for when
1062 * not initially mapped readable, as is normally the case)
1064 vma
->vm_flags
&= ~VM_MAYREAD
;
1065 vma
->vm_flags
|= VM_DONTCOPY
| VM_DONTEXPAND
;
1067 ret
= io_remap_pfn_range(vma
, vma
->vm_start
, phys
>> PAGE_SHIFT
,
1068 vma
->vm_end
- vma
->vm_start
,
1074 static int mmap_rcvegrbufs(struct vm_area_struct
*vma
,
1075 struct ipath_portdata
*pd
)
1077 struct ipath_devdata
*dd
= pd
->port_dd
;
1078 unsigned long start
, size
;
1079 size_t total_size
, i
;
1083 size
= pd
->port_rcvegrbuf_size
;
1084 total_size
= pd
->port_rcvegrbuf_chunks
* size
;
1085 if ((vma
->vm_end
- vma
->vm_start
) > total_size
) {
1086 dev_info(&dd
->pcidev
->dev
, "FAIL on egr bufs: "
1087 "reqlen %lx > actual %lx\n",
1088 vma
->vm_end
- vma
->vm_start
,
1089 (unsigned long) total_size
);
1094 if (vma
->vm_flags
& VM_WRITE
) {
1095 dev_info(&dd
->pcidev
->dev
, "Can't map eager buffers as "
1096 "writable (flags=%lx)\n", vma
->vm_flags
);
1100 /* don't allow them to later change to writeable with mprotect */
1101 vma
->vm_flags
&= ~VM_MAYWRITE
;
1103 start
= vma
->vm_start
;
1105 for (i
= 0; i
< pd
->port_rcvegrbuf_chunks
; i
++, start
+= size
) {
1106 pfn
= virt_to_phys(pd
->port_rcvegrbuf
[i
]) >> PAGE_SHIFT
;
1107 ret
= remap_pfn_range(vma
, start
, pfn
, size
,
1119 * ipath_file_vma_fault - handle a VMA page fault.
1121 static int ipath_file_vma_fault(struct vm_area_struct
*vma
,
1122 struct vm_fault
*vmf
)
1126 page
= vmalloc_to_page((void *)(vmf
->pgoff
<< PAGE_SHIFT
));
1128 return VM_FAULT_SIGBUS
;
1135 static struct vm_operations_struct ipath_file_vm_ops
= {
1136 .fault
= ipath_file_vma_fault
,
1139 static int mmap_kvaddr(struct vm_area_struct
*vma
, u64 pgaddr
,
1140 struct ipath_portdata
*pd
, unsigned subport
)
1143 struct ipath_devdata
*dd
;
1148 /* If the port is not shared, all addresses should be physical */
1149 if (!pd
->port_subport_cnt
)
1153 size
= pd
->port_rcvegrbuf_chunks
* pd
->port_rcvegrbuf_size
;
1156 * Each process has all the subport uregbase, rcvhdrq, and
1157 * rcvegrbufs mmapped - as an array for all the processes,
1158 * and also separately for this process.
1160 if (pgaddr
== cvt_kvaddr(pd
->subport_uregbase
)) {
1161 addr
= pd
->subport_uregbase
;
1162 size
= PAGE_SIZE
* pd
->port_subport_cnt
;
1163 } else if (pgaddr
== cvt_kvaddr(pd
->subport_rcvhdr_base
)) {
1164 addr
= pd
->subport_rcvhdr_base
;
1165 size
= pd
->port_rcvhdrq_size
* pd
->port_subport_cnt
;
1166 } else if (pgaddr
== cvt_kvaddr(pd
->subport_rcvegrbuf
)) {
1167 addr
= pd
->subport_rcvegrbuf
;
1168 size
*= pd
->port_subport_cnt
;
1169 } else if (pgaddr
== cvt_kvaddr(pd
->subport_uregbase
+
1170 PAGE_SIZE
* subport
)) {
1171 addr
= pd
->subport_uregbase
+ PAGE_SIZE
* subport
;
1173 } else if (pgaddr
== cvt_kvaddr(pd
->subport_rcvhdr_base
+
1174 pd
->port_rcvhdrq_size
* subport
)) {
1175 addr
= pd
->subport_rcvhdr_base
+
1176 pd
->port_rcvhdrq_size
* subport
;
1177 size
= pd
->port_rcvhdrq_size
;
1178 } else if (pgaddr
== cvt_kvaddr(pd
->subport_rcvegrbuf
+
1180 addr
= pd
->subport_rcvegrbuf
+ size
* subport
;
1181 /* rcvegrbufs are read-only on the slave */
1182 if (vma
->vm_flags
& VM_WRITE
) {
1183 dev_info(&dd
->pcidev
->dev
,
1184 "Can't map eager buffers as "
1185 "writable (flags=%lx)\n", vma
->vm_flags
);
1190 * Don't allow permission to later change to writeable
1193 vma
->vm_flags
&= ~VM_MAYWRITE
;
1197 len
= vma
->vm_end
- vma
->vm_start
;
1199 ipath_cdbg(MM
, "FAIL: reqlen %lx > %zx\n", len
, size
);
1204 vma
->vm_pgoff
= (unsigned long) addr
>> PAGE_SHIFT
;
1205 vma
->vm_ops
= &ipath_file_vm_ops
;
1206 vma
->vm_flags
|= VM_RESERVED
| VM_DONTEXPAND
;
1214 * ipath_mmap - mmap various structures into user space
1215 * @fp: the file pointer
1218 * We use this to have a shared buffer between the kernel and the user code
1219 * for the rcvhdr queue, egr buffers, and the per-port user regs and pio
1220 * buffers in the chip. We have the open and close entries so we can bump
1221 * the ref count and keep the driver from being unloaded while still mapped.
1223 static int ipath_mmap(struct file
*fp
, struct vm_area_struct
*vma
)
1225 struct ipath_portdata
*pd
;
1226 struct ipath_devdata
*dd
;
1228 unsigned piobufs
, piocnt
;
1239 * This is the ipath_do_user_init() code, mapping the shared buffers
1240 * into the user process. The address referred to by vm_pgoff is the
1241 * file offset passed via mmap(). For shared ports, this is the
1242 * kernel vmalloc() address of the pages to share with the master.
1243 * For non-shared or master ports, this is a physical address.
1244 * We only do one mmap for each space mapped.
1246 pgaddr
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1249 * Check for 0 in case one of the allocations failed, but user
1250 * called mmap anyway.
1257 ipath_cdbg(MM
, "pgaddr %llx vm_start=%lx len %lx port %u:%u:%u\n",
1258 (unsigned long long) pgaddr
, vma
->vm_start
,
1259 vma
->vm_end
- vma
->vm_start
, dd
->ipath_unit
,
1260 pd
->port_port
, subport_fp(fp
));
1263 * Physical addresses must fit in 40 bits for our hardware.
1264 * Check for kernel virtual addresses first, anything else must
1265 * match a HW or memory address.
1267 ret
= mmap_kvaddr(vma
, pgaddr
, pd
, subport_fp(fp
));
1274 ureg
= dd
->ipath_uregbase
+ dd
->ipath_ureg_align
* pd
->port_port
;
1275 if (!pd
->port_subport_cnt
) {
1276 /* port is not shared */
1277 piocnt
= dd
->ipath_pbufsport
;
1278 piobufs
= pd
->port_piobufs
;
1279 } else if (!subport_fp(fp
)) {
1280 /* caller is the master */
1281 piocnt
= (dd
->ipath_pbufsport
/ pd
->port_subport_cnt
) +
1282 (dd
->ipath_pbufsport
% pd
->port_subport_cnt
);
1283 piobufs
= pd
->port_piobufs
+
1284 dd
->ipath_palign
* (dd
->ipath_pbufsport
- piocnt
);
1286 unsigned slave
= subport_fp(fp
) - 1;
1288 /* caller is a slave */
1289 piocnt
= dd
->ipath_pbufsport
/ pd
->port_subport_cnt
;
1290 piobufs
= pd
->port_piobufs
+ dd
->ipath_palign
* piocnt
* slave
;
1294 ret
= mmap_ureg(vma
, dd
, ureg
);
1295 else if (pgaddr
== piobufs
)
1296 ret
= mmap_piobufs(vma
, dd
, pd
, piobufs
, piocnt
);
1297 else if (pgaddr
== dd
->ipath_pioavailregs_phys
)
1298 /* in-memory copy of pioavail registers */
1299 ret
= ipath_mmap_mem(vma
, pd
, PAGE_SIZE
, 0,
1300 (void *) dd
->ipath_pioavailregs_dma
,
1301 "pioavail registers");
1302 else if (pgaddr
== pd
->port_rcvegr_phys
)
1303 ret
= mmap_rcvegrbufs(vma
, pd
);
1304 else if (pgaddr
== (u64
) pd
->port_rcvhdrq_phys
)
1306 * The rcvhdrq itself; readonly except on HT (so have
1307 * to allow writable mapping), multiple pages, contiguous
1308 * from an i/o perspective.
1310 ret
= ipath_mmap_mem(vma
, pd
, pd
->port_rcvhdrq_size
, 1,
1313 else if (pgaddr
== (u64
) pd
->port_rcvhdrqtailaddr_phys
)
1314 /* in-memory copy of rcvhdrq tail register */
1315 ret
= ipath_mmap_mem(vma
, pd
, PAGE_SIZE
, 0,
1316 pd
->port_rcvhdrtail_kvaddr
,
1321 vma
->vm_private_data
= NULL
;
1324 dev_info(&dd
->pcidev
->dev
,
1325 "Failure %d on off %llx len %lx\n",
1326 -ret
, (unsigned long long)pgaddr
,
1327 vma
->vm_end
- vma
->vm_start
);
1332 static unsigned ipath_poll_hdrqfull(struct ipath_portdata
*pd
)
1334 unsigned pollflag
= 0;
1336 if ((pd
->poll_type
& IPATH_POLL_TYPE_OVERFLOW
) &&
1337 pd
->port_hdrqfull
!= pd
->port_hdrqfull_poll
) {
1338 pollflag
|= POLLIN
| POLLRDNORM
;
1339 pd
->port_hdrqfull_poll
= pd
->port_hdrqfull
;
1345 static unsigned int ipath_poll_urgent(struct ipath_portdata
*pd
,
1347 struct poll_table_struct
*pt
)
1349 unsigned pollflag
= 0;
1350 struct ipath_devdata
*dd
;
1354 /* variable access in ipath_poll_hdrqfull() needs this */
1356 pollflag
= ipath_poll_hdrqfull(pd
);
1358 if (pd
->port_urgent
!= pd
->port_urgent_poll
) {
1359 pollflag
|= POLLIN
| POLLRDNORM
;
1360 pd
->port_urgent_poll
= pd
->port_urgent
;
1364 /* this saves a spin_lock/unlock in interrupt handler... */
1365 set_bit(IPATH_PORT_WAITING_URG
, &pd
->port_flag
);
1366 /* flush waiting flag so don't miss an event... */
1368 poll_wait(fp
, &pd
->port_wait
, pt
);
1374 static unsigned int ipath_poll_next(struct ipath_portdata
*pd
,
1376 struct poll_table_struct
*pt
)
1380 unsigned pollflag
= 0;
1381 struct ipath_devdata
*dd
;
1385 /* variable access in ipath_poll_hdrqfull() needs this */
1387 pollflag
= ipath_poll_hdrqfull(pd
);
1389 head
= ipath_read_ureg32(dd
, ur_rcvhdrhead
, pd
->port_port
);
1390 if (pd
->port_rcvhdrtail_kvaddr
)
1391 tail
= ipath_get_rcvhdrtail(pd
);
1393 tail
= ipath_read_ureg32(dd
, ur_rcvhdrtail
, pd
->port_port
);
1396 pollflag
|= POLLIN
| POLLRDNORM
;
1398 /* this saves a spin_lock/unlock in interrupt handler */
1399 set_bit(IPATH_PORT_WAITING_RCV
, &pd
->port_flag
);
1400 /* flush waiting flag so we don't miss an event */
1403 set_bit(pd
->port_port
+ dd
->ipath_r_intravail_shift
,
1404 &dd
->ipath_rcvctrl
);
1406 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvctrl
,
1409 if (dd
->ipath_rhdrhead_intr_off
) /* arm rcv interrupt */
1410 ipath_write_ureg(dd
, ur_rcvhdrhead
,
1411 dd
->ipath_rhdrhead_intr_off
| head
,
1414 poll_wait(fp
, &pd
->port_wait
, pt
);
1420 static unsigned int ipath_poll(struct file
*fp
,
1421 struct poll_table_struct
*pt
)
1423 struct ipath_portdata
*pd
;
1429 else if (pd
->poll_type
& IPATH_POLL_TYPE_URGENT
)
1430 pollflag
= ipath_poll_urgent(pd
, fp
, pt
);
1432 pollflag
= ipath_poll_next(pd
, fp
, pt
);
1437 static int ipath_supports_subports(int user_swmajor
, int user_swminor
)
1439 /* no subport implementation prior to software version 1.3 */
1440 return (user_swmajor
> 1) || (user_swminor
>= 3);
1443 static int ipath_compatible_subports(int user_swmajor
, int user_swminor
)
1445 /* this code is written long-hand for clarity */
1446 if (IPATH_USER_SWMAJOR
!= user_swmajor
) {
1447 /* no promise of compatibility if major mismatch */
1450 if (IPATH_USER_SWMAJOR
== 1) {
1451 switch (IPATH_USER_SWMINOR
) {
1455 /* no subport implementation so cannot be compatible */
1458 /* 3 is only compatible with itself */
1459 return user_swminor
== 3;
1461 /* >= 4 are compatible (or are expected to be) */
1462 return user_swminor
>= 4;
1465 /* make no promises yet for future major versions */
1469 static int init_subports(struct ipath_devdata
*dd
,
1470 struct ipath_portdata
*pd
,
1471 const struct ipath_user_info
*uinfo
)
1474 unsigned num_subports
;
1478 * If the user is requesting zero subports,
1479 * skip the subport allocation.
1481 if (uinfo
->spu_subport_cnt
<= 0)
1484 /* Self-consistency check for ipath_compatible_subports() */
1485 if (ipath_supports_subports(IPATH_USER_SWMAJOR
, IPATH_USER_SWMINOR
) &&
1486 !ipath_compatible_subports(IPATH_USER_SWMAJOR
,
1487 IPATH_USER_SWMINOR
)) {
1488 dev_info(&dd
->pcidev
->dev
,
1489 "Inconsistent ipath_compatible_subports()\n");
1493 /* Check for subport compatibility */
1494 if (!ipath_compatible_subports(uinfo
->spu_userversion
>> 16,
1495 uinfo
->spu_userversion
& 0xffff)) {
1496 dev_info(&dd
->pcidev
->dev
,
1497 "Mismatched user version (%d.%d) and driver "
1498 "version (%d.%d) while port sharing. Ensure "
1499 "that driver and library are from the same "
1501 (int) (uinfo
->spu_userversion
>> 16),
1502 (int) (uinfo
->spu_userversion
& 0xffff),
1504 IPATH_USER_SWMINOR
);
1507 if (uinfo
->spu_subport_cnt
> INFINIPATH_MAX_SUBPORT
) {
1512 num_subports
= uinfo
->spu_subport_cnt
;
1513 pd
->subport_uregbase
= vmalloc(PAGE_SIZE
* num_subports
);
1514 if (!pd
->subport_uregbase
) {
1518 /* Note: pd->port_rcvhdrq_size isn't initialized yet. */
1519 size
= ALIGN(dd
->ipath_rcvhdrcnt
* dd
->ipath_rcvhdrentsize
*
1520 sizeof(u32
), PAGE_SIZE
) * num_subports
;
1521 pd
->subport_rcvhdr_base
= vmalloc(size
);
1522 if (!pd
->subport_rcvhdr_base
) {
1527 pd
->subport_rcvegrbuf
= vmalloc(pd
->port_rcvegrbuf_chunks
*
1528 pd
->port_rcvegrbuf_size
*
1530 if (!pd
->subport_rcvegrbuf
) {
1535 pd
->port_subport_cnt
= uinfo
->spu_subport_cnt
;
1536 pd
->port_subport_id
= uinfo
->spu_subport_id
;
1537 pd
->active_slaves
= 1;
1538 set_bit(IPATH_PORT_MASTER_UNINIT
, &pd
->port_flag
);
1539 memset(pd
->subport_uregbase
, 0, PAGE_SIZE
* num_subports
);
1540 memset(pd
->subport_rcvhdr_base
, 0, size
);
1541 memset(pd
->subport_rcvegrbuf
, 0, pd
->port_rcvegrbuf_chunks
*
1542 pd
->port_rcvegrbuf_size
*
1547 vfree(pd
->subport_rcvhdr_base
);
1549 vfree(pd
->subport_uregbase
);
1550 pd
->subport_uregbase
= NULL
;
1555 static int try_alloc_port(struct ipath_devdata
*dd
, int port
,
1557 const struct ipath_user_info
*uinfo
)
1559 struct ipath_portdata
*pd
;
1562 if (!(pd
= dd
->ipath_pd
[port
])) {
1565 pd
= kzalloc(sizeof(struct ipath_portdata
), GFP_KERNEL
);
1568 * Allocate memory for use in ipath_tid_update() just once
1569 * at open, not per call. Reduces cost of expected send
1572 ptmp
= kmalloc(dd
->ipath_rcvtidcnt
* sizeof(u16
) +
1573 dd
->ipath_rcvtidcnt
* sizeof(struct page
**),
1576 ipath_dev_err(dd
, "Unable to allocate portdata "
1577 "memory, failing open\n");
1583 dd
->ipath_pd
[port
] = pd
;
1584 dd
->ipath_pd
[port
]->port_port
= port
;
1585 dd
->ipath_pd
[port
]->port_dd
= dd
;
1586 dd
->ipath_pd
[port
]->port_tid_pg_list
= ptmp
;
1587 init_waitqueue_head(&dd
->ipath_pd
[port
]->port_wait
);
1589 if (!pd
->port_cnt
) {
1590 pd
->userversion
= uinfo
->spu_userversion
;
1591 init_user_egr_sizes(pd
);
1592 if ((ret
= init_subports(dd
, pd
, uinfo
)) != 0)
1594 ipath_cdbg(PROC
, "%s[%u] opened unit:port %u:%u\n",
1595 current
->comm
, current
->pid
, dd
->ipath_unit
,
1599 pd
->port_pid
= current
->pid
;
1600 strncpy(pd
->port_comm
, current
->comm
, sizeof(pd
->port_comm
));
1601 ipath_stats
.sps_ports
++;
1610 static inline int usable(struct ipath_devdata
*dd
)
1613 (dd
->ipath_flags
& IPATH_PRESENT
) &&
1614 dd
->ipath_kregbase
&&
1616 !(dd
->ipath_flags
& (IPATH_LINKDOWN
| IPATH_DISABLED
1620 static int find_free_port(int unit
, struct file
*fp
,
1621 const struct ipath_user_info
*uinfo
)
1623 struct ipath_devdata
*dd
= ipath_lookup(unit
);
1636 for (i
= 1; i
< dd
->ipath_cfgports
; i
++) {
1637 ret
= try_alloc_port(dd
, i
, fp
, uinfo
);
1647 static int find_best_unit(struct file
*fp
,
1648 const struct ipath_user_info
*uinfo
)
1650 int ret
= 0, i
, prefunit
= -1, devmax
;
1651 int maxofallports
, npresent
, nup
;
1654 devmax
= ipath_count_units(&npresent
, &nup
, &maxofallports
);
1657 * This code is present to allow a knowledgeable person to
1658 * specify the layout of processes to processors before opening
1659 * this driver, and then we'll assign the process to the "closest"
1660 * InfiniPath chip to that processor (we assume reasonable connectivity,
1661 * for now). This code assumes that if affinity has been set
1662 * before this point, that at most one cpu is set; for now this
1663 * is reasonable. I check for both cpus_empty() and cpus_full(),
1664 * in case some kernel variant sets none of the bits when no
1665 * affinity is set. 2.6.11 and 12 kernels have all present
1666 * cpus set. Some day we'll have to fix it up further to handle
1667 * a cpu subset. This algorithm fails for two HT chips connected
1668 * in tunnel fashion. Eventually this needs real topology
1669 * information. There may be some issues with dual core numbering
1670 * as well. This needs more work prior to release.
1672 if (!cpus_empty(current
->cpus_allowed
) &&
1673 !cpus_full(current
->cpus_allowed
)) {
1674 int ncpus
= num_online_cpus(), curcpu
= -1, nset
= 0;
1675 for (i
= 0; i
< ncpus
; i
++)
1676 if (cpu_isset(i
, current
->cpus_allowed
)) {
1677 ipath_cdbg(PROC
, "%s[%u] affinity set for "
1678 "cpu %d/%d\n", current
->comm
,
1679 current
->pid
, i
, ncpus
);
1683 if (curcpu
!= -1 && nset
!= ncpus
) {
1685 prefunit
= curcpu
/ (ncpus
/ npresent
);
1686 ipath_cdbg(PROC
,"%s[%u] %d chips, %d cpus, "
1687 "%d cpus/chip, select unit %d\n",
1688 current
->comm
, current
->pid
,
1689 npresent
, ncpus
, ncpus
/ npresent
,
1696 * user ports start at 1, kernel port is 0
1697 * For now, we do round-robin access across all chips
1701 devmax
= prefunit
+ 1;
1703 for (i
= 1; i
< maxofallports
; i
++) {
1704 for (ndev
= prefunit
!= -1 ? prefunit
: 0; ndev
< devmax
;
1706 struct ipath_devdata
*dd
= ipath_lookup(ndev
);
1709 continue; /* can't use this unit */
1710 if (i
>= dd
->ipath_cfgports
)
1712 * Maxed out on users of this unit. Try
1716 ret
= try_alloc_port(dd
, i
, fp
, uinfo
);
1725 ipath_dbg("No ports available (none initialized "
1729 /* if started above 0, retry from 0 */
1731 "%s[%u] no ports on prefunit "
1732 "%d, clear and re-check\n",
1733 current
->comm
, current
->pid
,
1735 devmax
= ipath_count_units(NULL
, NULL
,
1741 ipath_dbg("No ports available\n");
1745 ipath_dbg("No boards found\n");
1752 static int find_shared_port(struct file
*fp
,
1753 const struct ipath_user_info
*uinfo
)
1755 int devmax
, ndev
, i
;
1758 devmax
= ipath_count_units(NULL
, NULL
, NULL
);
1760 for (ndev
= 0; ndev
< devmax
; ndev
++) {
1761 struct ipath_devdata
*dd
= ipath_lookup(ndev
);
1765 for (i
= 1; i
< dd
->ipath_cfgports
; i
++) {
1766 struct ipath_portdata
*pd
= dd
->ipath_pd
[i
];
1768 /* Skip ports which are not yet open */
1769 if (!pd
|| !pd
->port_cnt
)
1771 /* Skip port if it doesn't match the requested one */
1772 if (pd
->port_subport_id
!= uinfo
->spu_subport_id
)
1774 /* Verify the sharing process matches the master */
1775 if (pd
->port_subport_cnt
!= uinfo
->spu_subport_cnt
||
1776 pd
->userversion
!= uinfo
->spu_userversion
||
1777 pd
->port_cnt
>= pd
->port_subport_cnt
) {
1782 subport_fp(fp
) = pd
->port_cnt
++;
1783 pd
->port_subpid
[subport_fp(fp
)] = current
->pid
;
1784 tidcursor_fp(fp
) = 0;
1785 pd
->active_slaves
|= 1 << subport_fp(fp
);
1787 "%s[%u] %u sharing %s[%u] unit:port %u:%u\n",
1788 current
->comm
, current
->pid
,
1790 pd
->port_comm
, pd
->port_pid
,
1791 dd
->ipath_unit
, pd
->port_port
);
1801 static int ipath_open(struct inode
*in
, struct file
*fp
)
1803 /* The real work is performed later in ipath_assign_port() */
1804 fp
->private_data
= kzalloc(sizeof(struct ipath_filedata
), GFP_KERNEL
);
1805 return fp
->private_data
? 0 : -ENOMEM
;
1808 /* Get port early, so can set affinity prior to memory allocation */
1809 static int ipath_assign_port(struct file
*fp
,
1810 const struct ipath_user_info
*uinfo
)
1814 unsigned swmajor
, swminor
;
1816 /* Check to be sure we haven't already initialized this file */
1822 /* for now, if major version is different, bail */
1823 swmajor
= uinfo
->spu_userversion
>> 16;
1824 if (swmajor
!= IPATH_USER_SWMAJOR
) {
1825 ipath_dbg("User major version %d not same as driver "
1826 "major %d\n", uinfo
->spu_userversion
>> 16,
1827 IPATH_USER_SWMAJOR
);
1832 swminor
= uinfo
->spu_userversion
& 0xffff;
1833 if (swminor
!= IPATH_USER_SWMINOR
)
1834 ipath_dbg("User minor version %d not same as driver "
1835 "minor %d\n", swminor
, IPATH_USER_SWMINOR
);
1837 mutex_lock(&ipath_mutex
);
1839 if (ipath_compatible_subports(swmajor
, swminor
) &&
1840 uinfo
->spu_subport_cnt
&&
1841 (ret
= find_shared_port(fp
, uinfo
))) {
1842 mutex_unlock(&ipath_mutex
);
1848 i_minor
= iminor(fp
->f_path
.dentry
->d_inode
) - IPATH_USER_MINOR_BASE
;
1849 ipath_cdbg(VERBOSE
, "open on dev %lx (minor %d)\n",
1850 (long)fp
->f_path
.dentry
->d_inode
->i_rdev
, i_minor
);
1853 ret
= find_free_port(i_minor
- 1, fp
, uinfo
);
1855 ret
= find_best_unit(fp
, uinfo
);
1857 mutex_unlock(&ipath_mutex
);
1864 static int ipath_do_user_init(struct file
*fp
,
1865 const struct ipath_user_info
*uinfo
)
1868 struct ipath_portdata
*pd
= port_fp(fp
);
1869 struct ipath_devdata
*dd
;
1872 /* Subports don't need to initialize anything since master did it. */
1873 if (subport_fp(fp
)) {
1874 ret
= wait_event_interruptible(pd
->port_wait
,
1875 !test_bit(IPATH_PORT_MASTER_UNINIT
, &pd
->port_flag
));
1881 if (uinfo
->spu_rcvhdrsize
) {
1882 ret
= ipath_setrcvhdrsize(dd
, uinfo
->spu_rcvhdrsize
);
1887 /* for now we do nothing with rcvhdrcnt: uinfo->spu_rcvhdrcnt */
1889 /* for right now, kernel piobufs are at end, so port 1 is at 0 */
1890 pd
->port_piobufs
= dd
->ipath_piobufbase
+
1891 dd
->ipath_pbufsport
* (pd
->port_port
- 1) * dd
->ipath_palign
;
1892 ipath_cdbg(VERBOSE
, "Set base of piobufs for port %u to 0x%x\n",
1893 pd
->port_port
, pd
->port_piobufs
);
1896 * Now allocate the rcvhdr Q and eager TIDs; skip the TID
1897 * array for time being. If pd->port_port > chip-supported,
1898 * we need to do extra stuff here to handle by handling overflow
1899 * through port 0, someday
1901 ret
= ipath_create_rcvhdrq(dd
, pd
);
1903 ret
= ipath_create_user_egr(pd
);
1908 * set the eager head register for this port to the current values
1909 * of the tail pointers, since we don't know if they were
1910 * updated on last use of the port.
1912 head32
= ipath_read_ureg32(dd
, ur_rcvegrindextail
, pd
->port_port
);
1913 ipath_write_ureg(dd
, ur_rcvegrindexhead
, head32
, pd
->port_port
);
1914 pd
->port_lastrcvhdrqtail
= -1;
1915 ipath_cdbg(VERBOSE
, "Wrote port%d egrhead %x from tail regs\n",
1916 pd
->port_port
, head32
);
1917 pd
->port_tidcursor
= 0; /* start at beginning after open */
1919 /* initialize poll variables... */
1920 pd
->port_urgent
= 0;
1921 pd
->port_urgent_poll
= 0;
1922 pd
->port_hdrqfull_poll
= pd
->port_hdrqfull
;
1925 * now enable the port; the tail registers will be written to memory
1926 * by the chip as soon as it sees the write to
1927 * dd->ipath_kregs->kr_rcvctrl. The update only happens on
1928 * transition from 0 to 1, so clear it first, then set it as part of
1929 * enabling the port. This will (very briefly) affect any other
1930 * open ports, but it shouldn't be long enough to be an issue.
1931 * We explictly set the in-memory copy to 0 beforehand, so we don't
1932 * have to wait to be sure the DMA update has happened.
1934 if (pd
->port_rcvhdrtail_kvaddr
)
1935 ipath_clear_rcvhdrtail(pd
);
1936 set_bit(dd
->ipath_r_portenable_shift
+ pd
->port_port
,
1937 &dd
->ipath_rcvctrl
);
1938 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvctrl
,
1940 ~(1ULL << dd
->ipath_r_tailupd_shift
));
1941 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvctrl
,
1943 /* Notify any waiting slaves */
1944 if (pd
->port_subport_cnt
) {
1945 clear_bit(IPATH_PORT_MASTER_UNINIT
, &pd
->port_flag
);
1946 wake_up(&pd
->port_wait
);
1953 * unlock_exptid - unlock any expected TID entries port still had in use
1956 * We don't actually update the chip here, because we do a bulk update
1957 * below, using ipath_f_clear_tids.
1959 static void unlock_expected_tids(struct ipath_portdata
*pd
)
1961 struct ipath_devdata
*dd
= pd
->port_dd
;
1962 int port_tidbase
= pd
->port_port
* dd
->ipath_rcvtidcnt
;
1963 int i
, cnt
= 0, maxtid
= port_tidbase
+ dd
->ipath_rcvtidcnt
;
1965 ipath_cdbg(VERBOSE
, "Port %u unlocking any locked expTID pages\n",
1967 for (i
= port_tidbase
; i
< maxtid
; i
++) {
1968 if (!dd
->ipath_pageshadow
[i
])
1971 pci_unmap_page(dd
->pcidev
, dd
->ipath_physshadow
[i
],
1972 PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
1973 ipath_release_user_pages_on_close(&dd
->ipath_pageshadow
[i
],
1975 dd
->ipath_pageshadow
[i
] = NULL
;
1977 ipath_stats
.sps_pageunlocks
++;
1980 ipath_cdbg(VERBOSE
, "Port %u locked %u expTID entries\n",
1981 pd
->port_port
, cnt
);
1983 if (ipath_stats
.sps_pagelocks
|| ipath_stats
.sps_pageunlocks
)
1984 ipath_cdbg(VERBOSE
, "%llu pages locked, %llu unlocked\n",
1985 (unsigned long long) ipath_stats
.sps_pagelocks
,
1986 (unsigned long long)
1987 ipath_stats
.sps_pageunlocks
);
1990 static int ipath_close(struct inode
*in
, struct file
*fp
)
1993 struct ipath_filedata
*fd
;
1994 struct ipath_portdata
*pd
;
1995 struct ipath_devdata
*dd
;
1998 ipath_cdbg(VERBOSE
, "close on dev %lx, private data %p\n",
1999 (long)in
->i_rdev
, fp
->private_data
);
2001 mutex_lock(&ipath_mutex
);
2003 fd
= (struct ipath_filedata
*) fp
->private_data
;
2004 fp
->private_data
= NULL
;
2007 mutex_unlock(&ipath_mutex
);
2010 if (--pd
->port_cnt
) {
2012 * XXX If the master closes the port before the slave(s),
2013 * revoke the mmap for the eager receive queue so
2014 * the slave(s) don't wait for receive data forever.
2016 pd
->active_slaves
&= ~(1 << fd
->subport
);
2017 pd
->port_subpid
[fd
->subport
] = 0;
2018 mutex_unlock(&ipath_mutex
);
2021 port
= pd
->port_port
;
2024 if (pd
->port_hdrqfull
) {
2025 ipath_cdbg(PROC
, "%s[%u] had %u rcvhdrqfull errors "
2026 "during run\n", pd
->port_comm
, pd
->port_pid
,
2028 pd
->port_hdrqfull
= 0;
2031 if (pd
->port_rcvwait_to
|| pd
->port_piowait_to
2032 || pd
->port_rcvnowait
|| pd
->port_pionowait
) {
2033 ipath_cdbg(VERBOSE
, "port%u, %u rcv, %u pio wait timeo; "
2034 "%u rcv %u, pio already\n",
2035 pd
->port_port
, pd
->port_rcvwait_to
,
2036 pd
->port_piowait_to
, pd
->port_rcvnowait
,
2037 pd
->port_pionowait
);
2038 pd
->port_rcvwait_to
= pd
->port_piowait_to
=
2039 pd
->port_rcvnowait
= pd
->port_pionowait
= 0;
2041 if (pd
->port_flag
) {
2042 ipath_dbg("port %u port_flag still set to 0x%lx\n",
2043 pd
->port_port
, pd
->port_flag
);
2047 if (dd
->ipath_kregbase
) {
2049 /* atomically clear receive enable port and intr avail. */
2050 clear_bit(dd
->ipath_r_portenable_shift
+ port
,
2051 &dd
->ipath_rcvctrl
);
2052 clear_bit(pd
->port_port
+ dd
->ipath_r_intravail_shift
,
2053 &dd
->ipath_rcvctrl
);
2054 ipath_write_kreg( dd
, dd
->ipath_kregs
->kr_rcvctrl
,
2056 /* and read back from chip to be sure that nothing
2057 * else is in flight when we do the rest */
2058 (void)ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
2060 /* clean up the pkeys for this port user */
2061 ipath_clean_part_key(pd
, dd
);
2063 * be paranoid, and never write 0's to these, just use an
2064 * unused part of the port 0 tail page. Of course,
2065 * rcvhdraddr points to a large chunk of memory, so this
2066 * could still trash things, but at least it won't trash
2067 * page 0, and by disabling the port, it should stop "soon",
2068 * even if a packet or two is in already in flight after we
2069 * disabled the port.
2071 ipath_write_kreg_port(dd
,
2072 dd
->ipath_kregs
->kr_rcvhdrtailaddr
, port
,
2073 dd
->ipath_dummy_hdrq_phys
);
2074 ipath_write_kreg_port(dd
, dd
->ipath_kregs
->kr_rcvhdraddr
,
2075 pd
->port_port
, dd
->ipath_dummy_hdrq_phys
);
2077 i
= dd
->ipath_pbufsport
* (port
- 1);
2078 ipath_disarm_piobufs(dd
, i
, dd
->ipath_pbufsport
);
2080 dd
->ipath_f_clear_tids(dd
, pd
->port_port
);
2082 if (dd
->ipath_pageshadow
)
2083 unlock_expected_tids(pd
);
2084 ipath_stats
.sps_ports
--;
2085 ipath_cdbg(PROC
, "%s[%u] closed port %u:%u\n",
2086 pd
->port_comm
, pd
->port_pid
,
2087 dd
->ipath_unit
, port
);
2091 dd
->ipath_pd
[pd
->port_port
] = NULL
; /* before releasing mutex */
2092 mutex_unlock(&ipath_mutex
);
2093 ipath_free_pddata(dd
, pd
); /* after releasing the mutex */
2100 static int ipath_port_info(struct ipath_portdata
*pd
, u16 subport
,
2101 struct ipath_port_info __user
*uinfo
)
2103 struct ipath_port_info info
;
2108 (void) ipath_count_units(NULL
, &nup
, NULL
);
2109 info
.num_active
= nup
;
2110 info
.unit
= pd
->port_dd
->ipath_unit
;
2111 info
.port
= pd
->port_port
;
2112 info
.subport
= subport
;
2113 /* Don't return new fields if old library opened the port. */
2114 if (ipath_supports_subports(pd
->userversion
>> 16,
2115 pd
->userversion
& 0xffff)) {
2116 /* Number of user ports available for this device. */
2117 info
.num_ports
= pd
->port_dd
->ipath_cfgports
- 1;
2118 info
.num_subports
= pd
->port_subport_cnt
;
2121 sz
= sizeof(info
) - 2 * sizeof(u16
);
2123 if (copy_to_user(uinfo
, &info
, sz
)) {
2133 static int ipath_get_slave_info(struct ipath_portdata
*pd
,
2134 void __user
*slave_mask_addr
)
2138 if (copy_to_user(slave_mask_addr
, &pd
->active_slaves
, sizeof(u32
)))
2143 static int ipath_force_pio_avail_update(struct ipath_devdata
*dd
)
2145 unsigned long flags
;
2147 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
2148 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
2149 dd
->ipath_sendctrl
& ~INFINIPATH_S_PIOBUFAVAILUPD
);
2150 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
2151 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
, dd
->ipath_sendctrl
);
2152 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
2153 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
2158 static ssize_t
ipath_write(struct file
*fp
, const char __user
*data
,
2159 size_t count
, loff_t
*off
)
2161 const struct ipath_cmd __user
*ucmd
;
2162 struct ipath_portdata
*pd
;
2163 const void __user
*src
;
2164 size_t consumed
, copy
;
2165 struct ipath_cmd cmd
;
2169 if (count
< sizeof(cmd
.type
)) {
2174 ucmd
= (const struct ipath_cmd __user
*) data
;
2176 if (copy_from_user(&cmd
.type
, &ucmd
->type
, sizeof(cmd
.type
))) {
2181 consumed
= sizeof(cmd
.type
);
2184 case IPATH_CMD_ASSIGN_PORT
:
2185 case __IPATH_CMD_USER_INIT
:
2186 case IPATH_CMD_USER_INIT
:
2187 copy
= sizeof(cmd
.cmd
.user_info
);
2188 dest
= &cmd
.cmd
.user_info
;
2189 src
= &ucmd
->cmd
.user_info
;
2191 case IPATH_CMD_RECV_CTRL
:
2192 copy
= sizeof(cmd
.cmd
.recv_ctrl
);
2193 dest
= &cmd
.cmd
.recv_ctrl
;
2194 src
= &ucmd
->cmd
.recv_ctrl
;
2196 case IPATH_CMD_PORT_INFO
:
2197 copy
= sizeof(cmd
.cmd
.port_info
);
2198 dest
= &cmd
.cmd
.port_info
;
2199 src
= &ucmd
->cmd
.port_info
;
2201 case IPATH_CMD_TID_UPDATE
:
2202 case IPATH_CMD_TID_FREE
:
2203 copy
= sizeof(cmd
.cmd
.tid_info
);
2204 dest
= &cmd
.cmd
.tid_info
;
2205 src
= &ucmd
->cmd
.tid_info
;
2207 case IPATH_CMD_SET_PART_KEY
:
2208 copy
= sizeof(cmd
.cmd
.part_key
);
2209 dest
= &cmd
.cmd
.part_key
;
2210 src
= &ucmd
->cmd
.part_key
;
2212 case __IPATH_CMD_SLAVE_INFO
:
2213 copy
= sizeof(cmd
.cmd
.slave_mask_addr
);
2214 dest
= &cmd
.cmd
.slave_mask_addr
;
2215 src
= &ucmd
->cmd
.slave_mask_addr
;
2217 case IPATH_CMD_PIOAVAILUPD
: // force an update of PIOAvail reg
2222 case IPATH_CMD_POLL_TYPE
:
2223 copy
= sizeof(cmd
.cmd
.poll_type
);
2224 dest
= &cmd
.cmd
.poll_type
;
2225 src
= &ucmd
->cmd
.poll_type
;
2227 case IPATH_CMD_ARMLAUNCH_CTRL
:
2228 copy
= sizeof(cmd
.cmd
.armlaunch_ctrl
);
2229 dest
= &cmd
.cmd
.armlaunch_ctrl
;
2230 src
= &ucmd
->cmd
.armlaunch_ctrl
;
2238 if ((count
- consumed
) < copy
) {
2243 if (copy_from_user(dest
, src
, copy
)) {
2252 if (!pd
&& cmd
.type
!= __IPATH_CMD_USER_INIT
&&
2253 cmd
.type
!= IPATH_CMD_ASSIGN_PORT
) {
2259 case IPATH_CMD_ASSIGN_PORT
:
2260 ret
= ipath_assign_port(fp
, &cmd
.cmd
.user_info
);
2264 case __IPATH_CMD_USER_INIT
:
2265 /* backwards compatibility, get port first */
2266 ret
= ipath_assign_port(fp
, &cmd
.cmd
.user_info
);
2269 /* and fall through to current version. */
2270 case IPATH_CMD_USER_INIT
:
2271 ret
= ipath_do_user_init(fp
, &cmd
.cmd
.user_info
);
2274 ret
= ipath_get_base_info(
2275 fp
, (void __user
*) (unsigned long)
2276 cmd
.cmd
.user_info
.spu_base_info
,
2277 cmd
.cmd
.user_info
.spu_base_info_size
);
2279 case IPATH_CMD_RECV_CTRL
:
2280 ret
= ipath_manage_rcvq(pd
, subport_fp(fp
), cmd
.cmd
.recv_ctrl
);
2282 case IPATH_CMD_PORT_INFO
:
2283 ret
= ipath_port_info(pd
, subport_fp(fp
),
2284 (struct ipath_port_info __user
*)
2285 (unsigned long) cmd
.cmd
.port_info
);
2287 case IPATH_CMD_TID_UPDATE
:
2288 ret
= ipath_tid_update(pd
, fp
, &cmd
.cmd
.tid_info
);
2290 case IPATH_CMD_TID_FREE
:
2291 ret
= ipath_tid_free(pd
, subport_fp(fp
), &cmd
.cmd
.tid_info
);
2293 case IPATH_CMD_SET_PART_KEY
:
2294 ret
= ipath_set_part_key(pd
, cmd
.cmd
.part_key
);
2296 case __IPATH_CMD_SLAVE_INFO
:
2297 ret
= ipath_get_slave_info(pd
,
2298 (void __user
*) (unsigned long)
2299 cmd
.cmd
.slave_mask_addr
);
2301 case IPATH_CMD_PIOAVAILUPD
:
2302 ret
= ipath_force_pio_avail_update(pd
->port_dd
);
2304 case IPATH_CMD_POLL_TYPE
:
2305 pd
->poll_type
= cmd
.cmd
.poll_type
;
2307 case IPATH_CMD_ARMLAUNCH_CTRL
:
2308 if (cmd
.cmd
.armlaunch_ctrl
)
2309 ipath_enable_armlaunch(pd
->port_dd
);
2311 ipath_disable_armlaunch(pd
->port_dd
);
2322 static struct class *ipath_class
;
2324 static int init_cdev(int minor
, char *name
, const struct file_operations
*fops
,
2325 struct cdev
**cdevp
, struct class_device
**class_devp
)
2327 const dev_t dev
= MKDEV(IPATH_MAJOR
, minor
);
2328 struct cdev
*cdev
= NULL
;
2329 struct class_device
*class_dev
= NULL
;
2332 cdev
= cdev_alloc();
2334 printk(KERN_ERR IPATH_DRV_NAME
2335 ": Could not allocate cdev for minor %d, %s\n",
2341 cdev
->owner
= THIS_MODULE
;
2343 kobject_set_name(&cdev
->kobj
, name
);
2345 ret
= cdev_add(cdev
, dev
, 1);
2347 printk(KERN_ERR IPATH_DRV_NAME
2348 ": Could not add cdev for minor %d, %s (err %d)\n",
2353 class_dev
= class_device_create(ipath_class
, NULL
, dev
, NULL
, name
);
2355 if (IS_ERR(class_dev
)) {
2356 ret
= PTR_ERR(class_dev
);
2357 printk(KERN_ERR IPATH_DRV_NAME
": Could not create "
2358 "class_dev for minor %d, %s (err %d)\n",
2372 *class_devp
= class_dev
;
2381 int ipath_cdev_init(int minor
, char *name
, const struct file_operations
*fops
,
2382 struct cdev
**cdevp
, struct class_device
**class_devp
)
2384 return init_cdev(minor
, name
, fops
, cdevp
, class_devp
);
2387 static void cleanup_cdev(struct cdev
**cdevp
,
2388 struct class_device
**class_devp
)
2390 struct class_device
*class_dev
= *class_devp
;
2393 class_device_unregister(class_dev
);
2403 void ipath_cdev_cleanup(struct cdev
**cdevp
,
2404 struct class_device
**class_devp
)
2406 cleanup_cdev(cdevp
, class_devp
);
2409 static struct cdev
*wildcard_cdev
;
2410 static struct class_device
*wildcard_class_dev
;
2412 static const dev_t dev
= MKDEV(IPATH_MAJOR
, 0);
2414 static int user_init(void)
2418 ret
= register_chrdev_region(dev
, IPATH_NMINORS
, IPATH_DRV_NAME
);
2420 printk(KERN_ERR IPATH_DRV_NAME
": Could not register "
2421 "chrdev region (err %d)\n", -ret
);
2425 ipath_class
= class_create(THIS_MODULE
, IPATH_DRV_NAME
);
2427 if (IS_ERR(ipath_class
)) {
2428 ret
= PTR_ERR(ipath_class
);
2429 printk(KERN_ERR IPATH_DRV_NAME
": Could not create "
2430 "device class (err %d)\n", -ret
);
2436 unregister_chrdev_region(dev
, IPATH_NMINORS
);
2441 static void user_cleanup(void)
2444 class_destroy(ipath_class
);
2448 unregister_chrdev_region(dev
, IPATH_NMINORS
);
2451 static atomic_t user_count
= ATOMIC_INIT(0);
2452 static atomic_t user_setup
= ATOMIC_INIT(0);
2454 int ipath_user_add(struct ipath_devdata
*dd
)
2459 if (atomic_inc_return(&user_count
) == 1) {
2462 ipath_dev_err(dd
, "Unable to set up user support: "
2463 "error %d\n", -ret
);
2466 ret
= init_cdev(0, "ipath", &ipath_file_ops
, &wildcard_cdev
,
2467 &wildcard_class_dev
);
2469 ipath_dev_err(dd
, "Could not create wildcard "
2470 "minor: error %d\n", -ret
);
2474 atomic_set(&user_setup
, 1);
2477 snprintf(name
, sizeof(name
), "ipath%d", dd
->ipath_unit
);
2479 ret
= init_cdev(dd
->ipath_unit
+ 1, name
, &ipath_file_ops
,
2480 &dd
->user_cdev
, &dd
->user_class_dev
);
2482 ipath_dev_err(dd
, "Could not create user minor %d, %s\n",
2483 dd
->ipath_unit
+ 1, name
);
2493 void ipath_user_remove(struct ipath_devdata
*dd
)
2495 cleanup_cdev(&dd
->user_cdev
, &dd
->user_class_dev
);
2497 if (atomic_dec_return(&user_count
) == 0) {
2498 if (atomic_read(&user_setup
) == 0)
2501 cleanup_cdev(&wildcard_cdev
, &wildcard_class_dev
);
2504 atomic_set(&user_setup
, 0);