blob: fc355981bbab10213855eb4208def7179406bf3d [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'Sullivan27b678d2006-07-01 04:36:17 -070044#include "ipath_common.h"
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080045
46static void ipath_update_pio_bufs(struct ipath_devdata *);
47
48const char *ipath_get_unit_name(int unit)
49{
50 static char iname[16];
51 snprintf(iname, sizeof iname, "infinipath%u", unit);
52 return iname;
53}
54
Bryan O'Sullivan759d5762006-07-01 04:35:49 -070055#define DRIVER_LOAD_MSG "QLogic " IPATH_DRV_NAME " loaded: "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080056#define PFX IPATH_DRV_NAME ": "
57
58/*
59 * The size has to be longer than this string, so we can append
60 * board/chip information to it in the init code.
61 */
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -070062const char ib_ipath_version[] = IPATH_IDSTR "\n";
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080063
64static struct idr unit_table;
65DEFINE_SPINLOCK(ipath_devs_lock);
66LIST_HEAD(ipath_dev_list);
67
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -070068wait_queue_head_t ipath_state_wait;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080069
70unsigned ipath_debug = __IPATH_INFO;
71
72module_param_named(debug, ipath_debug, uint, S_IWUSR | S_IRUGO);
73MODULE_PARM_DESC(debug, "mask for debug prints");
74EXPORT_SYMBOL_GPL(ipath_debug);
75
76MODULE_LICENSE("GPL");
Bryan O'Sullivan759d5762006-07-01 04:35:49 -070077MODULE_AUTHOR("QLogic <support@pathscale.com>");
78MODULE_DESCRIPTION("QLogic InfiniPath driver");
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080079
80const char *ipath_ibcstatus_str[] = {
81 "Disabled",
82 "LinkUp",
83 "PollActive",
84 "PollQuiet",
85 "SleepDelay",
86 "SleepQuiet",
87 "LState6", /* unused */
88 "LState7", /* unused */
89 "CfgDebounce",
90 "CfgRcvfCfg",
91 "CfgWaitRmt",
92 "CfgIdle",
93 "RecovRetrain",
94 "LState0xD", /* unused */
95 "RecovWaitRmt",
96 "RecovIdle",
97};
98
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080099static void __devexit ipath_remove_one(struct pci_dev *);
100static int __devinit ipath_init_one(struct pci_dev *,
101 const struct pci_device_id *);
102
103/* Only needed for registration, nothing else needs this info */
104#define PCI_VENDOR_ID_PATHSCALE 0x1fc1
105#define PCI_DEVICE_ID_INFINIPATH_HT 0xd
106#define PCI_DEVICE_ID_INFINIPATH_PE800 0x10
107
Arthur Jones35884232007-07-06 12:48:53 -0700108/* Number of seconds before our card status check... */
109#define STATUS_TIMEOUT 60
110
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800111static const struct pci_device_id ipath_pci_tbl[] = {
Roland Dreier6f4bb3d2006-05-12 14:57:52 -0700112 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_HT) },
113 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_PE800) },
114 { 0, }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800115};
116
117MODULE_DEVICE_TABLE(pci, ipath_pci_tbl);
118
119static struct pci_driver ipath_driver = {
120 .name = IPATH_DRV_NAME,
121 .probe = ipath_init_one,
122 .remove = __devexit_p(ipath_remove_one),
123 .id_table = ipath_pci_tbl,
Greg Kroah-Hartman23b9c1a2007-12-04 22:53:16 -0800124 .driver = {
125 .groups = ipath_driver_attr_groups,
126 },
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800127};
128
Arthur Jones35884232007-07-06 12:48:53 -0700129static void ipath_check_status(struct work_struct *work)
130{
131 struct ipath_devdata *dd = container_of(work, struct ipath_devdata,
132 status_work.work);
133
134 /*
135 * If we don't have any interrupts, let the user know and
136 * don't bother checking again.
137 */
138 if (dd->ipath_int_counter == 0)
139 dev_err(&dd->pcidev->dev, "No interrupts detected.\n");
140}
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800141
142static inline void read_bars(struct ipath_devdata *dd, struct pci_dev *dev,
143 u32 *bar0, u32 *bar1)
144{
145 int ret;
146
147 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, bar0);
148 if (ret)
149 ipath_dev_err(dd, "failed to read bar0 before enable: "
150 "error %d\n", -ret);
151
152 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, bar1);
153 if (ret)
154 ipath_dev_err(dd, "failed to read bar1 before enable: "
155 "error %d\n", -ret);
156
157 ipath_dbg("Read bar0 %x bar1 %x\n", *bar0, *bar1);
158}
159
160static void ipath_free_devdata(struct pci_dev *pdev,
161 struct ipath_devdata *dd)
162{
163 unsigned long flags;
164
165 pci_set_drvdata(pdev, NULL);
166
167 if (dd->ipath_unit != -1) {
168 spin_lock_irqsave(&ipath_devs_lock, flags);
169 idr_remove(&unit_table, dd->ipath_unit);
170 list_del(&dd->ipath_list);
171 spin_unlock_irqrestore(&ipath_devs_lock, flags);
172 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700173 vfree(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800174}
175
176static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
177{
178 unsigned long flags;
179 struct ipath_devdata *dd;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800180 int ret;
181
182 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
183 dd = ERR_PTR(-ENOMEM);
184 goto bail;
185 }
186
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700187 dd = vmalloc(sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800188 if (!dd) {
189 dd = ERR_PTR(-ENOMEM);
190 goto bail;
191 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700192 memset(dd, 0, sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800193 dd->ipath_unit = -1;
194
195 spin_lock_irqsave(&ipath_devs_lock, flags);
196
197 ret = idr_get_new(&unit_table, dd, &dd->ipath_unit);
198 if (ret < 0) {
199 printk(KERN_ERR IPATH_DRV_NAME
200 ": Could not allocate unit ID: error %d\n", -ret);
201 ipath_free_devdata(pdev, dd);
202 dd = ERR_PTR(ret);
203 goto bail_unlock;
204 }
205
206 dd->pcidev = pdev;
207 pci_set_drvdata(pdev, dd);
208
Arthur Jones35884232007-07-06 12:48:53 -0700209 INIT_DELAYED_WORK(&dd->status_work, ipath_check_status);
210
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800211 list_add(&dd->ipath_list, &ipath_dev_list);
212
213bail_unlock:
214 spin_unlock_irqrestore(&ipath_devs_lock, flags);
215
216bail:
217 return dd;
218}
219
220static inline struct ipath_devdata *__ipath_lookup(int unit)
221{
222 return idr_find(&unit_table, unit);
223}
224
225struct ipath_devdata *ipath_lookup(int unit)
226{
227 struct ipath_devdata *dd;
228 unsigned long flags;
229
230 spin_lock_irqsave(&ipath_devs_lock, flags);
231 dd = __ipath_lookup(unit);
232 spin_unlock_irqrestore(&ipath_devs_lock, flags);
233
234 return dd;
235}
236
237int ipath_count_units(int *npresentp, int *nupp, u32 *maxportsp)
238{
239 int nunits, npresent, nup;
240 struct ipath_devdata *dd;
241 unsigned long flags;
242 u32 maxports;
243
244 nunits = npresent = nup = maxports = 0;
245
246 spin_lock_irqsave(&ipath_devs_lock, flags);
247
248 list_for_each_entry(dd, &ipath_dev_list, ipath_list) {
249 nunits++;
250 if ((dd->ipath_flags & IPATH_PRESENT) && dd->ipath_kregbase)
251 npresent++;
252 if (dd->ipath_lid &&
253 !(dd->ipath_flags & (IPATH_DISABLED | IPATH_LINKDOWN
254 | IPATH_LINKUNK)))
255 nup++;
256 if (dd->ipath_cfgports > maxports)
257 maxports = dd->ipath_cfgports;
258 }
259
260 spin_unlock_irqrestore(&ipath_devs_lock, flags);
261
262 if (npresentp)
263 *npresentp = npresent;
264 if (nupp)
265 *nupp = nup;
266 if (maxportsp)
267 *maxportsp = maxports;
268
269 return nunits;
270}
271
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800272/*
273 * These next two routines are placeholders in case we don't have per-arch
274 * code for controlling write combining. If explicit control of write
275 * combining is not available, performance will probably be awful.
276 */
277
278int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd)
279{
280 return -EOPNOTSUPP;
281}
282
283void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd)
284{
285}
286
Dave Olson9bec3992007-06-01 13:01:47 -0700287/*
288 * Perform a PIO buffer bandwidth write test, to verify proper system
289 * configuration. Even when all the setup calls work, occasionally
290 * BIOS or other issues can prevent write combining from working, or
291 * can cause other bandwidth problems to the chip.
292 *
293 * This test simply writes the same buffer over and over again, and
294 * measures close to the peak bandwidth to the chip (not testing
295 * data bandwidth to the wire). On chips that use an address-based
296 * trigger to send packets to the wire, this is easy. On chips that
297 * use a count to trigger, we want to make sure that the packet doesn't
298 * go out on the wire, or trigger flow control checks.
299 */
300static void ipath_verify_pioperf(struct ipath_devdata *dd)
301{
302 u32 pbnum, cnt, lcnt;
303 u32 __iomem *piobuf;
304 u32 *addr;
305 u64 msecs, emsecs;
306
307 piobuf = ipath_getpiobuf(dd, &pbnum);
308 if (!piobuf) {
309 dev_info(&dd->pcidev->dev,
310 "No PIObufs for checking perf, skipping\n");
311 return;
312 }
313
314 /*
315 * Enough to give us a reasonable test, less than piobuf size, and
316 * likely multiple of store buffer length.
317 */
318 cnt = 1024;
319
320 addr = vmalloc(cnt);
321 if (!addr) {
322 dev_info(&dd->pcidev->dev,
323 "Couldn't get memory for checking PIO perf,"
324 " skipping\n");
325 goto done;
326 }
327
328 preempt_disable(); /* we want reasonably accurate elapsed time */
329 msecs = 1 + jiffies_to_msecs(jiffies);
330 for (lcnt = 0; lcnt < 10000U; lcnt++) {
331 /* wait until we cross msec boundary */
332 if (jiffies_to_msecs(jiffies) >= msecs)
333 break;
334 udelay(1);
335 }
336
337 writeq(0, piobuf); /* length 0, no dwords actually sent */
338 ipath_flush_wc();
339
340 /*
341 * this is only roughly accurate, since even with preempt we
342 * still take interrupts that could take a while. Running for
343 * >= 5 msec seems to get us "close enough" to accurate values
344 */
345 msecs = jiffies_to_msecs(jiffies);
346 for (emsecs = lcnt = 0; emsecs <= 5UL; lcnt++) {
347 __iowrite32_copy(piobuf + 64, addr, cnt >> 2);
348 emsecs = jiffies_to_msecs(jiffies) - msecs;
349 }
350
351 /* 1 GiB/sec, slightly over IB SDR line rate */
352 if (lcnt < (emsecs * 1024U))
353 ipath_dev_err(dd,
354 "Performance problem: bandwidth to PIO buffers is "
355 "only %u MiB/sec\n",
356 lcnt / (u32) emsecs);
357 else
358 ipath_dbg("PIO buffer bandwidth %u MiB/sec is OK\n",
359 lcnt / (u32) emsecs);
360
361 preempt_enable();
362
363 vfree(addr);
364
365done:
366 /* disarm piobuf, so it's available again */
367 ipath_disarm_piobufs(dd, pbnum, 1);
368}
369
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800370static int __devinit ipath_init_one(struct pci_dev *pdev,
371 const struct pci_device_id *ent)
372{
373 int ret, len, j;
374 struct ipath_devdata *dd;
375 unsigned long long addr;
376 u32 bar0 = 0, bar1 = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800377
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800378 dd = ipath_alloc_devdata(pdev);
379 if (IS_ERR(dd)) {
380 ret = PTR_ERR(dd);
381 printk(KERN_ERR IPATH_DRV_NAME
382 ": Could not allocate devdata: error %d\n", -ret);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700383 goto bail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800384 }
385
386 ipath_cdbg(VERBOSE, "initializing unit #%u\n", dd->ipath_unit);
387
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800388 ret = pci_enable_device(pdev);
389 if (ret) {
390 /* This can happen iff:
391 *
392 * We did a chip reset, and then failed to reprogram the
393 * BAR, or the chip reset due to an internal error. We then
394 * unloaded the driver and reloaded it.
395 *
396 * Both reset cases set the BAR back to initial state. For
397 * the latter case, the AER sticky error bit at offset 0x718
398 * should be set, but the Linux kernel doesn't yet know
399 * about that, it appears. If the original BAR was retained
400 * in the kernel data structures, this may be OK.
401 */
402 ipath_dev_err(dd, "enable unit %d failed: error %d\n",
403 dd->ipath_unit, -ret);
404 goto bail_devdata;
405 }
406 addr = pci_resource_start(pdev, 0);
407 len = pci_resource_len(pdev, 0);
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800408 ipath_cdbg(VERBOSE, "regbase (0) %llx len %d pdev->irq %d, vend %x/%x "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800409 "driver_data %lx\n", addr, len, pdev->irq, ent->vendor,
410 ent->device, ent->driver_data);
411
412 read_bars(dd, pdev, &bar0, &bar1);
413
414 if (!bar1 && !(bar0 & ~0xf)) {
415 if (addr) {
416 dev_info(&pdev->dev, "BAR is 0 (probable RESET), "
417 "rewriting as %llx\n", addr);
418 ret = pci_write_config_dword(
419 pdev, PCI_BASE_ADDRESS_0, addr);
420 if (ret) {
421 ipath_dev_err(dd, "rewrite of BAR0 "
422 "failed: err %d\n", -ret);
423 goto bail_disable;
424 }
425 ret = pci_write_config_dword(
426 pdev, PCI_BASE_ADDRESS_1, addr >> 32);
427 if (ret) {
428 ipath_dev_err(dd, "rewrite of BAR1 "
429 "failed: err %d\n", -ret);
430 goto bail_disable;
431 }
432 } else {
433 ipath_dev_err(dd, "BAR is 0 (probable RESET), "
434 "not usable until reboot\n");
435 ret = -ENODEV;
436 goto bail_disable;
437 }
438 }
439
440 ret = pci_request_regions(pdev, IPATH_DRV_NAME);
441 if (ret) {
442 dev_info(&pdev->dev, "pci_request_regions unit %u fails: "
443 "err %d\n", dd->ipath_unit, -ret);
444 goto bail_disable;
445 }
446
447 ret = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
448 if (ret) {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700449 /*
450 * if the 64 bit setup fails, try 32 bit. Some systems
451 * do not setup 64 bit maps on systems with 2GB or less
452 * memory installed.
453 */
454 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
455 if (ret) {
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700456 dev_info(&pdev->dev,
457 "Unable to set DMA mask for unit %u: %d\n",
458 dd->ipath_unit, ret);
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700459 goto bail_regions;
460 }
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700461 else {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700462 ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700463 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
464 if (ret)
465 dev_info(&pdev->dev,
466 "Unable to set DMA consistent mask "
467 "for unit %u: %d\n",
468 dd->ipath_unit, ret);
469
470 }
471 }
472 else {
473 ret = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
474 if (ret)
475 dev_info(&pdev->dev,
476 "Unable to set DMA consistent mask "
477 "for unit %u: %d\n",
478 dd->ipath_unit, ret);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800479 }
480
481 pci_set_master(pdev);
482
483 /*
484 * Save BARs to rewrite after device reset. Save all 64 bits of
485 * BAR, just in case.
486 */
487 dd->ipath_pcibar0 = addr;
488 dd->ipath_pcibar1 = addr >> 32;
489 dd->ipath_deviceid = ent->device; /* save for later use */
490 dd->ipath_vendorid = ent->vendor;
491
492 /* setup the chip-specific functions, as early as possible. */
493 switch (ent->device) {
494 case PCI_DEVICE_ID_INFINIPATH_HT:
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700495#ifdef CONFIG_HT_IRQ
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700496 ipath_init_iba6110_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800497 break;
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700498#else
499 ipath_dev_err(dd, "QLogic HT device 0x%x cannot work if "
500 "CONFIG_HT_IRQ is not enabled\n", ent->device);
501 return -ENODEV;
Bryan O'Sullivane757bef2006-11-16 01:19:19 -0800502#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800503 case PCI_DEVICE_ID_INFINIPATH_PE800:
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700504#ifdef CONFIG_PCI_MSI
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700505 ipath_init_iba6120_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800506 break;
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700507#else
508 ipath_dev_err(dd, "QLogic PCIE device 0x%x cannot work if "
509 "CONFIG_PCI_MSI is not enabled\n", ent->device);
510 return -ENODEV;
Bryan O'Sullivane757bef2006-11-16 01:19:19 -0800511#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800512 default:
Bryan O'Sullivan759d5762006-07-01 04:35:49 -0700513 ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800514 "failing\n", ent->device);
515 return -ENODEV;
516 }
517
518 for (j = 0; j < 6; j++) {
519 if (!pdev->resource[j].start)
520 continue;
Greg Kroah-Hartmane29419f2006-06-12 15:20:16 -0700521 ipath_cdbg(VERBOSE, "BAR %d start %llx, end %llx, len %llx\n",
522 j, (unsigned long long)pdev->resource[j].start,
523 (unsigned long long)pdev->resource[j].end,
524 (unsigned long long)pci_resource_len(pdev, j));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800525 }
526
527 if (!addr) {
528 ipath_dev_err(dd, "No valid address in BAR 0!\n");
529 ret = -ENODEV;
530 goto bail_regions;
531 }
532
Auke Kok44c10132007-06-08 15:46:36 -0700533 dd->ipath_pcirev = pdev->revision;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800534
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700535#if defined(__powerpc__)
536 /* There isn't a generic way to specify writethrough mappings */
537 dd->ipath_kregbase = __ioremap(addr, len,
538 (_PAGE_NO_CACHE|_PAGE_WRITETHRU));
539#else
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800540 dd->ipath_kregbase = ioremap_nocache(addr, len);
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700541#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800542
543 if (!dd->ipath_kregbase) {
544 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
545 addr);
546 ret = -ENOMEM;
547 goto bail_iounmap;
548 }
549 dd->ipath_kregend = (u64 __iomem *)
550 ((void __iomem *)dd->ipath_kregbase + len);
551 dd->ipath_physaddr = addr; /* used for io_remap, etc. */
552 /* for user mmap */
Bryan O'Sullivanb35f0042006-07-01 04:35:59 -0700553 ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
554 addr, dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800555
556 /*
557 * clear ipath_flags here instead of in ipath_init_chip as it is set
558 * by ipath_setup_htconfig.
559 */
560 dd->ipath_flags = 0;
Bryan O'Sullivanfba75202006-07-01 04:36:09 -0700561 dd->ipath_lli_counter = 0;
562 dd->ipath_lli_errors = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800563
564 if (dd->ipath_f_bus(dd, pdev))
565 ipath_dev_err(dd, "Failed to setup config space; "
566 "continuing anyway\n");
567
568 /*
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700569 * set up our interrupt handler; IRQF_SHARED probably not needed,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800570 * since MSI interrupts shouldn't be shared but won't hurt for now.
571 * check 0 irq after we return from chip-specific bus setup, since
572 * that can affect this due to setup
573 */
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800574 if (!dd->ipath_irq)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800575 ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't "
576 "work\n");
577 else {
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800578 ret = request_irq(dd->ipath_irq, ipath_intr, IRQF_SHARED,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800579 IPATH_DRV_NAME, dd);
580 if (ret) {
581 ipath_dev_err(dd, "Couldn't setup irq handler, "
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800582 "irq=%d: %d\n", dd->ipath_irq, ret);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800583 goto bail_iounmap;
584 }
585 }
586
587 ret = ipath_init_chip(dd, 0); /* do the chip-specific init */
588 if (ret)
Arthur Jones7b196e22007-03-15 14:45:04 -0700589 goto bail_irqsetup;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800590
591 ret = ipath_enable_wc(dd);
592
593 if (ret) {
594 ipath_dev_err(dd, "Write combining not enabled "
595 "(err %d): performance may be poor\n",
596 -ret);
597 ret = 0;
598 }
599
Dave Olson9bec3992007-06-01 13:01:47 -0700600 ipath_verify_pioperf(dd);
601
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800602 ipath_device_create_group(&pdev->dev, dd);
603 ipathfs_add_device(dd);
604 ipath_user_add(dd);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700605 ipath_diag_add(dd);
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700606 ipath_register_ib_device(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800607
Arthur Jones35884232007-07-06 12:48:53 -0700608 /* Check that card status in STATUS_TIMEOUT seconds. */
609 schedule_delayed_work(&dd->status_work, HZ * STATUS_TIMEOUT);
610
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800611 goto bail;
612
Arthur Jones7b196e22007-03-15 14:45:04 -0700613bail_irqsetup:
614 if (pdev->irq) free_irq(pdev->irq, dd);
615
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800616bail_iounmap:
617 iounmap((volatile void __iomem *) dd->ipath_kregbase);
618
619bail_regions:
620 pci_release_regions(pdev);
621
622bail_disable:
623 pci_disable_device(pdev);
624
625bail_devdata:
626 ipath_free_devdata(pdev, dd);
627
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800628bail:
629 return ret;
630}
631
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700632static void __devexit cleanup_device(struct ipath_devdata *dd)
633{
634 int port;
635
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700636 if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
637 /* can't do anything more with chip; needs re-init */
638 *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
639 if (dd->ipath_kregbase) {
640 /*
641 * if we haven't already cleaned up before these are
642 * to ensure any register reads/writes "fail" until
643 * re-init
644 */
645 dd->ipath_kregbase = NULL;
646 dd->ipath_uregbase = 0;
647 dd->ipath_sregbase = 0;
648 dd->ipath_cregbase = 0;
649 dd->ipath_kregsize = 0;
650 }
651 ipath_disable_wc(dd);
652 }
653
654 if (dd->ipath_pioavailregs_dma) {
655 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
656 (void *) dd->ipath_pioavailregs_dma,
657 dd->ipath_pioavailregs_phys);
658 dd->ipath_pioavailregs_dma = NULL;
659 }
660 if (dd->ipath_dummy_hdrq) {
661 dma_free_coherent(&dd->pcidev->dev,
662 dd->ipath_pd[0]->port_rcvhdrq_size,
663 dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
664 dd->ipath_dummy_hdrq = NULL;
665 }
666
667 if (dd->ipath_pageshadow) {
668 struct page **tmpp = dd->ipath_pageshadow;
669 dma_addr_t *tmpd = dd->ipath_physshadow;
670 int i, cnt = 0;
671
672 ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
673 "locked\n");
674 for (port = 0; port < dd->ipath_cfgports; port++) {
675 int port_tidbase = port * dd->ipath_rcvtidcnt;
676 int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
677 for (i = port_tidbase; i < maxtid; i++) {
678 if (!tmpp[i])
679 continue;
680 pci_unmap_page(dd->pcidev, tmpd[i],
681 PAGE_SIZE, PCI_DMA_FROMDEVICE);
682 ipath_release_user_pages(&tmpp[i], 1);
683 tmpp[i] = NULL;
684 cnt++;
685 }
686 }
687 if (cnt) {
688 ipath_stats.sps_pageunlocks += cnt;
689 ipath_cdbg(VERBOSE, "There were still %u expTID "
690 "entries locked\n", cnt);
691 }
692 if (ipath_stats.sps_pagelocks ||
693 ipath_stats.sps_pageunlocks)
694 ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
695 "unlocked via ipath_m{un}lock\n",
696 (unsigned long long)
697 ipath_stats.sps_pagelocks,
698 (unsigned long long)
699 ipath_stats.sps_pageunlocks);
700
701 ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
702 dd->ipath_pageshadow);
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700703 tmpp = dd->ipath_pageshadow;
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700704 dd->ipath_pageshadow = NULL;
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700705 vfree(tmpp);
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700706 }
707
708 /*
709 * free any resources still in use (usually just kernel ports)
710 * at unload; we do for portcnt, not cfgports, because cfgports
711 * could have changed while we were loaded.
712 */
713 for (port = 0; port < dd->ipath_portcnt; port++) {
714 struct ipath_portdata *pd = dd->ipath_pd[port];
715 dd->ipath_pd[port] = NULL;
716 ipath_free_pddata(dd, pd);
717 }
718 kfree(dd->ipath_pd);
719 /*
720 * debuggability, in case some cleanup path tries to use it
721 * after this
722 */
723 dd->ipath_pd = NULL;
724}
725
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800726static void __devexit ipath_remove_one(struct pci_dev *pdev)
727{
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700728 struct ipath_devdata *dd = pci_get_drvdata(pdev);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800729
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700730 ipath_cdbg(VERBOSE, "removing, pdev=%p, dd=%p\n", pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800731
Bryan O'Sullivan53c1d2c2007-03-15 14:45:11 -0700732 /*
733 * disable the IB link early, to be sure no new packets arrive, which
734 * complicates the shutdown process
735 */
736 ipath_shutdown_device(dd);
737
Arthur Jones35884232007-07-06 12:48:53 -0700738 cancel_delayed_work(&dd->status_work);
739 flush_scheduled_work();
740
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700741 if (dd->verbs_dev)
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -0700742 ipath_unregister_ib_device(dd->verbs_dev);
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -0700743
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700744 ipath_diag_remove(dd);
745 ipath_user_remove(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800746 ipathfs_remove_device(dd);
747 ipath_device_remove_group(&pdev->dev, dd);
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700748
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800749 ipath_cdbg(VERBOSE, "Releasing pci memory regions, dd %p, "
750 "unit %u\n", dd, (u32) dd->ipath_unit);
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700751
752 cleanup_device(dd);
753
754 /*
755 * turn off rcv, send, and interrupts for all ports, all drivers
756 * should also hard reset the chip here?
757 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
758 * for all versions of the driver, if they were allocated
759 */
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800760 if (dd->ipath_irq) {
761 ipath_cdbg(VERBOSE, "unit %u free irq %d\n",
762 dd->ipath_unit, dd->ipath_irq);
763 dd->ipath_f_free_irq(dd);
Bryan O'Sullivan7227aac42006-09-28 09:00:16 -0700764 } else
765 ipath_dbg("irq is 0, not doing free_irq "
766 "for unit %u\n", dd->ipath_unit);
767 /*
768 * we check for NULL here, because it's outside
769 * the kregbase check, and we need to call it
770 * after the free_irq. Thus it's possible that
771 * the function pointers were never initialized.
772 */
773 if (dd->ipath_f_cleanup)
774 /* clean up chip-specific stuff */
775 dd->ipath_f_cleanup(dd);
776
777 ipath_cdbg(VERBOSE, "Unmapping kregbase %p\n", dd->ipath_kregbase);
778 iounmap((volatile void __iomem *) dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800779 pci_release_regions(pdev);
780 ipath_cdbg(VERBOSE, "calling pci_disable_device\n");
781 pci_disable_device(pdev);
782
783 ipath_free_devdata(pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800784}
785
786/* general driver use */
787DEFINE_MUTEX(ipath_mutex);
788
789static DEFINE_SPINLOCK(ipath_pioavail_lock);
790
791/**
792 * ipath_disarm_piobufs - cancel a range of PIO buffers
793 * @dd: the infinipath device
794 * @first: the first PIO buffer to cancel
795 * @cnt: the number of PIO buffers to cancel
796 *
797 * cancel a range of PIO buffers, used when they might be armed, but
798 * not triggered. Used at init to ensure buffer state, and also user
799 * process close, in case it died while writing to a PIO buffer
800 * Also after errors.
801 */
802void ipath_disarm_piobufs(struct ipath_devdata *dd, unsigned first,
803 unsigned cnt)
804{
805 unsigned i, last = first + cnt;
806 u64 sendctrl, sendorig;
807
808 ipath_cdbg(PKT, "disarm %u PIObufs first=%u\n", cnt, first);
Dave Olson93800682007-06-18 14:24:41 -0700809 sendorig = dd->ipath_sendctrl;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800810 for (i = first; i < last; i++) {
Dave Olson93800682007-06-18 14:24:41 -0700811 sendctrl = sendorig | INFINIPATH_S_DISARM |
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800812 (i << INFINIPATH_S_DISARMPIOBUF_SHIFT);
813 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
814 sendctrl);
815 }
816
817 /*
818 * Write it again with current value, in case ipath_sendctrl changed
819 * while we were looping; no critical bits that would require
820 * locking.
821 *
Dave Olson93800682007-06-18 14:24:41 -0700822 * disable PIOAVAILUPD, then re-enable, reading scratch in
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800823 * between. This seems to avoid a chip timing race that causes
824 * pioavail updates to memory to stop.
825 */
826 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
Dave Olson3810f2a2007-07-20 14:23:37 -0700827 sendorig & ~INFINIPATH_S_PIOBUFAVAILUPD);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800828 sendorig = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
829 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
830 dd->ipath_sendctrl);
831}
832
833/**
834 * ipath_wait_linkstate - wait for an IB link state change to occur
835 * @dd: the infinipath device
836 * @state: the state to wait for
837 * @msecs: the number of milliseconds to wait
838 *
839 * wait up to msecs milliseconds for IB link state change to occur for
840 * now, take the easy polling route. Currently used only by
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700841 * ipath_set_linkstate. Returns 0 if state reached, otherwise
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800842 * -ETIMEDOUT state can have multiple states set, for any of several
843 * transitions.
844 */
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700845static int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state,
846 int msecs)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800847{
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700848 dd->ipath_state_wanted = state;
849 wait_event_interruptible_timeout(ipath_state_wait,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800850 (dd->ipath_flags & state),
851 msecs_to_jiffies(msecs));
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700852 dd->ipath_state_wanted = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800853
854 if (!(dd->ipath_flags & state)) {
855 u64 val;
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700856 ipath_cdbg(VERBOSE, "Didn't reach linkstate %s within %u"
857 " ms\n",
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800858 /* test INIT ahead of DOWN, both can be set */
859 (state & IPATH_LINKINIT) ? "INIT" :
860 ((state & IPATH_LINKDOWN) ? "DOWN" :
861 ((state & IPATH_LINKARMED) ? "ARM" : "ACTIVE")),
862 msecs);
863 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
864 ipath_cdbg(VERBOSE, "ibcc=%llx ibcstatus=%llx (%s)\n",
865 (unsigned long long) ipath_read_kreg64(
866 dd, dd->ipath_kregs->kr_ibcctrl),
867 (unsigned long long) val,
868 ipath_ibcstatus_str[val & 0xf]);
869 }
870 return (dd->ipath_flags & state) ? 0 : -ETIMEDOUT;
871}
872
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700873/*
874 * Decode the error status into strings, deciding whether to always
875 * print * it or not depending on "normal packet errors" vs everything
876 * else. Return 1 if "real" errors, otherwise 0 if only packet
877 * errors, so caller can decide what to print with the string.
878 */
879int ipath_decode_err(char *buf, size_t blen, ipath_err_t err)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800880{
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700881 int iserr = 1;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800882 *buf = '\0';
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700883 if (err & INFINIPATH_E_PKTERRS) {
884 if (!(err & ~INFINIPATH_E_PKTERRS))
885 iserr = 0; // if only packet errors.
886 if (ipath_debug & __IPATH_ERRPKTDBG) {
887 if (err & INFINIPATH_E_REBP)
888 strlcat(buf, "EBP ", blen);
889 if (err & INFINIPATH_E_RVCRC)
890 strlcat(buf, "VCRC ", blen);
891 if (err & INFINIPATH_E_RICRC) {
892 strlcat(buf, "CRC ", blen);
893 // clear for check below, so only once
894 err &= INFINIPATH_E_RICRC;
895 }
896 if (err & INFINIPATH_E_RSHORTPKTLEN)
897 strlcat(buf, "rshortpktlen ", blen);
898 if (err & INFINIPATH_E_SDROPPEDDATAPKT)
899 strlcat(buf, "sdroppeddatapkt ", blen);
900 if (err & INFINIPATH_E_SPKTLEN)
901 strlcat(buf, "spktlen ", blen);
902 }
903 if ((err & INFINIPATH_E_RICRC) &&
904 !(err&(INFINIPATH_E_RVCRC|INFINIPATH_E_REBP)))
905 strlcat(buf, "CRC ", blen);
906 if (!iserr)
907 goto done;
908 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800909 if (err & INFINIPATH_E_RHDRLEN)
910 strlcat(buf, "rhdrlen ", blen);
911 if (err & INFINIPATH_E_RBADTID)
912 strlcat(buf, "rbadtid ", blen);
913 if (err & INFINIPATH_E_RBADVERSION)
914 strlcat(buf, "rbadversion ", blen);
915 if (err & INFINIPATH_E_RHDR)
916 strlcat(buf, "rhdr ", blen);
917 if (err & INFINIPATH_E_RLONGPKTLEN)
918 strlcat(buf, "rlongpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800919 if (err & INFINIPATH_E_RMAXPKTLEN)
920 strlcat(buf, "rmaxpktlen ", blen);
921 if (err & INFINIPATH_E_RMINPKTLEN)
922 strlcat(buf, "rminpktlen ", blen);
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700923 if (err & INFINIPATH_E_SMINPKTLEN)
924 strlcat(buf, "sminpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800925 if (err & INFINIPATH_E_RFORMATERR)
926 strlcat(buf, "rformaterr ", blen);
927 if (err & INFINIPATH_E_RUNSUPVL)
928 strlcat(buf, "runsupvl ", blen);
929 if (err & INFINIPATH_E_RUNEXPCHAR)
930 strlcat(buf, "runexpchar ", blen);
931 if (err & INFINIPATH_E_RIBFLOW)
932 strlcat(buf, "ribflow ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800933 if (err & INFINIPATH_E_SUNDERRUN)
934 strlcat(buf, "sunderrun ", blen);
935 if (err & INFINIPATH_E_SPIOARMLAUNCH)
936 strlcat(buf, "spioarmlaunch ", blen);
937 if (err & INFINIPATH_E_SUNEXPERRPKTNUM)
938 strlcat(buf, "sunexperrpktnum ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800939 if (err & INFINIPATH_E_SDROPPEDSMPPKT)
940 strlcat(buf, "sdroppedsmppkt ", blen);
941 if (err & INFINIPATH_E_SMAXPKTLEN)
942 strlcat(buf, "smaxpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800943 if (err & INFINIPATH_E_SUNSUPVL)
944 strlcat(buf, "sunsupVL ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800945 if (err & INFINIPATH_E_INVALIDADDR)
946 strlcat(buf, "invalidaddr ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800947 if (err & INFINIPATH_E_RRCVEGRFULL)
948 strlcat(buf, "rcvegrfull ", blen);
949 if (err & INFINIPATH_E_RRCVHDRFULL)
950 strlcat(buf, "rcvhdrfull ", blen);
951 if (err & INFINIPATH_E_IBSTATUSCHANGED)
952 strlcat(buf, "ibcstatuschg ", blen);
953 if (err & INFINIPATH_E_RIBLOSTLINK)
954 strlcat(buf, "riblostlink ", blen);
955 if (err & INFINIPATH_E_HARDWARE)
956 strlcat(buf, "hardware ", blen);
957 if (err & INFINIPATH_E_RESET)
958 strlcat(buf, "reset ", blen);
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700959done:
960 return iserr;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800961}
962
963/**
964 * get_rhf_errstring - decode RHF errors
965 * @err: the err number
966 * @msg: the output buffer
967 * @len: the length of the output buffer
968 *
969 * only used one place now, may want more later
970 */
971static void get_rhf_errstring(u32 err, char *msg, size_t len)
972{
973 /* if no errors, and so don't need to check what's first */
974 *msg = '\0';
975
976 if (err & INFINIPATH_RHF_H_ICRCERR)
977 strlcat(msg, "icrcerr ", len);
978 if (err & INFINIPATH_RHF_H_VCRCERR)
979 strlcat(msg, "vcrcerr ", len);
980 if (err & INFINIPATH_RHF_H_PARITYERR)
981 strlcat(msg, "parityerr ", len);
982 if (err & INFINIPATH_RHF_H_LENERR)
983 strlcat(msg, "lenerr ", len);
984 if (err & INFINIPATH_RHF_H_MTUERR)
985 strlcat(msg, "mtuerr ", len);
986 if (err & INFINIPATH_RHF_H_IHDRERR)
987 /* infinipath hdr checksum error */
988 strlcat(msg, "ipathhdrerr ", len);
989 if (err & INFINIPATH_RHF_H_TIDERR)
990 strlcat(msg, "tiderr ", len);
991 if (err & INFINIPATH_RHF_H_MKERR)
992 /* bad port, offset, etc. */
993 strlcat(msg, "invalid ipathhdr ", len);
994 if (err & INFINIPATH_RHF_H_IBERR)
995 strlcat(msg, "iberr ", len);
996 if (err & INFINIPATH_RHF_L_SWA)
997 strlcat(msg, "swA ", len);
998 if (err & INFINIPATH_RHF_L_SWB)
999 strlcat(msg, "swB ", len);
1000}
1001
1002/**
1003 * ipath_get_egrbuf - get an eager buffer
1004 * @dd: the infinipath device
1005 * @bufnum: the eager buffer to get
1006 * @err: unused
1007 *
1008 * must only be called if ipath_pd[port] is known to be allocated
1009 */
1010static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum,
1011 int err)
1012{
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001013 return dd->ipath_port0_skbinfo ?
1014 (void *) dd->ipath_port0_skbinfo[bufnum].skb->data : NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001015}
1016
1017/**
1018 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
1019 * @dd: the infinipath device
1020 * @gfp_mask: the sk_buff SFP mask
1021 */
1022struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd,
1023 gfp_t gfp_mask)
1024{
1025 struct sk_buff *skb;
1026 u32 len;
1027
1028 /*
1029 * Only fully supported way to handle this is to allocate lots
1030 * extra, align as needed, and then do skb_reserve(). That wastes
1031 * a lot of memory... I'll have to hack this into infinipath_copy
1032 * also.
1033 */
1034
1035 /*
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001036 * We need 2 extra bytes for ipath_ether data sent in the
1037 * key header. In order to keep everything dword aligned,
1038 * we'll reserve 4 bytes.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001039 */
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001040 len = dd->ipath_ibmaxlen + 4;
1041
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001042 if (dd->ipath_flags & IPATH_4BYTE_TID) {
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001043 /* We need a 2KB multiple alignment, and there is no way
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001044 * to do it except to allocate extra and then skb_reserve
1045 * enough to bring it up to the right alignment.
1046 */
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001047 len += 2047;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001048 }
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001049
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001050 skb = __dev_alloc_skb(len, gfp_mask);
1051 if (!skb) {
1052 ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
1053 len);
1054 goto bail;
1055 }
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001056
1057 skb_reserve(skb, 4);
1058
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001059 if (dd->ipath_flags & IPATH_4BYTE_TID) {
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001060 u32 una = (unsigned long)skb->data & 2047;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001061 if (una)
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001062 skb_reserve(skb, 2048 - una);
1063 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001064
1065bail:
1066 return skb;
1067}
1068
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001069static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
1070 u32 eflags,
1071 u32 l,
1072 u32 etail,
1073 u64 *rc)
1074{
1075 char emsg[128];
1076 struct ipath_message_header *hdr;
1077
1078 get_rhf_errstring(eflags, emsg, sizeof emsg);
1079 hdr = (struct ipath_message_header *)&rc[1];
1080 ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
1081 "tlen=%x opcode=%x egridx=%x: %s\n",
1082 eflags, l,
1083 ipath_hdrget_rcv_type((__le32 *) rc),
1084 ipath_hdrget_length_in_bytes((__le32 *) rc),
1085 be32_to_cpu(hdr->bth[0]) >> 24,
1086 etail, emsg);
1087
1088 /* Count local link integrity errors. */
1089 if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
1090 u8 n = (dd->ipath_ibcctrl >>
1091 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
1092 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
1093
1094 if (++dd->ipath_lli_counter > n) {
1095 dd->ipath_lli_counter = 0;
1096 dd->ipath_lli_errors++;
1097 }
1098 }
1099}
1100
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001101/*
1102 * ipath_kreceive - receive a packet
1103 * @dd: the infinipath device
1104 *
1105 * called from interrupt handler for errors or receive interrupt
1106 */
1107void ipath_kreceive(struct ipath_devdata *dd)
1108{
1109 u64 *rc;
1110 void *ebuf;
1111 const u32 rsize = dd->ipath_rcvhdrentsize; /* words */
1112 const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
1113 u32 etail = -1, l, hdrqtail;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001114 struct ipath_message_header *hdr;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001115 u32 eflags, i, etype, tlen, pkttot = 0, updegr=0, reloop=0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001116 static u64 totcalls; /* stats, may eventually remove */
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001117
1118 if (!dd->ipath_hdrqtailptr) {
1119 ipath_dev_err(dd,
1120 "hdrqtailptr not set, can't do receives\n");
1121 goto bail;
1122 }
1123
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001124 l = dd->ipath_port0head;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001125 hdrqtail = (u32) le64_to_cpu(*dd->ipath_hdrqtailptr);
1126 if (l == hdrqtail)
Ralph Campbell9ca48652007-07-06 12:48:48 -07001127 goto bail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001128
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001129reloop:
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001130 for (i = 0; l != hdrqtail; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001131 u32 qp;
1132 u8 *bthbytes;
1133
1134 rc = (u64 *) (dd->ipath_pd[0]->port_rcvhdrq + (l << 2));
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001135 hdr = (struct ipath_message_header *)&rc[1];
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001136 /*
1137 * could make a network order version of IPATH_KD_QP, and
1138 * do the obvious shift before masking to speed this up.
1139 */
1140 qp = ntohl(hdr->bth[1]) & 0xffffff;
1141 bthbytes = (u8 *) hdr->bth;
1142
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001143 eflags = ipath_hdrget_err_flags((__le32 *) rc);
1144 etype = ipath_hdrget_rcv_type((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001145 /* total length */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001146 tlen = ipath_hdrget_length_in_bytes((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001147 ebuf = NULL;
1148 if (etype != RCVHQ_RCV_TYPE_EXPECTED) {
1149 /*
1150 * it turns out that the chips uses an eager buffer
1151 * for all non-expected packets, whether it "needs"
1152 * one or not. So always get the index, but don't
1153 * set ebuf (so we try to copy data) unless the
1154 * length requires it.
1155 */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001156 etail = ipath_hdrget_index((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001157 if (tlen > sizeof(*hdr) ||
1158 etype == RCVHQ_RCV_TYPE_NON_KD)
1159 ebuf = ipath_get_egrbuf(dd, etail, 0);
1160 }
1161
1162 /*
1163 * both tiderr and ipathhdrerr are set for all plain IB
1164 * packets; only ipathhdrerr should be set.
1165 */
1166
1167 if (etype != RCVHQ_RCV_TYPE_NON_KD && etype !=
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001168 RCVHQ_RCV_TYPE_ERROR && ipath_hdrget_ipath_ver(
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001169 hdr->iph.ver_port_tid_offset) !=
1170 IPS_PROTO_VERSION) {
1171 ipath_cdbg(PKT, "Bad InfiniPath protocol version "
1172 "%x\n", etype);
1173 }
1174
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001175 if (unlikely(eflags))
1176 ipath_rcv_hdrerr(dd, eflags, l, etail, rc);
1177 else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001178 ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
1179 if (dd->ipath_lli_counter)
1180 dd->ipath_lli_counter--;
1181 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
1182 "qp=%x), len %x; ignored\n",
1183 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001184 }
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001185 else if (etype == RCVHQ_RCV_TYPE_EAGER)
1186 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
1187 "qp=%x), len %x; ignored\n",
1188 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001189 else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
1190 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
1191 be32_to_cpu(hdr->bth[0]) & 0xff);
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001192 else {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001193 /*
1194 * error packet, type of error unknown.
1195 * Probably type 3, but we don't know, so don't
1196 * even try to print the opcode, etc.
1197 */
1198 ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
1199 "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
1200 "hdr %llx %llx %llx %llx %llx\n",
1201 etail, tlen, (unsigned long) rc, l,
1202 (unsigned long long) rc[0],
1203 (unsigned long long) rc[1],
1204 (unsigned long long) rc[2],
1205 (unsigned long long) rc[3],
1206 (unsigned long long) rc[4],
1207 (unsigned long long) rc[5]);
1208 }
1209 l += rsize;
1210 if (l >= maxcnt)
1211 l = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001212 if (etype != RCVHQ_RCV_TYPE_EXPECTED)
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001213 updegr = 1;
1214 /*
1215 * update head regs on last packet, and every 16 packets.
1216 * Reduce bus traffic, while still trying to prevent
1217 * rcvhdrq overflows, for when the queue is nearly full
1218 */
1219 if (l == hdrqtail || (i && !(i&0xf))) {
1220 u64 lval;
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -07001221 if (l == hdrqtail)
1222 /* request IBA6120 interrupt only on last */
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001223 lval = dd->ipath_rhdrhead_intr_off | l;
1224 else
1225 lval = l;
1226 (void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
1227 if (updegr) {
1228 (void)ipath_write_ureg(dd, ur_rcvegrindexhead,
1229 etail, 0);
1230 updegr = 0;
1231 }
1232 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001233 }
1234
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001235 if (!dd->ipath_rhdrhead_intr_off && !reloop) {
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -07001236 /* IBA6110 workaround; we can have a race clearing chip
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001237 * interrupt with another interrupt about to be delivered,
1238 * and can clear it before it is delivered on the GPIO
1239 * workaround. By doing the extra check here for the
1240 * in-memory tail register updating while we were doing
1241 * earlier packets, we "almost" guarantee we have covered
1242 * that case.
1243 */
1244 u32 hqtail = (u32)le64_to_cpu(*dd->ipath_hdrqtailptr);
1245 if (hqtail != hdrqtail) {
1246 hdrqtail = hqtail;
1247 reloop = 1; /* loop 1 extra time at most */
1248 goto reloop;
1249 }
1250 }
1251
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001252 pkttot += i;
1253
1254 dd->ipath_port0head = l;
1255
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001256 if (pkttot > ipath_stats.sps_maxpkts_call)
1257 ipath_stats.sps_maxpkts_call = pkttot;
1258 ipath_stats.sps_port0pkts += pkttot;
1259 ipath_stats.sps_avgpkts_call =
1260 ipath_stats.sps_port0pkts / ++totcalls;
1261
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001262bail:;
1263}
1264
1265/**
1266 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1267 * @dd: the infinipath device
1268 *
1269 * called whenever our local copy indicates we have run out of send buffers
1270 * NOTE: This can be called from interrupt context by some code
1271 * and from non-interrupt context by ipath_getpiobuf().
1272 */
1273
1274static void ipath_update_pio_bufs(struct ipath_devdata *dd)
1275{
1276 unsigned long flags;
1277 int i;
1278 const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
1279
1280 /* If the generation (check) bits have changed, then we update the
1281 * busy bit for the corresponding PIO buffer. This algorithm will
1282 * modify positions to the value they already have in some cases
1283 * (i.e., no change), but it's faster than changing only the bits
1284 * that have changed.
1285 *
1286 * We would like to do this atomicly, to avoid spinlocks in the
1287 * critical send path, but that's not really possible, given the
1288 * type of changes, and that this routine could be called on
1289 * multiple cpu's simultaneously, so we lock in this routine only,
1290 * to avoid conflicting updates; all we change is the shadow, and
1291 * it's a single 64 bit memory location, so by definition the update
1292 * is atomic in terms of what other cpu's can see in testing the
1293 * bits. The spin_lock overhead isn't too bad, since it only
1294 * happens when all buffers are in use, so only cpu overhead, not
1295 * latency or bandwidth is affected.
1296 */
1297#define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
1298 if (!dd->ipath_pioavailregs_dma) {
1299 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1300 return;
1301 }
1302 if (ipath_debug & __IPATH_VERBDBG) {
1303 /* only if packet debug and verbose */
1304 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1305 unsigned long *shadow = dd->ipath_pioavailshadow;
1306
1307 ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
1308 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1309 "s3=%lx\n",
1310 (unsigned long long) le64_to_cpu(dma[0]),
1311 shadow[0],
1312 (unsigned long long) le64_to_cpu(dma[1]),
1313 shadow[1],
1314 (unsigned long long) le64_to_cpu(dma[2]),
1315 shadow[2],
1316 (unsigned long long) le64_to_cpu(dma[3]),
1317 shadow[3]);
1318 if (piobregs > 4)
1319 ipath_cdbg(
1320 PKT, "2nd group, dma4=%llx shad4=%lx, "
1321 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1322 "d7=%llx s7=%lx\n",
1323 (unsigned long long) le64_to_cpu(dma[4]),
1324 shadow[4],
1325 (unsigned long long) le64_to_cpu(dma[5]),
1326 shadow[5],
1327 (unsigned long long) le64_to_cpu(dma[6]),
1328 shadow[6],
1329 (unsigned long long) le64_to_cpu(dma[7]),
1330 shadow[7]);
1331 }
1332 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1333 for (i = 0; i < piobregs; i++) {
1334 u64 pchbusy, pchg, piov, pnew;
1335 /*
1336 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1337 */
1338 if (i > 3) {
1339 if (i & 1)
1340 piov = le64_to_cpu(
1341 dd->ipath_pioavailregs_dma[i - 1]);
1342 else
1343 piov = le64_to_cpu(
1344 dd->ipath_pioavailregs_dma[i + 1]);
1345 } else
1346 piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
1347 pchg = _IPATH_ALL_CHECKBITS &
1348 ~(dd->ipath_pioavailshadow[i] ^ piov);
1349 pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
1350 if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
1351 pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
1352 pnew |= piov & pchbusy;
1353 dd->ipath_pioavailshadow[i] = pnew;
1354 }
1355 }
1356 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1357}
1358
1359/**
1360 * ipath_setrcvhdrsize - set the receive header size
1361 * @dd: the infinipath device
1362 * @rhdrsize: the receive header size
1363 *
1364 * called from user init code, and also layered driver init
1365 */
1366int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
1367{
1368 int ret = 0;
1369
1370 if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
1371 if (dd->ipath_rcvhdrsize != rhdrsize) {
1372 dev_info(&dd->pcidev->dev,
1373 "Error: can't set protocol header "
1374 "size %u, already %u\n",
1375 rhdrsize, dd->ipath_rcvhdrsize);
1376 ret = -EAGAIN;
1377 } else
1378 ipath_cdbg(VERBOSE, "Reuse same protocol header "
1379 "size %u\n", dd->ipath_rcvhdrsize);
1380 } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
1381 (sizeof(u64) / sizeof(u32)))) {
1382 ipath_dbg("Error: can't set protocol header size %u "
1383 "(> max %u)\n", rhdrsize,
1384 dd->ipath_rcvhdrentsize -
1385 (u32) (sizeof(u64) / sizeof(u32)));
1386 ret = -EOVERFLOW;
1387 } else {
1388 dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
1389 dd->ipath_rcvhdrsize = rhdrsize;
1390 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
1391 dd->ipath_rcvhdrsize);
1392 ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
1393 dd->ipath_rcvhdrsize);
1394 }
1395 return ret;
1396}
1397
1398/**
1399 * ipath_getpiobuf - find an available pio buffer
1400 * @dd: the infinipath device
1401 * @pbufnum: the buffer number is placed here
1402 *
1403 * do appropriate marking as busy, etc.
1404 * returns buffer number if one found (>=0), negative number is error.
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001405 * Used by ipath_layer_send
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001406 */
1407u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 * pbufnum)
1408{
1409 int i, j, starti, updated = 0;
1410 unsigned piobcnt, iter;
1411 unsigned long flags;
1412 unsigned long *shadow = dd->ipath_pioavailshadow;
1413 u32 __iomem *buf;
1414
1415 piobcnt = (unsigned)(dd->ipath_piobcnt2k
1416 + dd->ipath_piobcnt4k);
1417 starti = dd->ipath_lastport_piobuf;
1418 iter = piobcnt - starti;
1419 if (dd->ipath_upd_pio_shadow) {
1420 /*
1421 * Minor optimization. If we had no buffers on last call,
1422 * start out by doing the update; continue and do scan even
1423 * if no buffers were updated, to be paranoid
1424 */
1425 ipath_update_pio_bufs(dd);
1426 /* we scanned here, don't do it at end of scan */
1427 updated = 1;
1428 i = starti;
1429 } else
1430 i = dd->ipath_lastpioindex;
1431
1432rescan:
1433 /*
1434 * while test_and_set_bit() is atomic, we do that and then the
1435 * change_bit(), and the pair is not. See if this is the cause
1436 * of the remaining armlaunch errors.
1437 */
1438 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1439 for (j = 0; j < iter; j++, i++) {
1440 if (i >= piobcnt)
1441 i = starti;
1442 /*
1443 * To avoid bus lock overhead, we first find a candidate
1444 * buffer, then do the test and set, and continue if that
1445 * fails.
1446 */
1447 if (test_bit((2 * i) + 1, shadow) ||
1448 test_and_set_bit((2 * i) + 1, shadow))
1449 continue;
1450 /* flip generation bit */
1451 change_bit(2 * i, shadow);
1452 break;
1453 }
1454 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1455
1456 if (j == iter) {
1457 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1458
1459 /*
1460 * first time through; shadow exhausted, but may be real
1461 * buffers available, so go see; if any updated, rescan
1462 * (once)
1463 */
1464 if (!updated) {
1465 ipath_update_pio_bufs(dd);
1466 updated = 1;
1467 i = starti;
1468 goto rescan;
1469 }
1470 dd->ipath_upd_pio_shadow = 1;
1471 /*
1472 * not atomic, but if we lose one once in a while, that's OK
1473 */
1474 ipath_stats.sps_nopiobufs++;
1475 if (!(++dd->ipath_consec_nopiobuf % 100000)) {
1476 ipath_dbg(
1477 "%u pio sends with no bufavail; dmacopy: "
1478 "%llx %llx %llx %llx; shadow: "
1479 "%lx %lx %lx %lx\n",
1480 dd->ipath_consec_nopiobuf,
1481 (unsigned long long) le64_to_cpu(dma[0]),
1482 (unsigned long long) le64_to_cpu(dma[1]),
1483 (unsigned long long) le64_to_cpu(dma[2]),
1484 (unsigned long long) le64_to_cpu(dma[3]),
1485 shadow[0], shadow[1], shadow[2],
1486 shadow[3]);
1487 /*
1488 * 4 buffers per byte, 4 registers above, cover rest
1489 * below
1490 */
1491 if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
1492 (sizeof(shadow[0]) * 4 * 4))
1493 ipath_dbg("2nd group: dmacopy: %llx %llx "
1494 "%llx %llx; shadow: %lx %lx "
1495 "%lx %lx\n",
1496 (unsigned long long)
1497 le64_to_cpu(dma[4]),
1498 (unsigned long long)
1499 le64_to_cpu(dma[5]),
1500 (unsigned long long)
1501 le64_to_cpu(dma[6]),
1502 (unsigned long long)
1503 le64_to_cpu(dma[7]),
1504 shadow[4], shadow[5],
1505 shadow[6], shadow[7]);
1506 }
1507 buf = NULL;
1508 goto bail;
1509 }
1510
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001511 /*
1512 * set next starting place. Since it's just an optimization,
1513 * it doesn't matter who wins on this, so no locking
1514 */
1515 dd->ipath_lastpioindex = i + 1;
1516 if (dd->ipath_upd_pio_shadow)
1517 dd->ipath_upd_pio_shadow = 0;
1518 if (dd->ipath_consec_nopiobuf)
1519 dd->ipath_consec_nopiobuf = 0;
1520 if (i < dd->ipath_piobcnt2k)
1521 buf = (u32 __iomem *) (dd->ipath_pio2kbase +
1522 i * dd->ipath_palign);
1523 else
1524 buf = (u32 __iomem *)
1525 (dd->ipath_pio4kbase +
1526 (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
1527 ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
1528 i, (i < dd->ipath_piobcnt2k) ? 2 : 4, buf);
1529 if (pbufnum)
1530 *pbufnum = i;
1531
1532bail:
1533 return buf;
1534}
1535
1536/**
1537 * ipath_create_rcvhdrq - create a receive header queue
1538 * @dd: the infinipath device
1539 * @pd: the port data
1540 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001541 * this must be contiguous memory (from an i/o perspective), and must be
1542 * DMA'able (which means for some systems, it will go through an IOMMU,
1543 * or be forced into a low address range).
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001544 */
1545int ipath_create_rcvhdrq(struct ipath_devdata *dd,
1546 struct ipath_portdata *pd)
1547{
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001548 int ret = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001549
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001550 if (!pd->port_rcvhdrq) {
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001551 dma_addr_t phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001552 gfp_t gfp_flags = GFP_USER | __GFP_COMP;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001553 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
1554 sizeof(u32), PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001555
1556 pd->port_rcvhdrq = dma_alloc_coherent(
1557 &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
1558 gfp_flags);
1559
1560 if (!pd->port_rcvhdrq) {
1561 ipath_dev_err(dd, "attempt to allocate %d bytes "
1562 "for port %u rcvhdrq failed\n",
1563 amt, pd->port_port);
1564 ret = -ENOMEM;
1565 goto bail;
1566 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001567 pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
1568 &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail, GFP_KERNEL);
1569 if (!pd->port_rcvhdrtail_kvaddr) {
1570 ipath_dev_err(dd, "attempt to allocate 1 page "
1571 "for port %u rcvhdrqtailaddr failed\n",
1572 pd->port_port);
1573 ret = -ENOMEM;
Bryan O'Sullivan221e3192006-09-28 08:59:58 -07001574 dma_free_coherent(&dd->pcidev->dev, amt,
1575 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1576 pd->port_rcvhdrq = NULL;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001577 goto bail;
1578 }
1579 pd->port_rcvhdrqtailaddr_phys = phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001580
1581 pd->port_rcvhdrq_size = amt;
1582
1583 ipath_cdbg(VERBOSE, "%d pages at %p (phys %lx) size=%lu "
1584 "for port %u rcvhdr Q\n",
1585 amt >> PAGE_SHIFT, pd->port_rcvhdrq,
1586 (unsigned long) pd->port_rcvhdrq_phys,
1587 (unsigned long) pd->port_rcvhdrq_size,
1588 pd->port_port);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001589
1590 ipath_cdbg(VERBOSE, "port %d hdrtailaddr, %llx physical\n",
1591 pd->port_port,
1592 (unsigned long long) phys_hdrqtail);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001593 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001594 else
1595 ipath_cdbg(VERBOSE, "reuse port %d rcvhdrq @%p %llx phys; "
1596 "hdrtailaddr@%p %llx physical\n",
1597 pd->port_port, pd->port_rcvhdrq,
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001598 (unsigned long long) pd->port_rcvhdrq_phys,
1599 pd->port_rcvhdrtail_kvaddr, (unsigned long long)
1600 pd->port_rcvhdrqtailaddr_phys);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001601
1602 /* clear for security and sanity on each use */
1603 memset(pd->port_rcvhdrq, 0, pd->port_rcvhdrq_size);
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07001604 memset(pd->port_rcvhdrtail_kvaddr, 0, PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001605
1606 /*
1607 * tell chip each time we init it, even if we are re-using previous
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001608 * memory (we zero the register at process close)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001609 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001610 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdrtailaddr,
1611 pd->port_port, pd->port_rcvhdrqtailaddr_phys);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001612 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdraddr,
1613 pd->port_port, pd->port_rcvhdrq_phys);
1614
1615 ret = 0;
1616bail:
1617 return ret;
1618}
1619
1620int ipath_waitfor_complete(struct ipath_devdata *dd, ipath_kreg reg_id,
1621 u64 bits_to_wait_for, u64 * valp)
1622{
1623 unsigned long timeout;
1624 u64 lastval, val;
1625 int ret;
1626
1627 lastval = ipath_read_kreg64(dd, reg_id);
1628 /* wait a ridiculously long time */
1629 timeout = jiffies + msecs_to_jiffies(5);
1630 do {
1631 val = ipath_read_kreg64(dd, reg_id);
1632 /* set so they have something, even on failures. */
1633 *valp = val;
1634 if ((val & bits_to_wait_for) == bits_to_wait_for) {
1635 ret = 0;
1636 break;
1637 }
1638 if (val != lastval)
1639 ipath_cdbg(VERBOSE, "Changed from %llx to %llx, "
1640 "waiting for %llx bits\n",
1641 (unsigned long long) lastval,
1642 (unsigned long long) val,
1643 (unsigned long long) bits_to_wait_for);
1644 cond_resched();
1645 if (time_after(jiffies, timeout)) {
1646 ipath_dbg("Didn't get bits %llx in register 0x%x, "
1647 "got %llx\n",
1648 (unsigned long long) bits_to_wait_for,
1649 reg_id, (unsigned long long) *valp);
1650 ret = -ENODEV;
1651 break;
1652 }
1653 } while (1);
1654
1655 return ret;
1656}
1657
1658/**
1659 * ipath_waitfor_mdio_cmdready - wait for last command to complete
1660 * @dd: the infinipath device
1661 *
1662 * Like ipath_waitfor_complete(), but we wait for the CMDVALID bit to go
1663 * away indicating the last command has completed. It doesn't return data
1664 */
1665int ipath_waitfor_mdio_cmdready(struct ipath_devdata *dd)
1666{
1667 unsigned long timeout;
1668 u64 val;
1669 int ret;
1670
1671 /* wait a ridiculously long time */
1672 timeout = jiffies + msecs_to_jiffies(5);
1673 do {
1674 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_mdio);
1675 if (!(val & IPATH_MDIO_CMDVALID)) {
1676 ret = 0;
1677 break;
1678 }
1679 cond_resched();
1680 if (time_after(jiffies, timeout)) {
1681 ipath_dbg("CMDVALID stuck in mdio reg? (%llx)\n",
1682 (unsigned long long) val);
1683 ret = -ENODEV;
1684 break;
1685 }
1686 } while (1);
1687
1688 return ret;
1689}
1690
Dave Olson93800682007-06-18 14:24:41 -07001691
1692/*
1693 * Flush all sends that might be in the ready to send state, as well as any
1694 * that are in the process of being sent. Used whenever we need to be
1695 * sure the send side is idle. Cleans up all buffer state by canceling
1696 * all pio buffers, and issuing an abort, which cleans up anything in the
1697 * launch fifo. The cancel is superfluous on some chip versions, but
1698 * it's safer to always do it.
1699 * PIOAvail bits are updated by the chip as if normal send had happened.
1700 */
Dave Olson3810f2a2007-07-20 14:23:37 -07001701void ipath_cancel_sends(struct ipath_devdata *dd, int restore_sendctrl)
Dave Olson93800682007-06-18 14:24:41 -07001702{
1703 ipath_dbg("Cancelling all in-progress send buffers\n");
1704 dd->ipath_lastcancel = jiffies+HZ/2; /* skip armlaunch errs a bit */
1705 /*
1706 * the abort bit is auto-clearing. We read scratch to be sure
1707 * that cancels and the abort have taken effect in the chip.
1708 */
1709 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1710 INFINIPATH_S_ABORT);
1711 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1712 ipath_disarm_piobufs(dd, 0,
1713 (unsigned)(dd->ipath_piobcnt2k + dd->ipath_piobcnt4k));
Dave Olson3810f2a2007-07-20 14:23:37 -07001714 if (restore_sendctrl) /* else done by caller later */
1715 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1716 dd->ipath_sendctrl);
Dave Olson93800682007-06-18 14:24:41 -07001717
1718 /* and again, be sure all have hit the chip */
1719 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1720}
1721
1722
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001723static void ipath_set_ib_lstate(struct ipath_devdata *dd, int which)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001724{
1725 static const char *what[4] = {
1726 [0] = "DOWN",
1727 [INFINIPATH_IBCC_LINKCMD_INIT] = "INIT",
1728 [INFINIPATH_IBCC_LINKCMD_ARMED] = "ARMED",
1729 [INFINIPATH_IBCC_LINKCMD_ACTIVE] = "ACTIVE"
1730 };
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001731 int linkcmd = (which >> INFINIPATH_IBCC_LINKCMD_SHIFT) &
1732 INFINIPATH_IBCC_LINKCMD_MASK;
1733
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001734 ipath_cdbg(VERBOSE, "Trying to move unit %u to %s, current ltstate "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001735 "is %s\n", dd->ipath_unit,
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001736 what[linkcmd],
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001737 ipath_ibcstatus_str[
1738 (ipath_read_kreg64
1739 (dd, dd->ipath_kregs->kr_ibcstatus) >>
1740 INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
1741 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK]);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001742 /* flush all queued sends when going to DOWN or INIT, to be sure that
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001743 * they don't block MAD packets */
Dave Olson93800682007-06-18 14:24:41 -07001744 if (!linkcmd || linkcmd == INFINIPATH_IBCC_LINKCMD_INIT)
Dave Olson3810f2a2007-07-20 14:23:37 -07001745 ipath_cancel_sends(dd, 1);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001746
1747 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1748 dd->ipath_ibcctrl | which);
1749}
1750
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001751int ipath_set_linkstate(struct ipath_devdata *dd, u8 newstate)
1752{
1753 u32 lstate;
1754 int ret;
1755
1756 switch (newstate) {
1757 case IPATH_IB_LINKDOWN:
1758 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_POLL <<
1759 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1760 /* don't wait */
1761 ret = 0;
1762 goto bail;
1763
1764 case IPATH_IB_LINKDOWN_SLEEP:
1765 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_SLEEP <<
1766 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1767 /* don't wait */
1768 ret = 0;
1769 goto bail;
1770
1771 case IPATH_IB_LINKDOWN_DISABLE:
1772 ipath_set_ib_lstate(dd,
1773 INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1774 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1775 /* don't wait */
1776 ret = 0;
1777 goto bail;
1778
1779 case IPATH_IB_LINKINIT:
1780 if (dd->ipath_flags & IPATH_LINKINIT) {
1781 ret = 0;
1782 goto bail;
1783 }
1784 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_INIT <<
1785 INFINIPATH_IBCC_LINKCMD_SHIFT);
1786 lstate = IPATH_LINKINIT;
1787 break;
1788
1789 case IPATH_IB_LINKARM:
1790 if (dd->ipath_flags & IPATH_LINKARMED) {
1791 ret = 0;
1792 goto bail;
1793 }
1794 if (!(dd->ipath_flags &
1795 (IPATH_LINKINIT | IPATH_LINKACTIVE))) {
1796 ret = -EINVAL;
1797 goto bail;
1798 }
1799 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ARMED <<
1800 INFINIPATH_IBCC_LINKCMD_SHIFT);
1801 /*
1802 * Since the port can transition to ACTIVE by receiving
1803 * a non VL 15 packet, wait for either state.
1804 */
1805 lstate = IPATH_LINKARMED | IPATH_LINKACTIVE;
1806 break;
1807
1808 case IPATH_IB_LINKACTIVE:
1809 if (dd->ipath_flags & IPATH_LINKACTIVE) {
1810 ret = 0;
1811 goto bail;
1812 }
1813 if (!(dd->ipath_flags & IPATH_LINKARMED)) {
1814 ret = -EINVAL;
1815 goto bail;
1816 }
1817 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ACTIVE <<
1818 INFINIPATH_IBCC_LINKCMD_SHIFT);
1819 lstate = IPATH_LINKACTIVE;
1820 break;
1821
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001822 case IPATH_IB_LINK_LOOPBACK:
1823 dev_info(&dd->pcidev->dev, "Enabling IB local loopback\n");
1824 dd->ipath_ibcctrl |= INFINIPATH_IBCC_LOOPBACK;
1825 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1826 dd->ipath_ibcctrl);
1827 ret = 0;
1828 goto bail; // no state change to wait for
1829
1830 case IPATH_IB_LINK_EXTERNAL:
1831 dev_info(&dd->pcidev->dev, "Disabling IB local loopback (normal)\n");
1832 dd->ipath_ibcctrl &= ~INFINIPATH_IBCC_LOOPBACK;
1833 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1834 dd->ipath_ibcctrl);
1835 ret = 0;
1836 goto bail; // no state change to wait for
1837
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001838 default:
1839 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate);
1840 ret = -EINVAL;
1841 goto bail;
1842 }
1843 ret = ipath_wait_linkstate(dd, lstate, 2000);
1844
1845bail:
1846 return ret;
1847}
1848
1849/**
1850 * ipath_set_mtu - set the MTU
1851 * @dd: the infinipath device
1852 * @arg: the new MTU
1853 *
1854 * we can handle "any" incoming size, the issue here is whether we
1855 * need to restrict our outgoing size. For now, we don't do any
1856 * sanity checking on this, and we don't deal with what happens to
1857 * programs that are already running when the size changes.
1858 * NOTE: changing the MTU will usually cause the IBC to go back to
1859 * link initialize (IPATH_IBSTATE_INIT) state...
1860 */
1861int ipath_set_mtu(struct ipath_devdata *dd, u16 arg)
1862{
1863 u32 piosize;
1864 int changed = 0;
1865 int ret;
1866
1867 /*
1868 * mtu is IB data payload max. It's the largest power of 2 less
1869 * than piosize (or even larger, since it only really controls the
1870 * largest we can receive; we can send the max of the mtu and
1871 * piosize). We check that it's one of the valid IB sizes.
1872 */
1873 if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
1874 arg != 4096) {
1875 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg);
1876 ret = -EINVAL;
1877 goto bail;
1878 }
1879 if (dd->ipath_ibmtu == arg) {
1880 ret = 0; /* same as current */
1881 goto bail;
1882 }
1883
1884 piosize = dd->ipath_ibmaxlen;
1885 dd->ipath_ibmtu = arg;
1886
1887 if (arg >= (piosize - IPATH_PIO_MAXIBHDR)) {
1888 /* Only if it's not the initial value (or reset to it) */
1889 if (piosize != dd->ipath_init_ibmaxlen) {
1890 dd->ipath_ibmaxlen = piosize;
1891 changed = 1;
1892 }
1893 } else if ((arg + IPATH_PIO_MAXIBHDR) != dd->ipath_ibmaxlen) {
1894 piosize = arg + IPATH_PIO_MAXIBHDR;
1895 ipath_cdbg(VERBOSE, "ibmaxlen was 0x%x, setting to 0x%x "
1896 "(mtu 0x%x)\n", dd->ipath_ibmaxlen, piosize,
1897 arg);
1898 dd->ipath_ibmaxlen = piosize;
1899 changed = 1;
1900 }
1901
1902 if (changed) {
1903 /*
1904 * set the IBC maxpktlength to the size of our pio
1905 * buffers in words
1906 */
1907 u64 ibc = dd->ipath_ibcctrl;
1908 ibc &= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK <<
1909 INFINIPATH_IBCC_MAXPKTLEN_SHIFT);
1910
1911 piosize = piosize - 2 * sizeof(u32); /* ignore pbc */
1912 dd->ipath_ibmaxlen = piosize;
1913 piosize /= sizeof(u32); /* in words */
1914 /*
1915 * for ICRC, which we only send in diag test pkt mode, and
1916 * we don't need to worry about that for mtu
1917 */
1918 piosize += 1;
1919
1920 ibc |= piosize << INFINIPATH_IBCC_MAXPKTLEN_SHIFT;
1921 dd->ipath_ibcctrl = ibc;
1922 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1923 dd->ipath_ibcctrl);
1924 dd->ipath_f_tidtemplate(dd);
1925 }
1926
1927 ret = 0;
1928
1929bail:
1930 return ret;
1931}
1932
1933int ipath_set_lid(struct ipath_devdata *dd, u32 arg, u8 lmc)
1934{
1935 dd->ipath_lid = arg;
1936 dd->ipath_lmc = lmc;
1937
1938 return 0;
1939}
1940
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001941
1942/**
1943 * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
1944 * @dd: the infinipath device
1945 * @regno: the register number to write
1946 * @port: the port containing the register
1947 * @value: the value to write
1948 *
1949 * Registers that vary with the chip implementation constants (port)
1950 * use this routine.
1951 */
1952void ipath_write_kreg_port(const struct ipath_devdata *dd, ipath_kreg regno,
1953 unsigned port, u64 value)
1954{
1955 u16 where;
1956
1957 if (port < dd->ipath_portcnt &&
1958 (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1959 regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1960 where = regno + port;
1961 else
1962 where = -1;
1963
1964 ipath_write_kreg(dd, where, value);
1965}
1966
Michael Albaugh82466f02007-05-16 15:45:09 -07001967/*
1968 * Following deal with the "obviously simple" task of overriding the state
1969 * of the LEDS, which normally indicate link physical and logical status.
1970 * The complications arise in dealing with different hardware mappings
1971 * and the board-dependent routine being called from interrupts.
1972 * and then there's the requirement to _flash_ them.
1973 */
1974#define LED_OVER_FREQ_SHIFT 8
1975#define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
1976/* Below is "non-zero" to force override, but both actual LEDs are off */
1977#define LED_OVER_BOTH_OFF (8)
1978
Roland Dreierda9aec72007-07-17 18:37:43 -07001979static void ipath_run_led_override(unsigned long opaque)
Michael Albaugh82466f02007-05-16 15:45:09 -07001980{
1981 struct ipath_devdata *dd = (struct ipath_devdata *)opaque;
1982 int timeoff;
1983 int pidx;
1984 u64 lstate, ltstate, val;
1985
1986 if (!(dd->ipath_flags & IPATH_INITTED))
1987 return;
1988
1989 pidx = dd->ipath_led_override_phase++ & 1;
1990 dd->ipath_led_override = dd->ipath_led_override_vals[pidx];
1991 timeoff = dd->ipath_led_override_timeoff;
1992
1993 /*
1994 * below potentially restores the LED values per current status,
1995 * should also possibly setup the traffic-blink register,
1996 * but leave that to per-chip functions.
1997 */
1998 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
1999 ltstate = (val >> INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
2000 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK;
2001 lstate = (val >> INFINIPATH_IBCS_LINKSTATE_SHIFT) &
2002 INFINIPATH_IBCS_LINKSTATE_MASK;
2003
2004 dd->ipath_f_setextled(dd, lstate, ltstate);
2005 mod_timer(&dd->ipath_led_override_timer, jiffies + timeoff);
2006}
2007
2008void ipath_set_led_override(struct ipath_devdata *dd, unsigned int val)
2009{
2010 int timeoff, freq;
2011
2012 if (!(dd->ipath_flags & IPATH_INITTED))
2013 return;
2014
2015 /* First check if we are blinking. If not, use 1HZ polling */
2016 timeoff = HZ;
2017 freq = (val & LED_OVER_FREQ_MASK) >> LED_OVER_FREQ_SHIFT;
2018
2019 if (freq) {
2020 /* For blink, set each phase from one nybble of val */
2021 dd->ipath_led_override_vals[0] = val & 0xF;
2022 dd->ipath_led_override_vals[1] = (val >> 4) & 0xF;
2023 timeoff = (HZ << 4)/freq;
2024 } else {
2025 /* Non-blink set both phases the same. */
2026 dd->ipath_led_override_vals[0] = val & 0xF;
2027 dd->ipath_led_override_vals[1] = val & 0xF;
2028 }
2029 dd->ipath_led_override_timeoff = timeoff;
2030
2031 /*
2032 * If the timer has not already been started, do so. Use a "quick"
2033 * timeout so the function will be called soon, to look at our request.
2034 */
2035 if (atomic_inc_return(&dd->ipath_led_override_timer_active) == 1) {
2036 /* Need to start timer */
2037 init_timer(&dd->ipath_led_override_timer);
2038 dd->ipath_led_override_timer.function =
2039 ipath_run_led_override;
2040 dd->ipath_led_override_timer.data = (unsigned long) dd;
2041 dd->ipath_led_override_timer.expires = jiffies + 1;
2042 add_timer(&dd->ipath_led_override_timer);
2043 } else {
2044 atomic_dec(&dd->ipath_led_override_timer_active);
2045 }
2046}
2047
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002048/**
2049 * ipath_shutdown_device - shut down a device
2050 * @dd: the infinipath device
2051 *
2052 * This is called to make the device quiet when we are about to
2053 * unload the driver, and also when the device is administratively
2054 * disabled. It does not free any data structures.
2055 * Everything it does has to be setup again by ipath_init_chip(dd,1)
2056 */
2057void ipath_shutdown_device(struct ipath_devdata *dd)
2058{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002059 ipath_dbg("Shutting down the device\n");
2060
2061 dd->ipath_flags |= IPATH_LINKUNK;
2062 dd->ipath_flags &= ~(IPATH_INITTED | IPATH_LINKDOWN |
2063 IPATH_LINKINIT | IPATH_LINKARMED |
2064 IPATH_LINKACTIVE);
2065 *dd->ipath_statusp &= ~(IPATH_STATUS_IB_CONF |
2066 IPATH_STATUS_IB_READY);
2067
2068 /* mask interrupts, but not errors */
2069 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
2070
2071 dd->ipath_rcvctrl = 0;
2072 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
2073 dd->ipath_rcvctrl);
2074
2075 /*
2076 * gracefully stop all sends allowing any in progress to trickle out
2077 * first.
2078 */
2079 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, 0ULL);
2080 /* flush it */
Roland Dreier44f8e3f2006-12-12 11:50:20 -08002081 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002082 /*
2083 * enough for anything that's going to trickle out to have actually
2084 * done so.
2085 */
2086 udelay(5);
2087
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002088 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
2089 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
Dave Olson3810f2a2007-07-20 14:23:37 -07002090 ipath_cancel_sends(dd, 0);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002091
Ralph Campbell49739b32007-09-19 16:47:31 -07002092 signal_ib_event(dd, IB_EVENT_PORT_ERR);
2093
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002094 /* disable IBC */
2095 dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
2096 ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
Bryan O'Sullivana40f55f2006-07-01 04:36:00 -07002097 dd->ipath_control | INFINIPATH_C_FREEZEMODE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002098
2099 /*
2100 * clear SerdesEnable and turn the leds off; do this here because
2101 * we are unloading, so don't count on interrupts to move along
2102 * Turn the LEDs off explictly for the same reason.
2103 */
2104 dd->ipath_f_quiet_serdes(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002105
2106 if (dd->ipath_stats_timer_active) {
2107 del_timer_sync(&dd->ipath_stats_timer);
2108 dd->ipath_stats_timer_active = 0;
2109 }
2110
2111 /*
2112 * clear all interrupts and errors, so that the next time the driver
2113 * is loaded or device is enabled, we know that whatever is set
2114 * happened while we were unloaded
2115 */
2116 ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
2117 ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED);
2118 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
2119 ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
Michael Albaughaecd3b52007-05-17 07:26:28 -07002120
2121 ipath_cdbg(VERBOSE, "Flush time and errors to EEPROM\n");
2122 ipath_update_eeprom_log(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002123}
2124
2125/**
2126 * ipath_free_pddata - free a port's allocated data
2127 * @dd: the infinipath device
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002128 * @pd: the portdata structure
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002129 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002130 * free up any allocated data for a port
2131 * This should not touch anything that would affect a simultaneous
2132 * re-allocation of port data, because it is called after ipath_mutex
2133 * is released (and can be called from reinit as well).
2134 * It should never change any chip state, or global driver state.
2135 * (The only exception to global state is freeing the port0 port0_skbs.)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002136 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002137void ipath_free_pddata(struct ipath_devdata *dd, struct ipath_portdata *pd)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002138{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002139 if (!pd)
2140 return;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002141
2142 if (pd->port_rcvhdrq) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002143 ipath_cdbg(VERBOSE, "free closed port %d rcvhdrq @ %p "
2144 "(size=%lu)\n", pd->port_port, pd->port_rcvhdrq,
2145 (unsigned long) pd->port_rcvhdrq_size);
2146 dma_free_coherent(&dd->pcidev->dev, pd->port_rcvhdrq_size,
2147 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
2148 pd->port_rcvhdrq = NULL;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002149 if (pd->port_rcvhdrtail_kvaddr) {
2150 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07002151 pd->port_rcvhdrtail_kvaddr,
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002152 pd->port_rcvhdrqtailaddr_phys);
2153 pd->port_rcvhdrtail_kvaddr = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002154 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002155 }
2156 if (pd->port_port && pd->port_rcvegrbuf) {
2157 unsigned e;
2158
2159 for (e = 0; e < pd->port_rcvegrbuf_chunks; e++) {
2160 void *base = pd->port_rcvegrbuf[e];
2161 size_t size = pd->port_rcvegrbuf_size;
2162
2163 ipath_cdbg(VERBOSE, "egrbuf free(%p, %lu), "
2164 "chunk %u/%u\n", base,
2165 (unsigned long) size,
2166 e, pd->port_rcvegrbuf_chunks);
2167 dma_free_coherent(&dd->pcidev->dev, size,
2168 base, pd->port_rcvegrbuf_phys[e]);
2169 }
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002170 kfree(pd->port_rcvegrbuf);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002171 pd->port_rcvegrbuf = NULL;
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002172 kfree(pd->port_rcvegrbuf_phys);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002173 pd->port_rcvegrbuf_phys = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002174 pd->port_rcvegrbuf_chunks = 0;
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002175 } else if (pd->port_port == 0 && dd->ipath_port0_skbinfo) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002176 unsigned e;
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002177 struct ipath_skbinfo *skbinfo = dd->ipath_port0_skbinfo;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002178
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002179 dd->ipath_port0_skbinfo = NULL;
2180 ipath_cdbg(VERBOSE, "free closed port %d "
2181 "ipath_port0_skbinfo @ %p\n", pd->port_port,
2182 skbinfo);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002183 for (e = 0; e < dd->ipath_rcvegrcnt; e++)
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002184 if (skbinfo[e].skb) {
2185 pci_unmap_single(dd->pcidev, skbinfo[e].phys,
2186 dd->ipath_ibmaxlen,
2187 PCI_DMA_FROMDEVICE);
2188 dev_kfree_skb(skbinfo[e].skb);
2189 }
2190 vfree(skbinfo);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002191 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002192 kfree(pd->port_tid_pg_list);
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002193 vfree(pd->subport_uregbase);
2194 vfree(pd->subport_rcvegrbuf);
2195 vfree(pd->subport_rcvhdr_base);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002196 kfree(pd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002197}
2198
Roland Dreierac2ae4c2006-04-19 11:40:12 -07002199static int __init infinipath_init(void)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002200{
2201 int ret;
2202
Bryan O'Sullivan39c0d0b2007-03-15 14:44:52 -07002203 if (ipath_debug & __IPATH_DBG)
2204 printk(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002205
2206 /*
2207 * These must be called before the driver is registered with
2208 * the PCI subsystem.
2209 */
2210 idr_init(&unit_table);
2211 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
2212 ret = -ENOMEM;
2213 goto bail;
2214 }
2215
2216 ret = pci_register_driver(&ipath_driver);
2217 if (ret < 0) {
2218 printk(KERN_ERR IPATH_DRV_NAME
2219 ": Unable to register driver: error %d\n", -ret);
2220 goto bail_unit;
2221 }
2222
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002223 ret = ipath_init_ipathfs();
2224 if (ret < 0) {
2225 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
2226 "ipathfs: error %d\n", -ret);
Greg Kroah-Hartman23b9c1a2007-12-04 22:53:16 -08002227 goto bail_pci;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002228 }
2229
2230 goto bail;
2231
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002232bail_pci:
2233 pci_unregister_driver(&ipath_driver);
2234
2235bail_unit:
2236 idr_destroy(&unit_table);
2237
2238bail:
2239 return ret;
2240}
2241
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002242static void __exit infinipath_cleanup(void)
2243{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002244 ipath_exit_ipathfs();
2245
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002246 ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
2247 pci_unregister_driver(&ipath_driver);
2248
2249 idr_destroy(&unit_table);
2250}
2251
2252/**
2253 * ipath_reset_device - reset the chip if possible
2254 * @unit: the device to reset
2255 *
2256 * Whether or not reset is successful, we attempt to re-initialize the chip
2257 * (that is, much like a driver unload/reload). We clear the INITTED flag
2258 * so that the various entry points will fail until we reinitialize. For
2259 * now, we only allow this if no user ports are open that use chip resources
2260 */
2261int ipath_reset_device(int unit)
2262{
2263 int ret, i;
2264 struct ipath_devdata *dd = ipath_lookup(unit);
2265
2266 if (!dd) {
2267 ret = -ENODEV;
2268 goto bail;
2269 }
2270
Michael Albaugh82466f02007-05-16 15:45:09 -07002271 if (atomic_read(&dd->ipath_led_override_timer_active)) {
2272 /* Need to stop LED timer, _then_ shut off LEDs */
2273 del_timer_sync(&dd->ipath_led_override_timer);
2274 atomic_set(&dd->ipath_led_override_timer_active, 0);
2275 }
2276
2277 /* Shut off LEDs after we are sure timer is not running */
2278 dd->ipath_led_override = LED_OVER_BOTH_OFF;
2279 dd->ipath_f_setextled(dd, 0, 0);
2280
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002281 dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
2282
2283 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
2284 dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
2285 "not initialized or not present\n", unit);
2286 ret = -ENXIO;
2287 goto bail;
2288 }
2289
2290 if (dd->ipath_pd)
Bryan O'Sullivan23e86a42006-04-24 14:22:59 -07002291 for (i = 1; i < dd->ipath_cfgports; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002292 if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
2293 ipath_dbg("unit %u port %d is in use "
2294 "(PID %u cmd %s), can't reset\n",
2295 unit, i,
2296 dd->ipath_pd[i]->port_pid,
2297 dd->ipath_pd[i]->port_comm);
2298 ret = -EBUSY;
2299 goto bail;
2300 }
2301 }
2302
2303 dd->ipath_flags &= ~IPATH_INITTED;
2304 ret = dd->ipath_f_reset(dd);
2305 if (ret != 1)
2306 ipath_dbg("reset was not successful\n");
2307 ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2308 unit);
2309 ret = ipath_init_chip(dd, 1);
2310 if (ret)
2311 ipath_dev_err(dd, "Reinitialize unit %u after "
2312 "reset failed with %d\n", unit, ret);
2313 else
2314 dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
2315 "resetting\n", unit);
2316
2317bail:
2318 return ret;
2319}
2320
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002321int ipath_set_rx_pol_inv(struct ipath_devdata *dd, u8 new_pol_inv)
2322{
2323 u64 val;
2324 if ( new_pol_inv > INFINIPATH_XGXS_RX_POL_MASK ) {
2325 return -1;
2326 }
2327 if ( dd->ipath_rx_pol_inv != new_pol_inv ) {
2328 dd->ipath_rx_pol_inv = new_pol_inv;
2329 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
2330 val &= ~(INFINIPATH_XGXS_RX_POL_MASK <<
Roland Dreier3cd96562006-09-22 15:22:46 -07002331 INFINIPATH_XGXS_RX_POL_SHIFT);
2332 val |= ((u64)dd->ipath_rx_pol_inv) <<
2333 INFINIPATH_XGXS_RX_POL_SHIFT;
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002334 ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
2335 }
2336 return 0;
2337}
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002338module_init(infinipath_init);
2339module_exit(infinipath_cleanup);