blob: 0ec28c302fbf154c999541f4f14f477668530b3e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
5 * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
12 *
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
15 * conditions are met:
16 *
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer.
20 *
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 * SOFTWARE.
34 *
35 * $Id: ipoib_ib.c 1386 2004-12-27 16:23:17Z roland $
36 */
37
38#include <linux/delay.h>
39#include <linux/dma-mapping.h>
40
Roland Dreiera4d61e82005-08-25 13:40:04 -070041#include <rdma/ib_cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include "ipoib.h"
44
45#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG_DATA
46static int data_debug_level;
47
48module_param(data_debug_level, int, 0644);
49MODULE_PARM_DESC(data_debug_level,
50 "Enable data path debug tracing if > 0");
51#endif
52
Ingo Molnar95ed6442006-01-13 14:51:39 -080053static DEFINE_MUTEX(pkey_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55struct ipoib_ah *ipoib_create_ah(struct net_device *dev,
56 struct ib_pd *pd, struct ib_ah_attr *attr)
57{
58 struct ipoib_ah *ah;
59
60 ah = kmalloc(sizeof *ah, GFP_KERNEL);
61 if (!ah)
62 return NULL;
63
64 ah->dev = dev;
65 ah->last_send = 0;
66 kref_init(&ah->ref);
67
68 ah->ah = ib_create_ah(pd, attr);
69 if (IS_ERR(ah->ah)) {
70 kfree(ah);
71 ah = NULL;
72 } else
73 ipoib_dbg(netdev_priv(dev), "Created ah %p\n", ah->ah);
74
75 return ah;
76}
77
78void ipoib_free_ah(struct kref *kref)
79{
80 struct ipoib_ah *ah = container_of(kref, struct ipoib_ah, ref);
81 struct ipoib_dev_priv *priv = netdev_priv(ah->dev);
82
83 unsigned long flags;
84
Roland Dreier31c02e22006-06-17 20:37:34 -070085 spin_lock_irqsave(&priv->lock, flags);
86 list_add_tail(&ah->list, &priv->dead_ahs);
87 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static int ipoib_ib_post_receive(struct net_device *dev, int id)
91{
92 struct ipoib_dev_priv *priv = netdev_priv(dev);
Roland Dreier1993d682005-10-28 15:30:34 -070093 struct ib_sge list;
94 struct ib_recv_wr param;
95 struct ib_recv_wr *bad_wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 int ret;
97
Roland Dreier1993d682005-10-28 15:30:34 -070098 list.addr = priv->rx_ring[id].mapping;
99 list.length = IPOIB_BUF_SIZE;
100 list.lkey = priv->mr->lkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Roland Dreier1993d682005-10-28 15:30:34 -0700102 param.next = NULL;
103 param.wr_id = id | IPOIB_OP_RECV;
104 param.sg_list = &list;
105 param.num_sge = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Roland Dreier1993d682005-10-28 15:30:34 -0700107 ret = ib_post_recv(priv->qp, &param, &bad_wr);
108 if (unlikely(ret)) {
109 ipoib_warn(priv, "receive failed for buf %d (%d)\n", id, ret);
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800110 ib_dma_unmap_single(priv->ca, priv->rx_ring[id].mapping,
111 IPOIB_BUF_SIZE, DMA_FROM_DEVICE);
Roland Dreier1993d682005-10-28 15:30:34 -0700112 dev_kfree_skb_any(priv->rx_ring[id].skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 priv->rx_ring[id].skb = NULL;
114 }
115
116 return ret;
117}
118
Roland Dreier1993d682005-10-28 15:30:34 -0700119static int ipoib_alloc_rx_skb(struct net_device *dev, int id)
120{
121 struct ipoib_dev_priv *priv = netdev_priv(dev);
122 struct sk_buff *skb;
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800123 u64 addr;
Roland Dreier1993d682005-10-28 15:30:34 -0700124
125 skb = dev_alloc_skb(IPOIB_BUF_SIZE + 4);
126 if (!skb)
127 return -ENOMEM;
128
129 /*
130 * IB will leave a 40 byte gap for a GRH and IPoIB adds a 4 byte
131 * header. So we need 4 more bytes to get to 48 and align the
132 * IP header to a multiple of 16.
133 */
134 skb_reserve(skb, 4);
135
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800136 addr = ib_dma_map_single(priv->ca, skb->data, IPOIB_BUF_SIZE,
137 DMA_FROM_DEVICE);
138 if (unlikely(ib_dma_mapping_error(priv->ca, addr))) {
Roland Dreier1993d682005-10-28 15:30:34 -0700139 dev_kfree_skb_any(skb);
140 return -EIO;
141 }
142
143 priv->rx_ring[id].skb = skb;
144 priv->rx_ring[id].mapping = addr;
145
146 return 0;
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static int ipoib_ib_post_receives(struct net_device *dev)
150{
151 struct ipoib_dev_priv *priv = netdev_priv(dev);
152 int i;
153
Shirley Ma0f485252006-04-10 09:43:58 -0700154 for (i = 0; i < ipoib_recvq_size; ++i) {
Roland Dreier1993d682005-10-28 15:30:34 -0700155 if (ipoib_alloc_rx_skb(dev, i)) {
156 ipoib_warn(priv, "failed to allocate receive buffer %d\n", i);
157 return -ENOMEM;
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (ipoib_ib_post_receive(dev, i)) {
160 ipoib_warn(priv, "ipoib_ib_post_receive failed for buf %d\n", i);
161 return -EIO;
162 }
163 }
164
165 return 0;
166}
167
Roland Dreier2439a6e2006-09-22 15:22:52 -0700168static void ipoib_ib_handle_rx_wc(struct net_device *dev, struct ib_wc *wc)
169{
170 struct ipoib_dev_priv *priv = netdev_priv(dev);
171 unsigned int wr_id = wc->wr_id & ~IPOIB_OP_RECV;
172 struct sk_buff *skb;
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800173 u64 addr;
Roland Dreier2439a6e2006-09-22 15:22:52 -0700174
Roland Dreiera89875f2007-04-18 20:20:53 -0700175 ipoib_dbg_data(priv, "recv completion: id %d, status: %d\n",
176 wr_id, wc->status);
Roland Dreier2439a6e2006-09-22 15:22:52 -0700177
178 if (unlikely(wr_id >= ipoib_recvq_size)) {
179 ipoib_warn(priv, "recv completion event with wrid %d (> %d)\n",
180 wr_id, ipoib_recvq_size);
181 return;
182 }
183
184 skb = priv->rx_ring[wr_id].skb;
185 addr = priv->rx_ring[wr_id].mapping;
186
187 if (unlikely(wc->status != IB_WC_SUCCESS)) {
188 if (wc->status != IB_WC_WR_FLUSH_ERR)
189 ipoib_warn(priv, "failed recv event "
190 "(status=%d, wrid=%d vend_err %x)\n",
191 wc->status, wr_id, wc->vendor_err);
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800192 ib_dma_unmap_single(priv->ca, addr,
193 IPOIB_BUF_SIZE, DMA_FROM_DEVICE);
Roland Dreier2439a6e2006-09-22 15:22:52 -0700194 dev_kfree_skb_any(skb);
195 priv->rx_ring[wr_id].skb = NULL;
196 return;
197 }
198
199 /*
Roland Dreier1b844af2007-07-10 13:43:53 -0700200 * Drop packets that this interface sent, ie multicast packets
201 * that the HCA has replicated.
202 */
203 if (wc->slid == priv->local_lid && wc->src_qp == priv->qp->qp_num)
204 goto repost;
205
206 /*
Roland Dreier2439a6e2006-09-22 15:22:52 -0700207 * If we can't allocate a new RX buffer, dump
208 * this packet and reuse the old buffer.
209 */
210 if (unlikely(ipoib_alloc_rx_skb(dev, wr_id))) {
Roland Dreierde903512007-09-28 15:33:51 -0700211 ++dev->stats.rx_dropped;
Roland Dreier2439a6e2006-09-22 15:22:52 -0700212 goto repost;
213 }
214
215 ipoib_dbg_data(priv, "received %d bytes, SLID 0x%04x\n",
216 wc->byte_len, wc->slid);
217
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800218 ib_dma_unmap_single(priv->ca, addr, IPOIB_BUF_SIZE, DMA_FROM_DEVICE);
Roland Dreier2439a6e2006-09-22 15:22:52 -0700219
220 skb_put(skb, wc->byte_len);
221 skb_pull(skb, IB_GRH_BYTES);
222
Roland Dreier1b844af2007-07-10 13:43:53 -0700223 skb->protocol = ((struct ipoib_header *) skb->data)->proto;
224 skb_reset_mac_header(skb);
225 skb_pull(skb, IPOIB_ENCAP_LEN);
Roland Dreier2439a6e2006-09-22 15:22:52 -0700226
Roland Dreier1b844af2007-07-10 13:43:53 -0700227 dev->last_rx = jiffies;
Roland Dreierde903512007-09-28 15:33:51 -0700228 ++dev->stats.rx_packets;
229 dev->stats.rx_bytes += skb->len;
Roland Dreier2439a6e2006-09-22 15:22:52 -0700230
Roland Dreier1b844af2007-07-10 13:43:53 -0700231 skb->dev = dev;
232 /* XXX get correct PACKET_ type here */
233 skb->pkt_type = PACKET_HOST;
234 netif_receive_skb(skb);
Roland Dreier2439a6e2006-09-22 15:22:52 -0700235
236repost:
237 if (unlikely(ipoib_ib_post_receive(dev, wr_id)))
238 ipoib_warn(priv, "ipoib_ib_post_receive failed "
239 "for buf %d\n", wr_id);
240}
241
242static void ipoib_ib_handle_tx_wc(struct net_device *dev, struct ib_wc *wc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct ipoib_dev_priv *priv = netdev_priv(dev);
245 unsigned int wr_id = wc->wr_id;
Roland Dreier2439a6e2006-09-22 15:22:52 -0700246 struct ipoib_tx_buf *tx_req;
247 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Roland Dreiera89875f2007-04-18 20:20:53 -0700249 ipoib_dbg_data(priv, "send completion: id %d, status: %d\n",
250 wr_id, wc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Roland Dreier2439a6e2006-09-22 15:22:52 -0700252 if (unlikely(wr_id >= ipoib_sendq_size)) {
253 ipoib_warn(priv, "send completion event with wrid %d (> %d)\n",
254 wr_id, ipoib_sendq_size);
255 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Roland Dreier2439a6e2006-09-22 15:22:52 -0700257
258 tx_req = &priv->tx_ring[wr_id];
259
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800260 ib_dma_unmap_single(priv->ca, tx_req->mapping,
261 tx_req->skb->len, DMA_TO_DEVICE);
Roland Dreier2439a6e2006-09-22 15:22:52 -0700262
Roland Dreierde903512007-09-28 15:33:51 -0700263 ++dev->stats.tx_packets;
264 dev->stats.tx_bytes += tx_req->skb->len;
Roland Dreier2439a6e2006-09-22 15:22:52 -0700265
266 dev_kfree_skb_any(tx_req->skb);
267
268 spin_lock_irqsave(&priv->tx_lock, flags);
269 ++priv->tx_tail;
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200270 if (unlikely(test_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags)) &&
271 priv->tx_head - priv->tx_tail <= ipoib_sendq_size >> 1) {
272 clear_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags);
Roland Dreier2439a6e2006-09-22 15:22:52 -0700273 netif_wake_queue(dev);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200274 }
Roland Dreier2439a6e2006-09-22 15:22:52 -0700275 spin_unlock_irqrestore(&priv->tx_lock, flags);
276
277 if (wc->status != IB_WC_SUCCESS &&
278 wc->status != IB_WC_WR_FLUSH_ERR)
279 ipoib_warn(priv, "failed send event "
280 "(status=%d, wrid=%d vend_err %x)\n",
281 wc->status, wr_id, wc->vendor_err);
282}
283
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700284int ipoib_poll(struct napi_struct *napi, int budget)
Roland Dreier2439a6e2006-09-22 15:22:52 -0700285{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700286 struct ipoib_dev_priv *priv = container_of(napi, struct ipoib_dev_priv, napi);
287 struct net_device *dev = priv->dev;
Roland Dreier8d1cc862007-05-06 21:05:32 -0700288 int done;
289 int t;
Roland Dreier8d1cc862007-05-06 21:05:32 -0700290 int n, i;
291
292 done = 0;
Roland Dreier8d1cc862007-05-06 21:05:32 -0700293
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700294poll_more:
295 while (done < budget) {
296 int max = (budget - done);
297
Roland Dreier8d1cc862007-05-06 21:05:32 -0700298 t = min(IPOIB_NUM_WC, max);
299 n = ib_poll_cq(priv->cq, t, priv->ibwc);
300
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700301 for (i = 0; i < n; i++) {
Roland Dreier8d1cc862007-05-06 21:05:32 -0700302 struct ib_wc *wc = priv->ibwc + i;
303
304 if (wc->wr_id & IPOIB_CM_OP_SRQ) {
305 ++done;
Roland Dreier8d1cc862007-05-06 21:05:32 -0700306 ipoib_cm_handle_rx_wc(dev, wc);
307 } else if (wc->wr_id & IPOIB_OP_RECV) {
308 ++done;
Roland Dreier8d1cc862007-05-06 21:05:32 -0700309 ipoib_ib_handle_rx_wc(dev, wc);
310 } else
311 ipoib_ib_handle_tx_wc(dev, wc);
312 }
313
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700314 if (n != t)
Roland Dreier8d1cc862007-05-06 21:05:32 -0700315 break;
Roland Dreier8d1cc862007-05-06 21:05:32 -0700316 }
317
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700318 if (done < budget) {
319 netif_rx_complete(dev, napi);
Roland Dreier8d1cc862007-05-06 21:05:32 -0700320 if (unlikely(ib_req_notify_cq(priv->cq,
321 IB_CQ_NEXT_COMP |
322 IB_CQ_REPORT_MISSED_EVENTS)) &&
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700323 netif_rx_reschedule(dev, napi))
324 goto poll_more;
Roland Dreier8d1cc862007-05-06 21:05:32 -0700325 }
326
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700327 return done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330void ipoib_ib_completion(struct ib_cq *cq, void *dev_ptr)
331{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700332 struct net_device *dev = dev_ptr;
333 struct ipoib_dev_priv *priv = netdev_priv(dev);
334
335 netif_rx_schedule(dev, &priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338static inline int post_send(struct ipoib_dev_priv *priv,
339 unsigned int wr_id,
340 struct ib_ah *address, u32 qpn,
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800341 u64 addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct ib_send_wr *bad_wr;
344
345 priv->tx_sge.addr = addr;
346 priv->tx_sge.length = len;
347
348 priv->tx_wr.wr_id = wr_id;
349 priv->tx_wr.wr.ud.remote_qpn = qpn;
350 priv->tx_wr.wr.ud.ah = address;
351
352 return ib_post_send(priv->qp, &priv->tx_wr, &bad_wr);
353}
354
355void ipoib_send(struct net_device *dev, struct sk_buff *skb,
356 struct ipoib_ah *address, u32 qpn)
357{
358 struct ipoib_dev_priv *priv = netdev_priv(dev);
Roland Dreier1993d682005-10-28 15:30:34 -0700359 struct ipoib_tx_buf *tx_req;
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800360 u64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Michael S. Tsirkin77d8e1e2007-03-21 15:45:05 +0200362 if (unlikely(skb->len > priv->mcast_mtu + IPOIB_ENCAP_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 ipoib_warn(priv, "packet len %d (> %d) too long to send, dropping\n",
Michael S. Tsirkin77d8e1e2007-03-21 15:45:05 +0200364 skb->len, priv->mcast_mtu + IPOIB_ENCAP_LEN);
Roland Dreierde903512007-09-28 15:33:51 -0700365 ++dev->stats.tx_dropped;
366 ++dev->stats.tx_errors;
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200367 ipoib_cm_skb_too_long(dev, skb, priv->mcast_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return;
369 }
370
371 ipoib_dbg_data(priv, "sending packet, length=%d address=%p qpn=0x%06x\n",
372 skb->len, address, qpn);
373
374 /*
375 * We put the skb into the tx_ring _before_ we call post_send()
376 * because it's entirely possible that the completion handler will
377 * run before we execute anything after the post_send(). That
378 * means we have to make sure everything is properly recorded and
379 * our state is consistent before we call post_send().
380 */
Shirley Ma0f485252006-04-10 09:43:58 -0700381 tx_req = &priv->tx_ring[priv->tx_head & (ipoib_sendq_size - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 tx_req->skb = skb;
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800383 addr = ib_dma_map_single(priv->ca, skb->data, skb->len,
384 DMA_TO_DEVICE);
385 if (unlikely(ib_dma_mapping_error(priv->ca, addr))) {
Roland Dreierde903512007-09-28 15:33:51 -0700386 ++dev->stats.tx_errors;
Roland Dreier73fbe8b2006-10-10 12:50:38 -0700387 dev_kfree_skb_any(skb);
388 return;
389 }
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800390 tx_req->mapping = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Shirley Ma0f485252006-04-10 09:43:58 -0700392 if (unlikely(post_send(priv, priv->tx_head & (ipoib_sendq_size - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 address->ah, qpn, addr, skb->len))) {
394 ipoib_warn(priv, "post_send failed\n");
Roland Dreierde903512007-09-28 15:33:51 -0700395 ++dev->stats.tx_errors;
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800396 ib_dma_unmap_single(priv->ca, addr, skb->len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 dev_kfree_skb_any(skb);
398 } else {
399 dev->trans_start = jiffies;
400
401 address->last_send = priv->tx_head;
402 ++priv->tx_head;
403
Shirley Ma0f485252006-04-10 09:43:58 -0700404 if (priv->tx_head - priv->tx_tail == ipoib_sendq_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 ipoib_dbg(priv, "TX ring full, stopping kernel net queue\n");
406 netif_stop_queue(dev);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200407 set_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409 }
410}
411
412static void __ipoib_reap_ah(struct net_device *dev)
413{
414 struct ipoib_dev_priv *priv = netdev_priv(dev);
415 struct ipoib_ah *ah, *tah;
416 LIST_HEAD(remove_list);
417
Roland Dreier31c02e22006-06-17 20:37:34 -0700418 spin_lock_irq(&priv->tx_lock);
419 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 list_for_each_entry_safe(ah, tah, &priv->dead_ahs, list)
Roland Dreier21818582005-07-27 14:41:32 -0700421 if ((int) priv->tx_tail - (int) ah->last_send >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 list_del(&ah->list);
Roland Dreier31c02e22006-06-17 20:37:34 -0700423 ib_destroy_ah(ah->ah);
424 kfree(ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
Roland Dreier31c02e22006-06-17 20:37:34 -0700426 spin_unlock(&priv->lock);
427 spin_unlock_irq(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
David Howellsc4028952006-11-22 14:57:56 +0000430void ipoib_reap_ah(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
David Howellsc4028952006-11-22 14:57:56 +0000432 struct ipoib_dev_priv *priv =
433 container_of(work, struct ipoib_dev_priv, ah_reap_task.work);
434 struct net_device *dev = priv->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 __ipoib_reap_ah(dev);
437
438 if (!test_bit(IPOIB_STOP_REAPER, &priv->flags))
439 queue_delayed_work(ipoib_workqueue, &priv->ah_reap_task, HZ);
440}
441
442int ipoib_ib_dev_open(struct net_device *dev)
443{
444 struct ipoib_dev_priv *priv = netdev_priv(dev);
445 int ret;
446
Yosef Etigin26bbf132007-05-19 08:51:54 -0700447 if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &priv->pkey_index)) {
448 ipoib_warn(priv, "P_Key 0x%04x not found\n", priv->pkey);
449 clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
450 return -1;
451 }
452 set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
453
Roland Dreier5b6810e2005-10-11 11:08:24 -0700454 ret = ipoib_init_qp(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (ret) {
Roland Dreier5b6810e2005-10-11 11:08:24 -0700456 ipoib_warn(priv, "ipoib_init_qp returned %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return -1;
458 }
459
460 ret = ipoib_ib_post_receives(dev);
461 if (ret) {
462 ipoib_warn(priv, "ipoib_ib_post_receives returned %d\n", ret);
Yosef Etigin26bbf132007-05-19 08:51:54 -0700463 ipoib_ib_dev_stop(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -1;
465 }
466
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200467 ret = ipoib_cm_dev_open(dev);
468 if (ret) {
Michael S. Tsirkin24bd1e42007-05-18 16:12:54 +0300469 ipoib_warn(priv, "ipoib_cm_dev_open returned %d\n", ret);
Yosef Etigin26bbf132007-05-19 08:51:54 -0700470 ipoib_ib_dev_stop(dev, 1);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200471 return -1;
472 }
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 clear_bit(IPOIB_STOP_REAPER, &priv->flags);
475 queue_delayed_work(ipoib_workqueue, &priv->ah_reap_task, HZ);
476
Leonid Arsh7a343d42006-03-23 19:52:51 +0200477 set_bit(IPOIB_FLAG_INITIALIZED, &priv->flags);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 0;
480}
481
Leonid Arsh7a343d42006-03-23 19:52:51 +0200482static void ipoib_pkey_dev_check_presence(struct net_device *dev)
483{
484 struct ipoib_dev_priv *priv = netdev_priv(dev);
485 u16 pkey_index = 0;
486
487 if (ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index))
488 clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
489 else
490 set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
491}
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493int ipoib_ib_dev_up(struct net_device *dev)
494{
495 struct ipoib_dev_priv *priv = netdev_priv(dev);
496
Leonid Arsh7a343d42006-03-23 19:52:51 +0200497 ipoib_pkey_dev_check_presence(dev);
498
499 if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags)) {
500 ipoib_dbg(priv, "PKEY is not assigned.\n");
501 return 0;
502 }
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 set_bit(IPOIB_FLAG_OPER_UP, &priv->flags);
505
506 return ipoib_mcast_start_thread(dev);
507}
508
Jack Morgenstein0b3ea082006-03-20 10:08:24 -0800509int ipoib_ib_dev_down(struct net_device *dev, int flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct ipoib_dev_priv *priv = netdev_priv(dev);
512
513 ipoib_dbg(priv, "downing ib_dev\n");
514
515 clear_bit(IPOIB_FLAG_OPER_UP, &priv->flags);
516 netif_carrier_off(dev);
517
518 /* Shutdown the P_Key thread if still active */
519 if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags)) {
Ingo Molnar95ed6442006-01-13 14:51:39 -0800520 mutex_lock(&pkey_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 set_bit(IPOIB_PKEY_STOP, &priv->flags);
Yosef Etigin26bbf132007-05-19 08:51:54 -0700522 cancel_delayed_work(&priv->pkey_poll_task);
Ingo Molnar95ed6442006-01-13 14:51:39 -0800523 mutex_unlock(&pkey_mutex);
Jack Morgenstein0b3ea082006-03-20 10:08:24 -0800524 if (flush)
525 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527
Jack Morgenstein0b3ea082006-03-20 10:08:24 -0800528 ipoib_mcast_stop_thread(dev, flush);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 ipoib_mcast_dev_flush(dev);
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 ipoib_flush_paths(dev);
532
533 return 0;
534}
535
536static int recvs_pending(struct net_device *dev)
537{
538 struct ipoib_dev_priv *priv = netdev_priv(dev);
539 int pending = 0;
540 int i;
541
Shirley Ma0f485252006-04-10 09:43:58 -0700542 for (i = 0; i < ipoib_recvq_size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (priv->rx_ring[i].skb)
544 ++pending;
545
546 return pending;
547}
548
Michael S. Tsirkin2dfbfc32007-05-24 18:32:46 +0300549void ipoib_drain_cq(struct net_device *dev)
550{
551 struct ipoib_dev_priv *priv = netdev_priv(dev);
552 int i, n;
553 do {
554 n = ib_poll_cq(priv->cq, IPOIB_NUM_WC, priv->ibwc);
555 for (i = 0; i < n; ++i) {
556 if (priv->ibwc[i].wr_id & IPOIB_CM_OP_SRQ)
557 ipoib_cm_handle_rx_wc(dev, priv->ibwc + i);
558 else if (priv->ibwc[i].wr_id & IPOIB_OP_RECV)
559 ipoib_ib_handle_rx_wc(dev, priv->ibwc + i);
560 else
561 ipoib_ib_handle_tx_wc(dev, priv->ibwc + i);
562 }
563 } while (n == IPOIB_NUM_WC);
564}
565
Yosef Etigin26bbf132007-05-19 08:51:54 -0700566int ipoib_ib_dev_stop(struct net_device *dev, int flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 struct ipoib_dev_priv *priv = netdev_priv(dev);
569 struct ib_qp_attr qp_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unsigned long begin;
Roland Dreier1993d682005-10-28 15:30:34 -0700571 struct ipoib_tx_buf *tx_req;
Michael S. Tsirkin2dfbfc32007-05-24 18:32:46 +0300572 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Leonid Arsh7a343d42006-03-23 19:52:51 +0200574 clear_bit(IPOIB_FLAG_INITIALIZED, &priv->flags);
575
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200576 ipoib_cm_dev_stop(dev);
577
Roland Dreier3bc12e72005-10-30 13:20:09 -0800578 /*
579 * Move our QP to the error state and then reinitialize in
580 * when all work requests have completed or have been flushed.
581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 qp_attr.qp_state = IB_QPS_ERR;
Roland Dreier3bc12e72005-10-30 13:20:09 -0800583 if (ib_modify_qp(priv->qp, &qp_attr, IB_QP_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 ipoib_warn(priv, "Failed to modify QP to ERROR state\n");
585
586 /* Wait for all sends and receives to complete */
587 begin = jiffies;
588
589 while (priv->tx_head != priv->tx_tail || recvs_pending(dev)) {
590 if (time_after(jiffies, begin + 5 * HZ)) {
591 ipoib_warn(priv, "timing out; %d sends %d receives not completed\n",
592 priv->tx_head - priv->tx_tail, recvs_pending(dev));
593
594 /*
595 * assume the HW is wedged and just free up
596 * all our pending work requests.
597 */
Roland Dreier21818582005-07-27 14:41:32 -0700598 while ((int) priv->tx_tail - (int) priv->tx_head < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 tx_req = &priv->tx_ring[priv->tx_tail &
Shirley Ma0f485252006-04-10 09:43:58 -0700600 (ipoib_sendq_size - 1)];
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800601 ib_dma_unmap_single(priv->ca,
602 tx_req->mapping,
603 tx_req->skb->len,
604 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 dev_kfree_skb_any(tx_req->skb);
606 ++priv->tx_tail;
607 }
608
Ralph Campbell37ccf9d2006-12-12 14:30:48 -0800609 for (i = 0; i < ipoib_recvq_size; ++i) {
610 struct ipoib_rx_buf *rx_req;
611
612 rx_req = &priv->rx_ring[i];
613 if (!rx_req->skb)
614 continue;
615 ib_dma_unmap_single(priv->ca,
616 rx_req->mapping,
617 IPOIB_BUF_SIZE,
618 DMA_FROM_DEVICE);
619 dev_kfree_skb_any(rx_req->skb);
620 rx_req->skb = NULL;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 goto timeout;
624 }
625
Michael S. Tsirkin2dfbfc32007-05-24 18:32:46 +0300626 ipoib_drain_cq(dev);
Roland Dreier8d1cc862007-05-06 21:05:32 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 msleep(1);
629 }
630
631 ipoib_dbg(priv, "All sends and receives done.\n");
632
633timeout:
634 qp_attr.qp_state = IB_QPS_RESET;
Roland Dreier3bc12e72005-10-30 13:20:09 -0800635 if (ib_modify_qp(priv->qp, &qp_attr, IB_QP_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 ipoib_warn(priv, "Failed to modify QP to RESET state\n");
637
638 /* Wait for all AHs to be reaped */
639 set_bit(IPOIB_STOP_REAPER, &priv->flags);
640 cancel_delayed_work(&priv->ah_reap_task);
Yosef Etigin26bbf132007-05-19 08:51:54 -0700641 if (flush)
642 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 begin = jiffies;
645
646 while (!list_empty(&priv->dead_ahs)) {
647 __ipoib_reap_ah(dev);
648
649 if (time_after(jiffies, begin + HZ)) {
650 ipoib_warn(priv, "timing out; will leak address handles\n");
651 break;
652 }
653
654 msleep(1);
655 }
656
Roland Dreier8d1cc862007-05-06 21:05:32 -0700657 ib_req_notify_cq(priv->cq, IB_CQ_NEXT_COMP);
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 0;
660}
661
662int ipoib_ib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
663{
664 struct ipoib_dev_priv *priv = netdev_priv(dev);
665
666 priv->ca = ca;
667 priv->port = port;
668 priv->qp = NULL;
669
670 if (ipoib_transport_dev_init(dev, ca)) {
671 printk(KERN_WARNING "%s: ipoib_transport_dev_init failed\n", ca->name);
672 return -ENODEV;
673 }
674
675 if (dev->flags & IFF_UP) {
676 if (ipoib_ib_dev_open(dev)) {
677 ipoib_transport_dev_cleanup(dev);
678 return -ENODEV;
679 }
680 }
681
682 return 0;
683}
684
Yosef Etigin26bbf132007-05-19 08:51:54 -0700685static void __ipoib_ib_dev_flush(struct ipoib_dev_priv *priv, int pkey_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Yosef Etigin26bbf132007-05-19 08:51:54 -0700687 struct ipoib_dev_priv *cpriv;
David Howellsc4028952006-11-22 14:57:56 +0000688 struct net_device *dev = priv->dev;
Yosef Etigin26bbf132007-05-19 08:51:54 -0700689 u16 new_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Yosef Etigin26bbf132007-05-19 08:51:54 -0700691 mutex_lock(&priv->vlan_mutex);
692
693 /*
694 * Flush any child interfaces too -- they might be up even if
695 * the parent is down.
696 */
697 list_for_each_entry(cpriv, &priv->child_intfs, list)
698 __ipoib_ib_dev_flush(cpriv, pkey_event);
699
700 mutex_unlock(&priv->vlan_mutex);
701
702 if (!test_bit(IPOIB_FLAG_INITIALIZED, &priv->flags)) {
Leonid Arsh7a343d42006-03-23 19:52:51 +0200703 ipoib_dbg(priv, "Not flushing - IPOIB_FLAG_INITIALIZED not set.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return;
Leonid Arsh7a343d42006-03-23 19:52:51 +0200705 }
706
707 if (!test_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags)) {
708 ipoib_dbg(priv, "Not flushing - IPOIB_FLAG_ADMIN_UP not set.\n");
709 return;
710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Yosef Etigin26bbf132007-05-19 08:51:54 -0700712 if (pkey_event) {
713 if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &new_index)) {
714 clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
715 ipoib_ib_dev_down(dev, 0);
716 ipoib_pkey_dev_delay_open(dev);
717 return;
718 }
719 set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
720
721 /* restart QP only if P_Key index is changed */
722 if (new_index == priv->pkey_index) {
723 ipoib_dbg(priv, "Not flushing - P_Key index not changed.\n");
724 return;
725 }
726 priv->pkey_index = new_index;
727 }
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ipoib_dbg(priv, "flushing\n");
730
Jack Morgenstein0b3ea082006-03-20 10:08:24 -0800731 ipoib_ib_dev_down(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Yosef Etigin26bbf132007-05-19 08:51:54 -0700733 if (pkey_event) {
734 ipoib_ib_dev_stop(dev, 0);
735 ipoib_ib_dev_open(dev);
736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * The device could have been brought down between the start and when
740 * we get here, don't bring it back up if it's not configured up
741 */
Eli Cohen5ccd0252006-09-22 15:22:56 -0700742 if (test_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 ipoib_ib_dev_up(dev);
David Howellsc4028952006-11-22 14:57:56 +0000744 ipoib_mcast_restart_task(&priv->restart_task);
Eli Cohen5ccd0252006-09-22 15:22:56 -0700745 }
Yosef Etigin26bbf132007-05-19 08:51:54 -0700746}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Yosef Etigin26bbf132007-05-19 08:51:54 -0700748void ipoib_ib_dev_flush(struct work_struct *work)
749{
750 struct ipoib_dev_priv *priv =
751 container_of(work, struct ipoib_dev_priv, flush_task);
Michael S. Tsirkin4f710552005-11-29 10:53:30 -0800752
Yosef Etigin26bbf132007-05-19 08:51:54 -0700753 ipoib_dbg(priv, "Flushing %s\n", priv->dev->name);
754 __ipoib_ib_dev_flush(priv, 0);
755}
Michael S. Tsirkin4f710552005-11-29 10:53:30 -0800756
Yosef Etigin26bbf132007-05-19 08:51:54 -0700757void ipoib_pkey_event(struct work_struct *work)
758{
759 struct ipoib_dev_priv *priv =
760 container_of(work, struct ipoib_dev_priv, pkey_event_task);
761
762 ipoib_dbg(priv, "Flushing %s and restarting its QP\n", priv->dev->name);
763 __ipoib_ib_dev_flush(priv, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766void ipoib_ib_dev_cleanup(struct net_device *dev)
767{
768 struct ipoib_dev_priv *priv = netdev_priv(dev);
769
770 ipoib_dbg(priv, "cleaning up ib_dev\n");
771
Roland Dreier8d2cae02005-09-20 10:52:04 -0700772 ipoib_mcast_stop_thread(dev, 1);
Eli Cohen988bd502006-01-12 14:32:20 -0800773 ipoib_mcast_dev_flush(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 ipoib_transport_dev_cleanup(dev);
776}
777
778/*
779 * Delayed P_Key Assigment Interim Support
780 *
781 * The following is initial implementation of delayed P_Key assigment
782 * mechanism. It is using the same approach implemented for the multicast
783 * group join. The single goal of this implementation is to quickly address
784 * Bug #2507. This implementation will probably be removed when the P_Key
785 * change async notification is available.
786 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
David Howellsc4028952006-11-22 14:57:56 +0000788void ipoib_pkey_poll(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
David Howellsc4028952006-11-22 14:57:56 +0000790 struct ipoib_dev_priv *priv =
Yosef Etigin26bbf132007-05-19 08:51:54 -0700791 container_of(work, struct ipoib_dev_priv, pkey_poll_task.work);
David Howellsc4028952006-11-22 14:57:56 +0000792 struct net_device *dev = priv->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 ipoib_pkey_dev_check_presence(dev);
795
796 if (test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags))
797 ipoib_open(dev);
798 else {
Ingo Molnar95ed6442006-01-13 14:51:39 -0800799 mutex_lock(&pkey_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (!test_bit(IPOIB_PKEY_STOP, &priv->flags))
801 queue_delayed_work(ipoib_workqueue,
Yosef Etigin26bbf132007-05-19 08:51:54 -0700802 &priv->pkey_poll_task,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 HZ);
Ingo Molnar95ed6442006-01-13 14:51:39 -0800804 mutex_unlock(&pkey_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806}
807
808int ipoib_pkey_dev_delay_open(struct net_device *dev)
809{
810 struct ipoib_dev_priv *priv = netdev_priv(dev);
811
812 /* Look for the interface pkey value in the IB Port P_Key table and */
813 /* set the interface pkey assigment flag */
814 ipoib_pkey_dev_check_presence(dev);
815
816 /* P_Key value not assigned yet - start polling */
817 if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags)) {
Ingo Molnar95ed6442006-01-13 14:51:39 -0800818 mutex_lock(&pkey_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 clear_bit(IPOIB_PKEY_STOP, &priv->flags);
820 queue_delayed_work(ipoib_workqueue,
Yosef Etigin26bbf132007-05-19 08:51:54 -0700821 &priv->pkey_poll_task,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 HZ);
Ingo Molnar95ed6442006-01-13 14:51:39 -0800823 mutex_unlock(&pkey_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return 1;
825 }
826
827 return 0;
828}