2 * Copyright (c) 2006, 2007, 2008 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/sched.h>
35 #include <linux/spinlock.h>
36 #include <linux/idr.h>
37 #include <linux/pci.h>
39 #include <linux/delay.h>
40 #include <linux/netdevice.h>
41 #include <linux/vmalloc.h>
42 #include <linux/bitmap.h>
43 #include <linux/slab.h>
45 #include "ipath_kernel.h"
46 #include "ipath_verbs.h"
48 static void ipath_update_pio_bufs(struct ipath_devdata
*);
50 const char *ipath_get_unit_name(int unit
)
52 static char iname
[16];
53 snprintf(iname
, sizeof iname
, "infinipath%u", unit
);
57 #define DRIVER_LOAD_MSG "QLogic " IPATH_DRV_NAME " loaded: "
58 #define PFX IPATH_DRV_NAME ": "
61 * The size has to be longer than this string, so we can append
62 * board/chip information to it in the init code.
64 const char ib_ipath_version
[] = IPATH_IDSTR
"\n";
66 static struct idr unit_table
;
67 DEFINE_SPINLOCK(ipath_devs_lock
);
68 LIST_HEAD(ipath_dev_list
);
70 wait_queue_head_t ipath_state_wait
;
72 unsigned ipath_debug
= __IPATH_INFO
;
74 module_param_named(debug
, ipath_debug
, uint
, S_IWUSR
| S_IRUGO
);
75 MODULE_PARM_DESC(debug
, "mask for debug prints");
76 EXPORT_SYMBOL_GPL(ipath_debug
);
78 unsigned ipath_mtu4096
= 1; /* max 4KB IB mtu by default, if supported */
79 module_param_named(mtu4096
, ipath_mtu4096
, uint
, S_IRUGO
);
80 MODULE_PARM_DESC(mtu4096
, "enable MTU of 4096 bytes, if supported");
82 static unsigned ipath_hol_timeout_ms
= 13000;
83 module_param_named(hol_timeout_ms
, ipath_hol_timeout_ms
, uint
, S_IRUGO
);
84 MODULE_PARM_DESC(hol_timeout_ms
,
85 "duration of user app suspension after link failure");
87 unsigned ipath_linkrecovery
= 1;
88 module_param_named(linkrecovery
, ipath_linkrecovery
, uint
, S_IWUSR
| S_IRUGO
);
89 MODULE_PARM_DESC(linkrecovery
, "enable workaround for link recovery issue");
91 MODULE_LICENSE("GPL");
92 MODULE_AUTHOR("QLogic <support@qlogic.com>");
93 MODULE_DESCRIPTION("QLogic InfiniPath driver");
96 * Table to translate the LINKTRAININGSTATE portion of
97 * IBCStatus to a human-readable form.
99 const char *ipath_ibcstatus_str
[] = {
106 "LState6", /* unused */
107 "LState7", /* unused */
113 "CfgTxRevLane", /* unused before IBA7220 */
116 /* below were added for IBA7220 */
120 "CfgWaitCfgEnhanced",
125 "LTState18", "LTState19", "LTState1A", "LTState1B",
126 "LTState1C", "LTState1D", "LTState1E", "LTState1F"
129 static void __devexit
ipath_remove_one(struct pci_dev
*);
130 static int __devinit
ipath_init_one(struct pci_dev
*,
131 const struct pci_device_id
*);
133 /* Only needed for registration, nothing else needs this info */
134 #define PCI_VENDOR_ID_PATHSCALE 0x1fc1
135 #define PCI_DEVICE_ID_INFINIPATH_HT 0xd
137 /* Number of seconds before our card status check... */
138 #define STATUS_TIMEOUT 60
140 static const struct pci_device_id ipath_pci_tbl
[] = {
141 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE
, PCI_DEVICE_ID_INFINIPATH_HT
) },
145 MODULE_DEVICE_TABLE(pci
, ipath_pci_tbl
);
147 static struct pci_driver ipath_driver
= {
148 .name
= IPATH_DRV_NAME
,
149 .probe
= ipath_init_one
,
150 .remove
= __devexit_p(ipath_remove_one
),
151 .id_table
= ipath_pci_tbl
,
153 .groups
= ipath_driver_attr_groups
,
157 static inline void read_bars(struct ipath_devdata
*dd
, struct pci_dev
*dev
,
158 u32
*bar0
, u32
*bar1
)
162 ret
= pci_read_config_dword(dev
, PCI_BASE_ADDRESS_0
, bar0
);
164 ipath_dev_err(dd
, "failed to read bar0 before enable: "
167 ret
= pci_read_config_dword(dev
, PCI_BASE_ADDRESS_1
, bar1
);
169 ipath_dev_err(dd
, "failed to read bar1 before enable: "
172 ipath_dbg("Read bar0 %x bar1 %x\n", *bar0
, *bar1
);
175 static void ipath_free_devdata(struct pci_dev
*pdev
,
176 struct ipath_devdata
*dd
)
180 pci_set_drvdata(pdev
, NULL
);
182 if (dd
->ipath_unit
!= -1) {
183 spin_lock_irqsave(&ipath_devs_lock
, flags
);
184 idr_remove(&unit_table
, dd
->ipath_unit
);
185 list_del(&dd
->ipath_list
);
186 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
191 static struct ipath_devdata
*ipath_alloc_devdata(struct pci_dev
*pdev
)
194 struct ipath_devdata
*dd
;
197 if (!idr_pre_get(&unit_table
, GFP_KERNEL
)) {
198 dd
= ERR_PTR(-ENOMEM
);
202 dd
= vmalloc(sizeof(*dd
));
204 dd
= ERR_PTR(-ENOMEM
);
207 memset(dd
, 0, sizeof(*dd
));
210 spin_lock_irqsave(&ipath_devs_lock
, flags
);
212 ret
= idr_get_new(&unit_table
, dd
, &dd
->ipath_unit
);
214 printk(KERN_ERR IPATH_DRV_NAME
215 ": Could not allocate unit ID: error %d\n", -ret
);
216 ipath_free_devdata(pdev
, dd
);
222 pci_set_drvdata(pdev
, dd
);
224 list_add(&dd
->ipath_list
, &ipath_dev_list
);
227 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
233 static inline struct ipath_devdata
*__ipath_lookup(int unit
)
235 return idr_find(&unit_table
, unit
);
238 struct ipath_devdata
*ipath_lookup(int unit
)
240 struct ipath_devdata
*dd
;
243 spin_lock_irqsave(&ipath_devs_lock
, flags
);
244 dd
= __ipath_lookup(unit
);
245 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
250 int ipath_count_units(int *npresentp
, int *nupp
, int *maxportsp
)
252 int nunits
, npresent
, nup
;
253 struct ipath_devdata
*dd
;
257 nunits
= npresent
= nup
= maxports
= 0;
259 spin_lock_irqsave(&ipath_devs_lock
, flags
);
261 list_for_each_entry(dd
, &ipath_dev_list
, ipath_list
) {
263 if ((dd
->ipath_flags
& IPATH_PRESENT
) && dd
->ipath_kregbase
)
266 !(dd
->ipath_flags
& (IPATH_DISABLED
| IPATH_LINKDOWN
269 if (dd
->ipath_cfgports
> maxports
)
270 maxports
= dd
->ipath_cfgports
;
273 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
276 *npresentp
= npresent
;
280 *maxportsp
= maxports
;
286 * These next two routines are placeholders in case we don't have per-arch
287 * code for controlling write combining. If explicit control of write
288 * combining is not available, performance will probably be awful.
291 int __attribute__((weak
)) ipath_enable_wc(struct ipath_devdata
*dd
)
296 void __attribute__((weak
)) ipath_disable_wc(struct ipath_devdata
*dd
)
301 * Perform a PIO buffer bandwidth write test, to verify proper system
302 * configuration. Even when all the setup calls work, occasionally
303 * BIOS or other issues can prevent write combining from working, or
304 * can cause other bandwidth problems to the chip.
306 * This test simply writes the same buffer over and over again, and
307 * measures close to the peak bandwidth to the chip (not testing
308 * data bandwidth to the wire). On chips that use an address-based
309 * trigger to send packets to the wire, this is easy. On chips that
310 * use a count to trigger, we want to make sure that the packet doesn't
311 * go out on the wire, or trigger flow control checks.
313 static void ipath_verify_pioperf(struct ipath_devdata
*dd
)
315 u32 pbnum
, cnt
, lcnt
;
320 piobuf
= ipath_getpiobuf(dd
, 0, &pbnum
);
322 dev_info(&dd
->pcidev
->dev
,
323 "No PIObufs for checking perf, skipping\n");
328 * Enough to give us a reasonable test, less than piobuf size, and
329 * likely multiple of store buffer length.
335 dev_info(&dd
->pcidev
->dev
,
336 "Couldn't get memory for checking PIO perf,"
341 preempt_disable(); /* we want reasonably accurate elapsed time */
342 msecs
= 1 + jiffies_to_msecs(jiffies
);
343 for (lcnt
= 0; lcnt
< 10000U; lcnt
++) {
344 /* wait until we cross msec boundary */
345 if (jiffies_to_msecs(jiffies
) >= msecs
)
350 ipath_disable_armlaunch(dd
);
353 * length 0, no dwords actually sent, and mark as VL15
354 * on chips where that may matter (due to IB flowcontrol)
356 if ((dd
->ipath_flags
& IPATH_HAS_PBC_CNT
))
357 writeq(1UL << 63, piobuf
);
363 * this is only roughly accurate, since even with preempt we
364 * still take interrupts that could take a while. Running for
365 * >= 5 msec seems to get us "close enough" to accurate values
367 msecs
= jiffies_to_msecs(jiffies
);
368 for (emsecs
= lcnt
= 0; emsecs
<= 5UL; lcnt
++) {
369 __iowrite32_copy(piobuf
+ 64, addr
, cnt
>> 2);
370 emsecs
= jiffies_to_msecs(jiffies
) - msecs
;
373 /* 1 GiB/sec, slightly over IB SDR line rate */
374 if (lcnt
< (emsecs
* 1024U))
376 "Performance problem: bandwidth to PIO buffers is "
378 lcnt
/ (u32
) emsecs
);
380 ipath_dbg("PIO buffer bandwidth %u MiB/sec is OK\n",
381 lcnt
/ (u32
) emsecs
);
388 /* disarm piobuf, so it's available again */
389 ipath_disarm_piobufs(dd
, pbnum
, 1);
390 ipath_enable_armlaunch(dd
);
393 static void cleanup_device(struct ipath_devdata
*dd
);
395 static int __devinit
ipath_init_one(struct pci_dev
*pdev
,
396 const struct pci_device_id
*ent
)
399 struct ipath_devdata
*dd
;
400 unsigned long long addr
;
401 u32 bar0
= 0, bar1
= 0;
404 dd
= ipath_alloc_devdata(pdev
);
407 printk(KERN_ERR IPATH_DRV_NAME
408 ": Could not allocate devdata: error %d\n", -ret
);
412 ipath_cdbg(VERBOSE
, "initializing unit #%u\n", dd
->ipath_unit
);
414 ret
= pci_enable_device(pdev
);
416 /* This can happen iff:
418 * We did a chip reset, and then failed to reprogram the
419 * BAR, or the chip reset due to an internal error. We then
420 * unloaded the driver and reloaded it.
422 * Both reset cases set the BAR back to initial state. For
423 * the latter case, the AER sticky error bit at offset 0x718
424 * should be set, but the Linux kernel doesn't yet know
425 * about that, it appears. If the original BAR was retained
426 * in the kernel data structures, this may be OK.
428 ipath_dev_err(dd
, "enable unit %d failed: error %d\n",
429 dd
->ipath_unit
, -ret
);
432 addr
= pci_resource_start(pdev
, 0);
433 len
= pci_resource_len(pdev
, 0);
434 ipath_cdbg(VERBOSE
, "regbase (0) %llx len %d irq %d, vend %x/%x "
435 "driver_data %lx\n", addr
, len
, pdev
->irq
, ent
->vendor
,
436 ent
->device
, ent
->driver_data
);
438 read_bars(dd
, pdev
, &bar0
, &bar1
);
440 if (!bar1
&& !(bar0
& ~0xf)) {
442 dev_info(&pdev
->dev
, "BAR is 0 (probable RESET), "
443 "rewriting as %llx\n", addr
);
444 ret
= pci_write_config_dword(
445 pdev
, PCI_BASE_ADDRESS_0
, addr
);
447 ipath_dev_err(dd
, "rewrite of BAR0 "
448 "failed: err %d\n", -ret
);
451 ret
= pci_write_config_dword(
452 pdev
, PCI_BASE_ADDRESS_1
, addr
>> 32);
454 ipath_dev_err(dd
, "rewrite of BAR1 "
455 "failed: err %d\n", -ret
);
459 ipath_dev_err(dd
, "BAR is 0 (probable RESET), "
460 "not usable until reboot\n");
466 ret
= pci_request_regions(pdev
, IPATH_DRV_NAME
);
468 dev_info(&pdev
->dev
, "pci_request_regions unit %u fails: "
469 "err %d\n", dd
->ipath_unit
, -ret
);
473 ret
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(64));
476 * if the 64 bit setup fails, try 32 bit. Some systems
477 * do not setup 64 bit maps on systems with 2GB or less
480 ret
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
483 "Unable to set DMA mask for unit %u: %d\n",
484 dd
->ipath_unit
, ret
);
488 ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
489 ret
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32));
492 "Unable to set DMA consistent mask "
494 dd
->ipath_unit
, ret
);
499 ret
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(64));
502 "Unable to set DMA consistent mask "
504 dd
->ipath_unit
, ret
);
507 pci_set_master(pdev
);
510 * Save BARs to rewrite after device reset. Save all 64 bits of
513 dd
->ipath_pcibar0
= addr
;
514 dd
->ipath_pcibar1
= addr
>> 32;
515 dd
->ipath_deviceid
= ent
->device
; /* save for later use */
516 dd
->ipath_vendorid
= ent
->vendor
;
518 /* setup the chip-specific functions, as early as possible. */
519 switch (ent
->device
) {
520 case PCI_DEVICE_ID_INFINIPATH_HT
:
521 ipath_init_iba6110_funcs(dd
);
525 ipath_dev_err(dd
, "Found unknown QLogic deviceid 0x%x, "
526 "failing\n", ent
->device
);
530 for (j
= 0; j
< 6; j
++) {
531 if (!pdev
->resource
[j
].start
)
533 ipath_cdbg(VERBOSE
, "BAR %d start %llx, end %llx, len %llx\n",
534 j
, (unsigned long long)pdev
->resource
[j
].start
,
535 (unsigned long long)pdev
->resource
[j
].end
,
536 (unsigned long long)pci_resource_len(pdev
, j
));
540 ipath_dev_err(dd
, "No valid address in BAR 0!\n");
545 ret
= pci_read_config_byte(pdev
, PCI_REVISION_ID
, &rev
);
547 ipath_dev_err(dd
, "Failed to read PCI revision ID unit "
548 "%u: err %d\n", dd
->ipath_unit
, -ret
);
549 goto bail_regions
; /* shouldn't ever happen */
551 dd
->ipath_pcirev
= rev
;
553 #if defined(__powerpc__)
554 /* There isn't a generic way to specify writethrough mappings */
555 dd
->ipath_kregbase
= __ioremap(addr
, len
,
556 (_PAGE_NO_CACHE
|_PAGE_WRITETHRU
));
558 dd
->ipath_kregbase
= ioremap_nocache(addr
, len
);
561 if (!dd
->ipath_kregbase
) {
562 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
567 dd
->ipath_kregend
= (u64 __iomem
*)
568 ((void __iomem
*)dd
->ipath_kregbase
+ len
);
569 dd
->ipath_physaddr
= addr
; /* used for io_remap, etc. */
571 ipath_cdbg(VERBOSE
, "mapped io addr %llx to kregbase %p\n",
572 addr
, dd
->ipath_kregbase
);
574 if (dd
->ipath_f_bus(dd
, pdev
))
575 ipath_dev_err(dd
, "Failed to setup config space; "
576 "continuing anyway\n");
579 * set up our interrupt handler; IRQF_SHARED probably not needed,
580 * since MSI interrupts shouldn't be shared but won't hurt for now.
581 * check 0 irq after we return from chip-specific bus setup, since
582 * that can affect this due to setup
585 ipath_dev_err(dd
, "irq is 0, BIOS error? Interrupts won't "
588 ret
= request_irq(dd
->ipath_irq
, ipath_intr
, IRQF_SHARED
,
591 ipath_dev_err(dd
, "Couldn't setup irq handler, "
592 "irq=%d: %d\n", dd
->ipath_irq
, ret
);
597 ret
= ipath_init_chip(dd
, 0); /* do the chip-specific init */
601 ret
= ipath_enable_wc(dd
);
604 ipath_dev_err(dd
, "Write combining not enabled "
605 "(err %d): performance may be poor\n",
610 ipath_verify_pioperf(dd
);
612 ipath_device_create_group(&pdev
->dev
, dd
);
613 ipathfs_add_device(dd
);
616 ipath_register_ib_device(dd
);
624 dd
->ipath_f_free_irq(dd
);
626 if (dd
->ipath_f_cleanup
)
627 dd
->ipath_f_cleanup(dd
);
630 iounmap((volatile void __iomem
*) dd
->ipath_kregbase
);
633 pci_release_regions(pdev
);
636 pci_disable_device(pdev
);
639 ipath_free_devdata(pdev
, dd
);
645 static void cleanup_device(struct ipath_devdata
*dd
)
648 struct ipath_portdata
**tmp
;
651 if (*dd
->ipath_statusp
& IPATH_STATUS_CHIP_PRESENT
) {
652 /* can't do anything more with chip; needs re-init */
653 *dd
->ipath_statusp
&= ~IPATH_STATUS_CHIP_PRESENT
;
654 if (dd
->ipath_kregbase
) {
656 * if we haven't already cleaned up before these are
657 * to ensure any register reads/writes "fail" until
660 dd
->ipath_kregbase
= NULL
;
661 dd
->ipath_uregbase
= 0;
662 dd
->ipath_sregbase
= 0;
663 dd
->ipath_cregbase
= 0;
664 dd
->ipath_kregsize
= 0;
666 ipath_disable_wc(dd
);
669 if (dd
->ipath_spectriggerhit
)
670 dev_info(&dd
->pcidev
->dev
, "%lu special trigger hits\n",
671 dd
->ipath_spectriggerhit
);
673 if (dd
->ipath_pioavailregs_dma
) {
674 dma_free_coherent(&dd
->pcidev
->dev
, PAGE_SIZE
,
675 (void *) dd
->ipath_pioavailregs_dma
,
676 dd
->ipath_pioavailregs_phys
);
677 dd
->ipath_pioavailregs_dma
= NULL
;
679 if (dd
->ipath_dummy_hdrq
) {
680 dma_free_coherent(&dd
->pcidev
->dev
,
681 dd
->ipath_pd
[0]->port_rcvhdrq_size
,
682 dd
->ipath_dummy_hdrq
, dd
->ipath_dummy_hdrq_phys
);
683 dd
->ipath_dummy_hdrq
= NULL
;
686 if (dd
->ipath_pageshadow
) {
687 struct page
**tmpp
= dd
->ipath_pageshadow
;
688 dma_addr_t
*tmpd
= dd
->ipath_physshadow
;
691 ipath_cdbg(VERBOSE
, "Unlocking any expTID pages still "
693 for (port
= 0; port
< dd
->ipath_cfgports
; port
++) {
694 int port_tidbase
= port
* dd
->ipath_rcvtidcnt
;
695 int maxtid
= port_tidbase
+ dd
->ipath_rcvtidcnt
;
696 for (i
= port_tidbase
; i
< maxtid
; i
++) {
699 pci_unmap_page(dd
->pcidev
, tmpd
[i
],
700 PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
701 ipath_release_user_pages(&tmpp
[i
], 1);
707 ipath_stats
.sps_pageunlocks
+= cnt
;
708 ipath_cdbg(VERBOSE
, "There were still %u expTID "
709 "entries locked\n", cnt
);
711 if (ipath_stats
.sps_pagelocks
||
712 ipath_stats
.sps_pageunlocks
)
713 ipath_cdbg(VERBOSE
, "%llu pages locked, %llu "
714 "unlocked via ipath_m{un}lock\n",
716 ipath_stats
.sps_pagelocks
,
718 ipath_stats
.sps_pageunlocks
);
720 ipath_cdbg(VERBOSE
, "Free shadow page tid array at %p\n",
721 dd
->ipath_pageshadow
);
722 tmpp
= dd
->ipath_pageshadow
;
723 dd
->ipath_pageshadow
= NULL
;
726 dd
->ipath_egrtidbase
= NULL
;
730 * free any resources still in use (usually just kernel ports)
731 * at unload; we do for portcnt, because that's what we allocate.
732 * We acquire lock to be really paranoid that ipath_pd isn't being
733 * accessed from some interrupt-related code (that should not happen,
734 * but best to be sure).
736 spin_lock_irqsave(&dd
->ipath_uctxt_lock
, flags
);
739 spin_unlock_irqrestore(&dd
->ipath_uctxt_lock
, flags
);
740 for (port
= 0; port
< dd
->ipath_portcnt
; port
++) {
741 struct ipath_portdata
*pd
= tmp
[port
];
742 tmp
[port
] = NULL
; /* debugging paranoia */
743 ipath_free_pddata(dd
, pd
);
748 static void __devexit
ipath_remove_one(struct pci_dev
*pdev
)
750 struct ipath_devdata
*dd
= pci_get_drvdata(pdev
);
752 ipath_cdbg(VERBOSE
, "removing, pdev=%p, dd=%p\n", pdev
, dd
);
755 * disable the IB link early, to be sure no new packets arrive, which
756 * complicates the shutdown process
758 ipath_shutdown_device(dd
);
760 flush_scheduled_work();
763 ipath_unregister_ib_device(dd
->verbs_dev
);
765 ipath_diag_remove(dd
);
766 ipath_user_remove(dd
);
767 ipathfs_remove_device(dd
);
768 ipath_device_remove_group(&pdev
->dev
, dd
);
770 ipath_cdbg(VERBOSE
, "Releasing pci memory regions, dd %p, "
771 "unit %u\n", dd
, (u32
) dd
->ipath_unit
);
776 * turn off rcv, send, and interrupts for all ports, all drivers
777 * should also hard reset the chip here?
778 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
779 * for all versions of the driver, if they were allocated
782 ipath_cdbg(VERBOSE
, "unit %u free irq %d\n",
783 dd
->ipath_unit
, dd
->ipath_irq
);
784 dd
->ipath_f_free_irq(dd
);
786 ipath_dbg("irq is 0, not doing free_irq "
787 "for unit %u\n", dd
->ipath_unit
);
789 * we check for NULL here, because it's outside
790 * the kregbase check, and we need to call it
791 * after the free_irq. Thus it's possible that
792 * the function pointers were never initialized.
794 if (dd
->ipath_f_cleanup
)
795 /* clean up chip-specific stuff */
796 dd
->ipath_f_cleanup(dd
);
798 ipath_cdbg(VERBOSE
, "Unmapping kregbase %p\n", dd
->ipath_kregbase
);
799 iounmap((volatile void __iomem
*) dd
->ipath_kregbase
);
800 pci_release_regions(pdev
);
801 ipath_cdbg(VERBOSE
, "calling pci_disable_device\n");
802 pci_disable_device(pdev
);
804 ipath_free_devdata(pdev
, dd
);
807 /* general driver use */
808 DEFINE_MUTEX(ipath_mutex
);
810 static DEFINE_SPINLOCK(ipath_pioavail_lock
);
813 * ipath_disarm_piobufs - cancel a range of PIO buffers
814 * @dd: the infinipath device
815 * @first: the first PIO buffer to cancel
816 * @cnt: the number of PIO buffers to cancel
818 * cancel a range of PIO buffers, used when they might be armed, but
819 * not triggered. Used at init to ensure buffer state, and also user
820 * process close, in case it died while writing to a PIO buffer
823 void ipath_disarm_piobufs(struct ipath_devdata
*dd
, unsigned first
,
826 unsigned i
, last
= first
+ cnt
;
829 ipath_cdbg(PKT
, "disarm %u PIObufs first=%u\n", cnt
, first
);
830 for (i
= first
; i
< last
; i
++) {
831 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
833 * The disarm-related bits are write-only, so it
834 * is ok to OR them in with our copy of sendctrl
835 * while we hold the lock.
837 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
838 dd
->ipath_sendctrl
| INFINIPATH_S_DISARM
|
839 (i
<< INFINIPATH_S_DISARMPIOBUF_SHIFT
));
840 /* can't disarm bufs back-to-back per iba7220 spec */
841 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
842 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
844 /* on some older chips, update may not happen after cancel */
845 ipath_force_pio_avail_update(dd
);
849 * ipath_wait_linkstate - wait for an IB link state change to occur
850 * @dd: the infinipath device
851 * @state: the state to wait for
852 * @msecs: the number of milliseconds to wait
854 * wait up to msecs milliseconds for IB link state change to occur for
855 * now, take the easy polling route. Currently used only by
856 * ipath_set_linkstate. Returns 0 if state reached, otherwise
857 * -ETIMEDOUT state can have multiple states set, for any of several
860 int ipath_wait_linkstate(struct ipath_devdata
*dd
, u32 state
, int msecs
)
862 dd
->ipath_state_wanted
= state
;
863 wait_event_interruptible_timeout(ipath_state_wait
,
864 (dd
->ipath_flags
& state
),
865 msecs_to_jiffies(msecs
));
866 dd
->ipath_state_wanted
= 0;
868 if (!(dd
->ipath_flags
& state
)) {
870 ipath_cdbg(VERBOSE
, "Didn't reach linkstate %s within %u"
872 /* test INIT ahead of DOWN, both can be set */
873 (state
& IPATH_LINKINIT
) ? "INIT" :
874 ((state
& IPATH_LINKDOWN
) ? "DOWN" :
875 ((state
& IPATH_LINKARMED
) ? "ARM" : "ACTIVE")),
877 val
= ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_ibcstatus
);
878 ipath_cdbg(VERBOSE
, "ibcc=%llx ibcstatus=%llx (%s)\n",
879 (unsigned long long) ipath_read_kreg64(
880 dd
, dd
->ipath_kregs
->kr_ibcctrl
),
881 (unsigned long long) val
,
882 ipath_ibcstatus_str
[val
& dd
->ibcs_lts_mask
]);
884 return (dd
->ipath_flags
& state
) ? 0 : -ETIMEDOUT
;
887 static void decode_sdma_errs(struct ipath_devdata
*dd
, ipath_err_t err
,
888 char *buf
, size_t blen
)
890 static const struct {
894 { INFINIPATH_E_SDMAGENMISMATCH
, "SDmaGenMismatch" },
895 { INFINIPATH_E_SDMAOUTOFBOUND
, "SDmaOutOfBound" },
896 { INFINIPATH_E_SDMATAILOUTOFBOUND
, "SDmaTailOutOfBound" },
897 { INFINIPATH_E_SDMABASE
, "SDmaBase" },
898 { INFINIPATH_E_SDMA1STDESC
, "SDma1stDesc" },
899 { INFINIPATH_E_SDMARPYTAG
, "SDmaRpyTag" },
900 { INFINIPATH_E_SDMADWEN
, "SDmaDwEn" },
901 { INFINIPATH_E_SDMAMISSINGDW
, "SDmaMissingDw" },
902 { INFINIPATH_E_SDMAUNEXPDATA
, "SDmaUnexpData" },
903 { INFINIPATH_E_SDMADESCADDRMISALIGN
, "SDmaDescAddrMisalign" },
904 { INFINIPATH_E_SENDBUFMISUSE
, "SendBufMisuse" },
905 { INFINIPATH_E_SDMADISABLED
, "SDmaDisabled" },
911 for (i
= 0; i
< ARRAY_SIZE(errs
); i
++) {
912 expected
= (errs
[i
].err
!= INFINIPATH_E_SDMADISABLED
) ? 0 :
913 test_bit(IPATH_SDMA_ABORTING
, &dd
->ipath_sdma_status
);
914 if ((err
& errs
[i
].err
) && !expected
)
915 bidx
+= snprintf(buf
+ bidx
, blen
- bidx
,
921 * Decode the error status into strings, deciding whether to always
922 * print * it or not depending on "normal packet errors" vs everything
923 * else. Return 1 if "real" errors, otherwise 0 if only packet
924 * errors, so caller can decide what to print with the string.
926 int ipath_decode_err(struct ipath_devdata
*dd
, char *buf
, size_t blen
,
931 if (err
& INFINIPATH_E_PKTERRS
) {
932 if (!(err
& ~INFINIPATH_E_PKTERRS
))
933 iserr
= 0; // if only packet errors.
934 if (ipath_debug
& __IPATH_ERRPKTDBG
) {
935 if (err
& INFINIPATH_E_REBP
)
936 strlcat(buf
, "EBP ", blen
);
937 if (err
& INFINIPATH_E_RVCRC
)
938 strlcat(buf
, "VCRC ", blen
);
939 if (err
& INFINIPATH_E_RICRC
) {
940 strlcat(buf
, "CRC ", blen
);
941 // clear for check below, so only once
942 err
&= INFINIPATH_E_RICRC
;
944 if (err
& INFINIPATH_E_RSHORTPKTLEN
)
945 strlcat(buf
, "rshortpktlen ", blen
);
946 if (err
& INFINIPATH_E_SDROPPEDDATAPKT
)
947 strlcat(buf
, "sdroppeddatapkt ", blen
);
948 if (err
& INFINIPATH_E_SPKTLEN
)
949 strlcat(buf
, "spktlen ", blen
);
951 if ((err
& INFINIPATH_E_RICRC
) &&
952 !(err
&(INFINIPATH_E_RVCRC
|INFINIPATH_E_REBP
)))
953 strlcat(buf
, "CRC ", blen
);
957 if (err
& INFINIPATH_E_RHDRLEN
)
958 strlcat(buf
, "rhdrlen ", blen
);
959 if (err
& INFINIPATH_E_RBADTID
)
960 strlcat(buf
, "rbadtid ", blen
);
961 if (err
& INFINIPATH_E_RBADVERSION
)
962 strlcat(buf
, "rbadversion ", blen
);
963 if (err
& INFINIPATH_E_RHDR
)
964 strlcat(buf
, "rhdr ", blen
);
965 if (err
& INFINIPATH_E_SENDSPECIALTRIGGER
)
966 strlcat(buf
, "sendspecialtrigger ", blen
);
967 if (err
& INFINIPATH_E_RLONGPKTLEN
)
968 strlcat(buf
, "rlongpktlen ", blen
);
969 if (err
& INFINIPATH_E_RMAXPKTLEN
)
970 strlcat(buf
, "rmaxpktlen ", blen
);
971 if (err
& INFINIPATH_E_RMINPKTLEN
)
972 strlcat(buf
, "rminpktlen ", blen
);
973 if (err
& INFINIPATH_E_SMINPKTLEN
)
974 strlcat(buf
, "sminpktlen ", blen
);
975 if (err
& INFINIPATH_E_RFORMATERR
)
976 strlcat(buf
, "rformaterr ", blen
);
977 if (err
& INFINIPATH_E_RUNSUPVL
)
978 strlcat(buf
, "runsupvl ", blen
);
979 if (err
& INFINIPATH_E_RUNEXPCHAR
)
980 strlcat(buf
, "runexpchar ", blen
);
981 if (err
& INFINIPATH_E_RIBFLOW
)
982 strlcat(buf
, "ribflow ", blen
);
983 if (err
& INFINIPATH_E_SUNDERRUN
)
984 strlcat(buf
, "sunderrun ", blen
);
985 if (err
& INFINIPATH_E_SPIOARMLAUNCH
)
986 strlcat(buf
, "spioarmlaunch ", blen
);
987 if (err
& INFINIPATH_E_SUNEXPERRPKTNUM
)
988 strlcat(buf
, "sunexperrpktnum ", blen
);
989 if (err
& INFINIPATH_E_SDROPPEDSMPPKT
)
990 strlcat(buf
, "sdroppedsmppkt ", blen
);
991 if (err
& INFINIPATH_E_SMAXPKTLEN
)
992 strlcat(buf
, "smaxpktlen ", blen
);
993 if (err
& INFINIPATH_E_SUNSUPVL
)
994 strlcat(buf
, "sunsupVL ", blen
);
995 if (err
& INFINIPATH_E_INVALIDADDR
)
996 strlcat(buf
, "invalidaddr ", blen
);
997 if (err
& INFINIPATH_E_RRCVEGRFULL
)
998 strlcat(buf
, "rcvegrfull ", blen
);
999 if (err
& INFINIPATH_E_RRCVHDRFULL
)
1000 strlcat(buf
, "rcvhdrfull ", blen
);
1001 if (err
& INFINIPATH_E_IBSTATUSCHANGED
)
1002 strlcat(buf
, "ibcstatuschg ", blen
);
1003 if (err
& INFINIPATH_E_RIBLOSTLINK
)
1004 strlcat(buf
, "riblostlink ", blen
);
1005 if (err
& INFINIPATH_E_HARDWARE
)
1006 strlcat(buf
, "hardware ", blen
);
1007 if (err
& INFINIPATH_E_RESET
)
1008 strlcat(buf
, "reset ", blen
);
1009 if (err
& INFINIPATH_E_SDMAERRS
)
1010 decode_sdma_errs(dd
, err
, buf
, blen
);
1011 if (err
& INFINIPATH_E_INVALIDEEPCMD
)
1012 strlcat(buf
, "invalideepromcmd ", blen
);
1018 * get_rhf_errstring - decode RHF errors
1019 * @err: the err number
1020 * @msg: the output buffer
1021 * @len: the length of the output buffer
1023 * only used one place now, may want more later
1025 static void get_rhf_errstring(u32 err
, char *msg
, size_t len
)
1027 /* if no errors, and so don't need to check what's first */
1030 if (err
& INFINIPATH_RHF_H_ICRCERR
)
1031 strlcat(msg
, "icrcerr ", len
);
1032 if (err
& INFINIPATH_RHF_H_VCRCERR
)
1033 strlcat(msg
, "vcrcerr ", len
);
1034 if (err
& INFINIPATH_RHF_H_PARITYERR
)
1035 strlcat(msg
, "parityerr ", len
);
1036 if (err
& INFINIPATH_RHF_H_LENERR
)
1037 strlcat(msg
, "lenerr ", len
);
1038 if (err
& INFINIPATH_RHF_H_MTUERR
)
1039 strlcat(msg
, "mtuerr ", len
);
1040 if (err
& INFINIPATH_RHF_H_IHDRERR
)
1041 /* infinipath hdr checksum error */
1042 strlcat(msg
, "ipathhdrerr ", len
);
1043 if (err
& INFINIPATH_RHF_H_TIDERR
)
1044 strlcat(msg
, "tiderr ", len
);
1045 if (err
& INFINIPATH_RHF_H_MKERR
)
1046 /* bad port, offset, etc. */
1047 strlcat(msg
, "invalid ipathhdr ", len
);
1048 if (err
& INFINIPATH_RHF_H_IBERR
)
1049 strlcat(msg
, "iberr ", len
);
1050 if (err
& INFINIPATH_RHF_L_SWA
)
1051 strlcat(msg
, "swA ", len
);
1052 if (err
& INFINIPATH_RHF_L_SWB
)
1053 strlcat(msg
, "swB ", len
);
1057 * ipath_get_egrbuf - get an eager buffer
1058 * @dd: the infinipath device
1059 * @bufnum: the eager buffer to get
1061 * must only be called if ipath_pd[port] is known to be allocated
1063 static inline void *ipath_get_egrbuf(struct ipath_devdata
*dd
, u32 bufnum
)
1065 return dd
->ipath_port0_skbinfo
?
1066 (void *) dd
->ipath_port0_skbinfo
[bufnum
].skb
->data
: NULL
;
1070 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
1071 * @dd: the infinipath device
1072 * @gfp_mask: the sk_buff SFP mask
1074 struct sk_buff
*ipath_alloc_skb(struct ipath_devdata
*dd
,
1077 struct sk_buff
*skb
;
1081 * Only fully supported way to handle this is to allocate lots
1082 * extra, align as needed, and then do skb_reserve(). That wastes
1083 * a lot of memory... I'll have to hack this into infinipath_copy
1088 * We need 2 extra bytes for ipath_ether data sent in the
1089 * key header. In order to keep everything dword aligned,
1090 * we'll reserve 4 bytes.
1092 len
= dd
->ipath_ibmaxlen
+ 4;
1094 if (dd
->ipath_flags
& IPATH_4BYTE_TID
) {
1095 /* We need a 2KB multiple alignment, and there is no way
1096 * to do it except to allocate extra and then skb_reserve
1097 * enough to bring it up to the right alignment.
1102 skb
= __dev_alloc_skb(len
, gfp_mask
);
1104 ipath_dev_err(dd
, "Failed to allocate skbuff, length %u\n",
1109 skb_reserve(skb
, 4);
1111 if (dd
->ipath_flags
& IPATH_4BYTE_TID
) {
1112 u32 una
= (unsigned long)skb
->data
& 2047;
1114 skb_reserve(skb
, 2048 - una
);
1121 static void ipath_rcv_hdrerr(struct ipath_devdata
*dd
,
1126 struct ipath_message_header
*hdr
)
1130 get_rhf_errstring(eflags
, emsg
, sizeof emsg
);
1131 ipath_cdbg(PKT
, "RHFerrs %x hdrqtail=%x typ=%u "
1132 "tlen=%x opcode=%x egridx=%x: %s\n",
1134 ipath_hdrget_rcv_type(rhf_addr
),
1135 ipath_hdrget_length_in_bytes(rhf_addr
),
1136 be32_to_cpu(hdr
->bth
[0]) >> 24,
1139 /* Count local link integrity errors. */
1140 if (eflags
& (INFINIPATH_RHF_H_ICRCERR
| INFINIPATH_RHF_H_VCRCERR
)) {
1141 u8 n
= (dd
->ipath_ibcctrl
>>
1142 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT
) &
1143 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK
;
1145 if (++dd
->ipath_lli_counter
> n
) {
1146 dd
->ipath_lli_counter
= 0;
1147 dd
->ipath_lli_errors
++;
1153 * ipath_kreceive - receive a packet
1154 * @pd: the infinipath port
1156 * called from interrupt handler for errors or receive interrupt
1158 void ipath_kreceive(struct ipath_portdata
*pd
)
1160 struct ipath_devdata
*dd
= pd
->port_dd
;
1163 const u32 rsize
= dd
->ipath_rcvhdrentsize
; /* words */
1164 const u32 maxcnt
= dd
->ipath_rcvhdrcnt
* rsize
; /* words */
1165 u32 etail
= -1, l
, hdrqtail
;
1166 struct ipath_message_header
*hdr
;
1167 u32 eflags
, i
, etype
, tlen
, pkttot
= 0, updegr
= 0, reloop
= 0;
1168 static u64 totcalls
; /* stats, may eventually remove */
1172 rhf_addr
= (__le32
*) pd
->port_rcvhdrq
+ l
+ dd
->ipath_rhf_offset
;
1173 if (dd
->ipath_flags
& IPATH_NODMA_RTAIL
) {
1174 u32 seq
= ipath_hdrget_seq(rhf_addr
);
1176 if (seq
!= pd
->port_seq_cnt
)
1180 hdrqtail
= ipath_get_rcvhdrtail(pd
);
1187 for (last
= 0, i
= 1; !last
; i
+= !last
) {
1188 hdr
= dd
->ipath_f_get_msgheader(dd
, rhf_addr
);
1189 eflags
= ipath_hdrget_err_flags(rhf_addr
);
1190 etype
= ipath_hdrget_rcv_type(rhf_addr
);
1192 tlen
= ipath_hdrget_length_in_bytes(rhf_addr
);
1194 if ((dd
->ipath_flags
& IPATH_NODMA_RTAIL
) ?
1195 ipath_hdrget_use_egr_buf(rhf_addr
) :
1196 (etype
!= RCVHQ_RCV_TYPE_EXPECTED
)) {
1198 * It turns out that the chip uses an eager buffer
1199 * for all non-expected packets, whether it "needs"
1200 * one or not. So always get the index, but don't
1201 * set ebuf (so we try to copy data) unless the
1202 * length requires it.
1204 etail
= ipath_hdrget_index(rhf_addr
);
1206 if (tlen
> sizeof(*hdr
) ||
1207 etype
== RCVHQ_RCV_TYPE_NON_KD
)
1208 ebuf
= ipath_get_egrbuf(dd
, etail
);
1212 * both tiderr and ipathhdrerr are set for all plain IB
1213 * packets; only ipathhdrerr should be set.
1216 if (etype
!= RCVHQ_RCV_TYPE_NON_KD
&&
1217 etype
!= RCVHQ_RCV_TYPE_ERROR
&&
1218 ipath_hdrget_ipath_ver(hdr
->iph
.ver_port_tid_offset
) !=
1220 ipath_cdbg(PKT
, "Bad InfiniPath protocol version "
1223 if (unlikely(eflags
))
1224 ipath_rcv_hdrerr(dd
, eflags
, l
, etail
, rhf_addr
, hdr
);
1225 else if (etype
== RCVHQ_RCV_TYPE_NON_KD
) {
1226 ipath_ib_rcv(dd
->verbs_dev
, (u32
*)hdr
, ebuf
, tlen
);
1227 if (dd
->ipath_lli_counter
)
1228 dd
->ipath_lli_counter
--;
1229 } else if (etype
== RCVHQ_RCV_TYPE_EAGER
) {
1230 u8 opcode
= be32_to_cpu(hdr
->bth
[0]) >> 24;
1231 u32 qp
= be32_to_cpu(hdr
->bth
[1]) & 0xffffff;
1232 ipath_cdbg(PKT
, "typ %x, opcode %x (eager, "
1233 "qp=%x), len %x; ignored\n",
1234 etype
, opcode
, qp
, tlen
);
1236 else if (etype
== RCVHQ_RCV_TYPE_EXPECTED
)
1237 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
1238 be32_to_cpu(hdr
->bth
[0]) >> 24);
1241 * error packet, type of error unknown.
1242 * Probably type 3, but we don't know, so don't
1243 * even try to print the opcode, etc.
1244 * Usually caused by a "bad packet", that has no
1245 * BTH, when the LRH says it should.
1247 ipath_cdbg(ERRPKT
, "Error Pkt, but no eflags! egrbuf"
1248 " %x, len %x hdrq+%x rhf: %Lx\n",
1249 etail
, tlen
, l
, (unsigned long long)
1250 le64_to_cpu(*(__le64
*) rhf_addr
));
1251 if (ipath_debug
& __IPATH_ERRPKTDBG
) {
1252 u32 j
, *d
, dw
= rsize
-2;
1253 if (rsize
> (tlen
>>2))
1256 printk(KERN_DEBUG
"EPkt rcvhdr(%x dw):\n",
1258 for (j
= 0; j
< dw
; j
++)
1259 printk(KERN_DEBUG
"%8x%s", d
[j
],
1260 (j
%8) == 7 ? "\n" : " ");
1261 printk(KERN_DEBUG
".\n");
1267 rhf_addr
= (__le32
*) pd
->port_rcvhdrq
+
1268 l
+ dd
->ipath_rhf_offset
;
1269 if (dd
->ipath_flags
& IPATH_NODMA_RTAIL
) {
1270 u32 seq
= ipath_hdrget_seq(rhf_addr
);
1272 if (++pd
->port_seq_cnt
> 13)
1273 pd
->port_seq_cnt
= 1;
1274 if (seq
!= pd
->port_seq_cnt
)
1276 } else if (l
== hdrqtail
)
1279 * update head regs on last packet, and every 16 packets.
1280 * Reduce bus traffic, while still trying to prevent
1281 * rcvhdrq overflows, for when the queue is nearly full
1283 if (last
|| !(i
& 0xf)) {
1286 /* request IBA6120 and 7220 interrupt only on last */
1288 lval
|= dd
->ipath_rhdrhead_intr_off
;
1289 ipath_write_ureg(dd
, ur_rcvhdrhead
, lval
,
1292 ipath_write_ureg(dd
, ur_rcvegrindexhead
,
1293 etail
, pd
->port_port
);
1299 if (!dd
->ipath_rhdrhead_intr_off
&& !reloop
&&
1300 !(dd
->ipath_flags
& IPATH_NODMA_RTAIL
)) {
1301 /* IBA6110 workaround; we can have a race clearing chip
1302 * interrupt with another interrupt about to be delivered,
1303 * and can clear it before it is delivered on the GPIO
1304 * workaround. By doing the extra check here for the
1305 * in-memory tail register updating while we were doing
1306 * earlier packets, we "almost" guarantee we have covered
1309 u32 hqtail
= ipath_get_rcvhdrtail(pd
);
1310 if (hqtail
!= hdrqtail
) {
1312 reloop
= 1; /* loop 1 extra time at most */
1321 if (pkttot
> ipath_stats
.sps_maxpkts_call
)
1322 ipath_stats
.sps_maxpkts_call
= pkttot
;
1323 ipath_stats
.sps_port0pkts
+= pkttot
;
1324 ipath_stats
.sps_avgpkts_call
=
1325 ipath_stats
.sps_port0pkts
/ ++totcalls
;
1331 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1332 * @dd: the infinipath device
1334 * called whenever our local copy indicates we have run out of send buffers
1335 * NOTE: This can be called from interrupt context by some code
1336 * and from non-interrupt context by ipath_getpiobuf().
1339 static void ipath_update_pio_bufs(struct ipath_devdata
*dd
)
1341 unsigned long flags
;
1343 const unsigned piobregs
= (unsigned)dd
->ipath_pioavregs
;
1345 /* If the generation (check) bits have changed, then we update the
1346 * busy bit for the corresponding PIO buffer. This algorithm will
1347 * modify positions to the value they already have in some cases
1348 * (i.e., no change), but it's faster than changing only the bits
1349 * that have changed.
1351 * We would like to do this atomicly, to avoid spinlocks in the
1352 * critical send path, but that's not really possible, given the
1353 * type of changes, and that this routine could be called on
1354 * multiple cpu's simultaneously, so we lock in this routine only,
1355 * to avoid conflicting updates; all we change is the shadow, and
1356 * it's a single 64 bit memory location, so by definition the update
1357 * is atomic in terms of what other cpu's can see in testing the
1358 * bits. The spin_lock overhead isn't too bad, since it only
1359 * happens when all buffers are in use, so only cpu overhead, not
1360 * latency or bandwidth is affected.
1362 if (!dd
->ipath_pioavailregs_dma
) {
1363 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1366 if (ipath_debug
& __IPATH_VERBDBG
) {
1367 /* only if packet debug and verbose */
1368 volatile __le64
*dma
= dd
->ipath_pioavailregs_dma
;
1369 unsigned long *shadow
= dd
->ipath_pioavailshadow
;
1371 ipath_cdbg(PKT
, "Refill avail, dma0=%llx shad0=%lx, "
1372 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1374 (unsigned long long) le64_to_cpu(dma
[0]),
1376 (unsigned long long) le64_to_cpu(dma
[1]),
1378 (unsigned long long) le64_to_cpu(dma
[2]),
1380 (unsigned long long) le64_to_cpu(dma
[3]),
1384 PKT
, "2nd group, dma4=%llx shad4=%lx, "
1385 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1387 (unsigned long long) le64_to_cpu(dma
[4]),
1389 (unsigned long long) le64_to_cpu(dma
[5]),
1391 (unsigned long long) le64_to_cpu(dma
[6]),
1393 (unsigned long long) le64_to_cpu(dma
[7]),
1396 spin_lock_irqsave(&ipath_pioavail_lock
, flags
);
1397 for (i
= 0; i
< piobregs
; i
++) {
1398 u64 pchbusy
, pchg
, piov
, pnew
;
1400 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1402 if (i
> 3 && (dd
->ipath_flags
& IPATH_SWAP_PIOBUFS
))
1403 piov
= le64_to_cpu(dd
->ipath_pioavailregs_dma
[i
^ 1]);
1405 piov
= le64_to_cpu(dd
->ipath_pioavailregs_dma
[i
]);
1406 pchg
= dd
->ipath_pioavailkernel
[i
] &
1407 ~(dd
->ipath_pioavailshadow
[i
] ^ piov
);
1408 pchbusy
= pchg
<< INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT
;
1409 if (pchg
&& (pchbusy
& dd
->ipath_pioavailshadow
[i
])) {
1410 pnew
= dd
->ipath_pioavailshadow
[i
] & ~pchbusy
;
1411 pnew
|= piov
& pchbusy
;
1412 dd
->ipath_pioavailshadow
[i
] = pnew
;
1415 spin_unlock_irqrestore(&ipath_pioavail_lock
, flags
);
1419 * used to force update of pioavailshadow if we can't get a pio buffer.
1420 * Needed primarily due to exitting freeze mode after recovering
1421 * from errors. Done lazily, because it's safer (known to not
1422 * be writing pio buffers).
1424 static void ipath_reset_availshadow(struct ipath_devdata
*dd
)
1427 unsigned long flags
;
1429 spin_lock_irqsave(&ipath_pioavail_lock
, flags
);
1430 for (i
= 0; i
< dd
->ipath_pioavregs
; i
++) {
1432 /* deal with 6110 chip bug on high register #s */
1433 im
= (i
> 3 && (dd
->ipath_flags
& IPATH_SWAP_PIOBUFS
)) ?
1435 val
= le64_to_cpu(dd
->ipath_pioavailregs_dma
[im
]);
1437 * busy out the buffers not in the kernel avail list,
1438 * without changing the generation bits.
1440 oldval
= dd
->ipath_pioavailshadow
[i
];
1441 dd
->ipath_pioavailshadow
[i
] = val
|
1442 ((~dd
->ipath_pioavailkernel
[i
] <<
1443 INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT
) &
1444 0xaaaaaaaaaaaaaaaaULL
); /* All BUSY bits in qword */
1445 if (oldval
!= dd
->ipath_pioavailshadow
[i
])
1446 ipath_dbg("shadow[%d] was %Lx, now %lx\n",
1447 i
, (unsigned long long) oldval
,
1448 dd
->ipath_pioavailshadow
[i
]);
1450 spin_unlock_irqrestore(&ipath_pioavail_lock
, flags
);
1454 * ipath_setrcvhdrsize - set the receive header size
1455 * @dd: the infinipath device
1456 * @rhdrsize: the receive header size
1458 * called from user init code, and also layered driver init
1460 int ipath_setrcvhdrsize(struct ipath_devdata
*dd
, unsigned rhdrsize
)
1464 if (dd
->ipath_flags
& IPATH_RCVHDRSZ_SET
) {
1465 if (dd
->ipath_rcvhdrsize
!= rhdrsize
) {
1466 dev_info(&dd
->pcidev
->dev
,
1467 "Error: can't set protocol header "
1468 "size %u, already %u\n",
1469 rhdrsize
, dd
->ipath_rcvhdrsize
);
1472 ipath_cdbg(VERBOSE
, "Reuse same protocol header "
1473 "size %u\n", dd
->ipath_rcvhdrsize
);
1474 } else if (rhdrsize
> (dd
->ipath_rcvhdrentsize
-
1475 (sizeof(u64
) / sizeof(u32
)))) {
1476 ipath_dbg("Error: can't set protocol header size %u "
1477 "(> max %u)\n", rhdrsize
,
1478 dd
->ipath_rcvhdrentsize
-
1479 (u32
) (sizeof(u64
) / sizeof(u32
)));
1482 dd
->ipath_flags
|= IPATH_RCVHDRSZ_SET
;
1483 dd
->ipath_rcvhdrsize
= rhdrsize
;
1484 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvhdrsize
,
1485 dd
->ipath_rcvhdrsize
);
1486 ipath_cdbg(VERBOSE
, "Set protocol header size to %u\n",
1487 dd
->ipath_rcvhdrsize
);
1493 * debugging code and stats updates if no pio buffers available.
1495 static noinline
void no_pio_bufs(struct ipath_devdata
*dd
)
1497 unsigned long *shadow
= dd
->ipath_pioavailshadow
;
1498 __le64
*dma
= (__le64
*)dd
->ipath_pioavailregs_dma
;
1500 dd
->ipath_upd_pio_shadow
= 1;
1503 * not atomic, but if we lose a stat count in a while, that's OK
1505 ipath_stats
.sps_nopiobufs
++;
1506 if (!(++dd
->ipath_consec_nopiobuf
% 100000)) {
1507 ipath_force_pio_avail_update(dd
); /* at start */
1508 ipath_dbg("%u tries no piobufavail ts%lx; dmacopy: "
1509 "%llx %llx %llx %llx\n"
1510 "ipath shadow: %lx %lx %lx %lx\n",
1511 dd
->ipath_consec_nopiobuf
,
1512 (unsigned long)get_cycles(),
1513 (unsigned long long) le64_to_cpu(dma
[0]),
1514 (unsigned long long) le64_to_cpu(dma
[1]),
1515 (unsigned long long) le64_to_cpu(dma
[2]),
1516 (unsigned long long) le64_to_cpu(dma
[3]),
1517 shadow
[0], shadow
[1], shadow
[2], shadow
[3]);
1519 * 4 buffers per byte, 4 registers above, cover rest
1522 if ((dd
->ipath_piobcnt2k
+ dd
->ipath_piobcnt4k
) >
1523 (sizeof(shadow
[0]) * 4 * 4))
1524 ipath_dbg("2nd group: dmacopy: "
1525 "%llx %llx %llx %llx\n"
1526 "ipath shadow: %lx %lx %lx %lx\n",
1527 (unsigned long long)le64_to_cpu(dma
[4]),
1528 (unsigned long long)le64_to_cpu(dma
[5]),
1529 (unsigned long long)le64_to_cpu(dma
[6]),
1530 (unsigned long long)le64_to_cpu(dma
[7]),
1531 shadow
[4], shadow
[5], shadow
[6], shadow
[7]);
1533 /* at end, so update likely happened */
1534 ipath_reset_availshadow(dd
);
1539 * common code for normal driver pio buffer allocation, and reserved
1542 * do appropriate marking as busy, etc.
1543 * returns buffer number if one found (>=0), negative number is error.
1545 static u32 __iomem
*ipath_getpiobuf_range(struct ipath_devdata
*dd
,
1546 u32
*pbufnum
, u32 first
, u32 last
, u32 firsti
)
1548 int i
, j
, updated
= 0;
1550 unsigned long flags
;
1551 unsigned long *shadow
= dd
->ipath_pioavailshadow
;
1554 piobcnt
= last
- first
;
1555 if (dd
->ipath_upd_pio_shadow
) {
1557 * Minor optimization. If we had no buffers on last call,
1558 * start out by doing the update; continue and do scan even
1559 * if no buffers were updated, to be paranoid
1561 ipath_update_pio_bufs(dd
);
1568 * while test_and_set_bit() is atomic, we do that and then the
1569 * change_bit(), and the pair is not. See if this is the cause
1570 * of the remaining armlaunch errors.
1572 spin_lock_irqsave(&ipath_pioavail_lock
, flags
);
1573 for (j
= 0; j
< piobcnt
; j
++, i
++) {
1576 if (__test_and_set_bit((2 * i
) + 1, shadow
))
1578 /* flip generation bit */
1579 __change_bit(2 * i
, shadow
);
1582 spin_unlock_irqrestore(&ipath_pioavail_lock
, flags
);
1587 * first time through; shadow exhausted, but may be
1588 * buffers available, try an update and then rescan.
1590 ipath_update_pio_bufs(dd
);
1594 } else if (updated
== 1 && piobcnt
<=
1595 ((dd
->ipath_sendctrl
1596 >> INFINIPATH_S_UPDTHRESH_SHIFT
) &
1597 INFINIPATH_S_UPDTHRESH_MASK
)) {
1599 * for chips supporting and using the update
1600 * threshold we need to force an update of the
1601 * in-memory copy if the count is less than the
1602 * thershold, then check one more time.
1604 ipath_force_pio_avail_update(dd
);
1605 ipath_update_pio_bufs(dd
);
1614 if (i
< dd
->ipath_piobcnt2k
)
1615 buf
= (u32 __iomem
*) (dd
->ipath_pio2kbase
+
1616 i
* dd
->ipath_palign
);
1618 buf
= (u32 __iomem
*)
1619 (dd
->ipath_pio4kbase
+
1620 (i
- dd
->ipath_piobcnt2k
) * dd
->ipath_4kalign
);
1629 * ipath_getpiobuf - find an available pio buffer
1630 * @dd: the infinipath device
1631 * @plen: the size of the PIO buffer needed in 32-bit words
1632 * @pbufnum: the buffer number is placed here
1634 u32 __iomem
*ipath_getpiobuf(struct ipath_devdata
*dd
, u32 plen
, u32
*pbufnum
)
1640 if (plen
+ 1 >= IPATH_SMALLBUF_DWORDS
) {
1641 first
= dd
->ipath_piobcnt2k
;
1642 lasti
= dd
->ipath_lastpioindexl
;
1645 lasti
= dd
->ipath_lastpioindex
;
1647 nbufs
= dd
->ipath_piobcnt2k
+ dd
->ipath_piobcnt4k
;
1648 buf
= ipath_getpiobuf_range(dd
, &pnum
, first
, nbufs
, lasti
);
1652 * Set next starting place. It's just an optimization,
1653 * it doesn't matter who wins on this, so no locking
1655 if (plen
+ 1 >= IPATH_SMALLBUF_DWORDS
)
1656 dd
->ipath_lastpioindexl
= pnum
+ 1;
1658 dd
->ipath_lastpioindex
= pnum
+ 1;
1659 if (dd
->ipath_upd_pio_shadow
)
1660 dd
->ipath_upd_pio_shadow
= 0;
1661 if (dd
->ipath_consec_nopiobuf
)
1662 dd
->ipath_consec_nopiobuf
= 0;
1663 ipath_cdbg(VERBOSE
, "Return piobuf%u %uk @ %p\n",
1664 pnum
, (pnum
< dd
->ipath_piobcnt2k
) ? 2 : 4, buf
);
1673 * ipath_chg_pioavailkernel - change which send buffers are available for kernel
1674 * @dd: the infinipath device
1675 * @start: the starting send buffer number
1676 * @len: the number of send buffers
1677 * @avail: true if the buffers are available for kernel use, false otherwise
1679 void ipath_chg_pioavailkernel(struct ipath_devdata
*dd
, unsigned start
,
1680 unsigned len
, int avail
)
1682 unsigned long flags
;
1683 unsigned end
, cnt
= 0;
1685 /* There are two bits per send buffer (busy and generation) */
1687 end
= start
+ len
* 2;
1689 spin_lock_irqsave(&ipath_pioavail_lock
, flags
);
1690 /* Set or clear the busy bit in the shadow. */
1691 while (start
< end
) {
1696 * the BUSY bit will never be set, because we disarm
1697 * the user buffers before we hand them back to the
1698 * kernel. We do have to make sure the generation
1699 * bit is set correctly in shadow, since it could
1700 * have changed many times while allocated to user.
1701 * We can't use the bitmap functions on the full
1702 * dma array because it is always little-endian, so
1703 * we have to flip to host-order first.
1704 * BITS_PER_LONG is slightly wrong, since it's
1705 * always 64 bits per register in chip...
1706 * We only work on 64 bit kernels, so that's OK.
1708 /* deal with 6110 chip bug on high register #s */
1709 i
= start
/ BITS_PER_LONG
;
1710 im
= (i
> 3 && (dd
->ipath_flags
& IPATH_SWAP_PIOBUFS
)) ?
1712 __clear_bit(INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT
1713 + start
, dd
->ipath_pioavailshadow
);
1714 dma
= (unsigned long) le64_to_cpu(
1715 dd
->ipath_pioavailregs_dma
[im
]);
1716 if (test_bit((INFINIPATH_SENDPIOAVAIL_CHECK_SHIFT
1717 + start
) % BITS_PER_LONG
, &dma
))
1718 __set_bit(INFINIPATH_SENDPIOAVAIL_CHECK_SHIFT
1719 + start
, dd
->ipath_pioavailshadow
);
1721 __clear_bit(INFINIPATH_SENDPIOAVAIL_CHECK_SHIFT
1722 + start
, dd
->ipath_pioavailshadow
);
1723 __set_bit(start
, dd
->ipath_pioavailkernel
);
1725 __set_bit(start
+ INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT
,
1726 dd
->ipath_pioavailshadow
);
1727 __clear_bit(start
, dd
->ipath_pioavailkernel
);
1732 if (dd
->ipath_pioupd_thresh
) {
1733 end
= 2 * (dd
->ipath_piobcnt2k
+ dd
->ipath_piobcnt4k
);
1734 cnt
= bitmap_weight(dd
->ipath_pioavailkernel
, end
);
1736 spin_unlock_irqrestore(&ipath_pioavail_lock
, flags
);
1739 * When moving buffers from kernel to user, if number assigned to
1740 * the user is less than the pio update threshold, and threshold
1741 * is supported (cnt was computed > 0), drop the update threshold
1742 * so we update at least once per allocated number of buffers.
1743 * In any case, if the kernel buffers are less than the threshold,
1744 * drop the threshold. We don't bother increasing it, having once
1745 * decreased it, since it would typically just cycle back and forth.
1746 * If we don't decrease below buffers in use, we can wait a long
1747 * time for an update, until some other context uses PIO buffers.
1749 if (!avail
&& len
< cnt
)
1751 if (cnt
< dd
->ipath_pioupd_thresh
) {
1752 dd
->ipath_pioupd_thresh
= cnt
;
1753 ipath_dbg("Decreased pio update threshold to %u\n",
1754 dd
->ipath_pioupd_thresh
);
1755 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
1756 dd
->ipath_sendctrl
&= ~(INFINIPATH_S_UPDTHRESH_MASK
1757 << INFINIPATH_S_UPDTHRESH_SHIFT
);
1758 dd
->ipath_sendctrl
|= dd
->ipath_pioupd_thresh
1759 << INFINIPATH_S_UPDTHRESH_SHIFT
;
1760 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
1761 dd
->ipath_sendctrl
);
1762 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
1767 * ipath_create_rcvhdrq - create a receive header queue
1768 * @dd: the infinipath device
1769 * @pd: the port data
1771 * this must be contiguous memory (from an i/o perspective), and must be
1772 * DMA'able (which means for some systems, it will go through an IOMMU,
1773 * or be forced into a low address range).
1775 int ipath_create_rcvhdrq(struct ipath_devdata
*dd
,
1776 struct ipath_portdata
*pd
)
1780 if (!pd
->port_rcvhdrq
) {
1781 dma_addr_t phys_hdrqtail
;
1782 gfp_t gfp_flags
= GFP_USER
| __GFP_COMP
;
1783 int amt
= ALIGN(dd
->ipath_rcvhdrcnt
* dd
->ipath_rcvhdrentsize
*
1784 sizeof(u32
), PAGE_SIZE
);
1786 pd
->port_rcvhdrq
= dma_alloc_coherent(
1787 &dd
->pcidev
->dev
, amt
, &pd
->port_rcvhdrq_phys
,
1790 if (!pd
->port_rcvhdrq
) {
1791 ipath_dev_err(dd
, "attempt to allocate %d bytes "
1792 "for port %u rcvhdrq failed\n",
1793 amt
, pd
->port_port
);
1798 if (!(dd
->ipath_flags
& IPATH_NODMA_RTAIL
)) {
1799 pd
->port_rcvhdrtail_kvaddr
= dma_alloc_coherent(
1800 &dd
->pcidev
->dev
, PAGE_SIZE
, &phys_hdrqtail
,
1802 if (!pd
->port_rcvhdrtail_kvaddr
) {
1803 ipath_dev_err(dd
, "attempt to allocate 1 page "
1804 "for port %u rcvhdrqtailaddr "
1805 "failed\n", pd
->port_port
);
1807 dma_free_coherent(&dd
->pcidev
->dev
, amt
,
1809 pd
->port_rcvhdrq_phys
);
1810 pd
->port_rcvhdrq
= NULL
;
1813 pd
->port_rcvhdrqtailaddr_phys
= phys_hdrqtail
;
1814 ipath_cdbg(VERBOSE
, "port %d hdrtailaddr, %llx "
1815 "physical\n", pd
->port_port
,
1816 (unsigned long long) phys_hdrqtail
);
1819 pd
->port_rcvhdrq_size
= amt
;
1821 ipath_cdbg(VERBOSE
, "%d pages at %p (phys %lx) size=%lu "
1822 "for port %u rcvhdr Q\n",
1823 amt
>> PAGE_SHIFT
, pd
->port_rcvhdrq
,
1824 (unsigned long) pd
->port_rcvhdrq_phys
,
1825 (unsigned long) pd
->port_rcvhdrq_size
,
1829 ipath_cdbg(VERBOSE
, "reuse port %d rcvhdrq @%p %llx phys; "
1830 "hdrtailaddr@%p %llx physical\n",
1831 pd
->port_port
, pd
->port_rcvhdrq
,
1832 (unsigned long long) pd
->port_rcvhdrq_phys
,
1833 pd
->port_rcvhdrtail_kvaddr
, (unsigned long long)
1834 pd
->port_rcvhdrqtailaddr_phys
);
1836 /* clear for security and sanity on each use */
1837 memset(pd
->port_rcvhdrq
, 0, pd
->port_rcvhdrq_size
);
1838 if (pd
->port_rcvhdrtail_kvaddr
)
1839 memset(pd
->port_rcvhdrtail_kvaddr
, 0, PAGE_SIZE
);
1842 * tell chip each time we init it, even if we are re-using previous
1843 * memory (we zero the register at process close)
1845 ipath_write_kreg_port(dd
, dd
->ipath_kregs
->kr_rcvhdrtailaddr
,
1846 pd
->port_port
, pd
->port_rcvhdrqtailaddr_phys
);
1847 ipath_write_kreg_port(dd
, dd
->ipath_kregs
->kr_rcvhdraddr
,
1848 pd
->port_port
, pd
->port_rcvhdrq_phys
);
1856 * Flush all sends that might be in the ready to send state, as well as any
1857 * that are in the process of being sent. Used whenever we need to be
1858 * sure the send side is idle. Cleans up all buffer state by canceling
1859 * all pio buffers, and issuing an abort, which cleans up anything in the
1860 * launch fifo. The cancel is superfluous on some chip versions, but
1861 * it's safer to always do it.
1862 * PIOAvail bits are updated by the chip as if normal send had happened.
1864 void ipath_cancel_sends(struct ipath_devdata
*dd
, int restore_sendctrl
)
1866 unsigned long flags
;
1868 if (dd
->ipath_flags
& IPATH_IB_AUTONEG_INPROG
) {
1869 ipath_cdbg(VERBOSE
, "Ignore while in autonegotiation\n");
1873 * If we have SDMA, and it's not disabled, we have to kick off the
1874 * abort state machine, provided we aren't already aborting.
1875 * If we are in the process of aborting SDMA (!DISABLED, but ABORTING),
1876 * we skip the rest of this routine. It is already "in progress"
1878 if (dd
->ipath_flags
& IPATH_HAS_SEND_DMA
) {
1880 unsigned long *statp
= &dd
->ipath_sdma_status
;
1882 spin_lock_irqsave(&dd
->ipath_sdma_lock
, flags
);
1884 test_and_set_bit(IPATH_SDMA_ABORTING
, statp
)
1885 && !test_bit(IPATH_SDMA_DISABLED
, statp
);
1886 spin_unlock_irqrestore(&dd
->ipath_sdma_lock
, flags
);
1891 ipath_dbg("Cancelling all in-progress send buffers\n");
1893 /* skip armlaunch errs for a while */
1894 dd
->ipath_lastcancel
= jiffies
+ HZ
/ 2;
1897 * The abort bit is auto-clearing. We also don't want pioavail
1898 * update happening during this, and we don't want any other
1899 * sends going out, so turn those off for the duration. We read
1900 * the scratch register to be sure that cancels and the abort
1901 * have taken effect in the chip. Otherwise two parts are same
1902 * as ipath_force_pio_avail_update()
1904 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
1905 dd
->ipath_sendctrl
&= ~(INFINIPATH_S_PIOBUFAVAILUPD
1906 | INFINIPATH_S_PIOENABLE
);
1907 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
1908 dd
->ipath_sendctrl
| INFINIPATH_S_ABORT
);
1909 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
1910 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
1912 /* disarm all send buffers */
1913 ipath_disarm_piobufs(dd
, 0,
1914 dd
->ipath_piobcnt2k
+ dd
->ipath_piobcnt4k
);
1916 if (dd
->ipath_flags
& IPATH_HAS_SEND_DMA
)
1917 set_bit(IPATH_SDMA_DISARMED
, &dd
->ipath_sdma_status
);
1919 if (restore_sendctrl
) {
1920 /* else done by caller later if needed */
1921 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
1922 dd
->ipath_sendctrl
|= INFINIPATH_S_PIOBUFAVAILUPD
|
1923 INFINIPATH_S_PIOENABLE
;
1924 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
1925 dd
->ipath_sendctrl
);
1926 /* and again, be sure all have hit the chip */
1927 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
1928 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
1931 if ((dd
->ipath_flags
& IPATH_HAS_SEND_DMA
) &&
1932 !test_bit(IPATH_SDMA_DISABLED
, &dd
->ipath_sdma_status
) &&
1933 test_bit(IPATH_SDMA_RUNNING
, &dd
->ipath_sdma_status
)) {
1934 spin_lock_irqsave(&dd
->ipath_sdma_lock
, flags
);
1935 /* only wait so long for intr */
1936 dd
->ipath_sdma_abort_intr_timeout
= jiffies
+ HZ
;
1937 dd
->ipath_sdma_reset_wait
= 200;
1938 if (!test_bit(IPATH_SDMA_SHUTDOWN
, &dd
->ipath_sdma_status
))
1939 tasklet_hi_schedule(&dd
->ipath_sdma_abort_task
);
1940 spin_unlock_irqrestore(&dd
->ipath_sdma_lock
, flags
);
1946 * Force an update of in-memory copy of the pioavail registers, when
1947 * needed for any of a variety of reasons. We read the scratch register
1948 * to make it highly likely that the update will have happened by the
1949 * time we return. If already off (as in cancel_sends above), this
1950 * routine is a nop, on the assumption that the caller will "do the
1953 void ipath_force_pio_avail_update(struct ipath_devdata
*dd
)
1955 unsigned long flags
;
1957 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
1958 if (dd
->ipath_sendctrl
& INFINIPATH_S_PIOBUFAVAILUPD
) {
1959 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
1960 dd
->ipath_sendctrl
& ~INFINIPATH_S_PIOBUFAVAILUPD
);
1961 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
1962 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
1963 dd
->ipath_sendctrl
);
1964 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
1966 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
1969 static void ipath_set_ib_lstate(struct ipath_devdata
*dd
, int linkcmd
,
1973 static const char *what
[4] = {
1975 [INFINIPATH_IBCC_LINKCMD_DOWN
] = "DOWN",
1976 [INFINIPATH_IBCC_LINKCMD_ARMED
] = "ARMED",
1977 [INFINIPATH_IBCC_LINKCMD_ACTIVE
] = "ACTIVE"
1980 if (linitcmd
== INFINIPATH_IBCC_LINKINITCMD_DISABLE
) {
1982 * If we are told to disable, note that so link-recovery
1983 * code does not attempt to bring us back up.
1986 dd
->ipath_flags
|= IPATH_IB_LINK_DISABLED
;
1988 } else if (linitcmd
) {
1990 * Any other linkinitcmd will lead to LINKDOWN and then
1991 * to INIT (if all is well), so clear flag to let
1992 * link-recovery code attempt to bring us back up.
1995 dd
->ipath_flags
&= ~IPATH_IB_LINK_DISABLED
;
1999 mod_wd
= (linkcmd
<< dd
->ibcc_lc_shift
) |
2000 (linitcmd
<< INFINIPATH_IBCC_LINKINITCMD_SHIFT
);
2002 "Moving unit %u to %s (initcmd=0x%x), current ltstate is %s\n",
2003 dd
->ipath_unit
, what
[linkcmd
], linitcmd
,
2004 ipath_ibcstatus_str
[ipath_ib_linktrstate(dd
,
2005 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_ibcstatus
))]);
2007 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
2008 dd
->ipath_ibcctrl
| mod_wd
);
2009 /* read from chip so write is flushed */
2010 (void) ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_ibcstatus
);
2013 int ipath_set_linkstate(struct ipath_devdata
*dd
, u8 newstate
)
2019 case IPATH_IB_LINKDOWN_ONLY
:
2020 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_DOWN
, 0);
2025 case IPATH_IB_LINKDOWN
:
2026 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_DOWN
,
2027 INFINIPATH_IBCC_LINKINITCMD_POLL
);
2032 case IPATH_IB_LINKDOWN_SLEEP
:
2033 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_DOWN
,
2034 INFINIPATH_IBCC_LINKINITCMD_SLEEP
);
2039 case IPATH_IB_LINKDOWN_DISABLE
:
2040 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_DOWN
,
2041 INFINIPATH_IBCC_LINKINITCMD_DISABLE
);
2046 case IPATH_IB_LINKARM
:
2047 if (dd
->ipath_flags
& IPATH_LINKARMED
) {
2051 if (!(dd
->ipath_flags
&
2052 (IPATH_LINKINIT
| IPATH_LINKACTIVE
))) {
2056 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_ARMED
, 0);
2059 * Since the port can transition to ACTIVE by receiving
2060 * a non VL 15 packet, wait for either state.
2062 lstate
= IPATH_LINKARMED
| IPATH_LINKACTIVE
;
2065 case IPATH_IB_LINKACTIVE
:
2066 if (dd
->ipath_flags
& IPATH_LINKACTIVE
) {
2070 if (!(dd
->ipath_flags
& IPATH_LINKARMED
)) {
2074 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_ACTIVE
, 0);
2075 lstate
= IPATH_LINKACTIVE
;
2078 case IPATH_IB_LINK_LOOPBACK
:
2079 dev_info(&dd
->pcidev
->dev
, "Enabling IB local loopback\n");
2080 dd
->ipath_ibcctrl
|= INFINIPATH_IBCC_LOOPBACK
;
2081 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
2084 /* turn heartbeat off, as it causes loopback to fail */
2085 dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_HRTBT
,
2086 IPATH_IB_HRTBT_OFF
);
2091 case IPATH_IB_LINK_EXTERNAL
:
2092 dev_info(&dd
->pcidev
->dev
,
2093 "Disabling IB local loopback (normal)\n");
2094 dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_HRTBT
,
2096 dd
->ipath_ibcctrl
&= ~INFINIPATH_IBCC_LOOPBACK
;
2097 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
2104 * Heartbeat can be explicitly enabled by the user via
2105 * "hrtbt_enable" "file", and if disabled, trying to enable here
2106 * will have no effect. Implicit changes (heartbeat off when
2107 * loopback on, and vice versa) are included to ease testing.
2109 case IPATH_IB_LINK_HRTBT
:
2110 ret
= dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_HRTBT
,
2114 case IPATH_IB_LINK_NO_HRTBT
:
2115 ret
= dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_HRTBT
,
2116 IPATH_IB_HRTBT_OFF
);
2120 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate
);
2124 ret
= ipath_wait_linkstate(dd
, lstate
, 2000);
2131 * ipath_set_mtu - set the MTU
2132 * @dd: the infinipath device
2135 * we can handle "any" incoming size, the issue here is whether we
2136 * need to restrict our outgoing size. For now, we don't do any
2137 * sanity checking on this, and we don't deal with what happens to
2138 * programs that are already running when the size changes.
2139 * NOTE: changing the MTU will usually cause the IBC to go back to
2140 * link INIT state...
2142 int ipath_set_mtu(struct ipath_devdata
*dd
, u16 arg
)
2149 * mtu is IB data payload max. It's the largest power of 2 less
2150 * than piosize (or even larger, since it only really controls the
2151 * largest we can receive; we can send the max of the mtu and
2152 * piosize). We check that it's one of the valid IB sizes.
2154 if (arg
!= 256 && arg
!= 512 && arg
!= 1024 && arg
!= 2048 &&
2155 (arg
!= 4096 || !ipath_mtu4096
)) {
2156 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg
);
2160 if (dd
->ipath_ibmtu
== arg
) {
2161 ret
= 0; /* same as current */
2165 piosize
= dd
->ipath_ibmaxlen
;
2166 dd
->ipath_ibmtu
= arg
;
2168 if (arg
>= (piosize
- IPATH_PIO_MAXIBHDR
)) {
2169 /* Only if it's not the initial value (or reset to it) */
2170 if (piosize
!= dd
->ipath_init_ibmaxlen
) {
2171 if (arg
> piosize
&& arg
<= dd
->ipath_init_ibmaxlen
)
2172 piosize
= dd
->ipath_init_ibmaxlen
;
2173 dd
->ipath_ibmaxlen
= piosize
;
2176 } else if ((arg
+ IPATH_PIO_MAXIBHDR
) != dd
->ipath_ibmaxlen
) {
2177 piosize
= arg
+ IPATH_PIO_MAXIBHDR
;
2178 ipath_cdbg(VERBOSE
, "ibmaxlen was 0x%x, setting to 0x%x "
2179 "(mtu 0x%x)\n", dd
->ipath_ibmaxlen
, piosize
,
2181 dd
->ipath_ibmaxlen
= piosize
;
2186 u64 ibc
= dd
->ipath_ibcctrl
, ibdw
;
2188 * update our housekeeping variables, and set IBC max
2189 * size, same as init code; max IBC is max we allow in
2190 * buffer, less the qword pbc, plus 1 for ICRC, in dwords
2192 dd
->ipath_ibmaxlen
= piosize
- 2 * sizeof(u32
);
2193 ibdw
= (dd
->ipath_ibmaxlen
>> 2) + 1;
2194 ibc
&= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK
<<
2195 dd
->ibcc_mpl_shift
);
2196 ibc
|= ibdw
<< dd
->ibcc_mpl_shift
;
2197 dd
->ipath_ibcctrl
= ibc
;
2198 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
2200 dd
->ipath_f_tidtemplate(dd
);
2209 int ipath_set_lid(struct ipath_devdata
*dd
, u32 lid
, u8 lmc
)
2211 dd
->ipath_lid
= lid
;
2212 dd
->ipath_lmc
= lmc
;
2214 dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_LIDLMC
, lid
|
2215 (~((1U << lmc
) - 1)) << 16);
2217 dev_info(&dd
->pcidev
->dev
, "We got a lid: 0x%x\n", lid
);
2224 * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
2225 * @dd: the infinipath device
2226 * @regno: the register number to write
2227 * @port: the port containing the register
2228 * @value: the value to write
2230 * Registers that vary with the chip implementation constants (port)
2233 void ipath_write_kreg_port(const struct ipath_devdata
*dd
, ipath_kreg regno
,
2234 unsigned port
, u64 value
)
2238 if (port
< dd
->ipath_portcnt
&&
2239 (regno
== dd
->ipath_kregs
->kr_rcvhdraddr
||
2240 regno
== dd
->ipath_kregs
->kr_rcvhdrtailaddr
))
2241 where
= regno
+ port
;
2245 ipath_write_kreg(dd
, where
, value
);
2249 * Following deal with the "obviously simple" task of overriding the state
2250 * of the LEDS, which normally indicate link physical and logical status.
2251 * The complications arise in dealing with different hardware mappings
2252 * and the board-dependent routine being called from interrupts.
2253 * and then there's the requirement to _flash_ them.
2255 #define LED_OVER_FREQ_SHIFT 8
2256 #define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
2257 /* Below is "non-zero" to force override, but both actual LEDs are off */
2258 #define LED_OVER_BOTH_OFF (8)
2260 static void ipath_run_led_override(unsigned long opaque
)
2262 struct ipath_devdata
*dd
= (struct ipath_devdata
*)opaque
;
2265 u64 lstate
, ltstate
, val
;
2267 if (!(dd
->ipath_flags
& IPATH_INITTED
))
2270 pidx
= dd
->ipath_led_override_phase
++ & 1;
2271 dd
->ipath_led_override
= dd
->ipath_led_override_vals
[pidx
];
2272 timeoff
= dd
->ipath_led_override_timeoff
;
2275 * below potentially restores the LED values per current status,
2276 * should also possibly setup the traffic-blink register,
2277 * but leave that to per-chip functions.
2279 val
= ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_ibcstatus
);
2280 ltstate
= ipath_ib_linktrstate(dd
, val
);
2281 lstate
= ipath_ib_linkstate(dd
, val
);
2283 dd
->ipath_f_setextled(dd
, lstate
, ltstate
);
2284 mod_timer(&dd
->ipath_led_override_timer
, jiffies
+ timeoff
);
2287 void ipath_set_led_override(struct ipath_devdata
*dd
, unsigned int val
)
2291 if (!(dd
->ipath_flags
& IPATH_INITTED
))
2294 /* First check if we are blinking. If not, use 1HZ polling */
2296 freq
= (val
& LED_OVER_FREQ_MASK
) >> LED_OVER_FREQ_SHIFT
;
2299 /* For blink, set each phase from one nybble of val */
2300 dd
->ipath_led_override_vals
[0] = val
& 0xF;
2301 dd
->ipath_led_override_vals
[1] = (val
>> 4) & 0xF;
2302 timeoff
= (HZ
<< 4)/freq
;
2304 /* Non-blink set both phases the same. */
2305 dd
->ipath_led_override_vals
[0] = val
& 0xF;
2306 dd
->ipath_led_override_vals
[1] = val
& 0xF;
2308 dd
->ipath_led_override_timeoff
= timeoff
;
2311 * If the timer has not already been started, do so. Use a "quick"
2312 * timeout so the function will be called soon, to look at our request.
2314 if (atomic_inc_return(&dd
->ipath_led_override_timer_active
) == 1) {
2315 /* Need to start timer */
2316 init_timer(&dd
->ipath_led_override_timer
);
2317 dd
->ipath_led_override_timer
.function
=
2318 ipath_run_led_override
;
2319 dd
->ipath_led_override_timer
.data
= (unsigned long) dd
;
2320 dd
->ipath_led_override_timer
.expires
= jiffies
+ 1;
2321 add_timer(&dd
->ipath_led_override_timer
);
2323 atomic_dec(&dd
->ipath_led_override_timer_active
);
2327 * ipath_shutdown_device - shut down a device
2328 * @dd: the infinipath device
2330 * This is called to make the device quiet when we are about to
2331 * unload the driver, and also when the device is administratively
2332 * disabled. It does not free any data structures.
2333 * Everything it does has to be setup again by ipath_init_chip(dd,1)
2335 void ipath_shutdown_device(struct ipath_devdata
*dd
)
2337 unsigned long flags
;
2339 ipath_dbg("Shutting down the device\n");
2341 ipath_hol_up(dd
); /* make sure user processes aren't suspended */
2343 dd
->ipath_flags
|= IPATH_LINKUNK
;
2344 dd
->ipath_flags
&= ~(IPATH_INITTED
| IPATH_LINKDOWN
|
2345 IPATH_LINKINIT
| IPATH_LINKARMED
|
2347 *dd
->ipath_statusp
&= ~(IPATH_STATUS_IB_CONF
|
2348 IPATH_STATUS_IB_READY
);
2350 /* mask interrupts, but not errors */
2351 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_intmask
, 0ULL);
2353 dd
->ipath_rcvctrl
= 0;
2354 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvctrl
,
2357 if (dd
->ipath_flags
& IPATH_HAS_SEND_DMA
)
2361 * gracefully stop all sends allowing any in progress to trickle out
2364 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
2365 dd
->ipath_sendctrl
= 0;
2366 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
, dd
->ipath_sendctrl
);
2368 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
2369 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
2372 * enough for anything that's going to trickle out to have actually
2377 dd
->ipath_f_setextled(dd
, 0, 0); /* make sure LEDs are off */
2379 ipath_set_ib_lstate(dd
, 0, INFINIPATH_IBCC_LINKINITCMD_DISABLE
);
2380 ipath_cancel_sends(dd
, 0);
2383 * we are shutting down, so tell components that care. We don't do
2384 * this on just a link state change, much like ethernet, a cable
2385 * unplug, etc. doesn't change driver state
2387 signal_ib_event(dd
, IB_EVENT_PORT_ERR
);
2390 dd
->ipath_control
&= ~INFINIPATH_C_LINKENABLE
;
2391 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_control
,
2392 dd
->ipath_control
| INFINIPATH_C_FREEZEMODE
);
2395 * clear SerdesEnable and turn the leds off; do this here because
2396 * we are unloading, so don't count on interrupts to move along
2397 * Turn the LEDs off explictly for the same reason.
2399 dd
->ipath_f_quiet_serdes(dd
);
2401 /* stop all the timers that might still be running */
2402 del_timer_sync(&dd
->ipath_hol_timer
);
2403 if (dd
->ipath_stats_timer_active
) {
2404 del_timer_sync(&dd
->ipath_stats_timer
);
2405 dd
->ipath_stats_timer_active
= 0;
2407 if (dd
->ipath_intrchk_timer
.data
) {
2408 del_timer_sync(&dd
->ipath_intrchk_timer
);
2409 dd
->ipath_intrchk_timer
.data
= 0;
2411 if (atomic_read(&dd
->ipath_led_override_timer_active
)) {
2412 del_timer_sync(&dd
->ipath_led_override_timer
);
2413 atomic_set(&dd
->ipath_led_override_timer_active
, 0);
2417 * clear all interrupts and errors, so that the next time the driver
2418 * is loaded or device is enabled, we know that whatever is set
2419 * happened while we were unloaded
2421 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_hwerrclear
,
2422 ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED
);
2423 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errorclear
, -1LL);
2424 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_intclear
, -1LL);
2426 ipath_cdbg(VERBOSE
, "Flush time and errors to EEPROM\n");
2427 ipath_update_eeprom_log(dd
);
2431 * ipath_free_pddata - free a port's allocated data
2432 * @dd: the infinipath device
2433 * @pd: the portdata structure
2435 * free up any allocated data for a port
2436 * This should not touch anything that would affect a simultaneous
2437 * re-allocation of port data, because it is called after ipath_mutex
2438 * is released (and can be called from reinit as well).
2439 * It should never change any chip state, or global driver state.
2440 * (The only exception to global state is freeing the port0 port0_skbs.)
2442 void ipath_free_pddata(struct ipath_devdata
*dd
, struct ipath_portdata
*pd
)
2447 if (pd
->port_rcvhdrq
) {
2448 ipath_cdbg(VERBOSE
, "free closed port %d rcvhdrq @ %p "
2449 "(size=%lu)\n", pd
->port_port
, pd
->port_rcvhdrq
,
2450 (unsigned long) pd
->port_rcvhdrq_size
);
2451 dma_free_coherent(&dd
->pcidev
->dev
, pd
->port_rcvhdrq_size
,
2452 pd
->port_rcvhdrq
, pd
->port_rcvhdrq_phys
);
2453 pd
->port_rcvhdrq
= NULL
;
2454 if (pd
->port_rcvhdrtail_kvaddr
) {
2455 dma_free_coherent(&dd
->pcidev
->dev
, PAGE_SIZE
,
2456 pd
->port_rcvhdrtail_kvaddr
,
2457 pd
->port_rcvhdrqtailaddr_phys
);
2458 pd
->port_rcvhdrtail_kvaddr
= NULL
;
2461 if (pd
->port_port
&& pd
->port_rcvegrbuf
) {
2464 for (e
= 0; e
< pd
->port_rcvegrbuf_chunks
; e
++) {
2465 void *base
= pd
->port_rcvegrbuf
[e
];
2466 size_t size
= pd
->port_rcvegrbuf_size
;
2468 ipath_cdbg(VERBOSE
, "egrbuf free(%p, %lu), "
2469 "chunk %u/%u\n", base
,
2470 (unsigned long) size
,
2471 e
, pd
->port_rcvegrbuf_chunks
);
2472 dma_free_coherent(&dd
->pcidev
->dev
, size
,
2473 base
, pd
->port_rcvegrbuf_phys
[e
]);
2475 kfree(pd
->port_rcvegrbuf
);
2476 pd
->port_rcvegrbuf
= NULL
;
2477 kfree(pd
->port_rcvegrbuf_phys
);
2478 pd
->port_rcvegrbuf_phys
= NULL
;
2479 pd
->port_rcvegrbuf_chunks
= 0;
2480 } else if (pd
->port_port
== 0 && dd
->ipath_port0_skbinfo
) {
2482 struct ipath_skbinfo
*skbinfo
= dd
->ipath_port0_skbinfo
;
2484 dd
->ipath_port0_skbinfo
= NULL
;
2485 ipath_cdbg(VERBOSE
, "free closed port %d "
2486 "ipath_port0_skbinfo @ %p\n", pd
->port_port
,
2488 for (e
= 0; e
< dd
->ipath_p0_rcvegrcnt
; e
++)
2489 if (skbinfo
[e
].skb
) {
2490 pci_unmap_single(dd
->pcidev
, skbinfo
[e
].phys
,
2492 PCI_DMA_FROMDEVICE
);
2493 dev_kfree_skb(skbinfo
[e
].skb
);
2497 kfree(pd
->port_tid_pg_list
);
2498 vfree(pd
->subport_uregbase
);
2499 vfree(pd
->subport_rcvegrbuf
);
2500 vfree(pd
->subport_rcvhdr_base
);
2504 static int __init
infinipath_init(void)
2508 if (ipath_debug
& __IPATH_DBG
)
2509 printk(KERN_INFO DRIVER_LOAD_MSG
"%s", ib_ipath_version
);
2512 * These must be called before the driver is registered with
2513 * the PCI subsystem.
2515 idr_init(&unit_table
);
2516 if (!idr_pre_get(&unit_table
, GFP_KERNEL
)) {
2517 printk(KERN_ERR IPATH_DRV_NAME
": idr_pre_get() failed\n");
2522 ret
= pci_register_driver(&ipath_driver
);
2524 printk(KERN_ERR IPATH_DRV_NAME
2525 ": Unable to register driver: error %d\n", -ret
);
2529 ret
= ipath_init_ipathfs();
2531 printk(KERN_ERR IPATH_DRV_NAME
": Unable to create "
2532 "ipathfs: error %d\n", -ret
);
2539 pci_unregister_driver(&ipath_driver
);
2542 idr_destroy(&unit_table
);
2548 static void __exit
infinipath_cleanup(void)
2550 ipath_exit_ipathfs();
2552 ipath_cdbg(VERBOSE
, "Unregistering pci driver\n");
2553 pci_unregister_driver(&ipath_driver
);
2555 idr_destroy(&unit_table
);
2559 * ipath_reset_device - reset the chip if possible
2560 * @unit: the device to reset
2562 * Whether or not reset is successful, we attempt to re-initialize the chip
2563 * (that is, much like a driver unload/reload). We clear the INITTED flag
2564 * so that the various entry points will fail until we reinitialize. For
2565 * now, we only allow this if no user ports are open that use chip resources
2567 int ipath_reset_device(int unit
)
2570 struct ipath_devdata
*dd
= ipath_lookup(unit
);
2571 unsigned long flags
;
2578 if (atomic_read(&dd
->ipath_led_override_timer_active
)) {
2579 /* Need to stop LED timer, _then_ shut off LEDs */
2580 del_timer_sync(&dd
->ipath_led_override_timer
);
2581 atomic_set(&dd
->ipath_led_override_timer_active
, 0);
2584 /* Shut off LEDs after we are sure timer is not running */
2585 dd
->ipath_led_override
= LED_OVER_BOTH_OFF
;
2586 dd
->ipath_f_setextled(dd
, 0, 0);
2588 dev_info(&dd
->pcidev
->dev
, "Reset on unit %u requested\n", unit
);
2590 if (!dd
->ipath_kregbase
|| !(dd
->ipath_flags
& IPATH_PRESENT
)) {
2591 dev_info(&dd
->pcidev
->dev
, "Invalid unit number %u or "
2592 "not initialized or not present\n", unit
);
2597 spin_lock_irqsave(&dd
->ipath_uctxt_lock
, flags
);
2599 for (i
= 1; i
< dd
->ipath_cfgports
; i
++) {
2600 if (!dd
->ipath_pd
[i
] || !dd
->ipath_pd
[i
]->port_cnt
)
2602 spin_unlock_irqrestore(&dd
->ipath_uctxt_lock
, flags
);
2603 ipath_dbg("unit %u port %d is in use "
2604 "(PID %u cmd %s), can't reset\n",
2606 pid_nr(dd
->ipath_pd
[i
]->port_pid
),
2607 dd
->ipath_pd
[i
]->port_comm
);
2611 spin_unlock_irqrestore(&dd
->ipath_uctxt_lock
, flags
);
2613 if (dd
->ipath_flags
& IPATH_HAS_SEND_DMA
)
2616 dd
->ipath_flags
&= ~IPATH_INITTED
;
2617 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_intmask
, 0ULL);
2618 ret
= dd
->ipath_f_reset(dd
);
2620 ipath_dbg("Reinitializing unit %u after reset attempt\n",
2622 ret
= ipath_init_chip(dd
, 1);
2626 ipath_dev_err(dd
, "Reinitialize unit %u after "
2627 "reset failed with %d\n", unit
, ret
);
2629 dev_info(&dd
->pcidev
->dev
, "Reinitialized unit %u after "
2630 "resetting\n", unit
);
2637 * send a signal to all the processes that have the driver open
2638 * through the normal interfaces (i.e., everything other than diags
2639 * interface). Returns number of signalled processes.
2641 static int ipath_signal_procs(struct ipath_devdata
*dd
, int sig
)
2643 int i
, sub
, any
= 0;
2645 unsigned long flags
;
2650 spin_lock_irqsave(&dd
->ipath_uctxt_lock
, flags
);
2651 for (i
= 1; i
< dd
->ipath_cfgports
; i
++) {
2652 if (!dd
->ipath_pd
[i
] || !dd
->ipath_pd
[i
]->port_cnt
)
2654 pid
= dd
->ipath_pd
[i
]->port_pid
;
2658 dev_info(&dd
->pcidev
->dev
, "context %d in use "
2659 "(PID %u), sending signal %d\n",
2660 i
, pid_nr(pid
), sig
);
2661 kill_pid(pid
, sig
, 1);
2663 for (sub
= 0; sub
< INFINIPATH_MAX_SUBPORT
; sub
++) {
2664 pid
= dd
->ipath_pd
[i
]->port_subpid
[sub
];
2667 dev_info(&dd
->pcidev
->dev
, "sub-context "
2668 "%d:%d in use (PID %u), sending "
2669 "signal %d\n", i
, sub
, pid_nr(pid
), sig
);
2670 kill_pid(pid
, sig
, 1);
2674 spin_unlock_irqrestore(&dd
->ipath_uctxt_lock
, flags
);
2678 static void ipath_hol_signal_down(struct ipath_devdata
*dd
)
2680 if (ipath_signal_procs(dd
, SIGSTOP
))
2681 ipath_dbg("Stopped some processes\n");
2682 ipath_cancel_sends(dd
, 1);
2686 static void ipath_hol_signal_up(struct ipath_devdata
*dd
)
2688 if (ipath_signal_procs(dd
, SIGCONT
))
2689 ipath_dbg("Continued some processes\n");
2693 * link is down, stop any users processes, and flush pending sends
2694 * to prevent HoL blocking, then start the HoL timer that
2695 * periodically continues, then stop procs, so they can detect
2696 * link down if they want, and do something about it.
2697 * Timer may already be running, so use mod_timer, not add_timer.
2699 void ipath_hol_down(struct ipath_devdata
*dd
)
2701 dd
->ipath_hol_state
= IPATH_HOL_DOWN
;
2702 ipath_hol_signal_down(dd
);
2703 dd
->ipath_hol_next
= IPATH_HOL_DOWNCONT
;
2704 dd
->ipath_hol_timer
.expires
= jiffies
+
2705 msecs_to_jiffies(ipath_hol_timeout_ms
);
2706 mod_timer(&dd
->ipath_hol_timer
, dd
->ipath_hol_timer
.expires
);
2710 * link is up, continue any user processes, and ensure timer
2711 * is a nop, if running. Let timer keep running, if set; it
2712 * will nop when it sees the link is up
2714 void ipath_hol_up(struct ipath_devdata
*dd
)
2716 ipath_hol_signal_up(dd
);
2717 dd
->ipath_hol_state
= IPATH_HOL_UP
;
2721 * toggle the running/not running state of user proceses
2722 * to prevent HoL blocking on chip resources, but still allow
2723 * user processes to do link down special case handling.
2724 * Should only be called via the timer
2726 void ipath_hol_event(unsigned long opaque
)
2728 struct ipath_devdata
*dd
= (struct ipath_devdata
*)opaque
;
2730 if (dd
->ipath_hol_next
== IPATH_HOL_DOWNSTOP
2731 && dd
->ipath_hol_state
!= IPATH_HOL_UP
) {
2732 dd
->ipath_hol_next
= IPATH_HOL_DOWNCONT
;
2733 ipath_dbg("Stopping processes\n");
2734 ipath_hol_signal_down(dd
);
2735 } else { /* may do "extra" if also in ipath_hol_up() */
2736 dd
->ipath_hol_next
= IPATH_HOL_DOWNSTOP
;
2737 ipath_dbg("Continuing processes\n");
2738 ipath_hol_signal_up(dd
);
2740 if (dd
->ipath_hol_state
== IPATH_HOL_UP
)
2741 ipath_dbg("link's up, don't resched timer\n");
2743 dd
->ipath_hol_timer
.expires
= jiffies
+
2744 msecs_to_jiffies(ipath_hol_timeout_ms
);
2745 mod_timer(&dd
->ipath_hol_timer
,
2746 dd
->ipath_hol_timer
.expires
);
2750 int ipath_set_rx_pol_inv(struct ipath_devdata
*dd
, u8 new_pol_inv
)
2754 if (new_pol_inv
> INFINIPATH_XGXS_RX_POL_MASK
)
2756 if (dd
->ipath_rx_pol_inv
!= new_pol_inv
) {
2757 dd
->ipath_rx_pol_inv
= new_pol_inv
;
2758 val
= ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_xgxsconfig
);
2759 val
&= ~(INFINIPATH_XGXS_RX_POL_MASK
<<
2760 INFINIPATH_XGXS_RX_POL_SHIFT
);
2761 val
|= ((u64
)dd
->ipath_rx_pol_inv
) <<
2762 INFINIPATH_XGXS_RX_POL_SHIFT
;
2763 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_xgxsconfig
, val
);
2769 * Disable and enable the armlaunch error. Used for PIO bandwidth testing on
2770 * the 7220, which is count-based, rather than trigger-based. Safe for the
2771 * driver check, since it's at init. Not completely safe when used for
2772 * user-mode checking, since some error checking can be lost, but not
2773 * particularly risky, and only has problematic side-effects in the face of
2774 * very buggy user code. There is no reference counting, but that's also
2775 * fine, given the intended use.
2777 void ipath_enable_armlaunch(struct ipath_devdata
*dd
)
2779 dd
->ipath_lasterror
&= ~INFINIPATH_E_SPIOARMLAUNCH
;
2780 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errorclear
,
2781 INFINIPATH_E_SPIOARMLAUNCH
);
2782 dd
->ipath_errormask
|= INFINIPATH_E_SPIOARMLAUNCH
;
2783 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errormask
,
2784 dd
->ipath_errormask
);
2787 void ipath_disable_armlaunch(struct ipath_devdata
*dd
)
2789 /* so don't re-enable if already set */
2790 dd
->ipath_maskederrs
&= ~INFINIPATH_E_SPIOARMLAUNCH
;
2791 dd
->ipath_errormask
&= ~INFINIPATH_E_SPIOARMLAUNCH
;
2792 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errormask
,
2793 dd
->ipath_errormask
);
2796 module_init(infinipath_init
);
2797 module_exit(infinipath_cleanup
);