blob: 5e1dcb3dbc577f133b6af869545d823c2f3e1338 [file] [log] [blame]
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001/*
John Gregor87427da2007-06-11 10:21:14 -07002 * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08003 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
4 *
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:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
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.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34#include <linux/spinlock.h>
35#include <linux/idr.h>
36#include <linux/pci.h>
Dave Olson9bec3992007-06-01 13:01:47 -070037#include <linux/io.h>
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080038#include <linux/delay.h>
39#include <linux/netdevice.h>
40#include <linux/vmalloc.h>
41
42#include "ipath_kernel.h"
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -070043#include "ipath_verbs.h"
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080044
45static void ipath_update_pio_bufs(struct ipath_devdata *);
46
47const char *ipath_get_unit_name(int unit)
48{
49 static char iname[16];
50 snprintf(iname, sizeof iname, "infinipath%u", unit);
51 return iname;
52}
53
Bryan O'Sullivan759d5762006-07-01 04:35:49 -070054#define DRIVER_LOAD_MSG "QLogic " IPATH_DRV_NAME " loaded: "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080055#define PFX IPATH_DRV_NAME ": "
56
57/*
58 * The size has to be longer than this string, so we can append
59 * board/chip information to it in the init code.
60 */
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -070061const char ib_ipath_version[] = IPATH_IDSTR "\n";
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080062
63static struct idr unit_table;
64DEFINE_SPINLOCK(ipath_devs_lock);
65LIST_HEAD(ipath_dev_list);
66
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -070067wait_queue_head_t ipath_state_wait;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080068
69unsigned ipath_debug = __IPATH_INFO;
70
71module_param_named(debug, ipath_debug, uint, S_IWUSR | S_IRUGO);
72MODULE_PARM_DESC(debug, "mask for debug prints");
73EXPORT_SYMBOL_GPL(ipath_debug);
74
Dave Olson826d8012008-04-16 21:01:12 -070075unsigned ipath_mtu4096 = 1; /* max 4KB IB mtu by default, if supported */
76module_param_named(mtu4096, ipath_mtu4096, uint, S_IRUGO);
77MODULE_PARM_DESC(mtu4096, "enable MTU of 4096 bytes, if supported");
78
John Gregor58411d12008-04-16 21:09:24 -070079static unsigned ipath_hol_timeout_ms = 13000;
80module_param_named(hol_timeout_ms, ipath_hol_timeout_ms, uint, S_IRUGO);
81MODULE_PARM_DESC(hol_timeout_ms,
82 "duration of user app suspension after link failure");
83
Dave Olson72708a02008-04-16 21:09:25 -070084unsigned ipath_linkrecovery = 1;
85module_param_named(linkrecovery, ipath_linkrecovery, uint, S_IWUSR | S_IRUGO);
86MODULE_PARM_DESC(linkrecovery, "enable workaround for link recovery issue");
87
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080088MODULE_LICENSE("GPL");
Ralph Campbell928e3e42008-04-16 21:09:26 -070089MODULE_AUTHOR("QLogic <support@qlogic.com>");
Bryan O'Sullivan759d5762006-07-01 04:35:49 -070090MODULE_DESCRIPTION("QLogic InfiniPath driver");
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080091
92const char *ipath_ibcstatus_str[] = {
93 "Disabled",
94 "LinkUp",
95 "PollActive",
96 "PollQuiet",
97 "SleepDelay",
98 "SleepQuiet",
99 "LState6", /* unused */
100 "LState7", /* unused */
101 "CfgDebounce",
102 "CfgRcvfCfg",
103 "CfgWaitRmt",
104 "CfgIdle",
105 "RecovRetrain",
106 "LState0xD", /* unused */
107 "RecovWaitRmt",
108 "RecovIdle",
109};
110
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800111static void __devexit ipath_remove_one(struct pci_dev *);
112static int __devinit ipath_init_one(struct pci_dev *,
113 const struct pci_device_id *);
114
115/* Only needed for registration, nothing else needs this info */
116#define PCI_VENDOR_ID_PATHSCALE 0x1fc1
117#define PCI_DEVICE_ID_INFINIPATH_HT 0xd
118#define PCI_DEVICE_ID_INFINIPATH_PE800 0x10
119
Arthur Jones35884232007-07-06 12:48:53 -0700120/* Number of seconds before our card status check... */
121#define STATUS_TIMEOUT 60
122
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800123static const struct pci_device_id ipath_pci_tbl[] = {
Roland Dreier6f4bb3d2006-05-12 14:57:52 -0700124 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_HT) },
125 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_PE800) },
126 { 0, }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800127};
128
129MODULE_DEVICE_TABLE(pci, ipath_pci_tbl);
130
131static struct pci_driver ipath_driver = {
132 .name = IPATH_DRV_NAME,
133 .probe = ipath_init_one,
134 .remove = __devexit_p(ipath_remove_one),
135 .id_table = ipath_pci_tbl,
Greg Kroah-Hartman23b9c1a2007-12-04 22:53:16 -0800136 .driver = {
137 .groups = ipath_driver_attr_groups,
138 },
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800139};
140
Arthur Jones35884232007-07-06 12:48:53 -0700141static void ipath_check_status(struct work_struct *work)
142{
143 struct ipath_devdata *dd = container_of(work, struct ipath_devdata,
144 status_work.work);
145
146 /*
147 * If we don't have any interrupts, let the user know and
148 * don't bother checking again.
149 */
150 if (dd->ipath_int_counter == 0)
151 dev_err(&dd->pcidev->dev, "No interrupts detected.\n");
152}
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800153
154static inline void read_bars(struct ipath_devdata *dd, struct pci_dev *dev,
155 u32 *bar0, u32 *bar1)
156{
157 int ret;
158
159 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, bar0);
160 if (ret)
161 ipath_dev_err(dd, "failed to read bar0 before enable: "
162 "error %d\n", -ret);
163
164 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, bar1);
165 if (ret)
166 ipath_dev_err(dd, "failed to read bar1 before enable: "
167 "error %d\n", -ret);
168
169 ipath_dbg("Read bar0 %x bar1 %x\n", *bar0, *bar1);
170}
171
172static void ipath_free_devdata(struct pci_dev *pdev,
173 struct ipath_devdata *dd)
174{
175 unsigned long flags;
176
177 pci_set_drvdata(pdev, NULL);
178
179 if (dd->ipath_unit != -1) {
180 spin_lock_irqsave(&ipath_devs_lock, flags);
181 idr_remove(&unit_table, dd->ipath_unit);
182 list_del(&dd->ipath_list);
183 spin_unlock_irqrestore(&ipath_devs_lock, flags);
184 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700185 vfree(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800186}
187
188static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
189{
190 unsigned long flags;
191 struct ipath_devdata *dd;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800192 int ret;
193
194 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
195 dd = ERR_PTR(-ENOMEM);
196 goto bail;
197 }
198
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700199 dd = vmalloc(sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800200 if (!dd) {
201 dd = ERR_PTR(-ENOMEM);
202 goto bail;
203 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700204 memset(dd, 0, sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800205 dd->ipath_unit = -1;
206
207 spin_lock_irqsave(&ipath_devs_lock, flags);
208
209 ret = idr_get_new(&unit_table, dd, &dd->ipath_unit);
210 if (ret < 0) {
211 printk(KERN_ERR IPATH_DRV_NAME
212 ": Could not allocate unit ID: error %d\n", -ret);
213 ipath_free_devdata(pdev, dd);
214 dd = ERR_PTR(ret);
215 goto bail_unlock;
216 }
217
218 dd->pcidev = pdev;
219 pci_set_drvdata(pdev, dd);
220
Arthur Jones35884232007-07-06 12:48:53 -0700221 INIT_DELAYED_WORK(&dd->status_work, ipath_check_status);
222
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800223 list_add(&dd->ipath_list, &ipath_dev_list);
224
225bail_unlock:
226 spin_unlock_irqrestore(&ipath_devs_lock, flags);
227
228bail:
229 return dd;
230}
231
232static inline struct ipath_devdata *__ipath_lookup(int unit)
233{
234 return idr_find(&unit_table, unit);
235}
236
237struct ipath_devdata *ipath_lookup(int unit)
238{
239 struct ipath_devdata *dd;
240 unsigned long flags;
241
242 spin_lock_irqsave(&ipath_devs_lock, flags);
243 dd = __ipath_lookup(unit);
244 spin_unlock_irqrestore(&ipath_devs_lock, flags);
245
246 return dd;
247}
248
Arthur Jones6ef6aee2008-04-16 21:01:06 -0700249int ipath_count_units(int *npresentp, int *nupp, int *maxportsp)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800250{
251 int nunits, npresent, nup;
252 struct ipath_devdata *dd;
253 unsigned long flags;
Arthur Jones6ef6aee2008-04-16 21:01:06 -0700254 int maxports;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800255
256 nunits = npresent = nup = maxports = 0;
257
258 spin_lock_irqsave(&ipath_devs_lock, flags);
259
260 list_for_each_entry(dd, &ipath_dev_list, ipath_list) {
261 nunits++;
262 if ((dd->ipath_flags & IPATH_PRESENT) && dd->ipath_kregbase)
263 npresent++;
264 if (dd->ipath_lid &&
265 !(dd->ipath_flags & (IPATH_DISABLED | IPATH_LINKDOWN
266 | IPATH_LINKUNK)))
267 nup++;
268 if (dd->ipath_cfgports > maxports)
269 maxports = dd->ipath_cfgports;
270 }
271
272 spin_unlock_irqrestore(&ipath_devs_lock, flags);
273
274 if (npresentp)
275 *npresentp = npresent;
276 if (nupp)
277 *nupp = nup;
278 if (maxportsp)
279 *maxportsp = maxports;
280
281 return nunits;
282}
283
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800284/*
285 * These next two routines are placeholders in case we don't have per-arch
286 * code for controlling write combining. If explicit control of write
287 * combining is not available, performance will probably be awful.
288 */
289
290int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd)
291{
292 return -EOPNOTSUPP;
293}
294
295void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd)
296{
297}
298
Dave Olson9bec3992007-06-01 13:01:47 -0700299/*
300 * Perform a PIO buffer bandwidth write test, to verify proper system
301 * configuration. Even when all the setup calls work, occasionally
302 * BIOS or other issues can prevent write combining from working, or
303 * can cause other bandwidth problems to the chip.
304 *
305 * This test simply writes the same buffer over and over again, and
306 * measures close to the peak bandwidth to the chip (not testing
307 * data bandwidth to the wire). On chips that use an address-based
308 * trigger to send packets to the wire, this is easy. On chips that
309 * use a count to trigger, we want to make sure that the packet doesn't
310 * go out on the wire, or trigger flow control checks.
311 */
312static void ipath_verify_pioperf(struct ipath_devdata *dd)
313{
314 u32 pbnum, cnt, lcnt;
315 u32 __iomem *piobuf;
316 u32 *addr;
317 u64 msecs, emsecs;
318
Ralph Campbellc4b4d162008-04-16 21:09:26 -0700319 piobuf = ipath_getpiobuf(dd, 0, &pbnum);
Dave Olson9bec3992007-06-01 13:01:47 -0700320 if (!piobuf) {
321 dev_info(&dd->pcidev->dev,
322 "No PIObufs for checking perf, skipping\n");
323 return;
324 }
325
326 /*
327 * Enough to give us a reasonable test, less than piobuf size, and
328 * likely multiple of store buffer length.
329 */
330 cnt = 1024;
331
332 addr = vmalloc(cnt);
333 if (!addr) {
334 dev_info(&dd->pcidev->dev,
335 "Couldn't get memory for checking PIO perf,"
336 " skipping\n");
337 goto done;
338 }
339
340 preempt_disable(); /* we want reasonably accurate elapsed time */
341 msecs = 1 + jiffies_to_msecs(jiffies);
342 for (lcnt = 0; lcnt < 10000U; lcnt++) {
343 /* wait until we cross msec boundary */
344 if (jiffies_to_msecs(jiffies) >= msecs)
345 break;
346 udelay(1);
347 }
348
Dave Olson6ac50722007-08-09 03:11:38 -0700349 ipath_disable_armlaunch(dd);
350
Dave Olson9bec3992007-06-01 13:01:47 -0700351 writeq(0, piobuf); /* length 0, no dwords actually sent */
352 ipath_flush_wc();
353
354 /*
355 * this is only roughly accurate, since even with preempt we
356 * still take interrupts that could take a while. Running for
357 * >= 5 msec seems to get us "close enough" to accurate values
358 */
359 msecs = jiffies_to_msecs(jiffies);
360 for (emsecs = lcnt = 0; emsecs <= 5UL; lcnt++) {
361 __iowrite32_copy(piobuf + 64, addr, cnt >> 2);
362 emsecs = jiffies_to_msecs(jiffies) - msecs;
363 }
364
365 /* 1 GiB/sec, slightly over IB SDR line rate */
366 if (lcnt < (emsecs * 1024U))
367 ipath_dev_err(dd,
368 "Performance problem: bandwidth to PIO buffers is "
369 "only %u MiB/sec\n",
370 lcnt / (u32) emsecs);
371 else
372 ipath_dbg("PIO buffer bandwidth %u MiB/sec is OK\n",
373 lcnt / (u32) emsecs);
374
375 preempt_enable();
376
377 vfree(addr);
378
379done:
380 /* disarm piobuf, so it's available again */
381 ipath_disarm_piobufs(dd, pbnum, 1);
Dave Olson6ac50722007-08-09 03:11:38 -0700382 ipath_enable_armlaunch(dd);
Dave Olson9bec3992007-06-01 13:01:47 -0700383}
384
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800385static int __devinit ipath_init_one(struct pci_dev *pdev,
386 const struct pci_device_id *ent)
387{
388 int ret, len, j;
389 struct ipath_devdata *dd;
390 unsigned long long addr;
391 u32 bar0 = 0, bar1 = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800392
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800393 dd = ipath_alloc_devdata(pdev);
394 if (IS_ERR(dd)) {
395 ret = PTR_ERR(dd);
396 printk(KERN_ERR IPATH_DRV_NAME
397 ": Could not allocate devdata: error %d\n", -ret);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700398 goto bail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800399 }
400
401 ipath_cdbg(VERBOSE, "initializing unit #%u\n", dd->ipath_unit);
402
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800403 ret = pci_enable_device(pdev);
404 if (ret) {
405 /* This can happen iff:
406 *
407 * We did a chip reset, and then failed to reprogram the
408 * BAR, or the chip reset due to an internal error. We then
409 * unloaded the driver and reloaded it.
410 *
411 * Both reset cases set the BAR back to initial state. For
412 * the latter case, the AER sticky error bit at offset 0x718
413 * should be set, but the Linux kernel doesn't yet know
414 * about that, it appears. If the original BAR was retained
415 * in the kernel data structures, this may be OK.
416 */
417 ipath_dev_err(dd, "enable unit %d failed: error %d\n",
418 dd->ipath_unit, -ret);
419 goto bail_devdata;
420 }
421 addr = pci_resource_start(pdev, 0);
422 len = pci_resource_len(pdev, 0);
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800423 ipath_cdbg(VERBOSE, "regbase (0) %llx len %d pdev->irq %d, vend %x/%x "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800424 "driver_data %lx\n", addr, len, pdev->irq, ent->vendor,
425 ent->device, ent->driver_data);
426
427 read_bars(dd, pdev, &bar0, &bar1);
428
429 if (!bar1 && !(bar0 & ~0xf)) {
430 if (addr) {
431 dev_info(&pdev->dev, "BAR is 0 (probable RESET), "
432 "rewriting as %llx\n", addr);
433 ret = pci_write_config_dword(
434 pdev, PCI_BASE_ADDRESS_0, addr);
435 if (ret) {
436 ipath_dev_err(dd, "rewrite of BAR0 "
437 "failed: err %d\n", -ret);
438 goto bail_disable;
439 }
440 ret = pci_write_config_dword(
441 pdev, PCI_BASE_ADDRESS_1, addr >> 32);
442 if (ret) {
443 ipath_dev_err(dd, "rewrite of BAR1 "
444 "failed: err %d\n", -ret);
445 goto bail_disable;
446 }
447 } else {
448 ipath_dev_err(dd, "BAR is 0 (probable RESET), "
449 "not usable until reboot\n");
450 ret = -ENODEV;
451 goto bail_disable;
452 }
453 }
454
455 ret = pci_request_regions(pdev, IPATH_DRV_NAME);
456 if (ret) {
457 dev_info(&pdev->dev, "pci_request_regions unit %u fails: "
458 "err %d\n", dd->ipath_unit, -ret);
459 goto bail_disable;
460 }
461
462 ret = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
463 if (ret) {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700464 /*
465 * if the 64 bit setup fails, try 32 bit. Some systems
466 * do not setup 64 bit maps on systems with 2GB or less
467 * memory installed.
468 */
469 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
470 if (ret) {
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700471 dev_info(&pdev->dev,
472 "Unable to set DMA mask for unit %u: %d\n",
473 dd->ipath_unit, ret);
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700474 goto bail_regions;
475 }
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700476 else {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700477 ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700478 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
479 if (ret)
480 dev_info(&pdev->dev,
481 "Unable to set DMA consistent mask "
482 "for unit %u: %d\n",
483 dd->ipath_unit, ret);
484
485 }
486 }
487 else {
488 ret = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
489 if (ret)
490 dev_info(&pdev->dev,
491 "Unable to set DMA consistent mask "
492 "for unit %u: %d\n",
493 dd->ipath_unit, ret);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800494 }
495
496 pci_set_master(pdev);
497
498 /*
499 * Save BARs to rewrite after device reset. Save all 64 bits of
500 * BAR, just in case.
501 */
502 dd->ipath_pcibar0 = addr;
503 dd->ipath_pcibar1 = addr >> 32;
504 dd->ipath_deviceid = ent->device; /* save for later use */
505 dd->ipath_vendorid = ent->vendor;
506
507 /* setup the chip-specific functions, as early as possible. */
508 switch (ent->device) {
509 case PCI_DEVICE_ID_INFINIPATH_HT:
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700510#ifdef CONFIG_HT_IRQ
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700511 ipath_init_iba6110_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800512 break;
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700513#else
514 ipath_dev_err(dd, "QLogic HT device 0x%x cannot work if "
515 "CONFIG_HT_IRQ is not enabled\n", ent->device);
516 return -ENODEV;
Bryan O'Sullivane757bef2006-11-16 01:19:19 -0800517#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800518 case PCI_DEVICE_ID_INFINIPATH_PE800:
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700519#ifdef CONFIG_PCI_MSI
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700520 ipath_init_iba6120_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800521 break;
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700522#else
523 ipath_dev_err(dd, "QLogic PCIE device 0x%x cannot work if "
524 "CONFIG_PCI_MSI is not enabled\n", ent->device);
525 return -ENODEV;
Bryan O'Sullivane757bef2006-11-16 01:19:19 -0800526#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800527 default:
Bryan O'Sullivan759d5762006-07-01 04:35:49 -0700528 ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800529 "failing\n", ent->device);
530 return -ENODEV;
531 }
532
533 for (j = 0; j < 6; j++) {
534 if (!pdev->resource[j].start)
535 continue;
Greg Kroah-Hartmane29419f2006-06-12 15:20:16 -0700536 ipath_cdbg(VERBOSE, "BAR %d start %llx, end %llx, len %llx\n",
537 j, (unsigned long long)pdev->resource[j].start,
538 (unsigned long long)pdev->resource[j].end,
539 (unsigned long long)pci_resource_len(pdev, j));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800540 }
541
542 if (!addr) {
543 ipath_dev_err(dd, "No valid address in BAR 0!\n");
544 ret = -ENODEV;
545 goto bail_regions;
546 }
547
Auke Kok44c10132007-06-08 15:46:36 -0700548 dd->ipath_pcirev = pdev->revision;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800549
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700550#if defined(__powerpc__)
551 /* There isn't a generic way to specify writethrough mappings */
552 dd->ipath_kregbase = __ioremap(addr, len,
553 (_PAGE_NO_CACHE|_PAGE_WRITETHRU));
554#else
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800555 dd->ipath_kregbase = ioremap_nocache(addr, len);
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700556#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800557
558 if (!dd->ipath_kregbase) {
559 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
560 addr);
561 ret = -ENOMEM;
562 goto bail_iounmap;
563 }
564 dd->ipath_kregend = (u64 __iomem *)
565 ((void __iomem *)dd->ipath_kregbase + len);
566 dd->ipath_physaddr = addr; /* used for io_remap, etc. */
567 /* for user mmap */
Bryan O'Sullivanb35f0042006-07-01 04:35:59 -0700568 ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
569 addr, dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800570
571 /*
572 * clear ipath_flags here instead of in ipath_init_chip as it is set
573 * by ipath_setup_htconfig.
574 */
575 dd->ipath_flags = 0;
Bryan O'Sullivanfba75202006-07-01 04:36:09 -0700576 dd->ipath_lli_counter = 0;
577 dd->ipath_lli_errors = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800578
579 if (dd->ipath_f_bus(dd, pdev))
580 ipath_dev_err(dd, "Failed to setup config space; "
581 "continuing anyway\n");
582
583 /*
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700584 * set up our interrupt handler; IRQF_SHARED probably not needed,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800585 * since MSI interrupts shouldn't be shared but won't hurt for now.
586 * check 0 irq after we return from chip-specific bus setup, since
587 * that can affect this due to setup
588 */
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800589 if (!dd->ipath_irq)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800590 ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't "
591 "work\n");
592 else {
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800593 ret = request_irq(dd->ipath_irq, ipath_intr, IRQF_SHARED,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800594 IPATH_DRV_NAME, dd);
595 if (ret) {
596 ipath_dev_err(dd, "Couldn't setup irq handler, "
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800597 "irq=%d: %d\n", dd->ipath_irq, ret);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800598 goto bail_iounmap;
599 }
600 }
601
602 ret = ipath_init_chip(dd, 0); /* do the chip-specific init */
603 if (ret)
Arthur Jones7b196e22007-03-15 14:45:04 -0700604 goto bail_irqsetup;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800605
606 ret = ipath_enable_wc(dd);
607
608 if (ret) {
609 ipath_dev_err(dd, "Write combining not enabled "
610 "(err %d): performance may be poor\n",
611 -ret);
612 ret = 0;
613 }
614
Dave Olson9bec3992007-06-01 13:01:47 -0700615 ipath_verify_pioperf(dd);
616
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800617 ipath_device_create_group(&pdev->dev, dd);
618 ipathfs_add_device(dd);
619 ipath_user_add(dd);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700620 ipath_diag_add(dd);
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700621 ipath_register_ib_device(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800622
Arthur Jones35884232007-07-06 12:48:53 -0700623 /* Check that card status in STATUS_TIMEOUT seconds. */
624 schedule_delayed_work(&dd->status_work, HZ * STATUS_TIMEOUT);
625
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800626 goto bail;
627
Arthur Jones7b196e22007-03-15 14:45:04 -0700628bail_irqsetup:
Ralph Campbell2ba3f562008-04-16 21:09:29 -0700629 if (pdev->irq)
630 free_irq(pdev->irq, dd);
Arthur Jones7b196e22007-03-15 14:45:04 -0700631
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800632bail_iounmap:
633 iounmap((volatile void __iomem *) dd->ipath_kregbase);
634
635bail_regions:
636 pci_release_regions(pdev);
637
638bail_disable:
639 pci_disable_device(pdev);
640
641bail_devdata:
642 ipath_free_devdata(pdev, dd);
643
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800644bail:
645 return ret;
646}
647
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700648static void __devexit cleanup_device(struct ipath_devdata *dd)
649{
650 int port;
651
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700652 if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
653 /* can't do anything more with chip; needs re-init */
654 *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
655 if (dd->ipath_kregbase) {
656 /*
657 * if we haven't already cleaned up before these are
658 * to ensure any register reads/writes "fail" until
659 * re-init
660 */
661 dd->ipath_kregbase = NULL;
662 dd->ipath_uregbase = 0;
663 dd->ipath_sregbase = 0;
664 dd->ipath_cregbase = 0;
665 dd->ipath_kregsize = 0;
666 }
667 ipath_disable_wc(dd);
668 }
669
670 if (dd->ipath_pioavailregs_dma) {
671 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
672 (void *) dd->ipath_pioavailregs_dma,
673 dd->ipath_pioavailregs_phys);
674 dd->ipath_pioavailregs_dma = NULL;
675 }
676 if (dd->ipath_dummy_hdrq) {
677 dma_free_coherent(&dd->pcidev->dev,
678 dd->ipath_pd[0]->port_rcvhdrq_size,
679 dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
680 dd->ipath_dummy_hdrq = NULL;
681 }
682
683 if (dd->ipath_pageshadow) {
684 struct page **tmpp = dd->ipath_pageshadow;
685 dma_addr_t *tmpd = dd->ipath_physshadow;
686 int i, cnt = 0;
687
688 ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
689 "locked\n");
690 for (port = 0; port < dd->ipath_cfgports; port++) {
691 int port_tidbase = port * dd->ipath_rcvtidcnt;
692 int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
693 for (i = port_tidbase; i < maxtid; i++) {
694 if (!tmpp[i])
695 continue;
696 pci_unmap_page(dd->pcidev, tmpd[i],
697 PAGE_SIZE, PCI_DMA_FROMDEVICE);
698 ipath_release_user_pages(&tmpp[i], 1);
699 tmpp[i] = NULL;
700 cnt++;
701 }
702 }
703 if (cnt) {
704 ipath_stats.sps_pageunlocks += cnt;
705 ipath_cdbg(VERBOSE, "There were still %u expTID "
706 "entries locked\n", cnt);
707 }
708 if (ipath_stats.sps_pagelocks ||
709 ipath_stats.sps_pageunlocks)
710 ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
711 "unlocked via ipath_m{un}lock\n",
712 (unsigned long long)
713 ipath_stats.sps_pagelocks,
714 (unsigned long long)
715 ipath_stats.sps_pageunlocks);
716
717 ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
718 dd->ipath_pageshadow);
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700719 tmpp = dd->ipath_pageshadow;
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700720 dd->ipath_pageshadow = NULL;
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700721 vfree(tmpp);
Ralph Campbell9355fb62008-04-16 21:09:29 -0700722
723 dd->ipath_egrtidbase = NULL;
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700724 }
725
726 /*
727 * free any resources still in use (usually just kernel ports)
728 * at unload; we do for portcnt, not cfgports, because cfgports
729 * could have changed while we were loaded.
730 */
731 for (port = 0; port < dd->ipath_portcnt; port++) {
732 struct ipath_portdata *pd = dd->ipath_pd[port];
733 dd->ipath_pd[port] = NULL;
734 ipath_free_pddata(dd, pd);
735 }
736 kfree(dd->ipath_pd);
737 /*
738 * debuggability, in case some cleanup path tries to use it
739 * after this
740 */
741 dd->ipath_pd = NULL;
742}
743
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800744static void __devexit ipath_remove_one(struct pci_dev *pdev)
745{
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700746 struct ipath_devdata *dd = pci_get_drvdata(pdev);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800747
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700748 ipath_cdbg(VERBOSE, "removing, pdev=%p, dd=%p\n", pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800749
Bryan O'Sullivan53c1d2c2007-03-15 14:45:11 -0700750 /*
751 * disable the IB link early, to be sure no new packets arrive, which
752 * complicates the shutdown process
753 */
754 ipath_shutdown_device(dd);
755
Arthur Jones35884232007-07-06 12:48:53 -0700756 cancel_delayed_work(&dd->status_work);
757 flush_scheduled_work();
758
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700759 if (dd->verbs_dev)
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -0700760 ipath_unregister_ib_device(dd->verbs_dev);
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -0700761
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700762 ipath_diag_remove(dd);
763 ipath_user_remove(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800764 ipathfs_remove_device(dd);
765 ipath_device_remove_group(&pdev->dev, dd);
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700766
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800767 ipath_cdbg(VERBOSE, "Releasing pci memory regions, dd %p, "
768 "unit %u\n", dd, (u32) dd->ipath_unit);
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700769
770 cleanup_device(dd);
771
772 /*
773 * turn off rcv, send, and interrupts for all ports, all drivers
774 * should also hard reset the chip here?
775 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
776 * for all versions of the driver, if they were allocated
777 */
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800778 if (dd->ipath_irq) {
779 ipath_cdbg(VERBOSE, "unit %u free irq %d\n",
780 dd->ipath_unit, dd->ipath_irq);
781 dd->ipath_f_free_irq(dd);
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700782 } else
783 ipath_dbg("irq is 0, not doing free_irq "
784 "for unit %u\n", dd->ipath_unit);
785 /*
786 * we check for NULL here, because it's outside
787 * the kregbase check, and we need to call it
788 * after the free_irq. Thus it's possible that
789 * the function pointers were never initialized.
790 */
791 if (dd->ipath_f_cleanup)
792 /* clean up chip-specific stuff */
793 dd->ipath_f_cleanup(dd);
794
795 ipath_cdbg(VERBOSE, "Unmapping kregbase %p\n", dd->ipath_kregbase);
796 iounmap((volatile void __iomem *) dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800797 pci_release_regions(pdev);
798 ipath_cdbg(VERBOSE, "calling pci_disable_device\n");
799 pci_disable_device(pdev);
800
801 ipath_free_devdata(pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800802}
803
804/* general driver use */
805DEFINE_MUTEX(ipath_mutex);
806
807static DEFINE_SPINLOCK(ipath_pioavail_lock);
808
809/**
810 * ipath_disarm_piobufs - cancel a range of PIO buffers
811 * @dd: the infinipath device
812 * @first: the first PIO buffer to cancel
813 * @cnt: the number of PIO buffers to cancel
814 *
815 * cancel a range of PIO buffers, used when they might be armed, but
816 * not triggered. Used at init to ensure buffer state, and also user
817 * process close, in case it died while writing to a PIO buffer
818 * Also after errors.
819 */
820void ipath_disarm_piobufs(struct ipath_devdata *dd, unsigned first,
821 unsigned cnt)
822{
823 unsigned i, last = first + cnt;
John Gregore342c112007-09-05 01:57:14 -0700824 unsigned long flags;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800825
826 ipath_cdbg(PKT, "disarm %u PIObufs first=%u\n", cnt, first);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800827 for (i = first; i < last; i++) {
John Gregore342c112007-09-05 01:57:14 -0700828 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
829 /*
830 * The disarm-related bits are write-only, so it
831 * is ok to OR them in with our copy of sendctrl
832 * while we hold the lock.
833 */
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800834 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
John Gregore342c112007-09-05 01:57:14 -0700835 dd->ipath_sendctrl | INFINIPATH_S_DISARM |
836 (i << INFINIPATH_S_DISARMPIOBUF_SHIFT));
837 /* can't disarm bufs back-to-back per iba7220 spec */
838 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
839 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800840 }
Ralph Campbellc4b4d162008-04-16 21:09:26 -0700841 /* on some older chips, update may not happen after cancel */
842 ipath_force_pio_avail_update(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800843}
844
845/**
846 * ipath_wait_linkstate - wait for an IB link state change to occur
847 * @dd: the infinipath device
848 * @state: the state to wait for
849 * @msecs: the number of milliseconds to wait
850 *
851 * wait up to msecs milliseconds for IB link state change to occur for
852 * now, take the easy polling route. Currently used only by
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700853 * ipath_set_linkstate. Returns 0 if state reached, otherwise
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800854 * -ETIMEDOUT state can have multiple states set, for any of several
855 * transitions.
856 */
Ralph Campbell140277e2007-12-14 01:53:56 -0800857int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state, int msecs)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800858{
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700859 dd->ipath_state_wanted = state;
860 wait_event_interruptible_timeout(ipath_state_wait,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800861 (dd->ipath_flags & state),
862 msecs_to_jiffies(msecs));
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700863 dd->ipath_state_wanted = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800864
865 if (!(dd->ipath_flags & state)) {
866 u64 val;
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700867 ipath_cdbg(VERBOSE, "Didn't reach linkstate %s within %u"
868 " ms\n",
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800869 /* test INIT ahead of DOWN, both can be set */
870 (state & IPATH_LINKINIT) ? "INIT" :
871 ((state & IPATH_LINKDOWN) ? "DOWN" :
872 ((state & IPATH_LINKARMED) ? "ARM" : "ACTIVE")),
873 msecs);
874 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
875 ipath_cdbg(VERBOSE, "ibcc=%llx ibcstatus=%llx (%s)\n",
876 (unsigned long long) ipath_read_kreg64(
877 dd, dd->ipath_kregs->kr_ibcctrl),
878 (unsigned long long) val,
879 ipath_ibcstatus_str[val & 0xf]);
880 }
881 return (dd->ipath_flags & state) ? 0 : -ETIMEDOUT;
882}
883
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700884/*
885 * Decode the error status into strings, deciding whether to always
886 * print * it or not depending on "normal packet errors" vs everything
887 * else. Return 1 if "real" errors, otherwise 0 if only packet
888 * errors, so caller can decide what to print with the string.
889 */
890int ipath_decode_err(char *buf, size_t blen, ipath_err_t err)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800891{
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700892 int iserr = 1;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800893 *buf = '\0';
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700894 if (err & INFINIPATH_E_PKTERRS) {
895 if (!(err & ~INFINIPATH_E_PKTERRS))
896 iserr = 0; // if only packet errors.
897 if (ipath_debug & __IPATH_ERRPKTDBG) {
898 if (err & INFINIPATH_E_REBP)
899 strlcat(buf, "EBP ", blen);
900 if (err & INFINIPATH_E_RVCRC)
901 strlcat(buf, "VCRC ", blen);
902 if (err & INFINIPATH_E_RICRC) {
903 strlcat(buf, "CRC ", blen);
904 // clear for check below, so only once
905 err &= INFINIPATH_E_RICRC;
906 }
907 if (err & INFINIPATH_E_RSHORTPKTLEN)
908 strlcat(buf, "rshortpktlen ", blen);
909 if (err & INFINIPATH_E_SDROPPEDDATAPKT)
910 strlcat(buf, "sdroppeddatapkt ", blen);
911 if (err & INFINIPATH_E_SPKTLEN)
912 strlcat(buf, "spktlen ", blen);
913 }
914 if ((err & INFINIPATH_E_RICRC) &&
915 !(err&(INFINIPATH_E_RVCRC|INFINIPATH_E_REBP)))
916 strlcat(buf, "CRC ", blen);
917 if (!iserr)
918 goto done;
919 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800920 if (err & INFINIPATH_E_RHDRLEN)
921 strlcat(buf, "rhdrlen ", blen);
922 if (err & INFINIPATH_E_RBADTID)
923 strlcat(buf, "rbadtid ", blen);
924 if (err & INFINIPATH_E_RBADVERSION)
925 strlcat(buf, "rbadversion ", blen);
926 if (err & INFINIPATH_E_RHDR)
927 strlcat(buf, "rhdr ", blen);
928 if (err & INFINIPATH_E_RLONGPKTLEN)
929 strlcat(buf, "rlongpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800930 if (err & INFINIPATH_E_RMAXPKTLEN)
931 strlcat(buf, "rmaxpktlen ", blen);
932 if (err & INFINIPATH_E_RMINPKTLEN)
933 strlcat(buf, "rminpktlen ", blen);
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700934 if (err & INFINIPATH_E_SMINPKTLEN)
935 strlcat(buf, "sminpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800936 if (err & INFINIPATH_E_RFORMATERR)
937 strlcat(buf, "rformaterr ", blen);
938 if (err & INFINIPATH_E_RUNSUPVL)
939 strlcat(buf, "runsupvl ", blen);
940 if (err & INFINIPATH_E_RUNEXPCHAR)
941 strlcat(buf, "runexpchar ", blen);
942 if (err & INFINIPATH_E_RIBFLOW)
943 strlcat(buf, "ribflow ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800944 if (err & INFINIPATH_E_SUNDERRUN)
945 strlcat(buf, "sunderrun ", blen);
946 if (err & INFINIPATH_E_SPIOARMLAUNCH)
947 strlcat(buf, "spioarmlaunch ", blen);
948 if (err & INFINIPATH_E_SUNEXPERRPKTNUM)
949 strlcat(buf, "sunexperrpktnum ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800950 if (err & INFINIPATH_E_SDROPPEDSMPPKT)
951 strlcat(buf, "sdroppedsmppkt ", blen);
952 if (err & INFINIPATH_E_SMAXPKTLEN)
953 strlcat(buf, "smaxpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800954 if (err & INFINIPATH_E_SUNSUPVL)
955 strlcat(buf, "sunsupVL ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800956 if (err & INFINIPATH_E_INVALIDADDR)
957 strlcat(buf, "invalidaddr ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800958 if (err & INFINIPATH_E_RRCVEGRFULL)
959 strlcat(buf, "rcvegrfull ", blen);
960 if (err & INFINIPATH_E_RRCVHDRFULL)
961 strlcat(buf, "rcvhdrfull ", blen);
962 if (err & INFINIPATH_E_IBSTATUSCHANGED)
963 strlcat(buf, "ibcstatuschg ", blen);
964 if (err & INFINIPATH_E_RIBLOSTLINK)
965 strlcat(buf, "riblostlink ", blen);
966 if (err & INFINIPATH_E_HARDWARE)
967 strlcat(buf, "hardware ", blen);
968 if (err & INFINIPATH_E_RESET)
969 strlcat(buf, "reset ", blen);
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700970done:
971 return iserr;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800972}
973
974/**
975 * get_rhf_errstring - decode RHF errors
976 * @err: the err number
977 * @msg: the output buffer
978 * @len: the length of the output buffer
979 *
980 * only used one place now, may want more later
981 */
982static void get_rhf_errstring(u32 err, char *msg, size_t len)
983{
984 /* if no errors, and so don't need to check what's first */
985 *msg = '\0';
986
987 if (err & INFINIPATH_RHF_H_ICRCERR)
988 strlcat(msg, "icrcerr ", len);
989 if (err & INFINIPATH_RHF_H_VCRCERR)
990 strlcat(msg, "vcrcerr ", len);
991 if (err & INFINIPATH_RHF_H_PARITYERR)
992 strlcat(msg, "parityerr ", len);
993 if (err & INFINIPATH_RHF_H_LENERR)
994 strlcat(msg, "lenerr ", len);
995 if (err & INFINIPATH_RHF_H_MTUERR)
996 strlcat(msg, "mtuerr ", len);
997 if (err & INFINIPATH_RHF_H_IHDRERR)
998 /* infinipath hdr checksum error */
999 strlcat(msg, "ipathhdrerr ", len);
1000 if (err & INFINIPATH_RHF_H_TIDERR)
1001 strlcat(msg, "tiderr ", len);
1002 if (err & INFINIPATH_RHF_H_MKERR)
1003 /* bad port, offset, etc. */
1004 strlcat(msg, "invalid ipathhdr ", len);
1005 if (err & INFINIPATH_RHF_H_IBERR)
1006 strlcat(msg, "iberr ", len);
1007 if (err & INFINIPATH_RHF_L_SWA)
1008 strlcat(msg, "swA ", len);
1009 if (err & INFINIPATH_RHF_L_SWB)
1010 strlcat(msg, "swB ", len);
1011}
1012
1013/**
1014 * ipath_get_egrbuf - get an eager buffer
1015 * @dd: the infinipath device
1016 * @bufnum: the eager buffer to get
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001017 *
1018 * must only be called if ipath_pd[port] is known to be allocated
1019 */
Ralph Campbelld65708f2007-12-21 16:47:04 -08001020static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001021{
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001022 return dd->ipath_port0_skbinfo ?
1023 (void *) dd->ipath_port0_skbinfo[bufnum].skb->data : NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001024}
1025
1026/**
1027 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
1028 * @dd: the infinipath device
1029 * @gfp_mask: the sk_buff SFP mask
1030 */
1031struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd,
1032 gfp_t gfp_mask)
1033{
1034 struct sk_buff *skb;
1035 u32 len;
1036
1037 /*
1038 * Only fully supported way to handle this is to allocate lots
1039 * extra, align as needed, and then do skb_reserve(). That wastes
1040 * a lot of memory... I'll have to hack this into infinipath_copy
1041 * also.
1042 */
1043
1044 /*
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001045 * We need 2 extra bytes for ipath_ether data sent in the
1046 * key header. In order to keep everything dword aligned,
1047 * we'll reserve 4 bytes.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001048 */
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001049 len = dd->ipath_ibmaxlen + 4;
1050
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001051 if (dd->ipath_flags & IPATH_4BYTE_TID) {
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001052 /* We need a 2KB multiple alignment, and there is no way
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001053 * to do it except to allocate extra and then skb_reserve
1054 * enough to bring it up to the right alignment.
1055 */
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001056 len += 2047;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001057 }
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001058
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001059 skb = __dev_alloc_skb(len, gfp_mask);
1060 if (!skb) {
1061 ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
1062 len);
1063 goto bail;
1064 }
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001065
1066 skb_reserve(skb, 4);
1067
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001068 if (dd->ipath_flags & IPATH_4BYTE_TID) {
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001069 u32 una = (unsigned long)skb->data & 2047;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001070 if (una)
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001071 skb_reserve(skb, 2048 - una);
1072 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001073
1074bail:
1075 return skb;
1076}
1077
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001078static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
1079 u32 eflags,
1080 u32 l,
1081 u32 etail,
Ralph Campbell9355fb62008-04-16 21:09:29 -07001082 __le32 *rhf_addr,
1083 struct ipath_message_header *hdr)
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001084{
1085 char emsg[128];
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001086
1087 get_rhf_errstring(eflags, emsg, sizeof emsg);
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001088 ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
1089 "tlen=%x opcode=%x egridx=%x: %s\n",
1090 eflags, l,
Ralph Campbell9355fb62008-04-16 21:09:29 -07001091 ipath_hdrget_rcv_type(rhf_addr),
1092 ipath_hdrget_length_in_bytes(rhf_addr),
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001093 be32_to_cpu(hdr->bth[0]) >> 24,
1094 etail, emsg);
1095
1096 /* Count local link integrity errors. */
1097 if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
1098 u8 n = (dd->ipath_ibcctrl >>
1099 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
1100 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
1101
1102 if (++dd->ipath_lli_counter > n) {
1103 dd->ipath_lli_counter = 0;
1104 dd->ipath_lli_errors++;
1105 }
1106 }
1107}
1108
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001109/*
1110 * ipath_kreceive - receive a packet
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001111 * @pd: the infinipath port
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001112 *
1113 * called from interrupt handler for errors or receive interrupt
1114 */
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001115void ipath_kreceive(struct ipath_portdata *pd)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001116{
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001117 struct ipath_devdata *dd = pd->port_dd;
Ralph Campbell9355fb62008-04-16 21:09:29 -07001118 __le32 *rhf_addr;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001119 void *ebuf;
1120 const u32 rsize = dd->ipath_rcvhdrentsize; /* words */
1121 const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
1122 u32 etail = -1, l, hdrqtail;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001123 struct ipath_message_header *hdr;
Ralph Campbell9355fb62008-04-16 21:09:29 -07001124 u32 eflags, i, etype, tlen, pkttot = 0, updegr = 0, reloop = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001125 static u64 totcalls; /* stats, may eventually remove */
Ralph Campbell9355fb62008-04-16 21:09:29 -07001126 int last;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001127
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001128 l = pd->port_head;
Ralph Campbell9355fb62008-04-16 21:09:29 -07001129 rhf_addr = (__le32 *) pd->port_rcvhdrq + l + dd->ipath_rhf_offset;
1130 if (dd->ipath_flags & IPATH_NODMA_RTAIL) {
1131 u32 seq = ipath_hdrget_seq(rhf_addr);
1132
1133 if (seq != pd->port_seq_cnt)
1134 goto bail;
1135 hdrqtail = 0;
1136 } else {
1137 hdrqtail = ipath_get_rcvhdrtail(pd);
1138 if (l == hdrqtail)
1139 goto bail;
1140 smp_rmb();
1141 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001142
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001143reloop:
Ralph Campbell9355fb62008-04-16 21:09:29 -07001144 for (last = 0, i = 1; !last; i++) {
1145 hdr = dd->ipath_f_get_msgheader(dd, rhf_addr);
1146 eflags = ipath_hdrget_err_flags(rhf_addr);
1147 etype = ipath_hdrget_rcv_type(rhf_addr);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001148 /* total length */
Ralph Campbell9355fb62008-04-16 21:09:29 -07001149 tlen = ipath_hdrget_length_in_bytes(rhf_addr);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001150 ebuf = NULL;
Ralph Campbell9355fb62008-04-16 21:09:29 -07001151 if ((dd->ipath_flags & IPATH_NODMA_RTAIL) ?
1152 ipath_hdrget_use_egr_buf(rhf_addr) :
1153 (etype != RCVHQ_RCV_TYPE_EXPECTED)) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001154 /*
Ralph Campbell9355fb62008-04-16 21:09:29 -07001155 * It turns out that the chip uses an eager buffer
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001156 * for all non-expected packets, whether it "needs"
1157 * one or not. So always get the index, but don't
1158 * set ebuf (so we try to copy data) unless the
1159 * length requires it.
1160 */
Ralph Campbell9355fb62008-04-16 21:09:29 -07001161 etail = ipath_hdrget_index(rhf_addr);
1162 updegr = 1;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001163 if (tlen > sizeof(*hdr) ||
1164 etype == RCVHQ_RCV_TYPE_NON_KD)
Ralph Campbelld65708f2007-12-21 16:47:04 -08001165 ebuf = ipath_get_egrbuf(dd, etail);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001166 }
1167
1168 /*
1169 * both tiderr and ipathhdrerr are set for all plain IB
1170 * packets; only ipathhdrerr should be set.
1171 */
1172
Ralph Campbell9355fb62008-04-16 21:09:29 -07001173 if (etype != RCVHQ_RCV_TYPE_NON_KD &&
1174 etype != RCVHQ_RCV_TYPE_ERROR &&
1175 ipath_hdrget_ipath_ver(hdr->iph.ver_port_tid_offset) !=
1176 IPS_PROTO_VERSION)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001177 ipath_cdbg(PKT, "Bad InfiniPath protocol version "
1178 "%x\n", etype);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001179
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001180 if (unlikely(eflags))
Ralph Campbell9355fb62008-04-16 21:09:29 -07001181 ipath_rcv_hdrerr(dd, eflags, l, etail, rhf_addr, hdr);
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001182 else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
Ralph Campbell9355fb62008-04-16 21:09:29 -07001183 ipath_ib_rcv(dd->verbs_dev, (u32 *)hdr, ebuf, tlen);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001184 if (dd->ipath_lli_counter)
1185 dd->ipath_lli_counter--;
Ralph Campbell9355fb62008-04-16 21:09:29 -07001186 } else if (etype == RCVHQ_RCV_TYPE_EAGER) {
1187 u8 opcode = be32_to_cpu(hdr->bth[0]) >> 24;
1188 u32 qp = be32_to_cpu(hdr->bth[1]) & 0xffffff;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001189 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
1190 "qp=%x), len %x; ignored\n",
Ralph Campbell9355fb62008-04-16 21:09:29 -07001191 etype, opcode, qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001192 }
1193 else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
1194 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
Ralph Campbell9355fb62008-04-16 21:09:29 -07001195 be32_to_cpu(hdr->bth[0]) >> 24);
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001196 else {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001197 /*
Dave Olson9e2ef36b2008-01-06 21:02:34 -08001198 * error packet, type of error unknown.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001199 * Probably type 3, but we don't know, so don't
1200 * even try to print the opcode, etc.
Ralph Campbell9355fb62008-04-16 21:09:29 -07001201 * Usually caused by a "bad packet", that has no
1202 * BTH, when the LRH says it should.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001203 */
Ralph Campbell9355fb62008-04-16 21:09:29 -07001204 ipath_cdbg(ERRPKT, "Error Pkt, but no eflags! egrbuf"
1205 " %x, len %x hdrq+%x rhf: %Lx\n",
1206 etail, tlen, l,
1207 le64_to_cpu(*(__le64 *) rhf_addr));
1208 if (ipath_debug & __IPATH_ERRPKTDBG) {
1209 u32 j, *d, dw = rsize-2;
1210 if (rsize > (tlen>>2))
1211 dw = tlen>>2;
1212 d = (u32 *)hdr;
1213 printk(KERN_DEBUG "EPkt rcvhdr(%x dw):\n",
1214 dw);
1215 for (j = 0; j < dw; j++)
1216 printk(KERN_DEBUG "%8x%s", d[j],
1217 (j%8) == 7 ? "\n" : " ");
1218 printk(KERN_DEBUG ".\n");
1219 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001220 }
1221 l += rsize;
1222 if (l >= maxcnt)
1223 l = 0;
Ralph Campbell9355fb62008-04-16 21:09:29 -07001224 rhf_addr = (__le32 *) pd->port_rcvhdrq +
1225 l + dd->ipath_rhf_offset;
1226 if (dd->ipath_flags & IPATH_NODMA_RTAIL) {
1227 u32 seq = ipath_hdrget_seq(rhf_addr);
1228
1229 if (++pd->port_seq_cnt > 13)
1230 pd->port_seq_cnt = 1;
1231 if (seq != pd->port_seq_cnt)
1232 last = 1;
1233 } else if (l == hdrqtail)
1234 last = 1;
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001235 /*
1236 * update head regs on last packet, and every 16 packets.
1237 * Reduce bus traffic, while still trying to prevent
1238 * rcvhdrq overflows, for when the queue is nearly full
1239 */
Ralph Campbell9355fb62008-04-16 21:09:29 -07001240 if (last || !(i & 0xf)) {
1241 u64 lval = l;
1242
1243 /* request IBA6120 and 7220 interrupt only on last */
1244 if (last)
1245 lval |= dd->ipath_rhdrhead_intr_off;
1246 ipath_write_ureg(dd, ur_rcvhdrhead, lval,
1247 pd->port_port);
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001248 if (updegr) {
Ralph Campbell8c641d42008-04-16 21:09:26 -07001249 ipath_write_ureg(dd, ur_rcvegrindexhead,
Ralph Campbell9355fb62008-04-16 21:09:29 -07001250 etail, pd->port_port);
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001251 updegr = 0;
1252 }
1253 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001254 }
1255
Ralph Campbell9355fb62008-04-16 21:09:29 -07001256 if (!dd->ipath_rhdrhead_intr_off && !reloop &&
1257 !(dd->ipath_flags & IPATH_NODMA_RTAIL)) {
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -07001258 /* IBA6110 workaround; we can have a race clearing chip
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001259 * interrupt with another interrupt about to be delivered,
1260 * and can clear it before it is delivered on the GPIO
1261 * workaround. By doing the extra check here for the
1262 * in-memory tail register updating while we were doing
1263 * earlier packets, we "almost" guarantee we have covered
1264 * that case.
1265 */
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001266 u32 hqtail = ipath_get_rcvhdrtail(pd);
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001267 if (hqtail != hdrqtail) {
1268 hdrqtail = hqtail;
1269 reloop = 1; /* loop 1 extra time at most */
1270 goto reloop;
1271 }
1272 }
1273
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001274 pkttot += i;
1275
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001276 pd->port_head = l;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001277
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001278 if (pkttot > ipath_stats.sps_maxpkts_call)
1279 ipath_stats.sps_maxpkts_call = pkttot;
1280 ipath_stats.sps_port0pkts += pkttot;
1281 ipath_stats.sps_avgpkts_call =
1282 ipath_stats.sps_port0pkts / ++totcalls;
1283
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001284bail:;
1285}
1286
1287/**
1288 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1289 * @dd: the infinipath device
1290 *
1291 * called whenever our local copy indicates we have run out of send buffers
1292 * NOTE: This can be called from interrupt context by some code
1293 * and from non-interrupt context by ipath_getpiobuf().
1294 */
1295
1296static void ipath_update_pio_bufs(struct ipath_devdata *dd)
1297{
1298 unsigned long flags;
1299 int i;
1300 const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
1301
1302 /* If the generation (check) bits have changed, then we update the
1303 * busy bit for the corresponding PIO buffer. This algorithm will
1304 * modify positions to the value they already have in some cases
1305 * (i.e., no change), but it's faster than changing only the bits
1306 * that have changed.
1307 *
1308 * We would like to do this atomicly, to avoid spinlocks in the
1309 * critical send path, but that's not really possible, given the
1310 * type of changes, and that this routine could be called on
1311 * multiple cpu's simultaneously, so we lock in this routine only,
1312 * to avoid conflicting updates; all we change is the shadow, and
1313 * it's a single 64 bit memory location, so by definition the update
1314 * is atomic in terms of what other cpu's can see in testing the
1315 * bits. The spin_lock overhead isn't too bad, since it only
1316 * happens when all buffers are in use, so only cpu overhead, not
1317 * latency or bandwidth is affected.
1318 */
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001319 if (!dd->ipath_pioavailregs_dma) {
1320 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1321 return;
1322 }
1323 if (ipath_debug & __IPATH_VERBDBG) {
1324 /* only if packet debug and verbose */
1325 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1326 unsigned long *shadow = dd->ipath_pioavailshadow;
1327
1328 ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
1329 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1330 "s3=%lx\n",
1331 (unsigned long long) le64_to_cpu(dma[0]),
1332 shadow[0],
1333 (unsigned long long) le64_to_cpu(dma[1]),
1334 shadow[1],
1335 (unsigned long long) le64_to_cpu(dma[2]),
1336 shadow[2],
1337 (unsigned long long) le64_to_cpu(dma[3]),
1338 shadow[3]);
1339 if (piobregs > 4)
1340 ipath_cdbg(
1341 PKT, "2nd group, dma4=%llx shad4=%lx, "
1342 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1343 "d7=%llx s7=%lx\n",
1344 (unsigned long long) le64_to_cpu(dma[4]),
1345 shadow[4],
1346 (unsigned long long) le64_to_cpu(dma[5]),
1347 shadow[5],
1348 (unsigned long long) le64_to_cpu(dma[6]),
1349 shadow[6],
1350 (unsigned long long) le64_to_cpu(dma[7]),
1351 shadow[7]);
1352 }
1353 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1354 for (i = 0; i < piobregs; i++) {
1355 u64 pchbusy, pchg, piov, pnew;
1356 /*
1357 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1358 */
Ralph Campbell4ea61b52008-01-06 21:12:38 -08001359 if (i > 3 && (dd->ipath_flags & IPATH_SWAP_PIOBUFS))
1360 piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i ^ 1]);
1361 else
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001362 piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001363 pchg = dd->ipath_pioavailkernel[i] &
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001364 ~(dd->ipath_pioavailshadow[i] ^ piov);
1365 pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
1366 if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
1367 pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
1368 pnew |= piov & pchbusy;
1369 dd->ipath_pioavailshadow[i] = pnew;
1370 }
1371 }
1372 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1373}
1374
1375/**
1376 * ipath_setrcvhdrsize - set the receive header size
1377 * @dd: the infinipath device
1378 * @rhdrsize: the receive header size
1379 *
1380 * called from user init code, and also layered driver init
1381 */
1382int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
1383{
1384 int ret = 0;
1385
1386 if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
1387 if (dd->ipath_rcvhdrsize != rhdrsize) {
1388 dev_info(&dd->pcidev->dev,
1389 "Error: can't set protocol header "
1390 "size %u, already %u\n",
1391 rhdrsize, dd->ipath_rcvhdrsize);
1392 ret = -EAGAIN;
1393 } else
1394 ipath_cdbg(VERBOSE, "Reuse same protocol header "
1395 "size %u\n", dd->ipath_rcvhdrsize);
1396 } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
1397 (sizeof(u64) / sizeof(u32)))) {
1398 ipath_dbg("Error: can't set protocol header size %u "
1399 "(> max %u)\n", rhdrsize,
1400 dd->ipath_rcvhdrentsize -
1401 (u32) (sizeof(u64) / sizeof(u32)));
1402 ret = -EOVERFLOW;
1403 } else {
1404 dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
1405 dd->ipath_rcvhdrsize = rhdrsize;
1406 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
1407 dd->ipath_rcvhdrsize);
1408 ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
1409 dd->ipath_rcvhdrsize);
1410 }
1411 return ret;
1412}
1413
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001414/*
1415 * debugging code and stats updates if no pio buffers available.
1416 */
1417static noinline void no_pio_bufs(struct ipath_devdata *dd)
1418{
1419 unsigned long *shadow = dd->ipath_pioavailshadow;
1420 __le64 *dma = (__le64 *)dd->ipath_pioavailregs_dma;
1421
1422 dd->ipath_upd_pio_shadow = 1;
1423
1424 /*
1425 * not atomic, but if we lose a stat count in a while, that's OK
1426 */
1427 ipath_stats.sps_nopiobufs++;
1428 if (!(++dd->ipath_consec_nopiobuf % 100000)) {
1429 ipath_dbg("%u pio sends with no bufavail; dmacopy: "
1430 "%llx %llx %llx %llx; shadow: %lx %lx %lx %lx\n",
1431 dd->ipath_consec_nopiobuf,
1432 (unsigned long long) le64_to_cpu(dma[0]),
1433 (unsigned long long) le64_to_cpu(dma[1]),
1434 (unsigned long long) le64_to_cpu(dma[2]),
1435 (unsigned long long) le64_to_cpu(dma[3]),
1436 shadow[0], shadow[1], shadow[2], shadow[3]);
1437 /*
1438 * 4 buffers per byte, 4 registers above, cover rest
1439 * below
1440 */
1441 if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
1442 (sizeof(shadow[0]) * 4 * 4))
1443 ipath_dbg("2nd group: dmacopy: %llx %llx "
1444 "%llx %llx; shadow: %lx %lx %lx %lx\n",
1445 (unsigned long long)le64_to_cpu(dma[4]),
1446 (unsigned long long)le64_to_cpu(dma[5]),
1447 (unsigned long long)le64_to_cpu(dma[6]),
1448 (unsigned long long)le64_to_cpu(dma[7]),
1449 shadow[4], shadow[5], shadow[6],
1450 shadow[7]);
1451 }
1452}
1453
1454/*
1455 * common code for normal driver pio buffer allocation, and reserved
1456 * allocation.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001457 *
1458 * do appropriate marking as busy, etc.
1459 * returns buffer number if one found (>=0), negative number is error.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001460 */
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001461static u32 __iomem *ipath_getpiobuf_range(struct ipath_devdata *dd,
1462 u32 *pbufnum, u32 first, u32 last, u32 firsti)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001463{
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001464 int i, j, updated = 0;
1465 unsigned piobcnt;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001466 unsigned long flags;
1467 unsigned long *shadow = dd->ipath_pioavailshadow;
1468 u32 __iomem *buf;
1469
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001470 piobcnt = last - first;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001471 if (dd->ipath_upd_pio_shadow) {
1472 /*
1473 * Minor optimization. If we had no buffers on last call,
1474 * start out by doing the update; continue and do scan even
1475 * if no buffers were updated, to be paranoid
1476 */
1477 ipath_update_pio_bufs(dd);
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001478 updated++;
1479 i = first;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001480 } else
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001481 i = firsti;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001482rescan:
1483 /*
1484 * while test_and_set_bit() is atomic, we do that and then the
1485 * change_bit(), and the pair is not. See if this is the cause
1486 * of the remaining armlaunch errors.
1487 */
1488 spin_lock_irqsave(&ipath_pioavail_lock, flags);
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001489 for (j = 0; j < piobcnt; j++, i++) {
1490 if (i >= last)
1491 i = first;
1492 if (__test_and_set_bit((2 * i) + 1, shadow))
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001493 continue;
1494 /* flip generation bit */
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001495 __change_bit(2 * i, shadow);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001496 break;
1497 }
1498 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1499
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001500 if (j == piobcnt) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001501 if (!updated) {
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001502 /*
1503 * first time through; shadow exhausted, but may be
1504 * buffers available, try an update and then rescan.
1505 */
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001506 ipath_update_pio_bufs(dd);
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001507 updated++;
1508 i = first;
1509 goto rescan;
1510 } else if (updated == 1 && piobcnt <=
1511 ((dd->ipath_sendctrl
1512 >> INFINIPATH_S_UPDTHRESH_SHIFT) &
1513 INFINIPATH_S_UPDTHRESH_MASK)) {
1514 /*
1515 * for chips supporting and using the update
1516 * threshold we need to force an update of the
1517 * in-memory copy if the count is less than the
1518 * thershold, then check one more time.
1519 */
1520 ipath_force_pio_avail_update(dd);
1521 ipath_update_pio_bufs(dd);
1522 updated++;
1523 i = first;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001524 goto rescan;
1525 }
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001526
1527 no_pio_bufs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001528 buf = NULL;
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001529 } else {
1530 if (i < dd->ipath_piobcnt2k)
1531 buf = (u32 __iomem *) (dd->ipath_pio2kbase +
1532 i * dd->ipath_palign);
1533 else
1534 buf = (u32 __iomem *)
1535 (dd->ipath_pio4kbase +
1536 (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
1537 if (pbufnum)
1538 *pbufnum = i;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001539 }
1540
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001541 return buf;
1542}
1543
1544/**
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001545 * ipath_getpiobuf - find an available pio buffer
1546 * @dd: the infinipath device
1547 * @plen: the size of the PIO buffer needed in 32-bit words
1548 * @pbufnum: the buffer number is placed here
1549 */
1550u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 plen, u32 *pbufnum)
1551{
1552 u32 __iomem *buf;
1553 u32 pnum, nbufs;
1554 u32 first, lasti;
1555
1556 if (plen + 1 >= IPATH_SMALLBUF_DWORDS) {
1557 first = dd->ipath_piobcnt2k;
1558 lasti = dd->ipath_lastpioindexl;
1559 } else {
1560 first = 0;
1561 lasti = dd->ipath_lastpioindex;
1562 }
1563 nbufs = dd->ipath_piobcnt2k + dd->ipath_piobcnt4k;
1564 buf = ipath_getpiobuf_range(dd, &pnum, first, nbufs, lasti);
1565
1566 if (buf) {
1567 /*
1568 * Set next starting place. It's just an optimization,
1569 * it doesn't matter who wins on this, so no locking
1570 */
1571 if (plen + 1 >= IPATH_SMALLBUF_DWORDS)
1572 dd->ipath_lastpioindexl = pnum + 1;
1573 else
1574 dd->ipath_lastpioindex = pnum + 1;
1575 if (dd->ipath_upd_pio_shadow)
1576 dd->ipath_upd_pio_shadow = 0;
1577 if (dd->ipath_consec_nopiobuf)
1578 dd->ipath_consec_nopiobuf = 0;
1579 ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
1580 pnum, (pnum < dd->ipath_piobcnt2k) ? 2 : 4, buf);
1581 if (pbufnum)
1582 *pbufnum = pnum;
1583
1584 }
1585 return buf;
1586}
1587
1588/**
1589 * ipath_chg_pioavailkernel - change which send buffers are available for kernel
1590 * @dd: the infinipath device
1591 * @start: the starting send buffer number
1592 * @len: the number of send buffers
1593 * @avail: true if the buffers are available for kernel use, false otherwise
1594 */
1595void ipath_chg_pioavailkernel(struct ipath_devdata *dd, unsigned start,
1596 unsigned len, int avail)
1597{
1598 unsigned long flags;
1599 unsigned end;
1600
1601 /* There are two bits per send buffer (busy and generation) */
1602 start *= 2;
1603 len *= 2;
1604 end = start + len;
1605
1606 /* Set or clear the generation bits. */
1607 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1608 while (start < end) {
1609 if (avail) {
1610 __clear_bit(start + INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT,
1611 dd->ipath_pioavailshadow);
1612 __set_bit(start, dd->ipath_pioavailkernel);
1613 } else {
1614 __set_bit(start + INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT,
1615 dd->ipath_pioavailshadow);
1616 __clear_bit(start, dd->ipath_pioavailkernel);
1617 }
1618 start += 2;
1619 }
1620 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1621}
1622
1623/**
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001624 * ipath_create_rcvhdrq - create a receive header queue
1625 * @dd: the infinipath device
1626 * @pd: the port data
1627 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001628 * this must be contiguous memory (from an i/o perspective), and must be
1629 * DMA'able (which means for some systems, it will go through an IOMMU,
1630 * or be forced into a low address range).
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001631 */
1632int ipath_create_rcvhdrq(struct ipath_devdata *dd,
1633 struct ipath_portdata *pd)
1634{
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001635 int ret = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001636
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001637 if (!pd->port_rcvhdrq) {
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001638 dma_addr_t phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001639 gfp_t gfp_flags = GFP_USER | __GFP_COMP;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001640 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
1641 sizeof(u32), PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001642
1643 pd->port_rcvhdrq = dma_alloc_coherent(
1644 &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
1645 gfp_flags);
1646
1647 if (!pd->port_rcvhdrq) {
1648 ipath_dev_err(dd, "attempt to allocate %d bytes "
1649 "for port %u rcvhdrq failed\n",
1650 amt, pd->port_port);
1651 ret = -ENOMEM;
1652 goto bail;
1653 }
Ralph Campbell9355fb62008-04-16 21:09:29 -07001654
1655 if (!(dd->ipath_flags & IPATH_NODMA_RTAIL)) {
1656 pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
1657 &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail,
1658 GFP_KERNEL);
1659 if (!pd->port_rcvhdrtail_kvaddr) {
1660 ipath_dev_err(dd, "attempt to allocate 1 page "
1661 "for port %u rcvhdrqtailaddr "
1662 "failed\n", pd->port_port);
1663 ret = -ENOMEM;
1664 dma_free_coherent(&dd->pcidev->dev, amt,
1665 pd->port_rcvhdrq,
1666 pd->port_rcvhdrq_phys);
1667 pd->port_rcvhdrq = NULL;
1668 goto bail;
1669 }
1670 pd->port_rcvhdrqtailaddr_phys = phys_hdrqtail;
1671 ipath_cdbg(VERBOSE, "port %d hdrtailaddr, %llx "
1672 "physical\n", pd->port_port,
1673 (unsigned long long) phys_hdrqtail);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001674 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001675
1676 pd->port_rcvhdrq_size = amt;
1677
1678 ipath_cdbg(VERBOSE, "%d pages at %p (phys %lx) size=%lu "
1679 "for port %u rcvhdr Q\n",
1680 amt >> PAGE_SHIFT, pd->port_rcvhdrq,
1681 (unsigned long) pd->port_rcvhdrq_phys,
1682 (unsigned long) pd->port_rcvhdrq_size,
1683 pd->port_port);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001684 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001685 else
1686 ipath_cdbg(VERBOSE, "reuse port %d rcvhdrq @%p %llx phys; "
1687 "hdrtailaddr@%p %llx physical\n",
1688 pd->port_port, pd->port_rcvhdrq,
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001689 (unsigned long long) pd->port_rcvhdrq_phys,
1690 pd->port_rcvhdrtail_kvaddr, (unsigned long long)
1691 pd->port_rcvhdrqtailaddr_phys);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001692
1693 /* clear for security and sanity on each use */
1694 memset(pd->port_rcvhdrq, 0, pd->port_rcvhdrq_size);
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001695 if (pd->port_rcvhdrtail_kvaddr)
1696 memset(pd->port_rcvhdrtail_kvaddr, 0, PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001697
1698 /*
1699 * tell chip each time we init it, even if we are re-using previous
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001700 * memory (we zero the register at process close)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001701 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001702 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdrtailaddr,
1703 pd->port_port, pd->port_rcvhdrqtailaddr_phys);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001704 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdraddr,
1705 pd->port_port, pd->port_rcvhdrq_phys);
1706
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001707bail:
1708 return ret;
1709}
1710
Dave Olson93800682007-06-18 14:24:41 -07001711
1712/*
1713 * Flush all sends that might be in the ready to send state, as well as any
1714 * that are in the process of being sent. Used whenever we need to be
1715 * sure the send side is idle. Cleans up all buffer state by canceling
1716 * all pio buffers, and issuing an abort, which cleans up anything in the
1717 * launch fifo. The cancel is superfluous on some chip versions, but
1718 * it's safer to always do it.
1719 * PIOAvail bits are updated by the chip as if normal send had happened.
1720 */
Dave Olson3810f2a2007-07-20 14:23:37 -07001721void ipath_cancel_sends(struct ipath_devdata *dd, int restore_sendctrl)
Dave Olson93800682007-06-18 14:24:41 -07001722{
1723 ipath_dbg("Cancelling all in-progress send buffers\n");
Ralph Campbell2ba3f562008-04-16 21:09:29 -07001724
1725 /* skip armlaunch errs for a while */
1726 dd->ipath_lastcancel = jiffies + HZ / 2;
1727
Dave Olson93800682007-06-18 14:24:41 -07001728 /*
1729 * the abort bit is auto-clearing. We read scratch to be sure
1730 * that cancels and the abort have taken effect in the chip.
1731 */
1732 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1733 INFINIPATH_S_ABORT);
1734 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1735 ipath_disarm_piobufs(dd, 0,
1736 (unsigned)(dd->ipath_piobcnt2k + dd->ipath_piobcnt4k));
Dave Olson3810f2a2007-07-20 14:23:37 -07001737 if (restore_sendctrl) /* else done by caller later */
1738 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1739 dd->ipath_sendctrl);
Dave Olson93800682007-06-18 14:24:41 -07001740
1741 /* and again, be sure all have hit the chip */
1742 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1743}
1744
Ralph Campbellc4b4d162008-04-16 21:09:26 -07001745/*
1746 * Force an update of in-memory copy of the pioavail registers, when
1747 * needed for any of a variety of reasons. We read the scratch register
1748 * to make it highly likely that the update will have happened by the
1749 * time we return. If already off (as in cancel_sends above), this
1750 * routine is a nop, on the assumption that the caller will "do the
1751 * right thing".
1752 */
1753void ipath_force_pio_avail_update(struct ipath_devdata *dd)
1754{
1755 unsigned long flags;
1756
1757 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
1758 if (dd->ipath_sendctrl & INFINIPATH_S_PIOBUFAVAILUPD) {
1759 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1760 dd->ipath_sendctrl & ~INFINIPATH_S_PIOBUFAVAILUPD);
1761 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1762 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1763 dd->ipath_sendctrl);
1764 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1765 }
1766 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
1767}
1768
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001769static void ipath_set_ib_lstate(struct ipath_devdata *dd, int linkcmd,
1770 int linitcmd)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001771{
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001772 u64 mod_wd;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001773 static const char *what[4] = {
Ralph Campbell140277e2007-12-14 01:53:56 -08001774 [0] = "NOP",
1775 [INFINIPATH_IBCC_LINKCMD_DOWN] = "DOWN",
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001776 [INFINIPATH_IBCC_LINKCMD_ARMED] = "ARMED",
1777 [INFINIPATH_IBCC_LINKCMD_ACTIVE] = "ACTIVE"
1778 };
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001779
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001780 if (linitcmd == INFINIPATH_IBCC_LINKINITCMD_DISABLE) {
1781 /*
1782 * If we are told to disable, note that so link-recovery
1783 * code does not attempt to bring us back up.
1784 */
1785 preempt_disable();
1786 dd->ipath_flags |= IPATH_IB_LINK_DISABLED;
1787 preempt_enable();
1788 } else if (linitcmd) {
1789 /*
1790 * Any other linkinitcmd will lead to LINKDOWN and then
1791 * to INIT (if all is well), so clear flag to let
1792 * link-recovery code attempt to bring us back up.
1793 */
1794 preempt_disable();
1795 dd->ipath_flags &= ~IPATH_IB_LINK_DISABLED;
1796 preempt_enable();
1797 }
1798
1799 mod_wd = (linkcmd << dd->ibcc_lc_shift) |
1800 (linitcmd << INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1801 ipath_cdbg(VERBOSE,
1802 "Moving unit %u to %s (initcmd=0x%x), current ltstate is %s\n",
1803 dd->ipath_unit, what[linkcmd], linitcmd,
1804 ipath_ibcstatus_str[ipath_ib_linktrstate(dd,
John Gregor58411d12008-04-16 21:09:24 -07001805 ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus))]);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001806
1807 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001808 dd->ipath_ibcctrl | mod_wd);
1809 /* read from chip so write is flushed */
1810 (void) ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001811}
1812
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001813int ipath_set_linkstate(struct ipath_devdata *dd, u8 newstate)
1814{
1815 u32 lstate;
1816 int ret;
1817
1818 switch (newstate) {
Ralph Campbell140277e2007-12-14 01:53:56 -08001819 case IPATH_IB_LINKDOWN_ONLY:
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001820 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_DOWN, 0);
Ralph Campbell140277e2007-12-14 01:53:56 -08001821 /* don't wait */
1822 ret = 0;
1823 goto bail;
1824
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001825 case IPATH_IB_LINKDOWN:
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001826 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_DOWN,
1827 INFINIPATH_IBCC_LINKINITCMD_POLL);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001828 /* don't wait */
1829 ret = 0;
1830 goto bail;
1831
1832 case IPATH_IB_LINKDOWN_SLEEP:
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001833 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_DOWN,
1834 INFINIPATH_IBCC_LINKINITCMD_SLEEP);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001835 /* don't wait */
1836 ret = 0;
1837 goto bail;
1838
1839 case IPATH_IB_LINKDOWN_DISABLE:
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001840 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_DOWN,
1841 INFINIPATH_IBCC_LINKINITCMD_DISABLE);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001842 /* don't wait */
1843 ret = 0;
1844 goto bail;
1845
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001846 case IPATH_IB_LINKARM:
1847 if (dd->ipath_flags & IPATH_LINKARMED) {
1848 ret = 0;
1849 goto bail;
1850 }
1851 if (!(dd->ipath_flags &
1852 (IPATH_LINKINIT | IPATH_LINKACTIVE))) {
1853 ret = -EINVAL;
1854 goto bail;
1855 }
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001856 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ARMED, 0);
1857
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001858 /*
1859 * Since the port can transition to ACTIVE by receiving
1860 * a non VL 15 packet, wait for either state.
1861 */
1862 lstate = IPATH_LINKARMED | IPATH_LINKACTIVE;
1863 break;
1864
1865 case IPATH_IB_LINKACTIVE:
1866 if (dd->ipath_flags & IPATH_LINKACTIVE) {
1867 ret = 0;
1868 goto bail;
1869 }
1870 if (!(dd->ipath_flags & IPATH_LINKARMED)) {
1871 ret = -EINVAL;
1872 goto bail;
1873 }
Michael Albaugh4330e4d2008-04-16 21:09:26 -07001874 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ACTIVE, 0);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001875 lstate = IPATH_LINKACTIVE;
1876 break;
1877
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001878 case IPATH_IB_LINK_LOOPBACK:
1879 dev_info(&dd->pcidev->dev, "Enabling IB local loopback\n");
1880 dd->ipath_ibcctrl |= INFINIPATH_IBCC_LOOPBACK;
1881 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1882 dd->ipath_ibcctrl);
Dave Olsonb3e8f542008-04-16 21:09:29 -07001883
1884 /* turn heartbeat off, as it causes loopback to fail */
1885 dd->ipath_f_set_ib_cfg(dd, IPATH_IB_CFG_HRTBT,
1886 IPATH_IB_HRTBT_OFF);
1887 /* don't wait */
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001888 ret = 0;
Dave Olsonb3e8f542008-04-16 21:09:29 -07001889 goto bail;
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001890
1891 case IPATH_IB_LINK_EXTERNAL:
Dave Olsonb3e8f542008-04-16 21:09:29 -07001892 dev_info(&dd->pcidev->dev,
1893 "Disabling IB local loopback (normal)\n");
1894 dd->ipath_f_set_ib_cfg(dd, IPATH_IB_CFG_HRTBT,
1895 IPATH_IB_HRTBT_ON);
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001896 dd->ipath_ibcctrl &= ~INFINIPATH_IBCC_LOOPBACK;
1897 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1898 dd->ipath_ibcctrl);
Dave Olsonb3e8f542008-04-16 21:09:29 -07001899 /* don't wait */
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001900 ret = 0;
Dave Olsonb3e8f542008-04-16 21:09:29 -07001901 goto bail;
1902
1903 /*
1904 * Heartbeat can be explicitly enabled by the user via
1905 * "hrtbt_enable" "file", and if disabled, trying to enable here
1906 * will have no effect. Implicit changes (heartbeat off when
1907 * loopback on, and vice versa) are included to ease testing.
1908 */
1909 case IPATH_IB_LINK_HRTBT:
1910 ret = dd->ipath_f_set_ib_cfg(dd, IPATH_IB_CFG_HRTBT,
1911 IPATH_IB_HRTBT_ON);
1912 goto bail;
1913
1914 case IPATH_IB_LINK_NO_HRTBT:
1915 ret = dd->ipath_f_set_ib_cfg(dd, IPATH_IB_CFG_HRTBT,
1916 IPATH_IB_HRTBT_OFF);
1917 goto bail;
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001918
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001919 default:
1920 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate);
1921 ret = -EINVAL;
1922 goto bail;
1923 }
1924 ret = ipath_wait_linkstate(dd, lstate, 2000);
1925
1926bail:
1927 return ret;
1928}
1929
1930/**
1931 * ipath_set_mtu - set the MTU
1932 * @dd: the infinipath device
1933 * @arg: the new MTU
1934 *
1935 * we can handle "any" incoming size, the issue here is whether we
1936 * need to restrict our outgoing size. For now, we don't do any
1937 * sanity checking on this, and we don't deal with what happens to
1938 * programs that are already running when the size changes.
1939 * NOTE: changing the MTU will usually cause the IBC to go back to
1940 * link initialize (IPATH_IBSTATE_INIT) state...
1941 */
1942int ipath_set_mtu(struct ipath_devdata *dd, u16 arg)
1943{
1944 u32 piosize;
1945 int changed = 0;
1946 int ret;
1947
1948 /*
1949 * mtu is IB data payload max. It's the largest power of 2 less
1950 * than piosize (or even larger, since it only really controls the
1951 * largest we can receive; we can send the max of the mtu and
1952 * piosize). We check that it's one of the valid IB sizes.
1953 */
1954 if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
Dave Olson826d8012008-04-16 21:01:12 -07001955 (arg != 4096 || !ipath_mtu4096)) {
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001956 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg);
1957 ret = -EINVAL;
1958 goto bail;
1959 }
1960 if (dd->ipath_ibmtu == arg) {
1961 ret = 0; /* same as current */
1962 goto bail;
1963 }
1964
1965 piosize = dd->ipath_ibmaxlen;
1966 dd->ipath_ibmtu = arg;
1967
1968 if (arg >= (piosize - IPATH_PIO_MAXIBHDR)) {
1969 /* Only if it's not the initial value (or reset to it) */
1970 if (piosize != dd->ipath_init_ibmaxlen) {
Dave Olson826d8012008-04-16 21:01:12 -07001971 if (arg > piosize && arg <= dd->ipath_init_ibmaxlen)
1972 piosize = dd->ipath_init_ibmaxlen;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001973 dd->ipath_ibmaxlen = piosize;
1974 changed = 1;
1975 }
1976 } else if ((arg + IPATH_PIO_MAXIBHDR) != dd->ipath_ibmaxlen) {
1977 piosize = arg + IPATH_PIO_MAXIBHDR;
1978 ipath_cdbg(VERBOSE, "ibmaxlen was 0x%x, setting to 0x%x "
1979 "(mtu 0x%x)\n", dd->ipath_ibmaxlen, piosize,
1980 arg);
1981 dd->ipath_ibmaxlen = piosize;
1982 changed = 1;
1983 }
1984
1985 if (changed) {
Dave Olson826d8012008-04-16 21:01:12 -07001986 u64 ibc = dd->ipath_ibcctrl, ibdw;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001987 /*
Dave Olson826d8012008-04-16 21:01:12 -07001988 * update our housekeeping variables, and set IBC max
1989 * size, same as init code; max IBC is max we allow in
1990 * buffer, less the qword pbc, plus 1 for ICRC, in dwords
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001991 */
Dave Olson826d8012008-04-16 21:01:12 -07001992 dd->ipath_ibmaxlen = piosize - 2 * sizeof(u32);
1993 ibdw = (dd->ipath_ibmaxlen >> 2) + 1;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001994 ibc &= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK <<
Dave Olson826d8012008-04-16 21:01:12 -07001995 dd->ibcc_mpl_shift);
1996 ibc |= ibdw << dd->ibcc_mpl_shift;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001997 dd->ipath_ibcctrl = ibc;
1998 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1999 dd->ipath_ibcctrl);
2000 dd->ipath_f_tidtemplate(dd);
2001 }
2002
2003 ret = 0;
2004
2005bail:
2006 return ret;
2007}
2008
2009int ipath_set_lid(struct ipath_devdata *dd, u32 arg, u8 lmc)
2010{
2011 dd->ipath_lid = arg;
2012 dd->ipath_lmc = lmc;
2013
2014 return 0;
2015}
2016
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002017
2018/**
2019 * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
2020 * @dd: the infinipath device
2021 * @regno: the register number to write
2022 * @port: the port containing the register
2023 * @value: the value to write
2024 *
2025 * Registers that vary with the chip implementation constants (port)
2026 * use this routine.
2027 */
2028void ipath_write_kreg_port(const struct ipath_devdata *dd, ipath_kreg regno,
2029 unsigned port, u64 value)
2030{
2031 u16 where;
2032
2033 if (port < dd->ipath_portcnt &&
2034 (regno == dd->ipath_kregs->kr_rcvhdraddr ||
2035 regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
2036 where = regno + port;
2037 else
2038 where = -1;
2039
2040 ipath_write_kreg(dd, where, value);
2041}
2042
Michael Albaugh82466f02007-05-16 15:45:09 -07002043/*
2044 * Following deal with the "obviously simple" task of overriding the state
2045 * of the LEDS, which normally indicate link physical and logical status.
2046 * The complications arise in dealing with different hardware mappings
2047 * and the board-dependent routine being called from interrupts.
2048 * and then there's the requirement to _flash_ them.
2049 */
2050#define LED_OVER_FREQ_SHIFT 8
2051#define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
2052/* Below is "non-zero" to force override, but both actual LEDs are off */
2053#define LED_OVER_BOTH_OFF (8)
2054
Roland Dreierda9aec72007-07-17 18:37:43 -07002055static void ipath_run_led_override(unsigned long opaque)
Michael Albaugh82466f02007-05-16 15:45:09 -07002056{
2057 struct ipath_devdata *dd = (struct ipath_devdata *)opaque;
2058 int timeoff;
2059 int pidx;
2060 u64 lstate, ltstate, val;
2061
2062 if (!(dd->ipath_flags & IPATH_INITTED))
2063 return;
2064
2065 pidx = dd->ipath_led_override_phase++ & 1;
2066 dd->ipath_led_override = dd->ipath_led_override_vals[pidx];
2067 timeoff = dd->ipath_led_override_timeoff;
2068
2069 /*
2070 * below potentially restores the LED values per current status,
2071 * should also possibly setup the traffic-blink register,
2072 * but leave that to per-chip functions.
2073 */
2074 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
2075 ltstate = (val >> INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
John Gregor58411d12008-04-16 21:09:24 -07002076 dd->ibcs_lts_mask;
2077 lstate = (val >> dd->ibcs_ls_shift) & INFINIPATH_IBCS_LINKSTATE_MASK;
Michael Albaugh82466f02007-05-16 15:45:09 -07002078
2079 dd->ipath_f_setextled(dd, lstate, ltstate);
2080 mod_timer(&dd->ipath_led_override_timer, jiffies + timeoff);
2081}
2082
2083void ipath_set_led_override(struct ipath_devdata *dd, unsigned int val)
2084{
2085 int timeoff, freq;
2086
2087 if (!(dd->ipath_flags & IPATH_INITTED))
2088 return;
2089
2090 /* First check if we are blinking. If not, use 1HZ polling */
2091 timeoff = HZ;
2092 freq = (val & LED_OVER_FREQ_MASK) >> LED_OVER_FREQ_SHIFT;
2093
2094 if (freq) {
2095 /* For blink, set each phase from one nybble of val */
2096 dd->ipath_led_override_vals[0] = val & 0xF;
2097 dd->ipath_led_override_vals[1] = (val >> 4) & 0xF;
2098 timeoff = (HZ << 4)/freq;
2099 } else {
2100 /* Non-blink set both phases the same. */
2101 dd->ipath_led_override_vals[0] = val & 0xF;
2102 dd->ipath_led_override_vals[1] = val & 0xF;
2103 }
2104 dd->ipath_led_override_timeoff = timeoff;
2105
2106 /*
2107 * If the timer has not already been started, do so. Use a "quick"
2108 * timeout so the function will be called soon, to look at our request.
2109 */
2110 if (atomic_inc_return(&dd->ipath_led_override_timer_active) == 1) {
2111 /* Need to start timer */
2112 init_timer(&dd->ipath_led_override_timer);
2113 dd->ipath_led_override_timer.function =
2114 ipath_run_led_override;
2115 dd->ipath_led_override_timer.data = (unsigned long) dd;
2116 dd->ipath_led_override_timer.expires = jiffies + 1;
2117 add_timer(&dd->ipath_led_override_timer);
Ralph Campbell2ba3f562008-04-16 21:09:29 -07002118 } else
Michael Albaugh82466f02007-05-16 15:45:09 -07002119 atomic_dec(&dd->ipath_led_override_timer_active);
Michael Albaugh82466f02007-05-16 15:45:09 -07002120}
2121
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002122/**
2123 * ipath_shutdown_device - shut down a device
2124 * @dd: the infinipath device
2125 *
2126 * This is called to make the device quiet when we are about to
2127 * unload the driver, and also when the device is administratively
2128 * disabled. It does not free any data structures.
2129 * Everything it does has to be setup again by ipath_init_chip(dd,1)
2130 */
2131void ipath_shutdown_device(struct ipath_devdata *dd)
2132{
John Gregore342c112007-09-05 01:57:14 -07002133 unsigned long flags;
2134
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002135 ipath_dbg("Shutting down the device\n");
2136
John Gregor58411d12008-04-16 21:09:24 -07002137 ipath_hol_up(dd); /* make sure user processes aren't suspended */
2138
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002139 dd->ipath_flags |= IPATH_LINKUNK;
2140 dd->ipath_flags &= ~(IPATH_INITTED | IPATH_LINKDOWN |
2141 IPATH_LINKINIT | IPATH_LINKARMED |
2142 IPATH_LINKACTIVE);
2143 *dd->ipath_statusp &= ~(IPATH_STATUS_IB_CONF |
2144 IPATH_STATUS_IB_READY);
2145
2146 /* mask interrupts, but not errors */
2147 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
2148
2149 dd->ipath_rcvctrl = 0;
2150 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
2151 dd->ipath_rcvctrl);
2152
2153 /*
2154 * gracefully stop all sends allowing any in progress to trickle out
2155 * first.
2156 */
John Gregore342c112007-09-05 01:57:14 -07002157 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
2158 dd->ipath_sendctrl = 0;
2159 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002160 /* flush it */
Roland Dreier44f8e3f2006-12-12 11:50:20 -08002161 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
John Gregore342c112007-09-05 01:57:14 -07002162 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
2163
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002164 /*
2165 * enough for anything that's going to trickle out to have actually
2166 * done so.
2167 */
2168 udelay(5);
2169
Michael Albaugh4330e4d2008-04-16 21:09:26 -07002170 ipath_set_ib_lstate(dd, 0, INFINIPATH_IBCC_LINKINITCMD_DISABLE);
Dave Olson3810f2a2007-07-20 14:23:37 -07002171 ipath_cancel_sends(dd, 0);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002172
Ralph Campbell49739b32007-09-19 16:47:31 -07002173 signal_ib_event(dd, IB_EVENT_PORT_ERR);
2174
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002175 /* disable IBC */
2176 dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
2177 ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
Bryan O'Sullivana40f55f2006-07-01 04:36:00 -07002178 dd->ipath_control | INFINIPATH_C_FREEZEMODE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002179
2180 /*
2181 * clear SerdesEnable and turn the leds off; do this here because
2182 * we are unloading, so don't count on interrupts to move along
2183 * Turn the LEDs off explictly for the same reason.
2184 */
2185 dd->ipath_f_quiet_serdes(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002186
John Gregor58411d12008-04-16 21:09:24 -07002187 /* stop all the timers that might still be running */
2188 del_timer_sync(&dd->ipath_hol_timer);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002189 if (dd->ipath_stats_timer_active) {
2190 del_timer_sync(&dd->ipath_stats_timer);
2191 dd->ipath_stats_timer_active = 0;
2192 }
2193
2194 /*
2195 * clear all interrupts and errors, so that the next time the driver
2196 * is loaded or device is enabled, we know that whatever is set
2197 * happened while we were unloaded
2198 */
2199 ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
2200 ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED);
2201 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
2202 ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
Michael Albaughaecd3b52007-05-17 07:26:28 -07002203
2204 ipath_cdbg(VERBOSE, "Flush time and errors to EEPROM\n");
2205 ipath_update_eeprom_log(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002206}
2207
2208/**
2209 * ipath_free_pddata - free a port's allocated data
2210 * @dd: the infinipath device
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002211 * @pd: the portdata structure
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002212 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002213 * free up any allocated data for a port
2214 * This should not touch anything that would affect a simultaneous
2215 * re-allocation of port data, because it is called after ipath_mutex
2216 * is released (and can be called from reinit as well).
2217 * It should never change any chip state, or global driver state.
2218 * (The only exception to global state is freeing the port0 port0_skbs.)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002219 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002220void ipath_free_pddata(struct ipath_devdata *dd, struct ipath_portdata *pd)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002221{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002222 if (!pd)
2223 return;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002224
2225 if (pd->port_rcvhdrq) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002226 ipath_cdbg(VERBOSE, "free closed port %d rcvhdrq @ %p "
2227 "(size=%lu)\n", pd->port_port, pd->port_rcvhdrq,
2228 (unsigned long) pd->port_rcvhdrq_size);
2229 dma_free_coherent(&dd->pcidev->dev, pd->port_rcvhdrq_size,
2230 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
2231 pd->port_rcvhdrq = NULL;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002232 if (pd->port_rcvhdrtail_kvaddr) {
2233 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07002234 pd->port_rcvhdrtail_kvaddr,
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002235 pd->port_rcvhdrqtailaddr_phys);
2236 pd->port_rcvhdrtail_kvaddr = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002237 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002238 }
2239 if (pd->port_port && pd->port_rcvegrbuf) {
2240 unsigned e;
2241
2242 for (e = 0; e < pd->port_rcvegrbuf_chunks; e++) {
2243 void *base = pd->port_rcvegrbuf[e];
2244 size_t size = pd->port_rcvegrbuf_size;
2245
2246 ipath_cdbg(VERBOSE, "egrbuf free(%p, %lu), "
2247 "chunk %u/%u\n", base,
2248 (unsigned long) size,
2249 e, pd->port_rcvegrbuf_chunks);
2250 dma_free_coherent(&dd->pcidev->dev, size,
2251 base, pd->port_rcvegrbuf_phys[e]);
2252 }
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002253 kfree(pd->port_rcvegrbuf);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002254 pd->port_rcvegrbuf = NULL;
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002255 kfree(pd->port_rcvegrbuf_phys);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002256 pd->port_rcvegrbuf_phys = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002257 pd->port_rcvegrbuf_chunks = 0;
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002258 } else if (pd->port_port == 0 && dd->ipath_port0_skbinfo) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002259 unsigned e;
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002260 struct ipath_skbinfo *skbinfo = dd->ipath_port0_skbinfo;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002261
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002262 dd->ipath_port0_skbinfo = NULL;
2263 ipath_cdbg(VERBOSE, "free closed port %d "
2264 "ipath_port0_skbinfo @ %p\n", pd->port_port,
2265 skbinfo);
Ralph Campbell9355fb62008-04-16 21:09:29 -07002266 for (e = 0; e < dd->ipath_p0_rcvegrcnt; e++)
Ralph Campbell2ba3f562008-04-16 21:09:29 -07002267 if (skbinfo[e].skb) {
2268 pci_unmap_single(dd->pcidev, skbinfo[e].phys,
2269 dd->ipath_ibmaxlen,
2270 PCI_DMA_FROMDEVICE);
2271 dev_kfree_skb(skbinfo[e].skb);
2272 }
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002273 vfree(skbinfo);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002274 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002275 kfree(pd->port_tid_pg_list);
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002276 vfree(pd->subport_uregbase);
2277 vfree(pd->subport_rcvegrbuf);
2278 vfree(pd->subport_rcvhdr_base);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002279 kfree(pd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002280}
2281
Roland Dreierac2ae4c2006-04-19 11:40:12 -07002282static int __init infinipath_init(void)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002283{
2284 int ret;
2285
Bryan O'Sullivan39c0d0b2007-03-15 14:44:52 -07002286 if (ipath_debug & __IPATH_DBG)
2287 printk(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002288
2289 /*
2290 * These must be called before the driver is registered with
2291 * the PCI subsystem.
2292 */
2293 idr_init(&unit_table);
2294 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
2295 ret = -ENOMEM;
2296 goto bail;
2297 }
2298
2299 ret = pci_register_driver(&ipath_driver);
2300 if (ret < 0) {
2301 printk(KERN_ERR IPATH_DRV_NAME
2302 ": Unable to register driver: error %d\n", -ret);
2303 goto bail_unit;
2304 }
2305
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002306 ret = ipath_init_ipathfs();
2307 if (ret < 0) {
2308 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
2309 "ipathfs: error %d\n", -ret);
Greg Kroah-Hartman23b9c1a2007-12-04 22:53:16 -08002310 goto bail_pci;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002311 }
2312
2313 goto bail;
2314
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002315bail_pci:
2316 pci_unregister_driver(&ipath_driver);
2317
2318bail_unit:
2319 idr_destroy(&unit_table);
2320
2321bail:
2322 return ret;
2323}
2324
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002325static void __exit infinipath_cleanup(void)
2326{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002327 ipath_exit_ipathfs();
2328
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002329 ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
2330 pci_unregister_driver(&ipath_driver);
2331
2332 idr_destroy(&unit_table);
2333}
2334
2335/**
2336 * ipath_reset_device - reset the chip if possible
2337 * @unit: the device to reset
2338 *
2339 * Whether or not reset is successful, we attempt to re-initialize the chip
2340 * (that is, much like a driver unload/reload). We clear the INITTED flag
2341 * so that the various entry points will fail until we reinitialize. For
2342 * now, we only allow this if no user ports are open that use chip resources
2343 */
2344int ipath_reset_device(int unit)
2345{
2346 int ret, i;
2347 struct ipath_devdata *dd = ipath_lookup(unit);
2348
2349 if (!dd) {
2350 ret = -ENODEV;
2351 goto bail;
2352 }
2353
Michael Albaugh82466f02007-05-16 15:45:09 -07002354 if (atomic_read(&dd->ipath_led_override_timer_active)) {
2355 /* Need to stop LED timer, _then_ shut off LEDs */
2356 del_timer_sync(&dd->ipath_led_override_timer);
2357 atomic_set(&dd->ipath_led_override_timer_active, 0);
2358 }
2359
2360 /* Shut off LEDs after we are sure timer is not running */
2361 dd->ipath_led_override = LED_OVER_BOTH_OFF;
2362 dd->ipath_f_setextled(dd, 0, 0);
2363
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002364 dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
2365
2366 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
2367 dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
2368 "not initialized or not present\n", unit);
2369 ret = -ENXIO;
2370 goto bail;
2371 }
2372
2373 if (dd->ipath_pd)
Bryan O'Sullivan23e86a42006-04-24 14:22:59 -07002374 for (i = 1; i < dd->ipath_cfgports; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002375 if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
2376 ipath_dbg("unit %u port %d is in use "
2377 "(PID %u cmd %s), can't reset\n",
2378 unit, i,
2379 dd->ipath_pd[i]->port_pid,
2380 dd->ipath_pd[i]->port_comm);
2381 ret = -EBUSY;
2382 goto bail;
2383 }
2384 }
2385
2386 dd->ipath_flags &= ~IPATH_INITTED;
2387 ret = dd->ipath_f_reset(dd);
2388 if (ret != 1)
2389 ipath_dbg("reset was not successful\n");
2390 ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2391 unit);
2392 ret = ipath_init_chip(dd, 1);
2393 if (ret)
2394 ipath_dev_err(dd, "Reinitialize unit %u after "
2395 "reset failed with %d\n", unit, ret);
2396 else
2397 dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
2398 "resetting\n", unit);
2399
2400bail:
2401 return ret;
2402}
2403
John Gregor58411d12008-04-16 21:09:24 -07002404/*
2405 * send a signal to all the processes that have the driver open
2406 * through the normal interfaces (i.e., everything other than diags
2407 * interface). Returns number of signalled processes.
2408 */
2409static int ipath_signal_procs(struct ipath_devdata *dd, int sig)
2410{
2411 int i, sub, any = 0;
2412 pid_t pid;
2413
2414 if (!dd->ipath_pd)
2415 return 0;
2416 for (i = 1; i < dd->ipath_cfgports; i++) {
2417 if (!dd->ipath_pd[i] || !dd->ipath_pd[i]->port_cnt ||
2418 !dd->ipath_pd[i]->port_pid)
2419 continue;
2420 pid = dd->ipath_pd[i]->port_pid;
2421 dev_info(&dd->pcidev->dev, "context %d in use "
2422 "(PID %u), sending signal %d\n",
2423 i, pid, sig);
2424 kill_proc(pid, sig, 1);
2425 any++;
2426 for (sub = 0; sub < INFINIPATH_MAX_SUBPORT; sub++) {
2427 pid = dd->ipath_pd[i]->port_subpid[sub];
2428 if (!pid)
2429 continue;
2430 dev_info(&dd->pcidev->dev, "sub-context "
2431 "%d:%d in use (PID %u), sending "
2432 "signal %d\n", i, sub, pid, sig);
2433 kill_proc(pid, sig, 1);
2434 any++;
2435 }
2436 }
2437 return any;
2438}
2439
2440static void ipath_hol_signal_down(struct ipath_devdata *dd)
2441{
2442 if (ipath_signal_procs(dd, SIGSTOP))
2443 ipath_dbg("Stopped some processes\n");
2444 ipath_cancel_sends(dd, 1);
2445}
2446
2447
2448static void ipath_hol_signal_up(struct ipath_devdata *dd)
2449{
2450 if (ipath_signal_procs(dd, SIGCONT))
2451 ipath_dbg("Continued some processes\n");
2452}
2453
2454/*
2455 * link is down, stop any users processes, and flush pending sends
2456 * to prevent HoL blocking, then start the HoL timer that
2457 * periodically continues, then stop procs, so they can detect
2458 * link down if they want, and do something about it.
2459 * Timer may already be running, so use __mod_timer, not add_timer.
2460 */
2461void ipath_hol_down(struct ipath_devdata *dd)
2462{
2463 dd->ipath_hol_state = IPATH_HOL_DOWN;
2464 ipath_hol_signal_down(dd);
2465 dd->ipath_hol_next = IPATH_HOL_DOWNCONT;
2466 dd->ipath_hol_timer.expires = jiffies +
2467 msecs_to_jiffies(ipath_hol_timeout_ms);
2468 __mod_timer(&dd->ipath_hol_timer, dd->ipath_hol_timer.expires);
2469}
2470
2471/*
2472 * link is up, continue any user processes, and ensure timer
2473 * is a nop, if running. Let timer keep running, if set; it
2474 * will nop when it sees the link is up
2475 */
2476void ipath_hol_up(struct ipath_devdata *dd)
2477{
2478 ipath_hol_signal_up(dd);
2479 dd->ipath_hol_state = IPATH_HOL_UP;
2480}
2481
2482/*
2483 * toggle the running/not running state of user proceses
2484 * to prevent HoL blocking on chip resources, but still allow
2485 * user processes to do link down special case handling.
2486 * Should only be called via the timer
2487 */
2488void ipath_hol_event(unsigned long opaque)
2489{
2490 struct ipath_devdata *dd = (struct ipath_devdata *)opaque;
2491
2492 if (dd->ipath_hol_next == IPATH_HOL_DOWNSTOP
2493 && dd->ipath_hol_state != IPATH_HOL_UP) {
2494 dd->ipath_hol_next = IPATH_HOL_DOWNCONT;
2495 ipath_dbg("Stopping processes\n");
2496 ipath_hol_signal_down(dd);
2497 } else { /* may do "extra" if also in ipath_hol_up() */
2498 dd->ipath_hol_next = IPATH_HOL_DOWNSTOP;
2499 ipath_dbg("Continuing processes\n");
2500 ipath_hol_signal_up(dd);
2501 }
2502 if (dd->ipath_hol_state == IPATH_HOL_UP)
2503 ipath_dbg("link's up, don't resched timer\n");
2504 else {
2505 dd->ipath_hol_timer.expires = jiffies +
2506 msecs_to_jiffies(ipath_hol_timeout_ms);
2507 __mod_timer(&dd->ipath_hol_timer,
2508 dd->ipath_hol_timer.expires);
2509 }
2510}
2511
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002512int ipath_set_rx_pol_inv(struct ipath_devdata *dd, u8 new_pol_inv)
2513{
2514 u64 val;
Ralph Campbell2ba3f562008-04-16 21:09:29 -07002515
2516 if (new_pol_inv > INFINIPATH_XGXS_RX_POL_MASK)
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002517 return -1;
Ralph Campbell2ba3f562008-04-16 21:09:29 -07002518 if (dd->ipath_rx_pol_inv != new_pol_inv) {
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002519 dd->ipath_rx_pol_inv = new_pol_inv;
2520 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
2521 val &= ~(INFINIPATH_XGXS_RX_POL_MASK <<
Roland Dreier3cd96562006-09-22 15:22:46 -07002522 INFINIPATH_XGXS_RX_POL_SHIFT);
2523 val |= ((u64)dd->ipath_rx_pol_inv) <<
2524 INFINIPATH_XGXS_RX_POL_SHIFT;
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002525 ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
2526 }
2527 return 0;
2528}
Dave Olson6ac50722007-08-09 03:11:38 -07002529
2530/*
2531 * Disable and enable the armlaunch error. Used for PIO bandwidth testing on
2532 * the 7220, which is count-based, rather than trigger-based. Safe for the
2533 * driver check, since it's at init. Not completely safe when used for
2534 * user-mode checking, since some error checking can be lost, but not
2535 * particularly risky, and only has problematic side-effects in the face of
2536 * very buggy user code. There is no reference counting, but that's also
2537 * fine, given the intended use.
2538 */
2539void ipath_enable_armlaunch(struct ipath_devdata *dd)
2540{
2541 dd->ipath_lasterror &= ~INFINIPATH_E_SPIOARMLAUNCH;
2542 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear,
2543 INFINIPATH_E_SPIOARMLAUNCH);
2544 dd->ipath_errormask |= INFINIPATH_E_SPIOARMLAUNCH;
2545 ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask,
2546 dd->ipath_errormask);
2547}
2548
2549void ipath_disable_armlaunch(struct ipath_devdata *dd)
2550{
2551 /* so don't re-enable if already set */
2552 dd->ipath_maskederrs &= ~INFINIPATH_E_SPIOARMLAUNCH;
2553 dd->ipath_errormask &= ~INFINIPATH_E_SPIOARMLAUNCH;
2554 ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask,
2555 dd->ipath_errormask);
2556}
2557
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002558module_init(infinipath_init);
2559module_exit(infinipath_cleanup);