blob: 467816043d10e2985aab829b79d9c940e65b10d7 [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);
307 ipath_cdbg(VERBOSE, "regbase (0) %llx len %d irq %x, vend %x/%x "
308 "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'Sullivan525d0ca2006-08-25 11:24:39 -0700394 ipath_init_iba6110_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800395 break;
396 case PCI_DEVICE_ID_INFINIPATH_PE800:
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700397 ipath_init_iba6120_funcs(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800398 break;
399 default:
Bryan O'Sullivan759d5762006-07-01 04:35:49 -0700400 ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800401 "failing\n", ent->device);
402 return -ENODEV;
403 }
404
405 for (j = 0; j < 6; j++) {
406 if (!pdev->resource[j].start)
407 continue;
Greg Kroah-Hartmane29419f2006-06-12 15:20:16 -0700408 ipath_cdbg(VERBOSE, "BAR %d start %llx, end %llx, len %llx\n",
409 j, (unsigned long long)pdev->resource[j].start,
410 (unsigned long long)pdev->resource[j].end,
411 (unsigned long long)pci_resource_len(pdev, j));
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800412 }
413
414 if (!addr) {
415 ipath_dev_err(dd, "No valid address in BAR 0!\n");
416 ret = -ENODEV;
417 goto bail_regions;
418 }
419
420 dd->ipath_deviceid = ent->device; /* save for later use */
421 dd->ipath_vendorid = ent->vendor;
422
423 ret = pci_read_config_byte(pdev, PCI_REVISION_ID, &rev);
424 if (ret) {
425 ipath_dev_err(dd, "Failed to read PCI revision ID unit "
426 "%u: err %d\n", dd->ipath_unit, -ret);
427 goto bail_regions; /* shouldn't ever happen */
428 }
429 dd->ipath_pcirev = rev;
430
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700431#if defined(__powerpc__)
432 /* There isn't a generic way to specify writethrough mappings */
433 dd->ipath_kregbase = __ioremap(addr, len,
434 (_PAGE_NO_CACHE|_PAGE_WRITETHRU));
435#else
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800436 dd->ipath_kregbase = ioremap_nocache(addr, len);
Bryan O'Sullivaneb9dc6f2006-08-25 11:24:26 -0700437#endif
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800438
439 if (!dd->ipath_kregbase) {
440 ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
441 addr);
442 ret = -ENOMEM;
443 goto bail_iounmap;
444 }
445 dd->ipath_kregend = (u64 __iomem *)
446 ((void __iomem *)dd->ipath_kregbase + len);
447 dd->ipath_physaddr = addr; /* used for io_remap, etc. */
448 /* for user mmap */
Bryan O'Sullivanb35f0042006-07-01 04:35:59 -0700449 ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
450 addr, dd->ipath_kregbase);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800451
452 /*
453 * clear ipath_flags here instead of in ipath_init_chip as it is set
454 * by ipath_setup_htconfig.
455 */
456 dd->ipath_flags = 0;
Bryan O'Sullivanfba75202006-07-01 04:36:09 -0700457 dd->ipath_lli_counter = 0;
458 dd->ipath_lli_errors = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800459
460 if (dd->ipath_f_bus(dd, pdev))
461 ipath_dev_err(dd, "Failed to setup config space; "
462 "continuing anyway\n");
463
464 /*
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700465 * set up our interrupt handler; IRQF_SHARED probably not needed,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800466 * since MSI interrupts shouldn't be shared but won't hurt for now.
467 * check 0 irq after we return from chip-specific bus setup, since
468 * that can affect this due to setup
469 */
470 if (!pdev->irq)
471 ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't "
472 "work\n");
473 else {
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700474 ret = request_irq(pdev->irq, ipath_intr, IRQF_SHARED,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800475 IPATH_DRV_NAME, dd);
476 if (ret) {
477 ipath_dev_err(dd, "Couldn't setup irq handler, "
478 "irq=%u: %d\n", pdev->irq, ret);
479 goto bail_iounmap;
480 }
481 }
482
483 ret = ipath_init_chip(dd, 0); /* do the chip-specific init */
484 if (ret)
485 goto bail_iounmap;
486
487 ret = ipath_enable_wc(dd);
488
489 if (ret) {
490 ipath_dev_err(dd, "Write combining not enabled "
491 "(err %d): performance may be poor\n",
492 -ret);
493 ret = 0;
494 }
495
496 ipath_device_create_group(&pdev->dev, dd);
497 ipathfs_add_device(dd);
498 ipath_user_add(dd);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700499 ipath_diag_add(dd);
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700500 ipath_register_ib_device(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800501
502 goto bail;
503
504bail_iounmap:
505 iounmap((volatile void __iomem *) dd->ipath_kregbase);
506
507bail_regions:
508 pci_release_regions(pdev);
509
510bail_disable:
511 pci_disable_device(pdev);
512
513bail_devdata:
514 ipath_free_devdata(pdev, dd);
515
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800516bail:
517 return ret;
518}
519
520static void __devexit ipath_remove_one(struct pci_dev *pdev)
521{
522 struct ipath_devdata *dd;
523
524 ipath_cdbg(VERBOSE, "removing, pdev=%p\n", pdev);
525 if (!pdev)
526 return;
527
528 dd = pci_get_drvdata(pdev);
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -0700529
530 if (dd->verbs_dev) {
531 ipath_unregister_ib_device(dd->verbs_dev);
532 dd->verbs_dev = NULL;
533 }
534
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700535 ipath_diag_remove(dd);
536 ipath_user_remove(dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800537 ipathfs_remove_device(dd);
538 ipath_device_remove_group(&pdev->dev, dd);
539 ipath_cdbg(VERBOSE, "Releasing pci memory regions, dd %p, "
540 "unit %u\n", dd, (u32) dd->ipath_unit);
541 if (dd->ipath_kregbase) {
542 ipath_cdbg(VERBOSE, "Unmapping kregbase %p\n",
543 dd->ipath_kregbase);
544 iounmap((volatile void __iomem *) dd->ipath_kregbase);
545 dd->ipath_kregbase = NULL;
546 }
547 pci_release_regions(pdev);
548 ipath_cdbg(VERBOSE, "calling pci_disable_device\n");
549 pci_disable_device(pdev);
550
551 ipath_free_devdata(pdev, dd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800552}
553
554/* general driver use */
555DEFINE_MUTEX(ipath_mutex);
556
557static DEFINE_SPINLOCK(ipath_pioavail_lock);
558
559/**
560 * ipath_disarm_piobufs - cancel a range of PIO buffers
561 * @dd: the infinipath device
562 * @first: the first PIO buffer to cancel
563 * @cnt: the number of PIO buffers to cancel
564 *
565 * cancel a range of PIO buffers, used when they might be armed, but
566 * not triggered. Used at init to ensure buffer state, and also user
567 * process close, in case it died while writing to a PIO buffer
568 * Also after errors.
569 */
570void ipath_disarm_piobufs(struct ipath_devdata *dd, unsigned first,
571 unsigned cnt)
572{
573 unsigned i, last = first + cnt;
574 u64 sendctrl, sendorig;
575
576 ipath_cdbg(PKT, "disarm %u PIObufs first=%u\n", cnt, first);
577 sendorig = dd->ipath_sendctrl | INFINIPATH_S_DISARM;
578 for (i = first; i < last; i++) {
579 sendctrl = sendorig |
580 (i << INFINIPATH_S_DISARMPIOBUF_SHIFT);
581 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
582 sendctrl);
583 }
584
585 /*
586 * Write it again with current value, in case ipath_sendctrl changed
587 * while we were looping; no critical bits that would require
588 * locking.
589 *
590 * Write a 0, and then the original value, reading scratch in
591 * between. This seems to avoid a chip timing race that causes
592 * pioavail updates to memory to stop.
593 */
594 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
595 0);
596 sendorig = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
597 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
598 dd->ipath_sendctrl);
599}
600
601/**
602 * ipath_wait_linkstate - wait for an IB link state change to occur
603 * @dd: the infinipath device
604 * @state: the state to wait for
605 * @msecs: the number of milliseconds to wait
606 *
607 * wait up to msecs milliseconds for IB link state change to occur for
608 * now, take the easy polling route. Currently used only by
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700609 * ipath_set_linkstate. Returns 0 if state reached, otherwise
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800610 * -ETIMEDOUT state can have multiple states set, for any of several
611 * transitions.
612 */
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700613static int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state,
614 int msecs)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800615{
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700616 dd->ipath_state_wanted = state;
617 wait_event_interruptible_timeout(ipath_state_wait,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800618 (dd->ipath_flags & state),
619 msecs_to_jiffies(msecs));
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700620 dd->ipath_state_wanted = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800621
622 if (!(dd->ipath_flags & state)) {
623 u64 val;
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700624 ipath_cdbg(VERBOSE, "Didn't reach linkstate %s within %u"
625 " ms\n",
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800626 /* test INIT ahead of DOWN, both can be set */
627 (state & IPATH_LINKINIT) ? "INIT" :
628 ((state & IPATH_LINKDOWN) ? "DOWN" :
629 ((state & IPATH_LINKARMED) ? "ARM" : "ACTIVE")),
630 msecs);
631 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
632 ipath_cdbg(VERBOSE, "ibcc=%llx ibcstatus=%llx (%s)\n",
633 (unsigned long long) ipath_read_kreg64(
634 dd, dd->ipath_kregs->kr_ibcctrl),
635 (unsigned long long) val,
636 ipath_ibcstatus_str[val & 0xf]);
637 }
638 return (dd->ipath_flags & state) ? 0 : -ETIMEDOUT;
639}
640
641void ipath_decode_err(char *buf, size_t blen, ipath_err_t err)
642{
643 *buf = '\0';
644 if (err & INFINIPATH_E_RHDRLEN)
645 strlcat(buf, "rhdrlen ", blen);
646 if (err & INFINIPATH_E_RBADTID)
647 strlcat(buf, "rbadtid ", blen);
648 if (err & INFINIPATH_E_RBADVERSION)
649 strlcat(buf, "rbadversion ", blen);
650 if (err & INFINIPATH_E_RHDR)
651 strlcat(buf, "rhdr ", blen);
652 if (err & INFINIPATH_E_RLONGPKTLEN)
653 strlcat(buf, "rlongpktlen ", blen);
654 if (err & INFINIPATH_E_RSHORTPKTLEN)
655 strlcat(buf, "rshortpktlen ", blen);
656 if (err & INFINIPATH_E_RMAXPKTLEN)
657 strlcat(buf, "rmaxpktlen ", blen);
658 if (err & INFINIPATH_E_RMINPKTLEN)
659 strlcat(buf, "rminpktlen ", blen);
660 if (err & INFINIPATH_E_RFORMATERR)
661 strlcat(buf, "rformaterr ", blen);
662 if (err & INFINIPATH_E_RUNSUPVL)
663 strlcat(buf, "runsupvl ", blen);
664 if (err & INFINIPATH_E_RUNEXPCHAR)
665 strlcat(buf, "runexpchar ", blen);
666 if (err & INFINIPATH_E_RIBFLOW)
667 strlcat(buf, "ribflow ", blen);
668 if (err & INFINIPATH_E_REBP)
669 strlcat(buf, "EBP ", blen);
670 if (err & INFINIPATH_E_SUNDERRUN)
671 strlcat(buf, "sunderrun ", blen);
672 if (err & INFINIPATH_E_SPIOARMLAUNCH)
673 strlcat(buf, "spioarmlaunch ", blen);
674 if (err & INFINIPATH_E_SUNEXPERRPKTNUM)
675 strlcat(buf, "sunexperrpktnum ", blen);
676 if (err & INFINIPATH_E_SDROPPEDDATAPKT)
677 strlcat(buf, "sdroppeddatapkt ", blen);
678 if (err & INFINIPATH_E_SDROPPEDSMPPKT)
679 strlcat(buf, "sdroppedsmppkt ", blen);
680 if (err & INFINIPATH_E_SMAXPKTLEN)
681 strlcat(buf, "smaxpktlen ", blen);
682 if (err & INFINIPATH_E_SMINPKTLEN)
683 strlcat(buf, "sminpktlen ", blen);
684 if (err & INFINIPATH_E_SUNSUPVL)
685 strlcat(buf, "sunsupVL ", blen);
686 if (err & INFINIPATH_E_SPKTLEN)
687 strlcat(buf, "spktlen ", blen);
688 if (err & INFINIPATH_E_INVALIDADDR)
689 strlcat(buf, "invalidaddr ", blen);
690 if (err & INFINIPATH_E_RICRC)
691 strlcat(buf, "CRC ", blen);
692 if (err & INFINIPATH_E_RVCRC)
693 strlcat(buf, "VCRC ", blen);
694 if (err & INFINIPATH_E_RRCVEGRFULL)
695 strlcat(buf, "rcvegrfull ", blen);
696 if (err & INFINIPATH_E_RRCVHDRFULL)
697 strlcat(buf, "rcvhdrfull ", blen);
698 if (err & INFINIPATH_E_IBSTATUSCHANGED)
699 strlcat(buf, "ibcstatuschg ", blen);
700 if (err & INFINIPATH_E_RIBLOSTLINK)
701 strlcat(buf, "riblostlink ", blen);
702 if (err & INFINIPATH_E_HARDWARE)
703 strlcat(buf, "hardware ", blen);
704 if (err & INFINIPATH_E_RESET)
705 strlcat(buf, "reset ", blen);
706}
707
708/**
709 * get_rhf_errstring - decode RHF errors
710 * @err: the err number
711 * @msg: the output buffer
712 * @len: the length of the output buffer
713 *
714 * only used one place now, may want more later
715 */
716static void get_rhf_errstring(u32 err, char *msg, size_t len)
717{
718 /* if no errors, and so don't need to check what's first */
719 *msg = '\0';
720
721 if (err & INFINIPATH_RHF_H_ICRCERR)
722 strlcat(msg, "icrcerr ", len);
723 if (err & INFINIPATH_RHF_H_VCRCERR)
724 strlcat(msg, "vcrcerr ", len);
725 if (err & INFINIPATH_RHF_H_PARITYERR)
726 strlcat(msg, "parityerr ", len);
727 if (err & INFINIPATH_RHF_H_LENERR)
728 strlcat(msg, "lenerr ", len);
729 if (err & INFINIPATH_RHF_H_MTUERR)
730 strlcat(msg, "mtuerr ", len);
731 if (err & INFINIPATH_RHF_H_IHDRERR)
732 /* infinipath hdr checksum error */
733 strlcat(msg, "ipathhdrerr ", len);
734 if (err & INFINIPATH_RHF_H_TIDERR)
735 strlcat(msg, "tiderr ", len);
736 if (err & INFINIPATH_RHF_H_MKERR)
737 /* bad port, offset, etc. */
738 strlcat(msg, "invalid ipathhdr ", len);
739 if (err & INFINIPATH_RHF_H_IBERR)
740 strlcat(msg, "iberr ", len);
741 if (err & INFINIPATH_RHF_L_SWA)
742 strlcat(msg, "swA ", len);
743 if (err & INFINIPATH_RHF_L_SWB)
744 strlcat(msg, "swB ", len);
745}
746
747/**
748 * ipath_get_egrbuf - get an eager buffer
749 * @dd: the infinipath device
750 * @bufnum: the eager buffer to get
751 * @err: unused
752 *
753 * must only be called if ipath_pd[port] is known to be allocated
754 */
755static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum,
756 int err)
757{
758 return dd->ipath_port0_skbs ?
759 (void *)dd->ipath_port0_skbs[bufnum]->data : NULL;
760}
761
762/**
763 * ipath_alloc_skb - allocate an skb and buffer with possible constraints
764 * @dd: the infinipath device
765 * @gfp_mask: the sk_buff SFP mask
766 */
767struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd,
768 gfp_t gfp_mask)
769{
770 struct sk_buff *skb;
771 u32 len;
772
773 /*
774 * Only fully supported way to handle this is to allocate lots
775 * extra, align as needed, and then do skb_reserve(). That wastes
776 * a lot of memory... I'll have to hack this into infinipath_copy
777 * also.
778 */
779
780 /*
781 * We need 4 extra bytes for unaligned transfer copying
782 */
783 if (dd->ipath_flags & IPATH_4BYTE_TID) {
784 /* we need a 4KB multiple alignment, and there is no way
785 * to do it except to allocate extra and then skb_reserve
786 * enough to bring it up to the right alignment.
787 */
788 len = dd->ipath_ibmaxlen + 4 + (1 << 11) - 1;
789 }
790 else
791 len = dd->ipath_ibmaxlen + 4;
792 skb = __dev_alloc_skb(len, gfp_mask);
793 if (!skb) {
794 ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
795 len);
796 goto bail;
797 }
798 if (dd->ipath_flags & IPATH_4BYTE_TID) {
799 u32 una = ((1 << 11) - 1) & (unsigned long)(skb->data + 4);
800 if (una)
801 skb_reserve(skb, 4 + (1 << 11) - una);
802 else
803 skb_reserve(skb, 4);
804 } else
805 skb_reserve(skb, 4);
806
807bail:
808 return skb;
809}
810
Ralph Campbell3d37b9e2006-07-17 18:18:36 -0700811static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
812 u32 eflags,
813 u32 l,
814 u32 etail,
815 u64 *rc)
816{
817 char emsg[128];
818 struct ipath_message_header *hdr;
819
820 get_rhf_errstring(eflags, emsg, sizeof emsg);
821 hdr = (struct ipath_message_header *)&rc[1];
822 ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
823 "tlen=%x opcode=%x egridx=%x: %s\n",
824 eflags, l,
825 ipath_hdrget_rcv_type((__le32 *) rc),
826 ipath_hdrget_length_in_bytes((__le32 *) rc),
827 be32_to_cpu(hdr->bth[0]) >> 24,
828 etail, emsg);
829
830 /* Count local link integrity errors. */
831 if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
832 u8 n = (dd->ipath_ibcctrl >>
833 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
834 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
835
836 if (++dd->ipath_lli_counter > n) {
837 dd->ipath_lli_counter = 0;
838 dd->ipath_lli_errors++;
839 }
840 }
841}
842
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800843/*
844 * ipath_kreceive - receive a packet
845 * @dd: the infinipath device
846 *
847 * called from interrupt handler for errors or receive interrupt
848 */
849void ipath_kreceive(struct ipath_devdata *dd)
850{
851 u64 *rc;
852 void *ebuf;
853 const u32 rsize = dd->ipath_rcvhdrentsize; /* words */
854 const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
855 u32 etail = -1, l, hdrqtail;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700856 struct ipath_message_header *hdr;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700857 u32 eflags, i, etype, tlen, pkttot = 0, updegr=0, reloop=0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800858 static u64 totcalls; /* stats, may eventually remove */
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800859
860 if (!dd->ipath_hdrqtailptr) {
861 ipath_dev_err(dd,
862 "hdrqtailptr not set, can't do receives\n");
863 goto bail;
864 }
865
866 /* There is already a thread processing this queue. */
867 if (test_and_set_bit(0, &dd->ipath_rcv_pending))
868 goto bail;
869
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700870 l = dd->ipath_port0head;
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700871 hdrqtail = (u32) le64_to_cpu(*dd->ipath_hdrqtailptr);
872 if (l == hdrqtail)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800873 goto done;
874
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700875reloop:
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700876 for (i = 0; l != hdrqtail; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800877 u32 qp;
878 u8 *bthbytes;
879
880 rc = (u64 *) (dd->ipath_pd[0]->port_rcvhdrq + (l << 2));
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700881 hdr = (struct ipath_message_header *)&rc[1];
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800882 /*
883 * could make a network order version of IPATH_KD_QP, and
884 * do the obvious shift before masking to speed this up.
885 */
886 qp = ntohl(hdr->bth[1]) & 0xffffff;
887 bthbytes = (u8 *) hdr->bth;
888
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700889 eflags = ipath_hdrget_err_flags((__le32 *) rc);
890 etype = ipath_hdrget_rcv_type((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800891 /* total length */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700892 tlen = ipath_hdrget_length_in_bytes((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800893 ebuf = NULL;
894 if (etype != RCVHQ_RCV_TYPE_EXPECTED) {
895 /*
896 * it turns out that the chips uses an eager buffer
897 * for all non-expected packets, whether it "needs"
898 * one or not. So always get the index, but don't
899 * set ebuf (so we try to copy data) unless the
900 * length requires it.
901 */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700902 etail = ipath_hdrget_index((__le32 *) rc);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800903 if (tlen > sizeof(*hdr) ||
904 etype == RCVHQ_RCV_TYPE_NON_KD)
905 ebuf = ipath_get_egrbuf(dd, etail, 0);
906 }
907
908 /*
909 * both tiderr and ipathhdrerr are set for all plain IB
910 * packets; only ipathhdrerr should be set.
911 */
912
913 if (etype != RCVHQ_RCV_TYPE_NON_KD && etype !=
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700914 RCVHQ_RCV_TYPE_ERROR && ipath_hdrget_ipath_ver(
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800915 hdr->iph.ver_port_tid_offset) !=
916 IPS_PROTO_VERSION) {
917 ipath_cdbg(PKT, "Bad InfiniPath protocol version "
918 "%x\n", etype);
919 }
920
Ralph Campbell3d37b9e2006-07-17 18:18:36 -0700921 if (unlikely(eflags))
922 ipath_rcv_hdrerr(dd, eflags, l, etail, rc);
923 else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700924 ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
925 if (dd->ipath_lli_counter)
926 dd->ipath_lli_counter--;
927 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
928 "qp=%x), len %x; ignored\n",
929 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800930 }
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700931 else if (etype == RCVHQ_RCV_TYPE_EAGER)
932 ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
933 "qp=%x), len %x; ignored\n",
934 etype, bthbytes[0], qp, tlen);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800935 else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
936 ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
937 be32_to_cpu(hdr->bth[0]) & 0xff);
Ralph Campbell3d37b9e2006-07-17 18:18:36 -0700938 else {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800939 /*
940 * error packet, type of error unknown.
941 * Probably type 3, but we don't know, so don't
942 * even try to print the opcode, etc.
943 */
944 ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
945 "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
946 "hdr %llx %llx %llx %llx %llx\n",
947 etail, tlen, (unsigned long) rc, l,
948 (unsigned long long) rc[0],
949 (unsigned long long) rc[1],
950 (unsigned long long) rc[2],
951 (unsigned long long) rc[3],
952 (unsigned long long) rc[4],
953 (unsigned long long) rc[5]);
954 }
955 l += rsize;
956 if (l >= maxcnt)
957 l = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800958 if (etype != RCVHQ_RCV_TYPE_EXPECTED)
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700959 updegr = 1;
960 /*
961 * update head regs on last packet, and every 16 packets.
962 * Reduce bus traffic, while still trying to prevent
963 * rcvhdrq overflows, for when the queue is nearly full
964 */
965 if (l == hdrqtail || (i && !(i&0xf))) {
966 u64 lval;
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700967 if (l == hdrqtail)
968 /* request IBA6120 interrupt only on last */
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700969 lval = dd->ipath_rhdrhead_intr_off | l;
970 else
971 lval = l;
972 (void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
973 if (updegr) {
974 (void)ipath_write_ureg(dd, ur_rcvegrindexhead,
975 etail, 0);
976 updegr = 0;
977 }
978 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800979 }
980
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700981 if (!dd->ipath_rhdrhead_intr_off && !reloop) {
Bryan O'Sullivan525d0ca2006-08-25 11:24:39 -0700982 /* IBA6110 workaround; we can have a race clearing chip
Bryan O'Sullivan57abad22006-07-01 04:36:05 -0700983 * interrupt with another interrupt about to be delivered,
984 * and can clear it before it is delivered on the GPIO
985 * workaround. By doing the extra check here for the
986 * in-memory tail register updating while we were doing
987 * earlier packets, we "almost" guarantee we have covered
988 * that case.
989 */
990 u32 hqtail = (u32)le64_to_cpu(*dd->ipath_hdrqtailptr);
991 if (hqtail != hdrqtail) {
992 hdrqtail = hqtail;
993 reloop = 1; /* loop 1 extra time at most */
994 goto reloop;
995 }
996 }
997
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -0800998 pkttot += i;
999
1000 dd->ipath_port0head = l;
1001
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001002 if (pkttot > ipath_stats.sps_maxpkts_call)
1003 ipath_stats.sps_maxpkts_call = pkttot;
1004 ipath_stats.sps_port0pkts += pkttot;
1005 ipath_stats.sps_avgpkts_call =
1006 ipath_stats.sps_port0pkts / ++totcalls;
1007
1008done:
1009 clear_bit(0, &dd->ipath_rcv_pending);
1010 smp_mb__after_clear_bit();
1011
1012bail:;
1013}
1014
1015/**
1016 * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1017 * @dd: the infinipath device
1018 *
1019 * called whenever our local copy indicates we have run out of send buffers
1020 * NOTE: This can be called from interrupt context by some code
1021 * and from non-interrupt context by ipath_getpiobuf().
1022 */
1023
1024static void ipath_update_pio_bufs(struct ipath_devdata *dd)
1025{
1026 unsigned long flags;
1027 int i;
1028 const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
1029
1030 /* If the generation (check) bits have changed, then we update the
1031 * busy bit for the corresponding PIO buffer. This algorithm will
1032 * modify positions to the value they already have in some cases
1033 * (i.e., no change), but it's faster than changing only the bits
1034 * that have changed.
1035 *
1036 * We would like to do this atomicly, to avoid spinlocks in the
1037 * critical send path, but that's not really possible, given the
1038 * type of changes, and that this routine could be called on
1039 * multiple cpu's simultaneously, so we lock in this routine only,
1040 * to avoid conflicting updates; all we change is the shadow, and
1041 * it's a single 64 bit memory location, so by definition the update
1042 * is atomic in terms of what other cpu's can see in testing the
1043 * bits. The spin_lock overhead isn't too bad, since it only
1044 * happens when all buffers are in use, so only cpu overhead, not
1045 * latency or bandwidth is affected.
1046 */
1047#define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
1048 if (!dd->ipath_pioavailregs_dma) {
1049 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1050 return;
1051 }
1052 if (ipath_debug & __IPATH_VERBDBG) {
1053 /* only if packet debug and verbose */
1054 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1055 unsigned long *shadow = dd->ipath_pioavailshadow;
1056
1057 ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
1058 "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1059 "s3=%lx\n",
1060 (unsigned long long) le64_to_cpu(dma[0]),
1061 shadow[0],
1062 (unsigned long long) le64_to_cpu(dma[1]),
1063 shadow[1],
1064 (unsigned long long) le64_to_cpu(dma[2]),
1065 shadow[2],
1066 (unsigned long long) le64_to_cpu(dma[3]),
1067 shadow[3]);
1068 if (piobregs > 4)
1069 ipath_cdbg(
1070 PKT, "2nd group, dma4=%llx shad4=%lx, "
1071 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1072 "d7=%llx s7=%lx\n",
1073 (unsigned long long) le64_to_cpu(dma[4]),
1074 shadow[4],
1075 (unsigned long long) le64_to_cpu(dma[5]),
1076 shadow[5],
1077 (unsigned long long) le64_to_cpu(dma[6]),
1078 shadow[6],
1079 (unsigned long long) le64_to_cpu(dma[7]),
1080 shadow[7]);
1081 }
1082 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1083 for (i = 0; i < piobregs; i++) {
1084 u64 pchbusy, pchg, piov, pnew;
1085 /*
1086 * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1087 */
1088 if (i > 3) {
1089 if (i & 1)
1090 piov = le64_to_cpu(
1091 dd->ipath_pioavailregs_dma[i - 1]);
1092 else
1093 piov = le64_to_cpu(
1094 dd->ipath_pioavailregs_dma[i + 1]);
1095 } else
1096 piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
1097 pchg = _IPATH_ALL_CHECKBITS &
1098 ~(dd->ipath_pioavailshadow[i] ^ piov);
1099 pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
1100 if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
1101 pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
1102 pnew |= piov & pchbusy;
1103 dd->ipath_pioavailshadow[i] = pnew;
1104 }
1105 }
1106 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1107}
1108
1109/**
1110 * ipath_setrcvhdrsize - set the receive header size
1111 * @dd: the infinipath device
1112 * @rhdrsize: the receive header size
1113 *
1114 * called from user init code, and also layered driver init
1115 */
1116int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
1117{
1118 int ret = 0;
1119
1120 if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
1121 if (dd->ipath_rcvhdrsize != rhdrsize) {
1122 dev_info(&dd->pcidev->dev,
1123 "Error: can't set protocol header "
1124 "size %u, already %u\n",
1125 rhdrsize, dd->ipath_rcvhdrsize);
1126 ret = -EAGAIN;
1127 } else
1128 ipath_cdbg(VERBOSE, "Reuse same protocol header "
1129 "size %u\n", dd->ipath_rcvhdrsize);
1130 } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
1131 (sizeof(u64) / sizeof(u32)))) {
1132 ipath_dbg("Error: can't set protocol header size %u "
1133 "(> max %u)\n", rhdrsize,
1134 dd->ipath_rcvhdrentsize -
1135 (u32) (sizeof(u64) / sizeof(u32)));
1136 ret = -EOVERFLOW;
1137 } else {
1138 dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
1139 dd->ipath_rcvhdrsize = rhdrsize;
1140 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
1141 dd->ipath_rcvhdrsize);
1142 ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
1143 dd->ipath_rcvhdrsize);
1144 }
1145 return ret;
1146}
1147
1148/**
1149 * ipath_getpiobuf - find an available pio buffer
1150 * @dd: the infinipath device
1151 * @pbufnum: the buffer number is placed here
1152 *
1153 * do appropriate marking as busy, etc.
1154 * returns buffer number if one found (>=0), negative number is error.
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001155 * Used by ipath_layer_send
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001156 */
1157u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 * pbufnum)
1158{
1159 int i, j, starti, updated = 0;
1160 unsigned piobcnt, iter;
1161 unsigned long flags;
1162 unsigned long *shadow = dd->ipath_pioavailshadow;
1163 u32 __iomem *buf;
1164
1165 piobcnt = (unsigned)(dd->ipath_piobcnt2k
1166 + dd->ipath_piobcnt4k);
1167 starti = dd->ipath_lastport_piobuf;
1168 iter = piobcnt - starti;
1169 if (dd->ipath_upd_pio_shadow) {
1170 /*
1171 * Minor optimization. If we had no buffers on last call,
1172 * start out by doing the update; continue and do scan even
1173 * if no buffers were updated, to be paranoid
1174 */
1175 ipath_update_pio_bufs(dd);
1176 /* we scanned here, don't do it at end of scan */
1177 updated = 1;
1178 i = starti;
1179 } else
1180 i = dd->ipath_lastpioindex;
1181
1182rescan:
1183 /*
1184 * while test_and_set_bit() is atomic, we do that and then the
1185 * change_bit(), and the pair is not. See if this is the cause
1186 * of the remaining armlaunch errors.
1187 */
1188 spin_lock_irqsave(&ipath_pioavail_lock, flags);
1189 for (j = 0; j < iter; j++, i++) {
1190 if (i >= piobcnt)
1191 i = starti;
1192 /*
1193 * To avoid bus lock overhead, we first find a candidate
1194 * buffer, then do the test and set, and continue if that
1195 * fails.
1196 */
1197 if (test_bit((2 * i) + 1, shadow) ||
1198 test_and_set_bit((2 * i) + 1, shadow))
1199 continue;
1200 /* flip generation bit */
1201 change_bit(2 * i, shadow);
1202 break;
1203 }
1204 spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1205
1206 if (j == iter) {
1207 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1208
1209 /*
1210 * first time through; shadow exhausted, but may be real
1211 * buffers available, so go see; if any updated, rescan
1212 * (once)
1213 */
1214 if (!updated) {
1215 ipath_update_pio_bufs(dd);
1216 updated = 1;
1217 i = starti;
1218 goto rescan;
1219 }
1220 dd->ipath_upd_pio_shadow = 1;
1221 /*
1222 * not atomic, but if we lose one once in a while, that's OK
1223 */
1224 ipath_stats.sps_nopiobufs++;
1225 if (!(++dd->ipath_consec_nopiobuf % 100000)) {
1226 ipath_dbg(
1227 "%u pio sends with no bufavail; dmacopy: "
1228 "%llx %llx %llx %llx; shadow: "
1229 "%lx %lx %lx %lx\n",
1230 dd->ipath_consec_nopiobuf,
1231 (unsigned long long) le64_to_cpu(dma[0]),
1232 (unsigned long long) le64_to_cpu(dma[1]),
1233 (unsigned long long) le64_to_cpu(dma[2]),
1234 (unsigned long long) le64_to_cpu(dma[3]),
1235 shadow[0], shadow[1], shadow[2],
1236 shadow[3]);
1237 /*
1238 * 4 buffers per byte, 4 registers above, cover rest
1239 * below
1240 */
1241 if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
1242 (sizeof(shadow[0]) * 4 * 4))
1243 ipath_dbg("2nd group: dmacopy: %llx %llx "
1244 "%llx %llx; shadow: %lx %lx "
1245 "%lx %lx\n",
1246 (unsigned long long)
1247 le64_to_cpu(dma[4]),
1248 (unsigned long long)
1249 le64_to_cpu(dma[5]),
1250 (unsigned long long)
1251 le64_to_cpu(dma[6]),
1252 (unsigned long long)
1253 le64_to_cpu(dma[7]),
1254 shadow[4], shadow[5],
1255 shadow[6], shadow[7]);
1256 }
1257 buf = NULL;
1258 goto bail;
1259 }
1260
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001261 /*
1262 * set next starting place. Since it's just an optimization,
1263 * it doesn't matter who wins on this, so no locking
1264 */
1265 dd->ipath_lastpioindex = i + 1;
1266 if (dd->ipath_upd_pio_shadow)
1267 dd->ipath_upd_pio_shadow = 0;
1268 if (dd->ipath_consec_nopiobuf)
1269 dd->ipath_consec_nopiobuf = 0;
1270 if (i < dd->ipath_piobcnt2k)
1271 buf = (u32 __iomem *) (dd->ipath_pio2kbase +
1272 i * dd->ipath_palign);
1273 else
1274 buf = (u32 __iomem *)
1275 (dd->ipath_pio4kbase +
1276 (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
1277 ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
1278 i, (i < dd->ipath_piobcnt2k) ? 2 : 4, buf);
1279 if (pbufnum)
1280 *pbufnum = i;
1281
1282bail:
1283 return buf;
1284}
1285
1286/**
1287 * ipath_create_rcvhdrq - create a receive header queue
1288 * @dd: the infinipath device
1289 * @pd: the port data
1290 *
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001291 * this must be contiguous memory (from an i/o perspective), and must be
1292 * DMA'able (which means for some systems, it will go through an IOMMU,
1293 * or be forced into a low address range).
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001294 */
1295int ipath_create_rcvhdrq(struct ipath_devdata *dd,
1296 struct ipath_portdata *pd)
1297{
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001298 int ret = 0;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001299
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001300 if (!pd->port_rcvhdrq) {
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001301 dma_addr_t phys_hdrqtail;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001302 gfp_t gfp_flags = GFP_USER | __GFP_COMP;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001303 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
1304 sizeof(u32), PAGE_SIZE);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001305
1306 pd->port_rcvhdrq = dma_alloc_coherent(
1307 &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
1308 gfp_flags);
1309
1310 if (!pd->port_rcvhdrq) {
1311 ipath_dev_err(dd, "attempt to allocate %d bytes "
1312 "for port %u rcvhdrq failed\n",
1313 amt, pd->port_port);
1314 ret = -ENOMEM;
1315 goto bail;
1316 }
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001317 pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
1318 &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail, GFP_KERNEL);
1319 if (!pd->port_rcvhdrtail_kvaddr) {
1320 ipath_dev_err(dd, "attempt to allocate 1 page "
1321 "for port %u rcvhdrqtailaddr failed\n",
1322 pd->port_port);
1323 ret = -ENOMEM;
Bryan O'Sullivan221e3192006-09-28 08:59:58 -07001324 dma_free_coherent(&dd->pcidev->dev, amt,
1325 pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1326 pd->port_rcvhdrq = NULL;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001327 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);
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07001353 memset(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'Sullivan0fd41362006-08-25 11:24:34 -07001451 ipath_cdbg(VERBOSE, "Trying to move unit %u to %s, current ltstate "
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001452 "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
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -07001460 * they don't block MAD packets */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001461 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,
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07001806 pd->port_rcvhdrtail_kvaddr,
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001807 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 }
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07001825 kfree(pd->port_rcvegrbuf);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001826 pd->port_rcvegrbuf = NULL;
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07001827 kfree(pd->port_rcvegrbuf_phys);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001828 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);
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -07001843 vfree(pd->subport_uregbase);
1844 vfree(pd->subport_rcvegrbuf);
1845 vfree(pd->subport_rcvhdr_base);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001846 kfree(pd);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001847}
1848
Roland Dreierac2ae4c2006-04-19 11:40:12 -07001849static int __init infinipath_init(void)
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001850{
1851 int ret;
1852
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -07001853 ipath_dbg(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001854
1855 /*
1856 * These must be called before the driver is registered with
1857 * the PCI subsystem.
1858 */
1859 idr_init(&unit_table);
1860 if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
1861 ret = -ENOMEM;
1862 goto bail;
1863 }
1864
1865 ret = pci_register_driver(&ipath_driver);
1866 if (ret < 0) {
1867 printk(KERN_ERR IPATH_DRV_NAME
1868 ": Unable to register driver: error %d\n", -ret);
1869 goto bail_unit;
1870 }
1871
1872 ret = ipath_driver_create_group(&ipath_driver.driver);
1873 if (ret < 0) {
1874 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create driver "
1875 "sysfs entries: error %d\n", -ret);
1876 goto bail_pci;
1877 }
1878
1879 ret = ipath_init_ipathfs();
1880 if (ret < 0) {
1881 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
1882 "ipathfs: error %d\n", -ret);
1883 goto bail_group;
1884 }
1885
Bryan O'Sullivan98341f22006-08-25 11:24:36 -07001886 ret = ipath_diagpkt_add();
1887 if (ret < 0) {
1888 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
1889 "diag data device: error %d\n", -ret);
1890 goto bail_ipathfs;
1891 }
1892
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001893 goto bail;
1894
Bryan O'Sullivan98341f22006-08-25 11:24:36 -07001895bail_ipathfs:
1896 ipath_exit_ipathfs();
1897
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001898bail_group:
1899 ipath_driver_remove_group(&ipath_driver.driver);
1900
1901bail_pci:
1902 pci_unregister_driver(&ipath_driver);
1903
1904bail_unit:
1905 idr_destroy(&unit_table);
1906
1907bail:
1908 return ret;
1909}
1910
1911static void cleanup_device(struct ipath_devdata *dd)
1912{
1913 int port;
1914
1915 ipath_shutdown_device(dd);
1916
1917 if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
1918 /* can't do anything more with chip; needs re-init */
1919 *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
1920 if (dd->ipath_kregbase) {
1921 /*
1922 * if we haven't already cleaned up before these are
1923 * to ensure any register reads/writes "fail" until
1924 * re-init
1925 */
1926 dd->ipath_kregbase = NULL;
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001927 dd->ipath_uregbase = 0;
1928 dd->ipath_sregbase = 0;
1929 dd->ipath_cregbase = 0;
1930 dd->ipath_kregsize = 0;
1931 }
1932 ipath_disable_wc(dd);
1933 }
1934
1935 if (dd->ipath_pioavailregs_dma) {
1936 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
Bryan O'Sullivan076fafc2006-09-28 09:00:12 -07001937 dd->ipath_pioavailregs_dma,
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001938 dd->ipath_pioavailregs_phys);
1939 dd->ipath_pioavailregs_dma = NULL;
1940 }
Bryan O'Sullivan35783ec2006-07-01 04:36:15 -07001941 if (dd->ipath_dummy_hdrq) {
1942 dma_free_coherent(&dd->pcidev->dev,
1943 dd->ipath_pd[0]->port_rcvhdrq_size,
1944 dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
1945 dd->ipath_dummy_hdrq = NULL;
1946 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001947
1948 if (dd->ipath_pageshadow) {
1949 struct page **tmpp = dd->ipath_pageshadow;
1950 int i, cnt = 0;
1951
1952 ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
1953 "locked\n");
1954 for (port = 0; port < dd->ipath_cfgports; port++) {
1955 int port_tidbase = port * dd->ipath_rcvtidcnt;
1956 int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
1957 for (i = port_tidbase; i < maxtid; i++) {
1958 if (!tmpp[i])
1959 continue;
1960 ipath_release_user_pages(&tmpp[i], 1);
1961 tmpp[i] = NULL;
1962 cnt++;
1963 }
1964 }
1965 if (cnt) {
1966 ipath_stats.sps_pageunlocks += cnt;
1967 ipath_cdbg(VERBOSE, "There were still %u expTID "
1968 "entries locked\n", cnt);
1969 }
1970 if (ipath_stats.sps_pagelocks ||
1971 ipath_stats.sps_pageunlocks)
1972 ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
1973 "unlocked via ipath_m{un}lock\n",
1974 (unsigned long long)
1975 ipath_stats.sps_pagelocks,
1976 (unsigned long long)
1977 ipath_stats.sps_pageunlocks);
1978
1979 ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
1980 dd->ipath_pageshadow);
1981 vfree(dd->ipath_pageshadow);
1982 dd->ipath_pageshadow = NULL;
1983 }
1984
1985 /*
1986 * free any resources still in use (usually just kernel ports)
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001987 * at unload; we do for portcnt, not cfgports, because cfgports
1988 * could have changed while we were loaded.
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001989 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -07001990 for (port = 0; port < dd->ipath_portcnt; port++) {
1991 struct ipath_portdata *pd = dd->ipath_pd[port];
1992 dd->ipath_pd[port] = NULL;
1993 ipath_free_pddata(dd, pd);
1994 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08001995 kfree(dd->ipath_pd);
1996 /*
1997 * debuggability, in case some cleanup path tries to use it
1998 * after this
1999 */
2000 dd->ipath_pd = NULL;
2001}
2002
2003static void __exit infinipath_cleanup(void)
2004{
2005 struct ipath_devdata *dd, *tmp;
2006 unsigned long flags;
2007
Bryan O'Sullivan98341f22006-08-25 11:24:36 -07002008 ipath_diagpkt_remove();
2009
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002010 ipath_exit_ipathfs();
2011
2012 ipath_driver_remove_group(&ipath_driver.driver);
2013
2014 spin_lock_irqsave(&ipath_devs_lock, flags);
2015
2016 /*
2017 * turn off rcv, send, and interrupts for all ports, all drivers
2018 * should also hard reset the chip here?
2019 * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
2020 * for all versions of the driver, if they were allocated
2021 */
2022 list_for_each_entry_safe(dd, tmp, &ipath_dev_list, ipath_list) {
2023 spin_unlock_irqrestore(&ipath_devs_lock, flags);
2024
Bryan O'Sullivanc78f6412006-09-28 09:00:01 -07002025 if (dd->verbs_dev) {
2026 ipath_unregister_ib_device(dd->verbs_dev);
2027 dd->verbs_dev = NULL;
2028 }
2029
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002030 if (dd->ipath_kregbase)
2031 cleanup_device(dd);
2032
2033 if (dd->pcidev) {
2034 if (dd->pcidev->irq) {
2035 ipath_cdbg(VERBOSE,
2036 "unit %u free_irq of irq %x\n",
2037 dd->ipath_unit, dd->pcidev->irq);
2038 free_irq(dd->pcidev->irq, dd);
2039 } else
2040 ipath_dbg("irq is 0, not doing free_irq "
2041 "for unit %u\n", dd->ipath_unit);
Bryan O'Sullivanb0ff7c22006-05-23 11:32:33 -07002042
2043 /*
2044 * we check for NULL here, because it's outside
2045 * the kregbase check, and we need to call it
2046 * after the free_irq. Thus it's possible that
2047 * the function pointers were never initialized.
2048 */
2049 if (dd->ipath_f_cleanup)
2050 /* clean up chip-specific stuff */
2051 dd->ipath_f_cleanup(dd);
2052
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002053 dd->pcidev = NULL;
2054 }
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002055 spin_lock_irqsave(&ipath_devs_lock, flags);
2056 }
2057
2058 spin_unlock_irqrestore(&ipath_devs_lock, flags);
2059
2060 ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
2061 pci_unregister_driver(&ipath_driver);
2062
2063 idr_destroy(&unit_table);
2064}
2065
2066/**
2067 * ipath_reset_device - reset the chip if possible
2068 * @unit: the device to reset
2069 *
2070 * Whether or not reset is successful, we attempt to re-initialize the chip
2071 * (that is, much like a driver unload/reload). We clear the INITTED flag
2072 * so that the various entry points will fail until we reinitialize. For
2073 * now, we only allow this if no user ports are open that use chip resources
2074 */
2075int ipath_reset_device(int unit)
2076{
2077 int ret, i;
2078 struct ipath_devdata *dd = ipath_lookup(unit);
2079
2080 if (!dd) {
2081 ret = -ENODEV;
2082 goto bail;
2083 }
2084
2085 dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
2086
2087 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
2088 dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
2089 "not initialized or not present\n", unit);
2090 ret = -ENXIO;
2091 goto bail;
2092 }
2093
2094 if (dd->ipath_pd)
Bryan O'Sullivan23e86a42006-04-24 14:22:59 -07002095 for (i = 1; i < dd->ipath_cfgports; i++) {
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002096 if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
2097 ipath_dbg("unit %u port %d is in use "
2098 "(PID %u cmd %s), can't reset\n",
2099 unit, i,
2100 dd->ipath_pd[i]->port_pid,
2101 dd->ipath_pd[i]->port_comm);
2102 ret = -EBUSY;
2103 goto bail;
2104 }
2105 }
2106
2107 dd->ipath_flags &= ~IPATH_INITTED;
2108 ret = dd->ipath_f_reset(dd);
2109 if (ret != 1)
2110 ipath_dbg("reset was not successful\n");
2111 ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2112 unit);
2113 ret = ipath_init_chip(dd, 1);
2114 if (ret)
2115 ipath_dev_err(dd, "Reinitialize unit %u after "
2116 "reset failed with %d\n", unit, ret);
2117 else
2118 dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
2119 "resetting\n", unit);
2120
2121bail:
2122 return ret;
2123}
2124
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002125int ipath_set_rx_pol_inv(struct ipath_devdata *dd, u8 new_pol_inv)
2126{
2127 u64 val;
2128 if ( new_pol_inv > INFINIPATH_XGXS_RX_POL_MASK ) {
2129 return -1;
2130 }
2131 if ( dd->ipath_rx_pol_inv != new_pol_inv ) {
2132 dd->ipath_rx_pol_inv = new_pol_inv;
2133 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
2134 val &= ~(INFINIPATH_XGXS_RX_POL_MASK <<
Roland Dreier3cd96562006-09-22 15:22:46 -07002135 INFINIPATH_XGXS_RX_POL_SHIFT);
2136 val |= ((u64)dd->ipath_rx_pol_inv) <<
2137 INFINIPATH_XGXS_RX_POL_SHIFT;
Bryan O'Sullivan30fc5c32006-08-25 11:24:48 -07002138 ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
2139 }
2140 return 0;
2141}
Bryan O'Sullivan7bb206e2006-03-29 15:23:24 -08002142module_init(infinipath_init);
2143module_exit(infinipath_cleanup);