IB/ipath: Improved support for PowerPC
[safe/jmp/linux-2.6] / drivers / infiniband / hw / ipath / ipath_driver.c
1 /*
2  * Copyright (c) 2006 QLogic, Inc. All rights reserved.
3  * 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"
42 #include "ipath_verbs.h"
43 #include "ipath_common.h"
44
45 static void ipath_update_pio_bufs(struct ipath_devdata *);
46
47 const 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
54 #define DRIVER_LOAD_MSG "QLogic " IPATH_DRV_NAME " loaded: "
55 #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  */
61 const char ib_ipath_version[] = IPATH_IDSTR "\n";
62
63 static struct idr unit_table;
64 DEFINE_SPINLOCK(ipath_devs_lock);
65 LIST_HEAD(ipath_dev_list);
66
67 wait_queue_head_t ipath_state_wait;
68
69 unsigned ipath_debug = __IPATH_INFO;
70
71 module_param_named(debug, ipath_debug, uint, S_IWUSR | S_IRUGO);
72 MODULE_PARM_DESC(debug, "mask for debug prints");
73 EXPORT_SYMBOL_GPL(ipath_debug);
74
75 MODULE_LICENSE("GPL");
76 MODULE_AUTHOR("QLogic <support@pathscale.com>");
77 MODULE_DESCRIPTION("QLogic InfiniPath driver");
78
79 const char *ipath_ibcstatus_str[] = {
80         "Disabled",
81         "LinkUp",
82         "PollActive",
83         "PollQuiet",
84         "SleepDelay",
85         "SleepQuiet",
86         "LState6",              /* unused */
87         "LState7",              /* unused */
88         "CfgDebounce",
89         "CfgRcvfCfg",
90         "CfgWaitRmt",
91         "CfgIdle",
92         "RecovRetrain",
93         "LState0xD",            /* unused */
94         "RecovWaitRmt",
95         "RecovIdle",
96 };
97
98 static void __devexit ipath_remove_one(struct pci_dev *);
99 static 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
107 static const struct pci_device_id ipath_pci_tbl[] = {
108         { 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, }
111 };
112
113 MODULE_DEVICE_TABLE(pci, ipath_pci_tbl);
114
115 static 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
122
123 static 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
141 static 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         }
154         vfree(dd);
155 }
156
157 static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
158 {
159         unsigned long flags;
160         struct ipath_devdata *dd;
161         int ret;
162
163         if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
164                 dd = ERR_PTR(-ENOMEM);
165                 goto bail;
166         }
167
168         dd = vmalloc(sizeof(*dd));
169         if (!dd) {
170                 dd = ERR_PTR(-ENOMEM);
171                 goto bail;
172         }
173         memset(dd, 0, sizeof(*dd));
174         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
192 bail_unlock:
193         spin_unlock_irqrestore(&ipath_devs_lock, flags);
194
195 bail:
196         return dd;
197 }
198
199 static inline struct ipath_devdata *__ipath_lookup(int unit)
200 {
201         return idr_find(&unit_table, unit);
202 }
203
204 struct 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
216 int 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
251 /*
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
257 int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd)
258 {
259         return -EOPNOTSUPP;
260 }
261
262 void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd)
263 {
264 }
265
266 static 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
275         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);
280                 goto bail;
281         }
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) {
348                 /*
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) {
355                         dev_info(&pdev->dev,
356                                 "Unable to set DMA mask for unit %u: %d\n",
357                                 dd->ipath_unit, ret);
358                         goto bail_regions;
359                 }
360                 else {
361                         ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
362                         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);
378         }
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:
394                 ipath_init_iba6110_funcs(dd);
395                 break;
396         case PCI_DEVICE_ID_INFINIPATH_PE800:
397                 ipath_init_iba6120_funcs(dd);
398                 break;
399         default:
400                 ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
401                               "failing\n", ent->device);
402                 return -ENODEV;
403         }
404
405         for (j = 0; j < 6; j++) {
406                 if (!pdev->resource[j].start)
407                         continue;
408                 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));
412         }
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
431 #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
436         dd->ipath_kregbase = ioremap_nocache(addr, len);
437 #endif
438
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 */
449         ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
450                    addr, dd->ipath_kregbase);
451
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;
457         dd->ipath_lli_counter = 0;
458         dd->ipath_lli_errors = 0;
459
460         if (dd->ipath_f_bus(dd, pdev))
461                 ipath_dev_err(dd, "Failed to setup config space; "
462                               "continuing anyway\n");
463
464         /*
465          * set up our interrupt handler; IRQF_SHARED probably not needed,
466          * 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 {
474                 ret = request_irq(pdev->irq, ipath_intr, IRQF_SHARED,
475                                   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);
499         ipath_diag_add(dd);
500         ipath_register_ib_device(dd);
501
502         goto bail;
503
504 bail_iounmap:
505         iounmap((volatile void __iomem *) dd->ipath_kregbase);
506
507 bail_regions:
508         pci_release_regions(pdev);
509
510 bail_disable:
511         pci_disable_device(pdev);
512
513 bail_devdata:
514         ipath_free_devdata(pdev, dd);
515
516 bail:
517         return ret;
518 }
519
520 static 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);
529
530         if (dd->verbs_dev) {
531                 ipath_unregister_ib_device(dd->verbs_dev);
532                 dd->verbs_dev = NULL;
533         }
534
535         ipath_diag_remove(dd);
536         ipath_user_remove(dd);
537         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);
552 }
553
554 /* general driver use */
555 DEFINE_MUTEX(ipath_mutex);
556
557 static 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  */
570 void 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
609  * ipath_set_linkstate.  Returns 0 if state reached, otherwise
610  * -ETIMEDOUT state can have multiple states set, for any of several
611  * transitions.
612  */
613 static int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state,
614                                 int msecs)
615 {
616         dd->ipath_state_wanted = state;
617         wait_event_interruptible_timeout(ipath_state_wait,
618                                          (dd->ipath_flags & state),
619                                          msecs_to_jiffies(msecs));
620         dd->ipath_state_wanted = 0;
621
622         if (!(dd->ipath_flags & state)) {
623                 u64 val;
624                 ipath_cdbg(VERBOSE, "Didn't reach linkstate %s within %u"
625                            " ms\n",
626                            /* 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
641 void 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  */
716 static 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  */
755 static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum,
756                                      int err)
757 {
758         return dd->ipath_port0_skbinfo ?
759                 (void *) dd->ipath_port0_skbinfo[bufnum].skb->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  */
767 struct 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 2 extra bytes for ipath_ether data sent in the
782          * key header.  In order to keep everything dword aligned,
783          * we'll reserve 4 bytes.
784          */
785         len = dd->ipath_ibmaxlen + 4;
786
787         if (dd->ipath_flags & IPATH_4BYTE_TID) {
788                 /* We need a 2KB multiple alignment, and there is no way
789                  * to do it except to allocate extra and then skb_reserve
790                  * enough to bring it up to the right alignment.
791                  */
792                 len += 2047;
793         }
794
795         skb = __dev_alloc_skb(len, gfp_mask);
796         if (!skb) {
797                 ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
798                               len);
799                 goto bail;
800         }
801
802         skb_reserve(skb, 4);
803
804         if (dd->ipath_flags & IPATH_4BYTE_TID) {
805                 u32 una = (unsigned long)skb->data & 2047;
806                 if (una)
807                         skb_reserve(skb, 2048 - una);
808         }
809
810 bail:
811         return skb;
812 }
813
814 static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
815                              u32 eflags,
816                              u32 l,
817                              u32 etail,
818                              u64 *rc)
819 {
820         char emsg[128];
821         struct ipath_message_header *hdr;
822
823         get_rhf_errstring(eflags, emsg, sizeof emsg);
824         hdr = (struct ipath_message_header *)&rc[1];
825         ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
826                    "tlen=%x opcode=%x egridx=%x: %s\n",
827                    eflags, l,
828                    ipath_hdrget_rcv_type((__le32 *) rc),
829                    ipath_hdrget_length_in_bytes((__le32 *) rc),
830                    be32_to_cpu(hdr->bth[0]) >> 24,
831                    etail, emsg);
832
833         /* Count local link integrity errors. */
834         if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
835                 u8 n = (dd->ipath_ibcctrl >>
836                         INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
837                         INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
838
839                 if (++dd->ipath_lli_counter > n) {
840                         dd->ipath_lli_counter = 0;
841                         dd->ipath_lli_errors++;
842                 }
843         }
844 }
845
846 /*
847  * ipath_kreceive - receive a packet
848  * @dd: the infinipath device
849  *
850  * called from interrupt handler for errors or receive interrupt
851  */
852 void ipath_kreceive(struct ipath_devdata *dd)
853 {
854         u64 *rc;
855         void *ebuf;
856         const u32 rsize = dd->ipath_rcvhdrentsize;      /* words */
857         const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
858         u32 etail = -1, l, hdrqtail;
859         struct ipath_message_header *hdr;
860         u32 eflags, i, etype, tlen, pkttot = 0, updegr=0, reloop=0;
861         static u64 totcalls;    /* stats, may eventually remove */
862
863         if (!dd->ipath_hdrqtailptr) {
864                 ipath_dev_err(dd,
865                               "hdrqtailptr not set, can't do receives\n");
866                 goto bail;
867         }
868
869         /* There is already a thread processing this queue. */
870         if (test_and_set_bit(0, &dd->ipath_rcv_pending))
871                 goto bail;
872
873         l = dd->ipath_port0head;
874         hdrqtail = (u32) le64_to_cpu(*dd->ipath_hdrqtailptr);
875         if (l == hdrqtail)
876                 goto done;
877
878 reloop:
879         for (i = 0; l != hdrqtail; i++) {
880                 u32 qp;
881                 u8 *bthbytes;
882
883                 rc = (u64 *) (dd->ipath_pd[0]->port_rcvhdrq + (l << 2));
884                 hdr = (struct ipath_message_header *)&rc[1];
885                 /*
886                  * could make a network order version of IPATH_KD_QP, and
887                  * do the obvious shift before masking to speed this up.
888                  */
889                 qp = ntohl(hdr->bth[1]) & 0xffffff;
890                 bthbytes = (u8 *) hdr->bth;
891
892                 eflags = ipath_hdrget_err_flags((__le32 *) rc);
893                 etype = ipath_hdrget_rcv_type((__le32 *) rc);
894                 /* total length */
895                 tlen = ipath_hdrget_length_in_bytes((__le32 *) rc);
896                 ebuf = NULL;
897                 if (etype != RCVHQ_RCV_TYPE_EXPECTED) {
898                         /*
899                          * it turns out that the chips uses an eager buffer
900                          * for all non-expected packets, whether it "needs"
901                          * one or not.  So always get the index, but don't
902                          * set ebuf (so we try to copy data) unless the
903                          * length requires it.
904                          */
905                         etail = ipath_hdrget_index((__le32 *) rc);
906                         if (tlen > sizeof(*hdr) ||
907                             etype == RCVHQ_RCV_TYPE_NON_KD)
908                                 ebuf = ipath_get_egrbuf(dd, etail, 0);
909                 }
910
911                 /*
912                  * both tiderr and ipathhdrerr are set for all plain IB
913                  * packets; only ipathhdrerr should be set.
914                  */
915
916                 if (etype != RCVHQ_RCV_TYPE_NON_KD && etype !=
917                     RCVHQ_RCV_TYPE_ERROR && ipath_hdrget_ipath_ver(
918                             hdr->iph.ver_port_tid_offset) !=
919                     IPS_PROTO_VERSION) {
920                         ipath_cdbg(PKT, "Bad InfiniPath protocol version "
921                                    "%x\n", etype);
922                 }
923
924                 if (unlikely(eflags))
925                         ipath_rcv_hdrerr(dd, eflags, l, etail, rc);
926                 else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
927                         ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
928                         if (dd->ipath_lli_counter)
929                                 dd->ipath_lli_counter--;
930                         ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
931                                    "qp=%x), len %x; ignored\n",
932                                    etype, bthbytes[0], qp, tlen);
933                 }
934                 else if (etype == RCVHQ_RCV_TYPE_EAGER)
935                         ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
936                                    "qp=%x), len %x; ignored\n",
937                                    etype, bthbytes[0], qp, tlen);
938                 else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
939                         ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
940                                   be32_to_cpu(hdr->bth[0]) & 0xff);
941                 else {
942                         /*
943                          * error packet, type of error  unknown.
944                          * Probably type 3, but we don't know, so don't
945                          * even try to print the opcode, etc.
946                          */
947                         ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
948                                   "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
949                                   "hdr %llx %llx %llx %llx %llx\n",
950                                   etail, tlen, (unsigned long) rc, l,
951                                   (unsigned long long) rc[0],
952                                   (unsigned long long) rc[1],
953                                   (unsigned long long) rc[2],
954                                   (unsigned long long) rc[3],
955                                   (unsigned long long) rc[4],
956                                   (unsigned long long) rc[5]);
957                 }
958                 l += rsize;
959                 if (l >= maxcnt)
960                         l = 0;
961                 if (etype != RCVHQ_RCV_TYPE_EXPECTED)
962                     updegr = 1;
963                 /*
964                  * update head regs on last packet, and every 16 packets.
965                  * Reduce bus traffic, while still trying to prevent
966                  * rcvhdrq overflows, for when the queue is nearly full
967                  */
968                 if (l == hdrqtail || (i && !(i&0xf))) {
969                         u64 lval;
970                         if (l == hdrqtail)
971                                 /* request IBA6120 interrupt only on last */
972                                 lval = dd->ipath_rhdrhead_intr_off | l;
973                         else
974                                 lval = l;
975                         (void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
976                         if (updegr) {
977                                 (void)ipath_write_ureg(dd, ur_rcvegrindexhead,
978                                                        etail, 0);
979                                 updegr = 0;
980                         }
981                 }
982         }
983
984         if (!dd->ipath_rhdrhead_intr_off && !reloop) {
985                 /* IBA6110 workaround; we can have a race clearing chip
986                  * interrupt with another interrupt about to be delivered,
987                  * and can clear it before it is delivered on the GPIO
988                  * workaround.  By doing the extra check here for the
989                  * in-memory tail register updating while we were doing
990                  * earlier packets, we "almost" guarantee we have covered
991                  * that case.
992                  */
993                 u32 hqtail = (u32)le64_to_cpu(*dd->ipath_hdrqtailptr);
994                 if (hqtail != hdrqtail) {
995                         hdrqtail = hqtail;
996                         reloop = 1; /* loop 1 extra time at most */
997                         goto reloop;
998                 }
999         }
1000
1001         pkttot += i;
1002
1003         dd->ipath_port0head = l;
1004
1005         if (pkttot > ipath_stats.sps_maxpkts_call)
1006                 ipath_stats.sps_maxpkts_call = pkttot;
1007         ipath_stats.sps_port0pkts += pkttot;
1008         ipath_stats.sps_avgpkts_call =
1009                 ipath_stats.sps_port0pkts / ++totcalls;
1010
1011 done:
1012         clear_bit(0, &dd->ipath_rcv_pending);
1013         smp_mb__after_clear_bit();
1014
1015 bail:;
1016 }
1017
1018 /**
1019  * ipath_update_pio_bufs - update shadow copy of the PIO availability map
1020  * @dd: the infinipath device
1021  *
1022  * called whenever our local copy indicates we have run out of send buffers
1023  * NOTE: This can be called from interrupt context by some code
1024  * and from non-interrupt context by ipath_getpiobuf().
1025  */
1026
1027 static void ipath_update_pio_bufs(struct ipath_devdata *dd)
1028 {
1029         unsigned long flags;
1030         int i;
1031         const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
1032
1033         /* If the generation (check) bits have changed, then we update the
1034          * busy bit for the corresponding PIO buffer.  This algorithm will
1035          * modify positions to the value they already have in some cases
1036          * (i.e., no change), but it's faster than changing only the bits
1037          * that have changed.
1038          *
1039          * We would like to do this atomicly, to avoid spinlocks in the
1040          * critical send path, but that's not really possible, given the
1041          * type of changes, and that this routine could be called on
1042          * multiple cpu's simultaneously, so we lock in this routine only,
1043          * to avoid conflicting updates; all we change is the shadow, and
1044          * it's a single 64 bit memory location, so by definition the update
1045          * is atomic in terms of what other cpu's can see in testing the
1046          * bits.  The spin_lock overhead isn't too bad, since it only
1047          * happens when all buffers are in use, so only cpu overhead, not
1048          * latency or bandwidth is affected.
1049          */
1050 #define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
1051         if (!dd->ipath_pioavailregs_dma) {
1052                 ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
1053                 return;
1054         }
1055         if (ipath_debug & __IPATH_VERBDBG) {
1056                 /* only if packet debug and verbose */
1057                 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1058                 unsigned long *shadow = dd->ipath_pioavailshadow;
1059
1060                 ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
1061                            "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
1062                            "s3=%lx\n",
1063                            (unsigned long long) le64_to_cpu(dma[0]),
1064                            shadow[0],
1065                            (unsigned long long) le64_to_cpu(dma[1]),
1066                            shadow[1],
1067                            (unsigned long long) le64_to_cpu(dma[2]),
1068                            shadow[2],
1069                            (unsigned long long) le64_to_cpu(dma[3]),
1070                            shadow[3]);
1071                 if (piobregs > 4)
1072                         ipath_cdbg(
1073                                 PKT, "2nd group, dma4=%llx shad4=%lx, "
1074                                 "d5=%llx s5=%lx, d6=%llx s6=%lx, "
1075                                 "d7=%llx s7=%lx\n",
1076                                 (unsigned long long) le64_to_cpu(dma[4]),
1077                                 shadow[4],
1078                                 (unsigned long long) le64_to_cpu(dma[5]),
1079                                 shadow[5],
1080                                 (unsigned long long) le64_to_cpu(dma[6]),
1081                                 shadow[6],
1082                                 (unsigned long long) le64_to_cpu(dma[7]),
1083                                 shadow[7]);
1084         }
1085         spin_lock_irqsave(&ipath_pioavail_lock, flags);
1086         for (i = 0; i < piobregs; i++) {
1087                 u64 pchbusy, pchg, piov, pnew;
1088                 /*
1089                  * Chip Errata: bug 6641; even and odd qwords>3 are swapped
1090                  */
1091                 if (i > 3) {
1092                         if (i & 1)
1093                                 piov = le64_to_cpu(
1094                                         dd->ipath_pioavailregs_dma[i - 1]);
1095                         else
1096                                 piov = le64_to_cpu(
1097                                         dd->ipath_pioavailregs_dma[i + 1]);
1098                 } else
1099                         piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
1100                 pchg = _IPATH_ALL_CHECKBITS &
1101                         ~(dd->ipath_pioavailshadow[i] ^ piov);
1102                 pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
1103                 if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
1104                         pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
1105                         pnew |= piov & pchbusy;
1106                         dd->ipath_pioavailshadow[i] = pnew;
1107                 }
1108         }
1109         spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1110 }
1111
1112 /**
1113  * ipath_setrcvhdrsize - set the receive header size
1114  * @dd: the infinipath device
1115  * @rhdrsize: the receive header size
1116  *
1117  * called from user init code, and also layered driver init
1118  */
1119 int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
1120 {
1121         int ret = 0;
1122
1123         if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
1124                 if (dd->ipath_rcvhdrsize != rhdrsize) {
1125                         dev_info(&dd->pcidev->dev,
1126                                  "Error: can't set protocol header "
1127                                  "size %u, already %u\n",
1128                                  rhdrsize, dd->ipath_rcvhdrsize);
1129                         ret = -EAGAIN;
1130                 } else
1131                         ipath_cdbg(VERBOSE, "Reuse same protocol header "
1132                                    "size %u\n", dd->ipath_rcvhdrsize);
1133         } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
1134                                (sizeof(u64) / sizeof(u32)))) {
1135                 ipath_dbg("Error: can't set protocol header size %u "
1136                           "(> max %u)\n", rhdrsize,
1137                           dd->ipath_rcvhdrentsize -
1138                           (u32) (sizeof(u64) / sizeof(u32)));
1139                 ret = -EOVERFLOW;
1140         } else {
1141                 dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
1142                 dd->ipath_rcvhdrsize = rhdrsize;
1143                 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
1144                                  dd->ipath_rcvhdrsize);
1145                 ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
1146                            dd->ipath_rcvhdrsize);
1147         }
1148         return ret;
1149 }
1150
1151 /**
1152  * ipath_getpiobuf - find an available pio buffer
1153  * @dd: the infinipath device
1154  * @pbufnum: the buffer number is placed here
1155  *
1156  * do appropriate marking as busy, etc.
1157  * returns buffer number if one found (>=0), negative number is error.
1158  * Used by ipath_layer_send
1159  */
1160 u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 * pbufnum)
1161 {
1162         int i, j, starti, updated = 0;
1163         unsigned piobcnt, iter;
1164         unsigned long flags;
1165         unsigned long *shadow = dd->ipath_pioavailshadow;
1166         u32 __iomem *buf;
1167
1168         piobcnt = (unsigned)(dd->ipath_piobcnt2k
1169                              + dd->ipath_piobcnt4k);
1170         starti = dd->ipath_lastport_piobuf;
1171         iter = piobcnt - starti;
1172         if (dd->ipath_upd_pio_shadow) {
1173                 /*
1174                  * Minor optimization.  If we had no buffers on last call,
1175                  * start out by doing the update; continue and do scan even
1176                  * if no buffers were updated, to be paranoid
1177                  */
1178                 ipath_update_pio_bufs(dd);
1179                 /* we scanned here, don't do it at end of scan */
1180                 updated = 1;
1181                 i = starti;
1182         } else
1183                 i = dd->ipath_lastpioindex;
1184
1185 rescan:
1186         /*
1187          * while test_and_set_bit() is atomic, we do that and then the
1188          * change_bit(), and the pair is not.  See if this is the cause
1189          * of the remaining armlaunch errors.
1190          */
1191         spin_lock_irqsave(&ipath_pioavail_lock, flags);
1192         for (j = 0; j < iter; j++, i++) {
1193                 if (i >= piobcnt)
1194                         i = starti;
1195                 /*
1196                  * To avoid bus lock overhead, we first find a candidate
1197                  * buffer, then do the test and set, and continue if that
1198                  * fails.
1199                  */
1200                 if (test_bit((2 * i) + 1, shadow) ||
1201                     test_and_set_bit((2 * i) + 1, shadow))
1202                         continue;
1203                 /* flip generation bit */
1204                 change_bit(2 * i, shadow);
1205                 break;
1206         }
1207         spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
1208
1209         if (j == iter) {
1210                 volatile __le64 *dma = dd->ipath_pioavailregs_dma;
1211
1212                 /*
1213                  * first time through; shadow exhausted, but may be real
1214                  * buffers available, so go see; if any updated, rescan
1215                  * (once)
1216                  */
1217                 if (!updated) {
1218                         ipath_update_pio_bufs(dd);
1219                         updated = 1;
1220                         i = starti;
1221                         goto rescan;
1222                 }
1223                 dd->ipath_upd_pio_shadow = 1;
1224                 /*
1225                  * not atomic, but if we lose one once in a while, that's OK
1226                  */
1227                 ipath_stats.sps_nopiobufs++;
1228                 if (!(++dd->ipath_consec_nopiobuf % 100000)) {
1229                         ipath_dbg(
1230                                 "%u pio sends with no bufavail; dmacopy: "
1231                                 "%llx %llx %llx %llx; shadow:  "
1232                                 "%lx %lx %lx %lx\n",
1233                                 dd->ipath_consec_nopiobuf,
1234                                 (unsigned long long) le64_to_cpu(dma[0]),
1235                                 (unsigned long long) le64_to_cpu(dma[1]),
1236                                 (unsigned long long) le64_to_cpu(dma[2]),
1237                                 (unsigned long long) le64_to_cpu(dma[3]),
1238                                 shadow[0], shadow[1], shadow[2],
1239                                 shadow[3]);
1240                         /*
1241                          * 4 buffers per byte, 4 registers above, cover rest
1242                          * below
1243                          */
1244                         if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
1245                             (sizeof(shadow[0]) * 4 * 4))
1246                                 ipath_dbg("2nd group: dmacopy: %llx %llx "
1247                                           "%llx %llx; shadow: %lx %lx "
1248                                           "%lx %lx\n",
1249                                           (unsigned long long)
1250                                           le64_to_cpu(dma[4]),
1251                                           (unsigned long long)
1252                                           le64_to_cpu(dma[5]),
1253                                           (unsigned long long)
1254                                           le64_to_cpu(dma[6]),
1255                                           (unsigned long long)
1256                                           le64_to_cpu(dma[7]),
1257                                           shadow[4], shadow[5],
1258                                           shadow[6], shadow[7]);
1259                 }
1260                 buf = NULL;
1261                 goto bail;
1262         }
1263
1264         /*
1265          * set next starting place.  Since it's just an optimization,
1266          * it doesn't matter who wins on this, so no locking
1267          */
1268         dd->ipath_lastpioindex = i + 1;
1269         if (dd->ipath_upd_pio_shadow)
1270                 dd->ipath_upd_pio_shadow = 0;
1271         if (dd->ipath_consec_nopiobuf)
1272                 dd->ipath_consec_nopiobuf = 0;
1273         if (i < dd->ipath_piobcnt2k)
1274                 buf = (u32 __iomem *) (dd->ipath_pio2kbase +
1275                                        i * dd->ipath_palign);
1276         else
1277                 buf = (u32 __iomem *)
1278                         (dd->ipath_pio4kbase +
1279                          (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
1280         ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
1281                    i, (i < dd->ipath_piobcnt2k) ? 2 : 4, buf);
1282         if (pbufnum)
1283                 *pbufnum = i;
1284
1285 bail:
1286         return buf;
1287 }
1288
1289 /**
1290  * ipath_create_rcvhdrq - create a receive header queue
1291  * @dd: the infinipath device
1292  * @pd: the port data
1293  *
1294  * this must be contiguous memory (from an i/o perspective), and must be
1295  * DMA'able (which means for some systems, it will go through an IOMMU,
1296  * or be forced into a low address range).
1297  */
1298 int ipath_create_rcvhdrq(struct ipath_devdata *dd,
1299                          struct ipath_portdata *pd)
1300 {
1301         int ret = 0;
1302
1303         if (!pd->port_rcvhdrq) {
1304                 dma_addr_t phys_hdrqtail;
1305                 gfp_t gfp_flags = GFP_USER | __GFP_COMP;
1306                 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
1307                                 sizeof(u32), PAGE_SIZE);
1308
1309                 pd->port_rcvhdrq = dma_alloc_coherent(
1310                         &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
1311                         gfp_flags);
1312
1313                 if (!pd->port_rcvhdrq) {
1314                         ipath_dev_err(dd, "attempt to allocate %d bytes "
1315                                       "for port %u rcvhdrq failed\n",
1316                                       amt, pd->port_port);
1317                         ret = -ENOMEM;
1318                         goto bail;
1319                 }
1320                 pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
1321                         &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail, GFP_KERNEL);
1322                 if (!pd->port_rcvhdrtail_kvaddr) {
1323                         ipath_dev_err(dd, "attempt to allocate 1 page "
1324                                       "for port %u rcvhdrqtailaddr failed\n",
1325                                       pd->port_port);
1326                         ret = -ENOMEM;
1327                         dma_free_coherent(&dd->pcidev->dev, amt,
1328                                           pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1329                         pd->port_rcvhdrq = NULL;
1330                         goto bail;
1331                 }
1332                 pd->port_rcvhdrqtailaddr_phys = phys_hdrqtail;
1333
1334                 pd->port_rcvhdrq_size = amt;
1335
1336                 ipath_cdbg(VERBOSE, "%d pages at %p (phys %lx) size=%lu "
1337                            "for port %u rcvhdr Q\n",
1338                            amt >> PAGE_SHIFT, pd->port_rcvhdrq,
1339                            (unsigned long) pd->port_rcvhdrq_phys,
1340                            (unsigned long) pd->port_rcvhdrq_size,
1341                            pd->port_port);
1342
1343                 ipath_cdbg(VERBOSE, "port %d hdrtailaddr, %llx physical\n",
1344                            pd->port_port,
1345                            (unsigned long long) phys_hdrqtail);
1346         }
1347         else
1348                 ipath_cdbg(VERBOSE, "reuse port %d rcvhdrq @%p %llx phys; "
1349                            "hdrtailaddr@%p %llx physical\n",
1350                            pd->port_port, pd->port_rcvhdrq,
1351                            (unsigned long long) pd->port_rcvhdrq_phys,
1352                            pd->port_rcvhdrtail_kvaddr, (unsigned long long)
1353                            pd->port_rcvhdrqtailaddr_phys);
1354
1355         /* clear for security and sanity on each use */
1356         memset(pd->port_rcvhdrq, 0, pd->port_rcvhdrq_size);
1357         memset(pd->port_rcvhdrtail_kvaddr, 0, PAGE_SIZE);
1358
1359         /*
1360          * tell chip each time we init it, even if we are re-using previous
1361          * memory (we zero the register at process close)
1362          */
1363         ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdrtailaddr,
1364                               pd->port_port, pd->port_rcvhdrqtailaddr_phys);
1365         ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdraddr,
1366                               pd->port_port, pd->port_rcvhdrq_phys);
1367
1368         ret = 0;
1369 bail:
1370         return ret;
1371 }
1372
1373 int ipath_waitfor_complete(struct ipath_devdata *dd, ipath_kreg reg_id,
1374                            u64 bits_to_wait_for, u64 * valp)
1375 {
1376         unsigned long timeout;
1377         u64 lastval, val;
1378         int ret;
1379
1380         lastval = ipath_read_kreg64(dd, reg_id);
1381         /* wait a ridiculously long time */
1382         timeout = jiffies + msecs_to_jiffies(5);
1383         do {
1384                 val = ipath_read_kreg64(dd, reg_id);
1385                 /* set so they have something, even on failures. */
1386                 *valp = val;
1387                 if ((val & bits_to_wait_for) == bits_to_wait_for) {
1388                         ret = 0;
1389                         break;
1390                 }
1391                 if (val != lastval)
1392                         ipath_cdbg(VERBOSE, "Changed from %llx to %llx, "
1393                                    "waiting for %llx bits\n",
1394                                    (unsigned long long) lastval,
1395                                    (unsigned long long) val,
1396                                    (unsigned long long) bits_to_wait_for);
1397                 cond_resched();
1398                 if (time_after(jiffies, timeout)) {
1399                         ipath_dbg("Didn't get bits %llx in register 0x%x, "
1400                                   "got %llx\n",
1401                                   (unsigned long long) bits_to_wait_for,
1402                                   reg_id, (unsigned long long) *valp);
1403                         ret = -ENODEV;
1404                         break;
1405                 }
1406         } while (1);
1407
1408         return ret;
1409 }
1410
1411 /**
1412  * ipath_waitfor_mdio_cmdready - wait for last command to complete
1413  * @dd: the infinipath device
1414  *
1415  * Like ipath_waitfor_complete(), but we wait for the CMDVALID bit to go
1416  * away indicating the last command has completed.  It doesn't return data
1417  */
1418 int ipath_waitfor_mdio_cmdready(struct ipath_devdata *dd)
1419 {
1420         unsigned long timeout;
1421         u64 val;
1422         int ret;
1423
1424         /* wait a ridiculously long time */
1425         timeout = jiffies + msecs_to_jiffies(5);
1426         do {
1427                 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_mdio);
1428                 if (!(val & IPATH_MDIO_CMDVALID)) {
1429                         ret = 0;
1430                         break;
1431                 }
1432                 cond_resched();
1433                 if (time_after(jiffies, timeout)) {
1434                         ipath_dbg("CMDVALID stuck in mdio reg? (%llx)\n",
1435                                   (unsigned long long) val);
1436                         ret = -ENODEV;
1437                         break;
1438                 }
1439         } while (1);
1440
1441         return ret;
1442 }
1443
1444 static void ipath_set_ib_lstate(struct ipath_devdata *dd, int which)
1445 {
1446         static const char *what[4] = {
1447                 [0] = "DOWN",
1448                 [INFINIPATH_IBCC_LINKCMD_INIT] = "INIT",
1449                 [INFINIPATH_IBCC_LINKCMD_ARMED] = "ARMED",
1450                 [INFINIPATH_IBCC_LINKCMD_ACTIVE] = "ACTIVE"
1451         };
1452         int linkcmd = (which >> INFINIPATH_IBCC_LINKCMD_SHIFT) &
1453                         INFINIPATH_IBCC_LINKCMD_MASK;
1454
1455         ipath_cdbg(VERBOSE, "Trying to move unit %u to %s, current ltstate "
1456                    "is %s\n", dd->ipath_unit,
1457                    what[linkcmd],
1458                    ipath_ibcstatus_str[
1459                            (ipath_read_kreg64
1460                             (dd, dd->ipath_kregs->kr_ibcstatus) >>
1461                             INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
1462                            INFINIPATH_IBCS_LINKTRAININGSTATE_MASK]);
1463         /* flush all queued sends when going to DOWN or INIT, to be sure that
1464          * they don't block MAD packets */
1465         if (!linkcmd || linkcmd == INFINIPATH_IBCC_LINKCMD_INIT) {
1466                 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1467                                  INFINIPATH_S_ABORT);
1468                 ipath_disarm_piobufs(dd, dd->ipath_lastport_piobuf,
1469                                     (unsigned)(dd->ipath_piobcnt2k +
1470                                     dd->ipath_piobcnt4k) -
1471                                     dd->ipath_lastport_piobuf);
1472         }
1473
1474         ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1475                          dd->ipath_ibcctrl | which);
1476 }
1477
1478 int ipath_set_linkstate(struct ipath_devdata *dd, u8 newstate)
1479 {
1480         u32 lstate;
1481         int ret;
1482
1483         switch (newstate) {
1484         case IPATH_IB_LINKDOWN:
1485                 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_POLL <<
1486                                     INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1487                 /* don't wait */
1488                 ret = 0;
1489                 goto bail;
1490
1491         case IPATH_IB_LINKDOWN_SLEEP:
1492                 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_SLEEP <<
1493                                     INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1494                 /* don't wait */
1495                 ret = 0;
1496                 goto bail;
1497
1498         case IPATH_IB_LINKDOWN_DISABLE:
1499                 ipath_set_ib_lstate(dd,
1500                                     INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1501                                     INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1502                 /* don't wait */
1503                 ret = 0;
1504                 goto bail;
1505
1506         case IPATH_IB_LINKINIT:
1507                 if (dd->ipath_flags & IPATH_LINKINIT) {
1508                         ret = 0;
1509                         goto bail;
1510                 }
1511                 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_INIT <<
1512                                     INFINIPATH_IBCC_LINKCMD_SHIFT);
1513                 lstate = IPATH_LINKINIT;
1514                 break;
1515
1516         case IPATH_IB_LINKARM:
1517                 if (dd->ipath_flags & IPATH_LINKARMED) {
1518                         ret = 0;
1519                         goto bail;
1520                 }
1521                 if (!(dd->ipath_flags &
1522                       (IPATH_LINKINIT | IPATH_LINKACTIVE))) {
1523                         ret = -EINVAL;
1524                         goto bail;
1525                 }
1526                 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ARMED <<
1527                                     INFINIPATH_IBCC_LINKCMD_SHIFT);
1528                 /*
1529                  * Since the port can transition to ACTIVE by receiving
1530                  * a non VL 15 packet, wait for either state.
1531                  */
1532                 lstate = IPATH_LINKARMED | IPATH_LINKACTIVE;
1533                 break;
1534
1535         case IPATH_IB_LINKACTIVE:
1536                 if (dd->ipath_flags & IPATH_LINKACTIVE) {
1537                         ret = 0;
1538                         goto bail;
1539                 }
1540                 if (!(dd->ipath_flags & IPATH_LINKARMED)) {
1541                         ret = -EINVAL;
1542                         goto bail;
1543                 }
1544                 ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ACTIVE <<
1545                                     INFINIPATH_IBCC_LINKCMD_SHIFT);
1546                 lstate = IPATH_LINKACTIVE;
1547                 break;
1548
1549         default:
1550                 ipath_dbg("Invalid linkstate 0x%x requested\n", newstate);
1551                 ret = -EINVAL;
1552                 goto bail;
1553         }
1554         ret = ipath_wait_linkstate(dd, lstate, 2000);
1555
1556 bail:
1557         return ret;
1558 }
1559
1560 /**
1561  * ipath_set_mtu - set the MTU
1562  * @dd: the infinipath device
1563  * @arg: the new MTU
1564  *
1565  * we can handle "any" incoming size, the issue here is whether we
1566  * need to restrict our outgoing size.   For now, we don't do any
1567  * sanity checking on this, and we don't deal with what happens to
1568  * programs that are already running when the size changes.
1569  * NOTE: changing the MTU will usually cause the IBC to go back to
1570  * link initialize (IPATH_IBSTATE_INIT) state...
1571  */
1572 int ipath_set_mtu(struct ipath_devdata *dd, u16 arg)
1573 {
1574         u32 piosize;
1575         int changed = 0;
1576         int ret;
1577
1578         /*
1579          * mtu is IB data payload max.  It's the largest power of 2 less
1580          * than piosize (or even larger, since it only really controls the
1581          * largest we can receive; we can send the max of the mtu and
1582          * piosize).  We check that it's one of the valid IB sizes.
1583          */
1584         if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
1585             arg != 4096) {
1586                 ipath_dbg("Trying to set invalid mtu %u, failing\n", arg);
1587                 ret = -EINVAL;
1588                 goto bail;
1589         }
1590         if (dd->ipath_ibmtu == arg) {
1591                 ret = 0;        /* same as current */
1592                 goto bail;
1593         }
1594
1595         piosize = dd->ipath_ibmaxlen;
1596         dd->ipath_ibmtu = arg;
1597
1598         if (arg >= (piosize - IPATH_PIO_MAXIBHDR)) {
1599                 /* Only if it's not the initial value (or reset to it) */
1600                 if (piosize != dd->ipath_init_ibmaxlen) {
1601                         dd->ipath_ibmaxlen = piosize;
1602                         changed = 1;
1603                 }
1604         } else if ((arg + IPATH_PIO_MAXIBHDR) != dd->ipath_ibmaxlen) {
1605                 piosize = arg + IPATH_PIO_MAXIBHDR;
1606                 ipath_cdbg(VERBOSE, "ibmaxlen was 0x%x, setting to 0x%x "
1607                            "(mtu 0x%x)\n", dd->ipath_ibmaxlen, piosize,
1608                            arg);
1609                 dd->ipath_ibmaxlen = piosize;
1610                 changed = 1;
1611         }
1612
1613         if (changed) {
1614                 /*
1615                  * set the IBC maxpktlength to the size of our pio
1616                  * buffers in words
1617                  */
1618                 u64 ibc = dd->ipath_ibcctrl;
1619                 ibc &= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK <<
1620                          INFINIPATH_IBCC_MAXPKTLEN_SHIFT);
1621
1622                 piosize = piosize - 2 * sizeof(u32);    /* ignore pbc */
1623                 dd->ipath_ibmaxlen = piosize;
1624                 piosize /= sizeof(u32); /* in words */
1625                 /*
1626                  * for ICRC, which we only send in diag test pkt mode, and
1627                  * we don't need to worry about that for mtu
1628                  */
1629                 piosize += 1;
1630
1631                 ibc |= piosize << INFINIPATH_IBCC_MAXPKTLEN_SHIFT;
1632                 dd->ipath_ibcctrl = ibc;
1633                 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
1634                                  dd->ipath_ibcctrl);
1635                 dd->ipath_f_tidtemplate(dd);
1636         }
1637
1638         ret = 0;
1639
1640 bail:
1641         return ret;
1642 }
1643
1644 int ipath_set_lid(struct ipath_devdata *dd, u32 arg, u8 lmc)
1645 {
1646         dd->ipath_lid = arg;
1647         dd->ipath_lmc = lmc;
1648
1649         return 0;
1650 }
1651
1652 /**
1653  * ipath_read_kreg64_port - read a device's per-port 64-bit kernel register
1654  * @dd: the infinipath device
1655  * @regno: the register number to read
1656  * @port: the port containing the register
1657  *
1658  * Registers that vary with the chip implementation constants (port)
1659  * use this routine.
1660  */
1661 u64 ipath_read_kreg64_port(const struct ipath_devdata *dd, ipath_kreg regno,
1662                            unsigned port)
1663 {
1664         u16 where;
1665
1666         if (port < dd->ipath_portcnt &&
1667             (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1668              regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1669                 where = regno + port;
1670         else
1671                 where = -1;
1672
1673         return ipath_read_kreg64(dd, where);
1674 }
1675
1676 /**
1677  * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
1678  * @dd: the infinipath device
1679  * @regno: the register number to write
1680  * @port: the port containing the register
1681  * @value: the value to write
1682  *
1683  * Registers that vary with the chip implementation constants (port)
1684  * use this routine.
1685  */
1686 void ipath_write_kreg_port(const struct ipath_devdata *dd, ipath_kreg regno,
1687                           unsigned port, u64 value)
1688 {
1689         u16 where;
1690
1691         if (port < dd->ipath_portcnt &&
1692             (regno == dd->ipath_kregs->kr_rcvhdraddr ||
1693              regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
1694                 where = regno + port;
1695         else
1696                 where = -1;
1697
1698         ipath_write_kreg(dd, where, value);
1699 }
1700
1701 /**
1702  * ipath_shutdown_device - shut down a device
1703  * @dd: the infinipath device
1704  *
1705  * This is called to make the device quiet when we are about to
1706  * unload the driver, and also when the device is administratively
1707  * disabled.   It does not free any data structures.
1708  * Everything it does has to be setup again by ipath_init_chip(dd,1)
1709  */
1710 void ipath_shutdown_device(struct ipath_devdata *dd)
1711 {
1712         u64 val;
1713
1714         ipath_dbg("Shutting down the device\n");
1715
1716         dd->ipath_flags |= IPATH_LINKUNK;
1717         dd->ipath_flags &= ~(IPATH_INITTED | IPATH_LINKDOWN |
1718                              IPATH_LINKINIT | IPATH_LINKARMED |
1719                              IPATH_LINKACTIVE);
1720         *dd->ipath_statusp &= ~(IPATH_STATUS_IB_CONF |
1721                                 IPATH_STATUS_IB_READY);
1722
1723         /* mask interrupts, but not errors */
1724         ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
1725
1726         dd->ipath_rcvctrl = 0;
1727         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
1728                          dd->ipath_rcvctrl);
1729
1730         /*
1731          * gracefully stop all sends allowing any in progress to trickle out
1732          * first.
1733          */
1734         ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, 0ULL);
1735         /* flush it */
1736         val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1737         /*
1738          * enough for anything that's going to trickle out to have actually
1739          * done so.
1740          */
1741         udelay(5);
1742
1743         /*
1744          * abort any armed or launched PIO buffers that didn't go. (self
1745          * clearing).  Will cause any packet currently being transmitted to
1746          * go out with an EBP, and may also cause a short packet error on
1747          * the receiver.
1748          */
1749         ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1750                          INFINIPATH_S_ABORT);
1751
1752         ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
1753                             INFINIPATH_IBCC_LINKINITCMD_SHIFT);
1754
1755         /* disable IBC */
1756         dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
1757         ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
1758                          dd->ipath_control | INFINIPATH_C_FREEZEMODE);
1759
1760         /*
1761          * clear SerdesEnable and turn the leds off; do this here because
1762          * we are unloading, so don't count on interrupts to move along
1763          * Turn the LEDs off explictly for the same reason.
1764          */
1765         dd->ipath_f_quiet_serdes(dd);
1766         dd->ipath_f_setextled(dd, 0, 0);
1767
1768         if (dd->ipath_stats_timer_active) {
1769                 del_timer_sync(&dd->ipath_stats_timer);
1770                 dd->ipath_stats_timer_active = 0;
1771         }
1772
1773         /*
1774          * clear all interrupts and errors, so that the next time the driver
1775          * is loaded or device is enabled, we know that whatever is set
1776          * happened while we were unloaded
1777          */
1778         ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
1779                          ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED);
1780         ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
1781         ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
1782 }
1783
1784 /**
1785  * ipath_free_pddata - free a port's allocated data
1786  * @dd: the infinipath device
1787  * @pd: the portdata structure
1788  *
1789  * free up any allocated data for a port
1790  * This should not touch anything that would affect a simultaneous
1791  * re-allocation of port data, because it is called after ipath_mutex
1792  * is released (and can be called from reinit as well).
1793  * It should never change any chip state, or global driver state.
1794  * (The only exception to global state is freeing the port0 port0_skbs.)
1795  */
1796 void ipath_free_pddata(struct ipath_devdata *dd, struct ipath_portdata *pd)
1797 {
1798         if (!pd)
1799                 return;
1800
1801         if (pd->port_rcvhdrq) {
1802                 ipath_cdbg(VERBOSE, "free closed port %d rcvhdrq @ %p "
1803                            "(size=%lu)\n", pd->port_port, pd->port_rcvhdrq,
1804                            (unsigned long) pd->port_rcvhdrq_size);
1805                 dma_free_coherent(&dd->pcidev->dev, pd->port_rcvhdrq_size,
1806                                   pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
1807                 pd->port_rcvhdrq = NULL;
1808                 if (pd->port_rcvhdrtail_kvaddr) {
1809                         dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
1810                                          pd->port_rcvhdrtail_kvaddr,
1811                                          pd->port_rcvhdrqtailaddr_phys);
1812                         pd->port_rcvhdrtail_kvaddr = NULL;
1813                 }
1814         }
1815         if (pd->port_port && pd->port_rcvegrbuf) {
1816                 unsigned e;
1817
1818                 for (e = 0; e < pd->port_rcvegrbuf_chunks; e++) {
1819                         void *base = pd->port_rcvegrbuf[e];
1820                         size_t size = pd->port_rcvegrbuf_size;
1821
1822                         ipath_cdbg(VERBOSE, "egrbuf free(%p, %lu), "
1823                                    "chunk %u/%u\n", base,
1824                                    (unsigned long) size,
1825                                    e, pd->port_rcvegrbuf_chunks);
1826                         dma_free_coherent(&dd->pcidev->dev, size,
1827                                 base, pd->port_rcvegrbuf_phys[e]);
1828                 }
1829                 kfree(pd->port_rcvegrbuf);
1830                 pd->port_rcvegrbuf = NULL;
1831                 kfree(pd->port_rcvegrbuf_phys);
1832                 pd->port_rcvegrbuf_phys = NULL;
1833                 pd->port_rcvegrbuf_chunks = 0;
1834         } else if (pd->port_port == 0 && dd->ipath_port0_skbinfo) {
1835                 unsigned e;
1836                 struct ipath_skbinfo *skbinfo = dd->ipath_port0_skbinfo;
1837
1838                 dd->ipath_port0_skbinfo = NULL;
1839                 ipath_cdbg(VERBOSE, "free closed port %d "
1840                            "ipath_port0_skbinfo @ %p\n", pd->port_port,
1841                            skbinfo);
1842                 for (e = 0; e < dd->ipath_rcvegrcnt; e++)
1843                 if (skbinfo[e].skb) {
1844                         pci_unmap_single(dd->pcidev, skbinfo[e].phys,
1845                                          dd->ipath_ibmaxlen,
1846                                          PCI_DMA_FROMDEVICE);
1847                         dev_kfree_skb(skbinfo[e].skb);
1848                 }
1849                 vfree(skbinfo);
1850         }
1851         kfree(pd->port_tid_pg_list);
1852         vfree(pd->subport_uregbase);
1853         vfree(pd->subport_rcvegrbuf);
1854         vfree(pd->subport_rcvhdr_base);
1855         kfree(pd);
1856 }
1857
1858 static int __init infinipath_init(void)
1859 {
1860         int ret;
1861
1862         ipath_dbg(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
1863
1864         /*
1865          * These must be called before the driver is registered with
1866          * the PCI subsystem.
1867          */
1868         idr_init(&unit_table);
1869         if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
1870                 ret = -ENOMEM;
1871                 goto bail;
1872         }
1873
1874         ret = pci_register_driver(&ipath_driver);
1875         if (ret < 0) {
1876                 printk(KERN_ERR IPATH_DRV_NAME
1877                        ": Unable to register driver: error %d\n", -ret);
1878                 goto bail_unit;
1879         }
1880
1881         ret = ipath_driver_create_group(&ipath_driver.driver);
1882         if (ret < 0) {
1883                 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create driver "
1884                        "sysfs entries: error %d\n", -ret);
1885                 goto bail_pci;
1886         }
1887
1888         ret = ipath_init_ipathfs();
1889         if (ret < 0) {
1890                 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
1891                        "ipathfs: error %d\n", -ret);
1892                 goto bail_group;
1893         }
1894
1895         ret = ipath_diagpkt_add();
1896         if (ret < 0) {
1897                 printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
1898                        "diag data device: error %d\n", -ret);
1899                 goto bail_ipathfs;
1900         }
1901
1902         goto bail;
1903
1904 bail_ipathfs:
1905         ipath_exit_ipathfs();
1906
1907 bail_group:
1908         ipath_driver_remove_group(&ipath_driver.driver);
1909
1910 bail_pci:
1911         pci_unregister_driver(&ipath_driver);
1912
1913 bail_unit:
1914         idr_destroy(&unit_table);
1915
1916 bail:
1917         return ret;
1918 }
1919
1920 static void cleanup_device(struct ipath_devdata *dd)
1921 {
1922         int port;
1923
1924         ipath_shutdown_device(dd);
1925
1926         if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
1927                 /* can't do anything more with chip; needs re-init */
1928                 *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
1929                 if (dd->ipath_kregbase) {
1930                         /*
1931                          * if we haven't already cleaned up before these are
1932                          * to ensure any register reads/writes "fail" until
1933                          * re-init
1934                          */
1935                         dd->ipath_kregbase = NULL;
1936                         dd->ipath_uregbase = 0;
1937                         dd->ipath_sregbase = 0;
1938                         dd->ipath_cregbase = 0;
1939                         dd->ipath_kregsize = 0;
1940                 }
1941                 ipath_disable_wc(dd);
1942         }
1943
1944         if (dd->ipath_pioavailregs_dma) {
1945                 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
1946                                   (void *) dd->ipath_pioavailregs_dma,
1947                                   dd->ipath_pioavailregs_phys);
1948                 dd->ipath_pioavailregs_dma = NULL;
1949         }
1950         if (dd->ipath_dummy_hdrq) {
1951                 dma_free_coherent(&dd->pcidev->dev,
1952                         dd->ipath_pd[0]->port_rcvhdrq_size,
1953                         dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
1954                 dd->ipath_dummy_hdrq = NULL;
1955         }
1956
1957         if (dd->ipath_pageshadow) {
1958                 struct page **tmpp = dd->ipath_pageshadow;
1959                 dma_addr_t *tmpd = dd->ipath_physshadow;
1960                 int i, cnt = 0;
1961
1962                 ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
1963                            "locked\n");
1964                 for (port = 0; port < dd->ipath_cfgports; port++) {
1965                         int port_tidbase = port * dd->ipath_rcvtidcnt;
1966                         int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
1967                         for (i = port_tidbase; i < maxtid; i++) {
1968                                 if (!tmpp[i])
1969                                         continue;
1970                                 pci_unmap_page(dd->pcidev, tmpd[i],
1971                                                PAGE_SIZE, PCI_DMA_FROMDEVICE);
1972                                 ipath_release_user_pages(&tmpp[i], 1);
1973                                 tmpp[i] = NULL;
1974                                 cnt++;
1975                         }
1976                 }
1977                 if (cnt) {
1978                         ipath_stats.sps_pageunlocks += cnt;
1979                         ipath_cdbg(VERBOSE, "There were still %u expTID "
1980                                    "entries locked\n", cnt);
1981                 }
1982                 if (ipath_stats.sps_pagelocks ||
1983                     ipath_stats.sps_pageunlocks)
1984                         ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
1985                                    "unlocked via ipath_m{un}lock\n",
1986                                    (unsigned long long)
1987                                    ipath_stats.sps_pagelocks,
1988                                    (unsigned long long)
1989                                    ipath_stats.sps_pageunlocks);
1990
1991                 ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
1992                            dd->ipath_pageshadow);
1993                 vfree(dd->ipath_pageshadow);
1994                 dd->ipath_pageshadow = NULL;
1995         }
1996
1997         /*
1998          * free any resources still in use (usually just kernel ports)
1999          * at unload; we do for portcnt, not cfgports, because cfgports
2000          * could have changed while we were loaded.
2001          */
2002         for (port = 0; port < dd->ipath_portcnt; port++) {
2003                 struct ipath_portdata *pd = dd->ipath_pd[port];
2004                 dd->ipath_pd[port] = NULL;
2005                 ipath_free_pddata(dd, pd);
2006         }
2007         kfree(dd->ipath_pd);
2008         /*
2009          * debuggability, in case some cleanup path tries to use it
2010          * after this
2011          */
2012         dd->ipath_pd = NULL;
2013 }
2014
2015 static void __exit infinipath_cleanup(void)
2016 {
2017         struct ipath_devdata *dd, *tmp;
2018         unsigned long flags;
2019
2020         ipath_diagpkt_remove();
2021
2022         ipath_exit_ipathfs();
2023
2024         ipath_driver_remove_group(&ipath_driver.driver);
2025
2026         spin_lock_irqsave(&ipath_devs_lock, flags);
2027
2028         /*
2029          * turn off rcv, send, and interrupts for all ports, all drivers
2030          * should also hard reset the chip here?
2031          * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
2032          * for all versions of the driver, if they were allocated
2033          */
2034         list_for_each_entry_safe(dd, tmp, &ipath_dev_list, ipath_list) {
2035                 spin_unlock_irqrestore(&ipath_devs_lock, flags);
2036
2037                 if (dd->verbs_dev) {
2038                         ipath_unregister_ib_device(dd->verbs_dev);
2039                         dd->verbs_dev = NULL;
2040                 }
2041
2042                 if (dd->ipath_kregbase)
2043                         cleanup_device(dd);
2044
2045                 if (dd->pcidev) {
2046                         if (dd->pcidev->irq) {
2047                                 ipath_cdbg(VERBOSE,
2048                                            "unit %u free_irq of irq %x\n",
2049                                            dd->ipath_unit, dd->pcidev->irq);
2050                                 free_irq(dd->pcidev->irq, dd);
2051                         } else
2052                                 ipath_dbg("irq is 0, not doing free_irq "
2053                                           "for unit %u\n", dd->ipath_unit);
2054
2055                         /*
2056                          * we check for NULL here, because it's outside
2057                          * the kregbase check, and we need to call it
2058                          * after the free_irq.  Thus it's possible that
2059                          * the function pointers were never initialized.
2060                          */
2061                         if (dd->ipath_f_cleanup)
2062                                 /* clean up chip-specific stuff */
2063                                 dd->ipath_f_cleanup(dd);
2064
2065                         dd->pcidev = NULL;
2066                 }
2067                 spin_lock_irqsave(&ipath_devs_lock, flags);
2068         }
2069
2070         spin_unlock_irqrestore(&ipath_devs_lock, flags);
2071
2072         ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
2073         pci_unregister_driver(&ipath_driver);
2074
2075         idr_destroy(&unit_table);
2076 }
2077
2078 /**
2079  * ipath_reset_device - reset the chip if possible
2080  * @unit: the device to reset
2081  *
2082  * Whether or not reset is successful, we attempt to re-initialize the chip
2083  * (that is, much like a driver unload/reload).  We clear the INITTED flag
2084  * so that the various entry points will fail until we reinitialize.  For
2085  * now, we only allow this if no user ports are open that use chip resources
2086  */
2087 int ipath_reset_device(int unit)
2088 {
2089         int ret, i;
2090         struct ipath_devdata *dd = ipath_lookup(unit);
2091
2092         if (!dd) {
2093                 ret = -ENODEV;
2094                 goto bail;
2095         }
2096
2097         dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
2098
2099         if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
2100                 dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
2101                          "not initialized or not present\n", unit);
2102                 ret = -ENXIO;
2103                 goto bail;
2104         }
2105
2106         if (dd->ipath_pd)
2107                 for (i = 1; i < dd->ipath_cfgports; i++) {
2108                         if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
2109                                 ipath_dbg("unit %u port %d is in use "
2110                                           "(PID %u cmd %s), can't reset\n",
2111                                           unit, i,
2112                                           dd->ipath_pd[i]->port_pid,
2113                                           dd->ipath_pd[i]->port_comm);
2114                                 ret = -EBUSY;
2115                                 goto bail;
2116                         }
2117                 }
2118
2119         dd->ipath_flags &= ~IPATH_INITTED;
2120         ret = dd->ipath_f_reset(dd);
2121         if (ret != 1)
2122                 ipath_dbg("reset was not successful\n");
2123         ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
2124                   unit);
2125         ret = ipath_init_chip(dd, 1);
2126         if (ret)
2127                 ipath_dev_err(dd, "Reinitialize unit %u after "
2128                               "reset failed with %d\n", unit, ret);
2129         else
2130                 dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
2131                          "resetting\n", unit);
2132
2133 bail:
2134         return ret;
2135 }
2136
2137 int ipath_set_rx_pol_inv(struct ipath_devdata *dd, u8 new_pol_inv)
2138 {
2139         u64 val;
2140         if ( new_pol_inv > INFINIPATH_XGXS_RX_POL_MASK ) {
2141                 return -1;
2142         }
2143         if ( dd->ipath_rx_pol_inv != new_pol_inv ) {
2144                 dd->ipath_rx_pol_inv = new_pol_inv;
2145                 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
2146                 val &= ~(INFINIPATH_XGXS_RX_POL_MASK <<
2147                          INFINIPATH_XGXS_RX_POL_SHIFT);
2148                 val |= ((u64)dd->ipath_rx_pol_inv) <<
2149                         INFINIPATH_XGXS_RX_POL_SHIFT;
2150                 ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
2151         }
2152         return 0;
2153 }
2154 module_init(infinipath_init);
2155 module_exit(infinipath_cleanup);