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