2 * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <linux/spinlock.h>
35 #include <linux/idr.h>
36 #include <linux/pci.h>
38 #include <linux/delay.h>
39 #include <linux/netdevice.h>
40 #include <linux/vmalloc.h>
42 #include "ipath_kernel.h"
43 #include "ipath_verbs.h"
44 #include "ipath_common.h"
46 static void ipath_update_pio_bufs(struct ipath_devdata
*);
48 const char *ipath_get_unit_name(int unit
)
50 static char iname
[16];
51 snprintf(iname
, sizeof iname
, "infinipath%u", unit
);
55 #define DRIVER_LOAD_MSG "QLogic " IPATH_DRV_NAME " loaded: "
56 #define PFX IPATH_DRV_NAME ": "
59 * The size has to be longer than this string, so we can append
60 * board/chip information to it in the init code.
62 const char ib_ipath_version
[] = IPATH_IDSTR
"\n";
64 static struct idr unit_table
;
65 DEFINE_SPINLOCK(ipath_devs_lock
);
66 LIST_HEAD(ipath_dev_list
);
68 wait_queue_head_t ipath_state_wait
;
70 unsigned ipath_debug
= __IPATH_INFO
;
72 module_param_named(debug
, ipath_debug
, uint
, S_IWUSR
| S_IRUGO
);
73 MODULE_PARM_DESC(debug
, "mask for debug prints");
74 EXPORT_SYMBOL_GPL(ipath_debug
);
76 MODULE_LICENSE("GPL");
77 MODULE_AUTHOR("QLogic <support@pathscale.com>");
78 MODULE_DESCRIPTION("QLogic InfiniPath driver");
80 const char *ipath_ibcstatus_str
[] = {
87 "LState6", /* unused */
88 "LState7", /* unused */
94 "LState0xD", /* unused */
99 static void __devexit
ipath_remove_one(struct pci_dev
*);
100 static int __devinit
ipath_init_one(struct pci_dev
*,
101 const struct pci_device_id
*);
103 /* Only needed for registration, nothing else needs this info */
104 #define PCI_VENDOR_ID_PATHSCALE 0x1fc1
105 #define PCI_DEVICE_ID_INFINIPATH_HT 0xd
106 #define PCI_DEVICE_ID_INFINIPATH_PE800 0x10
108 /* Number of seconds before our card status check... */
109 #define STATUS_TIMEOUT 60
111 static const struct pci_device_id ipath_pci_tbl
[] = {
112 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE
, PCI_DEVICE_ID_INFINIPATH_HT
) },
113 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE
, PCI_DEVICE_ID_INFINIPATH_PE800
) },
117 MODULE_DEVICE_TABLE(pci
, ipath_pci_tbl
);
119 static struct pci_driver ipath_driver
= {
120 .name
= IPATH_DRV_NAME
,
121 .probe
= ipath_init_one
,
122 .remove
= __devexit_p(ipath_remove_one
),
123 .id_table
= ipath_pci_tbl
,
125 .groups
= ipath_driver_attr_groups
,
129 static void ipath_check_status(struct work_struct
*work
)
131 struct ipath_devdata
*dd
= container_of(work
, struct ipath_devdata
,
135 * If we don't have any interrupts, let the user know and
136 * don't bother checking again.
138 if (dd
->ipath_int_counter
== 0)
139 dev_err(&dd
->pcidev
->dev
, "No interrupts detected.\n");
142 static inline void read_bars(struct ipath_devdata
*dd
, struct pci_dev
*dev
,
143 u32
*bar0
, u32
*bar1
)
147 ret
= pci_read_config_dword(dev
, PCI_BASE_ADDRESS_0
, bar0
);
149 ipath_dev_err(dd
, "failed to read bar0 before enable: "
152 ret
= pci_read_config_dword(dev
, PCI_BASE_ADDRESS_1
, bar1
);
154 ipath_dev_err(dd
, "failed to read bar1 before enable: "
157 ipath_dbg("Read bar0 %x bar1 %x\n", *bar0
, *bar1
);
160 static void ipath_free_devdata(struct pci_dev
*pdev
,
161 struct ipath_devdata
*dd
)
165 pci_set_drvdata(pdev
, NULL
);
167 if (dd
->ipath_unit
!= -1) {
168 spin_lock_irqsave(&ipath_devs_lock
, flags
);
169 idr_remove(&unit_table
, dd
->ipath_unit
);
170 list_del(&dd
->ipath_list
);
171 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
176 static struct ipath_devdata
*ipath_alloc_devdata(struct pci_dev
*pdev
)
179 struct ipath_devdata
*dd
;
182 if (!idr_pre_get(&unit_table
, GFP_KERNEL
)) {
183 dd
= ERR_PTR(-ENOMEM
);
187 dd
= vmalloc(sizeof(*dd
));
189 dd
= ERR_PTR(-ENOMEM
);
192 memset(dd
, 0, sizeof(*dd
));
195 spin_lock_irqsave(&ipath_devs_lock
, flags
);
197 ret
= idr_get_new(&unit_table
, dd
, &dd
->ipath_unit
);
199 printk(KERN_ERR IPATH_DRV_NAME
200 ": Could not allocate unit ID: error %d\n", -ret
);
201 ipath_free_devdata(pdev
, dd
);
207 pci_set_drvdata(pdev
, dd
);
209 INIT_DELAYED_WORK(&dd
->status_work
, ipath_check_status
);
211 list_add(&dd
->ipath_list
, &ipath_dev_list
);
214 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
220 static inline struct ipath_devdata
*__ipath_lookup(int unit
)
222 return idr_find(&unit_table
, unit
);
225 struct ipath_devdata
*ipath_lookup(int unit
)
227 struct ipath_devdata
*dd
;
230 spin_lock_irqsave(&ipath_devs_lock
, flags
);
231 dd
= __ipath_lookup(unit
);
232 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
237 int ipath_count_units(int *npresentp
, int *nupp
, u32
*maxportsp
)
239 int nunits
, npresent
, nup
;
240 struct ipath_devdata
*dd
;
244 nunits
= npresent
= nup
= maxports
= 0;
246 spin_lock_irqsave(&ipath_devs_lock
, flags
);
248 list_for_each_entry(dd
, &ipath_dev_list
, ipath_list
) {
250 if ((dd
->ipath_flags
& IPATH_PRESENT
) && dd
->ipath_kregbase
)
253 !(dd
->ipath_flags
& (IPATH_DISABLED
| IPATH_LINKDOWN
256 if (dd
->ipath_cfgports
> maxports
)
257 maxports
= dd
->ipath_cfgports
;
260 spin_unlock_irqrestore(&ipath_devs_lock
, flags
);
263 *npresentp
= npresent
;
267 *maxportsp
= maxports
;
273 * These next two routines are placeholders in case we don't have per-arch
274 * code for controlling write combining. If explicit control of write
275 * combining is not available, performance will probably be awful.
278 int __attribute__((weak
)) ipath_enable_wc(struct ipath_devdata
*dd
)
283 void __attribute__((weak
)) ipath_disable_wc(struct ipath_devdata
*dd
)
288 * Perform a PIO buffer bandwidth write test, to verify proper system
289 * configuration. Even when all the setup calls work, occasionally
290 * BIOS or other issues can prevent write combining from working, or
291 * can cause other bandwidth problems to the chip.
293 * This test simply writes the same buffer over and over again, and
294 * measures close to the peak bandwidth to the chip (not testing
295 * data bandwidth to the wire). On chips that use an address-based
296 * trigger to send packets to the wire, this is easy. On chips that
297 * use a count to trigger, we want to make sure that the packet doesn't
298 * go out on the wire, or trigger flow control checks.
300 static void ipath_verify_pioperf(struct ipath_devdata
*dd
)
302 u32 pbnum
, cnt
, lcnt
;
307 piobuf
= ipath_getpiobuf(dd
, &pbnum
);
309 dev_info(&dd
->pcidev
->dev
,
310 "No PIObufs for checking perf, skipping\n");
315 * Enough to give us a reasonable test, less than piobuf size, and
316 * likely multiple of store buffer length.
322 dev_info(&dd
->pcidev
->dev
,
323 "Couldn't get memory for checking PIO perf,"
328 preempt_disable(); /* we want reasonably accurate elapsed time */
329 msecs
= 1 + jiffies_to_msecs(jiffies
);
330 for (lcnt
= 0; lcnt
< 10000U; lcnt
++) {
331 /* wait until we cross msec boundary */
332 if (jiffies_to_msecs(jiffies
) >= msecs
)
337 ipath_disable_armlaunch(dd
);
339 writeq(0, piobuf
); /* length 0, no dwords actually sent */
343 * this is only roughly accurate, since even with preempt we
344 * still take interrupts that could take a while. Running for
345 * >= 5 msec seems to get us "close enough" to accurate values
347 msecs
= jiffies_to_msecs(jiffies
);
348 for (emsecs
= lcnt
= 0; emsecs
<= 5UL; lcnt
++) {
349 __iowrite32_copy(piobuf
+ 64, addr
, cnt
>> 2);
350 emsecs
= jiffies_to_msecs(jiffies
) - msecs
;
353 /* 1 GiB/sec, slightly over IB SDR line rate */
354 if (lcnt
< (emsecs
* 1024U))
356 "Performance problem: bandwidth to PIO buffers is "
358 lcnt
/ (u32
) emsecs
);
360 ipath_dbg("PIO buffer bandwidth %u MiB/sec is OK\n",
361 lcnt
/ (u32
) emsecs
);
368 /* disarm piobuf, so it's available again */
369 ipath_disarm_piobufs(dd
, pbnum
, 1);
370 ipath_enable_armlaunch(dd
);
373 static int __devinit
ipath_init_one(struct pci_dev
*pdev
,
374 const struct pci_device_id
*ent
)
377 struct ipath_devdata
*dd
;
378 unsigned long long addr
;
379 u32 bar0
= 0, bar1
= 0;
381 dd
= ipath_alloc_devdata(pdev
);
384 printk(KERN_ERR IPATH_DRV_NAME
385 ": Could not allocate devdata: error %d\n", -ret
);
389 ipath_cdbg(VERBOSE
, "initializing unit #%u\n", dd
->ipath_unit
);
391 ret
= pci_enable_device(pdev
);
393 /* This can happen iff:
395 * We did a chip reset, and then failed to reprogram the
396 * BAR, or the chip reset due to an internal error. We then
397 * unloaded the driver and reloaded it.
399 * Both reset cases set the BAR back to initial state. For
400 * the latter case, the AER sticky error bit at offset 0x718
401 * should be set, but the Linux kernel doesn't yet know
402 * about that, it appears. If the original BAR was retained
403 * in the kernel data structures, this may be OK.
405 ipath_dev_err(dd
, "enable unit %d failed: error %d\n",
406 dd
->ipath_unit
, -ret
);
409 addr
= pci_resource_start(pdev
, 0);
410 len
= pci_resource_len(pdev
, 0);
411 ipath_cdbg(VERBOSE
, "regbase (0) %llx len %d pdev->irq %d, vend %x/%x "
412 "driver_data %lx\n", addr
, len
, pdev
->irq
, ent
->vendor
,
413 ent
->device
, ent
->driver_data
);
415 read_bars(dd
, pdev
, &bar0
, &bar1
);
417 if (!bar1
&& !(bar0
& ~0xf)) {
419 dev_info(&pdev
->dev
, "BAR is 0 (probable RESET), "
420 "rewriting as %llx\n", addr
);
421 ret
= pci_write_config_dword(
422 pdev
, PCI_BASE_ADDRESS_0
, addr
);
424 ipath_dev_err(dd
, "rewrite of BAR0 "
425 "failed: err %d\n", -ret
);
428 ret
= pci_write_config_dword(
429 pdev
, PCI_BASE_ADDRESS_1
, addr
>> 32);
431 ipath_dev_err(dd
, "rewrite of BAR1 "
432 "failed: err %d\n", -ret
);
436 ipath_dev_err(dd
, "BAR is 0 (probable RESET), "
437 "not usable until reboot\n");
443 ret
= pci_request_regions(pdev
, IPATH_DRV_NAME
);
445 dev_info(&pdev
->dev
, "pci_request_regions unit %u fails: "
446 "err %d\n", dd
->ipath_unit
, -ret
);
450 ret
= pci_set_dma_mask(pdev
, DMA_64BIT_MASK
);
453 * if the 64 bit setup fails, try 32 bit. Some systems
454 * do not setup 64 bit maps on systems with 2GB or less
457 ret
= pci_set_dma_mask(pdev
, DMA_32BIT_MASK
);
460 "Unable to set DMA mask for unit %u: %d\n",
461 dd
->ipath_unit
, ret
);
465 ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
466 ret
= pci_set_consistent_dma_mask(pdev
, DMA_32BIT_MASK
);
469 "Unable to set DMA consistent mask "
471 dd
->ipath_unit
, ret
);
476 ret
= pci_set_consistent_dma_mask(pdev
, DMA_64BIT_MASK
);
479 "Unable to set DMA consistent mask "
481 dd
->ipath_unit
, ret
);
484 pci_set_master(pdev
);
487 * Save BARs to rewrite after device reset. Save all 64 bits of
490 dd
->ipath_pcibar0
= addr
;
491 dd
->ipath_pcibar1
= addr
>> 32;
492 dd
->ipath_deviceid
= ent
->device
; /* save for later use */
493 dd
->ipath_vendorid
= ent
->vendor
;
495 /* setup the chip-specific functions, as early as possible. */
496 switch (ent
->device
) {
497 case PCI_DEVICE_ID_INFINIPATH_HT
:
499 ipath_init_iba6110_funcs(dd
);
502 ipath_dev_err(dd
, "QLogic HT device 0x%x cannot work if "
503 "CONFIG_HT_IRQ is not enabled\n", ent
->device
);
506 case PCI_DEVICE_ID_INFINIPATH_PE800
:
507 #ifdef CONFIG_PCI_MSI
508 ipath_init_iba6120_funcs(dd
);
511 ipath_dev_err(dd
, "QLogic PCIE device 0x%x cannot work if "
512 "CONFIG_PCI_MSI is not enabled\n", ent
->device
);
516 ipath_dev_err(dd
, "Found unknown QLogic deviceid 0x%x, "
517 "failing\n", ent
->device
);
521 for (j
= 0; j
< 6; j
++) {
522 if (!pdev
->resource
[j
].start
)
524 ipath_cdbg(VERBOSE
, "BAR %d start %llx, end %llx, len %llx\n",
525 j
, (unsigned long long)pdev
->resource
[j
].start
,
526 (unsigned long long)pdev
->resource
[j
].end
,
527 (unsigned long long)pci_resource_len(pdev
, j
));
531 ipath_dev_err(dd
, "No valid address in BAR 0!\n");
536 dd
->ipath_pcirev
= pdev
->revision
;
538 #if defined(__powerpc__)
539 /* There isn't a generic way to specify writethrough mappings */
540 dd
->ipath_kregbase
= __ioremap(addr
, len
,
541 (_PAGE_NO_CACHE
|_PAGE_WRITETHRU
));
543 dd
->ipath_kregbase
= ioremap_nocache(addr
, len
);
546 if (!dd
->ipath_kregbase
) {
547 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
552 dd
->ipath_kregend
= (u64 __iomem
*)
553 ((void __iomem
*)dd
->ipath_kregbase
+ len
);
554 dd
->ipath_physaddr
= addr
; /* used for io_remap, etc. */
556 ipath_cdbg(VERBOSE
, "mapped io addr %llx to kregbase %p\n",
557 addr
, dd
->ipath_kregbase
);
560 * clear ipath_flags here instead of in ipath_init_chip as it is set
561 * by ipath_setup_htconfig.
564 dd
->ipath_lli_counter
= 0;
565 dd
->ipath_lli_errors
= 0;
567 if (dd
->ipath_f_bus(dd
, pdev
))
568 ipath_dev_err(dd
, "Failed to setup config space; "
569 "continuing anyway\n");
572 * set up our interrupt handler; IRQF_SHARED probably not needed,
573 * since MSI interrupts shouldn't be shared but won't hurt for now.
574 * check 0 irq after we return from chip-specific bus setup, since
575 * that can affect this due to setup
578 ipath_dev_err(dd
, "irq is 0, BIOS error? Interrupts won't "
581 ret
= request_irq(dd
->ipath_irq
, ipath_intr
, IRQF_SHARED
,
584 ipath_dev_err(dd
, "Couldn't setup irq handler, "
585 "irq=%d: %d\n", dd
->ipath_irq
, ret
);
590 ret
= ipath_init_chip(dd
, 0); /* do the chip-specific init */
594 ret
= ipath_enable_wc(dd
);
597 ipath_dev_err(dd
, "Write combining not enabled "
598 "(err %d): performance may be poor\n",
603 ipath_verify_pioperf(dd
);
605 ipath_device_create_group(&pdev
->dev
, dd
);
606 ipathfs_add_device(dd
);
609 ipath_register_ib_device(dd
);
611 /* Check that card status in STATUS_TIMEOUT seconds. */
612 schedule_delayed_work(&dd
->status_work
, HZ
* STATUS_TIMEOUT
);
617 if (pdev
->irq
) free_irq(pdev
->irq
, dd
);
620 iounmap((volatile void __iomem
*) dd
->ipath_kregbase
);
623 pci_release_regions(pdev
);
626 pci_disable_device(pdev
);
629 ipath_free_devdata(pdev
, dd
);
635 static void __devexit
cleanup_device(struct ipath_devdata
*dd
)
639 if (*dd
->ipath_statusp
& IPATH_STATUS_CHIP_PRESENT
) {
640 /* can't do anything more with chip; needs re-init */
641 *dd
->ipath_statusp
&= ~IPATH_STATUS_CHIP_PRESENT
;
642 if (dd
->ipath_kregbase
) {
644 * if we haven't already cleaned up before these are
645 * to ensure any register reads/writes "fail" until
648 dd
->ipath_kregbase
= NULL
;
649 dd
->ipath_uregbase
= 0;
650 dd
->ipath_sregbase
= 0;
651 dd
->ipath_cregbase
= 0;
652 dd
->ipath_kregsize
= 0;
654 ipath_disable_wc(dd
);
657 if (dd
->ipath_pioavailregs_dma
) {
658 dma_free_coherent(&dd
->pcidev
->dev
, PAGE_SIZE
,
659 (void *) dd
->ipath_pioavailregs_dma
,
660 dd
->ipath_pioavailregs_phys
);
661 dd
->ipath_pioavailregs_dma
= NULL
;
663 if (dd
->ipath_dummy_hdrq
) {
664 dma_free_coherent(&dd
->pcidev
->dev
,
665 dd
->ipath_pd
[0]->port_rcvhdrq_size
,
666 dd
->ipath_dummy_hdrq
, dd
->ipath_dummy_hdrq_phys
);
667 dd
->ipath_dummy_hdrq
= NULL
;
670 if (dd
->ipath_pageshadow
) {
671 struct page
**tmpp
= dd
->ipath_pageshadow
;
672 dma_addr_t
*tmpd
= dd
->ipath_physshadow
;
675 ipath_cdbg(VERBOSE
, "Unlocking any expTID pages still "
677 for (port
= 0; port
< dd
->ipath_cfgports
; port
++) {
678 int port_tidbase
= port
* dd
->ipath_rcvtidcnt
;
679 int maxtid
= port_tidbase
+ dd
->ipath_rcvtidcnt
;
680 for (i
= port_tidbase
; i
< maxtid
; i
++) {
683 pci_unmap_page(dd
->pcidev
, tmpd
[i
],
684 PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
685 ipath_release_user_pages(&tmpp
[i
], 1);
691 ipath_stats
.sps_pageunlocks
+= cnt
;
692 ipath_cdbg(VERBOSE
, "There were still %u expTID "
693 "entries locked\n", cnt
);
695 if (ipath_stats
.sps_pagelocks
||
696 ipath_stats
.sps_pageunlocks
)
697 ipath_cdbg(VERBOSE
, "%llu pages locked, %llu "
698 "unlocked via ipath_m{un}lock\n",
700 ipath_stats
.sps_pagelocks
,
702 ipath_stats
.sps_pageunlocks
);
704 ipath_cdbg(VERBOSE
, "Free shadow page tid array at %p\n",
705 dd
->ipath_pageshadow
);
706 tmpp
= dd
->ipath_pageshadow
;
707 dd
->ipath_pageshadow
= NULL
;
712 * free any resources still in use (usually just kernel ports)
713 * at unload; we do for portcnt, not cfgports, because cfgports
714 * could have changed while we were loaded.
716 for (port
= 0; port
< dd
->ipath_portcnt
; port
++) {
717 struct ipath_portdata
*pd
= dd
->ipath_pd
[port
];
718 dd
->ipath_pd
[port
] = NULL
;
719 ipath_free_pddata(dd
, pd
);
723 * debuggability, in case some cleanup path tries to use it
729 static void __devexit
ipath_remove_one(struct pci_dev
*pdev
)
731 struct ipath_devdata
*dd
= pci_get_drvdata(pdev
);
733 ipath_cdbg(VERBOSE
, "removing, pdev=%p, dd=%p\n", pdev
, dd
);
736 * disable the IB link early, to be sure no new packets arrive, which
737 * complicates the shutdown process
739 ipath_shutdown_device(dd
);
741 cancel_delayed_work(&dd
->status_work
);
742 flush_scheduled_work();
745 ipath_unregister_ib_device(dd
->verbs_dev
);
747 ipath_diag_remove(dd
);
748 ipath_user_remove(dd
);
749 ipathfs_remove_device(dd
);
750 ipath_device_remove_group(&pdev
->dev
, dd
);
752 ipath_cdbg(VERBOSE
, "Releasing pci memory regions, dd %p, "
753 "unit %u\n", dd
, (u32
) dd
->ipath_unit
);
758 * turn off rcv, send, and interrupts for all ports, all drivers
759 * should also hard reset the chip here?
760 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
761 * for all versions of the driver, if they were allocated
764 ipath_cdbg(VERBOSE
, "unit %u free irq %d\n",
765 dd
->ipath_unit
, dd
->ipath_irq
);
766 dd
->ipath_f_free_irq(dd
);
768 ipath_dbg("irq is 0, not doing free_irq "
769 "for unit %u\n", dd
->ipath_unit
);
771 * we check for NULL here, because it's outside
772 * the kregbase check, and we need to call it
773 * after the free_irq. Thus it's possible that
774 * the function pointers were never initialized.
776 if (dd
->ipath_f_cleanup
)
777 /* clean up chip-specific stuff */
778 dd
->ipath_f_cleanup(dd
);
780 ipath_cdbg(VERBOSE
, "Unmapping kregbase %p\n", dd
->ipath_kregbase
);
781 iounmap((volatile void __iomem
*) dd
->ipath_kregbase
);
782 pci_release_regions(pdev
);
783 ipath_cdbg(VERBOSE
, "calling pci_disable_device\n");
784 pci_disable_device(pdev
);
786 ipath_free_devdata(pdev
, dd
);
789 /* general driver use */
790 DEFINE_MUTEX(ipath_mutex
);
792 static DEFINE_SPINLOCK(ipath_pioavail_lock
);
795 * ipath_disarm_piobufs - cancel a range of PIO buffers
796 * @dd: the infinipath device
797 * @first: the first PIO buffer to cancel
798 * @cnt: the number of PIO buffers to cancel
800 * cancel a range of PIO buffers, used when they might be armed, but
801 * not triggered. Used at init to ensure buffer state, and also user
802 * process close, in case it died while writing to a PIO buffer
805 void ipath_disarm_piobufs(struct ipath_devdata
*dd
, unsigned first
,
808 unsigned i
, last
= first
+ cnt
;
811 ipath_cdbg(PKT
, "disarm %u PIObufs first=%u\n", cnt
, first
);
812 for (i
= first
; i
< last
; i
++) {
813 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
815 * The disarm-related bits are write-only, so it
816 * is ok to OR them in with our copy of sendctrl
817 * while we hold the lock.
819 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
820 dd
->ipath_sendctrl
| INFINIPATH_S_DISARM
|
821 (i
<< INFINIPATH_S_DISARMPIOBUF_SHIFT
));
822 /* can't disarm bufs back-to-back per iba7220 spec */
823 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
824 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
828 * Disable PIOAVAILUPD, then re-enable, reading scratch in
829 * between. This seems to avoid a chip timing race that causes
830 * pioavail updates to memory to stop. We xor as we don't
831 * know the state of the bit when we're called.
833 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
834 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
835 dd
->ipath_sendctrl
^ INFINIPATH_S_PIOBUFAVAILUPD
);
836 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
837 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
839 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
843 * ipath_wait_linkstate - wait for an IB link state change to occur
844 * @dd: the infinipath device
845 * @state: the state to wait for
846 * @msecs: the number of milliseconds to wait
848 * wait up to msecs milliseconds for IB link state change to occur for
849 * now, take the easy polling route. Currently used only by
850 * ipath_set_linkstate. Returns 0 if state reached, otherwise
851 * -ETIMEDOUT state can have multiple states set, for any of several
854 int ipath_wait_linkstate(struct ipath_devdata
*dd
, u32 state
, int msecs
)
856 dd
->ipath_state_wanted
= state
;
857 wait_event_interruptible_timeout(ipath_state_wait
,
858 (dd
->ipath_flags
& state
),
859 msecs_to_jiffies(msecs
));
860 dd
->ipath_state_wanted
= 0;
862 if (!(dd
->ipath_flags
& state
)) {
864 ipath_cdbg(VERBOSE
, "Didn't reach linkstate %s within %u"
866 /* test INIT ahead of DOWN, both can be set */
867 (state
& IPATH_LINKINIT
) ? "INIT" :
868 ((state
& IPATH_LINKDOWN
) ? "DOWN" :
869 ((state
& IPATH_LINKARMED
) ? "ARM" : "ACTIVE")),
871 val
= ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_ibcstatus
);
872 ipath_cdbg(VERBOSE
, "ibcc=%llx ibcstatus=%llx (%s)\n",
873 (unsigned long long) ipath_read_kreg64(
874 dd
, dd
->ipath_kregs
->kr_ibcctrl
),
875 (unsigned long long) val
,
876 ipath_ibcstatus_str
[val
& 0xf]);
878 return (dd
->ipath_flags
& state
) ? 0 : -ETIMEDOUT
;
882 * Decode the error status into strings, deciding whether to always
883 * print * it or not depending on "normal packet errors" vs everything
884 * else. Return 1 if "real" errors, otherwise 0 if only packet
885 * errors, so caller can decide what to print with the string.
887 int ipath_decode_err(char *buf
, size_t blen
, ipath_err_t err
)
891 if (err
& INFINIPATH_E_PKTERRS
) {
892 if (!(err
& ~INFINIPATH_E_PKTERRS
))
893 iserr
= 0; // if only packet errors.
894 if (ipath_debug
& __IPATH_ERRPKTDBG
) {
895 if (err
& INFINIPATH_E_REBP
)
896 strlcat(buf
, "EBP ", blen
);
897 if (err
& INFINIPATH_E_RVCRC
)
898 strlcat(buf
, "VCRC ", blen
);
899 if (err
& INFINIPATH_E_RICRC
) {
900 strlcat(buf
, "CRC ", blen
);
901 // clear for check below, so only once
902 err
&= INFINIPATH_E_RICRC
;
904 if (err
& INFINIPATH_E_RSHORTPKTLEN
)
905 strlcat(buf
, "rshortpktlen ", blen
);
906 if (err
& INFINIPATH_E_SDROPPEDDATAPKT
)
907 strlcat(buf
, "sdroppeddatapkt ", blen
);
908 if (err
& INFINIPATH_E_SPKTLEN
)
909 strlcat(buf
, "spktlen ", blen
);
911 if ((err
& INFINIPATH_E_RICRC
) &&
912 !(err
&(INFINIPATH_E_RVCRC
|INFINIPATH_E_REBP
)))
913 strlcat(buf
, "CRC ", blen
);
917 if (err
& INFINIPATH_E_RHDRLEN
)
918 strlcat(buf
, "rhdrlen ", blen
);
919 if (err
& INFINIPATH_E_RBADTID
)
920 strlcat(buf
, "rbadtid ", blen
);
921 if (err
& INFINIPATH_E_RBADVERSION
)
922 strlcat(buf
, "rbadversion ", blen
);
923 if (err
& INFINIPATH_E_RHDR
)
924 strlcat(buf
, "rhdr ", blen
);
925 if (err
& INFINIPATH_E_RLONGPKTLEN
)
926 strlcat(buf
, "rlongpktlen ", blen
);
927 if (err
& INFINIPATH_E_RMAXPKTLEN
)
928 strlcat(buf
, "rmaxpktlen ", blen
);
929 if (err
& INFINIPATH_E_RMINPKTLEN
)
930 strlcat(buf
, "rminpktlen ", blen
);
931 if (err
& INFINIPATH_E_SMINPKTLEN
)
932 strlcat(buf
, "sminpktlen ", blen
);
933 if (err
& INFINIPATH_E_RFORMATERR
)
934 strlcat(buf
, "rformaterr ", blen
);
935 if (err
& INFINIPATH_E_RUNSUPVL
)
936 strlcat(buf
, "runsupvl ", blen
);
937 if (err
& INFINIPATH_E_RUNEXPCHAR
)
938 strlcat(buf
, "runexpchar ", blen
);
939 if (err
& INFINIPATH_E_RIBFLOW
)
940 strlcat(buf
, "ribflow ", blen
);
941 if (err
& INFINIPATH_E_SUNDERRUN
)
942 strlcat(buf
, "sunderrun ", blen
);
943 if (err
& INFINIPATH_E_SPIOARMLAUNCH
)
944 strlcat(buf
, "spioarmlaunch ", blen
);
945 if (err
& INFINIPATH_E_SUNEXPERRPKTNUM
)
946 strlcat(buf
, "sunexperrpktnum ", blen
);
947 if (err
& INFINIPATH_E_SDROPPEDSMPPKT
)
948 strlcat(buf
, "sdroppedsmppkt ", blen
);
949 if (err
& INFINIPATH_E_SMAXPKTLEN
)
950 strlcat(buf
, "smaxpktlen ", blen
);
951 if (err
& INFINIPATH_E_SUNSUPVL
)
952 strlcat(buf
, "sunsupVL ", blen
);
953 if (err
& INFINIPATH_E_INVALIDADDR
)
954 strlcat(buf
, "invalidaddr ", blen
);
955 if (err
& INFINIPATH_E_RRCVEGRFULL
)
956 strlcat(buf
, "rcvegrfull ", blen
);
957 if (err
& INFINIPATH_E_RRCVHDRFULL
)
958 strlcat(buf
, "rcvhdrfull ", blen
);
959 if (err
& INFINIPATH_E_IBSTATUSCHANGED
)
960 strlcat(buf
, "ibcstatuschg ", blen
);
961 if (err
& INFINIPATH_E_RIBLOSTLINK
)
962 strlcat(buf
, "riblostlink ", blen
);
963 if (err
& INFINIPATH_E_HARDWARE
)
964 strlcat(buf
, "hardware ", blen
);
965 if (err
& INFINIPATH_E_RESET
)
966 strlcat(buf
, "reset ", blen
);
972 * get_rhf_errstring - decode RHF errors
973 * @err: the err number
974 * @msg: the output buffer
975 * @len: the length of the output buffer
977 * only used one place now, may want more later
979 static void get_rhf_errstring(u32 err
, char *msg
, size_t len
)
981 /* if no errors, and so don't need to check what's first */
984 if (err
& INFINIPATH_RHF_H_ICRCERR
)
985 strlcat(msg
, "icrcerr ", len
);
986 if (err
& INFINIPATH_RHF_H_VCRCERR
)
987 strlcat(msg
, "vcrcerr ", len
);
988 if (err
& INFINIPATH_RHF_H_PARITYERR
)
989 strlcat(msg
, "parityerr ", len
);
990 if (err
& INFINIPATH_RHF_H_LENERR
)
991 strlcat(msg
, "lenerr ", len
);
992 if (err
& INFINIPATH_RHF_H_MTUERR
)
993 strlcat(msg
, "mtuerr ", len
);
994 if (err
& INFINIPATH_RHF_H_IHDRERR
)
995 /* infinipath hdr checksum error */
996 strlcat(msg
, "ipathhdrerr ", len
);
997 if (err
& INFINIPATH_RHF_H_TIDERR
)
998 strlcat(msg
, "tiderr ", len
);
999 if (err
& INFINIPATH_RHF_H_MKERR
)
1000 /* bad port, offset, etc. */
1001 strlcat(msg
, "invalid ipathhdr ", len
);
1002 if (err
& INFINIPATH_RHF_H_IBERR
)
1003 strlcat(msg
, "iberr ", len
);
1004 if (err
& INFINIPATH_RHF_L_SWA
)
1005 strlcat(msg
, "swA ", len
);
1006 if (err
& INFINIPATH_RHF_L_SWB
)
1007 strlcat(msg
, "swB ", len
);
1011 * ipath_get_egrbuf - get an eager buffer
1012 * @dd: the infinipath device
1013 * @bufnum: the eager buffer to get
1015 * must only be called if ipath_pd[port] is known to be allocated
1017 static inline void *ipath_get_egrbuf(struct ipath_devdata
*dd
, u32 bufnum
)
1019 return dd
->ipath_port0_skbinfo
?
1020 (void *) dd
->ipath_port0_skbinfo
[bufnum
].skb
->data
: NULL
;
1024 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
1025 * @dd: the infinipath device
1026 * @gfp_mask: the sk_buff SFP mask
1028 struct sk_buff
*ipath_alloc_skb(struct ipath_devdata
*dd
,
1031 struct sk_buff
*skb
;
1035 * Only fully supported way to handle this is to allocate lots
1036 * extra, align as needed, and then do skb_reserve(). That wastes
1037 * a lot of memory... I'll have to hack this into infinipath_copy
1042 * We need 2 extra bytes for ipath_ether data sent in the
1043 * key header. In order to keep everything dword aligned,
1044 * we'll reserve 4 bytes.
1046 len
= dd
->ipath_ibmaxlen
+ 4;
1048 if (dd
->ipath_flags
& IPATH_4BYTE_TID
) {
1049 /* We need a 2KB multiple alignment, and there is no way
1050 * to do it except to allocate extra and then skb_reserve
1051 * enough to bring it up to the right alignment.
1056 skb
= __dev_alloc_skb(len
, gfp_mask
);
1058 ipath_dev_err(dd
, "Failed to allocate skbuff, length %u\n",
1063 skb_reserve(skb
, 4);
1065 if (dd
->ipath_flags
& IPATH_4BYTE_TID
) {
1066 u32 una
= (unsigned long)skb
->data
& 2047;
1068 skb_reserve(skb
, 2048 - una
);
1075 static void ipath_rcv_hdrerr(struct ipath_devdata
*dd
,
1082 struct ipath_message_header
*hdr
;
1084 get_rhf_errstring(eflags
, emsg
, sizeof emsg
);
1085 hdr
= (struct ipath_message_header
*)&rc
[1];
1086 ipath_cdbg(PKT
, "RHFerrs %x hdrqtail=%x typ=%u "
1087 "tlen=%x opcode=%x egridx=%x: %s\n",
1089 ipath_hdrget_rcv_type((__le32
*) rc
),
1090 ipath_hdrget_length_in_bytes((__le32
*) rc
),
1091 be32_to_cpu(hdr
->bth
[0]) >> 24,
1094 /* Count local link integrity errors. */
1095 if (eflags
& (INFINIPATH_RHF_H_ICRCERR
| INFINIPATH_RHF_H_VCRCERR
)) {
1096 u8 n
= (dd
->ipath_ibcctrl
>>
1097 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT
) &
1098 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK
;
1100 if (++dd
->ipath_lli_counter
> n
) {
1101 dd
->ipath_lli_counter
= 0;
1102 dd
->ipath_lli_errors
++;
1108 * ipath_kreceive - receive a packet
1109 * @pd: the infinipath port
1111 * called from interrupt handler for errors or receive interrupt
1113 void ipath_kreceive(struct ipath_portdata
*pd
)
1116 struct ipath_devdata
*dd
= pd
->port_dd
;
1118 const u32 rsize
= dd
->ipath_rcvhdrentsize
; /* words */
1119 const u32 maxcnt
= dd
->ipath_rcvhdrcnt
* rsize
; /* words */
1120 u32 etail
= -1, l
, hdrqtail
;
1121 struct ipath_message_header
*hdr
;
1122 u32 eflags
, i
, etype
, tlen
, pkttot
= 0, updegr
=0, reloop
=0;
1123 static u64 totcalls
; /* stats, may eventually remove */
1125 if (!dd
->ipath_hdrqtailptr
) {
1127 "hdrqtailptr not set, can't do receives\n");
1132 hdrqtail
= ipath_get_rcvhdrtail(pd
);
1137 for (i
= 0; l
!= hdrqtail
; i
++) {
1141 rc
= (u64
*) (pd
->port_rcvhdrq
+ (l
<< 2));
1142 hdr
= (struct ipath_message_header
*)&rc
[1];
1144 * could make a network order version of IPATH_KD_QP, and
1145 * do the obvious shift before masking to speed this up.
1147 qp
= ntohl(hdr
->bth
[1]) & 0xffffff;
1148 bthbytes
= (u8
*) hdr
->bth
;
1150 eflags
= ipath_hdrget_err_flags((__le32
*) rc
);
1151 etype
= ipath_hdrget_rcv_type((__le32
*) rc
);
1153 tlen
= ipath_hdrget_length_in_bytes((__le32
*) rc
);
1155 if (etype
!= RCVHQ_RCV_TYPE_EXPECTED
) {
1157 * it turns out that the chips uses an eager buffer
1158 * for all non-expected packets, whether it "needs"
1159 * one or not. So always get the index, but don't
1160 * set ebuf (so we try to copy data) unless the
1161 * length requires it.
1163 etail
= ipath_hdrget_index((__le32
*) rc
);
1164 if (tlen
> sizeof(*hdr
) ||
1165 etype
== RCVHQ_RCV_TYPE_NON_KD
)
1166 ebuf
= ipath_get_egrbuf(dd
, etail
);
1170 * both tiderr and ipathhdrerr are set for all plain IB
1171 * packets; only ipathhdrerr should be set.
1174 if (etype
!= RCVHQ_RCV_TYPE_NON_KD
&& etype
!=
1175 RCVHQ_RCV_TYPE_ERROR
&& ipath_hdrget_ipath_ver(
1176 hdr
->iph
.ver_port_tid_offset
) !=
1177 IPS_PROTO_VERSION
) {
1178 ipath_cdbg(PKT
, "Bad InfiniPath protocol version "
1182 if (unlikely(eflags
))
1183 ipath_rcv_hdrerr(dd
, eflags
, l
, etail
, rc
);
1184 else if (etype
== RCVHQ_RCV_TYPE_NON_KD
) {
1185 ipath_ib_rcv(dd
->verbs_dev
, rc
+ 1, ebuf
, tlen
);
1186 if (dd
->ipath_lli_counter
)
1187 dd
->ipath_lli_counter
--;
1188 ipath_cdbg(PKT
, "typ %x, opcode %x (eager, "
1189 "qp=%x), len %x; ignored\n",
1190 etype
, bthbytes
[0], qp
, tlen
);
1192 else if (etype
== RCVHQ_RCV_TYPE_EAGER
)
1193 ipath_cdbg(PKT
, "typ %x, opcode %x (eager, "
1194 "qp=%x), len %x; ignored\n",
1195 etype
, bthbytes
[0], qp
, tlen
);
1196 else if (etype
== RCVHQ_RCV_TYPE_EXPECTED
)
1197 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
1198 be32_to_cpu(hdr
->bth
[0]) & 0xff);
1201 * error packet, type of error unknown.
1202 * Probably type 3, but we don't know, so don't
1203 * even try to print the opcode, etc.
1205 ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
1206 "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
1207 "hdr %llx %llx %llx %llx %llx\n",
1208 etail
, tlen
, (unsigned long) rc
, l
,
1209 (unsigned long long) rc
[0],
1210 (unsigned long long) rc
[1],
1211 (unsigned long long) rc
[2],
1212 (unsigned long long) rc
[3],
1213 (unsigned long long) rc
[4],
1214 (unsigned long long) rc
[5]);
1219 if (etype
!= RCVHQ_RCV_TYPE_EXPECTED
)
1222 * update head regs on last packet, and every 16 packets.
1223 * Reduce bus traffic, while still trying to prevent
1224 * rcvhdrq overflows, for when the queue is nearly full
1226 if (l
== hdrqtail
|| (i
&& !(i
&0xf))) {
1229 /* request IBA6120 interrupt only on last */
1230 lval
= dd
->ipath_rhdrhead_intr_off
| l
;
1233 (void)ipath_write_ureg(dd
, ur_rcvhdrhead
, lval
, 0);
1235 (void)ipath_write_ureg(dd
, ur_rcvegrindexhead
,
1242 if (!dd
->ipath_rhdrhead_intr_off
&& !reloop
) {
1243 /* IBA6110 workaround; we can have a race clearing chip
1244 * interrupt with another interrupt about to be delivered,
1245 * and can clear it before it is delivered on the GPIO
1246 * workaround. By doing the extra check here for the
1247 * in-memory tail register updating while we were doing
1248 * earlier packets, we "almost" guarantee we have covered
1251 u32 hqtail
= ipath_get_rcvhdrtail(pd
);
1252 if (hqtail
!= hdrqtail
) {
1254 reloop
= 1; /* loop 1 extra time at most */
1263 if (pkttot
> ipath_stats
.sps_maxpkts_call
)
1264 ipath_stats
.sps_maxpkts_call
= pkttot
;
1265 ipath_stats
.sps_port0pkts
+= pkttot
;
1266 ipath_stats
.sps_avgpkts_call
=
1267 ipath_stats
.sps_port0pkts
/ ++totcalls
;
1273 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1274 * @dd: the infinipath device
1276 * called whenever our local copy indicates we have run out of send buffers
1277 * NOTE: This can be called from interrupt context by some code
1278 * and from non-interrupt context by ipath_getpiobuf().
1281 static void ipath_update_pio_bufs(struct ipath_devdata
*dd
)
1283 unsigned long flags
;
1285 const unsigned piobregs
= (unsigned)dd
->ipath_pioavregs
;
1287 /* If the generation (check) bits have changed, then we update the
1288 * busy bit for the corresponding PIO buffer. This algorithm will
1289 * modify positions to the value they already have in some cases
1290 * (i.e., no change), but it's faster than changing only the bits
1291 * that have changed.
1293 * We would like to do this atomicly, to avoid spinlocks in the
1294 * critical send path, but that's not really possible, given the
1295 * type of changes, and that this routine could be called on
1296 * multiple cpu's simultaneously, so we lock in this routine only,
1297 * to avoid conflicting updates; all we change is the shadow, and
1298 * it's a single 64 bit memory location, so by definition the update
1299 * is atomic in terms of what other cpu's can see in testing the
1300 * bits. The spin_lock overhead isn't too bad, since it only
1301 * happens when all buffers are in use, so only cpu overhead, not
1302 * latency or bandwidth is affected.
1304 #define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
1305 if (!dd
->ipath_pioavailregs_dma
) {
1306 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1309 if (ipath_debug
& __IPATH_VERBDBG
) {
1310 /* only if packet debug and verbose */
1311 volatile __le64
*dma
= dd
->ipath_pioavailregs_dma
;
1312 unsigned long *shadow
= dd
->ipath_pioavailshadow
;
1314 ipath_cdbg(PKT
, "Refill avail, dma0=%llx shad0=%lx, "
1315 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1317 (unsigned long long) le64_to_cpu(dma
[0]),
1319 (unsigned long long) le64_to_cpu(dma
[1]),
1321 (unsigned long long) le64_to_cpu(dma
[2]),
1323 (unsigned long long) le64_to_cpu(dma
[3]),
1327 PKT
, "2nd group, dma4=%llx shad4=%lx, "
1328 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1330 (unsigned long long) le64_to_cpu(dma
[4]),
1332 (unsigned long long) le64_to_cpu(dma
[5]),
1334 (unsigned long long) le64_to_cpu(dma
[6]),
1336 (unsigned long long) le64_to_cpu(dma
[7]),
1339 spin_lock_irqsave(&ipath_pioavail_lock
, flags
);
1340 for (i
= 0; i
< piobregs
; i
++) {
1341 u64 pchbusy
, pchg
, piov
, pnew
;
1343 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1345 if (i
> 3 && (dd
->ipath_flags
& IPATH_SWAP_PIOBUFS
))
1346 piov
= le64_to_cpu(dd
->ipath_pioavailregs_dma
[i
^ 1]);
1348 piov
= le64_to_cpu(dd
->ipath_pioavailregs_dma
[i
]);
1349 pchg
= _IPATH_ALL_CHECKBITS
&
1350 ~(dd
->ipath_pioavailshadow
[i
] ^ piov
);
1351 pchbusy
= pchg
<< INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT
;
1352 if (pchg
&& (pchbusy
& dd
->ipath_pioavailshadow
[i
])) {
1353 pnew
= dd
->ipath_pioavailshadow
[i
] & ~pchbusy
;
1354 pnew
|= piov
& pchbusy
;
1355 dd
->ipath_pioavailshadow
[i
] = pnew
;
1358 spin_unlock_irqrestore(&ipath_pioavail_lock
, flags
);
1362 * ipath_setrcvhdrsize - set the receive header size
1363 * @dd: the infinipath device
1364 * @rhdrsize: the receive header size
1366 * called from user init code, and also layered driver init
1368 int ipath_setrcvhdrsize(struct ipath_devdata
*dd
, unsigned rhdrsize
)
1372 if (dd
->ipath_flags
& IPATH_RCVHDRSZ_SET
) {
1373 if (dd
->ipath_rcvhdrsize
!= rhdrsize
) {
1374 dev_info(&dd
->pcidev
->dev
,
1375 "Error: can't set protocol header "
1376 "size %u, already %u\n",
1377 rhdrsize
, dd
->ipath_rcvhdrsize
);
1380 ipath_cdbg(VERBOSE
, "Reuse same protocol header "
1381 "size %u\n", dd
->ipath_rcvhdrsize
);
1382 } else if (rhdrsize
> (dd
->ipath_rcvhdrentsize
-
1383 (sizeof(u64
) / sizeof(u32
)))) {
1384 ipath_dbg("Error: can't set protocol header size %u "
1385 "(> max %u)\n", rhdrsize
,
1386 dd
->ipath_rcvhdrentsize
-
1387 (u32
) (sizeof(u64
) / sizeof(u32
)));
1390 dd
->ipath_flags
|= IPATH_RCVHDRSZ_SET
;
1391 dd
->ipath_rcvhdrsize
= rhdrsize
;
1392 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvhdrsize
,
1393 dd
->ipath_rcvhdrsize
);
1394 ipath_cdbg(VERBOSE
, "Set protocol header size to %u\n",
1395 dd
->ipath_rcvhdrsize
);
1401 * ipath_getpiobuf - find an available pio buffer
1402 * @dd: the infinipath device
1403 * @pbufnum: the buffer number is placed here
1405 * do appropriate marking as busy, etc.
1406 * returns buffer number if one found (>=0), negative number is error.
1407 * Used by ipath_layer_send
1409 u32 __iomem
*ipath_getpiobuf(struct ipath_devdata
*dd
, u32
* pbufnum
)
1411 int i
, j
, starti
, updated
= 0;
1412 unsigned piobcnt
, iter
;
1413 unsigned long flags
;
1414 unsigned long *shadow
= dd
->ipath_pioavailshadow
;
1417 piobcnt
= (unsigned)(dd
->ipath_piobcnt2k
1418 + dd
->ipath_piobcnt4k
);
1419 starti
= dd
->ipath_lastport_piobuf
;
1420 iter
= piobcnt
- starti
;
1421 if (dd
->ipath_upd_pio_shadow
) {
1423 * Minor optimization. If we had no buffers on last call,
1424 * start out by doing the update; continue and do scan even
1425 * if no buffers were updated, to be paranoid
1427 ipath_update_pio_bufs(dd
);
1428 /* we scanned here, don't do it at end of scan */
1432 i
= dd
->ipath_lastpioindex
;
1436 * while test_and_set_bit() is atomic, we do that and then the
1437 * change_bit(), and the pair is not. See if this is the cause
1438 * of the remaining armlaunch errors.
1440 spin_lock_irqsave(&ipath_pioavail_lock
, flags
);
1441 for (j
= 0; j
< iter
; j
++, i
++) {
1445 * To avoid bus lock overhead, we first find a candidate
1446 * buffer, then do the test and set, and continue if that
1449 if (test_bit((2 * i
) + 1, shadow
) ||
1450 test_and_set_bit((2 * i
) + 1, shadow
))
1452 /* flip generation bit */
1453 change_bit(2 * i
, shadow
);
1456 spin_unlock_irqrestore(&ipath_pioavail_lock
, flags
);
1459 volatile __le64
*dma
= dd
->ipath_pioavailregs_dma
;
1462 * first time through; shadow exhausted, but may be real
1463 * buffers available, so go see; if any updated, rescan
1467 ipath_update_pio_bufs(dd
);
1472 dd
->ipath_upd_pio_shadow
= 1;
1474 * not atomic, but if we lose one once in a while, that's OK
1476 ipath_stats
.sps_nopiobufs
++;
1477 if (!(++dd
->ipath_consec_nopiobuf
% 100000)) {
1479 "%u pio sends with no bufavail; dmacopy: "
1480 "%llx %llx %llx %llx; shadow: "
1481 "%lx %lx %lx %lx\n",
1482 dd
->ipath_consec_nopiobuf
,
1483 (unsigned long long) le64_to_cpu(dma
[0]),
1484 (unsigned long long) le64_to_cpu(dma
[1]),
1485 (unsigned long long) le64_to_cpu(dma
[2]),
1486 (unsigned long long) le64_to_cpu(dma
[3]),
1487 shadow
[0], shadow
[1], shadow
[2],
1490 * 4 buffers per byte, 4 registers above, cover rest
1493 if ((dd
->ipath_piobcnt2k
+ dd
->ipath_piobcnt4k
) >
1494 (sizeof(shadow
[0]) * 4 * 4))
1495 ipath_dbg("2nd group: dmacopy: %llx %llx "
1496 "%llx %llx; shadow: %lx %lx "
1498 (unsigned long long)
1499 le64_to_cpu(dma
[4]),
1500 (unsigned long long)
1501 le64_to_cpu(dma
[5]),
1502 (unsigned long long)
1503 le64_to_cpu(dma
[6]),
1504 (unsigned long long)
1505 le64_to_cpu(dma
[7]),
1506 shadow
[4], shadow
[5],
1507 shadow
[6], shadow
[7]);
1514 * set next starting place. Since it's just an optimization,
1515 * it doesn't matter who wins on this, so no locking
1517 dd
->ipath_lastpioindex
= i
+ 1;
1518 if (dd
->ipath_upd_pio_shadow
)
1519 dd
->ipath_upd_pio_shadow
= 0;
1520 if (dd
->ipath_consec_nopiobuf
)
1521 dd
->ipath_consec_nopiobuf
= 0;
1522 if (i
< dd
->ipath_piobcnt2k
)
1523 buf
= (u32 __iomem
*) (dd
->ipath_pio2kbase
+
1524 i
* dd
->ipath_palign
);
1526 buf
= (u32 __iomem
*)
1527 (dd
->ipath_pio4kbase
+
1528 (i
- dd
->ipath_piobcnt2k
) * dd
->ipath_4kalign
);
1529 ipath_cdbg(VERBOSE
, "Return piobuf%u %uk @ %p\n",
1530 i
, (i
< dd
->ipath_piobcnt2k
) ? 2 : 4, buf
);
1539 * ipath_create_rcvhdrq - create a receive header queue
1540 * @dd: the infinipath device
1541 * @pd: the port data
1543 * this must be contiguous memory (from an i/o perspective), and must be
1544 * DMA'able (which means for some systems, it will go through an IOMMU,
1545 * or be forced into a low address range).
1547 int ipath_create_rcvhdrq(struct ipath_devdata
*dd
,
1548 struct ipath_portdata
*pd
)
1552 if (!pd
->port_rcvhdrq
) {
1553 dma_addr_t phys_hdrqtail
;
1554 gfp_t gfp_flags
= GFP_USER
| __GFP_COMP
;
1555 int amt
= ALIGN(dd
->ipath_rcvhdrcnt
* dd
->ipath_rcvhdrentsize
*
1556 sizeof(u32
), PAGE_SIZE
);
1558 pd
->port_rcvhdrq
= dma_alloc_coherent(
1559 &dd
->pcidev
->dev
, amt
, &pd
->port_rcvhdrq_phys
,
1562 if (!pd
->port_rcvhdrq
) {
1563 ipath_dev_err(dd
, "attempt to allocate %d bytes "
1564 "for port %u rcvhdrq failed\n",
1565 amt
, pd
->port_port
);
1569 pd
->port_rcvhdrtail_kvaddr
= dma_alloc_coherent(
1570 &dd
->pcidev
->dev
, PAGE_SIZE
, &phys_hdrqtail
, GFP_KERNEL
);
1571 if (!pd
->port_rcvhdrtail_kvaddr
) {
1572 ipath_dev_err(dd
, "attempt to allocate 1 page "
1573 "for port %u rcvhdrqtailaddr failed\n",
1576 dma_free_coherent(&dd
->pcidev
->dev
, amt
,
1577 pd
->port_rcvhdrq
, pd
->port_rcvhdrq_phys
);
1578 pd
->port_rcvhdrq
= NULL
;
1581 pd
->port_rcvhdrqtailaddr_phys
= phys_hdrqtail
;
1583 pd
->port_rcvhdrq_size
= amt
;
1585 ipath_cdbg(VERBOSE
, "%d pages at %p (phys %lx) size=%lu "
1586 "for port %u rcvhdr Q\n",
1587 amt
>> PAGE_SHIFT
, pd
->port_rcvhdrq
,
1588 (unsigned long) pd
->port_rcvhdrq_phys
,
1589 (unsigned long) pd
->port_rcvhdrq_size
,
1592 ipath_cdbg(VERBOSE
, "port %d hdrtailaddr, %llx physical\n",
1594 (unsigned long long) phys_hdrqtail
);
1597 ipath_cdbg(VERBOSE
, "reuse port %d rcvhdrq @%p %llx phys; "
1598 "hdrtailaddr@%p %llx physical\n",
1599 pd
->port_port
, pd
->port_rcvhdrq
,
1600 (unsigned long long) pd
->port_rcvhdrq_phys
,
1601 pd
->port_rcvhdrtail_kvaddr
, (unsigned long long)
1602 pd
->port_rcvhdrqtailaddr_phys
);
1604 /* clear for security and sanity on each use */
1605 memset(pd
->port_rcvhdrq
, 0, pd
->port_rcvhdrq_size
);
1606 if (pd
->port_rcvhdrtail_kvaddr
)
1607 memset(pd
->port_rcvhdrtail_kvaddr
, 0, PAGE_SIZE
);
1610 * tell chip each time we init it, even if we are re-using previous
1611 * memory (we zero the register at process close)
1613 ipath_write_kreg_port(dd
, dd
->ipath_kregs
->kr_rcvhdrtailaddr
,
1614 pd
->port_port
, pd
->port_rcvhdrqtailaddr_phys
);
1615 ipath_write_kreg_port(dd
, dd
->ipath_kregs
->kr_rcvhdraddr
,
1616 pd
->port_port
, pd
->port_rcvhdrq_phys
);
1625 * Flush all sends that might be in the ready to send state, as well as any
1626 * that are in the process of being sent. Used whenever we need to be
1627 * sure the send side is idle. Cleans up all buffer state by canceling
1628 * all pio buffers, and issuing an abort, which cleans up anything in the
1629 * launch fifo. The cancel is superfluous on some chip versions, but
1630 * it's safer to always do it.
1631 * PIOAvail bits are updated by the chip as if normal send had happened.
1633 void ipath_cancel_sends(struct ipath_devdata
*dd
, int restore_sendctrl
)
1635 ipath_dbg("Cancelling all in-progress send buffers\n");
1636 dd
->ipath_lastcancel
= jiffies
+HZ
/2; /* skip armlaunch errs a bit */
1638 * the abort bit is auto-clearing. We read scratch to be sure
1639 * that cancels and the abort have taken effect in the chip.
1641 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
1642 INFINIPATH_S_ABORT
);
1643 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
1644 ipath_disarm_piobufs(dd
, 0,
1645 (unsigned)(dd
->ipath_piobcnt2k
+ dd
->ipath_piobcnt4k
));
1646 if (restore_sendctrl
) /* else done by caller later */
1647 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
,
1648 dd
->ipath_sendctrl
);
1650 /* and again, be sure all have hit the chip */
1651 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
1655 static void ipath_set_ib_lstate(struct ipath_devdata
*dd
, int which
)
1657 static const char *what
[4] = {
1659 [INFINIPATH_IBCC_LINKCMD_DOWN
] = "DOWN",
1660 [INFINIPATH_IBCC_LINKCMD_ARMED
] = "ARMED",
1661 [INFINIPATH_IBCC_LINKCMD_ACTIVE
] = "ACTIVE"
1663 int linkcmd
= (which
>> INFINIPATH_IBCC_LINKCMD_SHIFT
) &
1664 INFINIPATH_IBCC_LINKCMD_MASK
;
1666 ipath_cdbg(VERBOSE
, "Trying to move unit %u to %s, current ltstate "
1667 "is %s\n", dd
->ipath_unit
,
1669 ipath_ibcstatus_str
[
1671 (dd
, dd
->ipath_kregs
->kr_ibcstatus
) >>
1672 INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT
) &
1673 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK
]);
1674 /* flush all queued sends when going to DOWN to be sure that
1675 * they don't block MAD packets */
1676 if (linkcmd
== INFINIPATH_IBCC_LINKCMD_DOWN
)
1677 ipath_cancel_sends(dd
, 1);
1679 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
1680 dd
->ipath_ibcctrl
| which
);
1683 int ipath_set_linkstate(struct ipath_devdata
*dd
, u8 newstate
)
1689 case IPATH_IB_LINKDOWN_ONLY
:
1690 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_DOWN
<<
1691 INFINIPATH_IBCC_LINKCMD_SHIFT
);
1696 case IPATH_IB_LINKDOWN
:
1697 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKINITCMD_POLL
<<
1698 INFINIPATH_IBCC_LINKINITCMD_SHIFT
);
1703 case IPATH_IB_LINKDOWN_SLEEP
:
1704 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKINITCMD_SLEEP
<<
1705 INFINIPATH_IBCC_LINKINITCMD_SHIFT
);
1710 case IPATH_IB_LINKDOWN_DISABLE
:
1711 ipath_set_ib_lstate(dd
,
1712 INFINIPATH_IBCC_LINKINITCMD_DISABLE
<<
1713 INFINIPATH_IBCC_LINKINITCMD_SHIFT
);
1718 case IPATH_IB_LINKARM
:
1719 if (dd
->ipath_flags
& IPATH_LINKARMED
) {
1723 if (!(dd
->ipath_flags
&
1724 (IPATH_LINKINIT
| IPATH_LINKACTIVE
))) {
1728 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_ARMED
<<
1729 INFINIPATH_IBCC_LINKCMD_SHIFT
);
1731 * Since the port can transition to ACTIVE by receiving
1732 * a non VL 15 packet, wait for either state.
1734 lstate
= IPATH_LINKARMED
| IPATH_LINKACTIVE
;
1737 case IPATH_IB_LINKACTIVE
:
1738 if (dd
->ipath_flags
& IPATH_LINKACTIVE
) {
1742 if (!(dd
->ipath_flags
& IPATH_LINKARMED
)) {
1746 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKCMD_ACTIVE
<<
1747 INFINIPATH_IBCC_LINKCMD_SHIFT
);
1748 lstate
= IPATH_LINKACTIVE
;
1751 case IPATH_IB_LINK_LOOPBACK
:
1752 dev_info(&dd
->pcidev
->dev
, "Enabling IB local loopback\n");
1753 dd
->ipath_ibcctrl
|= INFINIPATH_IBCC_LOOPBACK
;
1754 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
1757 goto bail
; // no state change to wait for
1759 case IPATH_IB_LINK_EXTERNAL
:
1760 dev_info(&dd
->pcidev
->dev
, "Disabling IB local loopback (normal)\n");
1761 dd
->ipath_ibcctrl
&= ~INFINIPATH_IBCC_LOOPBACK
;
1762 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
1765 goto bail
; // no state change to wait for
1768 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate
);
1772 ret
= ipath_wait_linkstate(dd
, lstate
, 2000);
1779 * ipath_set_mtu - set the MTU
1780 * @dd: the infinipath device
1783 * we can handle "any" incoming size, the issue here is whether we
1784 * need to restrict our outgoing size. For now, we don't do any
1785 * sanity checking on this, and we don't deal with what happens to
1786 * programs that are already running when the size changes.
1787 * NOTE: changing the MTU will usually cause the IBC to go back to
1788 * link initialize (IPATH_IBSTATE_INIT) state...
1790 int ipath_set_mtu(struct ipath_devdata
*dd
, u16 arg
)
1797 * mtu is IB data payload max. It's the largest power of 2 less
1798 * than piosize (or even larger, since it only really controls the
1799 * largest we can receive; we can send the max of the mtu and
1800 * piosize). We check that it's one of the valid IB sizes.
1802 if (arg
!= 256 && arg
!= 512 && arg
!= 1024 && arg
!= 2048 &&
1804 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg
);
1808 if (dd
->ipath_ibmtu
== arg
) {
1809 ret
= 0; /* same as current */
1813 piosize
= dd
->ipath_ibmaxlen
;
1814 dd
->ipath_ibmtu
= arg
;
1816 if (arg
>= (piosize
- IPATH_PIO_MAXIBHDR
)) {
1817 /* Only if it's not the initial value (or reset to it) */
1818 if (piosize
!= dd
->ipath_init_ibmaxlen
) {
1819 dd
->ipath_ibmaxlen
= piosize
;
1822 } else if ((arg
+ IPATH_PIO_MAXIBHDR
) != dd
->ipath_ibmaxlen
) {
1823 piosize
= arg
+ IPATH_PIO_MAXIBHDR
;
1824 ipath_cdbg(VERBOSE
, "ibmaxlen was 0x%x, setting to 0x%x "
1825 "(mtu 0x%x)\n", dd
->ipath_ibmaxlen
, piosize
,
1827 dd
->ipath_ibmaxlen
= piosize
;
1833 * set the IBC maxpktlength to the size of our pio
1836 u64 ibc
= dd
->ipath_ibcctrl
;
1837 ibc
&= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK
<<
1838 INFINIPATH_IBCC_MAXPKTLEN_SHIFT
);
1840 piosize
= piosize
- 2 * sizeof(u32
); /* ignore pbc */
1841 dd
->ipath_ibmaxlen
= piosize
;
1842 piosize
/= sizeof(u32
); /* in words */
1844 * for ICRC, which we only send in diag test pkt mode, and
1845 * we don't need to worry about that for mtu
1849 ibc
|= piosize
<< INFINIPATH_IBCC_MAXPKTLEN_SHIFT
;
1850 dd
->ipath_ibcctrl
= ibc
;
1851 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_ibcctrl
,
1853 dd
->ipath_f_tidtemplate(dd
);
1862 int ipath_set_lid(struct ipath_devdata
*dd
, u32 arg
, u8 lmc
)
1864 dd
->ipath_lid
= arg
;
1865 dd
->ipath_lmc
= lmc
;
1872 * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
1873 * @dd: the infinipath device
1874 * @regno: the register number to write
1875 * @port: the port containing the register
1876 * @value: the value to write
1878 * Registers that vary with the chip implementation constants (port)
1881 void ipath_write_kreg_port(const struct ipath_devdata
*dd
, ipath_kreg regno
,
1882 unsigned port
, u64 value
)
1886 if (port
< dd
->ipath_portcnt
&&
1887 (regno
== dd
->ipath_kregs
->kr_rcvhdraddr
||
1888 regno
== dd
->ipath_kregs
->kr_rcvhdrtailaddr
))
1889 where
= regno
+ port
;
1893 ipath_write_kreg(dd
, where
, value
);
1897 * Following deal with the "obviously simple" task of overriding the state
1898 * of the LEDS, which normally indicate link physical and logical status.
1899 * The complications arise in dealing with different hardware mappings
1900 * and the board-dependent routine being called from interrupts.
1901 * and then there's the requirement to _flash_ them.
1903 #define LED_OVER_FREQ_SHIFT 8
1904 #define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
1905 /* Below is "non-zero" to force override, but both actual LEDs are off */
1906 #define LED_OVER_BOTH_OFF (8)
1908 static void ipath_run_led_override(unsigned long opaque
)
1910 struct ipath_devdata
*dd
= (struct ipath_devdata
*)opaque
;
1913 u64 lstate
, ltstate
, val
;
1915 if (!(dd
->ipath_flags
& IPATH_INITTED
))
1918 pidx
= dd
->ipath_led_override_phase
++ & 1;
1919 dd
->ipath_led_override
= dd
->ipath_led_override_vals
[pidx
];
1920 timeoff
= dd
->ipath_led_override_timeoff
;
1923 * below potentially restores the LED values per current status,
1924 * should also possibly setup the traffic-blink register,
1925 * but leave that to per-chip functions.
1927 val
= ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_ibcstatus
);
1928 ltstate
= (val
>> INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT
) &
1929 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK
;
1930 lstate
= (val
>> INFINIPATH_IBCS_LINKSTATE_SHIFT
) &
1931 INFINIPATH_IBCS_LINKSTATE_MASK
;
1933 dd
->ipath_f_setextled(dd
, lstate
, ltstate
);
1934 mod_timer(&dd
->ipath_led_override_timer
, jiffies
+ timeoff
);
1937 void ipath_set_led_override(struct ipath_devdata
*dd
, unsigned int val
)
1941 if (!(dd
->ipath_flags
& IPATH_INITTED
))
1944 /* First check if we are blinking. If not, use 1HZ polling */
1946 freq
= (val
& LED_OVER_FREQ_MASK
) >> LED_OVER_FREQ_SHIFT
;
1949 /* For blink, set each phase from one nybble of val */
1950 dd
->ipath_led_override_vals
[0] = val
& 0xF;
1951 dd
->ipath_led_override_vals
[1] = (val
>> 4) & 0xF;
1952 timeoff
= (HZ
<< 4)/freq
;
1954 /* Non-blink set both phases the same. */
1955 dd
->ipath_led_override_vals
[0] = val
& 0xF;
1956 dd
->ipath_led_override_vals
[1] = val
& 0xF;
1958 dd
->ipath_led_override_timeoff
= timeoff
;
1961 * If the timer has not already been started, do so. Use a "quick"
1962 * timeout so the function will be called soon, to look at our request.
1964 if (atomic_inc_return(&dd
->ipath_led_override_timer_active
) == 1) {
1965 /* Need to start timer */
1966 init_timer(&dd
->ipath_led_override_timer
);
1967 dd
->ipath_led_override_timer
.function
=
1968 ipath_run_led_override
;
1969 dd
->ipath_led_override_timer
.data
= (unsigned long) dd
;
1970 dd
->ipath_led_override_timer
.expires
= jiffies
+ 1;
1971 add_timer(&dd
->ipath_led_override_timer
);
1973 atomic_dec(&dd
->ipath_led_override_timer_active
);
1978 * ipath_shutdown_device - shut down a device
1979 * @dd: the infinipath device
1981 * This is called to make the device quiet when we are about to
1982 * unload the driver, and also when the device is administratively
1983 * disabled. It does not free any data structures.
1984 * Everything it does has to be setup again by ipath_init_chip(dd,1)
1986 void ipath_shutdown_device(struct ipath_devdata
*dd
)
1988 unsigned long flags
;
1990 ipath_dbg("Shutting down the device\n");
1992 dd
->ipath_flags
|= IPATH_LINKUNK
;
1993 dd
->ipath_flags
&= ~(IPATH_INITTED
| IPATH_LINKDOWN
|
1994 IPATH_LINKINIT
| IPATH_LINKARMED
|
1996 *dd
->ipath_statusp
&= ~(IPATH_STATUS_IB_CONF
|
1997 IPATH_STATUS_IB_READY
);
1999 /* mask interrupts, but not errors */
2000 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_intmask
, 0ULL);
2002 dd
->ipath_rcvctrl
= 0;
2003 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_rcvctrl
,
2007 * gracefully stop all sends allowing any in progress to trickle out
2010 spin_lock_irqsave(&dd
->ipath_sendctrl_lock
, flags
);
2011 dd
->ipath_sendctrl
= 0;
2012 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_sendctrl
, dd
->ipath_sendctrl
);
2014 ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_scratch
);
2015 spin_unlock_irqrestore(&dd
->ipath_sendctrl_lock
, flags
);
2018 * enough for anything that's going to trickle out to have actually
2023 ipath_set_ib_lstate(dd
, INFINIPATH_IBCC_LINKINITCMD_DISABLE
<<
2024 INFINIPATH_IBCC_LINKINITCMD_SHIFT
);
2025 ipath_cancel_sends(dd
, 0);
2027 signal_ib_event(dd
, IB_EVENT_PORT_ERR
);
2030 dd
->ipath_control
&= ~INFINIPATH_C_LINKENABLE
;
2031 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_control
,
2032 dd
->ipath_control
| INFINIPATH_C_FREEZEMODE
);
2035 * clear SerdesEnable and turn the leds off; do this here because
2036 * we are unloading, so don't count on interrupts to move along
2037 * Turn the LEDs off explictly for the same reason.
2039 dd
->ipath_f_quiet_serdes(dd
);
2041 if (dd
->ipath_stats_timer_active
) {
2042 del_timer_sync(&dd
->ipath_stats_timer
);
2043 dd
->ipath_stats_timer_active
= 0;
2047 * clear all interrupts and errors, so that the next time the driver
2048 * is loaded or device is enabled, we know that whatever is set
2049 * happened while we were unloaded
2051 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_hwerrclear
,
2052 ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED
);
2053 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errorclear
, -1LL);
2054 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_intclear
, -1LL);
2056 ipath_cdbg(VERBOSE
, "Flush time and errors to EEPROM\n");
2057 ipath_update_eeprom_log(dd
);
2061 * ipath_free_pddata - free a port's allocated data
2062 * @dd: the infinipath device
2063 * @pd: the portdata structure
2065 * free up any allocated data for a port
2066 * This should not touch anything that would affect a simultaneous
2067 * re-allocation of port data, because it is called after ipath_mutex
2068 * is released (and can be called from reinit as well).
2069 * It should never change any chip state, or global driver state.
2070 * (The only exception to global state is freeing the port0 port0_skbs.)
2072 void ipath_free_pddata(struct ipath_devdata
*dd
, struct ipath_portdata
*pd
)
2077 if (pd
->port_rcvhdrq
) {
2078 ipath_cdbg(VERBOSE
, "free closed port %d rcvhdrq @ %p "
2079 "(size=%lu)\n", pd
->port_port
, pd
->port_rcvhdrq
,
2080 (unsigned long) pd
->port_rcvhdrq_size
);
2081 dma_free_coherent(&dd
->pcidev
->dev
, pd
->port_rcvhdrq_size
,
2082 pd
->port_rcvhdrq
, pd
->port_rcvhdrq_phys
);
2083 pd
->port_rcvhdrq
= NULL
;
2084 if (pd
->port_rcvhdrtail_kvaddr
) {
2085 dma_free_coherent(&dd
->pcidev
->dev
, PAGE_SIZE
,
2086 pd
->port_rcvhdrtail_kvaddr
,
2087 pd
->port_rcvhdrqtailaddr_phys
);
2088 pd
->port_rcvhdrtail_kvaddr
= NULL
;
2091 if (pd
->port_port
&& pd
->port_rcvegrbuf
) {
2094 for (e
= 0; e
< pd
->port_rcvegrbuf_chunks
; e
++) {
2095 void *base
= pd
->port_rcvegrbuf
[e
];
2096 size_t size
= pd
->port_rcvegrbuf_size
;
2098 ipath_cdbg(VERBOSE
, "egrbuf free(%p, %lu), "
2099 "chunk %u/%u\n", base
,
2100 (unsigned long) size
,
2101 e
, pd
->port_rcvegrbuf_chunks
);
2102 dma_free_coherent(&dd
->pcidev
->dev
, size
,
2103 base
, pd
->port_rcvegrbuf_phys
[e
]);
2105 kfree(pd
->port_rcvegrbuf
);
2106 pd
->port_rcvegrbuf
= NULL
;
2107 kfree(pd
->port_rcvegrbuf_phys
);
2108 pd
->port_rcvegrbuf_phys
= NULL
;
2109 pd
->port_rcvegrbuf_chunks
= 0;
2110 } else if (pd
->port_port
== 0 && dd
->ipath_port0_skbinfo
) {
2112 struct ipath_skbinfo
*skbinfo
= dd
->ipath_port0_skbinfo
;
2114 dd
->ipath_port0_skbinfo
= NULL
;
2115 ipath_cdbg(VERBOSE
, "free closed port %d "
2116 "ipath_port0_skbinfo @ %p\n", pd
->port_port
,
2118 for (e
= 0; e
< dd
->ipath_rcvegrcnt
; e
++)
2119 if (skbinfo
[e
].skb
) {
2120 pci_unmap_single(dd
->pcidev
, skbinfo
[e
].phys
,
2122 PCI_DMA_FROMDEVICE
);
2123 dev_kfree_skb(skbinfo
[e
].skb
);
2127 kfree(pd
->port_tid_pg_list
);
2128 vfree(pd
->subport_uregbase
);
2129 vfree(pd
->subport_rcvegrbuf
);
2130 vfree(pd
->subport_rcvhdr_base
);
2134 static int __init
infinipath_init(void)
2138 if (ipath_debug
& __IPATH_DBG
)
2139 printk(KERN_INFO DRIVER_LOAD_MSG
"%s", ib_ipath_version
);
2142 * These must be called before the driver is registered with
2143 * the PCI subsystem.
2145 idr_init(&unit_table
);
2146 if (!idr_pre_get(&unit_table
, GFP_KERNEL
)) {
2151 ret
= pci_register_driver(&ipath_driver
);
2153 printk(KERN_ERR IPATH_DRV_NAME
2154 ": Unable to register driver: error %d\n", -ret
);
2158 ret
= ipath_init_ipathfs();
2160 printk(KERN_ERR IPATH_DRV_NAME
": Unable to create "
2161 "ipathfs: error %d\n", -ret
);
2168 pci_unregister_driver(&ipath_driver
);
2171 idr_destroy(&unit_table
);
2177 static void __exit
infinipath_cleanup(void)
2179 ipath_exit_ipathfs();
2181 ipath_cdbg(VERBOSE
, "Unregistering pci driver\n");
2182 pci_unregister_driver(&ipath_driver
);
2184 idr_destroy(&unit_table
);
2188 * ipath_reset_device - reset the chip if possible
2189 * @unit: the device to reset
2191 * Whether or not reset is successful, we attempt to re-initialize the chip
2192 * (that is, much like a driver unload/reload). We clear the INITTED flag
2193 * so that the various entry points will fail until we reinitialize. For
2194 * now, we only allow this if no user ports are open that use chip resources
2196 int ipath_reset_device(int unit
)
2199 struct ipath_devdata
*dd
= ipath_lookup(unit
);
2206 if (atomic_read(&dd
->ipath_led_override_timer_active
)) {
2207 /* Need to stop LED timer, _then_ shut off LEDs */
2208 del_timer_sync(&dd
->ipath_led_override_timer
);
2209 atomic_set(&dd
->ipath_led_override_timer_active
, 0);
2212 /* Shut off LEDs after we are sure timer is not running */
2213 dd
->ipath_led_override
= LED_OVER_BOTH_OFF
;
2214 dd
->ipath_f_setextled(dd
, 0, 0);
2216 dev_info(&dd
->pcidev
->dev
, "Reset on unit %u requested\n", unit
);
2218 if (!dd
->ipath_kregbase
|| !(dd
->ipath_flags
& IPATH_PRESENT
)) {
2219 dev_info(&dd
->pcidev
->dev
, "Invalid unit number %u or "
2220 "not initialized or not present\n", unit
);
2226 for (i
= 1; i
< dd
->ipath_cfgports
; i
++) {
2227 if (dd
->ipath_pd
[i
] && dd
->ipath_pd
[i
]->port_cnt
) {
2228 ipath_dbg("unit %u port %d is in use "
2229 "(PID %u cmd %s), can't reset\n",
2231 dd
->ipath_pd
[i
]->port_pid
,
2232 dd
->ipath_pd
[i
]->port_comm
);
2238 dd
->ipath_flags
&= ~IPATH_INITTED
;
2239 ret
= dd
->ipath_f_reset(dd
);
2241 ipath_dbg("reset was not successful\n");
2242 ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2244 ret
= ipath_init_chip(dd
, 1);
2246 ipath_dev_err(dd
, "Reinitialize unit %u after "
2247 "reset failed with %d\n", unit
, ret
);
2249 dev_info(&dd
->pcidev
->dev
, "Reinitialized unit %u after "
2250 "resetting\n", unit
);
2256 int ipath_set_rx_pol_inv(struct ipath_devdata
*dd
, u8 new_pol_inv
)
2259 if ( new_pol_inv
> INFINIPATH_XGXS_RX_POL_MASK
) {
2262 if ( dd
->ipath_rx_pol_inv
!= new_pol_inv
) {
2263 dd
->ipath_rx_pol_inv
= new_pol_inv
;
2264 val
= ipath_read_kreg64(dd
, dd
->ipath_kregs
->kr_xgxsconfig
);
2265 val
&= ~(INFINIPATH_XGXS_RX_POL_MASK
<<
2266 INFINIPATH_XGXS_RX_POL_SHIFT
);
2267 val
|= ((u64
)dd
->ipath_rx_pol_inv
) <<
2268 INFINIPATH_XGXS_RX_POL_SHIFT
;
2269 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_xgxsconfig
, val
);
2275 * Disable and enable the armlaunch error. Used for PIO bandwidth testing on
2276 * the 7220, which is count-based, rather than trigger-based. Safe for the
2277 * driver check, since it's at init. Not completely safe when used for
2278 * user-mode checking, since some error checking can be lost, but not
2279 * particularly risky, and only has problematic side-effects in the face of
2280 * very buggy user code. There is no reference counting, but that's also
2281 * fine, given the intended use.
2283 void ipath_enable_armlaunch(struct ipath_devdata
*dd
)
2285 dd
->ipath_lasterror
&= ~INFINIPATH_E_SPIOARMLAUNCH
;
2286 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errorclear
,
2287 INFINIPATH_E_SPIOARMLAUNCH
);
2288 dd
->ipath_errormask
|= INFINIPATH_E_SPIOARMLAUNCH
;
2289 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errormask
,
2290 dd
->ipath_errormask
);
2293 void ipath_disable_armlaunch(struct ipath_devdata
*dd
)
2295 /* so don't re-enable if already set */
2296 dd
->ipath_maskederrs
&= ~INFINIPATH_E_SPIOARMLAUNCH
;
2297 dd
->ipath_errormask
&= ~INFINIPATH_E_SPIOARMLAUNCH
;
2298 ipath_write_kreg(dd
, dd
->ipath_kregs
->kr_errormask
,
2299 dd
->ipath_errormask
);
2302 module_init(infinipath_init
);
2303 module_exit(infinipath_cleanup
);