blob: e6261bb9a8a105750966c54964779fe47e6092bf [file] [log] [blame]
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001/*
Bryan O'Sullivan759d5762006-07-01 04:35:49 -07002 * Copyright (c) 2006 QLogic, Inc. 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>
37#include <linux/delay.h>
38#include <linux/netdevice.h>
39#include <linux/vmalloc.h>
40
41#include "ipath_kernel.h"
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -070042#include "ipath_verbs.h"
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -070043#include "ipath_common.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
67wait_queue_head_t ipath_sma_state_wait;
68
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
75MODULE_LICENSE("GPL");
Bryan O'Sullivan759d5762006-07-01 04:35:49 -070076MODULE_AUTHOR("QLogic <support@pathscale.com>");
77MODULE_DESCRIPTION("QLogic InfiniPath driver");
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080078
79const char *ipath_ibcstatus_str[] = {
80 "Disabled",
81 "LinkUp",
82 "PollActive",
83 "PollQuiet",
84 "SleepDelay",
85 "SleepQuiet",
86 "LState6", /* unused */
87 "LState7", /* unused */
88 "CfgDebounce",
89 "CfgRcvfCfg",
90 "CfgWaitRmt",
91 "CfgIdle",
92 "RecovRetrain",
93 "LState0xD", /* unused */
94 "RecovWaitRmt",
95 "RecovIdle",
96};
97
98/*
99 * These variables are initialized in the chip-specific files
100 * but are defined here.
101 */
102u16 ipath_gpio_sda_num, ipath_gpio_scl_num;
103u64 ipath_gpio_sda, ipath_gpio_scl;
104u64 infinipath_i_bitsextant;
105ipath_err_t infinipath_e_bitsextant, infinipath_hwe_bitsextant;
106u32 infinipath_i_rcvavail_mask, infinipath_i_rcvurg_mask;
107
108static void __devexit ipath_remove_one(struct pci_dev *);
109static int __devinit ipath_init_one(struct pci_dev *,
110 const struct pci_device_id *);
111
112/* Only needed for registration, nothing else needs this info */
113#define PCI_VENDOR_ID_PATHSCALE 0x1fc1
114#define PCI_DEVICE_ID_INFINIPATH_HT 0xd
115#define PCI_DEVICE_ID_INFINIPATH_PE800 0x10
116
117static const struct pci_device_id ipath_pci_tbl[] = {
Roland Dreier6f4bb3d2006-05-12 14:57:52 -0700118 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_HT) },
119 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_PE800) },
120 { 0, }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800121};
122
123MODULE_DEVICE_TABLE(pci, ipath_pci_tbl);
124
125static struct pci_driver ipath_driver = {
126 .name = IPATH_DRV_NAME,
127 .probe = ipath_init_one,
128 .remove = __devexit_p(ipath_remove_one),
129 .id_table = ipath_pci_tbl,
130};
131
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800132
133static inline void read_bars(struct ipath_devdata *dd, struct pci_dev *dev,
134 u32 *bar0, u32 *bar1)
135{
136 int ret;
137
138 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, bar0);
139 if (ret)
140 ipath_dev_err(dd, "failed to read bar0 before enable: "
141 "error %d\n", -ret);
142
143 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, bar1);
144 if (ret)
145 ipath_dev_err(dd, "failed to read bar1 before enable: "
146 "error %d\n", -ret);
147
148 ipath_dbg("Read bar0 %x bar1 %x\n", *bar0, *bar1);
149}
150
151static void ipath_free_devdata(struct pci_dev *pdev,
152 struct ipath_devdata *dd)
153{
154 unsigned long flags;
155
156 pci_set_drvdata(pdev, NULL);
157
158 if (dd->ipath_unit != -1) {
159 spin_lock_irqsave(&ipath_devs_lock, flags);
160 idr_remove(&unit_table, dd->ipath_unit);
161 list_del(&dd->ipath_list);
162 spin_unlock_irqrestore(&ipath_devs_lock, flags);
163 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700164 vfree(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800165}
166
167static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
168{
169 unsigned long flags;
170 struct ipath_devdata *dd;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800171 int ret;
172
173 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
174 dd = ERR_PTR(-ENOMEM);
175 goto bail;
176 }
177
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700178 dd = vmalloc(sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800179 if (!dd) {
180 dd = ERR_PTR(-ENOMEM);
181 goto bail;
182 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700183 memset(dd, 0, sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800184 dd->ipath_unit = -1;
185
186 spin_lock_irqsave(&ipath_devs_lock, flags);
187
188 ret = idr_get_new(&unit_table, dd, &dd->ipath_unit);
189 if (ret < 0) {
190 printk(KERN_ERR IPATH_DRV_NAME
191 ": Could not allocate unit ID: error %d\n", -ret);
192 ipath_free_devdata(pdev, dd);
193 dd = ERR_PTR(ret);
194 goto bail_unlock;
195 }
196
197 dd->pcidev = pdev;
198 pci_set_drvdata(pdev, dd);
199
200 list_add(&dd->ipath_list, &ipath_dev_list);
201
202bail_unlock:
203 spin_unlock_irqrestore(&ipath_devs_lock, flags);
204
205bail:
206 return dd;
207}
208
209static inline struct ipath_devdata *__ipath_lookup(int unit)
210{
211 return idr_find(&unit_table, unit);
212}
213
214struct ipath_devdata *ipath_lookup(int unit)
215{
216 struct ipath_devdata *dd;
217 unsigned long flags;
218
219 spin_lock_irqsave(&ipath_devs_lock, flags);
220 dd = __ipath_lookup(unit);
221 spin_unlock_irqrestore(&ipath_devs_lock, flags);
222
223 return dd;
224}
225
226int ipath_count_units(int *npresentp, int *nupp, u32 *maxportsp)
227{
228 int nunits, npresent, nup;
229 struct ipath_devdata *dd;
230 unsigned long flags;
231 u32 maxports;
232
233 nunits = npresent = nup = maxports = 0;
234
235 spin_lock_irqsave(&ipath_devs_lock, flags);
236
237 list_for_each_entry(dd, &ipath_dev_list, ipath_list) {
238 nunits++;
239 if ((dd->ipath_flags & IPATH_PRESENT) && dd->ipath_kregbase)
240 npresent++;
241 if (dd->ipath_lid &&
242 !(dd->ipath_flags & (IPATH_DISABLED | IPATH_LINKDOWN
243 | IPATH_LINKUNK)))
244 nup++;
245 if (dd->ipath_cfgports > maxports)
246 maxports = dd->ipath_cfgports;
247 }
248
249 spin_unlock_irqrestore(&ipath_devs_lock, flags);
250
251 if (npresentp)
252 *npresentp = npresent;
253 if (nupp)
254 *nupp = nup;
255 if (maxportsp)
256 *maxportsp = maxports;
257
258 return nunits;
259}
260
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800261/*
262 * These next two routines are placeholders in case we don't have per-arch
263 * code for controlling write combining. If explicit control of write
264 * combining is not available, performance will probably be awful.
265 */
266
267int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd)
268{
269 return -EOPNOTSUPP;
270}
271
272void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd)
273{
274}
275
276static int __devinit ipath_init_one(struct pci_dev *pdev,
277 const struct pci_device_id *ent)
278{
279 int ret, len, j;
280 struct ipath_devdata *dd;
281 unsigned long long addr;
282 u32 bar0 = 0, bar1 = 0;
283 u8 rev;
284
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800285 dd = ipath_alloc_devdata(pdev);
286 if (IS_ERR(dd)) {
287 ret = PTR_ERR(dd);
288 printk(KERN_ERR IPATH_DRV_NAME
289 ": Could not allocate devdata: error %d\n", -ret);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700290 goto bail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800291 }
292
293 ipath_cdbg(VERBOSE, "initializing unit #%u\n", dd->ipath_unit);
294
295 read_bars(dd, pdev, &bar0, &bar1);
296
297 ret = pci_enable_device(pdev);
298 if (ret) {
299 /* This can happen iff:
300 *
301 * We did a chip reset, and then failed to reprogram the
302 * BAR, or the chip reset due to an internal error. We then
303 * unloaded the driver and reloaded it.
304 *
305 * Both reset cases set the BAR back to initial state. For
306 * the latter case, the AER sticky error bit at offset 0x718
307 * should be set, but the Linux kernel doesn't yet know
308 * about that, it appears. If the original BAR was retained
309 * in the kernel data structures, this may be OK.
310 */
311 ipath_dev_err(dd, "enable unit %d failed: error %d\n",
312 dd->ipath_unit, -ret);
313 goto bail_devdata;
314 }
315 addr = pci_resource_start(pdev, 0);
316 len = pci_resource_len(pdev, 0);
317 ipath_cdbg(VERBOSE, "regbase (0) %llx len %d irq %x, vend %x/%x "
318 "driver_data %lx\n", addr, len, pdev->irq, ent->vendor,
319 ent->device, ent->driver_data);
320
321 read_bars(dd, pdev, &bar0, &bar1);
322
323 if (!bar1 && !(bar0 & ~0xf)) {
324 if (addr) {
325 dev_info(&pdev->dev, "BAR is 0 (probable RESET), "
326 "rewriting as %llx\n", addr);
327 ret = pci_write_config_dword(
328 pdev, PCI_BASE_ADDRESS_0, addr);
329 if (ret) {
330 ipath_dev_err(dd, "rewrite of BAR0 "
331 "failed: err %d\n", -ret);
332 goto bail_disable;
333 }
334 ret = pci_write_config_dword(
335 pdev, PCI_BASE_ADDRESS_1, addr >> 32);
336 if (ret) {
337 ipath_dev_err(dd, "rewrite of BAR1 "
338 "failed: err %d\n", -ret);
339 goto bail_disable;
340 }
341 } else {
342 ipath_dev_err(dd, "BAR is 0 (probable RESET), "
343 "not usable until reboot\n");
344 ret = -ENODEV;
345 goto bail_disable;
346 }
347 }
348
349 ret = pci_request_regions(pdev, IPATH_DRV_NAME);
350 if (ret) {
351 dev_info(&pdev->dev, "pci_request_regions unit %u fails: "
352 "err %d\n", dd->ipath_unit, -ret);
353 goto bail_disable;
354 }
355
356 ret = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
357 if (ret) {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700358 /*
359 * if the 64 bit setup fails, try 32 bit. Some systems
360 * do not setup 64 bit maps on systems with 2GB or less
361 * memory installed.
362 */
363 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
364 if (ret) {
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700365 dev_info(&pdev->dev,
366 "Unable to set DMA mask for unit %u: %d\n",
367 dd->ipath_unit, ret);
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700368 goto bail_regions;
369 }
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700370 else {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700371 ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700372 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
373 if (ret)
374 dev_info(&pdev->dev,
375 "Unable to set DMA consistent mask "
376 "for unit %u: %d\n",
377 dd->ipath_unit, ret);
378
379 }
380 }
381 else {
382 ret = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
383 if (ret)
384 dev_info(&pdev->dev,
385 "Unable to set DMA consistent mask "
386 "for unit %u: %d\n",
387 dd->ipath_unit, ret);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800388 }
389
390 pci_set_master(pdev);
391
392 /*
393 * Save BARs to rewrite after device reset. Save all 64 bits of
394 * BAR, just in case.
395 */
396 dd->ipath_pcibar0 = addr;
397 dd->ipath_pcibar1 = addr >> 32;
398 dd->ipath_deviceid = ent->device; /* save for later use */
399 dd->ipath_vendorid = ent->vendor;
400
401 /* setup the chip-specific functions, as early as possible. */
402 switch (ent->device) {
403 case PCI_DEVICE_ID_INFINIPATH_HT:
404 ipath_init_ht400_funcs(dd);
405 break;
406 case PCI_DEVICE_ID_INFINIPATH_PE800:
407 ipath_init_pe800_funcs(dd);
408 break;
409 default:
Bryan O'Sullivan759d5762006-07-01 04:35:49 -0700410 ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800411 "failing\n", ent->device);
412 return -ENODEV;
413 }
414
415 for (j = 0; j < 6; j++) {
416 if (!pdev->resource[j].start)
417 continue;
Greg Kroah-Hartmane29419f2006-06-12 15:20:16 -0700418 ipath_cdbg(VERBOSE, "BAR %d start %llx, end %llx, len %llx\n",
419 j, (unsigned long long)pdev->resource[j].start,
420 (unsigned long long)pdev->resource[j].end,
421 (unsigned long long)pci_resource_len(pdev, j));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800422 }
423
424 if (!addr) {
425 ipath_dev_err(dd, "No valid address in BAR 0!\n");
426 ret = -ENODEV;
427 goto bail_regions;
428 }
429
430 dd->ipath_deviceid = ent->device; /* save for later use */
431 dd->ipath_vendorid = ent->vendor;
432
433 ret = pci_read_config_byte(pdev, PCI_REVISION_ID, &rev);
434 if (ret) {
435 ipath_dev_err(dd, "Failed to read PCI revision ID unit "
436 "%u: err %d\n", dd->ipath_unit, -ret);
437 goto bail_regions; /* shouldn't ever happen */
438 }
439 dd->ipath_pcirev = rev;
440
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700441#if defined(__powerpc__)
442 /* There isn't a generic way to specify writethrough mappings */
443 dd->ipath_kregbase = __ioremap(addr, len,
444 (_PAGE_NO_CACHE|_PAGE_WRITETHRU));
445#else
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800446 dd->ipath_kregbase = ioremap_nocache(addr, len);
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700447#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800448
449 if (!dd->ipath_kregbase) {
450 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
451 addr);
452 ret = -ENOMEM;
453 goto bail_iounmap;
454 }
455 dd->ipath_kregend = (u64 __iomem *)
456 ((void __iomem *)dd->ipath_kregbase + len);
457 dd->ipath_physaddr = addr; /* used for io_remap, etc. */
458 /* for user mmap */
Bryan O'Sullivanb35f0042006-07-01 04:35:59 -0700459 ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
460 addr, dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800461
462 /*
463 * clear ipath_flags here instead of in ipath_init_chip as it is set
464 * by ipath_setup_htconfig.
465 */
466 dd->ipath_flags = 0;
Bryan O'Sullivanfba75202006-07-01 04:36:09 -0700467 dd->ipath_lli_counter = 0;
468 dd->ipath_lli_errors = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800469
470 if (dd->ipath_f_bus(dd, pdev))
471 ipath_dev_err(dd, "Failed to setup config space; "
472 "continuing anyway\n");
473
474 /*
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700475 * set up our interrupt handler; IRQF_SHARED probably not needed,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800476 * since MSI interrupts shouldn't be shared but won't hurt for now.
477 * check 0 irq after we return from chip-specific bus setup, since
478 * that can affect this due to setup
479 */
480 if (!pdev->irq)
481 ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't "
482 "work\n");
483 else {
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700484 ret = request_irq(pdev->irq, ipath_intr, IRQF_SHARED,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800485 IPATH_DRV_NAME, dd);
486 if (ret) {
487 ipath_dev_err(dd, "Couldn't setup irq handler, "
488 "irq=%u: %d\n", pdev->irq, ret);
489 goto bail_iounmap;
490 }
491 }
492
493 ret = ipath_init_chip(dd, 0); /* do the chip-specific init */
494 if (ret)
495 goto bail_iounmap;
496
497 ret = ipath_enable_wc(dd);
498
499 if (ret) {
500 ipath_dev_err(dd, "Write combining not enabled "
501 "(err %d): performance may be poor\n",
502 -ret);
503 ret = 0;
504 }
505
506 ipath_device_create_group(&pdev->dev, dd);
507 ipathfs_add_device(dd);
508 ipath_user_add(dd);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700509 ipath_diag_add(dd);
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700510 ipath_register_ib_device(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800511
512 goto bail;
513
514bail_iounmap:
515 iounmap((volatile void __iomem *) dd->ipath_kregbase);
516
517bail_regions:
518 pci_release_regions(pdev);
519
520bail_disable:
521 pci_disable_device(pdev);
522
523bail_devdata:
524 ipath_free_devdata(pdev, dd);
525
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800526bail:
527 return ret;
528}
529
530static void __devexit ipath_remove_one(struct pci_dev *pdev)
531{
532 struct ipath_devdata *dd;
533
534 ipath_cdbg(VERBOSE, "removing, pdev=%p\n", pdev);
535 if (!pdev)
536 return;
537
538 dd = pci_get_drvdata(pdev);
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700539 ipath_unregister_ib_device(dd->verbs_dev);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700540 ipath_diag_remove(dd);
541 ipath_user_remove(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800542 ipathfs_remove_device(dd);
543 ipath_device_remove_group(&pdev->dev, dd);
544 ipath_cdbg(VERBOSE, "Releasing pci memory regions, dd %p, "
545 "unit %u\n", dd, (u32) dd->ipath_unit);
546 if (dd->ipath_kregbase) {
547 ipath_cdbg(VERBOSE, "Unmapping kregbase %p\n",
548 dd->ipath_kregbase);
549 iounmap((volatile void __iomem *) dd->ipath_kregbase);
550 dd->ipath_kregbase = NULL;
551 }
552 pci_release_regions(pdev);
553 ipath_cdbg(VERBOSE, "calling pci_disable_device\n");
554 pci_disable_device(pdev);
555
556 ipath_free_devdata(pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800557}
558
559/* general driver use */
560DEFINE_MUTEX(ipath_mutex);
561
562static DEFINE_SPINLOCK(ipath_pioavail_lock);
563
564/**
565 * ipath_disarm_piobufs - cancel a range of PIO buffers
566 * @dd: the infinipath device
567 * @first: the first PIO buffer to cancel
568 * @cnt: the number of PIO buffers to cancel
569 *
570 * cancel a range of PIO buffers, used when they might be armed, but
571 * not triggered. Used at init to ensure buffer state, and also user
572 * process close, in case it died while writing to a PIO buffer
573 * Also after errors.
574 */
575void ipath_disarm_piobufs(struct ipath_devdata *dd, unsigned first,
576 unsigned cnt)
577{
578 unsigned i, last = first + cnt;
579 u64 sendctrl, sendorig;
580
581 ipath_cdbg(PKT, "disarm %u PIObufs first=%u\n", cnt, first);
582 sendorig = dd->ipath_sendctrl | INFINIPATH_S_DISARM;
583 for (i = first; i < last; i++) {
584 sendctrl = sendorig |
585 (i << INFINIPATH_S_DISARMPIOBUF_SHIFT);
586 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
587 sendctrl);
588 }
589
590 /*
591 * Write it again with current value, in case ipath_sendctrl changed
592 * while we were looping; no critical bits that would require
593 * locking.
594 *
595 * Write a 0, and then the original value, reading scratch in
596 * between. This seems to avoid a chip timing race that causes
597 * pioavail updates to memory to stop.
598 */
599 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
600 0);
601 sendorig = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
602 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
603 dd->ipath_sendctrl);
604}
605
606/**
607 * ipath_wait_linkstate - wait for an IB link state change to occur
608 * @dd: the infinipath device
609 * @state: the state to wait for
610 * @msecs: the number of milliseconds to wait
611 *
612 * wait up to msecs milliseconds for IB link state change to occur for
613 * now, take the easy polling route. Currently used only by
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700614 * ipath_set_linkstate. Returns 0 if state reached, otherwise
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800615 * -ETIMEDOUT state can have multiple states set, for any of several
616 * transitions.
617 */
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700618static int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state,
619 int msecs)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800620{
621 dd->ipath_sma_state_wanted = state;
622 wait_event_interruptible_timeout(ipath_sma_state_wait,
623 (dd->ipath_flags & state),
624 msecs_to_jiffies(msecs));
625 dd->ipath_sma_state_wanted = 0;
626
627 if (!(dd->ipath_flags & state)) {
628 u64 val;
629 ipath_cdbg(SMA, "Didn't reach linkstate %s within %u ms\n",
630 /* test INIT ahead of DOWN, both can be set */
631 (state & IPATH_LINKINIT) ? "INIT" :
632 ((state & IPATH_LINKDOWN) ? "DOWN" :
633 ((state & IPATH_LINKARMED) ? "ARM" : "ACTIVE")),
634 msecs);
635 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
636 ipath_cdbg(VERBOSE, "ibcc=%llx ibcstatus=%llx (%s)\n",
637 (unsigned long long) ipath_read_kreg64(
638 dd, dd->ipath_kregs->kr_ibcctrl),
639 (unsigned long long) val,
640 ipath_ibcstatus_str[val & 0xf]);
641 }
642 return (dd->ipath_flags & state) ? 0 : -ETIMEDOUT;
643}
644
645void ipath_decode_err(char *buf, size_t blen, ipath_err_t err)
646{
647 *buf = '\0';
648 if (err & INFINIPATH_E_RHDRLEN)
649 strlcat(buf, "rhdrlen ", blen);
650 if (err & INFINIPATH_E_RBADTID)
651 strlcat(buf, "rbadtid ", blen);
652 if (err & INFINIPATH_E_RBADVERSION)
653 strlcat(buf, "rbadversion ", blen);
654 if (err & INFINIPATH_E_RHDR)
655 strlcat(buf, "rhdr ", blen);
656 if (err & INFINIPATH_E_RLONGPKTLEN)
657 strlcat(buf, "rlongpktlen ", blen);
658 if (err & INFINIPATH_E_RSHORTPKTLEN)
659 strlcat(buf, "rshortpktlen ", blen);
660 if (err & INFINIPATH_E_RMAXPKTLEN)
661 strlcat(buf, "rmaxpktlen ", blen);
662 if (err & INFINIPATH_E_RMINPKTLEN)
663 strlcat(buf, "rminpktlen ", blen);
664 if (err & INFINIPATH_E_RFORMATERR)
665 strlcat(buf, "rformaterr ", blen);
666 if (err & INFINIPATH_E_RUNSUPVL)
667 strlcat(buf, "runsupvl ", blen);
668 if (err & INFINIPATH_E_RUNEXPCHAR)
669 strlcat(buf, "runexpchar ", blen);
670 if (err & INFINIPATH_E_RIBFLOW)
671 strlcat(buf, "ribflow ", blen);
672 if (err & INFINIPATH_E_REBP)
673 strlcat(buf, "EBP ", blen);
674 if (err & INFINIPATH_E_SUNDERRUN)
675 strlcat(buf, "sunderrun ", blen);
676 if (err & INFINIPATH_E_SPIOARMLAUNCH)
677 strlcat(buf, "spioarmlaunch ", blen);
678 if (err & INFINIPATH_E_SUNEXPERRPKTNUM)
679 strlcat(buf, "sunexperrpktnum ", blen);
680 if (err & INFINIPATH_E_SDROPPEDDATAPKT)
681 strlcat(buf, "sdroppeddatapkt ", blen);
682 if (err & INFINIPATH_E_SDROPPEDSMPPKT)
683 strlcat(buf, "sdroppedsmppkt ", blen);
684 if (err & INFINIPATH_E_SMAXPKTLEN)
685 strlcat(buf, "smaxpktlen ", blen);
686 if (err & INFINIPATH_E_SMINPKTLEN)
687 strlcat(buf, "sminpktlen ", blen);
688 if (err & INFINIPATH_E_SUNSUPVL)
689 strlcat(buf, "sunsupVL ", blen);
690 if (err & INFINIPATH_E_SPKTLEN)
691 strlcat(buf, "spktlen ", blen);
692 if (err & INFINIPATH_E_INVALIDADDR)
693 strlcat(buf, "invalidaddr ", blen);
694 if (err & INFINIPATH_E_RICRC)
695 strlcat(buf, "CRC ", blen);
696 if (err & INFINIPATH_E_RVCRC)
697 strlcat(buf, "VCRC ", blen);
698 if (err & INFINIPATH_E_RRCVEGRFULL)
699 strlcat(buf, "rcvegrfull ", blen);
700 if (err & INFINIPATH_E_RRCVHDRFULL)
701 strlcat(buf, "rcvhdrfull ", blen);
702 if (err & INFINIPATH_E_IBSTATUSCHANGED)
703 strlcat(buf, "ibcstatuschg ", blen);
704 if (err & INFINIPATH_E_RIBLOSTLINK)
705 strlcat(buf, "riblostlink ", blen);
706 if (err & INFINIPATH_E_HARDWARE)
707 strlcat(buf, "hardware ", blen);
708 if (err & INFINIPATH_E_RESET)
709 strlcat(buf, "reset ", blen);
710}
711
712/**
713 * get_rhf_errstring - decode RHF errors
714 * @err: the err number
715 * @msg: the output buffer
716 * @len: the length of the output buffer
717 *
718 * only used one place now, may want more later
719 */
720static void get_rhf_errstring(u32 err, char *msg, size_t len)
721{
722 /* if no errors, and so don't need to check what's first */
723 *msg = '\0';
724
725 if (err & INFINIPATH_RHF_H_ICRCERR)
726 strlcat(msg, "icrcerr ", len);
727 if (err & INFINIPATH_RHF_H_VCRCERR)
728 strlcat(msg, "vcrcerr ", len);
729 if (err & INFINIPATH_RHF_H_PARITYERR)
730 strlcat(msg, "parityerr ", len);
731 if (err & INFINIPATH_RHF_H_LENERR)
732 strlcat(msg, "lenerr ", len);
733 if (err & INFINIPATH_RHF_H_MTUERR)
734 strlcat(msg, "mtuerr ", len);
735 if (err & INFINIPATH_RHF_H_IHDRERR)
736 /* infinipath hdr checksum error */
737 strlcat(msg, "ipathhdrerr ", len);
738 if (err & INFINIPATH_RHF_H_TIDERR)
739 strlcat(msg, "tiderr ", len);
740 if (err & INFINIPATH_RHF_H_MKERR)
741 /* bad port, offset, etc. */
742 strlcat(msg, "invalid ipathhdr ", len);
743 if (err & INFINIPATH_RHF_H_IBERR)
744 strlcat(msg, "iberr ", len);
745 if (err & INFINIPATH_RHF_L_SWA)
746 strlcat(msg, "swA ", len);
747 if (err & INFINIPATH_RHF_L_SWB)
748 strlcat(msg, "swB ", len);
749}
750
751/**
752 * ipath_get_egrbuf - get an eager buffer
753 * @dd: the infinipath device
754 * @bufnum: the eager buffer to get
755 * @err: unused
756 *
757 * must only be called if ipath_pd[port] is known to be allocated
758 */
759static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum,
760 int err)
761{
762 return dd->ipath_port0_skbs ?
763 (void *)dd->ipath_port0_skbs[bufnum]->data : NULL;
764}
765
766/**
767 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
768 * @dd: the infinipath device
769 * @gfp_mask: the sk_buff SFP mask
770 */
771struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd,
772 gfp_t gfp_mask)
773{
774 struct sk_buff *skb;
775 u32 len;
776
777 /*
778 * Only fully supported way to handle this is to allocate lots
779 * extra, align as needed, and then do skb_reserve(). That wastes
780 * a lot of memory... I'll have to hack this into infinipath_copy
781 * also.
782 */
783
784 /*
785 * We need 4 extra bytes for unaligned transfer copying
786 */
787 if (dd->ipath_flags & IPATH_4BYTE_TID) {
788 /* we need a 4KB multiple alignment, and there is no way
789 * to do it except to allocate extra and then skb_reserve
790 * enough to bring it up to the right alignment.
791 */
792 len = dd->ipath_ibmaxlen + 4 + (1 << 11) - 1;
793 }
794 else
795 len = dd->ipath_ibmaxlen + 4;
796 skb = __dev_alloc_skb(len, gfp_mask);
797 if (!skb) {
798 ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
799 len);
800 goto bail;
801 }
802 if (dd->ipath_flags & IPATH_4BYTE_TID) {
803 u32 una = ((1 << 11) - 1) & (unsigned long)(skb->data + 4);
804 if (una)
805 skb_reserve(skb, 4 + (1 << 11) - una);
806 else
807 skb_reserve(skb, 4);
808 } else
809 skb_reserve(skb, 4);
810
811bail:
812 return skb;
813}
814
Ralph Campbell3d37b9e2006-07-17 18:18:36 -0700815static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
816 u32 eflags,
817 u32 l,
818 u32 etail,
819 u64 *rc)
820{
821 char emsg[128];
822 struct ipath_message_header *hdr;
823
824 get_rhf_errstring(eflags, emsg, sizeof emsg);
825 hdr = (struct ipath_message_header *)&rc[1];
826 ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
827 "tlen=%x opcode=%x egridx=%x: %s\n",
828 eflags, l,
829 ipath_hdrget_rcv_type((__le32 *) rc),
830 ipath_hdrget_length_in_bytes((__le32 *) rc),
831 be32_to_cpu(hdr->bth[0]) >> 24,
832 etail, emsg);
833
834 /* Count local link integrity errors. */
835 if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
836 u8 n = (dd->ipath_ibcctrl >>
837 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
838 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
839
840 if (++dd->ipath_lli_counter > n) {
841 dd->ipath_lli_counter = 0;
842 dd->ipath_lli_errors++;
843 }
844 }
845}
846
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800847/*
848 * ipath_kreceive - receive a packet
849 * @dd: the infinipath device
850 *
851 * called from interrupt handler for errors or receive interrupt
852 */
853void ipath_kreceive(struct ipath_devdata *dd)
854{
855 u64 *rc;
856 void *ebuf;
857 const u32 rsize = dd->ipath_rcvhdrentsize; /* words */
858 const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
859 u32 etail = -1, l, hdrqtail;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700860 struct ipath_message_header *hdr;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700861 u32 eflags, i, etype, tlen, pkttot = 0, updegr=0, reloop=0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800862 static u64 totcalls; /* stats, may eventually remove */
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800863
864 if (!dd->ipath_hdrqtailptr) {
865 ipath_dev_err(dd,
866 "hdrqtailptr not set, can't do receives\n");
867 goto bail;
868 }
869
870 /* There is already a thread processing this queue. */
871 if (test_and_set_bit(0, &dd->ipath_rcv_pending))
872 goto bail;
873
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700874 l = dd->ipath_port0head;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700875 hdrqtail = (u32) le64_to_cpu(*dd->ipath_hdrqtailptr);
876 if (l == hdrqtail)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800877 goto done;
878
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700879reloop:
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700880 for (i = 0; l != hdrqtail; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800881 u32 qp;
882 u8 *bthbytes;
883
884 rc = (u64 *) (dd->ipath_pd[0]->port_rcvhdrq + (l << 2));
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700885 hdr = (struct ipath_message_header *)&rc[1];
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800886 /*
887 * could make a network order version of IPATH_KD_QP, and
888 * do the obvious shift before masking to speed this up.
889 */
890 qp = ntohl(hdr->bth[1]) & 0xffffff;
891 bthbytes = (u8 *) hdr->bth;
892
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700893 eflags = ipath_hdrget_err_flags((__le32 *) rc);
894 etype = ipath_hdrget_rcv_type((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800895 /* total length */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700896 tlen = ipath_hdrget_length_in_bytes((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800897 ebuf = NULL;
898 if (etype != RCVHQ_RCV_TYPE_EXPECTED) {
899 /*
900 * it turns out that the chips uses an eager buffer
901 * for all non-expected packets, whether it "needs"
902 * one or not. So always get the index, but don't
903 * set ebuf (so we try to copy data) unless the
904 * length requires it.
905 */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700906 etail = ipath_hdrget_index((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800907 if (tlen > sizeof(*hdr) ||
908 etype == RCVHQ_RCV_TYPE_NON_KD)
909 ebuf = ipath_get_egrbuf(dd, etail, 0);
910 }
911
912 /*
913 * both tiderr and ipathhdrerr are set for all plain IB
914 * packets; only ipathhdrerr should be set.
915 */
916
917 if (etype != RCVHQ_RCV_TYPE_NON_KD && etype !=
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700918 RCVHQ_RCV_TYPE_ERROR && ipath_hdrget_ipath_ver(
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800919 hdr->iph.ver_port_tid_offset) !=
920 IPS_PROTO_VERSION) {
921 ipath_cdbg(PKT, "Bad InfiniPath protocol version "
922 "%x\n", etype);
923 }
924
Ralph Campbell3d37b9e2006-07-17 18:18:36 -0700925 if (unlikely(eflags))
926 ipath_rcv_hdrerr(dd, eflags, l, etail, rc);
927 else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700928 ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
929 if (dd->ipath_lli_counter)
930 dd->ipath_lli_counter--;
931 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
932 "qp=%x), len %x; ignored\n",
933 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800934 }
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700935 else if (etype == RCVHQ_RCV_TYPE_EAGER)
936 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
937 "qp=%x), len %x; ignored\n",
938 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800939 else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
940 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
941 be32_to_cpu(hdr->bth[0]) & 0xff);
Ralph Campbell3d37b9e2006-07-17 18:18:36 -0700942 else {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800943 /*
944 * error packet, type of error unknown.
945 * Probably type 3, but we don't know, so don't
946 * even try to print the opcode, etc.
947 */
948 ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
949 "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
950 "hdr %llx %llx %llx %llx %llx\n",
951 etail, tlen, (unsigned long) rc, l,
952 (unsigned long long) rc[0],
953 (unsigned long long) rc[1],
954 (unsigned long long) rc[2],
955 (unsigned long long) rc[3],
956 (unsigned long long) rc[4],
957 (unsigned long long) rc[5]);
958 }
959 l += rsize;
960 if (l >= maxcnt)
961 l = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800962 if (etype != RCVHQ_RCV_TYPE_EXPECTED)
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700963 updegr = 1;
964 /*
965 * update head regs on last packet, and every 16 packets.
966 * Reduce bus traffic, while still trying to prevent
967 * rcvhdrq overflows, for when the queue is nearly full
968 */
969 if (l == hdrqtail || (i && !(i&0xf))) {
970 u64 lval;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700971 if (l == hdrqtail) /* PE-800 interrupt only on last */
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700972 lval = dd->ipath_rhdrhead_intr_off | l;
973 else
974 lval = l;
975 (void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
976 if (updegr) {
977 (void)ipath_write_ureg(dd, ur_rcvegrindexhead,
978 etail, 0);
979 updegr = 0;
980 }
981 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800982 }
983
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700984 if (!dd->ipath_rhdrhead_intr_off && !reloop) {
985 /* HT-400 workaround; we can have a race clearing chip
986 * interrupt with another interrupt about to be delivered,
987 * and can clear it before it is delivered on the GPIO
988 * workaround. By doing the extra check here for the
989 * in-memory tail register updating while we were doing
990 * earlier packets, we "almost" guarantee we have covered
991 * that case.
992 */
993 u32 hqtail = (u32)le64_to_cpu(*dd->ipath_hdrqtailptr);
994 if (hqtail != hdrqtail) {
995 hdrqtail = hqtail;
996 reloop = 1; /* loop 1 extra time at most */
997 goto reloop;
998 }
999 }
1000
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001001 pkttot += i;
1002
1003 dd->ipath_port0head = l;
1004
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001005 if (pkttot > ipath_stats.sps_maxpkts_call)
1006 ipath_stats.sps_maxpkts_call = pkttot;
1007 ipath_stats.sps_port0pkts += pkttot;
1008 ipath_stats.sps_avgpkts_call =
1009 ipath_stats.sps_port0pkts / ++totcalls;
1010
1011done:
1012 clear_bit(0, &dd->ipath_rcv_pending);
1013 smp_mb__after_clear_bit();
1014
1015bail:;
1016}
1017
1018/**
1019 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1020 * @dd: the infinipath device
1021 *
1022 * called whenever our local copy indicates we have run out of send buffers
1023 * NOTE: This can be called from interrupt context by some code
1024 * and from non-interrupt context by ipath_getpiobuf().
1025 */
1026
1027static void ipath_update_pio_bufs(struct ipath_devdata *dd)
1028{
1029 unsigned long flags;
1030 int i;
1031 const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
1032
1033 /* If the generation (check) bits have changed, then we update the
1034 * busy bit for the corresponding PIO buffer. This algorithm will
1035 * modify positions to the value they already have in some cases
1036 * (i.e., no change), but it's faster than changing only the bits
1037 * that have changed.
1038 *
1039 * We would like to do this atomicly, to avoid spinlocks in the
1040 * critical send path, but that's not really possible, given the
1041 * type of changes, and that this routine could be called on
1042 * multiple cpu's simultaneously, so we lock in this routine only,
1043 * to avoid conflicting updates; all we change is the shadow, and
1044 * it's a single 64 bit memory location, so by definition the update
1045 * is atomic in terms of what other cpu's can see in testing the
1046 * bits. The spin_lock overhead isn't too bad, since it only
1047 * happens when all buffers are in use, so only cpu overhead, not
1048 * latency or bandwidth is affected.
1049 */
1050#define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
1051 if (!dd->ipath_pioavailregs_dma) {
1052 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1053 return;
1054 }
1055 if (ipath_debug & __IPATH_VERBDBG) {
1056 /* only if packet debug and verbose */
1057 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1058 unsigned long *shadow = dd->ipath_pioavailshadow;
1059
1060 ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
1061 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1062 "s3=%lx\n",
1063 (unsigned long long) le64_to_cpu(dma[0]),
1064 shadow[0],
1065 (unsigned long long) le64_to_cpu(dma[1]),
1066 shadow[1],
1067 (unsigned long long) le64_to_cpu(dma[2]),
1068 shadow[2],
1069 (unsigned long long) le64_to_cpu(dma[3]),
1070 shadow[3]);
1071 if (piobregs > 4)
1072 ipath_cdbg(
1073 PKT, "2nd group, dma4=%llx shad4=%lx, "
1074 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1075 "d7=%llx s7=%lx\n",
1076 (unsigned long long) le64_to_cpu(dma[4]),
1077 shadow[4],
1078 (unsigned long long) le64_to_cpu(dma[5]),
1079 shadow[5],
1080 (unsigned long long) le64_to_cpu(dma[6]),
1081 shadow[6],
1082 (unsigned long long) le64_to_cpu(dma[7]),
1083 shadow[7]);
1084 }
1085 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1086 for (i = 0; i < piobregs; i++) {
1087 u64 pchbusy, pchg, piov, pnew;
1088 /*
1089 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1090 */
1091 if (i > 3) {
1092 if (i & 1)
1093 piov = le64_to_cpu(
1094 dd->ipath_pioavailregs_dma[i - 1]);
1095 else
1096 piov = le64_to_cpu(
1097 dd->ipath_pioavailregs_dma[i + 1]);
1098 } else
1099 piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
1100 pchg = _IPATH_ALL_CHECKBITS &
1101 ~(dd->ipath_pioavailshadow[i] ^ piov);
1102 pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
1103 if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
1104 pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
1105 pnew |= piov & pchbusy;
1106 dd->ipath_pioavailshadow[i] = pnew;
1107 }
1108 }
1109 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1110}
1111
1112/**
1113 * ipath_setrcvhdrsize - set the receive header size
1114 * @dd: the infinipath device
1115 * @rhdrsize: the receive header size
1116 *
1117 * called from user init code, and also layered driver init
1118 */
1119int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
1120{
1121 int ret = 0;
1122
1123 if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
1124 if (dd->ipath_rcvhdrsize != rhdrsize) {
1125 dev_info(&dd->pcidev->dev,
1126 "Error: can't set protocol header "
1127 "size %u, already %u\n",
1128 rhdrsize, dd->ipath_rcvhdrsize);
1129 ret = -EAGAIN;
1130 } else
1131 ipath_cdbg(VERBOSE, "Reuse same protocol header "
1132 "size %u\n", dd->ipath_rcvhdrsize);
1133 } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
1134 (sizeof(u64) / sizeof(u32)))) {
1135 ipath_dbg("Error: can't set protocol header size %u "
1136 "(> max %u)\n", rhdrsize,
1137 dd->ipath_rcvhdrentsize -
1138 (u32) (sizeof(u64) / sizeof(u32)));
1139 ret = -EOVERFLOW;
1140 } else {
1141 dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
1142 dd->ipath_rcvhdrsize = rhdrsize;
1143 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
1144 dd->ipath_rcvhdrsize);
1145 ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
1146 dd->ipath_rcvhdrsize);
1147 }
1148 return ret;
1149}
1150
1151/**
1152 * ipath_getpiobuf - find an available pio buffer
1153 * @dd: the infinipath device
1154 * @pbufnum: the buffer number is placed here
1155 *
1156 * do appropriate marking as busy, etc.
1157 * returns buffer number if one found (>=0), negative number is error.
1158 * Used by ipath_sma_send_pkt and ipath_layer_send
1159 */
1160u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 * pbufnum)
1161{
1162 int i, j, starti, updated = 0;
1163 unsigned piobcnt, iter;
1164 unsigned long flags;
1165 unsigned long *shadow = dd->ipath_pioavailshadow;
1166 u32 __iomem *buf;
1167
1168 piobcnt = (unsigned)(dd->ipath_piobcnt2k
1169 + dd->ipath_piobcnt4k);
1170 starti = dd->ipath_lastport_piobuf;
1171 iter = piobcnt - starti;
1172 if (dd->ipath_upd_pio_shadow) {
1173 /*
1174 * Minor optimization. If we had no buffers on last call,
1175 * start out by doing the update; continue and do scan even
1176 * if no buffers were updated, to be paranoid
1177 */
1178 ipath_update_pio_bufs(dd);
1179 /* we scanned here, don't do it at end of scan */
1180 updated = 1;
1181 i = starti;
1182 } else
1183 i = dd->ipath_lastpioindex;
1184
1185rescan:
1186 /*
1187 * while test_and_set_bit() is atomic, we do that and then the
1188 * change_bit(), and the pair is not. See if this is the cause
1189 * of the remaining armlaunch errors.
1190 */
1191 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1192 for (j = 0; j < iter; j++, i++) {
1193 if (i >= piobcnt)
1194 i = starti;
1195 /*
1196 * To avoid bus lock overhead, we first find a candidate
1197 * buffer, then do the test and set, and continue if that
1198 * fails.
1199 */
1200 if (test_bit((2 * i) + 1, shadow) ||
1201 test_and_set_bit((2 * i) + 1, shadow))
1202 continue;
1203 /* flip generation bit */
1204 change_bit(2 * i, shadow);
1205 break;
1206 }
1207 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1208
1209 if (j == iter) {
1210 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1211
1212 /*
1213 * first time through; shadow exhausted, but may be real
1214 * buffers available, so go see; if any updated, rescan
1215 * (once)
1216 */
1217 if (!updated) {
1218 ipath_update_pio_bufs(dd);
1219 updated = 1;
1220 i = starti;
1221 goto rescan;
1222 }
1223 dd->ipath_upd_pio_shadow = 1;
1224 /*
1225 * not atomic, but if we lose one once in a while, that's OK
1226 */
1227 ipath_stats.sps_nopiobufs++;
1228 if (!(++dd->ipath_consec_nopiobuf % 100000)) {
1229 ipath_dbg(
1230 "%u pio sends with no bufavail; dmacopy: "
1231 "%llx %llx %llx %llx; shadow: "
1232 "%lx %lx %lx %lx\n",
1233 dd->ipath_consec_nopiobuf,
1234 (unsigned long long) le64_to_cpu(dma[0]),
1235 (unsigned long long) le64_to_cpu(dma[1]),
1236 (unsigned long long) le64_to_cpu(dma[2]),
1237 (unsigned long long) le64_to_cpu(dma[3]),
1238 shadow[0], shadow[1], shadow[2],
1239 shadow[3]);
1240 /*
1241 * 4 buffers per byte, 4 registers above, cover rest
1242 * below
1243 */
1244 if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
1245 (sizeof(shadow[0]) * 4 * 4))
1246 ipath_dbg("2nd group: dmacopy: %llx %llx "
1247 "%llx %llx; shadow: %lx %lx "
1248 "%lx %lx\n",
1249 (unsigned long long)
1250 le64_to_cpu(dma[4]),
1251 (unsigned long long)
1252 le64_to_cpu(dma[5]),
1253 (unsigned long long)
1254 le64_to_cpu(dma[6]),
1255 (unsigned long long)
1256 le64_to_cpu(dma[7]),
1257 shadow[4], shadow[5],
1258 shadow[6], shadow[7]);
1259 }
1260 buf = NULL;
1261 goto bail;
1262 }
1263
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001264 /*
1265 * set next starting place. Since it's just an optimization,
1266 * it doesn't matter who wins on this, so no locking
1267 */
1268 dd->ipath_lastpioindex = i + 1;
1269 if (dd->ipath_upd_pio_shadow)
1270 dd->ipath_upd_pio_shadow = 0;
1271 if (dd->ipath_consec_nopiobuf)
1272 dd->ipath_consec_nopiobuf = 0;
1273 if (i < dd->ipath_piobcnt2k)
1274 buf = (u32 __iomem *) (dd->ipath_pio2kbase +
1275 i * dd->ipath_palign);
1276 else
1277 buf = (u32 __iomem *)
1278 (dd->ipath_pio4kbase +
1279 (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
1280 ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
1281 i, (i < dd->ipath_piobcnt2k) ? 2 : 4, buf);
1282 if (pbufnum)
1283 *pbufnum = i;
1284
1285bail:
1286 return buf;
1287}
1288
1289/**
1290 * ipath_create_rcvhdrq - create a receive header queue
1291 * @dd: the infinipath device
1292 * @pd: the port data
1293 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001294 * this must be contiguous memory (from an i/o perspective), and must be
1295 * DMA'able (which means for some systems, it will go through an IOMMU,
1296 * or be forced into a low address range).
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001297 */
1298int ipath_create_rcvhdrq(struct ipath_devdata *dd,
1299 struct ipath_portdata *pd)
1300{
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001301 int ret = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001302
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001303 if (!pd->port_rcvhdrq) {
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001304 dma_addr_t phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001305 gfp_t gfp_flags = GFP_USER | __GFP_COMP;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001306 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
1307 sizeof(u32), PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001308
1309 pd->port_rcvhdrq = dma_alloc_coherent(
1310 &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
1311 gfp_flags);
1312
1313 if (!pd->port_rcvhdrq) {
1314 ipath_dev_err(dd, "attempt to allocate %d bytes "
1315 "for port %u rcvhdrq failed\n",
1316 amt, pd->port_port);
1317 ret = -ENOMEM;
1318 goto bail;
1319 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001320 pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
1321 &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail, GFP_KERNEL);
1322 if (!pd->port_rcvhdrtail_kvaddr) {
1323 ipath_dev_err(dd, "attempt to allocate 1 page "
1324 "for port %u rcvhdrqtailaddr failed\n",
1325 pd->port_port);
1326 ret = -ENOMEM;
1327 goto bail;
1328 }
1329 pd->port_rcvhdrqtailaddr_phys = phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001330
1331 pd->port_rcvhdrq_size = amt;
1332
1333 ipath_cdbg(VERBOSE, "%d pages at %p (phys %lx) size=%lu "
1334 "for port %u rcvhdr Q\n",
1335 amt >> PAGE_SHIFT, pd->port_rcvhdrq,
1336 (unsigned long) pd->port_rcvhdrq_phys,
1337 (unsigned long) pd->port_rcvhdrq_size,
1338 pd->port_port);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001339
1340 ipath_cdbg(VERBOSE, "port %d hdrtailaddr, %llx physical\n",
1341 pd->port_port,
1342 (unsigned long long) phys_hdrqtail);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001343 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001344 else
1345 ipath_cdbg(VERBOSE, "reuse port %d rcvhdrq @%p %llx phys; "
1346 "hdrtailaddr@%p %llx physical\n",
1347 pd->port_port, pd->port_rcvhdrq,
1348 pd->port_rcvhdrq_phys, pd->port_rcvhdrtail_kvaddr,
1349 (unsigned long long)pd->port_rcvhdrqtailaddr_phys);
1350
1351 /* clear for security and sanity on each use */
1352 memset(pd->port_rcvhdrq, 0, pd->port_rcvhdrq_size);
1353 memset((void *)pd->port_rcvhdrtail_kvaddr, 0, PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001354
1355 /*
1356 * tell chip each time we init it, even if we are re-using previous
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001357 * memory (we zero the register at process close)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001358 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001359 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdrtailaddr,
1360 pd->port_port, pd->port_rcvhdrqtailaddr_phys);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001361 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdraddr,
1362 pd->port_port, pd->port_rcvhdrq_phys);
1363
1364 ret = 0;
1365bail:
1366 return ret;
1367}
1368
1369int ipath_waitfor_complete(struct ipath_devdata *dd, ipath_kreg reg_id,
1370 u64 bits_to_wait_for, u64 * valp)
1371{
1372 unsigned long timeout;
1373 u64 lastval, val;
1374 int ret;
1375
1376 lastval = ipath_read_kreg64(dd, reg_id);
1377 /* wait a ridiculously long time */
1378 timeout = jiffies + msecs_to_jiffies(5);
1379 do {
1380 val = ipath_read_kreg64(dd, reg_id);
1381 /* set so they have something, even on failures. */
1382 *valp = val;
1383 if ((val & bits_to_wait_for) == bits_to_wait_for) {
1384 ret = 0;
1385 break;
1386 }
1387 if (val != lastval)
1388 ipath_cdbg(VERBOSE, "Changed from %llx to %llx, "
1389 "waiting for %llx bits\n",
1390 (unsigned long long) lastval,
1391 (unsigned long long) val,
1392 (unsigned long long) bits_to_wait_for);
1393 cond_resched();
1394 if (time_after(jiffies, timeout)) {
1395 ipath_dbg("Didn't get bits %llx in register 0x%x, "
1396 "got %llx\n",
1397 (unsigned long long) bits_to_wait_for,
1398 reg_id, (unsigned long long) *valp);
1399 ret = -ENODEV;
1400 break;
1401 }
1402 } while (1);
1403
1404 return ret;
1405}
1406
1407/**
1408 * ipath_waitfor_mdio_cmdready - wait for last command to complete
1409 * @dd: the infinipath device
1410 *
1411 * Like ipath_waitfor_complete(), but we wait for the CMDVALID bit to go
1412 * away indicating the last command has completed. It doesn't return data
1413 */
1414int ipath_waitfor_mdio_cmdready(struct ipath_devdata *dd)
1415{
1416 unsigned long timeout;
1417 u64 val;
1418 int ret;
1419
1420 /* wait a ridiculously long time */
1421 timeout = jiffies + msecs_to_jiffies(5);
1422 do {
1423 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_mdio);
1424 if (!(val & IPATH_MDIO_CMDVALID)) {
1425 ret = 0;
1426 break;
1427 }
1428 cond_resched();
1429 if (time_after(jiffies, timeout)) {
1430 ipath_dbg("CMDVALID stuck in mdio reg? (%llx)\n",
1431 (unsigned long long) val);
1432 ret = -ENODEV;
1433 break;
1434 }
1435 } while (1);
1436
1437 return ret;
1438}
1439
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001440static void ipath_set_ib_lstate(struct ipath_devdata *dd, int which)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001441{
1442 static const char *what[4] = {
1443 [0] = "DOWN",
1444 [INFINIPATH_IBCC_LINKCMD_INIT] = "INIT",
1445 [INFINIPATH_IBCC_LINKCMD_ARMED] = "ARMED",
1446 [INFINIPATH_IBCC_LINKCMD_ACTIVE] = "ACTIVE"
1447 };
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001448 int linkcmd = (which >> INFINIPATH_IBCC_LINKCMD_SHIFT) &
1449 INFINIPATH_IBCC_LINKCMD_MASK;
1450
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001451 ipath_cdbg(SMA, "Trying to move unit %u to %s, current ltstate "
1452 "is %s\n", dd->ipath_unit,
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001453 what[linkcmd],
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001454 ipath_ibcstatus_str[
1455 (ipath_read_kreg64
1456 (dd, dd->ipath_kregs->kr_ibcstatus) >>
1457 INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
1458 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK]);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001459 /* flush all queued sends when going to DOWN or INIT, to be sure that
1460 * they don't block SMA and other MAD packets */
1461 if (!linkcmd || linkcmd == INFINIPATH_IBCC_LINKCMD_INIT) {
1462 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1463 INFINIPATH_S_ABORT);
1464 ipath_disarm_piobufs(dd, dd->ipath_lastport_piobuf,
1465 (unsigned)(dd->ipath_piobcnt2k +
1466 dd->ipath_piobcnt4k) -
1467 dd->ipath_lastport_piobuf);
1468 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001469
1470 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1471 dd->ipath_ibcctrl | which);
1472}
1473
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001474int ipath_set_linkstate(struct ipath_devdata *dd, u8 newstate)
1475{
1476 u32 lstate;
1477 int ret;
1478
1479 switch (newstate) {
1480 case IPATH_IB_LINKDOWN:
1481 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_POLL <<
1482 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1483 /* don't wait */
1484 ret = 0;
1485 goto bail;
1486
1487 case IPATH_IB_LINKDOWN_SLEEP:
1488 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_SLEEP <<
1489 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1490 /* don't wait */
1491 ret = 0;
1492 goto bail;
1493
1494 case IPATH_IB_LINKDOWN_DISABLE:
1495 ipath_set_ib_lstate(dd,
1496 INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1497 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1498 /* don't wait */
1499 ret = 0;
1500 goto bail;
1501
1502 case IPATH_IB_LINKINIT:
1503 if (dd->ipath_flags & IPATH_LINKINIT) {
1504 ret = 0;
1505 goto bail;
1506 }
1507 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_INIT <<
1508 INFINIPATH_IBCC_LINKCMD_SHIFT);
1509 lstate = IPATH_LINKINIT;
1510 break;
1511
1512 case IPATH_IB_LINKARM:
1513 if (dd->ipath_flags & IPATH_LINKARMED) {
1514 ret = 0;
1515 goto bail;
1516 }
1517 if (!(dd->ipath_flags &
1518 (IPATH_LINKINIT | IPATH_LINKACTIVE))) {
1519 ret = -EINVAL;
1520 goto bail;
1521 }
1522 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ARMED <<
1523 INFINIPATH_IBCC_LINKCMD_SHIFT);
1524 /*
1525 * Since the port can transition to ACTIVE by receiving
1526 * a non VL 15 packet, wait for either state.
1527 */
1528 lstate = IPATH_LINKARMED | IPATH_LINKACTIVE;
1529 break;
1530
1531 case IPATH_IB_LINKACTIVE:
1532 if (dd->ipath_flags & IPATH_LINKACTIVE) {
1533 ret = 0;
1534 goto bail;
1535 }
1536 if (!(dd->ipath_flags & IPATH_LINKARMED)) {
1537 ret = -EINVAL;
1538 goto bail;
1539 }
1540 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ACTIVE <<
1541 INFINIPATH_IBCC_LINKCMD_SHIFT);
1542 lstate = IPATH_LINKACTIVE;
1543 break;
1544
1545 default:
1546 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate);
1547 ret = -EINVAL;
1548 goto bail;
1549 }
1550 ret = ipath_wait_linkstate(dd, lstate, 2000);
1551
1552bail:
1553 return ret;
1554}
1555
1556/**
1557 * ipath_set_mtu - set the MTU
1558 * @dd: the infinipath device
1559 * @arg: the new MTU
1560 *
1561 * we can handle "any" incoming size, the issue here is whether we
1562 * need to restrict our outgoing size. For now, we don't do any
1563 * sanity checking on this, and we don't deal with what happens to
1564 * programs that are already running when the size changes.
1565 * NOTE: changing the MTU will usually cause the IBC to go back to
1566 * link initialize (IPATH_IBSTATE_INIT) state...
1567 */
1568int ipath_set_mtu(struct ipath_devdata *dd, u16 arg)
1569{
1570 u32 piosize;
1571 int changed = 0;
1572 int ret;
1573
1574 /*
1575 * mtu is IB data payload max. It's the largest power of 2 less
1576 * than piosize (or even larger, since it only really controls the
1577 * largest we can receive; we can send the max of the mtu and
1578 * piosize). We check that it's one of the valid IB sizes.
1579 */
1580 if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
1581 arg != 4096) {
1582 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg);
1583 ret = -EINVAL;
1584 goto bail;
1585 }
1586 if (dd->ipath_ibmtu == arg) {
1587 ret = 0; /* same as current */
1588 goto bail;
1589 }
1590
1591 piosize = dd->ipath_ibmaxlen;
1592 dd->ipath_ibmtu = arg;
1593
1594 if (arg >= (piosize - IPATH_PIO_MAXIBHDR)) {
1595 /* Only if it's not the initial value (or reset to it) */
1596 if (piosize != dd->ipath_init_ibmaxlen) {
1597 dd->ipath_ibmaxlen = piosize;
1598 changed = 1;
1599 }
1600 } else if ((arg + IPATH_PIO_MAXIBHDR) != dd->ipath_ibmaxlen) {
1601 piosize = arg + IPATH_PIO_MAXIBHDR;
1602 ipath_cdbg(VERBOSE, "ibmaxlen was 0x%x, setting to 0x%x "
1603 "(mtu 0x%x)\n", dd->ipath_ibmaxlen, piosize,
1604 arg);
1605 dd->ipath_ibmaxlen = piosize;
1606 changed = 1;
1607 }
1608
1609 if (changed) {
1610 /*
1611 * set the IBC maxpktlength to the size of our pio
1612 * buffers in words
1613 */
1614 u64 ibc = dd->ipath_ibcctrl;
1615 ibc &= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK <<
1616 INFINIPATH_IBCC_MAXPKTLEN_SHIFT);
1617
1618 piosize = piosize - 2 * sizeof(u32); /* ignore pbc */
1619 dd->ipath_ibmaxlen = piosize;
1620 piosize /= sizeof(u32); /* in words */
1621 /*
1622 * for ICRC, which we only send in diag test pkt mode, and
1623 * we don't need to worry about that for mtu
1624 */
1625 piosize += 1;
1626
1627 ibc |= piosize << INFINIPATH_IBCC_MAXPKTLEN_SHIFT;
1628 dd->ipath_ibcctrl = ibc;
1629 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1630 dd->ipath_ibcctrl);
1631 dd->ipath_f_tidtemplate(dd);
1632 }
1633
1634 ret = 0;
1635
1636bail:
1637 return ret;
1638}
1639
1640int ipath_set_lid(struct ipath_devdata *dd, u32 arg, u8 lmc)
1641{
1642 dd->ipath_lid = arg;
1643 dd->ipath_lmc = lmc;
1644
1645 return 0;
1646}
1647
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001648/**
1649 * ipath_read_kreg64_port - read a device's per-port 64-bit kernel register
1650 * @dd: the infinipath device
1651 * @regno: the register number to read
1652 * @port: the port containing the register
1653 *
1654 * Registers that vary with the chip implementation constants (port)
1655 * use this routine.
1656 */
1657u64 ipath_read_kreg64_port(const struct ipath_devdata *dd, ipath_kreg regno,
1658 unsigned port)
1659{
1660 u16 where;
1661
1662 if (port < dd->ipath_portcnt &&
1663 (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1664 regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1665 where = regno + port;
1666 else
1667 where = -1;
1668
1669 return ipath_read_kreg64(dd, where);
1670}
1671
1672/**
1673 * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
1674 * @dd: the infinipath device
1675 * @regno: the register number to write
1676 * @port: the port containing the register
1677 * @value: the value to write
1678 *
1679 * Registers that vary with the chip implementation constants (port)
1680 * use this routine.
1681 */
1682void ipath_write_kreg_port(const struct ipath_devdata *dd, ipath_kreg regno,
1683 unsigned port, u64 value)
1684{
1685 u16 where;
1686
1687 if (port < dd->ipath_portcnt &&
1688 (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1689 regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1690 where = regno + port;
1691 else
1692 where = -1;
1693
1694 ipath_write_kreg(dd, where, value);
1695}
1696
1697/**
1698 * ipath_shutdown_device - shut down a device
1699 * @dd: the infinipath device
1700 *
1701 * This is called to make the device quiet when we are about to
1702 * unload the driver, and also when the device is administratively
1703 * disabled. It does not free any data structures.
1704 * Everything it does has to be setup again by ipath_init_chip(dd,1)
1705 */
1706void ipath_shutdown_device(struct ipath_devdata *dd)
1707{
1708 u64 val;
1709
1710 ipath_dbg("Shutting down the device\n");
1711
1712 dd->ipath_flags |= IPATH_LINKUNK;
1713 dd->ipath_flags &= ~(IPATH_INITTED | IPATH_LINKDOWN |
1714 IPATH_LINKINIT | IPATH_LINKARMED |
1715 IPATH_LINKACTIVE);
1716 *dd->ipath_statusp &= ~(IPATH_STATUS_IB_CONF |
1717 IPATH_STATUS_IB_READY);
1718
1719 /* mask interrupts, but not errors */
1720 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
1721
1722 dd->ipath_rcvctrl = 0;
1723 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
1724 dd->ipath_rcvctrl);
1725
1726 /*
1727 * gracefully stop all sends allowing any in progress to trickle out
1728 * first.
1729 */
1730 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, 0ULL);
1731 /* flush it */
1732 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1733 /*
1734 * enough for anything that's going to trickle out to have actually
1735 * done so.
1736 */
1737 udelay(5);
1738
1739 /*
1740 * abort any armed or launched PIO buffers that didn't go. (self
1741 * clearing). Will cause any packet currently being transmitted to
1742 * go out with an EBP, and may also cause a short packet error on
1743 * the receiver.
1744 */
1745 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1746 INFINIPATH_S_ABORT);
1747
1748 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1749 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1750
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001751 /* disable IBC */
1752 dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
1753 ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
Bryan O'Sullivana40f55f2006-07-01 04:36:00 -07001754 dd->ipath_control | INFINIPATH_C_FREEZEMODE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001755
1756 /*
1757 * clear SerdesEnable and turn the leds off; do this here because
1758 * we are unloading, so don't count on interrupts to move along
1759 * Turn the LEDs off explictly for the same reason.
1760 */
1761 dd->ipath_f_quiet_serdes(dd);
1762 dd->ipath_f_setextled(dd, 0, 0);
1763
1764 if (dd->ipath_stats_timer_active) {
1765 del_timer_sync(&dd->ipath_stats_timer);
1766 dd->ipath_stats_timer_active = 0;
1767 }
1768
1769 /*
1770 * clear all interrupts and errors, so that the next time the driver
1771 * is loaded or device is enabled, we know that whatever is set
1772 * happened while we were unloaded
1773 */
1774 ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
1775 ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED);
1776 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
1777 ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
1778}
1779
1780/**
1781 * ipath_free_pddata - free a port's allocated data
1782 * @dd: the infinipath device
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001783 * @pd: the portdata structure
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001784 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001785 * free up any allocated data for a port
1786 * This should not touch anything that would affect a simultaneous
1787 * re-allocation of port data, because it is called after ipath_mutex
1788 * is released (and can be called from reinit as well).
1789 * It should never change any chip state, or global driver state.
1790 * (The only exception to global state is freeing the port0 port0_skbs.)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001791 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001792void ipath_free_pddata(struct ipath_devdata *dd, struct ipath_portdata *pd)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001793{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001794 if (!pd)
1795 return;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001796
1797 if (pd->port_rcvhdrq) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001798 ipath_cdbg(VERBOSE, "free closed port %d rcvhdrq @ %p "
1799 "(size=%lu)\n", pd->port_port, pd->port_rcvhdrq,
1800 (unsigned long) pd->port_rcvhdrq_size);
1801 dma_free_coherent(&dd->pcidev->dev, pd->port_rcvhdrq_size,
1802 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1803 pd->port_rcvhdrq = NULL;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001804 if (pd->port_rcvhdrtail_kvaddr) {
1805 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
1806 (void *)pd->port_rcvhdrtail_kvaddr,
1807 pd->port_rcvhdrqtailaddr_phys);
1808 pd->port_rcvhdrtail_kvaddr = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001809 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001810 }
1811 if (pd->port_port && pd->port_rcvegrbuf) {
1812 unsigned e;
1813
1814 for (e = 0; e < pd->port_rcvegrbuf_chunks; e++) {
1815 void *base = pd->port_rcvegrbuf[e];
1816 size_t size = pd->port_rcvegrbuf_size;
1817
1818 ipath_cdbg(VERBOSE, "egrbuf free(%p, %lu), "
1819 "chunk %u/%u\n", base,
1820 (unsigned long) size,
1821 e, pd->port_rcvegrbuf_chunks);
1822 dma_free_coherent(&dd->pcidev->dev, size,
1823 base, pd->port_rcvegrbuf_phys[e]);
1824 }
1825 vfree(pd->port_rcvegrbuf);
1826 pd->port_rcvegrbuf = NULL;
1827 vfree(pd->port_rcvegrbuf_phys);
1828 pd->port_rcvegrbuf_phys = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001829 pd->port_rcvegrbuf_chunks = 0;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001830 } else if (pd->port_port == 0 && dd->ipath_port0_skbs) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001831 unsigned e;
1832 struct sk_buff **skbs = dd->ipath_port0_skbs;
1833
1834 dd->ipath_port0_skbs = NULL;
1835 ipath_cdbg(VERBOSE, "free closed port %d ipath_port0_skbs "
1836 "@ %p\n", pd->port_port, skbs);
1837 for (e = 0; e < dd->ipath_rcvegrcnt; e++)
1838 if (skbs[e])
1839 dev_kfree_skb(skbs[e]);
1840 vfree(skbs);
1841 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001842 kfree(pd->port_tid_pg_list);
1843 kfree(pd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001844}
1845
Roland Dreierac2ae4c2006-04-19 11:40:12 -07001846static int __init infinipath_init(void)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001847{
1848 int ret;
1849
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -07001850 ipath_dbg(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001851
1852 /*
1853 * These must be called before the driver is registered with
1854 * the PCI subsystem.
1855 */
1856 idr_init(&unit_table);
1857 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
1858 ret = -ENOMEM;
1859 goto bail;
1860 }
1861
1862 ret = pci_register_driver(&ipath_driver);
1863 if (ret < 0) {
1864 printk(KERN_ERR IPATH_DRV_NAME
1865 ": Unable to register driver: error %d\n", -ret);
1866 goto bail_unit;
1867 }
1868
1869 ret = ipath_driver_create_group(&ipath_driver.driver);
1870 if (ret < 0) {
1871 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create driver "
1872 "sysfs entries: error %d\n", -ret);
1873 goto bail_pci;
1874 }
1875
1876 ret = ipath_init_ipathfs();
1877 if (ret < 0) {
1878 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
1879 "ipathfs: error %d\n", -ret);
1880 goto bail_group;
1881 }
1882
1883 goto bail;
1884
1885bail_group:
1886 ipath_driver_remove_group(&ipath_driver.driver);
1887
1888bail_pci:
1889 pci_unregister_driver(&ipath_driver);
1890
1891bail_unit:
1892 idr_destroy(&unit_table);
1893
1894bail:
1895 return ret;
1896}
1897
1898static void cleanup_device(struct ipath_devdata *dd)
1899{
1900 int port;
1901
1902 ipath_shutdown_device(dd);
1903
1904 if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
1905 /* can't do anything more with chip; needs re-init */
1906 *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
1907 if (dd->ipath_kregbase) {
1908 /*
1909 * if we haven't already cleaned up before these are
1910 * to ensure any register reads/writes "fail" until
1911 * re-init
1912 */
1913 dd->ipath_kregbase = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001914 dd->ipath_uregbase = 0;
1915 dd->ipath_sregbase = 0;
1916 dd->ipath_cregbase = 0;
1917 dd->ipath_kregsize = 0;
1918 }
1919 ipath_disable_wc(dd);
1920 }
1921
1922 if (dd->ipath_pioavailregs_dma) {
1923 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
1924 (void *) dd->ipath_pioavailregs_dma,
1925 dd->ipath_pioavailregs_phys);
1926 dd->ipath_pioavailregs_dma = NULL;
1927 }
Bryan O'Sullivan35783ec2006-07-01 04:36:15 -07001928 if (dd->ipath_dummy_hdrq) {
1929 dma_free_coherent(&dd->pcidev->dev,
1930 dd->ipath_pd[0]->port_rcvhdrq_size,
1931 dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
1932 dd->ipath_dummy_hdrq = NULL;
1933 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001934
1935 if (dd->ipath_pageshadow) {
1936 struct page **tmpp = dd->ipath_pageshadow;
1937 int i, cnt = 0;
1938
1939 ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
1940 "locked\n");
1941 for (port = 0; port < dd->ipath_cfgports; port++) {
1942 int port_tidbase = port * dd->ipath_rcvtidcnt;
1943 int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
1944 for (i = port_tidbase; i < maxtid; i++) {
1945 if (!tmpp[i])
1946 continue;
1947 ipath_release_user_pages(&tmpp[i], 1);
1948 tmpp[i] = NULL;
1949 cnt++;
1950 }
1951 }
1952 if (cnt) {
1953 ipath_stats.sps_pageunlocks += cnt;
1954 ipath_cdbg(VERBOSE, "There were still %u expTID "
1955 "entries locked\n", cnt);
1956 }
1957 if (ipath_stats.sps_pagelocks ||
1958 ipath_stats.sps_pageunlocks)
1959 ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
1960 "unlocked via ipath_m{un}lock\n",
1961 (unsigned long long)
1962 ipath_stats.sps_pagelocks,
1963 (unsigned long long)
1964 ipath_stats.sps_pageunlocks);
1965
1966 ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
1967 dd->ipath_pageshadow);
1968 vfree(dd->ipath_pageshadow);
1969 dd->ipath_pageshadow = NULL;
1970 }
1971
1972 /*
1973 * free any resources still in use (usually just kernel ports)
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001974 * at unload; we do for portcnt, not cfgports, because cfgports
1975 * could have changed while we were loaded.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001976 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001977 for (port = 0; port < dd->ipath_portcnt; port++) {
1978 struct ipath_portdata *pd = dd->ipath_pd[port];
1979 dd->ipath_pd[port] = NULL;
1980 ipath_free_pddata(dd, pd);
1981 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001982 kfree(dd->ipath_pd);
1983 /*
1984 * debuggability, in case some cleanup path tries to use it
1985 * after this
1986 */
1987 dd->ipath_pd = NULL;
1988}
1989
1990static void __exit infinipath_cleanup(void)
1991{
1992 struct ipath_devdata *dd, *tmp;
1993 unsigned long flags;
1994
1995 ipath_exit_ipathfs();
1996
1997 ipath_driver_remove_group(&ipath_driver.driver);
1998
1999 spin_lock_irqsave(&ipath_devs_lock, flags);
2000
2001 /*
2002 * turn off rcv, send, and interrupts for all ports, all drivers
2003 * should also hard reset the chip here?
2004 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
2005 * for all versions of the driver, if they were allocated
2006 */
2007 list_for_each_entry_safe(dd, tmp, &ipath_dev_list, ipath_list) {
2008 spin_unlock_irqrestore(&ipath_devs_lock, flags);
2009
2010 if (dd->ipath_kregbase)
2011 cleanup_device(dd);
2012
2013 if (dd->pcidev) {
2014 if (dd->pcidev->irq) {
2015 ipath_cdbg(VERBOSE,
2016 "unit %u free_irq of irq %x\n",
2017 dd->ipath_unit, dd->pcidev->irq);
2018 free_irq(dd->pcidev->irq, dd);
2019 } else
2020 ipath_dbg("irq is 0, not doing free_irq "
2021 "for unit %u\n", dd->ipath_unit);
Bryan O'Sullivanb0ff7c22006-05-23 11:32:33 -07002022
2023 /*
2024 * we check for NULL here, because it's outside
2025 * the kregbase check, and we need to call it
2026 * after the free_irq. Thus it's possible that
2027 * the function pointers were never initialized.
2028 */
2029 if (dd->ipath_f_cleanup)
2030 /* clean up chip-specific stuff */
2031 dd->ipath_f_cleanup(dd);
2032
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002033 dd->pcidev = NULL;
2034 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002035 spin_lock_irqsave(&ipath_devs_lock, flags);
2036 }
2037
2038 spin_unlock_irqrestore(&ipath_devs_lock, flags);
2039
2040 ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
2041 pci_unregister_driver(&ipath_driver);
2042
2043 idr_destroy(&unit_table);
2044}
2045
2046/**
2047 * ipath_reset_device - reset the chip if possible
2048 * @unit: the device to reset
2049 *
2050 * Whether or not reset is successful, we attempt to re-initialize the chip
2051 * (that is, much like a driver unload/reload). We clear the INITTED flag
2052 * so that the various entry points will fail until we reinitialize. For
2053 * now, we only allow this if no user ports are open that use chip resources
2054 */
2055int ipath_reset_device(int unit)
2056{
2057 int ret, i;
2058 struct ipath_devdata *dd = ipath_lookup(unit);
2059
2060 if (!dd) {
2061 ret = -ENODEV;
2062 goto bail;
2063 }
2064
2065 dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
2066
2067 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
2068 dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
2069 "not initialized or not present\n", unit);
2070 ret = -ENXIO;
2071 goto bail;
2072 }
2073
2074 if (dd->ipath_pd)
Bryan O'Sullivan23e86a42006-04-24 14:22:59 -07002075 for (i = 1; i < dd->ipath_cfgports; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002076 if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
2077 ipath_dbg("unit %u port %d is in use "
2078 "(PID %u cmd %s), can't reset\n",
2079 unit, i,
2080 dd->ipath_pd[i]->port_pid,
2081 dd->ipath_pd[i]->port_comm);
2082 ret = -EBUSY;
2083 goto bail;
2084 }
2085 }
2086
2087 dd->ipath_flags &= ~IPATH_INITTED;
2088 ret = dd->ipath_f_reset(dd);
2089 if (ret != 1)
2090 ipath_dbg("reset was not successful\n");
2091 ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2092 unit);
2093 ret = ipath_init_chip(dd, 1);
2094 if (ret)
2095 ipath_dev_err(dd, "Reinitialize unit %u after "
2096 "reset failed with %d\n", unit, ret);
2097 else
2098 dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
2099 "resetting\n", unit);
2100
2101bail:
2102 return ret;
2103}
2104
2105module_init(infinipath_init);
2106module_exit(infinipath_cleanup);