IB/ipath: Change packet problems vs chip errors handling and reporting
[linux-2.6/verdex.git] / drivers / infiniband / hw / ipath / ipath_driver.c
blobcf40cf2d1fbb0fd9ffaf8a5c56587ac260a74b7f
1 /*
2 * Copyright (c) 2006 QLogic, Inc. 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
13 * conditions are met:
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
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
31 * SOFTWARE.
34 #include <linux/spinlock.h>
35 #include <linux/idr.h>
36 #include <linux/pci.h>
37 #include <linux/delay.h>
38 #include <linux/netdevice.h>
39 #include <linux/vmalloc.h>
41 #include "ipath_kernel.h"
42 #include "ipath_verbs.h"
43 #include "ipath_common.h"
45 static void ipath_update_pio_bufs(struct ipath_devdata *);
47 const char *ipath_get_unit_name(int unit)
49 static char iname[16];
50 snprintf(iname, sizeof iname, "infinipath%u", unit);
51 return iname;
54 #define DRIVER_LOAD_MSG "QLogic " IPATH_DRV_NAME " loaded: "
55 #define PFX IPATH_DRV_NAME ": "
58 * The size has to be longer than this string, so we can append
59 * board/chip information to it in the init code.
61 const char ib_ipath_version[] = IPATH_IDSTR "\n";
63 static struct idr unit_table;
64 DEFINE_SPINLOCK(ipath_devs_lock);
65 LIST_HEAD(ipath_dev_list);
67 wait_queue_head_t ipath_state_wait;
69 unsigned ipath_debug = __IPATH_INFO;
71 module_param_named(debug, ipath_debug, uint, S_IWUSR | S_IRUGO);
72 MODULE_PARM_DESC(debug, "mask for debug prints");
73 EXPORT_SYMBOL_GPL(ipath_debug);
75 MODULE_LICENSE("GPL");
76 MODULE_AUTHOR("QLogic <support@pathscale.com>");
77 MODULE_DESCRIPTION("QLogic InfiniPath driver");
79 const char *ipath_ibcstatus_str[] = {
80 "Disabled",
81 "LinkUp",
82 "PollActive",
83 "PollQuiet",
84 "SleepDelay",
85 "SleepQuiet",
86 "LState6", /* unused */
87 "LState7", /* unused */
88 "CfgDebounce",
89 "CfgRcvfCfg",
90 "CfgWaitRmt",
91 "CfgIdle",
92 "RecovRetrain",
93 "LState0xD", /* unused */
94 "RecovWaitRmt",
95 "RecovIdle",
98 static void __devexit ipath_remove_one(struct pci_dev *);
99 static int __devinit ipath_init_one(struct pci_dev *,
100 const struct pci_device_id *);
102 /* Only needed for registration, nothing else needs this info */
103 #define PCI_VENDOR_ID_PATHSCALE 0x1fc1
104 #define PCI_DEVICE_ID_INFINIPATH_HT 0xd
105 #define PCI_DEVICE_ID_INFINIPATH_PE800 0x10
107 static const struct pci_device_id ipath_pci_tbl[] = {
108 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_HT) },
109 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_PE800) },
110 { 0, }
113 MODULE_DEVICE_TABLE(pci, ipath_pci_tbl);
115 static struct pci_driver ipath_driver = {
116 .name = IPATH_DRV_NAME,
117 .probe = ipath_init_one,
118 .remove = __devexit_p(ipath_remove_one),
119 .id_table = ipath_pci_tbl,
123 static inline void read_bars(struct ipath_devdata *dd, struct pci_dev *dev,
124 u32 *bar0, u32 *bar1)
126 int ret;
128 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, bar0);
129 if (ret)
130 ipath_dev_err(dd, "failed to read bar0 before enable: "
131 "error %d\n", -ret);
133 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, bar1);
134 if (ret)
135 ipath_dev_err(dd, "failed to read bar1 before enable: "
136 "error %d\n", -ret);
138 ipath_dbg("Read bar0 %x bar1 %x\n", *bar0, *bar1);
141 static void ipath_free_devdata(struct pci_dev *pdev,
142 struct ipath_devdata *dd)
144 unsigned long flags;
146 pci_set_drvdata(pdev, NULL);
148 if (dd->ipath_unit != -1) {
149 spin_lock_irqsave(&ipath_devs_lock, flags);
150 idr_remove(&unit_table, dd->ipath_unit);
151 list_del(&dd->ipath_list);
152 spin_unlock_irqrestore(&ipath_devs_lock, flags);
154 vfree(dd);
157 static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
159 unsigned long flags;
160 struct ipath_devdata *dd;
161 int ret;
163 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
164 dd = ERR_PTR(-ENOMEM);
165 goto bail;
168 dd = vmalloc(sizeof(*dd));
169 if (!dd) {
170 dd = ERR_PTR(-ENOMEM);
171 goto bail;
173 memset(dd, 0, sizeof(*dd));
174 dd->ipath_unit = -1;
176 spin_lock_irqsave(&ipath_devs_lock, flags);
178 ret = idr_get_new(&unit_table, dd, &dd->ipath_unit);
179 if (ret < 0) {
180 printk(KERN_ERR IPATH_DRV_NAME
181 ": Could not allocate unit ID: error %d\n", -ret);
182 ipath_free_devdata(pdev, dd);
183 dd = ERR_PTR(ret);
184 goto bail_unlock;
187 dd->pcidev = pdev;
188 pci_set_drvdata(pdev, dd);
190 list_add(&dd->ipath_list, &ipath_dev_list);
192 bail_unlock:
193 spin_unlock_irqrestore(&ipath_devs_lock, flags);
195 bail:
196 return dd;
199 static inline struct ipath_devdata *__ipath_lookup(int unit)
201 return idr_find(&unit_table, unit);
204 struct ipath_devdata *ipath_lookup(int unit)
206 struct ipath_devdata *dd;
207 unsigned long flags;
209 spin_lock_irqsave(&ipath_devs_lock, flags);
210 dd = __ipath_lookup(unit);
211 spin_unlock_irqrestore(&ipath_devs_lock, flags);
213 return dd;
216 int ipath_count_units(int *npresentp, int *nupp, u32 *maxportsp)
218 int nunits, npresent, nup;
219 struct ipath_devdata *dd;
220 unsigned long flags;
221 u32 maxports;
223 nunits = npresent = nup = maxports = 0;
225 spin_lock_irqsave(&ipath_devs_lock, flags);
227 list_for_each_entry(dd, &ipath_dev_list, ipath_list) {
228 nunits++;
229 if ((dd->ipath_flags & IPATH_PRESENT) && dd->ipath_kregbase)
230 npresent++;
231 if (dd->ipath_lid &&
232 !(dd->ipath_flags & (IPATH_DISABLED | IPATH_LINKDOWN
233 | IPATH_LINKUNK)))
234 nup++;
235 if (dd->ipath_cfgports > maxports)
236 maxports = dd->ipath_cfgports;
239 spin_unlock_irqrestore(&ipath_devs_lock, flags);
241 if (npresentp)
242 *npresentp = npresent;
243 if (nupp)
244 *nupp = nup;
245 if (maxportsp)
246 *maxportsp = maxports;
248 return nunits;
252 * These next two routines are placeholders in case we don't have per-arch
253 * code for controlling write combining. If explicit control of write
254 * combining is not available, performance will probably be awful.
257 int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd)
259 return -EOPNOTSUPP;
262 void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd)
266 static int __devinit ipath_init_one(struct pci_dev *pdev,
267 const struct pci_device_id *ent)
269 int ret, len, j;
270 struct ipath_devdata *dd;
271 unsigned long long addr;
272 u32 bar0 = 0, bar1 = 0;
273 u8 rev;
275 dd = ipath_alloc_devdata(pdev);
276 if (IS_ERR(dd)) {
277 ret = PTR_ERR(dd);
278 printk(KERN_ERR IPATH_DRV_NAME
279 ": Could not allocate devdata: error %d\n", -ret);
280 goto bail;
283 ipath_cdbg(VERBOSE, "initializing unit #%u\n", dd->ipath_unit);
285 read_bars(dd, pdev, &bar0, &bar1);
287 ret = pci_enable_device(pdev);
288 if (ret) {
289 /* This can happen iff:
291 * We did a chip reset, and then failed to reprogram the
292 * BAR, or the chip reset due to an internal error. We then
293 * unloaded the driver and reloaded it.
295 * Both reset cases set the BAR back to initial state. For
296 * the latter case, the AER sticky error bit at offset 0x718
297 * should be set, but the Linux kernel doesn't yet know
298 * about that, it appears. If the original BAR was retained
299 * in the kernel data structures, this may be OK.
301 ipath_dev_err(dd, "enable unit %d failed: error %d\n",
302 dd->ipath_unit, -ret);
303 goto bail_devdata;
305 addr = pci_resource_start(pdev, 0);
306 len = pci_resource_len(pdev, 0);
307 ipath_cdbg(VERBOSE, "regbase (0) %llx len %d pdev->irq %d, vend %x/%x "
308 "driver_data %lx\n", addr, len, pdev->irq, ent->vendor,
309 ent->device, ent->driver_data);
311 read_bars(dd, pdev, &bar0, &bar1);
313 if (!bar1 && !(bar0 & ~0xf)) {
314 if (addr) {
315 dev_info(&pdev->dev, "BAR is 0 (probable RESET), "
316 "rewriting as %llx\n", addr);
317 ret = pci_write_config_dword(
318 pdev, PCI_BASE_ADDRESS_0, addr);
319 if (ret) {
320 ipath_dev_err(dd, "rewrite of BAR0 "
321 "failed: err %d\n", -ret);
322 goto bail_disable;
324 ret = pci_write_config_dword(
325 pdev, PCI_BASE_ADDRESS_1, addr >> 32);
326 if (ret) {
327 ipath_dev_err(dd, "rewrite of BAR1 "
328 "failed: err %d\n", -ret);
329 goto bail_disable;
331 } else {
332 ipath_dev_err(dd, "BAR is 0 (probable RESET), "
333 "not usable until reboot\n");
334 ret = -ENODEV;
335 goto bail_disable;
339 ret = pci_request_regions(pdev, IPATH_DRV_NAME);
340 if (ret) {
341 dev_info(&pdev->dev, "pci_request_regions unit %u fails: "
342 "err %d\n", dd->ipath_unit, -ret);
343 goto bail_disable;
346 ret = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
347 if (ret) {
349 * if the 64 bit setup fails, try 32 bit. Some systems
350 * do not setup 64 bit maps on systems with 2GB or less
351 * memory installed.
353 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
354 if (ret) {
355 dev_info(&pdev->dev,
356 "Unable to set DMA mask for unit %u: %d\n",
357 dd->ipath_unit, ret);
358 goto bail_regions;
360 else {
361 ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
362 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
363 if (ret)
364 dev_info(&pdev->dev,
365 "Unable to set DMA consistent mask "
366 "for unit %u: %d\n",
367 dd->ipath_unit, ret);
371 else {
372 ret = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
373 if (ret)
374 dev_info(&pdev->dev,
375 "Unable to set DMA consistent mask "
376 "for unit %u: %d\n",
377 dd->ipath_unit, ret);
380 pci_set_master(pdev);
383 * Save BARs to rewrite after device reset. Save all 64 bits of
384 * BAR, just in case.
386 dd->ipath_pcibar0 = addr;
387 dd->ipath_pcibar1 = addr >> 32;
388 dd->ipath_deviceid = ent->device; /* save for later use */
389 dd->ipath_vendorid = ent->vendor;
391 /* setup the chip-specific functions, as early as possible. */
392 switch (ent->device) {
393 #ifdef CONFIG_HT_IRQ
394 case PCI_DEVICE_ID_INFINIPATH_HT:
395 ipath_init_iba6110_funcs(dd);
396 break;
397 #endif
398 #ifdef CONFIG_PCI_MSI
399 case PCI_DEVICE_ID_INFINIPATH_PE800:
400 ipath_init_iba6120_funcs(dd);
401 break;
402 #endif
403 default:
404 ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
405 "failing\n", ent->device);
406 return -ENODEV;
409 for (j = 0; j < 6; j++) {
410 if (!pdev->resource[j].start)
411 continue;
412 ipath_cdbg(VERBOSE, "BAR %d start %llx, end %llx, len %llx\n",
413 j, (unsigned long long)pdev->resource[j].start,
414 (unsigned long long)pdev->resource[j].end,
415 (unsigned long long)pci_resource_len(pdev, j));
418 if (!addr) {
419 ipath_dev_err(dd, "No valid address in BAR 0!\n");
420 ret = -ENODEV;
421 goto bail_regions;
424 dd->ipath_deviceid = ent->device; /* save for later use */
425 dd->ipath_vendorid = ent->vendor;
427 ret = pci_read_config_byte(pdev, PCI_REVISION_ID, &rev);
428 if (ret) {
429 ipath_dev_err(dd, "Failed to read PCI revision ID unit "
430 "%u: err %d\n", dd->ipath_unit, -ret);
431 goto bail_regions; /* shouldn't ever happen */
433 dd->ipath_pcirev = rev;
435 #if defined(__powerpc__)
436 /* There isn't a generic way to specify writethrough mappings */
437 dd->ipath_kregbase = __ioremap(addr, len,
438 (_PAGE_NO_CACHE|_PAGE_WRITETHRU));
439 #else
440 dd->ipath_kregbase = ioremap_nocache(addr, len);
441 #endif
443 if (!dd->ipath_kregbase) {
444 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
445 addr);
446 ret = -ENOMEM;
447 goto bail_iounmap;
449 dd->ipath_kregend = (u64 __iomem *)
450 ((void __iomem *)dd->ipath_kregbase + len);
451 dd->ipath_physaddr = addr; /* used for io_remap, etc. */
452 /* for user mmap */
453 ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
454 addr, dd->ipath_kregbase);
457 * clear ipath_flags here instead of in ipath_init_chip as it is set
458 * by ipath_setup_htconfig.
460 dd->ipath_flags = 0;
461 dd->ipath_lli_counter = 0;
462 dd->ipath_lli_errors = 0;
464 if (dd->ipath_f_bus(dd, pdev))
465 ipath_dev_err(dd, "Failed to setup config space; "
466 "continuing anyway\n");
469 * set up our interrupt handler; IRQF_SHARED probably not needed,
470 * since MSI interrupts shouldn't be shared but won't hurt for now.
471 * check 0 irq after we return from chip-specific bus setup, since
472 * that can affect this due to setup
474 if (!dd->ipath_irq)
475 ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't "
476 "work\n");
477 else {
478 ret = request_irq(dd->ipath_irq, ipath_intr, IRQF_SHARED,
479 IPATH_DRV_NAME, dd);
480 if (ret) {
481 ipath_dev_err(dd, "Couldn't setup irq handler, "
482 "irq=%d: %d\n", dd->ipath_irq, ret);
483 goto bail_iounmap;
487 ret = ipath_init_chip(dd, 0); /* do the chip-specific init */
488 if (ret)
489 goto bail_iounmap;
491 ret = ipath_enable_wc(dd);
493 if (ret) {
494 ipath_dev_err(dd, "Write combining not enabled "
495 "(err %d): performance may be poor\n",
496 -ret);
497 ret = 0;
500 ipath_device_create_group(&pdev->dev, dd);
501 ipathfs_add_device(dd);
502 ipath_user_add(dd);
503 ipath_diag_add(dd);
504 ipath_register_ib_device(dd);
506 goto bail;
508 bail_iounmap:
509 iounmap((volatile void __iomem *) dd->ipath_kregbase);
511 bail_regions:
512 pci_release_regions(pdev);
514 bail_disable:
515 pci_disable_device(pdev);
517 bail_devdata:
518 ipath_free_devdata(pdev, dd);
520 bail:
521 return ret;
524 static void __devexit cleanup_device(struct ipath_devdata *dd)
526 int port;
528 ipath_shutdown_device(dd);
530 if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
531 /* can't do anything more with chip; needs re-init */
532 *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
533 if (dd->ipath_kregbase) {
535 * if we haven't already cleaned up before these are
536 * to ensure any register reads/writes "fail" until
537 * re-init
539 dd->ipath_kregbase = NULL;
540 dd->ipath_uregbase = 0;
541 dd->ipath_sregbase = 0;
542 dd->ipath_cregbase = 0;
543 dd->ipath_kregsize = 0;
545 ipath_disable_wc(dd);
548 if (dd->ipath_pioavailregs_dma) {
549 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
550 (void *) dd->ipath_pioavailregs_dma,
551 dd->ipath_pioavailregs_phys);
552 dd->ipath_pioavailregs_dma = NULL;
554 if (dd->ipath_dummy_hdrq) {
555 dma_free_coherent(&dd->pcidev->dev,
556 dd->ipath_pd[0]->port_rcvhdrq_size,
557 dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
558 dd->ipath_dummy_hdrq = NULL;
561 if (dd->ipath_pageshadow) {
562 struct page **tmpp = dd->ipath_pageshadow;
563 dma_addr_t *tmpd = dd->ipath_physshadow;
564 int i, cnt = 0;
566 ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
567 "locked\n");
568 for (port = 0; port < dd->ipath_cfgports; port++) {
569 int port_tidbase = port * dd->ipath_rcvtidcnt;
570 int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
571 for (i = port_tidbase; i < maxtid; i++) {
572 if (!tmpp[i])
573 continue;
574 pci_unmap_page(dd->pcidev, tmpd[i],
575 PAGE_SIZE, PCI_DMA_FROMDEVICE);
576 ipath_release_user_pages(&tmpp[i], 1);
577 tmpp[i] = NULL;
578 cnt++;
581 if (cnt) {
582 ipath_stats.sps_pageunlocks += cnt;
583 ipath_cdbg(VERBOSE, "There were still %u expTID "
584 "entries locked\n", cnt);
586 if (ipath_stats.sps_pagelocks ||
587 ipath_stats.sps_pageunlocks)
588 ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
589 "unlocked via ipath_m{un}lock\n",
590 (unsigned long long)
591 ipath_stats.sps_pagelocks,
592 (unsigned long long)
593 ipath_stats.sps_pageunlocks);
595 ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
596 dd->ipath_pageshadow);
597 vfree(dd->ipath_pageshadow);
598 dd->ipath_pageshadow = NULL;
602 * free any resources still in use (usually just kernel ports)
603 * at unload; we do for portcnt, not cfgports, because cfgports
604 * could have changed while we were loaded.
606 for (port = 0; port < dd->ipath_portcnt; port++) {
607 struct ipath_portdata *pd = dd->ipath_pd[port];
608 dd->ipath_pd[port] = NULL;
609 ipath_free_pddata(dd, pd);
611 kfree(dd->ipath_pd);
613 * debuggability, in case some cleanup path tries to use it
614 * after this
616 dd->ipath_pd = NULL;
619 static void __devexit ipath_remove_one(struct pci_dev *pdev)
621 struct ipath_devdata *dd = pci_get_drvdata(pdev);
623 ipath_cdbg(VERBOSE, "removing, pdev=%p, dd=%p\n", pdev, dd);
625 if (dd->verbs_dev)
626 ipath_unregister_ib_device(dd->verbs_dev);
628 ipath_diag_remove(dd);
629 ipath_user_remove(dd);
630 ipathfs_remove_device(dd);
631 ipath_device_remove_group(&pdev->dev, dd);
633 ipath_cdbg(VERBOSE, "Releasing pci memory regions, dd %p, "
634 "unit %u\n", dd, (u32) dd->ipath_unit);
636 cleanup_device(dd);
639 * turn off rcv, send, and interrupts for all ports, all drivers
640 * should also hard reset the chip here?
641 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
642 * for all versions of the driver, if they were allocated
644 if (dd->ipath_irq) {
645 ipath_cdbg(VERBOSE, "unit %u free irq %d\n",
646 dd->ipath_unit, dd->ipath_irq);
647 dd->ipath_f_free_irq(dd);
648 } else
649 ipath_dbg("irq is 0, not doing free_irq "
650 "for unit %u\n", dd->ipath_unit);
652 * we check for NULL here, because it's outside
653 * the kregbase check, and we need to call it
654 * after the free_irq. Thus it's possible that
655 * the function pointers were never initialized.
657 if (dd->ipath_f_cleanup)
658 /* clean up chip-specific stuff */
659 dd->ipath_f_cleanup(dd);
661 ipath_cdbg(VERBOSE, "Unmapping kregbase %p\n", dd->ipath_kregbase);
662 iounmap((volatile void __iomem *) dd->ipath_kregbase);
663 pci_release_regions(pdev);
664 ipath_cdbg(VERBOSE, "calling pci_disable_device\n");
665 pci_disable_device(pdev);
667 ipath_free_devdata(pdev, dd);
670 /* general driver use */
671 DEFINE_MUTEX(ipath_mutex);
673 static DEFINE_SPINLOCK(ipath_pioavail_lock);
676 * ipath_disarm_piobufs - cancel a range of PIO buffers
677 * @dd: the infinipath device
678 * @first: the first PIO buffer to cancel
679 * @cnt: the number of PIO buffers to cancel
681 * cancel a range of PIO buffers, used when they might be armed, but
682 * not triggered. Used at init to ensure buffer state, and also user
683 * process close, in case it died while writing to a PIO buffer
684 * Also after errors.
686 void ipath_disarm_piobufs(struct ipath_devdata *dd, unsigned first,
687 unsigned cnt)
689 unsigned i, last = first + cnt;
690 u64 sendctrl, sendorig;
692 ipath_cdbg(PKT, "disarm %u PIObufs first=%u\n", cnt, first);
693 sendorig = dd->ipath_sendctrl | INFINIPATH_S_DISARM;
694 for (i = first; i < last; i++) {
695 sendctrl = sendorig |
696 (i << INFINIPATH_S_DISARMPIOBUF_SHIFT);
697 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
698 sendctrl);
702 * Write it again with current value, in case ipath_sendctrl changed
703 * while we were looping; no critical bits that would require
704 * locking.
706 * Write a 0, and then the original value, reading scratch in
707 * between. This seems to avoid a chip timing race that causes
708 * pioavail updates to memory to stop.
710 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
712 sendorig = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
713 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
714 dd->ipath_sendctrl);
718 * ipath_wait_linkstate - wait for an IB link state change to occur
719 * @dd: the infinipath device
720 * @state: the state to wait for
721 * @msecs: the number of milliseconds to wait
723 * wait up to msecs milliseconds for IB link state change to occur for
724 * now, take the easy polling route. Currently used only by
725 * ipath_set_linkstate. Returns 0 if state reached, otherwise
726 * -ETIMEDOUT state can have multiple states set, for any of several
727 * transitions.
729 static int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state,
730 int msecs)
732 dd->ipath_state_wanted = state;
733 wait_event_interruptible_timeout(ipath_state_wait,
734 (dd->ipath_flags & state),
735 msecs_to_jiffies(msecs));
736 dd->ipath_state_wanted = 0;
738 if (!(dd->ipath_flags & state)) {
739 u64 val;
740 ipath_cdbg(VERBOSE, "Didn't reach linkstate %s within %u"
741 " ms\n",
742 /* test INIT ahead of DOWN, both can be set */
743 (state & IPATH_LINKINIT) ? "INIT" :
744 ((state & IPATH_LINKDOWN) ? "DOWN" :
745 ((state & IPATH_LINKARMED) ? "ARM" : "ACTIVE")),
746 msecs);
747 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
748 ipath_cdbg(VERBOSE, "ibcc=%llx ibcstatus=%llx (%s)\n",
749 (unsigned long long) ipath_read_kreg64(
750 dd, dd->ipath_kregs->kr_ibcctrl),
751 (unsigned long long) val,
752 ipath_ibcstatus_str[val & 0xf]);
754 return (dd->ipath_flags & state) ? 0 : -ETIMEDOUT;
758 * Decode the error status into strings, deciding whether to always
759 * print * it or not depending on "normal packet errors" vs everything
760 * else. Return 1 if "real" errors, otherwise 0 if only packet
761 * errors, so caller can decide what to print with the string.
763 int ipath_decode_err(char *buf, size_t blen, ipath_err_t err)
765 int iserr = 1;
766 *buf = '\0';
767 if (err & INFINIPATH_E_PKTERRS) {
768 if (!(err & ~INFINIPATH_E_PKTERRS))
769 iserr = 0; // if only packet errors.
770 if (ipath_debug & __IPATH_ERRPKTDBG) {
771 if (err & INFINIPATH_E_REBP)
772 strlcat(buf, "EBP ", blen);
773 if (err & INFINIPATH_E_RVCRC)
774 strlcat(buf, "VCRC ", blen);
775 if (err & INFINIPATH_E_RICRC) {
776 strlcat(buf, "CRC ", blen);
777 // clear for check below, so only once
778 err &= INFINIPATH_E_RICRC;
780 if (err & INFINIPATH_E_RSHORTPKTLEN)
781 strlcat(buf, "rshortpktlen ", blen);
782 if (err & INFINIPATH_E_SDROPPEDDATAPKT)
783 strlcat(buf, "sdroppeddatapkt ", blen);
784 if (err & INFINIPATH_E_SPKTLEN)
785 strlcat(buf, "spktlen ", blen);
787 if ((err & INFINIPATH_E_RICRC) &&
788 !(err&(INFINIPATH_E_RVCRC|INFINIPATH_E_REBP)))
789 strlcat(buf, "CRC ", blen);
790 if (!iserr)
791 goto done;
793 if (err & INFINIPATH_E_RHDRLEN)
794 strlcat(buf, "rhdrlen ", blen);
795 if (err & INFINIPATH_E_RBADTID)
796 strlcat(buf, "rbadtid ", blen);
797 if (err & INFINIPATH_E_RBADVERSION)
798 strlcat(buf, "rbadversion ", blen);
799 if (err & INFINIPATH_E_RHDR)
800 strlcat(buf, "rhdr ", blen);
801 if (err & INFINIPATH_E_RLONGPKTLEN)
802 strlcat(buf, "rlongpktlen ", blen);
803 if (err & INFINIPATH_E_RMAXPKTLEN)
804 strlcat(buf, "rmaxpktlen ", blen);
805 if (err & INFINIPATH_E_RMINPKTLEN)
806 strlcat(buf, "rminpktlen ", blen);
807 if (err & INFINIPATH_E_SMINPKTLEN)
808 strlcat(buf, "sminpktlen ", blen);
809 if (err & INFINIPATH_E_RFORMATERR)
810 strlcat(buf, "rformaterr ", blen);
811 if (err & INFINIPATH_E_RUNSUPVL)
812 strlcat(buf, "runsupvl ", blen);
813 if (err & INFINIPATH_E_RUNEXPCHAR)
814 strlcat(buf, "runexpchar ", blen);
815 if (err & INFINIPATH_E_RIBFLOW)
816 strlcat(buf, "ribflow ", blen);
817 if (err & INFINIPATH_E_SUNDERRUN)
818 strlcat(buf, "sunderrun ", blen);
819 if (err & INFINIPATH_E_SPIOARMLAUNCH)
820 strlcat(buf, "spioarmlaunch ", blen);
821 if (err & INFINIPATH_E_SUNEXPERRPKTNUM)
822 strlcat(buf, "sunexperrpktnum ", blen);
823 if (err & INFINIPATH_E_SDROPPEDSMPPKT)
824 strlcat(buf, "sdroppedsmppkt ", blen);
825 if (err & INFINIPATH_E_SMAXPKTLEN)
826 strlcat(buf, "smaxpktlen ", blen);
827 if (err & INFINIPATH_E_SUNSUPVL)
828 strlcat(buf, "sunsupVL ", blen);
829 if (err & INFINIPATH_E_INVALIDADDR)
830 strlcat(buf, "invalidaddr ", blen);
831 if (err & INFINIPATH_E_RRCVEGRFULL)
832 strlcat(buf, "rcvegrfull ", blen);
833 if (err & INFINIPATH_E_RRCVHDRFULL)
834 strlcat(buf, "rcvhdrfull ", blen);
835 if (err & INFINIPATH_E_IBSTATUSCHANGED)
836 strlcat(buf, "ibcstatuschg ", blen);
837 if (err & INFINIPATH_E_RIBLOSTLINK)
838 strlcat(buf, "riblostlink ", blen);
839 if (err & INFINIPATH_E_HARDWARE)
840 strlcat(buf, "hardware ", blen);
841 if (err & INFINIPATH_E_RESET)
842 strlcat(buf, "reset ", blen);
843 done:
844 return iserr;
848 * get_rhf_errstring - decode RHF errors
849 * @err: the err number
850 * @msg: the output buffer
851 * @len: the length of the output buffer
853 * only used one place now, may want more later
855 static void get_rhf_errstring(u32 err, char *msg, size_t len)
857 /* if no errors, and so don't need to check what's first */
858 *msg = '\0';
860 if (err & INFINIPATH_RHF_H_ICRCERR)
861 strlcat(msg, "icrcerr ", len);
862 if (err & INFINIPATH_RHF_H_VCRCERR)
863 strlcat(msg, "vcrcerr ", len);
864 if (err & INFINIPATH_RHF_H_PARITYERR)
865 strlcat(msg, "parityerr ", len);
866 if (err & INFINIPATH_RHF_H_LENERR)
867 strlcat(msg, "lenerr ", len);
868 if (err & INFINIPATH_RHF_H_MTUERR)
869 strlcat(msg, "mtuerr ", len);
870 if (err & INFINIPATH_RHF_H_IHDRERR)
871 /* infinipath hdr checksum error */
872 strlcat(msg, "ipathhdrerr ", len);
873 if (err & INFINIPATH_RHF_H_TIDERR)
874 strlcat(msg, "tiderr ", len);
875 if (err & INFINIPATH_RHF_H_MKERR)
876 /* bad port, offset, etc. */
877 strlcat(msg, "invalid ipathhdr ", len);
878 if (err & INFINIPATH_RHF_H_IBERR)
879 strlcat(msg, "iberr ", len);
880 if (err & INFINIPATH_RHF_L_SWA)
881 strlcat(msg, "swA ", len);
882 if (err & INFINIPATH_RHF_L_SWB)
883 strlcat(msg, "swB ", len);
887 * ipath_get_egrbuf - get an eager buffer
888 * @dd: the infinipath device
889 * @bufnum: the eager buffer to get
890 * @err: unused
892 * must only be called if ipath_pd[port] is known to be allocated
894 static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum,
895 int err)
897 return dd->ipath_port0_skbinfo ?
898 (void *) dd->ipath_port0_skbinfo[bufnum].skb->data : NULL;
902 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
903 * @dd: the infinipath device
904 * @gfp_mask: the sk_buff SFP mask
906 struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd,
907 gfp_t gfp_mask)
909 struct sk_buff *skb;
910 u32 len;
913 * Only fully supported way to handle this is to allocate lots
914 * extra, align as needed, and then do skb_reserve(). That wastes
915 * a lot of memory... I'll have to hack this into infinipath_copy
916 * also.
920 * We need 2 extra bytes for ipath_ether data sent in the
921 * key header. In order to keep everything dword aligned,
922 * we'll reserve 4 bytes.
924 len = dd->ipath_ibmaxlen + 4;
926 if (dd->ipath_flags & IPATH_4BYTE_TID) {
927 /* We need a 2KB multiple alignment, and there is no way
928 * to do it except to allocate extra and then skb_reserve
929 * enough to bring it up to the right alignment.
931 len += 2047;
934 skb = __dev_alloc_skb(len, gfp_mask);
935 if (!skb) {
936 ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
937 len);
938 goto bail;
941 skb_reserve(skb, 4);
943 if (dd->ipath_flags & IPATH_4BYTE_TID) {
944 u32 una = (unsigned long)skb->data & 2047;
945 if (una)
946 skb_reserve(skb, 2048 - una);
949 bail:
950 return skb;
953 static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
954 u32 eflags,
955 u32 l,
956 u32 etail,
957 u64 *rc)
959 char emsg[128];
960 struct ipath_message_header *hdr;
962 get_rhf_errstring(eflags, emsg, sizeof emsg);
963 hdr = (struct ipath_message_header *)&rc[1];
964 ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
965 "tlen=%x opcode=%x egridx=%x: %s\n",
966 eflags, l,
967 ipath_hdrget_rcv_type((__le32 *) rc),
968 ipath_hdrget_length_in_bytes((__le32 *) rc),
969 be32_to_cpu(hdr->bth[0]) >> 24,
970 etail, emsg);
972 /* Count local link integrity errors. */
973 if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
974 u8 n = (dd->ipath_ibcctrl >>
975 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
976 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
978 if (++dd->ipath_lli_counter > n) {
979 dd->ipath_lli_counter = 0;
980 dd->ipath_lli_errors++;
986 * ipath_kreceive - receive a packet
987 * @dd: the infinipath device
989 * called from interrupt handler for errors or receive interrupt
991 void ipath_kreceive(struct ipath_devdata *dd)
993 u64 *rc;
994 void *ebuf;
995 const u32 rsize = dd->ipath_rcvhdrentsize; /* words */
996 const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
997 u32 etail = -1, l, hdrqtail;
998 struct ipath_message_header *hdr;
999 u32 eflags, i, etype, tlen, pkttot = 0, updegr=0, reloop=0;
1000 static u64 totcalls; /* stats, may eventually remove */
1002 if (!dd->ipath_hdrqtailptr) {
1003 ipath_dev_err(dd,
1004 "hdrqtailptr not set, can't do receives\n");
1005 goto bail;
1008 /* There is already a thread processing this queue. */
1009 if (test_and_set_bit(0, &dd->ipath_rcv_pending))
1010 goto bail;
1012 l = dd->ipath_port0head;
1013 hdrqtail = (u32) le64_to_cpu(*dd->ipath_hdrqtailptr);
1014 if (l == hdrqtail)
1015 goto done;
1017 reloop:
1018 for (i = 0; l != hdrqtail; i++) {
1019 u32 qp;
1020 u8 *bthbytes;
1022 rc = (u64 *) (dd->ipath_pd[0]->port_rcvhdrq + (l << 2));
1023 hdr = (struct ipath_message_header *)&rc[1];
1025 * could make a network order version of IPATH_KD_QP, and
1026 * do the obvious shift before masking to speed this up.
1028 qp = ntohl(hdr->bth[1]) & 0xffffff;
1029 bthbytes = (u8 *) hdr->bth;
1031 eflags = ipath_hdrget_err_flags((__le32 *) rc);
1032 etype = ipath_hdrget_rcv_type((__le32 *) rc);
1033 /* total length */
1034 tlen = ipath_hdrget_length_in_bytes((__le32 *) rc);
1035 ebuf = NULL;
1036 if (etype != RCVHQ_RCV_TYPE_EXPECTED) {
1038 * it turns out that the chips uses an eager buffer
1039 * for all non-expected packets, whether it "needs"
1040 * one or not. So always get the index, but don't
1041 * set ebuf (so we try to copy data) unless the
1042 * length requires it.
1044 etail = ipath_hdrget_index((__le32 *) rc);
1045 if (tlen > sizeof(*hdr) ||
1046 etype == RCVHQ_RCV_TYPE_NON_KD)
1047 ebuf = ipath_get_egrbuf(dd, etail, 0);
1051 * both tiderr and ipathhdrerr are set for all plain IB
1052 * packets; only ipathhdrerr should be set.
1055 if (etype != RCVHQ_RCV_TYPE_NON_KD && etype !=
1056 RCVHQ_RCV_TYPE_ERROR && ipath_hdrget_ipath_ver(
1057 hdr->iph.ver_port_tid_offset) !=
1058 IPS_PROTO_VERSION) {
1059 ipath_cdbg(PKT, "Bad InfiniPath protocol version "
1060 "%x\n", etype);
1063 if (unlikely(eflags))
1064 ipath_rcv_hdrerr(dd, eflags, l, etail, rc);
1065 else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
1066 ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
1067 if (dd->ipath_lli_counter)
1068 dd->ipath_lli_counter--;
1069 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
1070 "qp=%x), len %x; ignored\n",
1071 etype, bthbytes[0], qp, tlen);
1073 else if (etype == RCVHQ_RCV_TYPE_EAGER)
1074 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
1075 "qp=%x), len %x; ignored\n",
1076 etype, bthbytes[0], qp, tlen);
1077 else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
1078 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
1079 be32_to_cpu(hdr->bth[0]) & 0xff);
1080 else {
1082 * error packet, type of error unknown.
1083 * Probably type 3, but we don't know, so don't
1084 * even try to print the opcode, etc.
1086 ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
1087 "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
1088 "hdr %llx %llx %llx %llx %llx\n",
1089 etail, tlen, (unsigned long) rc, l,
1090 (unsigned long long) rc[0],
1091 (unsigned long long) rc[1],
1092 (unsigned long long) rc[2],
1093 (unsigned long long) rc[3],
1094 (unsigned long long) rc[4],
1095 (unsigned long long) rc[5]);
1097 l += rsize;
1098 if (l >= maxcnt)
1099 l = 0;
1100 if (etype != RCVHQ_RCV_TYPE_EXPECTED)
1101 updegr = 1;
1103 * update head regs on last packet, and every 16 packets.
1104 * Reduce bus traffic, while still trying to prevent
1105 * rcvhdrq overflows, for when the queue is nearly full
1107 if (l == hdrqtail || (i && !(i&0xf))) {
1108 u64 lval;
1109 if (l == hdrqtail)
1110 /* request IBA6120 interrupt only on last */
1111 lval = dd->ipath_rhdrhead_intr_off | l;
1112 else
1113 lval = l;
1114 (void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
1115 if (updegr) {
1116 (void)ipath_write_ureg(dd, ur_rcvegrindexhead,
1117 etail, 0);
1118 updegr = 0;
1123 if (!dd->ipath_rhdrhead_intr_off && !reloop) {
1124 /* IBA6110 workaround; we can have a race clearing chip
1125 * interrupt with another interrupt about to be delivered,
1126 * and can clear it before it is delivered on the GPIO
1127 * workaround. By doing the extra check here for the
1128 * in-memory tail register updating while we were doing
1129 * earlier packets, we "almost" guarantee we have covered
1130 * that case.
1132 u32 hqtail = (u32)le64_to_cpu(*dd->ipath_hdrqtailptr);
1133 if (hqtail != hdrqtail) {
1134 hdrqtail = hqtail;
1135 reloop = 1; /* loop 1 extra time at most */
1136 goto reloop;
1140 pkttot += i;
1142 dd->ipath_port0head = l;
1144 if (pkttot > ipath_stats.sps_maxpkts_call)
1145 ipath_stats.sps_maxpkts_call = pkttot;
1146 ipath_stats.sps_port0pkts += pkttot;
1147 ipath_stats.sps_avgpkts_call =
1148 ipath_stats.sps_port0pkts / ++totcalls;
1150 done:
1151 clear_bit(0, &dd->ipath_rcv_pending);
1152 smp_mb__after_clear_bit();
1154 bail:;
1158 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1159 * @dd: the infinipath device
1161 * called whenever our local copy indicates we have run out of send buffers
1162 * NOTE: This can be called from interrupt context by some code
1163 * and from non-interrupt context by ipath_getpiobuf().
1166 static void ipath_update_pio_bufs(struct ipath_devdata *dd)
1168 unsigned long flags;
1169 int i;
1170 const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
1172 /* If the generation (check) bits have changed, then we update the
1173 * busy bit for the corresponding PIO buffer. This algorithm will
1174 * modify positions to the value they already have in some cases
1175 * (i.e., no change), but it's faster than changing only the bits
1176 * that have changed.
1178 * We would like to do this atomicly, to avoid spinlocks in the
1179 * critical send path, but that's not really possible, given the
1180 * type of changes, and that this routine could be called on
1181 * multiple cpu's simultaneously, so we lock in this routine only,
1182 * to avoid conflicting updates; all we change is the shadow, and
1183 * it's a single 64 bit memory location, so by definition the update
1184 * is atomic in terms of what other cpu's can see in testing the
1185 * bits. The spin_lock overhead isn't too bad, since it only
1186 * happens when all buffers are in use, so only cpu overhead, not
1187 * latency or bandwidth is affected.
1189 #define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
1190 if (!dd->ipath_pioavailregs_dma) {
1191 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1192 return;
1194 if (ipath_debug & __IPATH_VERBDBG) {
1195 /* only if packet debug and verbose */
1196 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1197 unsigned long *shadow = dd->ipath_pioavailshadow;
1199 ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
1200 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1201 "s3=%lx\n",
1202 (unsigned long long) le64_to_cpu(dma[0]),
1203 shadow[0],
1204 (unsigned long long) le64_to_cpu(dma[1]),
1205 shadow[1],
1206 (unsigned long long) le64_to_cpu(dma[2]),
1207 shadow[2],
1208 (unsigned long long) le64_to_cpu(dma[3]),
1209 shadow[3]);
1210 if (piobregs > 4)
1211 ipath_cdbg(
1212 PKT, "2nd group, dma4=%llx shad4=%lx, "
1213 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1214 "d7=%llx s7=%lx\n",
1215 (unsigned long long) le64_to_cpu(dma[4]),
1216 shadow[4],
1217 (unsigned long long) le64_to_cpu(dma[5]),
1218 shadow[5],
1219 (unsigned long long) le64_to_cpu(dma[6]),
1220 shadow[6],
1221 (unsigned long long) le64_to_cpu(dma[7]),
1222 shadow[7]);
1224 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1225 for (i = 0; i < piobregs; i++) {
1226 u64 pchbusy, pchg, piov, pnew;
1228 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1230 if (i > 3) {
1231 if (i & 1)
1232 piov = le64_to_cpu(
1233 dd->ipath_pioavailregs_dma[i - 1]);
1234 else
1235 piov = le64_to_cpu(
1236 dd->ipath_pioavailregs_dma[i + 1]);
1237 } else
1238 piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
1239 pchg = _IPATH_ALL_CHECKBITS &
1240 ~(dd->ipath_pioavailshadow[i] ^ piov);
1241 pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
1242 if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
1243 pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
1244 pnew |= piov & pchbusy;
1245 dd->ipath_pioavailshadow[i] = pnew;
1248 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1252 * ipath_setrcvhdrsize - set the receive header size
1253 * @dd: the infinipath device
1254 * @rhdrsize: the receive header size
1256 * called from user init code, and also layered driver init
1258 int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
1260 int ret = 0;
1262 if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
1263 if (dd->ipath_rcvhdrsize != rhdrsize) {
1264 dev_info(&dd->pcidev->dev,
1265 "Error: can't set protocol header "
1266 "size %u, already %u\n",
1267 rhdrsize, dd->ipath_rcvhdrsize);
1268 ret = -EAGAIN;
1269 } else
1270 ipath_cdbg(VERBOSE, "Reuse same protocol header "
1271 "size %u\n", dd->ipath_rcvhdrsize);
1272 } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
1273 (sizeof(u64) / sizeof(u32)))) {
1274 ipath_dbg("Error: can't set protocol header size %u "
1275 "(> max %u)\n", rhdrsize,
1276 dd->ipath_rcvhdrentsize -
1277 (u32) (sizeof(u64) / sizeof(u32)));
1278 ret = -EOVERFLOW;
1279 } else {
1280 dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
1281 dd->ipath_rcvhdrsize = rhdrsize;
1282 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
1283 dd->ipath_rcvhdrsize);
1284 ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
1285 dd->ipath_rcvhdrsize);
1287 return ret;
1291 * ipath_getpiobuf - find an available pio buffer
1292 * @dd: the infinipath device
1293 * @pbufnum: the buffer number is placed here
1295 * do appropriate marking as busy, etc.
1296 * returns buffer number if one found (>=0), negative number is error.
1297 * Used by ipath_layer_send
1299 u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 * pbufnum)
1301 int i, j, starti, updated = 0;
1302 unsigned piobcnt, iter;
1303 unsigned long flags;
1304 unsigned long *shadow = dd->ipath_pioavailshadow;
1305 u32 __iomem *buf;
1307 piobcnt = (unsigned)(dd->ipath_piobcnt2k
1308 + dd->ipath_piobcnt4k);
1309 starti = dd->ipath_lastport_piobuf;
1310 iter = piobcnt - starti;
1311 if (dd->ipath_upd_pio_shadow) {
1313 * Minor optimization. If we had no buffers on last call,
1314 * start out by doing the update; continue and do scan even
1315 * if no buffers were updated, to be paranoid
1317 ipath_update_pio_bufs(dd);
1318 /* we scanned here, don't do it at end of scan */
1319 updated = 1;
1320 i = starti;
1321 } else
1322 i = dd->ipath_lastpioindex;
1324 rescan:
1326 * while test_and_set_bit() is atomic, we do that and then the
1327 * change_bit(), and the pair is not. See if this is the cause
1328 * of the remaining armlaunch errors.
1330 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1331 for (j = 0; j < iter; j++, i++) {
1332 if (i >= piobcnt)
1333 i = starti;
1335 * To avoid bus lock overhead, we first find a candidate
1336 * buffer, then do the test and set, and continue if that
1337 * fails.
1339 if (test_bit((2 * i) + 1, shadow) ||
1340 test_and_set_bit((2 * i) + 1, shadow))
1341 continue;
1342 /* flip generation bit */
1343 change_bit(2 * i, shadow);
1344 break;
1346 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1348 if (j == iter) {
1349 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1352 * first time through; shadow exhausted, but may be real
1353 * buffers available, so go see; if any updated, rescan
1354 * (once)
1356 if (!updated) {
1357 ipath_update_pio_bufs(dd);
1358 updated = 1;
1359 i = starti;
1360 goto rescan;
1362 dd->ipath_upd_pio_shadow = 1;
1364 * not atomic, but if we lose one once in a while, that's OK
1366 ipath_stats.sps_nopiobufs++;
1367 if (!(++dd->ipath_consec_nopiobuf % 100000)) {
1368 ipath_dbg(
1369 "%u pio sends with no bufavail; dmacopy: "
1370 "%llx %llx %llx %llx; shadow: "
1371 "%lx %lx %lx %lx\n",
1372 dd->ipath_consec_nopiobuf,
1373 (unsigned long long) le64_to_cpu(dma[0]),
1374 (unsigned long long) le64_to_cpu(dma[1]),
1375 (unsigned long long) le64_to_cpu(dma[2]),
1376 (unsigned long long) le64_to_cpu(dma[3]),
1377 shadow[0], shadow[1], shadow[2],
1378 shadow[3]);
1380 * 4 buffers per byte, 4 registers above, cover rest
1381 * below
1383 if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
1384 (sizeof(shadow[0]) * 4 * 4))
1385 ipath_dbg("2nd group: dmacopy: %llx %llx "
1386 "%llx %llx; shadow: %lx %lx "
1387 "%lx %lx\n",
1388 (unsigned long long)
1389 le64_to_cpu(dma[4]),
1390 (unsigned long long)
1391 le64_to_cpu(dma[5]),
1392 (unsigned long long)
1393 le64_to_cpu(dma[6]),
1394 (unsigned long long)
1395 le64_to_cpu(dma[7]),
1396 shadow[4], shadow[5],
1397 shadow[6], shadow[7]);
1399 buf = NULL;
1400 goto bail;
1404 * set next starting place. Since it's just an optimization,
1405 * it doesn't matter who wins on this, so no locking
1407 dd->ipath_lastpioindex = i + 1;
1408 if (dd->ipath_upd_pio_shadow)
1409 dd->ipath_upd_pio_shadow = 0;
1410 if (dd->ipath_consec_nopiobuf)
1411 dd->ipath_consec_nopiobuf = 0;
1412 if (i < dd->ipath_piobcnt2k)
1413 buf = (u32 __iomem *) (dd->ipath_pio2kbase +
1414 i * dd->ipath_palign);
1415 else
1416 buf = (u32 __iomem *)
1417 (dd->ipath_pio4kbase +
1418 (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
1419 ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
1420 i, (i < dd->ipath_piobcnt2k) ? 2 : 4, buf);
1421 if (pbufnum)
1422 *pbufnum = i;
1424 bail:
1425 return buf;
1429 * ipath_create_rcvhdrq - create a receive header queue
1430 * @dd: the infinipath device
1431 * @pd: the port data
1433 * this must be contiguous memory (from an i/o perspective), and must be
1434 * DMA'able (which means for some systems, it will go through an IOMMU,
1435 * or be forced into a low address range).
1437 int ipath_create_rcvhdrq(struct ipath_devdata *dd,
1438 struct ipath_portdata *pd)
1440 int ret = 0;
1442 if (!pd->port_rcvhdrq) {
1443 dma_addr_t phys_hdrqtail;
1444 gfp_t gfp_flags = GFP_USER | __GFP_COMP;
1445 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
1446 sizeof(u32), PAGE_SIZE);
1448 pd->port_rcvhdrq = dma_alloc_coherent(
1449 &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
1450 gfp_flags);
1452 if (!pd->port_rcvhdrq) {
1453 ipath_dev_err(dd, "attempt to allocate %d bytes "
1454 "for port %u rcvhdrq failed\n",
1455 amt, pd->port_port);
1456 ret = -ENOMEM;
1457 goto bail;
1459 pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
1460 &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail, GFP_KERNEL);
1461 if (!pd->port_rcvhdrtail_kvaddr) {
1462 ipath_dev_err(dd, "attempt to allocate 1 page "
1463 "for port %u rcvhdrqtailaddr failed\n",
1464 pd->port_port);
1465 ret = -ENOMEM;
1466 dma_free_coherent(&dd->pcidev->dev, amt,
1467 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1468 pd->port_rcvhdrq = NULL;
1469 goto bail;
1471 pd->port_rcvhdrqtailaddr_phys = phys_hdrqtail;
1473 pd->port_rcvhdrq_size = amt;
1475 ipath_cdbg(VERBOSE, "%d pages at %p (phys %lx) size=%lu "
1476 "for port %u rcvhdr Q\n",
1477 amt >> PAGE_SHIFT, pd->port_rcvhdrq,
1478 (unsigned long) pd->port_rcvhdrq_phys,
1479 (unsigned long) pd->port_rcvhdrq_size,
1480 pd->port_port);
1482 ipath_cdbg(VERBOSE, "port %d hdrtailaddr, %llx physical\n",
1483 pd->port_port,
1484 (unsigned long long) phys_hdrqtail);
1486 else
1487 ipath_cdbg(VERBOSE, "reuse port %d rcvhdrq @%p %llx phys; "
1488 "hdrtailaddr@%p %llx physical\n",
1489 pd->port_port, pd->port_rcvhdrq,
1490 (unsigned long long) pd->port_rcvhdrq_phys,
1491 pd->port_rcvhdrtail_kvaddr, (unsigned long long)
1492 pd->port_rcvhdrqtailaddr_phys);
1494 /* clear for security and sanity on each use */
1495 memset(pd->port_rcvhdrq, 0, pd->port_rcvhdrq_size);
1496 memset(pd->port_rcvhdrtail_kvaddr, 0, PAGE_SIZE);
1499 * tell chip each time we init it, even if we are re-using previous
1500 * memory (we zero the register at process close)
1502 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdrtailaddr,
1503 pd->port_port, pd->port_rcvhdrqtailaddr_phys);
1504 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdraddr,
1505 pd->port_port, pd->port_rcvhdrq_phys);
1507 ret = 0;
1508 bail:
1509 return ret;
1512 int ipath_waitfor_complete(struct ipath_devdata *dd, ipath_kreg reg_id,
1513 u64 bits_to_wait_for, u64 * valp)
1515 unsigned long timeout;
1516 u64 lastval, val;
1517 int ret;
1519 lastval = ipath_read_kreg64(dd, reg_id);
1520 /* wait a ridiculously long time */
1521 timeout = jiffies + msecs_to_jiffies(5);
1522 do {
1523 val = ipath_read_kreg64(dd, reg_id);
1524 /* set so they have something, even on failures. */
1525 *valp = val;
1526 if ((val & bits_to_wait_for) == bits_to_wait_for) {
1527 ret = 0;
1528 break;
1530 if (val != lastval)
1531 ipath_cdbg(VERBOSE, "Changed from %llx to %llx, "
1532 "waiting for %llx bits\n",
1533 (unsigned long long) lastval,
1534 (unsigned long long) val,
1535 (unsigned long long) bits_to_wait_for);
1536 cond_resched();
1537 if (time_after(jiffies, timeout)) {
1538 ipath_dbg("Didn't get bits %llx in register 0x%x, "
1539 "got %llx\n",
1540 (unsigned long long) bits_to_wait_for,
1541 reg_id, (unsigned long long) *valp);
1542 ret = -ENODEV;
1543 break;
1545 } while (1);
1547 return ret;
1551 * ipath_waitfor_mdio_cmdready - wait for last command to complete
1552 * @dd: the infinipath device
1554 * Like ipath_waitfor_complete(), but we wait for the CMDVALID bit to go
1555 * away indicating the last command has completed. It doesn't return data
1557 int ipath_waitfor_mdio_cmdready(struct ipath_devdata *dd)
1559 unsigned long timeout;
1560 u64 val;
1561 int ret;
1563 /* wait a ridiculously long time */
1564 timeout = jiffies + msecs_to_jiffies(5);
1565 do {
1566 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_mdio);
1567 if (!(val & IPATH_MDIO_CMDVALID)) {
1568 ret = 0;
1569 break;
1571 cond_resched();
1572 if (time_after(jiffies, timeout)) {
1573 ipath_dbg("CMDVALID stuck in mdio reg? (%llx)\n",
1574 (unsigned long long) val);
1575 ret = -ENODEV;
1576 break;
1578 } while (1);
1580 return ret;
1583 static void ipath_set_ib_lstate(struct ipath_devdata *dd, int which)
1585 static const char *what[4] = {
1586 [0] = "DOWN",
1587 [INFINIPATH_IBCC_LINKCMD_INIT] = "INIT",
1588 [INFINIPATH_IBCC_LINKCMD_ARMED] = "ARMED",
1589 [INFINIPATH_IBCC_LINKCMD_ACTIVE] = "ACTIVE"
1591 int linkcmd = (which >> INFINIPATH_IBCC_LINKCMD_SHIFT) &
1592 INFINIPATH_IBCC_LINKCMD_MASK;
1594 ipath_cdbg(VERBOSE, "Trying to move unit %u to %s, current ltstate "
1595 "is %s\n", dd->ipath_unit,
1596 what[linkcmd],
1597 ipath_ibcstatus_str[
1598 (ipath_read_kreg64
1599 (dd, dd->ipath_kregs->kr_ibcstatus) >>
1600 INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
1601 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK]);
1602 /* flush all queued sends when going to DOWN or INIT, to be sure that
1603 * they don't block MAD packets */
1604 if (!linkcmd || linkcmd == INFINIPATH_IBCC_LINKCMD_INIT) {
1605 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1606 INFINIPATH_S_ABORT);
1607 ipath_disarm_piobufs(dd, dd->ipath_lastport_piobuf,
1608 (unsigned)(dd->ipath_piobcnt2k +
1609 dd->ipath_piobcnt4k) -
1610 dd->ipath_lastport_piobuf);
1613 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1614 dd->ipath_ibcctrl | which);
1617 int ipath_set_linkstate(struct ipath_devdata *dd, u8 newstate)
1619 u32 lstate;
1620 int ret;
1622 switch (newstate) {
1623 case IPATH_IB_LINKDOWN:
1624 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_POLL <<
1625 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1626 /* don't wait */
1627 ret = 0;
1628 goto bail;
1630 case IPATH_IB_LINKDOWN_SLEEP:
1631 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_SLEEP <<
1632 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1633 /* don't wait */
1634 ret = 0;
1635 goto bail;
1637 case IPATH_IB_LINKDOWN_DISABLE:
1638 ipath_set_ib_lstate(dd,
1639 INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1640 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1641 /* don't wait */
1642 ret = 0;
1643 goto bail;
1645 case IPATH_IB_LINKINIT:
1646 if (dd->ipath_flags & IPATH_LINKINIT) {
1647 ret = 0;
1648 goto bail;
1650 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_INIT <<
1651 INFINIPATH_IBCC_LINKCMD_SHIFT);
1652 lstate = IPATH_LINKINIT;
1653 break;
1655 case IPATH_IB_LINKARM:
1656 if (dd->ipath_flags & IPATH_LINKARMED) {
1657 ret = 0;
1658 goto bail;
1660 if (!(dd->ipath_flags &
1661 (IPATH_LINKINIT | IPATH_LINKACTIVE))) {
1662 ret = -EINVAL;
1663 goto bail;
1665 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ARMED <<
1666 INFINIPATH_IBCC_LINKCMD_SHIFT);
1668 * Since the port can transition to ACTIVE by receiving
1669 * a non VL 15 packet, wait for either state.
1671 lstate = IPATH_LINKARMED | IPATH_LINKACTIVE;
1672 break;
1674 case IPATH_IB_LINKACTIVE:
1675 if (dd->ipath_flags & IPATH_LINKACTIVE) {
1676 ret = 0;
1677 goto bail;
1679 if (!(dd->ipath_flags & IPATH_LINKARMED)) {
1680 ret = -EINVAL;
1681 goto bail;
1683 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ACTIVE <<
1684 INFINIPATH_IBCC_LINKCMD_SHIFT);
1685 lstate = IPATH_LINKACTIVE;
1686 break;
1688 case IPATH_IB_LINK_LOOPBACK:
1689 dev_info(&dd->pcidev->dev, "Enabling IB local loopback\n");
1690 dd->ipath_ibcctrl |= INFINIPATH_IBCC_LOOPBACK;
1691 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1692 dd->ipath_ibcctrl);
1693 ret = 0;
1694 goto bail; // no state change to wait for
1696 case IPATH_IB_LINK_EXTERNAL:
1697 dev_info(&dd->pcidev->dev, "Disabling IB local loopback (normal)\n");
1698 dd->ipath_ibcctrl &= ~INFINIPATH_IBCC_LOOPBACK;
1699 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1700 dd->ipath_ibcctrl);
1701 ret = 0;
1702 goto bail; // no state change to wait for
1704 default:
1705 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate);
1706 ret = -EINVAL;
1707 goto bail;
1709 ret = ipath_wait_linkstate(dd, lstate, 2000);
1711 bail:
1712 return ret;
1716 * ipath_set_mtu - set the MTU
1717 * @dd: the infinipath device
1718 * @arg: the new MTU
1720 * we can handle "any" incoming size, the issue here is whether we
1721 * need to restrict our outgoing size. For now, we don't do any
1722 * sanity checking on this, and we don't deal with what happens to
1723 * programs that are already running when the size changes.
1724 * NOTE: changing the MTU will usually cause the IBC to go back to
1725 * link initialize (IPATH_IBSTATE_INIT) state...
1727 int ipath_set_mtu(struct ipath_devdata *dd, u16 arg)
1729 u32 piosize;
1730 int changed = 0;
1731 int ret;
1734 * mtu is IB data payload max. It's the largest power of 2 less
1735 * than piosize (or even larger, since it only really controls the
1736 * largest we can receive; we can send the max of the mtu and
1737 * piosize). We check that it's one of the valid IB sizes.
1739 if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
1740 arg != 4096) {
1741 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg);
1742 ret = -EINVAL;
1743 goto bail;
1745 if (dd->ipath_ibmtu == arg) {
1746 ret = 0; /* same as current */
1747 goto bail;
1750 piosize = dd->ipath_ibmaxlen;
1751 dd->ipath_ibmtu = arg;
1753 if (arg >= (piosize - IPATH_PIO_MAXIBHDR)) {
1754 /* Only if it's not the initial value (or reset to it) */
1755 if (piosize != dd->ipath_init_ibmaxlen) {
1756 dd->ipath_ibmaxlen = piosize;
1757 changed = 1;
1759 } else if ((arg + IPATH_PIO_MAXIBHDR) != dd->ipath_ibmaxlen) {
1760 piosize = arg + IPATH_PIO_MAXIBHDR;
1761 ipath_cdbg(VERBOSE, "ibmaxlen was 0x%x, setting to 0x%x "
1762 "(mtu 0x%x)\n", dd->ipath_ibmaxlen, piosize,
1763 arg);
1764 dd->ipath_ibmaxlen = piosize;
1765 changed = 1;
1768 if (changed) {
1770 * set the IBC maxpktlength to the size of our pio
1771 * buffers in words
1773 u64 ibc = dd->ipath_ibcctrl;
1774 ibc &= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK <<
1775 INFINIPATH_IBCC_MAXPKTLEN_SHIFT);
1777 piosize = piosize - 2 * sizeof(u32); /* ignore pbc */
1778 dd->ipath_ibmaxlen = piosize;
1779 piosize /= sizeof(u32); /* in words */
1781 * for ICRC, which we only send in diag test pkt mode, and
1782 * we don't need to worry about that for mtu
1784 piosize += 1;
1786 ibc |= piosize << INFINIPATH_IBCC_MAXPKTLEN_SHIFT;
1787 dd->ipath_ibcctrl = ibc;
1788 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1789 dd->ipath_ibcctrl);
1790 dd->ipath_f_tidtemplate(dd);
1793 ret = 0;
1795 bail:
1796 return ret;
1799 int ipath_set_lid(struct ipath_devdata *dd, u32 arg, u8 lmc)
1801 dd->ipath_lid = arg;
1802 dd->ipath_lmc = lmc;
1804 return 0;
1808 * ipath_read_kreg64_port - read a device's per-port 64-bit kernel register
1809 * @dd: the infinipath device
1810 * @regno: the register number to read
1811 * @port: the port containing the register
1813 * Registers that vary with the chip implementation constants (port)
1814 * use this routine.
1816 u64 ipath_read_kreg64_port(const struct ipath_devdata *dd, ipath_kreg regno,
1817 unsigned port)
1819 u16 where;
1821 if (port < dd->ipath_portcnt &&
1822 (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1823 regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1824 where = regno + port;
1825 else
1826 where = -1;
1828 return ipath_read_kreg64(dd, where);
1832 * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
1833 * @dd: the infinipath device
1834 * @regno: the register number to write
1835 * @port: the port containing the register
1836 * @value: the value to write
1838 * Registers that vary with the chip implementation constants (port)
1839 * use this routine.
1841 void ipath_write_kreg_port(const struct ipath_devdata *dd, ipath_kreg regno,
1842 unsigned port, u64 value)
1844 u16 where;
1846 if (port < dd->ipath_portcnt &&
1847 (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1848 regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1849 where = regno + port;
1850 else
1851 where = -1;
1853 ipath_write_kreg(dd, where, value);
1857 * ipath_shutdown_device - shut down a device
1858 * @dd: the infinipath device
1860 * This is called to make the device quiet when we are about to
1861 * unload the driver, and also when the device is administratively
1862 * disabled. It does not free any data structures.
1863 * Everything it does has to be setup again by ipath_init_chip(dd,1)
1865 void ipath_shutdown_device(struct ipath_devdata *dd)
1867 ipath_dbg("Shutting down the device\n");
1869 dd->ipath_flags |= IPATH_LINKUNK;
1870 dd->ipath_flags &= ~(IPATH_INITTED | IPATH_LINKDOWN |
1871 IPATH_LINKINIT | IPATH_LINKARMED |
1872 IPATH_LINKACTIVE);
1873 *dd->ipath_statusp &= ~(IPATH_STATUS_IB_CONF |
1874 IPATH_STATUS_IB_READY);
1876 /* mask interrupts, but not errors */
1877 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
1879 dd->ipath_rcvctrl = 0;
1880 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
1881 dd->ipath_rcvctrl);
1884 * gracefully stop all sends allowing any in progress to trickle out
1885 * first.
1887 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, 0ULL);
1888 /* flush it */
1889 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1891 * enough for anything that's going to trickle out to have actually
1892 * done so.
1894 udelay(5);
1897 * abort any armed or launched PIO buffers that didn't go. (self
1898 * clearing). Will cause any packet currently being transmitted to
1899 * go out with an EBP, and may also cause a short packet error on
1900 * the receiver.
1902 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1903 INFINIPATH_S_ABORT);
1905 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1906 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1908 /* disable IBC */
1909 dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
1910 ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
1911 dd->ipath_control | INFINIPATH_C_FREEZEMODE);
1914 * clear SerdesEnable and turn the leds off; do this here because
1915 * we are unloading, so don't count on interrupts to move along
1916 * Turn the LEDs off explictly for the same reason.
1918 dd->ipath_f_quiet_serdes(dd);
1919 dd->ipath_f_setextled(dd, 0, 0);
1921 if (dd->ipath_stats_timer_active) {
1922 del_timer_sync(&dd->ipath_stats_timer);
1923 dd->ipath_stats_timer_active = 0;
1927 * clear all interrupts and errors, so that the next time the driver
1928 * is loaded or device is enabled, we know that whatever is set
1929 * happened while we were unloaded
1931 ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
1932 ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED);
1933 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
1934 ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
1938 * ipath_free_pddata - free a port's allocated data
1939 * @dd: the infinipath device
1940 * @pd: the portdata structure
1942 * free up any allocated data for a port
1943 * This should not touch anything that would affect a simultaneous
1944 * re-allocation of port data, because it is called after ipath_mutex
1945 * is released (and can be called from reinit as well).
1946 * It should never change any chip state, or global driver state.
1947 * (The only exception to global state is freeing the port0 port0_skbs.)
1949 void ipath_free_pddata(struct ipath_devdata *dd, struct ipath_portdata *pd)
1951 if (!pd)
1952 return;
1954 if (pd->port_rcvhdrq) {
1955 ipath_cdbg(VERBOSE, "free closed port %d rcvhdrq @ %p "
1956 "(size=%lu)\n", pd->port_port, pd->port_rcvhdrq,
1957 (unsigned long) pd->port_rcvhdrq_size);
1958 dma_free_coherent(&dd->pcidev->dev, pd->port_rcvhdrq_size,
1959 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1960 pd->port_rcvhdrq = NULL;
1961 if (pd->port_rcvhdrtail_kvaddr) {
1962 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
1963 pd->port_rcvhdrtail_kvaddr,
1964 pd->port_rcvhdrqtailaddr_phys);
1965 pd->port_rcvhdrtail_kvaddr = NULL;
1968 if (pd->port_port && pd->port_rcvegrbuf) {
1969 unsigned e;
1971 for (e = 0; e < pd->port_rcvegrbuf_chunks; e++) {
1972 void *base = pd->port_rcvegrbuf[e];
1973 size_t size = pd->port_rcvegrbuf_size;
1975 ipath_cdbg(VERBOSE, "egrbuf free(%p, %lu), "
1976 "chunk %u/%u\n", base,
1977 (unsigned long) size,
1978 e, pd->port_rcvegrbuf_chunks);
1979 dma_free_coherent(&dd->pcidev->dev, size,
1980 base, pd->port_rcvegrbuf_phys[e]);
1982 kfree(pd->port_rcvegrbuf);
1983 pd->port_rcvegrbuf = NULL;
1984 kfree(pd->port_rcvegrbuf_phys);
1985 pd->port_rcvegrbuf_phys = NULL;
1986 pd->port_rcvegrbuf_chunks = 0;
1987 } else if (pd->port_port == 0 && dd->ipath_port0_skbinfo) {
1988 unsigned e;
1989 struct ipath_skbinfo *skbinfo = dd->ipath_port0_skbinfo;
1991 dd->ipath_port0_skbinfo = NULL;
1992 ipath_cdbg(VERBOSE, "free closed port %d "
1993 "ipath_port0_skbinfo @ %p\n", pd->port_port,
1994 skbinfo);
1995 for (e = 0; e < dd->ipath_rcvegrcnt; e++)
1996 if (skbinfo[e].skb) {
1997 pci_unmap_single(dd->pcidev, skbinfo[e].phys,
1998 dd->ipath_ibmaxlen,
1999 PCI_DMA_FROMDEVICE);
2000 dev_kfree_skb(skbinfo[e].skb);
2002 vfree(skbinfo);
2004 kfree(pd->port_tid_pg_list);
2005 vfree(pd->subport_uregbase);
2006 vfree(pd->subport_rcvegrbuf);
2007 vfree(pd->subport_rcvhdr_base);
2008 kfree(pd);
2011 static int __init infinipath_init(void)
2013 int ret;
2015 if (ipath_debug & __IPATH_DBG)
2016 printk(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
2019 * These must be called before the driver is registered with
2020 * the PCI subsystem.
2022 idr_init(&unit_table);
2023 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
2024 ret = -ENOMEM;
2025 goto bail;
2028 ret = pci_register_driver(&ipath_driver);
2029 if (ret < 0) {
2030 printk(KERN_ERR IPATH_DRV_NAME
2031 ": Unable to register driver: error %d\n", -ret);
2032 goto bail_unit;
2035 ret = ipath_driver_create_group(&ipath_driver.driver);
2036 if (ret < 0) {
2037 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create driver "
2038 "sysfs entries: error %d\n", -ret);
2039 goto bail_pci;
2042 ret = ipath_init_ipathfs();
2043 if (ret < 0) {
2044 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
2045 "ipathfs: error %d\n", -ret);
2046 goto bail_group;
2049 goto bail;
2051 bail_group:
2052 ipath_driver_remove_group(&ipath_driver.driver);
2054 bail_pci:
2055 pci_unregister_driver(&ipath_driver);
2057 bail_unit:
2058 idr_destroy(&unit_table);
2060 bail:
2061 return ret;
2064 static void __exit infinipath_cleanup(void)
2066 ipath_exit_ipathfs();
2068 ipath_driver_remove_group(&ipath_driver.driver);
2070 ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
2071 pci_unregister_driver(&ipath_driver);
2073 idr_destroy(&unit_table);
2077 * ipath_reset_device - reset the chip if possible
2078 * @unit: the device to reset
2080 * Whether or not reset is successful, we attempt to re-initialize the chip
2081 * (that is, much like a driver unload/reload). We clear the INITTED flag
2082 * so that the various entry points will fail until we reinitialize. For
2083 * now, we only allow this if no user ports are open that use chip resources
2085 int ipath_reset_device(int unit)
2087 int ret, i;
2088 struct ipath_devdata *dd = ipath_lookup(unit);
2090 if (!dd) {
2091 ret = -ENODEV;
2092 goto bail;
2095 dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
2097 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
2098 dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
2099 "not initialized or not present\n", unit);
2100 ret = -ENXIO;
2101 goto bail;
2104 if (dd->ipath_pd)
2105 for (i = 1; i < dd->ipath_cfgports; i++) {
2106 if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
2107 ipath_dbg("unit %u port %d is in use "
2108 "(PID %u cmd %s), can't reset\n",
2109 unit, i,
2110 dd->ipath_pd[i]->port_pid,
2111 dd->ipath_pd[i]->port_comm);
2112 ret = -EBUSY;
2113 goto bail;
2117 dd->ipath_flags &= ~IPATH_INITTED;
2118 ret = dd->ipath_f_reset(dd);
2119 if (ret != 1)
2120 ipath_dbg("reset was not successful\n");
2121 ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2122 unit);
2123 ret = ipath_init_chip(dd, 1);
2124 if (ret)
2125 ipath_dev_err(dd, "Reinitialize unit %u after "
2126 "reset failed with %d\n", unit, ret);
2127 else
2128 dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
2129 "resetting\n", unit);
2131 bail:
2132 return ret;
2135 int ipath_set_rx_pol_inv(struct ipath_devdata *dd, u8 new_pol_inv)
2137 u64 val;
2138 if ( new_pol_inv > INFINIPATH_XGXS_RX_POL_MASK ) {
2139 return -1;
2141 if ( dd->ipath_rx_pol_inv != new_pol_inv ) {
2142 dd->ipath_rx_pol_inv = new_pol_inv;
2143 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
2144 val &= ~(INFINIPATH_XGXS_RX_POL_MASK <<
2145 INFINIPATH_XGXS_RX_POL_SHIFT);
2146 val |= ((u64)dd->ipath_rx_pol_inv) <<
2147 INFINIPATH_XGXS_RX_POL_SHIFT;
2148 ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
2150 return 0;
2152 module_init(infinipath_init);
2153 module_exit(infinipath_cleanup);