IB/ipath: Changes for fields moving from devdata to portdata
[safe/jmp/linux-2.6] / drivers / infiniband / hw / ipath / ipath_init_chip.c
1 /*
2  * Copyright (c) 2006, 2007 QLogic Corporation. 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/pci.h>
35 #include <linux/netdevice.h>
36 #include <linux/vmalloc.h>
37
38 #include "ipath_kernel.h"
39 #include "ipath_common.h"
40
41 /*
42  * min buffers we want to have per port, after driver
43  */
44 #define IPATH_MIN_USER_PORT_BUFCNT 8
45
46 /*
47  * Number of ports we are configured to use (to allow for more pio
48  * buffers per port, etc.)  Zero means use chip value.
49  */
50 static ushort ipath_cfgports;
51
52 module_param_named(cfgports, ipath_cfgports, ushort, S_IRUGO);
53 MODULE_PARM_DESC(cfgports, "Set max number of ports to use");
54
55 /*
56  * Number of buffers reserved for driver (verbs and layered drivers.)
57  * Reserved at end of buffer list.   Initialized based on
58  * number of PIO buffers if not set via module interface.
59  * The problem with this is that it's global, but we'll use different
60  * numbers for different chip types.  So the default value is not
61  * very useful.  I've redefined it for the 1.3 release so that it's
62  * zero unless set by the user to something else, in which case we
63  * try to respect it.
64  */
65 static ushort ipath_kpiobufs;
66
67 static int ipath_set_kpiobufs(const char *val, struct kernel_param *kp);
68
69 module_param_call(kpiobufs, ipath_set_kpiobufs, param_get_ushort,
70                   &ipath_kpiobufs, S_IWUSR | S_IRUGO);
71 MODULE_PARM_DESC(kpiobufs, "Set number of PIO buffers for driver");
72
73 /**
74  * create_port0_egr - allocate the eager TID buffers
75  * @dd: the infinipath device
76  *
77  * This code is now quite different for user and kernel, because
78  * the kernel uses skb's, for the accelerated network performance.
79  * This is the kernel (port0) version.
80  *
81  * Allocate the eager TID buffers and program them into infinipath.
82  * We use the network layer alloc_skb() allocator to allocate the
83  * memory, and either use the buffers as is for things like verbs
84  * packets, or pass the buffers up to the ipath layered driver and
85  * thence the network layer, replacing them as we do so (see
86  * ipath_rcv_layer()).
87  */
88 static int create_port0_egr(struct ipath_devdata *dd)
89 {
90         unsigned e, egrcnt;
91         struct ipath_skbinfo *skbinfo;
92         int ret;
93
94         egrcnt = dd->ipath_rcvegrcnt;
95
96         skbinfo = vmalloc(sizeof(*dd->ipath_port0_skbinfo) * egrcnt);
97         if (skbinfo == NULL) {
98                 ipath_dev_err(dd, "allocation error for eager TID "
99                               "skb array\n");
100                 ret = -ENOMEM;
101                 goto bail;
102         }
103         for (e = 0; e < egrcnt; e++) {
104                 /*
105                  * This is a bit tricky in that we allocate extra
106                  * space for 2 bytes of the 14 byte ethernet header.
107                  * These two bytes are passed in the ipath header so
108                  * the rest of the data is word aligned.  We allocate
109                  * 4 bytes so that the data buffer stays word aligned.
110                  * See ipath_kreceive() for more details.
111                  */
112                 skbinfo[e].skb = ipath_alloc_skb(dd, GFP_KERNEL);
113                 if (!skbinfo[e].skb) {
114                         ipath_dev_err(dd, "SKB allocation error for "
115                                       "eager TID %u\n", e);
116                         while (e != 0)
117                                 dev_kfree_skb(skbinfo[--e].skb);
118                         vfree(skbinfo);
119                         ret = -ENOMEM;
120                         goto bail;
121                 }
122         }
123         /*
124          * After loop above, so we can test non-NULL to see if ready
125          * to use at receive, etc.
126          */
127         dd->ipath_port0_skbinfo = skbinfo;
128
129         for (e = 0; e < egrcnt; e++) {
130                 dd->ipath_port0_skbinfo[e].phys =
131                   ipath_map_single(dd->pcidev,
132                                    dd->ipath_port0_skbinfo[e].skb->data,
133                                    dd->ipath_ibmaxlen, PCI_DMA_FROMDEVICE);
134                 dd->ipath_f_put_tid(dd, e + (u64 __iomem *)
135                                     ((char __iomem *) dd->ipath_kregbase +
136                                      dd->ipath_rcvegrbase),
137                                     RCVHQ_RCV_TYPE_EAGER,
138                                     dd->ipath_port0_skbinfo[e].phys);
139         }
140
141         ret = 0;
142
143 bail:
144         return ret;
145 }
146
147 static int bringup_link(struct ipath_devdata *dd)
148 {
149         u64 val, ibc;
150         int ret = 0;
151
152         /* hold IBC in reset */
153         dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
154         ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
155                          dd->ipath_control);
156
157         /*
158          * Note that prior to try 14 or 15 of IB, the credit scaling
159          * wasn't working, because it was swapped for writes with the
160          * 1 bit default linkstate field
161          */
162
163         /* ignore pbc and align word */
164         val = dd->ipath_piosize2k - 2 * sizeof(u32);
165         /*
166          * for ICRC, which we only send in diag test pkt mode, and we
167          * don't need to worry about that for mtu
168          */
169         val += 1;
170         /*
171          * Set the IBC maxpktlength to the size of our pio buffers the
172          * maxpktlength is in words.  This is *not* the IB data MTU.
173          */
174         ibc = (val / sizeof(u32)) << INFINIPATH_IBCC_MAXPKTLEN_SHIFT;
175         /* in KB */
176         ibc |= 0x5ULL << INFINIPATH_IBCC_FLOWCTRLWATERMARK_SHIFT;
177         /*
178          * How often flowctrl sent.  More or less in usecs; balance against
179          * watermark value, so that in theory senders always get a flow
180          * control update in time to not let the IB link go idle.
181          */
182         ibc |= 0x3ULL << INFINIPATH_IBCC_FLOWCTRLPERIOD_SHIFT;
183         /* max error tolerance */
184         ibc |= 0xfULL << INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT;
185         /* use "real" buffer space for */
186         ibc |= 4ULL << INFINIPATH_IBCC_CREDITSCALE_SHIFT;
187         /* IB credit flow control. */
188         ibc |= 0xfULL << INFINIPATH_IBCC_OVERRUNTHRESHOLD_SHIFT;
189         /* initially come up waiting for TS1, without sending anything. */
190         dd->ipath_ibcctrl = ibc;
191         /*
192          * Want to start out with both LINKCMD and LINKINITCMD in NOP
193          * (0 and 0).  Don't put linkinitcmd in ipath_ibcctrl, want that
194          * to stay a NOP
195          */
196         ibc |= INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
197                 INFINIPATH_IBCC_LINKINITCMD_SHIFT;
198         ipath_cdbg(VERBOSE, "Writing 0x%llx to ibcctrl\n",
199                    (unsigned long long) ibc);
200         ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl, ibc);
201
202         // be sure chip saw it
203         val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
204
205         ret = dd->ipath_f_bringup_serdes(dd);
206
207         if (ret)
208                 dev_info(&dd->pcidev->dev, "Could not initialize SerDes, "
209                          "not usable\n");
210         else {
211                 /* enable IBC */
212                 dd->ipath_control |= INFINIPATH_C_LINKENABLE;
213                 ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
214                                  dd->ipath_control);
215         }
216
217         return ret;
218 }
219
220 static struct ipath_portdata *create_portdata0(struct ipath_devdata *dd)
221 {
222         struct ipath_portdata *pd = NULL;
223
224         pd = kzalloc(sizeof(*pd), GFP_KERNEL);
225         if (pd) {
226                 pd->port_dd = dd;
227                 pd->port_cnt = 1;
228                 /* The port 0 pkey table is used by the layer interface. */
229                 pd->port_pkeys[0] = IPATH_DEFAULT_P_KEY;
230         }
231         return pd;
232 }
233
234 static int init_chip_first(struct ipath_devdata *dd,
235                            struct ipath_portdata **pdp)
236 {
237         struct ipath_portdata *pd = NULL;
238         int ret = 0;
239         u64 val;
240
241         /*
242          * skip cfgports stuff because we are not allocating memory,
243          * and we don't want problems if the portcnt changed due to
244          * cfgports.  We do still check and report a difference, if
245          * not same (should be impossible).
246          */
247         dd->ipath_portcnt =
248                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_portcnt);
249         if (!ipath_cfgports)
250                 dd->ipath_cfgports = dd->ipath_portcnt;
251         else if (ipath_cfgports <= dd->ipath_portcnt) {
252                 dd->ipath_cfgports = ipath_cfgports;
253                 ipath_dbg("Configured to use %u ports out of %u in chip\n",
254                           dd->ipath_cfgports, dd->ipath_portcnt);
255         } else {
256                 dd->ipath_cfgports = dd->ipath_portcnt;
257                 ipath_dbg("Tried to configured to use %u ports; chip "
258                           "only supports %u\n", ipath_cfgports,
259                           dd->ipath_portcnt);
260         }
261         /*
262          * Allocate full portcnt array, rather than just cfgports, because
263          * cleanup iterates across all possible ports.
264          */
265         dd->ipath_pd = kzalloc(sizeof(*dd->ipath_pd) * dd->ipath_portcnt,
266                                GFP_KERNEL);
267
268         if (!dd->ipath_pd) {
269                 ipath_dev_err(dd, "Unable to allocate portdata array, "
270                               "failing\n");
271                 ret = -ENOMEM;
272                 goto done;
273         }
274
275         pd = create_portdata0(dd);
276         if (!pd) {
277                 ipath_dev_err(dd, "Unable to allocate portdata for port "
278                               "0, failing\n");
279                 ret = -ENOMEM;
280                 goto done;
281         }
282         dd->ipath_pd[0] = pd;
283
284         dd->ipath_rcvtidcnt =
285                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvtidcnt);
286         dd->ipath_rcvtidbase =
287                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvtidbase);
288         dd->ipath_rcvegrcnt =
289                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvegrcnt);
290         dd->ipath_rcvegrbase =
291                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvegrbase);
292         dd->ipath_palign =
293                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_pagealign);
294         dd->ipath_piobufbase =
295                 ipath_read_kreg64(dd, dd->ipath_kregs->kr_sendpiobufbase);
296         val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_sendpiosize);
297         dd->ipath_piosize2k = val & ~0U;
298         dd->ipath_piosize4k = val >> 32;
299         /*
300          * Note: the chips support a maximum MTU of 4096, but the driver
301          * hasn't implemented this feature yet, so set the initial value
302          * to 2048.
303          */
304         dd->ipath_ibmtu = 2048;
305         val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_sendpiobufcnt);
306         dd->ipath_piobcnt2k = val & ~0U;
307         dd->ipath_piobcnt4k = val >> 32;
308         dd->ipath_pio2kbase =
309                 (u32 __iomem *) (((char __iomem *) dd->ipath_kregbase) +
310                                  (dd->ipath_piobufbase & 0xffffffff));
311         if (dd->ipath_piobcnt4k) {
312                 dd->ipath_pio4kbase = (u32 __iomem *)
313                         (((char __iomem *) dd->ipath_kregbase) +
314                          (dd->ipath_piobufbase >> 32));
315                 /*
316                  * 4K buffers take 2 pages; we use roundup just to be
317                  * paranoid; we calculate it once here, rather than on
318                  * ever buf allocate
319                  */
320                 dd->ipath_4kalign = ALIGN(dd->ipath_piosize4k,
321                                           dd->ipath_palign);
322                 ipath_dbg("%u 2k(%x) piobufs @ %p, %u 4k(%x) @ %p "
323                           "(%x aligned)\n",
324                           dd->ipath_piobcnt2k, dd->ipath_piosize2k,
325                           dd->ipath_pio2kbase, dd->ipath_piobcnt4k,
326                           dd->ipath_piosize4k, dd->ipath_pio4kbase,
327                           dd->ipath_4kalign);
328         }
329         else ipath_dbg("%u 2k piobufs @ %p\n",
330                        dd->ipath_piobcnt2k, dd->ipath_pio2kbase);
331
332         spin_lock_init(&dd->ipath_tid_lock);
333         spin_lock_init(&dd->ipath_sendctrl_lock);
334         spin_lock_init(&dd->ipath_gpio_lock);
335         spin_lock_init(&dd->ipath_eep_st_lock);
336         mutex_init(&dd->ipath_eep_lock);
337
338 done:
339         *pdp = pd;
340         return ret;
341 }
342
343 /**
344  * init_chip_reset - re-initialize after a reset, or enable
345  * @dd: the infinipath device
346  * @pdp: output for port data
347  *
348  * sanity check at least some of the values after reset, and
349  * ensure no receive or transmit (explictly, in case reset
350  * failed
351  */
352 static int init_chip_reset(struct ipath_devdata *dd,
353                            struct ipath_portdata **pdp)
354 {
355         u32 rtmp;
356
357         *pdp = dd->ipath_pd[0];
358         /* ensure chip does no sends or receives while we re-initialize */
359         dd->ipath_control = dd->ipath_sendctrl = dd->ipath_rcvctrl = 0U;
360         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl, dd->ipath_rcvctrl);
361         ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
362         ipath_write_kreg(dd, dd->ipath_kregs->kr_control, dd->ipath_control);
363
364         rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_portcnt);
365         if (dd->ipath_portcnt != rtmp)
366                 dev_info(&dd->pcidev->dev, "portcnt was %u before "
367                          "reset, now %u, using original\n",
368                          dd->ipath_portcnt, rtmp);
369         rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvtidcnt);
370         if (rtmp != dd->ipath_rcvtidcnt)
371                 dev_info(&dd->pcidev->dev, "tidcnt was %u before "
372                          "reset, now %u, using original\n",
373                          dd->ipath_rcvtidcnt, rtmp);
374         rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvtidbase);
375         if (rtmp != dd->ipath_rcvtidbase)
376                 dev_info(&dd->pcidev->dev, "tidbase was %u before "
377                          "reset, now %u, using original\n",
378                          dd->ipath_rcvtidbase, rtmp);
379         rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvegrcnt);
380         if (rtmp != dd->ipath_rcvegrcnt)
381                 dev_info(&dd->pcidev->dev, "egrcnt was %u before "
382                          "reset, now %u, using original\n",
383                          dd->ipath_rcvegrcnt, rtmp);
384         rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvegrbase);
385         if (rtmp != dd->ipath_rcvegrbase)
386                 dev_info(&dd->pcidev->dev, "egrbase was %u before "
387                          "reset, now %u, using original\n",
388                          dd->ipath_rcvegrbase, rtmp);
389
390         return 0;
391 }
392
393 static int init_pioavailregs(struct ipath_devdata *dd)
394 {
395         int ret;
396
397         dd->ipath_pioavailregs_dma = dma_alloc_coherent(
398                 &dd->pcidev->dev, PAGE_SIZE, &dd->ipath_pioavailregs_phys,
399                 GFP_KERNEL);
400         if (!dd->ipath_pioavailregs_dma) {
401                 ipath_dev_err(dd, "failed to allocate PIOavail reg area "
402                               "in memory\n");
403                 ret = -ENOMEM;
404                 goto done;
405         }
406
407         /*
408          * we really want L2 cache aligned, but for current CPUs of
409          * interest, they are the same.
410          */
411         dd->ipath_statusp = (u64 *)
412                 ((char *)dd->ipath_pioavailregs_dma +
413                  ((2 * L1_CACHE_BYTES +
414                    dd->ipath_pioavregs * sizeof(u64)) & ~L1_CACHE_BYTES));
415         /* copy the current value now that it's really allocated */
416         *dd->ipath_statusp = dd->_ipath_status;
417         /*
418          * setup buffer to hold freeze msg, accessible to apps,
419          * following statusp
420          */
421         dd->ipath_freezemsg = (char *)&dd->ipath_statusp[1];
422         /* and its length */
423         dd->ipath_freezelen = L1_CACHE_BYTES - sizeof(dd->ipath_statusp[0]);
424
425         ret = 0;
426
427 done:
428         return ret;
429 }
430
431 /**
432  * init_shadow_tids - allocate the shadow TID array
433  * @dd: the infinipath device
434  *
435  * allocate the shadow TID array, so we can ipath_munlock previous
436  * entries.  It may make more sense to move the pageshadow to the
437  * port data structure, so we only allocate memory for ports actually
438  * in use, since we at 8k per port, now.
439  */
440 static void init_shadow_tids(struct ipath_devdata *dd)
441 {
442         struct page **pages;
443         dma_addr_t *addrs;
444
445         pages = vmalloc(dd->ipath_cfgports * dd->ipath_rcvtidcnt *
446                         sizeof(struct page *));
447         if (!pages) {
448                 ipath_dev_err(dd, "failed to allocate shadow page * "
449                               "array, no expected sends!\n");
450                 dd->ipath_pageshadow = NULL;
451                 return;
452         }
453
454         addrs = vmalloc(dd->ipath_cfgports * dd->ipath_rcvtidcnt *
455                         sizeof(dma_addr_t));
456         if (!addrs) {
457                 ipath_dev_err(dd, "failed to allocate shadow dma handle "
458                               "array, no expected sends!\n");
459                 vfree(dd->ipath_pageshadow);
460                 dd->ipath_pageshadow = NULL;
461                 return;
462         }
463
464         memset(pages, 0, dd->ipath_cfgports * dd->ipath_rcvtidcnt *
465                sizeof(struct page *));
466
467         dd->ipath_pageshadow = pages;
468         dd->ipath_physshadow = addrs;
469 }
470
471 static void enable_chip(struct ipath_devdata *dd,
472                         struct ipath_portdata *pd, int reinit)
473 {
474         u32 val;
475         unsigned long flags;
476         int i;
477
478         if (!reinit)
479                 init_waitqueue_head(&ipath_state_wait);
480
481         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
482                          dd->ipath_rcvctrl);
483
484         spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
485         /* Enable PIO send, and update of PIOavail regs to memory. */
486         dd->ipath_sendctrl = INFINIPATH_S_PIOENABLE |
487                 INFINIPATH_S_PIOBUFAVAILUPD;
488         ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
489         ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
490         spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
491
492         /*
493          * enable port 0 receive, and receive interrupt.  other ports
494          * done as user opens and inits them.
495          */
496         dd->ipath_rcvctrl = (1ULL << dd->ipath_r_tailupd_shift) |
497                 (1ULL << dd->ipath_r_portenable_shift) |
498                 (1ULL << dd->ipath_r_intravail_shift);
499         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
500                          dd->ipath_rcvctrl);
501
502         /*
503          * now ready for use.  this should be cleared whenever we
504          * detect a reset, or initiate one.
505          */
506         dd->ipath_flags |= IPATH_INITTED;
507
508         /*
509          * init our shadow copies of head from tail values, and write
510          * head values to match.
511          */
512         val = ipath_read_ureg32(dd, ur_rcvegrindextail, 0);
513         (void)ipath_write_ureg(dd, ur_rcvegrindexhead, val, 0);
514
515         /* Initialize so we interrupt on next packet received */
516         (void)ipath_write_ureg(dd, ur_rcvhdrhead,
517                                dd->ipath_rhdrhead_intr_off |
518                                dd->ipath_pd[0]->port_head, 0);
519
520         /*
521          * by now pioavail updates to memory should have occurred, so
522          * copy them into our working/shadow registers; this is in
523          * case something went wrong with abort, but mostly to get the
524          * initial values of the generation bit correct.
525          */
526         for (i = 0; i < dd->ipath_pioavregs; i++) {
527                 __le64 val;
528
529                 /*
530                  * Chip Errata bug 6641; even and odd qwords>3 are swapped.
531                  */
532                 if (i > 3) {
533                         if (i & 1)
534                                 val = dd->ipath_pioavailregs_dma[i - 1];
535                         else
536                                 val = dd->ipath_pioavailregs_dma[i + 1];
537                 }
538                 else
539                         val = dd->ipath_pioavailregs_dma[i];
540                 dd->ipath_pioavailshadow[i] = le64_to_cpu(val);
541         }
542         /* can get counters, stats, etc. */
543         dd->ipath_flags |= IPATH_PRESENT;
544 }
545
546 static int init_housekeeping(struct ipath_devdata *dd,
547                              struct ipath_portdata **pdp, int reinit)
548 {
549         char boardn[32];
550         int ret = 0;
551
552         /*
553          * have to clear shadow copies of registers at init that are
554          * not otherwise set here, or all kinds of bizarre things
555          * happen with driver on chip reset
556          */
557         dd->ipath_rcvhdrsize = 0;
558
559         /*
560          * Don't clear ipath_flags as 8bit mode was set before
561          * entering this func. However, we do set the linkstate to
562          * unknown, so we can watch for a transition.
563          * PRESENT is set because we want register reads to work,
564          * and the kernel infrastructure saw it in config space;
565          * We clear it if we have failures.
566          */
567         dd->ipath_flags |= IPATH_LINKUNK | IPATH_PRESENT;
568         dd->ipath_flags &= ~(IPATH_LINKACTIVE | IPATH_LINKARMED |
569                              IPATH_LINKDOWN | IPATH_LINKINIT);
570
571         ipath_cdbg(VERBOSE, "Try to read spc chip revision\n");
572         dd->ipath_revision =
573                 ipath_read_kreg64(dd, dd->ipath_kregs->kr_revision);
574
575         /*
576          * set up fundamental info we need to use the chip; we assume
577          * if the revision reg and these regs are OK, we don't need to
578          * special case the rest
579          */
580         dd->ipath_sregbase =
581                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_sendregbase);
582         dd->ipath_cregbase =
583                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_counterregbase);
584         dd->ipath_uregbase =
585                 ipath_read_kreg32(dd, dd->ipath_kregs->kr_userregbase);
586         ipath_cdbg(VERBOSE, "ipath_kregbase %p, sendbase %x usrbase %x, "
587                    "cntrbase %x\n", dd->ipath_kregbase, dd->ipath_sregbase,
588                    dd->ipath_uregbase, dd->ipath_cregbase);
589         if ((dd->ipath_revision & 0xffffffff) == 0xffffffff
590             || (dd->ipath_sregbase & 0xffffffff) == 0xffffffff
591             || (dd->ipath_cregbase & 0xffffffff) == 0xffffffff
592             || (dd->ipath_uregbase & 0xffffffff) == 0xffffffff) {
593                 ipath_dev_err(dd, "Register read failures from chip, "
594                               "giving up initialization\n");
595                 dd->ipath_flags &= ~IPATH_PRESENT;
596                 ret = -ENODEV;
597                 goto done;
598         }
599
600
601         /* clear diagctrl register, in case diags were running and crashed */
602         ipath_write_kreg (dd, dd->ipath_kregs->kr_hwdiagctrl, 0);
603
604         /* clear the initial reset flag, in case first driver load */
605         ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear,
606                          INFINIPATH_E_RESET);
607
608         if (reinit)
609                 ret = init_chip_reset(dd, pdp);
610         else
611                 ret = init_chip_first(dd, pdp);
612
613         if (ret)
614                 goto done;
615
616         ipath_cdbg(VERBOSE, "Revision %llx (PCI %x), %u ports, %u tids, "
617                    "%u egrtids\n", (unsigned long long) dd->ipath_revision,
618                    dd->ipath_pcirev, dd->ipath_portcnt, dd->ipath_rcvtidcnt,
619                    dd->ipath_rcvegrcnt);
620
621         if (((dd->ipath_revision >> INFINIPATH_R_SOFTWARE_SHIFT) &
622              INFINIPATH_R_SOFTWARE_MASK) != IPATH_CHIP_SWVERSION) {
623                 ipath_dev_err(dd, "Driver only handles version %d, "
624                               "chip swversion is %d (%llx), failng\n",
625                               IPATH_CHIP_SWVERSION,
626                               (int)(dd->ipath_revision >>
627                                     INFINIPATH_R_SOFTWARE_SHIFT) &
628                               INFINIPATH_R_SOFTWARE_MASK,
629                               (unsigned long long) dd->ipath_revision);
630                 ret = -ENOSYS;
631                 goto done;
632         }
633         dd->ipath_majrev = (u8) ((dd->ipath_revision >>
634                                   INFINIPATH_R_CHIPREVMAJOR_SHIFT) &
635                                  INFINIPATH_R_CHIPREVMAJOR_MASK);
636         dd->ipath_minrev = (u8) ((dd->ipath_revision >>
637                                   INFINIPATH_R_CHIPREVMINOR_SHIFT) &
638                                  INFINIPATH_R_CHIPREVMINOR_MASK);
639         dd->ipath_boardrev = (u8) ((dd->ipath_revision >>
640                                     INFINIPATH_R_BOARDID_SHIFT) &
641                                    INFINIPATH_R_BOARDID_MASK);
642
643         ret = dd->ipath_f_get_boardname(dd, boardn, sizeof boardn);
644
645         snprintf(dd->ipath_boardversion, sizeof(dd->ipath_boardversion),
646                  "ChipABI %u.%u, %s, InfiniPath%u %u.%u, PCI %u, "
647                  "SW Compat %u\n",
648                  IPATH_CHIP_VERS_MAJ, IPATH_CHIP_VERS_MIN, boardn,
649                  (unsigned)(dd->ipath_revision >> INFINIPATH_R_ARCH_SHIFT) &
650                  INFINIPATH_R_ARCH_MASK,
651                  dd->ipath_majrev, dd->ipath_minrev, dd->ipath_pcirev,
652                  (unsigned)(dd->ipath_revision >>
653                             INFINIPATH_R_SOFTWARE_SHIFT) &
654                  INFINIPATH_R_SOFTWARE_MASK);
655
656         ipath_dbg("%s", dd->ipath_boardversion);
657
658 done:
659         return ret;
660 }
661
662
663 /**
664  * ipath_init_chip - do the actual initialization sequence on the chip
665  * @dd: the infinipath device
666  * @reinit: reinitializing, so don't allocate new memory
667  *
668  * Do the actual initialization sequence on the chip.  This is done
669  * both from the init routine called from the PCI infrastructure, and
670  * when we reset the chip, or detect that it was reset internally,
671  * or it's administratively re-enabled.
672  *
673  * Memory allocation here and in called routines is only done in
674  * the first case (reinit == 0).  We have to be careful, because even
675  * without memory allocation, we need to re-write all the chip registers
676  * TIDs, etc. after the reset or enable has completed.
677  */
678 int ipath_init_chip(struct ipath_devdata *dd, int reinit)
679 {
680         int ret = 0;
681         u32 val32, kpiobufs;
682         u32 piobufs, uports;
683         u64 val;
684         struct ipath_portdata *pd = NULL; /* keep gcc4 happy */
685         gfp_t gfp_flags = GFP_USER | __GFP_COMP;
686         unsigned long flags;
687
688         ret = init_housekeeping(dd, &pd, reinit);
689         if (ret)
690                 goto done;
691
692         /*
693          * we ignore most issues after reporting them, but have to specially
694          * handle hardware-disabled chips.
695          */
696         if (ret == 2) {
697                 /* unique error, known to ipath_init_one */
698                 ret = -EPERM;
699                 goto done;
700         }
701
702         /*
703          * We could bump this to allow for full rcvegrcnt + rcvtidcnt,
704          * but then it no longer nicely fits power of two, and since
705          * we now use routines that backend onto __get_free_pages, the
706          * rest would be wasted.
707          */
708         dd->ipath_rcvhdrcnt = dd->ipath_rcvegrcnt;
709         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrcnt,
710                          dd->ipath_rcvhdrcnt);
711
712         /*
713          * Set up the shadow copies of the piobufavail registers,
714          * which we compare against the chip registers for now, and
715          * the in memory DMA'ed copies of the registers.  This has to
716          * be done early, before we calculate lastport, etc.
717          */
718         piobufs = dd->ipath_piobcnt2k + dd->ipath_piobcnt4k;
719         /*
720          * calc number of pioavail registers, and save it; we have 2
721          * bits per buffer.
722          */
723         dd->ipath_pioavregs = ALIGN(piobufs, sizeof(u64) * BITS_PER_BYTE / 2)
724                 / (sizeof(u64) * BITS_PER_BYTE / 2);
725         uports = dd->ipath_cfgports ? dd->ipath_cfgports - 1 : 0;
726         if (ipath_kpiobufs == 0) {
727                 /* not set by user (this is default) */
728                 if (piobufs > 144)
729                         kpiobufs = 32;
730                 else
731                         kpiobufs = 16;
732         }
733         else
734                 kpiobufs = ipath_kpiobufs;
735
736         if (kpiobufs + (uports * IPATH_MIN_USER_PORT_BUFCNT) > piobufs) {
737                 int i = (int) piobufs -
738                         (int) (uports * IPATH_MIN_USER_PORT_BUFCNT);
739                 if (i < 0)
740                         i = 0;
741                 dev_info(&dd->pcidev->dev, "Allocating %d PIO bufs of "
742                          "%d for kernel leaves too few for %d user ports "
743                          "(%d each); using %u\n", kpiobufs,
744                          piobufs, uports, IPATH_MIN_USER_PORT_BUFCNT, i);
745                 /*
746                  * shouldn't change ipath_kpiobufs, because could be
747                  * different for different devices...
748                  */
749                 kpiobufs = i;
750         }
751         dd->ipath_lastport_piobuf = piobufs - kpiobufs;
752         dd->ipath_pbufsport =
753                 uports ? dd->ipath_lastport_piobuf / uports : 0;
754         val32 = dd->ipath_lastport_piobuf - (dd->ipath_pbufsport * uports);
755         if (val32 > 0) {
756                 ipath_dbg("allocating %u pbufs/port leaves %u unused, "
757                           "add to kernel\n", dd->ipath_pbufsport, val32);
758                 dd->ipath_lastport_piobuf -= val32;
759                 ipath_dbg("%u pbufs/port leaves %u unused, add to kernel\n",
760                           dd->ipath_pbufsport, val32);
761         }
762         dd->ipath_lastpioindex = dd->ipath_lastport_piobuf;
763         ipath_cdbg(VERBOSE, "%d PIO bufs for kernel out of %d total %u "
764                    "each for %u user ports\n", kpiobufs,
765                    piobufs, dd->ipath_pbufsport, uports);
766
767         dd->ipath_f_early_init(dd);
768         /*
769          * cancel any possible active sends from early driver load.
770          * Follows early_init because some chips have to initialize
771          * PIO buffers in early_init to avoid false parity errors.
772          */
773         ipath_cancel_sends(dd, 0);
774
775         /* early_init sets rcvhdrentsize and rcvhdrsize, so this must be
776          * done after early_init */
777         dd->ipath_hdrqlast =
778                 dd->ipath_rcvhdrentsize * (dd->ipath_rcvhdrcnt - 1);
779         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrentsize,
780                          dd->ipath_rcvhdrentsize);
781         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
782                          dd->ipath_rcvhdrsize);
783
784         if (!reinit) {
785                 ret = init_pioavailregs(dd);
786                 init_shadow_tids(dd);
787                 if (ret)
788                         goto done;
789         }
790
791         (void)ipath_write_kreg(dd, dd->ipath_kregs->kr_sendpioavailaddr,
792                                dd->ipath_pioavailregs_phys);
793         /*
794          * this is to detect s/w errors, which the h/w works around by
795          * ignoring the low 6 bits of address, if it wasn't aligned.
796          */
797         val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_sendpioavailaddr);
798         if (val != dd->ipath_pioavailregs_phys) {
799                 ipath_dev_err(dd, "Catastrophic software error, "
800                               "SendPIOAvailAddr written as %lx, "
801                               "read back as %llx\n",
802                               (unsigned long) dd->ipath_pioavailregs_phys,
803                               (unsigned long long) val);
804                 ret = -EINVAL;
805                 goto done;
806         }
807
808         ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvbthqp, IPATH_KD_QP);
809
810         /*
811          * make sure we are not in freeze, and PIO send enabled, so
812          * writes to pbc happen
813          */
814         ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrmask, 0ULL);
815         ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
816                          ~0ULL&~INFINIPATH_HWE_MEMBISTFAILED);
817         ipath_write_kreg(dd, dd->ipath_kregs->kr_control, 0ULL);
818
819         spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
820         dd->ipath_sendctrl = INFINIPATH_S_PIOENABLE;
821         ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
822         ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
823         spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
824
825         /*
826          * before error clears, since we expect serdes pll errors during
827          * this, the first time after reset
828          */
829         if (bringup_link(dd)) {
830                 dev_info(&dd->pcidev->dev, "Failed to bringup IB link\n");
831                 ret = -ENETDOWN;
832                 goto done;
833         }
834
835         /*
836          * clear any "expected" hwerrs from reset and/or initialization
837          * clear any that aren't enabled (at least this once), and then
838          * set the enable mask
839          */
840         dd->ipath_f_init_hwerrors(dd);
841         ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
842                          ~0ULL&~INFINIPATH_HWE_MEMBISTFAILED);
843         ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrmask,
844                          dd->ipath_hwerrmask);
845
846         /* clear all */
847         ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
848         /* enable errors that are masked, at least this first time. */
849         ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask,
850                          ~dd->ipath_maskederrs);
851         dd->ipath_errormask = ipath_read_kreg64(dd,
852                 dd->ipath_kregs->kr_errormask);
853         /* clear any interrupts up to this point (ints still not enabled) */
854         ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
855
856         /*
857          * Set up the port 0 (kernel) rcvhdr q and egr TIDs.  If doing
858          * re-init, the simplest way to handle this is to free
859          * existing, and re-allocate.
860          * Need to re-create rest of port 0 portdata as well.
861          */
862         if (reinit) {
863                 /* Alloc and init new ipath_portdata for port0,
864                  * Then free old pd. Could lead to fragmentation, but also
865                  * makes later support for hot-swap easier.
866                  */
867                 struct ipath_portdata *npd;
868                 npd = create_portdata0(dd);
869                 if (npd) {
870                         ipath_free_pddata(dd, pd);
871                         dd->ipath_pd[0] = pd = npd;
872                 } else {
873                         ipath_dev_err(dd, "Unable to allocate portdata for"
874                                       "  port 0, failing\n");
875                         ret = -ENOMEM;
876                         goto done;
877                 }
878         }
879         dd->ipath_f_tidtemplate(dd);
880         ret = ipath_create_rcvhdrq(dd, pd);
881         if (!ret) {
882                 dd->ipath_hdrqtailptr =
883                         (volatile __le64 *)pd->port_rcvhdrtail_kvaddr;
884                 ret = create_port0_egr(dd);
885         }
886         if (ret)
887                 ipath_dev_err(dd, "failed to allocate port 0 (kernel) "
888                               "rcvhdrq and/or egr bufs\n");
889         else
890                 enable_chip(dd, pd, reinit);
891
892
893         if (!ret && !reinit) {
894             /* used when we close a port, for DMA already in flight at close */
895                 dd->ipath_dummy_hdrq = dma_alloc_coherent(
896                         &dd->pcidev->dev, pd->port_rcvhdrq_size,
897                         &dd->ipath_dummy_hdrq_phys,
898                         gfp_flags);
899                 if (!dd->ipath_dummy_hdrq ) {
900                         dev_info(&dd->pcidev->dev,
901                                 "Couldn't allocate 0x%lx bytes for dummy hdrq\n",
902                                 pd->port_rcvhdrq_size);
903                         /* fallback to just 0'ing */
904                         dd->ipath_dummy_hdrq_phys = 0UL;
905                 }
906         }
907
908         /*
909          * cause retrigger of pending interrupts ignored during init,
910          * even if we had errors
911          */
912         ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, 0ULL);
913
914         if(!dd->ipath_stats_timer_active) {
915                 /*
916                  * first init, or after an admin disable/enable
917                  * set up stats retrieval timer, even if we had errors
918                  * in last portion of setup
919                  */
920                 init_timer(&dd->ipath_stats_timer);
921                 dd->ipath_stats_timer.function = ipath_get_faststats;
922                 dd->ipath_stats_timer.data = (unsigned long) dd;
923                 /* every 5 seconds; */
924                 dd->ipath_stats_timer.expires = jiffies + 5 * HZ;
925                 /* takes ~16 seconds to overflow at full IB 4x bandwdith */
926                 add_timer(&dd->ipath_stats_timer);
927                 dd->ipath_stats_timer_active = 1;
928         }
929
930 done:
931         if (!ret) {
932                 *dd->ipath_statusp |= IPATH_STATUS_CHIP_PRESENT;
933                 if (!dd->ipath_f_intrsetup(dd)) {
934                         /* now we can enable all interrupts from the chip */
935                         ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask,
936                                          -1LL);
937                         /* force re-interrupt of any pending interrupts. */
938                         ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear,
939                                          0ULL);
940                         /* chip is usable; mark it as initialized */
941                         *dd->ipath_statusp |= IPATH_STATUS_INITTED;
942                 } else
943                         ipath_dev_err(dd, "No interrupts enabled, couldn't "
944                                       "setup interrupt address\n");
945
946                 if (dd->ipath_cfgports > ipath_stats.sps_nports)
947                         /*
948                          * sps_nports is a global, so, we set it to
949                          * the highest number of ports of any of the
950                          * chips we find; we never decrement it, at
951                          * least for now.  Since this might have changed
952                          * over disable/enable or prior to reset, always
953                          * do the check and potentially adjust.
954                          */
955                         ipath_stats.sps_nports = dd->ipath_cfgports;
956         } else
957                 ipath_dbg("Failed (%d) to initialize chip\n", ret);
958
959         /* if ret is non-zero, we probably should do some cleanup
960            here... */
961         return ret;
962 }
963
964 static int ipath_set_kpiobufs(const char *str, struct kernel_param *kp)
965 {
966         struct ipath_devdata *dd;
967         unsigned long flags;
968         unsigned short val;
969         int ret;
970
971         ret = ipath_parse_ushort(str, &val);
972
973         spin_lock_irqsave(&ipath_devs_lock, flags);
974
975         if (ret < 0)
976                 goto bail;
977
978         if (val == 0) {
979                 ret = -EINVAL;
980                 goto bail;
981         }
982
983         list_for_each_entry(dd, &ipath_dev_list, ipath_list) {
984                 if (dd->ipath_kregbase)
985                         continue;
986                 if (val > (dd->ipath_piobcnt2k + dd->ipath_piobcnt4k -
987                            (dd->ipath_cfgports *
988                             IPATH_MIN_USER_PORT_BUFCNT)))
989                 {
990                         ipath_dev_err(
991                                 dd,
992                                 "Allocating %d PIO bufs for kernel leaves "
993                                 "too few for %d user ports (%d each)\n",
994                                 val, dd->ipath_cfgports - 1,
995                                 IPATH_MIN_USER_PORT_BUFCNT);
996                         ret = -EINVAL;
997                         goto bail;
998                 }
999                 dd->ipath_lastport_piobuf =
1000                         dd->ipath_piobcnt2k + dd->ipath_piobcnt4k - val;
1001         }
1002
1003         ipath_kpiobufs = val;
1004         ret = 0;
1005 bail:
1006         spin_unlock_irqrestore(&ipath_devs_lock, flags);
1007
1008         return ret;
1009 }