blob: 8b611796f33e04e520eb6d9ed5638417d262f40b [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
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -070067wait_queue_head_t ipath_state_wait;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080068
69unsigned ipath_debug = __IPATH_INFO;
70
71module_param_named(debug, ipath_debug, uint, S_IWUSR | S_IRUGO);
72MODULE_PARM_DESC(debug, "mask for debug prints");
73EXPORT_SYMBOL_GPL(ipath_debug);
74
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
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -080098static void __devexit ipath_remove_one(struct pci_dev *);
99static int __devinit ipath_init_one(struct pci_dev *,
100 const struct pci_device_id *);
101
102/* Only needed for registration, nothing else needs this info */
103#define PCI_VENDOR_ID_PATHSCALE 0x1fc1
104#define PCI_DEVICE_ID_INFINIPATH_HT 0xd
105#define PCI_DEVICE_ID_INFINIPATH_PE800 0x10
106
107static const struct pci_device_id ipath_pci_tbl[] = {
Roland Dreier6f4bb3d2006-05-12 14:57:52 -0700108 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_HT) },
109 { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_PE800) },
110 { 0, }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800111};
112
113MODULE_DEVICE_TABLE(pci, ipath_pci_tbl);
114
115static struct pci_driver ipath_driver = {
116 .name = IPATH_DRV_NAME,
117 .probe = ipath_init_one,
118 .remove = __devexit_p(ipath_remove_one),
119 .id_table = ipath_pci_tbl,
120};
121
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800122
123static inline void read_bars(struct ipath_devdata *dd, struct pci_dev *dev,
124 u32 *bar0, u32 *bar1)
125{
126 int ret;
127
128 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, bar0);
129 if (ret)
130 ipath_dev_err(dd, "failed to read bar0 before enable: "
131 "error %d\n", -ret);
132
133 ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, bar1);
134 if (ret)
135 ipath_dev_err(dd, "failed to read bar1 before enable: "
136 "error %d\n", -ret);
137
138 ipath_dbg("Read bar0 %x bar1 %x\n", *bar0, *bar1);
139}
140
141static void ipath_free_devdata(struct pci_dev *pdev,
142 struct ipath_devdata *dd)
143{
144 unsigned long flags;
145
146 pci_set_drvdata(pdev, NULL);
147
148 if (dd->ipath_unit != -1) {
149 spin_lock_irqsave(&ipath_devs_lock, flags);
150 idr_remove(&unit_table, dd->ipath_unit);
151 list_del(&dd->ipath_list);
152 spin_unlock_irqrestore(&ipath_devs_lock, flags);
153 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700154 vfree(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800155}
156
157static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
158{
159 unsigned long flags;
160 struct ipath_devdata *dd;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800161 int ret;
162
163 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
164 dd = ERR_PTR(-ENOMEM);
165 goto bail;
166 }
167
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700168 dd = vmalloc(sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800169 if (!dd) {
170 dd = ERR_PTR(-ENOMEM);
171 goto bail;
172 }
Bryan O'Sullivan06993ca2006-07-01 04:36:02 -0700173 memset(dd, 0, sizeof(*dd));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800174 dd->ipath_unit = -1;
175
176 spin_lock_irqsave(&ipath_devs_lock, flags);
177
178 ret = idr_get_new(&unit_table, dd, &dd->ipath_unit);
179 if (ret < 0) {
180 printk(KERN_ERR IPATH_DRV_NAME
181 ": Could not allocate unit ID: error %d\n", -ret);
182 ipath_free_devdata(pdev, dd);
183 dd = ERR_PTR(ret);
184 goto bail_unlock;
185 }
186
187 dd->pcidev = pdev;
188 pci_set_drvdata(pdev, dd);
189
190 list_add(&dd->ipath_list, &ipath_dev_list);
191
192bail_unlock:
193 spin_unlock_irqrestore(&ipath_devs_lock, flags);
194
195bail:
196 return dd;
197}
198
199static inline struct ipath_devdata *__ipath_lookup(int unit)
200{
201 return idr_find(&unit_table, unit);
202}
203
204struct ipath_devdata *ipath_lookup(int unit)
205{
206 struct ipath_devdata *dd;
207 unsigned long flags;
208
209 spin_lock_irqsave(&ipath_devs_lock, flags);
210 dd = __ipath_lookup(unit);
211 spin_unlock_irqrestore(&ipath_devs_lock, flags);
212
213 return dd;
214}
215
216int ipath_count_units(int *npresentp, int *nupp, u32 *maxportsp)
217{
218 int nunits, npresent, nup;
219 struct ipath_devdata *dd;
220 unsigned long flags;
221 u32 maxports;
222
223 nunits = npresent = nup = maxports = 0;
224
225 spin_lock_irqsave(&ipath_devs_lock, flags);
226
227 list_for_each_entry(dd, &ipath_dev_list, ipath_list) {
228 nunits++;
229 if ((dd->ipath_flags & IPATH_PRESENT) && dd->ipath_kregbase)
230 npresent++;
231 if (dd->ipath_lid &&
232 !(dd->ipath_flags & (IPATH_DISABLED | IPATH_LINKDOWN
233 | IPATH_LINKUNK)))
234 nup++;
235 if (dd->ipath_cfgports > maxports)
236 maxports = dd->ipath_cfgports;
237 }
238
239 spin_unlock_irqrestore(&ipath_devs_lock, flags);
240
241 if (npresentp)
242 *npresentp = npresent;
243 if (nupp)
244 *nupp = nup;
245 if (maxportsp)
246 *maxportsp = maxports;
247
248 return nunits;
249}
250
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800251/*
252 * These next two routines are placeholders in case we don't have per-arch
253 * code for controlling write combining. If explicit control of write
254 * combining is not available, performance will probably be awful.
255 */
256
257int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd)
258{
259 return -EOPNOTSUPP;
260}
261
262void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd)
263{
264}
265
266static int __devinit ipath_init_one(struct pci_dev *pdev,
267 const struct pci_device_id *ent)
268{
269 int ret, len, j;
270 struct ipath_devdata *dd;
271 unsigned long long addr;
272 u32 bar0 = 0, bar1 = 0;
273 u8 rev;
274
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800275 dd = ipath_alloc_devdata(pdev);
276 if (IS_ERR(dd)) {
277 ret = PTR_ERR(dd);
278 printk(KERN_ERR IPATH_DRV_NAME
279 ": Could not allocate devdata: error %d\n", -ret);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700280 goto bail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800281 }
282
283 ipath_cdbg(VERBOSE, "initializing unit #%u\n", dd->ipath_unit);
284
285 read_bars(dd, pdev, &bar0, &bar1);
286
287 ret = pci_enable_device(pdev);
288 if (ret) {
289 /* This can happen iff:
290 *
291 * We did a chip reset, and then failed to reprogram the
292 * BAR, or the chip reset due to an internal error. We then
293 * unloaded the driver and reloaded it.
294 *
295 * Both reset cases set the BAR back to initial state. For
296 * the latter case, the AER sticky error bit at offset 0x718
297 * should be set, but the Linux kernel doesn't yet know
298 * about that, it appears. If the original BAR was retained
299 * in the kernel data structures, this may be OK.
300 */
301 ipath_dev_err(dd, "enable unit %d failed: error %d\n",
302 dd->ipath_unit, -ret);
303 goto bail_devdata;
304 }
305 addr = pci_resource_start(pdev, 0);
306 len = pci_resource_len(pdev, 0);
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800307 ipath_cdbg(VERBOSE, "regbase (0) %llx len %d pdev->irq %d, vend %x/%x "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800308 "driver_data %lx\n", addr, len, pdev->irq, ent->vendor,
309 ent->device, ent->driver_data);
310
311 read_bars(dd, pdev, &bar0, &bar1);
312
313 if (!bar1 && !(bar0 & ~0xf)) {
314 if (addr) {
315 dev_info(&pdev->dev, "BAR is 0 (probable RESET), "
316 "rewriting as %llx\n", addr);
317 ret = pci_write_config_dword(
318 pdev, PCI_BASE_ADDRESS_0, addr);
319 if (ret) {
320 ipath_dev_err(dd, "rewrite of BAR0 "
321 "failed: err %d\n", -ret);
322 goto bail_disable;
323 }
324 ret = pci_write_config_dword(
325 pdev, PCI_BASE_ADDRESS_1, addr >> 32);
326 if (ret) {
327 ipath_dev_err(dd, "rewrite of BAR1 "
328 "failed: err %d\n", -ret);
329 goto bail_disable;
330 }
331 } else {
332 ipath_dev_err(dd, "BAR is 0 (probable RESET), "
333 "not usable until reboot\n");
334 ret = -ENODEV;
335 goto bail_disable;
336 }
337 }
338
339 ret = pci_request_regions(pdev, IPATH_DRV_NAME);
340 if (ret) {
341 dev_info(&pdev->dev, "pci_request_regions unit %u fails: "
342 "err %d\n", dd->ipath_unit, -ret);
343 goto bail_disable;
344 }
345
346 ret = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
347 if (ret) {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700348 /*
349 * if the 64 bit setup fails, try 32 bit. Some systems
350 * do not setup 64 bit maps on systems with 2GB or less
351 * memory installed.
352 */
353 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
354 if (ret) {
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700355 dev_info(&pdev->dev,
356 "Unable to set DMA mask for unit %u: %d\n",
357 dd->ipath_unit, ret);
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700358 goto bail_regions;
359 }
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700360 else {
Bryan O'Sullivan68dd43a2006-04-24 14:22:58 -0700361 ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
Bryan O'Sullivanb1d88652006-07-01 04:35:59 -0700362 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
363 if (ret)
364 dev_info(&pdev->dev,
365 "Unable to set DMA consistent mask "
366 "for unit %u: %d\n",
367 dd->ipath_unit, ret);
368
369 }
370 }
371 else {
372 ret = pci_set_consistent_dma_mask(pdev, DMA_64BIT_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);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800378 }
379
380 pci_set_master(pdev);
381
382 /*
383 * Save BARs to rewrite after device reset. Save all 64 bits of
384 * BAR, just in case.
385 */
386 dd->ipath_pcibar0 = addr;
387 dd->ipath_pcibar1 = addr >> 32;
388 dd->ipath_deviceid = ent->device; /* save for later use */
389 dd->ipath_vendorid = ent->vendor;
390
391 /* setup the chip-specific functions, as early as possible. */
392 switch (ent->device) {
393 case PCI_DEVICE_ID_INFINIPATH_HT:
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700394#ifdef CONFIG_HT_IRQ
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700395 ipath_init_iba6110_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800396 break;
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700397#else
398 ipath_dev_err(dd, "QLogic HT device 0x%x cannot work if "
399 "CONFIG_HT_IRQ is not enabled\n", ent->device);
400 return -ENODEV;
Bryan O'Sullivane757bef2006-11-16 01:19:19 -0800401#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800402 case PCI_DEVICE_ID_INFINIPATH_PE800:
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700403#ifdef CONFIG_PCI_MSI
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700404 ipath_init_iba6120_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800405 break;
Bryan O'Sullivan820054b2007-03-15 14:45:06 -0700406#else
407 ipath_dev_err(dd, "QLogic PCIE device 0x%x cannot work if "
408 "CONFIG_PCI_MSI is not enabled\n", ent->device);
409 return -ENODEV;
Bryan O'Sullivane757bef2006-11-16 01:19:19 -0800410#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800411 default:
Bryan O'Sullivan759d5762006-07-01 04:35:49 -0700412 ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800413 "failing\n", ent->device);
414 return -ENODEV;
415 }
416
417 for (j = 0; j < 6; j++) {
418 if (!pdev->resource[j].start)
419 continue;
Greg Kroah-Hartmane29419f2006-06-12 15:20:16 -0700420 ipath_cdbg(VERBOSE, "BAR %d start %llx, end %llx, len %llx\n",
421 j, (unsigned long long)pdev->resource[j].start,
422 (unsigned long long)pdev->resource[j].end,
423 (unsigned long long)pci_resource_len(pdev, j));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800424 }
425
426 if (!addr) {
427 ipath_dev_err(dd, "No valid address in BAR 0!\n");
428 ret = -ENODEV;
429 goto bail_regions;
430 }
431
432 dd->ipath_deviceid = ent->device; /* save for later use */
433 dd->ipath_vendorid = ent->vendor;
434
435 ret = pci_read_config_byte(pdev, PCI_REVISION_ID, &rev);
436 if (ret) {
437 ipath_dev_err(dd, "Failed to read PCI revision ID unit "
438 "%u: err %d\n", dd->ipath_unit, -ret);
439 goto bail_regions; /* shouldn't ever happen */
440 }
441 dd->ipath_pcirev = rev;
442
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700443#if defined(__powerpc__)
444 /* There isn't a generic way to specify writethrough mappings */
445 dd->ipath_kregbase = __ioremap(addr, len,
446 (_PAGE_NO_CACHE|_PAGE_WRITETHRU));
447#else
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800448 dd->ipath_kregbase = ioremap_nocache(addr, len);
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700449#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800450
451 if (!dd->ipath_kregbase) {
452 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
453 addr);
454 ret = -ENOMEM;
455 goto bail_iounmap;
456 }
457 dd->ipath_kregend = (u64 __iomem *)
458 ((void __iomem *)dd->ipath_kregbase + len);
459 dd->ipath_physaddr = addr; /* used for io_remap, etc. */
460 /* for user mmap */
Bryan O'Sullivanb35f0042006-07-01 04:35:59 -0700461 ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
462 addr, dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800463
464 /*
465 * clear ipath_flags here instead of in ipath_init_chip as it is set
466 * by ipath_setup_htconfig.
467 */
468 dd->ipath_flags = 0;
Bryan O'Sullivanfba75202006-07-01 04:36:09 -0700469 dd->ipath_lli_counter = 0;
470 dd->ipath_lli_errors = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800471
472 if (dd->ipath_f_bus(dd, pdev))
473 ipath_dev_err(dd, "Failed to setup config space; "
474 "continuing anyway\n");
475
476 /*
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700477 * set up our interrupt handler; IRQF_SHARED probably not needed,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800478 * since MSI interrupts shouldn't be shared but won't hurt for now.
479 * check 0 irq after we return from chip-specific bus setup, since
480 * that can affect this due to setup
481 */
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800482 if (!dd->ipath_irq)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800483 ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't "
484 "work\n");
485 else {
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800486 ret = request_irq(dd->ipath_irq, ipath_intr, IRQF_SHARED,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800487 IPATH_DRV_NAME, dd);
488 if (ret) {
489 ipath_dev_err(dd, "Couldn't setup irq handler, "
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800490 "irq=%d: %d\n", dd->ipath_irq, ret);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800491 goto bail_iounmap;
492 }
493 }
494
495 ret = ipath_init_chip(dd, 0); /* do the chip-specific init */
496 if (ret)
Arthur Jones7b196e22007-03-15 14:45:04 -0700497 goto bail_irqsetup;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800498
499 ret = ipath_enable_wc(dd);
500
501 if (ret) {
502 ipath_dev_err(dd, "Write combining not enabled "
503 "(err %d): performance may be poor\n",
504 -ret);
505 ret = 0;
506 }
507
508 ipath_device_create_group(&pdev->dev, dd);
509 ipathfs_add_device(dd);
510 ipath_user_add(dd);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700511 ipath_diag_add(dd);
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700512 ipath_register_ib_device(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800513
514 goto bail;
515
Arthur Jones7b196e22007-03-15 14:45:04 -0700516bail_irqsetup:
517 if (pdev->irq) free_irq(pdev->irq, dd);
518
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800519bail_iounmap:
520 iounmap((volatile void __iomem *) dd->ipath_kregbase);
521
522bail_regions:
523 pci_release_regions(pdev);
524
525bail_disable:
526 pci_disable_device(pdev);
527
528bail_devdata:
529 ipath_free_devdata(pdev, dd);
530
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800531bail:
532 return ret;
533}
534
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700535static void __devexit cleanup_device(struct ipath_devdata *dd)
536{
537 int port;
538
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700539 if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
540 /* can't do anything more with chip; needs re-init */
541 *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
542 if (dd->ipath_kregbase) {
543 /*
544 * if we haven't already cleaned up before these are
545 * to ensure any register reads/writes "fail" until
546 * re-init
547 */
548 dd->ipath_kregbase = NULL;
549 dd->ipath_uregbase = 0;
550 dd->ipath_sregbase = 0;
551 dd->ipath_cregbase = 0;
552 dd->ipath_kregsize = 0;
553 }
554 ipath_disable_wc(dd);
555 }
556
557 if (dd->ipath_pioavailregs_dma) {
558 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
559 (void *) dd->ipath_pioavailregs_dma,
560 dd->ipath_pioavailregs_phys);
561 dd->ipath_pioavailregs_dma = NULL;
562 }
563 if (dd->ipath_dummy_hdrq) {
564 dma_free_coherent(&dd->pcidev->dev,
565 dd->ipath_pd[0]->port_rcvhdrq_size,
566 dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
567 dd->ipath_dummy_hdrq = NULL;
568 }
569
570 if (dd->ipath_pageshadow) {
571 struct page **tmpp = dd->ipath_pageshadow;
572 dma_addr_t *tmpd = dd->ipath_physshadow;
573 int i, cnt = 0;
574
575 ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
576 "locked\n");
577 for (port = 0; port < dd->ipath_cfgports; port++) {
578 int port_tidbase = port * dd->ipath_rcvtidcnt;
579 int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
580 for (i = port_tidbase; i < maxtid; i++) {
581 if (!tmpp[i])
582 continue;
583 pci_unmap_page(dd->pcidev, tmpd[i],
584 PAGE_SIZE, PCI_DMA_FROMDEVICE);
585 ipath_release_user_pages(&tmpp[i], 1);
586 tmpp[i] = NULL;
587 cnt++;
588 }
589 }
590 if (cnt) {
591 ipath_stats.sps_pageunlocks += cnt;
592 ipath_cdbg(VERBOSE, "There were still %u expTID "
593 "entries locked\n", cnt);
594 }
595 if (ipath_stats.sps_pagelocks ||
596 ipath_stats.sps_pageunlocks)
597 ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
598 "unlocked via ipath_m{un}lock\n",
599 (unsigned long long)
600 ipath_stats.sps_pagelocks,
601 (unsigned long long)
602 ipath_stats.sps_pageunlocks);
603
604 ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
605 dd->ipath_pageshadow);
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700606 tmpp = dd->ipath_pageshadow;
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700607 dd->ipath_pageshadow = NULL;
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700608 vfree(tmpp);
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700609 }
610
611 /*
612 * free any resources still in use (usually just kernel ports)
613 * at unload; we do for portcnt, not cfgports, because cfgports
614 * could have changed while we were loaded.
615 */
616 for (port = 0; port < dd->ipath_portcnt; port++) {
617 struct ipath_portdata *pd = dd->ipath_pd[port];
618 dd->ipath_pd[port] = NULL;
619 ipath_free_pddata(dd, pd);
620 }
621 kfree(dd->ipath_pd);
622 /*
623 * debuggability, in case some cleanup path tries to use it
624 * after this
625 */
626 dd->ipath_pd = NULL;
627}
628
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800629static void __devexit ipath_remove_one(struct pci_dev *pdev)
630{
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700631 struct ipath_devdata *dd = pci_get_drvdata(pdev);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800632
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700633 ipath_cdbg(VERBOSE, "removing, pdev=%p, dd=%p\n", pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800634
Bryan O'Sullivan53c1d2c2007-03-15 14:45:11 -0700635 /*
636 * disable the IB link early, to be sure no new packets arrive, which
637 * complicates the shutdown process
638 */
639 ipath_shutdown_device(dd);
640
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700641 if (dd->verbs_dev)
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -0700642 ipath_unregister_ib_device(dd->verbs_dev);
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -0700643
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700644 ipath_diag_remove(dd);
645 ipath_user_remove(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800646 ipathfs_remove_device(dd);
647 ipath_device_remove_group(&pdev->dev, dd);
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700648
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800649 ipath_cdbg(VERBOSE, "Releasing pci memory regions, dd %p, "
650 "unit %u\n", dd, (u32) dd->ipath_unit);
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700651
652 cleanup_device(dd);
653
654 /*
655 * turn off rcv, send, and interrupts for all ports, all drivers
656 * should also hard reset the chip here?
657 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
658 * for all versions of the driver, if they were allocated
659 */
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800660 if (dd->ipath_irq) {
661 ipath_cdbg(VERBOSE, "unit %u free irq %d\n",
662 dd->ipath_unit, dd->ipath_irq);
663 dd->ipath_f_free_irq(dd);
Bryan O'Sullivan7227aac2006-09-28 09:00:16 -0700664 } else
665 ipath_dbg("irq is 0, not doing free_irq "
666 "for unit %u\n", dd->ipath_unit);
667 /*
668 * we check for NULL here, because it's outside
669 * the kregbase check, and we need to call it
670 * after the free_irq. Thus it's possible that
671 * the function pointers were never initialized.
672 */
673 if (dd->ipath_f_cleanup)
674 /* clean up chip-specific stuff */
675 dd->ipath_f_cleanup(dd);
676
677 ipath_cdbg(VERBOSE, "Unmapping kregbase %p\n", dd->ipath_kregbase);
678 iounmap((volatile void __iomem *) dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800679 pci_release_regions(pdev);
680 ipath_cdbg(VERBOSE, "calling pci_disable_device\n");
681 pci_disable_device(pdev);
682
683 ipath_free_devdata(pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800684}
685
686/* general driver use */
687DEFINE_MUTEX(ipath_mutex);
688
689static DEFINE_SPINLOCK(ipath_pioavail_lock);
690
691/**
692 * ipath_disarm_piobufs - cancel a range of PIO buffers
693 * @dd: the infinipath device
694 * @first: the first PIO buffer to cancel
695 * @cnt: the number of PIO buffers to cancel
696 *
697 * cancel a range of PIO buffers, used when they might be armed, but
698 * not triggered. Used at init to ensure buffer state, and also user
699 * process close, in case it died while writing to a PIO buffer
700 * Also after errors.
701 */
702void ipath_disarm_piobufs(struct ipath_devdata *dd, unsigned first,
703 unsigned cnt)
704{
705 unsigned i, last = first + cnt;
706 u64 sendctrl, sendorig;
707
708 ipath_cdbg(PKT, "disarm %u PIObufs first=%u\n", cnt, first);
Dave Olson93800682007-06-18 14:24:41 -0700709 sendorig = dd->ipath_sendctrl;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800710 for (i = first; i < last; i++) {
Dave Olson93800682007-06-18 14:24:41 -0700711 sendctrl = sendorig | INFINIPATH_S_DISARM |
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800712 (i << INFINIPATH_S_DISARMPIOBUF_SHIFT);
713 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
714 sendctrl);
715 }
716
717 /*
718 * Write it again with current value, in case ipath_sendctrl changed
719 * while we were looping; no critical bits that would require
720 * locking.
721 *
Dave Olson93800682007-06-18 14:24:41 -0700722 * disable PIOAVAILUPD, then re-enable, reading scratch in
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800723 * between. This seems to avoid a chip timing race that causes
724 * pioavail updates to memory to stop.
725 */
726 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
Dave Olson93800682007-06-18 14:24:41 -0700727 sendorig & ~IPATH_S_PIOBUFAVAILUPD);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800728 sendorig = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
729 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
730 dd->ipath_sendctrl);
731}
732
733/**
734 * ipath_wait_linkstate - wait for an IB link state change to occur
735 * @dd: the infinipath device
736 * @state: the state to wait for
737 * @msecs: the number of milliseconds to wait
738 *
739 * wait up to msecs milliseconds for IB link state change to occur for
740 * now, take the easy polling route. Currently used only by
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700741 * ipath_set_linkstate. Returns 0 if state reached, otherwise
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800742 * -ETIMEDOUT state can have multiple states set, for any of several
743 * transitions.
744 */
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700745static int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state,
746 int msecs)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800747{
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700748 dd->ipath_state_wanted = state;
749 wait_event_interruptible_timeout(ipath_state_wait,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800750 (dd->ipath_flags & state),
751 msecs_to_jiffies(msecs));
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700752 dd->ipath_state_wanted = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800753
754 if (!(dd->ipath_flags & state)) {
755 u64 val;
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700756 ipath_cdbg(VERBOSE, "Didn't reach linkstate %s within %u"
757 " ms\n",
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800758 /* test INIT ahead of DOWN, both can be set */
759 (state & IPATH_LINKINIT) ? "INIT" :
760 ((state & IPATH_LINKDOWN) ? "DOWN" :
761 ((state & IPATH_LINKARMED) ? "ARM" : "ACTIVE")),
762 msecs);
763 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
764 ipath_cdbg(VERBOSE, "ibcc=%llx ibcstatus=%llx (%s)\n",
765 (unsigned long long) ipath_read_kreg64(
766 dd, dd->ipath_kregs->kr_ibcctrl),
767 (unsigned long long) val,
768 ipath_ibcstatus_str[val & 0xf]);
769 }
770 return (dd->ipath_flags & state) ? 0 : -ETIMEDOUT;
771}
772
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700773/*
774 * Decode the error status into strings, deciding whether to always
775 * print * it or not depending on "normal packet errors" vs everything
776 * else. Return 1 if "real" errors, otherwise 0 if only packet
777 * errors, so caller can decide what to print with the string.
778 */
779int ipath_decode_err(char *buf, size_t blen, ipath_err_t err)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800780{
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700781 int iserr = 1;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800782 *buf = '\0';
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700783 if (err & INFINIPATH_E_PKTERRS) {
784 if (!(err & ~INFINIPATH_E_PKTERRS))
785 iserr = 0; // if only packet errors.
786 if (ipath_debug & __IPATH_ERRPKTDBG) {
787 if (err & INFINIPATH_E_REBP)
788 strlcat(buf, "EBP ", blen);
789 if (err & INFINIPATH_E_RVCRC)
790 strlcat(buf, "VCRC ", blen);
791 if (err & INFINIPATH_E_RICRC) {
792 strlcat(buf, "CRC ", blen);
793 // clear for check below, so only once
794 err &= INFINIPATH_E_RICRC;
795 }
796 if (err & INFINIPATH_E_RSHORTPKTLEN)
797 strlcat(buf, "rshortpktlen ", blen);
798 if (err & INFINIPATH_E_SDROPPEDDATAPKT)
799 strlcat(buf, "sdroppeddatapkt ", blen);
800 if (err & INFINIPATH_E_SPKTLEN)
801 strlcat(buf, "spktlen ", blen);
802 }
803 if ((err & INFINIPATH_E_RICRC) &&
804 !(err&(INFINIPATH_E_RVCRC|INFINIPATH_E_REBP)))
805 strlcat(buf, "CRC ", blen);
806 if (!iserr)
807 goto done;
808 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800809 if (err & INFINIPATH_E_RHDRLEN)
810 strlcat(buf, "rhdrlen ", blen);
811 if (err & INFINIPATH_E_RBADTID)
812 strlcat(buf, "rbadtid ", blen);
813 if (err & INFINIPATH_E_RBADVERSION)
814 strlcat(buf, "rbadversion ", blen);
815 if (err & INFINIPATH_E_RHDR)
816 strlcat(buf, "rhdr ", blen);
817 if (err & INFINIPATH_E_RLONGPKTLEN)
818 strlcat(buf, "rlongpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800819 if (err & INFINIPATH_E_RMAXPKTLEN)
820 strlcat(buf, "rmaxpktlen ", blen);
821 if (err & INFINIPATH_E_RMINPKTLEN)
822 strlcat(buf, "rminpktlen ", blen);
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700823 if (err & INFINIPATH_E_SMINPKTLEN)
824 strlcat(buf, "sminpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800825 if (err & INFINIPATH_E_RFORMATERR)
826 strlcat(buf, "rformaterr ", blen);
827 if (err & INFINIPATH_E_RUNSUPVL)
828 strlcat(buf, "runsupvl ", blen);
829 if (err & INFINIPATH_E_RUNEXPCHAR)
830 strlcat(buf, "runexpchar ", blen);
831 if (err & INFINIPATH_E_RIBFLOW)
832 strlcat(buf, "ribflow ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800833 if (err & INFINIPATH_E_SUNDERRUN)
834 strlcat(buf, "sunderrun ", blen);
835 if (err & INFINIPATH_E_SPIOARMLAUNCH)
836 strlcat(buf, "spioarmlaunch ", blen);
837 if (err & INFINIPATH_E_SUNEXPERRPKTNUM)
838 strlcat(buf, "sunexperrpktnum ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800839 if (err & INFINIPATH_E_SDROPPEDSMPPKT)
840 strlcat(buf, "sdroppedsmppkt ", blen);
841 if (err & INFINIPATH_E_SMAXPKTLEN)
842 strlcat(buf, "smaxpktlen ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800843 if (err & INFINIPATH_E_SUNSUPVL)
844 strlcat(buf, "sunsupVL ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800845 if (err & INFINIPATH_E_INVALIDADDR)
846 strlcat(buf, "invalidaddr ", blen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800847 if (err & INFINIPATH_E_RRCVEGRFULL)
848 strlcat(buf, "rcvegrfull ", blen);
849 if (err & INFINIPATH_E_RRCVHDRFULL)
850 strlcat(buf, "rcvhdrfull ", blen);
851 if (err & INFINIPATH_E_IBSTATUSCHANGED)
852 strlcat(buf, "ibcstatuschg ", blen);
853 if (err & INFINIPATH_E_RIBLOSTLINK)
854 strlcat(buf, "riblostlink ", blen);
855 if (err & INFINIPATH_E_HARDWARE)
856 strlcat(buf, "hardware ", blen);
857 if (err & INFINIPATH_E_RESET)
858 strlcat(buf, "reset ", blen);
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700859done:
860 return iserr;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800861}
862
863/**
864 * get_rhf_errstring - decode RHF errors
865 * @err: the err number
866 * @msg: the output buffer
867 * @len: the length of the output buffer
868 *
869 * only used one place now, may want more later
870 */
871static void get_rhf_errstring(u32 err, char *msg, size_t len)
872{
873 /* if no errors, and so don't need to check what's first */
874 *msg = '\0';
875
876 if (err & INFINIPATH_RHF_H_ICRCERR)
877 strlcat(msg, "icrcerr ", len);
878 if (err & INFINIPATH_RHF_H_VCRCERR)
879 strlcat(msg, "vcrcerr ", len);
880 if (err & INFINIPATH_RHF_H_PARITYERR)
881 strlcat(msg, "parityerr ", len);
882 if (err & INFINIPATH_RHF_H_LENERR)
883 strlcat(msg, "lenerr ", len);
884 if (err & INFINIPATH_RHF_H_MTUERR)
885 strlcat(msg, "mtuerr ", len);
886 if (err & INFINIPATH_RHF_H_IHDRERR)
887 /* infinipath hdr checksum error */
888 strlcat(msg, "ipathhdrerr ", len);
889 if (err & INFINIPATH_RHF_H_TIDERR)
890 strlcat(msg, "tiderr ", len);
891 if (err & INFINIPATH_RHF_H_MKERR)
892 /* bad port, offset, etc. */
893 strlcat(msg, "invalid ipathhdr ", len);
894 if (err & INFINIPATH_RHF_H_IBERR)
895 strlcat(msg, "iberr ", len);
896 if (err & INFINIPATH_RHF_L_SWA)
897 strlcat(msg, "swA ", len);
898 if (err & INFINIPATH_RHF_L_SWB)
899 strlcat(msg, "swB ", len);
900}
901
902/**
903 * ipath_get_egrbuf - get an eager buffer
904 * @dd: the infinipath device
905 * @bufnum: the eager buffer to get
906 * @err: unused
907 *
908 * must only be called if ipath_pd[port] is known to be allocated
909 */
910static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum,
911 int err)
912{
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700913 return dd->ipath_port0_skbinfo ?
914 (void *) dd->ipath_port0_skbinfo[bufnum].skb->data : NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800915}
916
917/**
918 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
919 * @dd: the infinipath device
920 * @gfp_mask: the sk_buff SFP mask
921 */
922struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd,
923 gfp_t gfp_mask)
924{
925 struct sk_buff *skb;
926 u32 len;
927
928 /*
929 * Only fully supported way to handle this is to allocate lots
930 * extra, align as needed, and then do skb_reserve(). That wastes
931 * a lot of memory... I'll have to hack this into infinipath_copy
932 * also.
933 */
934
935 /*
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700936 * We need 2 extra bytes for ipath_ether data sent in the
937 * key header. In order to keep everything dword aligned,
938 * we'll reserve 4 bytes.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800939 */
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700940 len = dd->ipath_ibmaxlen + 4;
941
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800942 if (dd->ipath_flags & IPATH_4BYTE_TID) {
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700943 /* We need a 2KB multiple alignment, and there is no way
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800944 * to do it except to allocate extra and then skb_reserve
945 * enough to bring it up to the right alignment.
946 */
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700947 len += 2047;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800948 }
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700949
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800950 skb = __dev_alloc_skb(len, gfp_mask);
951 if (!skb) {
952 ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
953 len);
954 goto bail;
955 }
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700956
957 skb_reserve(skb, 4);
958
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800959 if (dd->ipath_flags & IPATH_4BYTE_TID) {
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700960 u32 una = (unsigned long)skb->data & 2047;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800961 if (una)
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700962 skb_reserve(skb, 2048 - una);
963 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800964
965bail:
966 return skb;
967}
968
Ralph Campbell3d37b9e2006-07-17 18:18:36 -0700969static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
970 u32 eflags,
971 u32 l,
972 u32 etail,
973 u64 *rc)
974{
975 char emsg[128];
976 struct ipath_message_header *hdr;
977
978 get_rhf_errstring(eflags, emsg, sizeof emsg);
979 hdr = (struct ipath_message_header *)&rc[1];
980 ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
981 "tlen=%x opcode=%x egridx=%x: %s\n",
982 eflags, l,
983 ipath_hdrget_rcv_type((__le32 *) rc),
984 ipath_hdrget_length_in_bytes((__le32 *) rc),
985 be32_to_cpu(hdr->bth[0]) >> 24,
986 etail, emsg);
987
988 /* Count local link integrity errors. */
989 if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
990 u8 n = (dd->ipath_ibcctrl >>
991 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
992 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
993
994 if (++dd->ipath_lli_counter > n) {
995 dd->ipath_lli_counter = 0;
996 dd->ipath_lli_errors++;
997 }
998 }
999}
1000
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001001/*
1002 * ipath_kreceive - receive a packet
1003 * @dd: the infinipath device
1004 *
1005 * called from interrupt handler for errors or receive interrupt
1006 */
1007void ipath_kreceive(struct ipath_devdata *dd)
1008{
1009 u64 *rc;
1010 void *ebuf;
1011 const u32 rsize = dd->ipath_rcvhdrentsize; /* words */
1012 const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
1013 u32 etail = -1, l, hdrqtail;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001014 struct ipath_message_header *hdr;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001015 u32 eflags, i, etype, tlen, pkttot = 0, updegr=0, reloop=0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001016 static u64 totcalls; /* stats, may eventually remove */
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001017
1018 if (!dd->ipath_hdrqtailptr) {
1019 ipath_dev_err(dd,
1020 "hdrqtailptr not set, can't do receives\n");
1021 goto bail;
1022 }
1023
1024 /* There is already a thread processing this queue. */
1025 if (test_and_set_bit(0, &dd->ipath_rcv_pending))
1026 goto bail;
1027
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001028 l = dd->ipath_port0head;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001029 hdrqtail = (u32) le64_to_cpu(*dd->ipath_hdrqtailptr);
1030 if (l == hdrqtail)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001031 goto done;
1032
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001033reloop:
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001034 for (i = 0; l != hdrqtail; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001035 u32 qp;
1036 u8 *bthbytes;
1037
1038 rc = (u64 *) (dd->ipath_pd[0]->port_rcvhdrq + (l << 2));
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001039 hdr = (struct ipath_message_header *)&rc[1];
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001040 /*
1041 * could make a network order version of IPATH_KD_QP, and
1042 * do the obvious shift before masking to speed this up.
1043 */
1044 qp = ntohl(hdr->bth[1]) & 0xffffff;
1045 bthbytes = (u8 *) hdr->bth;
1046
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001047 eflags = ipath_hdrget_err_flags((__le32 *) rc);
1048 etype = ipath_hdrget_rcv_type((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001049 /* total length */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001050 tlen = ipath_hdrget_length_in_bytes((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001051 ebuf = NULL;
1052 if (etype != RCVHQ_RCV_TYPE_EXPECTED) {
1053 /*
1054 * it turns out that the chips uses an eager buffer
1055 * for all non-expected packets, whether it "needs"
1056 * one or not. So always get the index, but don't
1057 * set ebuf (so we try to copy data) unless the
1058 * length requires it.
1059 */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001060 etail = ipath_hdrget_index((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001061 if (tlen > sizeof(*hdr) ||
1062 etype == RCVHQ_RCV_TYPE_NON_KD)
1063 ebuf = ipath_get_egrbuf(dd, etail, 0);
1064 }
1065
1066 /*
1067 * both tiderr and ipathhdrerr are set for all plain IB
1068 * packets; only ipathhdrerr should be set.
1069 */
1070
1071 if (etype != RCVHQ_RCV_TYPE_NON_KD && etype !=
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001072 RCVHQ_RCV_TYPE_ERROR && ipath_hdrget_ipath_ver(
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001073 hdr->iph.ver_port_tid_offset) !=
1074 IPS_PROTO_VERSION) {
1075 ipath_cdbg(PKT, "Bad InfiniPath protocol version "
1076 "%x\n", etype);
1077 }
1078
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001079 if (unlikely(eflags))
1080 ipath_rcv_hdrerr(dd, eflags, l, etail, rc);
1081 else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001082 ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
1083 if (dd->ipath_lli_counter)
1084 dd->ipath_lli_counter--;
1085 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
1086 "qp=%x), len %x; ignored\n",
1087 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001088 }
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001089 else if (etype == RCVHQ_RCV_TYPE_EAGER)
1090 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
1091 "qp=%x), len %x; ignored\n",
1092 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001093 else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
1094 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
1095 be32_to_cpu(hdr->bth[0]) & 0xff);
Ralph Campbell3d37b9e2006-07-17 18:18:36 -07001096 else {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001097 /*
1098 * error packet, type of error unknown.
1099 * Probably type 3, but we don't know, so don't
1100 * even try to print the opcode, etc.
1101 */
1102 ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
1103 "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
1104 "hdr %llx %llx %llx %llx %llx\n",
1105 etail, tlen, (unsigned long) rc, l,
1106 (unsigned long long) rc[0],
1107 (unsigned long long) rc[1],
1108 (unsigned long long) rc[2],
1109 (unsigned long long) rc[3],
1110 (unsigned long long) rc[4],
1111 (unsigned long long) rc[5]);
1112 }
1113 l += rsize;
1114 if (l >= maxcnt)
1115 l = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001116 if (etype != RCVHQ_RCV_TYPE_EXPECTED)
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001117 updegr = 1;
1118 /*
1119 * update head regs on last packet, and every 16 packets.
1120 * Reduce bus traffic, while still trying to prevent
1121 * rcvhdrq overflows, for when the queue is nearly full
1122 */
1123 if (l == hdrqtail || (i && !(i&0xf))) {
1124 u64 lval;
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -07001125 if (l == hdrqtail)
1126 /* request IBA6120 interrupt only on last */
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001127 lval = dd->ipath_rhdrhead_intr_off | l;
1128 else
1129 lval = l;
1130 (void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
1131 if (updegr) {
1132 (void)ipath_write_ureg(dd, ur_rcvegrindexhead,
1133 etail, 0);
1134 updegr = 0;
1135 }
1136 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001137 }
1138
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001139 if (!dd->ipath_rhdrhead_intr_off && !reloop) {
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -07001140 /* IBA6110 workaround; we can have a race clearing chip
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001141 * interrupt with another interrupt about to be delivered,
1142 * and can clear it before it is delivered on the GPIO
1143 * workaround. By doing the extra check here for the
1144 * in-memory tail register updating while we were doing
1145 * earlier packets, we "almost" guarantee we have covered
1146 * that case.
1147 */
1148 u32 hqtail = (u32)le64_to_cpu(*dd->ipath_hdrqtailptr);
1149 if (hqtail != hdrqtail) {
1150 hdrqtail = hqtail;
1151 reloop = 1; /* loop 1 extra time at most */
1152 goto reloop;
1153 }
1154 }
1155
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001156 pkttot += i;
1157
1158 dd->ipath_port0head = l;
1159
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001160 if (pkttot > ipath_stats.sps_maxpkts_call)
1161 ipath_stats.sps_maxpkts_call = pkttot;
1162 ipath_stats.sps_port0pkts += pkttot;
1163 ipath_stats.sps_avgpkts_call =
1164 ipath_stats.sps_port0pkts / ++totcalls;
1165
1166done:
1167 clear_bit(0, &dd->ipath_rcv_pending);
1168 smp_mb__after_clear_bit();
1169
1170bail:;
1171}
1172
1173/**
1174 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1175 * @dd: the infinipath device
1176 *
1177 * called whenever our local copy indicates we have run out of send buffers
1178 * NOTE: This can be called from interrupt context by some code
1179 * and from non-interrupt context by ipath_getpiobuf().
1180 */
1181
1182static void ipath_update_pio_bufs(struct ipath_devdata *dd)
1183{
1184 unsigned long flags;
1185 int i;
1186 const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
1187
1188 /* If the generation (check) bits have changed, then we update the
1189 * busy bit for the corresponding PIO buffer. This algorithm will
1190 * modify positions to the value they already have in some cases
1191 * (i.e., no change), but it's faster than changing only the bits
1192 * that have changed.
1193 *
1194 * We would like to do this atomicly, to avoid spinlocks in the
1195 * critical send path, but that's not really possible, given the
1196 * type of changes, and that this routine could be called on
1197 * multiple cpu's simultaneously, so we lock in this routine only,
1198 * to avoid conflicting updates; all we change is the shadow, and
1199 * it's a single 64 bit memory location, so by definition the update
1200 * is atomic in terms of what other cpu's can see in testing the
1201 * bits. The spin_lock overhead isn't too bad, since it only
1202 * happens when all buffers are in use, so only cpu overhead, not
1203 * latency or bandwidth is affected.
1204 */
1205#define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
1206 if (!dd->ipath_pioavailregs_dma) {
1207 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1208 return;
1209 }
1210 if (ipath_debug & __IPATH_VERBDBG) {
1211 /* only if packet debug and verbose */
1212 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1213 unsigned long *shadow = dd->ipath_pioavailshadow;
1214
1215 ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
1216 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1217 "s3=%lx\n",
1218 (unsigned long long) le64_to_cpu(dma[0]),
1219 shadow[0],
1220 (unsigned long long) le64_to_cpu(dma[1]),
1221 shadow[1],
1222 (unsigned long long) le64_to_cpu(dma[2]),
1223 shadow[2],
1224 (unsigned long long) le64_to_cpu(dma[3]),
1225 shadow[3]);
1226 if (piobregs > 4)
1227 ipath_cdbg(
1228 PKT, "2nd group, dma4=%llx shad4=%lx, "
1229 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1230 "d7=%llx s7=%lx\n",
1231 (unsigned long long) le64_to_cpu(dma[4]),
1232 shadow[4],
1233 (unsigned long long) le64_to_cpu(dma[5]),
1234 shadow[5],
1235 (unsigned long long) le64_to_cpu(dma[6]),
1236 shadow[6],
1237 (unsigned long long) le64_to_cpu(dma[7]),
1238 shadow[7]);
1239 }
1240 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1241 for (i = 0; i < piobregs; i++) {
1242 u64 pchbusy, pchg, piov, pnew;
1243 /*
1244 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1245 */
1246 if (i > 3) {
1247 if (i & 1)
1248 piov = le64_to_cpu(
1249 dd->ipath_pioavailregs_dma[i - 1]);
1250 else
1251 piov = le64_to_cpu(
1252 dd->ipath_pioavailregs_dma[i + 1]);
1253 } else
1254 piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
1255 pchg = _IPATH_ALL_CHECKBITS &
1256 ~(dd->ipath_pioavailshadow[i] ^ piov);
1257 pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
1258 if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
1259 pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
1260 pnew |= piov & pchbusy;
1261 dd->ipath_pioavailshadow[i] = pnew;
1262 }
1263 }
1264 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1265}
1266
1267/**
1268 * ipath_setrcvhdrsize - set the receive header size
1269 * @dd: the infinipath device
1270 * @rhdrsize: the receive header size
1271 *
1272 * called from user init code, and also layered driver init
1273 */
1274int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
1275{
1276 int ret = 0;
1277
1278 if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
1279 if (dd->ipath_rcvhdrsize != rhdrsize) {
1280 dev_info(&dd->pcidev->dev,
1281 "Error: can't set protocol header "
1282 "size %u, already %u\n",
1283 rhdrsize, dd->ipath_rcvhdrsize);
1284 ret = -EAGAIN;
1285 } else
1286 ipath_cdbg(VERBOSE, "Reuse same protocol header "
1287 "size %u\n", dd->ipath_rcvhdrsize);
1288 } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
1289 (sizeof(u64) / sizeof(u32)))) {
1290 ipath_dbg("Error: can't set protocol header size %u "
1291 "(> max %u)\n", rhdrsize,
1292 dd->ipath_rcvhdrentsize -
1293 (u32) (sizeof(u64) / sizeof(u32)));
1294 ret = -EOVERFLOW;
1295 } else {
1296 dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
1297 dd->ipath_rcvhdrsize = rhdrsize;
1298 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
1299 dd->ipath_rcvhdrsize);
1300 ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
1301 dd->ipath_rcvhdrsize);
1302 }
1303 return ret;
1304}
1305
1306/**
1307 * ipath_getpiobuf - find an available pio buffer
1308 * @dd: the infinipath device
1309 * @pbufnum: the buffer number is placed here
1310 *
1311 * do appropriate marking as busy, etc.
1312 * returns buffer number if one found (>=0), negative number is error.
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001313 * Used by ipath_layer_send
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001314 */
1315u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 * pbufnum)
1316{
1317 int i, j, starti, updated = 0;
1318 unsigned piobcnt, iter;
1319 unsigned long flags;
1320 unsigned long *shadow = dd->ipath_pioavailshadow;
1321 u32 __iomem *buf;
1322
1323 piobcnt = (unsigned)(dd->ipath_piobcnt2k
1324 + dd->ipath_piobcnt4k);
1325 starti = dd->ipath_lastport_piobuf;
1326 iter = piobcnt - starti;
1327 if (dd->ipath_upd_pio_shadow) {
1328 /*
1329 * Minor optimization. If we had no buffers on last call,
1330 * start out by doing the update; continue and do scan even
1331 * if no buffers were updated, to be paranoid
1332 */
1333 ipath_update_pio_bufs(dd);
1334 /* we scanned here, don't do it at end of scan */
1335 updated = 1;
1336 i = starti;
1337 } else
1338 i = dd->ipath_lastpioindex;
1339
1340rescan:
1341 /*
1342 * while test_and_set_bit() is atomic, we do that and then the
1343 * change_bit(), and the pair is not. See if this is the cause
1344 * of the remaining armlaunch errors.
1345 */
1346 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1347 for (j = 0; j < iter; j++, i++) {
1348 if (i >= piobcnt)
1349 i = starti;
1350 /*
1351 * To avoid bus lock overhead, we first find a candidate
1352 * buffer, then do the test and set, and continue if that
1353 * fails.
1354 */
1355 if (test_bit((2 * i) + 1, shadow) ||
1356 test_and_set_bit((2 * i) + 1, shadow))
1357 continue;
1358 /* flip generation bit */
1359 change_bit(2 * i, shadow);
1360 break;
1361 }
1362 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1363
1364 if (j == iter) {
1365 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1366
1367 /*
1368 * first time through; shadow exhausted, but may be real
1369 * buffers available, so go see; if any updated, rescan
1370 * (once)
1371 */
1372 if (!updated) {
1373 ipath_update_pio_bufs(dd);
1374 updated = 1;
1375 i = starti;
1376 goto rescan;
1377 }
1378 dd->ipath_upd_pio_shadow = 1;
1379 /*
1380 * not atomic, but if we lose one once in a while, that's OK
1381 */
1382 ipath_stats.sps_nopiobufs++;
1383 if (!(++dd->ipath_consec_nopiobuf % 100000)) {
1384 ipath_dbg(
1385 "%u pio sends with no bufavail; dmacopy: "
1386 "%llx %llx %llx %llx; shadow: "
1387 "%lx %lx %lx %lx\n",
1388 dd->ipath_consec_nopiobuf,
1389 (unsigned long long) le64_to_cpu(dma[0]),
1390 (unsigned long long) le64_to_cpu(dma[1]),
1391 (unsigned long long) le64_to_cpu(dma[2]),
1392 (unsigned long long) le64_to_cpu(dma[3]),
1393 shadow[0], shadow[1], shadow[2],
1394 shadow[3]);
1395 /*
1396 * 4 buffers per byte, 4 registers above, cover rest
1397 * below
1398 */
1399 if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
1400 (sizeof(shadow[0]) * 4 * 4))
1401 ipath_dbg("2nd group: dmacopy: %llx %llx "
1402 "%llx %llx; shadow: %lx %lx "
1403 "%lx %lx\n",
1404 (unsigned long long)
1405 le64_to_cpu(dma[4]),
1406 (unsigned long long)
1407 le64_to_cpu(dma[5]),
1408 (unsigned long long)
1409 le64_to_cpu(dma[6]),
1410 (unsigned long long)
1411 le64_to_cpu(dma[7]),
1412 shadow[4], shadow[5],
1413 shadow[6], shadow[7]);
1414 }
1415 buf = NULL;
1416 goto bail;
1417 }
1418
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001419 /*
1420 * set next starting place. Since it's just an optimization,
1421 * it doesn't matter who wins on this, so no locking
1422 */
1423 dd->ipath_lastpioindex = i + 1;
1424 if (dd->ipath_upd_pio_shadow)
1425 dd->ipath_upd_pio_shadow = 0;
1426 if (dd->ipath_consec_nopiobuf)
1427 dd->ipath_consec_nopiobuf = 0;
1428 if (i < dd->ipath_piobcnt2k)
1429 buf = (u32 __iomem *) (dd->ipath_pio2kbase +
1430 i * dd->ipath_palign);
1431 else
1432 buf = (u32 __iomem *)
1433 (dd->ipath_pio4kbase +
1434 (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
1435 ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
1436 i, (i < dd->ipath_piobcnt2k) ? 2 : 4, buf);
1437 if (pbufnum)
1438 *pbufnum = i;
1439
1440bail:
1441 return buf;
1442}
1443
1444/**
1445 * ipath_create_rcvhdrq - create a receive header queue
1446 * @dd: the infinipath device
1447 * @pd: the port data
1448 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001449 * this must be contiguous memory (from an i/o perspective), and must be
1450 * DMA'able (which means for some systems, it will go through an IOMMU,
1451 * or be forced into a low address range).
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001452 */
1453int ipath_create_rcvhdrq(struct ipath_devdata *dd,
1454 struct ipath_portdata *pd)
1455{
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001456 int ret = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001457
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001458 if (!pd->port_rcvhdrq) {
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001459 dma_addr_t phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001460 gfp_t gfp_flags = GFP_USER | __GFP_COMP;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001461 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
1462 sizeof(u32), PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001463
1464 pd->port_rcvhdrq = dma_alloc_coherent(
1465 &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
1466 gfp_flags);
1467
1468 if (!pd->port_rcvhdrq) {
1469 ipath_dev_err(dd, "attempt to allocate %d bytes "
1470 "for port %u rcvhdrq failed\n",
1471 amt, pd->port_port);
1472 ret = -ENOMEM;
1473 goto bail;
1474 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001475 pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
1476 &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail, GFP_KERNEL);
1477 if (!pd->port_rcvhdrtail_kvaddr) {
1478 ipath_dev_err(dd, "attempt to allocate 1 page "
1479 "for port %u rcvhdrqtailaddr failed\n",
1480 pd->port_port);
1481 ret = -ENOMEM;
Bryan O'Sullivan221e3192006-09-28 08:59:58 -07001482 dma_free_coherent(&dd->pcidev->dev, amt,
1483 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1484 pd->port_rcvhdrq = NULL;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001485 goto bail;
1486 }
1487 pd->port_rcvhdrqtailaddr_phys = phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001488
1489 pd->port_rcvhdrq_size = amt;
1490
1491 ipath_cdbg(VERBOSE, "%d pages at %p (phys %lx) size=%lu "
1492 "for port %u rcvhdr Q\n",
1493 amt >> PAGE_SHIFT, pd->port_rcvhdrq,
1494 (unsigned long) pd->port_rcvhdrq_phys,
1495 (unsigned long) pd->port_rcvhdrq_size,
1496 pd->port_port);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001497
1498 ipath_cdbg(VERBOSE, "port %d hdrtailaddr, %llx physical\n",
1499 pd->port_port,
1500 (unsigned long long) phys_hdrqtail);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001501 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001502 else
1503 ipath_cdbg(VERBOSE, "reuse port %d rcvhdrq @%p %llx phys; "
1504 "hdrtailaddr@%p %llx physical\n",
1505 pd->port_port, pd->port_rcvhdrq,
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07001506 (unsigned long long) pd->port_rcvhdrq_phys,
1507 pd->port_rcvhdrtail_kvaddr, (unsigned long long)
1508 pd->port_rcvhdrqtailaddr_phys);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001509
1510 /* clear for security and sanity on each use */
1511 memset(pd->port_rcvhdrq, 0, pd->port_rcvhdrq_size);
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07001512 memset(pd->port_rcvhdrtail_kvaddr, 0, PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001513
1514 /*
1515 * tell chip each time we init it, even if we are re-using previous
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001516 * memory (we zero the register at process close)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001517 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001518 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdrtailaddr,
1519 pd->port_port, pd->port_rcvhdrqtailaddr_phys);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001520 ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdraddr,
1521 pd->port_port, pd->port_rcvhdrq_phys);
1522
1523 ret = 0;
1524bail:
1525 return ret;
1526}
1527
1528int ipath_waitfor_complete(struct ipath_devdata *dd, ipath_kreg reg_id,
1529 u64 bits_to_wait_for, u64 * valp)
1530{
1531 unsigned long timeout;
1532 u64 lastval, val;
1533 int ret;
1534
1535 lastval = ipath_read_kreg64(dd, reg_id);
1536 /* wait a ridiculously long time */
1537 timeout = jiffies + msecs_to_jiffies(5);
1538 do {
1539 val = ipath_read_kreg64(dd, reg_id);
1540 /* set so they have something, even on failures. */
1541 *valp = val;
1542 if ((val & bits_to_wait_for) == bits_to_wait_for) {
1543 ret = 0;
1544 break;
1545 }
1546 if (val != lastval)
1547 ipath_cdbg(VERBOSE, "Changed from %llx to %llx, "
1548 "waiting for %llx bits\n",
1549 (unsigned long long) lastval,
1550 (unsigned long long) val,
1551 (unsigned long long) bits_to_wait_for);
1552 cond_resched();
1553 if (time_after(jiffies, timeout)) {
1554 ipath_dbg("Didn't get bits %llx in register 0x%x, "
1555 "got %llx\n",
1556 (unsigned long long) bits_to_wait_for,
1557 reg_id, (unsigned long long) *valp);
1558 ret = -ENODEV;
1559 break;
1560 }
1561 } while (1);
1562
1563 return ret;
1564}
1565
1566/**
1567 * ipath_waitfor_mdio_cmdready - wait for last command to complete
1568 * @dd: the infinipath device
1569 *
1570 * Like ipath_waitfor_complete(), but we wait for the CMDVALID bit to go
1571 * away indicating the last command has completed. It doesn't return data
1572 */
1573int ipath_waitfor_mdio_cmdready(struct ipath_devdata *dd)
1574{
1575 unsigned long timeout;
1576 u64 val;
1577 int ret;
1578
1579 /* wait a ridiculously long time */
1580 timeout = jiffies + msecs_to_jiffies(5);
1581 do {
1582 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_mdio);
1583 if (!(val & IPATH_MDIO_CMDVALID)) {
1584 ret = 0;
1585 break;
1586 }
1587 cond_resched();
1588 if (time_after(jiffies, timeout)) {
1589 ipath_dbg("CMDVALID stuck in mdio reg? (%llx)\n",
1590 (unsigned long long) val);
1591 ret = -ENODEV;
1592 break;
1593 }
1594 } while (1);
1595
1596 return ret;
1597}
1598
Dave Olson93800682007-06-18 14:24:41 -07001599
1600/*
1601 * Flush all sends that might be in the ready to send state, as well as any
1602 * that are in the process of being sent. Used whenever we need to be
1603 * sure the send side is idle. Cleans up all buffer state by canceling
1604 * all pio buffers, and issuing an abort, which cleans up anything in the
1605 * launch fifo. The cancel is superfluous on some chip versions, but
1606 * it's safer to always do it.
1607 * PIOAvail bits are updated by the chip as if normal send had happened.
1608 */
1609void ipath_cancel_sends(struct ipath_devdata *dd)
1610{
1611 ipath_dbg("Cancelling all in-progress send buffers\n");
1612 dd->ipath_lastcancel = jiffies+HZ/2; /* skip armlaunch errs a bit */
1613 /*
1614 * the abort bit is auto-clearing. We read scratch to be sure
1615 * that cancels and the abort have taken effect in the chip.
1616 */
1617 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1618 INFINIPATH_S_ABORT);
1619 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1620 ipath_disarm_piobufs(dd, 0,
1621 (unsigned)(dd->ipath_piobcnt2k + dd->ipath_piobcnt4k));
1622
1623 /* and again, be sure all have hit the chip */
1624 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1625}
1626
1627
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001628static void ipath_set_ib_lstate(struct ipath_devdata *dd, int which)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001629{
1630 static const char *what[4] = {
1631 [0] = "DOWN",
1632 [INFINIPATH_IBCC_LINKCMD_INIT] = "INIT",
1633 [INFINIPATH_IBCC_LINKCMD_ARMED] = "ARMED",
1634 [INFINIPATH_IBCC_LINKCMD_ACTIVE] = "ACTIVE"
1635 };
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001636 int linkcmd = (which >> INFINIPATH_IBCC_LINKCMD_SHIFT) &
1637 INFINIPATH_IBCC_LINKCMD_MASK;
1638
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001639 ipath_cdbg(VERBOSE, "Trying to move unit %u to %s, current ltstate "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001640 "is %s\n", dd->ipath_unit,
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001641 what[linkcmd],
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001642 ipath_ibcstatus_str[
1643 (ipath_read_kreg64
1644 (dd, dd->ipath_kregs->kr_ibcstatus) >>
1645 INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
1646 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK]);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001647 /* flush all queued sends when going to DOWN or INIT, to be sure that
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001648 * they don't block MAD packets */
Dave Olson93800682007-06-18 14:24:41 -07001649 if (!linkcmd || linkcmd == INFINIPATH_IBCC_LINKCMD_INIT)
1650 ipath_cancel_sends(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001651
1652 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1653 dd->ipath_ibcctrl | which);
1654}
1655
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001656int ipath_set_linkstate(struct ipath_devdata *dd, u8 newstate)
1657{
1658 u32 lstate;
1659 int ret;
1660
1661 switch (newstate) {
1662 case IPATH_IB_LINKDOWN:
1663 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_POLL <<
1664 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1665 /* don't wait */
1666 ret = 0;
1667 goto bail;
1668
1669 case IPATH_IB_LINKDOWN_SLEEP:
1670 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_SLEEP <<
1671 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1672 /* don't wait */
1673 ret = 0;
1674 goto bail;
1675
1676 case IPATH_IB_LINKDOWN_DISABLE:
1677 ipath_set_ib_lstate(dd,
1678 INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1679 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1680 /* don't wait */
1681 ret = 0;
1682 goto bail;
1683
1684 case IPATH_IB_LINKINIT:
1685 if (dd->ipath_flags & IPATH_LINKINIT) {
1686 ret = 0;
1687 goto bail;
1688 }
1689 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_INIT <<
1690 INFINIPATH_IBCC_LINKCMD_SHIFT);
1691 lstate = IPATH_LINKINIT;
1692 break;
1693
1694 case IPATH_IB_LINKARM:
1695 if (dd->ipath_flags & IPATH_LINKARMED) {
1696 ret = 0;
1697 goto bail;
1698 }
1699 if (!(dd->ipath_flags &
1700 (IPATH_LINKINIT | IPATH_LINKACTIVE))) {
1701 ret = -EINVAL;
1702 goto bail;
1703 }
1704 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ARMED <<
1705 INFINIPATH_IBCC_LINKCMD_SHIFT);
1706 /*
1707 * Since the port can transition to ACTIVE by receiving
1708 * a non VL 15 packet, wait for either state.
1709 */
1710 lstate = IPATH_LINKARMED | IPATH_LINKACTIVE;
1711 break;
1712
1713 case IPATH_IB_LINKACTIVE:
1714 if (dd->ipath_flags & IPATH_LINKACTIVE) {
1715 ret = 0;
1716 goto bail;
1717 }
1718 if (!(dd->ipath_flags & IPATH_LINKARMED)) {
1719 ret = -EINVAL;
1720 goto bail;
1721 }
1722 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ACTIVE <<
1723 INFINIPATH_IBCC_LINKCMD_SHIFT);
1724 lstate = IPATH_LINKACTIVE;
1725 break;
1726
Bryan O'Sullivan946db672007-03-15 14:44:45 -07001727 case IPATH_IB_LINK_LOOPBACK:
1728 dev_info(&dd->pcidev->dev, "Enabling IB local loopback\n");
1729 dd->ipath_ibcctrl |= INFINIPATH_IBCC_LOOPBACK;
1730 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1731 dd->ipath_ibcctrl);
1732 ret = 0;
1733 goto bail; // no state change to wait for
1734
1735 case IPATH_IB_LINK_EXTERNAL:
1736 dev_info(&dd->pcidev->dev, "Disabling IB local loopback (normal)\n");
1737 dd->ipath_ibcctrl &= ~INFINIPATH_IBCC_LOOPBACK;
1738 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1739 dd->ipath_ibcctrl);
1740 ret = 0;
1741 goto bail; // no state change to wait for
1742
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001743 default:
1744 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate);
1745 ret = -EINVAL;
1746 goto bail;
1747 }
1748 ret = ipath_wait_linkstate(dd, lstate, 2000);
1749
1750bail:
1751 return ret;
1752}
1753
1754/**
1755 * ipath_set_mtu - set the MTU
1756 * @dd: the infinipath device
1757 * @arg: the new MTU
1758 *
1759 * we can handle "any" incoming size, the issue here is whether we
1760 * need to restrict our outgoing size. For now, we don't do any
1761 * sanity checking on this, and we don't deal with what happens to
1762 * programs that are already running when the size changes.
1763 * NOTE: changing the MTU will usually cause the IBC to go back to
1764 * link initialize (IPATH_IBSTATE_INIT) state...
1765 */
1766int ipath_set_mtu(struct ipath_devdata *dd, u16 arg)
1767{
1768 u32 piosize;
1769 int changed = 0;
1770 int ret;
1771
1772 /*
1773 * mtu is IB data payload max. It's the largest power of 2 less
1774 * than piosize (or even larger, since it only really controls the
1775 * largest we can receive; we can send the max of the mtu and
1776 * piosize). We check that it's one of the valid IB sizes.
1777 */
1778 if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
1779 arg != 4096) {
1780 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg);
1781 ret = -EINVAL;
1782 goto bail;
1783 }
1784 if (dd->ipath_ibmtu == arg) {
1785 ret = 0; /* same as current */
1786 goto bail;
1787 }
1788
1789 piosize = dd->ipath_ibmaxlen;
1790 dd->ipath_ibmtu = arg;
1791
1792 if (arg >= (piosize - IPATH_PIO_MAXIBHDR)) {
1793 /* Only if it's not the initial value (or reset to it) */
1794 if (piosize != dd->ipath_init_ibmaxlen) {
1795 dd->ipath_ibmaxlen = piosize;
1796 changed = 1;
1797 }
1798 } else if ((arg + IPATH_PIO_MAXIBHDR) != dd->ipath_ibmaxlen) {
1799 piosize = arg + IPATH_PIO_MAXIBHDR;
1800 ipath_cdbg(VERBOSE, "ibmaxlen was 0x%x, setting to 0x%x "
1801 "(mtu 0x%x)\n", dd->ipath_ibmaxlen, piosize,
1802 arg);
1803 dd->ipath_ibmaxlen = piosize;
1804 changed = 1;
1805 }
1806
1807 if (changed) {
1808 /*
1809 * set the IBC maxpktlength to the size of our pio
1810 * buffers in words
1811 */
1812 u64 ibc = dd->ipath_ibcctrl;
1813 ibc &= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK <<
1814 INFINIPATH_IBCC_MAXPKTLEN_SHIFT);
1815
1816 piosize = piosize - 2 * sizeof(u32); /* ignore pbc */
1817 dd->ipath_ibmaxlen = piosize;
1818 piosize /= sizeof(u32); /* in words */
1819 /*
1820 * for ICRC, which we only send in diag test pkt mode, and
1821 * we don't need to worry about that for mtu
1822 */
1823 piosize += 1;
1824
1825 ibc |= piosize << INFINIPATH_IBCC_MAXPKTLEN_SHIFT;
1826 dd->ipath_ibcctrl = ibc;
1827 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1828 dd->ipath_ibcctrl);
1829 dd->ipath_f_tidtemplate(dd);
1830 }
1831
1832 ret = 0;
1833
1834bail:
1835 return ret;
1836}
1837
1838int ipath_set_lid(struct ipath_devdata *dd, u32 arg, u8 lmc)
1839{
1840 dd->ipath_lid = arg;
1841 dd->ipath_lmc = lmc;
1842
1843 return 0;
1844}
1845
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001846
1847/**
1848 * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
1849 * @dd: the infinipath device
1850 * @regno: the register number to write
1851 * @port: the port containing the register
1852 * @value: the value to write
1853 *
1854 * Registers that vary with the chip implementation constants (port)
1855 * use this routine.
1856 */
1857void ipath_write_kreg_port(const struct ipath_devdata *dd, ipath_kreg regno,
1858 unsigned port, u64 value)
1859{
1860 u16 where;
1861
1862 if (port < dd->ipath_portcnt &&
1863 (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1864 regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1865 where = regno + port;
1866 else
1867 where = -1;
1868
1869 ipath_write_kreg(dd, where, value);
1870}
1871
Michael Albaugh82466f02007-05-16 15:45:09 -07001872/*
1873 * Following deal with the "obviously simple" task of overriding the state
1874 * of the LEDS, which normally indicate link physical and logical status.
1875 * The complications arise in dealing with different hardware mappings
1876 * and the board-dependent routine being called from interrupts.
1877 * and then there's the requirement to _flash_ them.
1878 */
1879#define LED_OVER_FREQ_SHIFT 8
1880#define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
1881/* Below is "non-zero" to force override, but both actual LEDs are off */
1882#define LED_OVER_BOTH_OFF (8)
1883
1884void ipath_run_led_override(unsigned long opaque)
1885{
1886 struct ipath_devdata *dd = (struct ipath_devdata *)opaque;
1887 int timeoff;
1888 int pidx;
1889 u64 lstate, ltstate, val;
1890
1891 if (!(dd->ipath_flags & IPATH_INITTED))
1892 return;
1893
1894 pidx = dd->ipath_led_override_phase++ & 1;
1895 dd->ipath_led_override = dd->ipath_led_override_vals[pidx];
1896 timeoff = dd->ipath_led_override_timeoff;
1897
1898 /*
1899 * below potentially restores the LED values per current status,
1900 * should also possibly setup the traffic-blink register,
1901 * but leave that to per-chip functions.
1902 */
1903 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
1904 ltstate = (val >> INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
1905 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK;
1906 lstate = (val >> INFINIPATH_IBCS_LINKSTATE_SHIFT) &
1907 INFINIPATH_IBCS_LINKSTATE_MASK;
1908
1909 dd->ipath_f_setextled(dd, lstate, ltstate);
1910 mod_timer(&dd->ipath_led_override_timer, jiffies + timeoff);
1911}
1912
1913void ipath_set_led_override(struct ipath_devdata *dd, unsigned int val)
1914{
1915 int timeoff, freq;
1916
1917 if (!(dd->ipath_flags & IPATH_INITTED))
1918 return;
1919
1920 /* First check if we are blinking. If not, use 1HZ polling */
1921 timeoff = HZ;
1922 freq = (val & LED_OVER_FREQ_MASK) >> LED_OVER_FREQ_SHIFT;
1923
1924 if (freq) {
1925 /* For blink, set each phase from one nybble of val */
1926 dd->ipath_led_override_vals[0] = val & 0xF;
1927 dd->ipath_led_override_vals[1] = (val >> 4) & 0xF;
1928 timeoff = (HZ << 4)/freq;
1929 } else {
1930 /* Non-blink set both phases the same. */
1931 dd->ipath_led_override_vals[0] = val & 0xF;
1932 dd->ipath_led_override_vals[1] = val & 0xF;
1933 }
1934 dd->ipath_led_override_timeoff = timeoff;
1935
1936 /*
1937 * If the timer has not already been started, do so. Use a "quick"
1938 * timeout so the function will be called soon, to look at our request.
1939 */
1940 if (atomic_inc_return(&dd->ipath_led_override_timer_active) == 1) {
1941 /* Need to start timer */
1942 init_timer(&dd->ipath_led_override_timer);
1943 dd->ipath_led_override_timer.function =
1944 ipath_run_led_override;
1945 dd->ipath_led_override_timer.data = (unsigned long) dd;
1946 dd->ipath_led_override_timer.expires = jiffies + 1;
1947 add_timer(&dd->ipath_led_override_timer);
1948 } else {
1949 atomic_dec(&dd->ipath_led_override_timer_active);
1950 }
1951}
1952
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001953/**
1954 * ipath_shutdown_device - shut down a device
1955 * @dd: the infinipath device
1956 *
1957 * This is called to make the device quiet when we are about to
1958 * unload the driver, and also when the device is administratively
1959 * disabled. It does not free any data structures.
1960 * Everything it does has to be setup again by ipath_init_chip(dd,1)
1961 */
1962void ipath_shutdown_device(struct ipath_devdata *dd)
1963{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001964 ipath_dbg("Shutting down the device\n");
1965
1966 dd->ipath_flags |= IPATH_LINKUNK;
1967 dd->ipath_flags &= ~(IPATH_INITTED | IPATH_LINKDOWN |
1968 IPATH_LINKINIT | IPATH_LINKARMED |
1969 IPATH_LINKACTIVE);
1970 *dd->ipath_statusp &= ~(IPATH_STATUS_IB_CONF |
1971 IPATH_STATUS_IB_READY);
1972
1973 /* mask interrupts, but not errors */
1974 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
1975
1976 dd->ipath_rcvctrl = 0;
1977 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
1978 dd->ipath_rcvctrl);
1979
1980 /*
1981 * gracefully stop all sends allowing any in progress to trickle out
1982 * first.
1983 */
1984 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, 0ULL);
1985 /* flush it */
Roland Dreier44f8e3f2006-12-12 11:50:20 -08001986 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001987 /*
1988 * enough for anything that's going to trickle out to have actually
1989 * done so.
1990 */
1991 udelay(5);
1992
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001993 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1994 INFINIPATH_IBCC_LINKINITCMD_SHIFT);
Dave Olson93800682007-06-18 14:24:41 -07001995 ipath_cancel_sends(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001996
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001997 /* disable IBC */
1998 dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
1999 ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
Bryan O'Sullivana40f55f2006-07-01 04:36:00 -07002000 dd->ipath_control | INFINIPATH_C_FREEZEMODE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002001
2002 /*
2003 * clear SerdesEnable and turn the leds off; do this here because
2004 * we are unloading, so don't count on interrupts to move along
2005 * Turn the LEDs off explictly for the same reason.
2006 */
2007 dd->ipath_f_quiet_serdes(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002008
2009 if (dd->ipath_stats_timer_active) {
2010 del_timer_sync(&dd->ipath_stats_timer);
2011 dd->ipath_stats_timer_active = 0;
2012 }
2013
2014 /*
2015 * clear all interrupts and errors, so that the next time the driver
2016 * is loaded or device is enabled, we know that whatever is set
2017 * happened while we were unloaded
2018 */
2019 ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
2020 ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED);
2021 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
2022 ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
Michael Albaughaecd3b52007-05-17 07:26:28 -07002023
2024 ipath_cdbg(VERBOSE, "Flush time and errors to EEPROM\n");
2025 ipath_update_eeprom_log(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002026}
2027
2028/**
2029 * ipath_free_pddata - free a port's allocated data
2030 * @dd: the infinipath device
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002031 * @pd: the portdata structure
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002032 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002033 * free up any allocated data for a port
2034 * This should not touch anything that would affect a simultaneous
2035 * re-allocation of port data, because it is called after ipath_mutex
2036 * is released (and can be called from reinit as well).
2037 * It should never change any chip state, or global driver state.
2038 * (The only exception to global state is freeing the port0 port0_skbs.)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002039 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002040void ipath_free_pddata(struct ipath_devdata *dd, struct ipath_portdata *pd)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002041{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002042 if (!pd)
2043 return;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002044
2045 if (pd->port_rcvhdrq) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002046 ipath_cdbg(VERBOSE, "free closed port %d rcvhdrq @ %p "
2047 "(size=%lu)\n", pd->port_port, pd->port_rcvhdrq,
2048 (unsigned long) pd->port_rcvhdrq_size);
2049 dma_free_coherent(&dd->pcidev->dev, pd->port_rcvhdrq_size,
2050 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
2051 pd->port_rcvhdrq = NULL;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002052 if (pd->port_rcvhdrtail_kvaddr) {
2053 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07002054 pd->port_rcvhdrtail_kvaddr,
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002055 pd->port_rcvhdrqtailaddr_phys);
2056 pd->port_rcvhdrtail_kvaddr = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002057 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002058 }
2059 if (pd->port_port && pd->port_rcvegrbuf) {
2060 unsigned e;
2061
2062 for (e = 0; e < pd->port_rcvegrbuf_chunks; e++) {
2063 void *base = pd->port_rcvegrbuf[e];
2064 size_t size = pd->port_rcvegrbuf_size;
2065
2066 ipath_cdbg(VERBOSE, "egrbuf free(%p, %lu), "
2067 "chunk %u/%u\n", base,
2068 (unsigned long) size,
2069 e, pd->port_rcvegrbuf_chunks);
2070 dma_free_coherent(&dd->pcidev->dev, size,
2071 base, pd->port_rcvegrbuf_phys[e]);
2072 }
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002073 kfree(pd->port_rcvegrbuf);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002074 pd->port_rcvegrbuf = NULL;
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002075 kfree(pd->port_rcvegrbuf_phys);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002076 pd->port_rcvegrbuf_phys = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002077 pd->port_rcvegrbuf_chunks = 0;
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002078 } else if (pd->port_port == 0 && dd->ipath_port0_skbinfo) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002079 unsigned e;
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002080 struct ipath_skbinfo *skbinfo = dd->ipath_port0_skbinfo;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002081
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002082 dd->ipath_port0_skbinfo = NULL;
2083 ipath_cdbg(VERBOSE, "free closed port %d "
2084 "ipath_port0_skbinfo @ %p\n", pd->port_port,
2085 skbinfo);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002086 for (e = 0; e < dd->ipath_rcvegrcnt; e++)
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -07002087 if (skbinfo[e].skb) {
2088 pci_unmap_single(dd->pcidev, skbinfo[e].phys,
2089 dd->ipath_ibmaxlen,
2090 PCI_DMA_FROMDEVICE);
2091 dev_kfree_skb(skbinfo[e].skb);
2092 }
2093 vfree(skbinfo);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002094 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002095 kfree(pd->port_tid_pg_list);
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07002096 vfree(pd->subport_uregbase);
2097 vfree(pd->subport_rcvegrbuf);
2098 vfree(pd->subport_rcvhdr_base);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07002099 kfree(pd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002100}
2101
Roland Dreierac2ae4c2006-04-19 11:40:12 -07002102static int __init infinipath_init(void)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002103{
2104 int ret;
2105
Bryan O'Sullivan39c0d0b2007-03-15 14:44:52 -07002106 if (ipath_debug & __IPATH_DBG)
2107 printk(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002108
2109 /*
2110 * These must be called before the driver is registered with
2111 * the PCI subsystem.
2112 */
2113 idr_init(&unit_table);
2114 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
2115 ret = -ENOMEM;
2116 goto bail;
2117 }
2118
2119 ret = pci_register_driver(&ipath_driver);
2120 if (ret < 0) {
2121 printk(KERN_ERR IPATH_DRV_NAME
2122 ": Unable to register driver: error %d\n", -ret);
2123 goto bail_unit;
2124 }
2125
2126 ret = ipath_driver_create_group(&ipath_driver.driver);
2127 if (ret < 0) {
2128 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create driver "
2129 "sysfs entries: error %d\n", -ret);
2130 goto bail_pci;
2131 }
2132
2133 ret = ipath_init_ipathfs();
2134 if (ret < 0) {
2135 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
2136 "ipathfs: error %d\n", -ret);
2137 goto bail_group;
2138 }
2139
2140 goto bail;
2141
2142bail_group:
2143 ipath_driver_remove_group(&ipath_driver.driver);
2144
2145bail_pci:
2146 pci_unregister_driver(&ipath_driver);
2147
2148bail_unit:
2149 idr_destroy(&unit_table);
2150
2151bail:
2152 return ret;
2153}
2154
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002155static void __exit infinipath_cleanup(void)
2156{
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002157 ipath_exit_ipathfs();
2158
2159 ipath_driver_remove_group(&ipath_driver.driver);
2160
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002161 ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
2162 pci_unregister_driver(&ipath_driver);
2163
2164 idr_destroy(&unit_table);
2165}
2166
2167/**
2168 * ipath_reset_device - reset the chip if possible
2169 * @unit: the device to reset
2170 *
2171 * Whether or not reset is successful, we attempt to re-initialize the chip
2172 * (that is, much like a driver unload/reload). We clear the INITTED flag
2173 * so that the various entry points will fail until we reinitialize. For
2174 * now, we only allow this if no user ports are open that use chip resources
2175 */
2176int ipath_reset_device(int unit)
2177{
2178 int ret, i;
2179 struct ipath_devdata *dd = ipath_lookup(unit);
2180
2181 if (!dd) {
2182 ret = -ENODEV;
2183 goto bail;
2184 }
2185
Michael Albaugh82466f02007-05-16 15:45:09 -07002186 if (atomic_read(&dd->ipath_led_override_timer_active)) {
2187 /* Need to stop LED timer, _then_ shut off LEDs */
2188 del_timer_sync(&dd->ipath_led_override_timer);
2189 atomic_set(&dd->ipath_led_override_timer_active, 0);
2190 }
2191
2192 /* Shut off LEDs after we are sure timer is not running */
2193 dd->ipath_led_override = LED_OVER_BOTH_OFF;
2194 dd->ipath_f_setextled(dd, 0, 0);
2195
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002196 dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
2197
2198 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
2199 dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
2200 "not initialized or not present\n", unit);
2201 ret = -ENXIO;
2202 goto bail;
2203 }
2204
2205 if (dd->ipath_pd)
Bryan O'Sullivan23e86a42006-04-24 14:22:59 -07002206 for (i = 1; i < dd->ipath_cfgports; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002207 if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
2208 ipath_dbg("unit %u port %d is in use "
2209 "(PID %u cmd %s), can't reset\n",
2210 unit, i,
2211 dd->ipath_pd[i]->port_pid,
2212 dd->ipath_pd[i]->port_comm);
2213 ret = -EBUSY;
2214 goto bail;
2215 }
2216 }
2217
2218 dd->ipath_flags &= ~IPATH_INITTED;
2219 ret = dd->ipath_f_reset(dd);
2220 if (ret != 1)
2221 ipath_dbg("reset was not successful\n");
2222 ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2223 unit);
2224 ret = ipath_init_chip(dd, 1);
2225 if (ret)
2226 ipath_dev_err(dd, "Reinitialize unit %u after "
2227 "reset failed with %d\n", unit, ret);
2228 else
2229 dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
2230 "resetting\n", unit);
2231
2232bail:
2233 return ret;
2234}
2235
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002236int ipath_set_rx_pol_inv(struct ipath_devdata *dd, u8 new_pol_inv)
2237{
2238 u64 val;
2239 if ( new_pol_inv > INFINIPATH_XGXS_RX_POL_MASK ) {
2240 return -1;
2241 }
2242 if ( dd->ipath_rx_pol_inv != new_pol_inv ) {
2243 dd->ipath_rx_pol_inv = new_pol_inv;
2244 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
2245 val &= ~(INFINIPATH_XGXS_RX_POL_MASK <<
Roland Dreier3cd96562006-09-22 15:22:46 -07002246 INFINIPATH_XGXS_RX_POL_SHIFT);
2247 val |= ((u64)dd->ipath_rx_pol_inv) <<
2248 INFINIPATH_XGXS_RX_POL_SHIFT;
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002249 ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
2250 }
2251 return 0;
2252}
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002253module_init(infinipath_init);
2254module_exit(infinipath_cleanup);