blob: d4261163bd25549599750d28a9c6e08279462d25 [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Jubin John05d6ac12016-02-14 20:22:17 -08002 * Copyright(c) 2015, 2016 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04003 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
47
48#include <linux/spinlock.h>
49#include <linux/pci.h>
50#include <linux/io.h>
51#include <linux/delay.h>
52#include <linux/netdevice.h>
53#include <linux/vmalloc.h>
54#include <linux/module.h>
55#include <linux/prefetch.h>
Dennis Dalessandro8859b4a2016-01-19 14:42:11 -080056#include <rdma/ib_verbs.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040057
58#include "hfi.h"
59#include "trace.h"
60#include "qp.h"
61#include "sdma.h"
62
63#undef pr_fmt
64#define pr_fmt(fmt) DRIVER_NAME ": " fmt
65
66/*
67 * The size has to be longer than this string, so we can append
68 * board/chip information to it in the initialization code.
69 */
70const char ib_hfi1_version[] = HFI1_DRIVER_VERSION "\n";
71
72DEFINE_SPINLOCK(hfi1_devs_lock);
73LIST_HEAD(hfi1_dev_list);
74DEFINE_MUTEX(hfi1_mutex); /* general driver use */
75
76unsigned int hfi1_max_mtu = HFI1_DEFAULT_MAX_MTU;
77module_param_named(max_mtu, hfi1_max_mtu, uint, S_IRUGO);
Sebastian Sanchezef699e82016-04-12 11:17:09 -070078MODULE_PARM_DESC(max_mtu, "Set max MTU bytes, default is " __stringify(
79 HFI1_DEFAULT_MAX_MTU));
Mike Marciniszyn77241052015-07-30 15:17:43 -040080
81unsigned int hfi1_cu = 1;
82module_param_named(cu, hfi1_cu, uint, S_IRUGO);
83MODULE_PARM_DESC(cu, "Credit return units");
84
85unsigned long hfi1_cap_mask = HFI1_CAP_MASK_DEFAULT;
86static int hfi1_caps_set(const char *, const struct kernel_param *);
87static int hfi1_caps_get(char *, const struct kernel_param *);
88static const struct kernel_param_ops cap_ops = {
89 .set = hfi1_caps_set,
90 .get = hfi1_caps_get
91};
92module_param_cb(cap_mask, &cap_ops, &hfi1_cap_mask, S_IWUSR | S_IRUGO);
93MODULE_PARM_DESC(cap_mask, "Bit mask of enabled/disabled HW features");
94
95MODULE_LICENSE("Dual BSD/GPL");
96MODULE_DESCRIPTION("Intel Omni-Path Architecture driver");
97MODULE_VERSION(HFI1_DRIVER_VERSION);
98
99/*
100 * MAX_PKT_RCV is the max # if packets processed per receive interrupt.
101 */
102#define MAX_PKT_RECV 64
103#define EGR_HEAD_UPDATE_THRESHOLD 16
104
105struct hfi1_ib_stats hfi1_stats;
106
107static int hfi1_caps_set(const char *val, const struct kernel_param *kp)
108{
109 int ret = 0;
110 unsigned long *cap_mask_ptr = (unsigned long *)kp->arg,
111 cap_mask = *cap_mask_ptr, value, diff,
112 write_mask = ((HFI1_CAP_WRITABLE_MASK << HFI1_CAP_USER_SHIFT) |
113 HFI1_CAP_WRITABLE_MASK);
114
115 ret = kstrtoul(val, 0, &value);
116 if (ret) {
117 pr_warn("Invalid module parameter value for 'cap_mask'\n");
118 goto done;
119 }
120 /* Get the changed bits (except the locked bit) */
121 diff = value ^ (cap_mask & ~HFI1_CAP_LOCKED_SMASK);
122
123 /* Remove any bits that are not allowed to change after driver load */
124 if (HFI1_CAP_LOCKED() && (diff & ~write_mask)) {
125 pr_warn("Ignoring non-writable capability bits %#lx\n",
126 diff & ~write_mask);
127 diff &= write_mask;
128 }
129
130 /* Mask off any reserved bits */
131 diff &= ~HFI1_CAP_RESERVED_MASK;
132 /* Clear any previously set and changing bits */
133 cap_mask &= ~diff;
134 /* Update the bits with the new capability */
135 cap_mask |= (value & diff);
136 /* Check for any kernel/user restrictions */
137 diff = (cap_mask & (HFI1_CAP_MUST_HAVE_KERN << HFI1_CAP_USER_SHIFT)) ^
138 ((cap_mask & HFI1_CAP_MUST_HAVE_KERN) << HFI1_CAP_USER_SHIFT);
139 cap_mask &= ~diff;
140 /* Set the bitmask to the final set */
141 *cap_mask_ptr = cap_mask;
142done:
143 return ret;
144}
145
146static int hfi1_caps_get(char *buffer, const struct kernel_param *kp)
147{
148 unsigned long cap_mask = *(unsigned long *)kp->arg;
149
150 cap_mask &= ~HFI1_CAP_LOCKED_SMASK;
151 cap_mask |= ((cap_mask & HFI1_CAP_K2U) << HFI1_CAP_USER_SHIFT);
152
153 return scnprintf(buffer, PAGE_SIZE, "0x%lx", cap_mask);
154}
155
156const char *get_unit_name(int unit)
157{
158 static char iname[16];
159
Jubin John98050712015-11-16 21:59:27 -0500160 snprintf(iname, sizeof(iname), DRIVER_NAME "_%u", unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400161 return iname;
162}
163
Dennis Dalessandro49dbb6c2016-01-19 14:42:06 -0800164const char *get_card_name(struct rvt_dev_info *rdi)
165{
166 struct hfi1_ibdev *ibdev = container_of(rdi, struct hfi1_ibdev, rdi);
167 struct hfi1_devdata *dd = container_of(ibdev,
168 struct hfi1_devdata, verbs_dev);
169 return get_unit_name(dd->unit);
170}
171
172struct pci_dev *get_pci_dev(struct rvt_dev_info *rdi)
173{
174 struct hfi1_ibdev *ibdev = container_of(rdi, struct hfi1_ibdev, rdi);
175 struct hfi1_devdata *dd = container_of(ibdev,
176 struct hfi1_devdata, verbs_dev);
177 return dd->pcidev;
178}
179
Mike Marciniszyn77241052015-07-30 15:17:43 -0400180/*
181 * Return count of units with at least one port ACTIVE.
182 */
183int hfi1_count_active_units(void)
184{
185 struct hfi1_devdata *dd;
186 struct hfi1_pportdata *ppd;
187 unsigned long flags;
188 int pidx, nunits_active = 0;
189
190 spin_lock_irqsave(&hfi1_devs_lock, flags);
191 list_for_each_entry(dd, &hfi1_dev_list, list) {
192 if (!(dd->flags & HFI1_PRESENT) || !dd->kregbase)
193 continue;
194 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
195 ppd = dd->pport + pidx;
196 if (ppd->lid && ppd->linkup) {
197 nunits_active++;
198 break;
199 }
200 }
201 }
202 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
203 return nunits_active;
204}
205
206/*
207 * Return count of all units, optionally return in arguments
208 * the number of usable (present) units, and the number of
209 * ports that are up.
210 */
211int hfi1_count_units(int *npresentp, int *nupp)
212{
213 int nunits = 0, npresent = 0, nup = 0;
214 struct hfi1_devdata *dd;
215 unsigned long flags;
216 int pidx;
217 struct hfi1_pportdata *ppd;
218
219 spin_lock_irqsave(&hfi1_devs_lock, flags);
220
221 list_for_each_entry(dd, &hfi1_dev_list, list) {
222 nunits++;
223 if ((dd->flags & HFI1_PRESENT) && dd->kregbase)
224 npresent++;
225 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
226 ppd = dd->pport + pidx;
227 if (ppd->lid && ppd->linkup)
228 nup++;
229 }
230 }
231
232 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
233
234 if (npresentp)
235 *npresentp = npresent;
236 if (nupp)
237 *nupp = nup;
238
239 return nunits;
240}
241
242/*
243 * Get address of eager buffer from it's index (allocated in chunks, not
244 * contiguous).
245 */
246static inline void *get_egrbuf(const struct hfi1_ctxtdata *rcd, u64 rhf,
247 u8 *update)
248{
249 u32 idx = rhf_egr_index(rhf), offset = rhf_egr_buf_offset(rhf);
250
251 *update |= !(idx & (rcd->egrbufs.threshold - 1)) && !offset;
252 return (void *)(((u64)(rcd->egrbufs.rcvtids[idx].addr)) +
253 (offset * RCV_BUF_BLOCK_SIZE));
254}
255
256/*
257 * Validate and encode the a given RcvArray Buffer size.
258 * The function will check whether the given size falls within
259 * allowed size ranges for the respective type and, optionally,
260 * return the proper encoding.
261 */
262inline int hfi1_rcvbuf_validate(u32 size, u8 type, u16 *encoded)
263{
Amitoj Kaur Chawlaf5389662016-03-04 22:40:17 +0530264 if (unlikely(!PAGE_ALIGNED(size)))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400265 return 0;
266 if (unlikely(size < MIN_EAGER_BUFFER))
267 return 0;
268 if (size >
269 (type == PT_EAGER ? MAX_EAGER_BUFFER : MAX_EXPECTED_BUFFER))
270 return 0;
271 if (encoded)
272 *encoded = ilog2(size / PAGE_SIZE) + 1;
273 return 1;
274}
275
276static void rcv_hdrerr(struct hfi1_ctxtdata *rcd, struct hfi1_pportdata *ppd,
277 struct hfi1_packet *packet)
278{
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700279 struct ib_header *rhdr = packet->hdr;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400280 u32 rte = rhf_rcv_type_err(packet->rhf);
281 int lnh = be16_to_cpu(rhdr->lrh[0]) & 3;
282 struct hfi1_ibport *ibp = &ppd->ibport_data;
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800283 struct hfi1_devdata *dd = ppd->dd;
284 struct rvt_dev_info *rdi = &dd->verbs_dev.rdi;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400285
286 if (packet->rhf & (RHF_VCRC_ERR | RHF_ICRC_ERR))
287 return;
288
289 if (packet->rhf & RHF_TID_ERR) {
290 /* For TIDERR and RC QPs preemptively schedule a NAK */
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700291 struct ib_other_headers *ohdr = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400292 u32 tlen = rhf_pkt_len(packet->rhf); /* in bytes */
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700293 u16 lid = be16_to_cpu(rhdr->lrh[1]);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400294 u32 qp_num;
295 u32 rcv_flags = 0;
296
297 /* Sanity check packet */
298 if (tlen < 24)
299 goto drop;
300
301 /* Check for GRH */
Jubin Johne4909742016-02-14 20:22:00 -0800302 if (lnh == HFI1_LRH_BTH) {
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700303 ohdr = &rhdr->u.oth;
Jubin Johne4909742016-02-14 20:22:00 -0800304 } else if (lnh == HFI1_LRH_GRH) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400305 u32 vtf;
306
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700307 ohdr = &rhdr->u.l.oth;
308 if (rhdr->u.l.grh.next_hdr != IB_GRH_NEXT_HDR)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400309 goto drop;
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700310 vtf = be32_to_cpu(rhdr->u.l.grh.version_tclass_flow);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400311 if ((vtf >> IB_GRH_VERSION_SHIFT) != IB_GRH_VERSION)
312 goto drop;
313 rcv_flags |= HFI1_HAS_GRH;
Jubin Johne4909742016-02-14 20:22:00 -0800314 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400315 goto drop;
Jubin Johne4909742016-02-14 20:22:00 -0800316 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400317 /* Get the destination QP number. */
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800318 qp_num = be32_to_cpu(ohdr->bth[1]) & RVT_QPN_MASK;
Dennis Dalessandro8859b4a2016-01-19 14:42:11 -0800319 if (lid < be16_to_cpu(IB_MULTICAST_LID_BASE)) {
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800320 struct rvt_qp *qp;
Dean Luickb77d7132015-10-26 10:28:43 -0400321 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400322
323 rcu_read_lock();
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800324 qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400325 if (!qp) {
326 rcu_read_unlock();
327 goto drop;
328 }
329
330 /*
331 * Handle only RC QPs - for other QP types drop error
332 * packet.
333 */
Dean Luickb77d7132015-10-26 10:28:43 -0400334 spin_lock_irqsave(&qp->r_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400335
336 /* Check for valid receive state. */
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800337 if (!(ib_rvt_state_ops[qp->state] &
338 RVT_PROCESS_RECV_OK)) {
Dennis Dalessandro4eb06882016-01-19 14:42:39 -0800339 ibp->rvp.n_pkt_drops++;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400340 }
341
342 switch (qp->ibqp.qp_type) {
343 case IB_QPT_RC:
344 hfi1_rc_hdrerr(
345 rcd,
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700346 rhdr,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400347 rcv_flags,
348 qp);
349 break;
350 default:
351 /* For now don't handle any other QP types */
352 break;
353 }
354
Dean Luickb77d7132015-10-26 10:28:43 -0400355 spin_unlock_irqrestore(&qp->r_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400356 rcu_read_unlock();
357 } /* Unicast QP */
358 } /* Valid packet with TIDErr */
359
360 /* handle "RcvTypeErr" flags */
361 switch (rte) {
362 case RHF_RTE_ERROR_OP_CODE_ERR:
363 {
364 u32 opcode;
365 void *ebuf = NULL;
366 __be32 *bth = NULL;
367
368 if (rhf_use_egr_bfr(packet->rhf))
369 ebuf = packet->ebuf;
370
Jubin Johnd125a6c2016-02-14 20:19:49 -0800371 if (!ebuf)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400372 goto drop; /* this should never happen */
373
374 if (lnh == HFI1_LRH_BTH)
375 bth = (__be32 *)ebuf;
376 else if (lnh == HFI1_LRH_GRH)
377 bth = (__be32 *)((char *)ebuf + sizeof(struct ib_grh));
378 else
379 goto drop;
380
381 opcode = be32_to_cpu(bth[0]) >> 24;
382 opcode &= 0xff;
383
384 if (opcode == IB_OPCODE_CNP) {
385 /*
386 * Only in pre-B0 h/w is the CNP_OPCODE handled
Edward Mascarenhas80e48982015-12-21 21:57:44 -0500387 * via this code path.
Mike Marciniszyn77241052015-07-30 15:17:43 -0400388 */
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800389 struct rvt_qp *qp = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400390 u32 lqpn, rqpn;
391 u16 rlid;
392 u8 svc_type, sl, sc5;
393
Dasaratharaman Chandramoulib736a462016-07-25 13:40:34 -0700394 sc5 = hdr2sc(rhdr, packet->rhf);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400395 sl = ibp->sc_to_sl[sc5];
396
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800397 lqpn = be32_to_cpu(bth[1]) & RVT_QPN_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400398 rcu_read_lock();
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800399 qp = rvt_lookup_qpn(rdi, &ibp->rvp, lqpn);
Jubin Johnd125a6c2016-02-14 20:19:49 -0800400 if (!qp) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400401 rcu_read_unlock();
402 goto drop;
403 }
404
405 switch (qp->ibqp.qp_type) {
406 case IB_QPT_UD:
407 rlid = 0;
408 rqpn = 0;
409 svc_type = IB_CC_SVCTYPE_UD;
410 break;
411 case IB_QPT_UC:
412 rlid = be16_to_cpu(rhdr->lrh[3]);
413 rqpn = qp->remote_qpn;
414 svc_type = IB_CC_SVCTYPE_UC;
415 break;
416 default:
417 goto drop;
418 }
419
420 process_becn(ppd, sl, rlid, lqpn, rqpn, svc_type);
421 rcu_read_unlock();
422 }
423
424 packet->rhf &= ~RHF_RCV_TYPE_ERR_SMASK;
425 break;
426 }
427 default:
428 break;
429 }
430
431drop:
432 return;
433}
434
435static inline void init_packet(struct hfi1_ctxtdata *rcd,
Jubin John17fb4f22016-02-14 20:21:52 -0800436 struct hfi1_packet *packet)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400437{
Mike Marciniszyn77241052015-07-30 15:17:43 -0400438 packet->rsize = rcd->rcvhdrqentsize; /* words */
439 packet->maxcnt = rcd->rcvhdrq_cnt * packet->rsize; /* words */
440 packet->rcd = rcd;
441 packet->updegr = 0;
442 packet->etail = -1;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400443 packet->rhf_addr = get_rhf_addr(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400444 packet->rhf = rhf_to_cpu(packet->rhf_addr);
445 packet->rhqoff = rcd->head;
446 packet->numpkt = 0;
447 packet->rcv_flags = 0;
448}
449
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700450void hfi1_process_ecn_slowpath(struct rvt_qp *qp, struct hfi1_packet *pkt,
451 bool do_cnp)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400452{
453 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700454 struct ib_header *hdr = pkt->hdr;
455 struct ib_other_headers *ohdr = pkt->ohdr;
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700456 struct ib_grh *grh = NULL;
457 u32 rqpn = 0, bth1;
458 u16 rlid, dlid = be16_to_cpu(hdr->lrh[1]);
459 u8 sc, svc_type;
460 bool is_mcast = false;
461
462 if (pkt->rcv_flags & HFI1_HAS_GRH)
463 grh = &hdr->u.l.grh;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400464
465 switch (qp->ibqp.qp_type) {
Arthur Kepner977940b2015-11-04 21:10:10 -0500466 case IB_QPT_SMI:
467 case IB_QPT_GSI:
Mike Marciniszyn77241052015-07-30 15:17:43 -0400468 case IB_QPT_UD:
Arthur Kepner977940b2015-11-04 21:10:10 -0500469 rlid = be16_to_cpu(hdr->lrh[3]);
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800470 rqpn = be32_to_cpu(ohdr->u.ud.deth[1]) & RVT_QPN_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400471 svc_type = IB_CC_SVCTYPE_UD;
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700472 is_mcast = (dlid > be16_to_cpu(IB_MULTICAST_LID_BASE)) &&
473 (dlid != be16_to_cpu(IB_LID_PERMISSIVE));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400474 break;
Arthur Kepner977940b2015-11-04 21:10:10 -0500475 case IB_QPT_UC:
476 rlid = qp->remote_ah_attr.dlid;
477 rqpn = qp->remote_qpn;
478 svc_type = IB_CC_SVCTYPE_UC;
479 break;
480 case IB_QPT_RC:
481 rlid = qp->remote_ah_attr.dlid;
482 rqpn = qp->remote_qpn;
483 svc_type = IB_CC_SVCTYPE_RC;
484 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400485 default:
486 return;
487 }
488
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700489 sc = hdr2sc(hdr, pkt->rhf);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400490
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700491 bth1 = be32_to_cpu(ohdr->bth[1]);
492 if (do_cnp && (bth1 & HFI1_FECN_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400493 u16 pkey = (u16)be32_to_cpu(ohdr->bth[0]);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400494
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700495 return_cnp(ibp, qp, rqpn, pkey, dlid, rlid, sc, grh);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400496 }
497
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700498 if (!is_mcast && (bth1 & HFI1_BECN_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400499 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800500 u32 lqpn = bth1 & RVT_QPN_MASK;
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700501 u8 sl = ibp->sc_to_sl[sc];
Mike Marciniszyn77241052015-07-30 15:17:43 -0400502
Arthur Kepner977940b2015-11-04 21:10:10 -0500503 process_becn(ppd, sl, rlid, lqpn, rqpn, svc_type);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400504 }
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700505
Mike Marciniszyn77241052015-07-30 15:17:43 -0400506}
507
508struct ps_mdata {
509 struct hfi1_ctxtdata *rcd;
510 u32 rsize;
511 u32 maxcnt;
512 u32 ps_head;
513 u32 ps_tail;
514 u32 ps_seq;
515};
516
517static inline void init_ps_mdata(struct ps_mdata *mdata,
518 struct hfi1_packet *packet)
519{
520 struct hfi1_ctxtdata *rcd = packet->rcd;
521
522 mdata->rcd = rcd;
523 mdata->rsize = packet->rsize;
524 mdata->maxcnt = packet->maxcnt;
Arthur Kepner3e7ccca2015-11-04 21:10:09 -0500525 mdata->ps_head = packet->rhqoff;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400526
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500527 if (HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL)) {
Arthur Kepner3e7ccca2015-11-04 21:10:09 -0500528 mdata->ps_tail = get_rcvhdrtail(rcd);
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500529 if (rcd->ctxt == HFI1_CTRL_CTXT)
530 mdata->ps_seq = rcd->seq_cnt;
531 else
532 mdata->ps_seq = 0; /* not used with DMA_RTAIL */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400533 } else {
534 mdata->ps_tail = 0; /* used only with DMA_RTAIL*/
535 mdata->ps_seq = rcd->seq_cnt;
536 }
537}
538
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500539static inline int ps_done(struct ps_mdata *mdata, u64 rhf,
540 struct hfi1_ctxtdata *rcd)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400541{
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500542 if (HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400543 return mdata->ps_head == mdata->ps_tail;
544 return mdata->ps_seq != rhf_rcv_seq(rhf);
545}
546
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500547static inline int ps_skip(struct ps_mdata *mdata, u64 rhf,
548 struct hfi1_ctxtdata *rcd)
549{
550 /*
551 * Control context can potentially receive an invalid rhf.
552 * Drop such packets.
553 */
554 if ((rcd->ctxt == HFI1_CTRL_CTXT) && (mdata->ps_head != mdata->ps_tail))
555 return mdata->ps_seq != rhf_rcv_seq(rhf);
556
557 return 0;
558}
559
560static inline void update_ps_mdata(struct ps_mdata *mdata,
561 struct hfi1_ctxtdata *rcd)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400562{
Mike Marciniszyn77241052015-07-30 15:17:43 -0400563 mdata->ps_head += mdata->rsize;
Arthur Kepner3e7ccca2015-11-04 21:10:09 -0500564 if (mdata->ps_head >= mdata->maxcnt)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400565 mdata->ps_head = 0;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500566
567 /* Control context must do seq counting */
568 if (!HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL) ||
569 (rcd->ctxt == HFI1_CTRL_CTXT)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400570 if (++mdata->ps_seq > 13)
571 mdata->ps_seq = 1;
572 }
573}
574
575/*
576 * prescan_rxq - search through the receive queue looking for packets
577 * containing Excplicit Congestion Notifications (FECNs, or BECNs).
578 * When an ECN is found, process the Congestion Notification, and toggle
579 * it off.
Vennila Megavannan6c9e50f2016-02-03 14:32:57 -0800580 * This is declared as a macro to allow quick checking of the port to avoid
581 * the overhead of a function call if not enabled.
Mike Marciniszyn77241052015-07-30 15:17:43 -0400582 */
Vennila Megavannan6c9e50f2016-02-03 14:32:57 -0800583#define prescan_rxq(rcd, packet) \
584 do { \
585 if (rcd->ppd->cc_prescan) \
586 __prescan_rxq(packet); \
587 } while (0)
588static void __prescan_rxq(struct hfi1_packet *packet)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400589{
590 struct hfi1_ctxtdata *rcd = packet->rcd;
591 struct ps_mdata mdata;
592
Mike Marciniszyn77241052015-07-30 15:17:43 -0400593 init_ps_mdata(&mdata, packet);
594
595 while (1) {
596 struct hfi1_devdata *dd = rcd->dd;
597 struct hfi1_ibport *ibp = &rcd->ppd->ibport_data;
Jubin John50e5dcb2016-02-14 20:19:41 -0800598 __le32 *rhf_addr = (__le32 *)rcd->rcvhdrq + mdata.ps_head +
Mike Marciniszyn77241052015-07-30 15:17:43 -0400599 dd->rhf_offset;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800600 struct rvt_qp *qp;
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700601 struct ib_header *hdr;
602 struct ib_other_headers *ohdr;
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800603 struct rvt_dev_info *rdi = &dd->verbs_dev.rdi;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400604 u64 rhf = rhf_to_cpu(rhf_addr);
Arthur Kepner977940b2015-11-04 21:10:10 -0500605 u32 etype = rhf_rcv_type(rhf), qpn, bth1;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400606 int is_ecn = 0;
607 u8 lnh;
608
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500609 if (ps_done(&mdata, rhf, rcd))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400610 break;
611
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500612 if (ps_skip(&mdata, rhf, rcd))
613 goto next;
614
Mike Marciniszyn77241052015-07-30 15:17:43 -0400615 if (etype != RHF_RCV_TYPE_IB)
616 goto next;
617
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700618 hdr = hfi1_get_msgheader(dd, rhf_addr);
619
Mike Marciniszyn77241052015-07-30 15:17:43 -0400620 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
621
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700622 if (lnh == HFI1_LRH_BTH)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400623 ohdr = &hdr->u.oth;
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700624 else if (lnh == HFI1_LRH_GRH)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400625 ohdr = &hdr->u.l.oth;
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700626 else
Mike Marciniszyn77241052015-07-30 15:17:43 -0400627 goto next; /* just in case */
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700628
Arthur Kepner977940b2015-11-04 21:10:10 -0500629 bth1 = be32_to_cpu(ohdr->bth[1]);
630 is_ecn = !!(bth1 & (HFI1_FECN_SMASK | HFI1_BECN_SMASK));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400631
632 if (!is_ecn)
633 goto next;
634
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800635 qpn = bth1 & RVT_QPN_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400636 rcu_read_lock();
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800637 qp = rvt_lookup_qpn(rdi, &ibp->rvp, qpn);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400638
Jubin Johnd125a6c2016-02-14 20:19:49 -0800639 if (!qp) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400640 rcu_read_unlock();
641 goto next;
642 }
643
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700644 process_ecn(qp, packet, true);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400645 rcu_read_unlock();
Arthur Kepner977940b2015-11-04 21:10:10 -0500646
647 /* turn off BECN, FECN */
648 bth1 &= ~(HFI1_FECN_SMASK | HFI1_BECN_SMASK);
649 ohdr->bth[1] = cpu_to_be32(bth1);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400650next:
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500651 update_ps_mdata(&mdata, rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400652 }
653}
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500654
655static inline int skip_rcv_packet(struct hfi1_packet *packet, int thread)
656{
657 int ret = RCV_PKT_OK;
658
659 /* Set up for the next packet */
660 packet->rhqoff += packet->rsize;
661 if (packet->rhqoff >= packet->maxcnt)
662 packet->rhqoff = 0;
663
664 packet->numpkt++;
665 if (unlikely((packet->numpkt & (MAX_PKT_RECV - 1)) == 0)) {
666 if (thread) {
667 cond_resched();
668 } else {
669 ret = RCV_PKT_LIMIT;
670 this_cpu_inc(*packet->rcd->dd->rcv_limit);
671 }
672 }
673
674 packet->rhf_addr = (__le32 *)packet->rcd->rcvhdrq + packet->rhqoff +
675 packet->rcd->dd->rhf_offset;
676 packet->rhf = rhf_to_cpu(packet->rhf_addr);
677
678 return ret;
679}
Mike Marciniszyn77241052015-07-30 15:17:43 -0400680
Dean Luickf4f30031c2015-10-26 10:28:44 -0400681static inline int process_rcv_packet(struct hfi1_packet *packet, int thread)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400682{
683 int ret = RCV_PKT_OK;
684
685 packet->hdr = hfi1_get_msgheader(packet->rcd->dd,
686 packet->rhf_addr);
687 packet->hlen = (u8 *)packet->rhf_addr - (u8 *)packet->hdr;
688 packet->etype = rhf_rcv_type(packet->rhf);
689 /* total length */
690 packet->tlen = rhf_pkt_len(packet->rhf); /* in bytes */
691 /* retrieve eager buffer details */
692 packet->ebuf = NULL;
693 if (rhf_use_egr_bfr(packet->rhf)) {
694 packet->etail = rhf_egr_index(packet->rhf);
695 packet->ebuf = get_egrbuf(packet->rcd, packet->rhf,
696 &packet->updegr);
697 /*
698 * Prefetch the contents of the eager buffer. It is
699 * OK to send a negative length to prefetch_range().
700 * The +2 is the size of the RHF.
701 */
702 prefetch_range(packet->ebuf,
Jubin John17fb4f22016-02-14 20:21:52 -0800703 packet->tlen - ((packet->rcd->rcvhdrqentsize -
704 (rhf_hdrq_offset(packet->rhf)
705 + 2)) * 4));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400706 }
707
708 /*
709 * Call a type specific handler for the packet. We
710 * should be able to trust that etype won't be beyond
711 * the range of valid indexes. If so something is really
712 * wrong and we can probably just let things come
713 * crashing down. There is no need to eat another
714 * comparison in this performance critical code.
715 */
716 packet->rcd->dd->rhf_rcv_function_map[packet->etype](packet);
717 packet->numpkt++;
718
719 /* Set up for the next packet */
720 packet->rhqoff += packet->rsize;
721 if (packet->rhqoff >= packet->maxcnt)
722 packet->rhqoff = 0;
723
Dean Luickf4f30031c2015-10-26 10:28:44 -0400724 if (unlikely((packet->numpkt & (MAX_PKT_RECV - 1)) == 0)) {
725 if (thread) {
726 cond_resched();
727 } else {
728 ret = RCV_PKT_LIMIT;
729 this_cpu_inc(*packet->rcd->dd->rcv_limit);
730 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400731 }
732
Jubin John50e5dcb2016-02-14 20:19:41 -0800733 packet->rhf_addr = (__le32 *)packet->rcd->rcvhdrq + packet->rhqoff +
Mike Marciniszyn77241052015-07-30 15:17:43 -0400734 packet->rcd->dd->rhf_offset;
735 packet->rhf = rhf_to_cpu(packet->rhf_addr);
736
737 return ret;
738}
739
740static inline void process_rcv_update(int last, struct hfi1_packet *packet)
741{
742 /*
743 * Update head regs etc., every 16 packets, if not last pkt,
744 * to help prevent rcvhdrq overflows, when many packets
745 * are processed and queue is nearly full.
746 * Don't request an interrupt for intermediate updates.
747 */
748 if (!last && !(packet->numpkt & 0xf)) {
749 update_usrhead(packet->rcd, packet->rhqoff, packet->updegr,
750 packet->etail, 0, 0);
751 packet->updegr = 0;
752 }
753 packet->rcv_flags = 0;
754}
755
756static inline void finish_packet(struct hfi1_packet *packet)
757{
Mike Marciniszyn77241052015-07-30 15:17:43 -0400758 /*
759 * Nothing we need to free for the packet.
760 *
761 * The only thing we need to do is a final update and call for an
762 * interrupt
763 */
764 update_usrhead(packet->rcd, packet->rcd->head, packet->updegr,
765 packet->etail, rcv_intr_dynamic, packet->numpkt);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400766}
767
768static inline void process_rcv_qp_work(struct hfi1_packet *packet)
769{
Mike Marciniszyn77241052015-07-30 15:17:43 -0400770 struct hfi1_ctxtdata *rcd;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800771 struct rvt_qp *qp, *nqp;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400772
773 rcd = packet->rcd;
774 rcd->head = packet->rhqoff;
775
776 /*
777 * Iterate over all QPs waiting to respond.
778 * The list won't change since the IRQ is only run on one CPU.
779 */
780 list_for_each_entry_safe(qp, nqp, &rcd->qp_wait_list, rspwait) {
781 list_del_init(&qp->rspwait);
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800782 if (qp->r_flags & RVT_R_RSP_NAK) {
783 qp->r_flags &= ~RVT_R_RSP_NAK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400784 hfi1_send_rc_ack(rcd, qp, 0);
785 }
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800786 if (qp->r_flags & RVT_R_RSP_SEND) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400787 unsigned long flags;
788
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800789 qp->r_flags &= ~RVT_R_RSP_SEND;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400790 spin_lock_irqsave(&qp->s_lock, flags);
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800791 if (ib_rvt_state_ops[qp->state] &
792 RVT_PROCESS_OR_FLUSH_SEND)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400793 hfi1_schedule_send(qp);
794 spin_unlock_irqrestore(&qp->s_lock, flags);
795 }
Sebastian Sanchezb44980f2016-12-07 19:33:46 -0800796 rvt_put_qp(qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400797 }
798}
799
800/*
801 * Handle receive interrupts when using the no dma rtail option.
802 */
Dean Luickf4f30031c2015-10-26 10:28:44 -0400803int handle_receive_interrupt_nodma_rtail(struct hfi1_ctxtdata *rcd, int thread)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400804{
805 u32 seq;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400806 int last = RCV_PKT_OK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400807 struct hfi1_packet packet;
808
809 init_packet(rcd, &packet);
810 seq = rhf_rcv_seq(packet.rhf);
Dean Luickf4f30031c2015-10-26 10:28:44 -0400811 if (seq != rcd->seq_cnt) {
812 last = RCV_PKT_DONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400813 goto bail;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400814 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400815
Vennila Megavannan6c9e50f2016-02-03 14:32:57 -0800816 prescan_rxq(rcd, &packet);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400817
Dean Luickf4f30031c2015-10-26 10:28:44 -0400818 while (last == RCV_PKT_OK) {
819 last = process_rcv_packet(&packet, thread);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400820 seq = rhf_rcv_seq(packet.rhf);
821 if (++rcd->seq_cnt > 13)
822 rcd->seq_cnt = 1;
823 if (seq != rcd->seq_cnt)
Dean Luickf4f30031c2015-10-26 10:28:44 -0400824 last = RCV_PKT_DONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400825 process_rcv_update(last, &packet);
826 }
827 process_rcv_qp_work(&packet);
828bail:
829 finish_packet(&packet);
Dean Luickf4f30031c2015-10-26 10:28:44 -0400830 return last;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400831}
832
Dean Luickf4f30031c2015-10-26 10:28:44 -0400833int handle_receive_interrupt_dma_rtail(struct hfi1_ctxtdata *rcd, int thread)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400834{
835 u32 hdrqtail;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400836 int last = RCV_PKT_OK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400837 struct hfi1_packet packet;
838
839 init_packet(rcd, &packet);
840 hdrqtail = get_rcvhdrtail(rcd);
Dean Luickf4f30031c2015-10-26 10:28:44 -0400841 if (packet.rhqoff == hdrqtail) {
842 last = RCV_PKT_DONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400843 goto bail;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400844 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400845 smp_rmb(); /* prevent speculative reads of dma'ed hdrq */
846
Vennila Megavannan6c9e50f2016-02-03 14:32:57 -0800847 prescan_rxq(rcd, &packet);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400848
Dean Luickf4f30031c2015-10-26 10:28:44 -0400849 while (last == RCV_PKT_OK) {
850 last = process_rcv_packet(&packet, thread);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400851 if (packet.rhqoff == hdrqtail)
Dean Luickf4f30031c2015-10-26 10:28:44 -0400852 last = RCV_PKT_DONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400853 process_rcv_update(last, &packet);
854 }
855 process_rcv_qp_work(&packet);
856bail:
857 finish_packet(&packet);
Dean Luickf4f30031c2015-10-26 10:28:44 -0400858 return last;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400859}
860
861static inline void set_all_nodma_rtail(struct hfi1_devdata *dd)
862{
863 int i;
864
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500865 for (i = HFI1_CTRL_CTXT + 1; i < dd->first_user_ctxt; i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400866 dd->rcd[i]->do_interrupt =
867 &handle_receive_interrupt_nodma_rtail;
868}
869
870static inline void set_all_dma_rtail(struct hfi1_devdata *dd)
871{
872 int i;
873
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500874 for (i = HFI1_CTRL_CTXT + 1; i < dd->first_user_ctxt; i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400875 dd->rcd[i]->do_interrupt =
876 &handle_receive_interrupt_dma_rtail;
877}
878
Jim Snowfb9036d2016-01-11 18:32:21 -0500879void set_all_slowpath(struct hfi1_devdata *dd)
880{
881 int i;
882
883 /* HFI1_CTRL_CTXT must always use the slow path interrupt handler */
884 for (i = HFI1_CTRL_CTXT + 1; i < dd->first_user_ctxt; i++)
885 dd->rcd[i]->do_interrupt = &handle_receive_interrupt;
886}
887
888static inline int set_armed_to_active(struct hfi1_ctxtdata *rcd,
Mike Marciniszync867caa2016-08-09 11:19:55 -0400889 struct hfi1_packet *packet,
Jim Snowfb9036d2016-01-11 18:32:21 -0500890 struct hfi1_devdata *dd)
891{
892 struct work_struct *lsaw = &rcd->ppd->linkstate_active_work;
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700893 struct ib_header *hdr = hfi1_get_msgheader(packet->rcd->dd,
894 packet->rhf_addr);
Mike Marciniszyn69b9f4a2016-08-09 11:19:56 -0400895 u8 etype = rhf_rcv_type(packet->rhf);
Jim Snowfb9036d2016-01-11 18:32:21 -0500896
Mike Marciniszyn69b9f4a2016-08-09 11:19:56 -0400897 if (etype == RHF_RCV_TYPE_IB && hdr2sc(hdr, packet->rhf) != 0xf) {
Jim Snowfb9036d2016-01-11 18:32:21 -0500898 int hwstate = read_logical_state(dd);
899
900 if (hwstate != LSTATE_ACTIVE) {
901 dd_dev_info(dd, "Unexpected link state %d\n", hwstate);
902 return 0;
903 }
904
905 queue_work(rcd->ppd->hfi1_wq, lsaw);
906 return 1;
907 }
908 return 0;
909}
910
Mike Marciniszyn77241052015-07-30 15:17:43 -0400911/*
912 * handle_receive_interrupt - receive a packet
913 * @rcd: the context
914 *
915 * Called from interrupt handler for errors or receive interrupt.
916 * This is the slow path interrupt handler.
917 */
Dean Luickf4f30031c2015-10-26 10:28:44 -0400918int handle_receive_interrupt(struct hfi1_ctxtdata *rcd, int thread)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400919{
Mike Marciniszyn77241052015-07-30 15:17:43 -0400920 struct hfi1_devdata *dd = rcd->dd;
921 u32 hdrqtail;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500922 int needset, last = RCV_PKT_OK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400923 struct hfi1_packet packet;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500924 int skip_pkt = 0;
925
926 /* Control context will always use the slow path interrupt handler */
927 needset = (rcd->ctxt == HFI1_CTRL_CTXT) ? 0 : 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400928
929 init_packet(rcd, &packet);
930
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500931 if (!HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400932 u32 seq = rhf_rcv_seq(packet.rhf);
933
Dean Luickf4f30031c2015-10-26 10:28:44 -0400934 if (seq != rcd->seq_cnt) {
935 last = RCV_PKT_DONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400936 goto bail;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400937 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400938 hdrqtail = 0;
939 } else {
940 hdrqtail = get_rcvhdrtail(rcd);
Dean Luickf4f30031c2015-10-26 10:28:44 -0400941 if (packet.rhqoff == hdrqtail) {
942 last = RCV_PKT_DONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400943 goto bail;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400944 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400945 smp_rmb(); /* prevent speculative reads of dma'ed hdrq */
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500946
947 /*
948 * Control context can potentially receive an invalid
949 * rhf. Drop such packets.
950 */
951 if (rcd->ctxt == HFI1_CTRL_CTXT) {
952 u32 seq = rhf_rcv_seq(packet.rhf);
953
954 if (seq != rcd->seq_cnt)
955 skip_pkt = 1;
956 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400957 }
958
Vennila Megavannan6c9e50f2016-02-03 14:32:57 -0800959 prescan_rxq(rcd, &packet);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400960
Dean Luickf4f30031c2015-10-26 10:28:44 -0400961 while (last == RCV_PKT_OK) {
Jubin John17fb4f22016-02-14 20:21:52 -0800962 if (unlikely(dd->do_drop &&
963 atomic_xchg(&dd->drop_packet, DROP_PACKET_OFF) ==
964 DROP_PACKET_ON)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400965 dd->do_drop = 0;
966
967 /* On to the next packet */
968 packet.rhqoff += packet.rsize;
Jubin John50e5dcb2016-02-14 20:19:41 -0800969 packet.rhf_addr = (__le32 *)rcd->rcvhdrq +
Mike Marciniszyn77241052015-07-30 15:17:43 -0400970 packet.rhqoff +
971 dd->rhf_offset;
972 packet.rhf = rhf_to_cpu(packet.rhf_addr);
973
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500974 } else if (skip_pkt) {
975 last = skip_rcv_packet(&packet, thread);
976 skip_pkt = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400977 } else {
Jim Snowfb9036d2016-01-11 18:32:21 -0500978 /* Auto activate link on non-SC15 packet receive */
979 if (unlikely(rcd->ppd->host_link_state ==
980 HLS_UP_ARMED) &&
Mike Marciniszync867caa2016-08-09 11:19:55 -0400981 set_armed_to_active(rcd, &packet, dd))
Jim Snowfb9036d2016-01-11 18:32:21 -0500982 goto bail;
Dean Luickf4f30031c2015-10-26 10:28:44 -0400983 last = process_rcv_packet(&packet, thread);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400984 }
985
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500986 if (!HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400987 u32 seq = rhf_rcv_seq(packet.rhf);
988
989 if (++rcd->seq_cnt > 13)
990 rcd->seq_cnt = 1;
991 if (seq != rcd->seq_cnt)
Dean Luickf4f30031c2015-10-26 10:28:44 -0400992 last = RCV_PKT_DONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400993 if (needset) {
Jubin John17fb4f22016-02-14 20:21:52 -0800994 dd_dev_info(dd, "Switching to NO_DMA_RTAIL\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -0400995 set_all_nodma_rtail(dd);
996 needset = 0;
997 }
998 } else {
999 if (packet.rhqoff == hdrqtail)
Dean Luickf4f30031c2015-10-26 10:28:44 -04001000 last = RCV_PKT_DONE;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -05001001 /*
1002 * Control context can potentially receive an invalid
1003 * rhf. Drop such packets.
1004 */
1005 if (rcd->ctxt == HFI1_CTRL_CTXT) {
1006 u32 seq = rhf_rcv_seq(packet.rhf);
1007
1008 if (++rcd->seq_cnt > 13)
1009 rcd->seq_cnt = 1;
1010 if (!last && (seq != rcd->seq_cnt))
1011 skip_pkt = 1;
1012 }
1013
Mike Marciniszyn77241052015-07-30 15:17:43 -04001014 if (needset) {
1015 dd_dev_info(dd,
1016 "Switching to DMA_RTAIL\n");
1017 set_all_dma_rtail(dd);
1018 needset = 0;
1019 }
1020 }
1021
1022 process_rcv_update(last, &packet);
1023 }
1024
1025 process_rcv_qp_work(&packet);
1026
1027bail:
1028 /*
1029 * Always write head at end, and setup rcv interrupt, even
1030 * if no packets were processed.
1031 */
1032 finish_packet(&packet);
Dean Luickf4f30031c2015-10-26 10:28:44 -04001033 return last;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001034}
1035
1036/*
Jim Snowfb9036d2016-01-11 18:32:21 -05001037 * We may discover in the interrupt that the hardware link state has
1038 * changed from ARMED to ACTIVE (due to the arrival of a non-SC15 packet),
1039 * and we need to update the driver's notion of the link state. We cannot
1040 * run set_link_state from interrupt context, so we queue this function on
1041 * a workqueue.
1042 *
1043 * We delay the regular interrupt processing until after the state changes
1044 * so that the link will be in the correct state by the time any application
1045 * we wake up attempts to send a reply to any message it received.
1046 * (Subsequent receive interrupts may possibly force the wakeup before we
1047 * update the link state.)
1048 *
1049 * The rcd is freed in hfi1_free_ctxtdata after hfi1_postinit_cleanup invokes
1050 * dd->f_cleanup(dd) to disable the interrupt handler and flush workqueues,
1051 * so we're safe from use-after-free of the rcd.
1052 */
1053void receive_interrupt_work(struct work_struct *work)
1054{
1055 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
1056 linkstate_active_work);
1057 struct hfi1_devdata *dd = ppd->dd;
1058 int i;
1059
1060 /* Received non-SC15 packet implies neighbor_normal */
1061 ppd->neighbor_normal = 1;
1062 set_link_state(ppd, HLS_UP_ACTIVE);
1063
1064 /*
1065 * Interrupt all kernel contexts that could have had an
1066 * interrupt during auto activation.
1067 */
1068 for (i = HFI1_CTRL_CTXT; i < dd->first_user_ctxt; i++)
1069 force_recv_intr(dd->rcd[i]);
1070}
1071
1072/*
Mike Marciniszyn77241052015-07-30 15:17:43 -04001073 * Convert a given MTU size to the on-wire MAD packet enumeration.
1074 * Return -1 if the size is invalid.
1075 */
1076int mtu_to_enum(u32 mtu, int default_if_bad)
1077{
1078 switch (mtu) {
1079 case 0: return OPA_MTU_0;
1080 case 256: return OPA_MTU_256;
1081 case 512: return OPA_MTU_512;
1082 case 1024: return OPA_MTU_1024;
1083 case 2048: return OPA_MTU_2048;
1084 case 4096: return OPA_MTU_4096;
1085 case 8192: return OPA_MTU_8192;
1086 case 10240: return OPA_MTU_10240;
1087 }
1088 return default_if_bad;
1089}
1090
1091u16 enum_to_mtu(int mtu)
1092{
1093 switch (mtu) {
1094 case OPA_MTU_0: return 0;
1095 case OPA_MTU_256: return 256;
1096 case OPA_MTU_512: return 512;
1097 case OPA_MTU_1024: return 1024;
1098 case OPA_MTU_2048: return 2048;
1099 case OPA_MTU_4096: return 4096;
1100 case OPA_MTU_8192: return 8192;
1101 case OPA_MTU_10240: return 10240;
1102 default: return 0xffff;
1103 }
1104}
1105
1106/*
1107 * set_mtu - set the MTU
1108 * @ppd: the per port data
1109 *
1110 * We can handle "any" incoming size, the issue here is whether we
1111 * need to restrict our outgoing size. We do not deal with what happens
1112 * to programs that are already running when the size changes.
1113 */
1114int set_mtu(struct hfi1_pportdata *ppd)
1115{
1116 struct hfi1_devdata *dd = ppd->dd;
1117 int i, drain, ret = 0, is_up = 0;
1118
1119 ppd->ibmtu = 0;
1120 for (i = 0; i < ppd->vls_supported; i++)
1121 if (ppd->ibmtu < dd->vld[i].mtu)
1122 ppd->ibmtu = dd->vld[i].mtu;
1123 ppd->ibmaxlen = ppd->ibmtu + lrh_max_header_bytes(ppd->dd);
1124
1125 mutex_lock(&ppd->hls_lock);
Jubin Johnd0d236e2016-02-14 20:20:15 -08001126 if (ppd->host_link_state == HLS_UP_INIT ||
1127 ppd->host_link_state == HLS_UP_ARMED ||
1128 ppd->host_link_state == HLS_UP_ACTIVE)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001129 is_up = 1;
1130
1131 drain = !is_ax(dd) && is_up;
1132
1133 if (drain)
1134 /*
1135 * MTU is specified per-VL. To ensure that no packet gets
1136 * stuck (due, e.g., to the MTU for the packet's VL being
1137 * reduced), empty the per-VL FIFOs before adjusting MTU.
1138 */
1139 ret = stop_drain_data_vls(dd);
1140
1141 if (ret) {
1142 dd_dev_err(dd, "%s: cannot stop/drain VLs - refusing to change per-VL MTUs\n",
1143 __func__);
1144 goto err;
1145 }
1146
1147 hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_MTU, 0);
1148
1149 if (drain)
1150 open_fill_data_vls(dd); /* reopen all VLs */
1151
1152err:
1153 mutex_unlock(&ppd->hls_lock);
1154
1155 return ret;
1156}
1157
1158int hfi1_set_lid(struct hfi1_pportdata *ppd, u32 lid, u8 lmc)
1159{
1160 struct hfi1_devdata *dd = ppd->dd;
1161
1162 ppd->lid = lid;
1163 ppd->lmc = lmc;
1164 hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_LIDLMC, 0);
1165
Jakub Pawlakcde10af2016-05-12 10:23:35 -07001166 dd_dev_info(dd, "port %u: got a lid: 0x%x\n", ppd->port, lid);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001167
1168 return 0;
1169}
1170
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001171void shutdown_led_override(struct hfi1_pportdata *ppd)
1172{
1173 struct hfi1_devdata *dd = ppd->dd;
1174
Easwar Hariharan409b1462016-02-26 13:33:28 -08001175 /*
Easwar Hariharan22434722016-03-07 11:35:03 -08001176 * This pairs with the memory barrier in hfi1_start_led_override to
1177 * ensure that we read the correct state of LED beaconing represented
1178 * by led_override_timer_active
Easwar Hariharan409b1462016-02-26 13:33:28 -08001179 */
Easwar Hariharan22434722016-03-07 11:35:03 -08001180 smp_rmb();
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001181 if (atomic_read(&ppd->led_override_timer_active)) {
1182 del_timer_sync(&ppd->led_override_timer);
1183 atomic_set(&ppd->led_override_timer_active, 0);
Easwar Hariharan22434722016-03-07 11:35:03 -08001184 /* Ensure the atomic_set is visible to all CPUs */
1185 smp_wmb();
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001186 }
1187
Easwar Hariharan22434722016-03-07 11:35:03 -08001188 /* Hand control of the LED to the DC for normal operation */
1189 write_csr(dd, DCC_CFG_LED_CNTRL, 0);
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001190}
Mike Marciniszyn77241052015-07-30 15:17:43 -04001191
1192static void run_led_override(unsigned long opaque)
1193{
1194 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)opaque;
1195 struct hfi1_devdata *dd = ppd->dd;
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001196 unsigned long timeout;
1197 int phase_idx;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001198
1199 if (!(dd->flags & HFI1_INITTED))
1200 return;
1201
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001202 phase_idx = ppd->led_override_phase & 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001203
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001204 setextled(dd, phase_idx);
1205
1206 timeout = ppd->led_override_vals[phase_idx];
Easwar Hariharan22434722016-03-07 11:35:03 -08001207
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001208 /* Set up for next phase */
1209 ppd->led_override_phase = !ppd->led_override_phase;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001210
Easwar Hariharan22434722016-03-07 11:35:03 -08001211 mod_timer(&ppd->led_override_timer, jiffies + timeout);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001212}
1213
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001214/*
1215 * To have the LED blink in a particular pattern, provide timeon and timeoff
Easwar Hariharan22434722016-03-07 11:35:03 -08001216 * in milliseconds.
1217 * To turn off custom blinking and return to normal operation, use
1218 * shutdown_led_override()
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001219 */
Easwar Hariharan22434722016-03-07 11:35:03 -08001220void hfi1_start_led_override(struct hfi1_pportdata *ppd, unsigned int timeon,
1221 unsigned int timeoff)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001222{
Easwar Hariharan22434722016-03-07 11:35:03 -08001223 if (!(ppd->dd->flags & HFI1_INITTED))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001224 return;
1225
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001226 /* Convert to jiffies for direct use in timer */
1227 ppd->led_override_vals[0] = msecs_to_jiffies(timeoff);
1228 ppd->led_override_vals[1] = msecs_to_jiffies(timeon);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001229
Easwar Hariharan22434722016-03-07 11:35:03 -08001230 /* Arbitrarily start from LED on phase */
1231 ppd->led_override_phase = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001232
1233 /*
1234 * If the timer has not already been started, do so. Use a "quick"
Easwar Hariharan22434722016-03-07 11:35:03 -08001235 * timeout so the handler will be called soon to look at our request.
Mike Marciniszyn77241052015-07-30 15:17:43 -04001236 */
Easwar Hariharan22434722016-03-07 11:35:03 -08001237 if (!timer_pending(&ppd->led_override_timer)) {
Muhammad Falak R Wania3faf6062015-10-25 16:13:24 +05301238 setup_timer(&ppd->led_override_timer, run_led_override,
Jubin John17fb4f22016-02-14 20:21:52 -08001239 (unsigned long)ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001240 ppd->led_override_timer.expires = jiffies + 1;
1241 add_timer(&ppd->led_override_timer);
Easwar Hariharan22434722016-03-07 11:35:03 -08001242 atomic_set(&ppd->led_override_timer_active, 1);
1243 /* Ensure the atomic_set is visible to all CPUs */
1244 smp_wmb();
Mike Marciniszyn77241052015-07-30 15:17:43 -04001245 }
1246}
1247
1248/**
1249 * hfi1_reset_device - reset the chip if possible
1250 * @unit: the device to reset
1251 *
1252 * Whether or not reset is successful, we attempt to re-initialize the chip
1253 * (that is, much like a driver unload/reload). We clear the INITTED flag
1254 * so that the various entry points will fail until we reinitialize. For
1255 * now, we only allow this if no user contexts are open that use chip resources
1256 */
1257int hfi1_reset_device(int unit)
1258{
1259 int ret, i;
1260 struct hfi1_devdata *dd = hfi1_lookup(unit);
1261 struct hfi1_pportdata *ppd;
1262 unsigned long flags;
1263 int pidx;
1264
1265 if (!dd) {
1266 ret = -ENODEV;
1267 goto bail;
1268 }
1269
1270 dd_dev_info(dd, "Reset on unit %u requested\n", unit);
1271
1272 if (!dd->kregbase || !(dd->flags & HFI1_PRESENT)) {
1273 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08001274 "Invalid unit number %u or not initialized or not present\n",
1275 unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001276 ret = -ENXIO;
1277 goto bail;
1278 }
1279
1280 spin_lock_irqsave(&dd->uctxt_lock, flags);
1281 if (dd->rcd)
1282 for (i = dd->first_user_ctxt; i < dd->num_rcv_contexts; i++) {
1283 if (!dd->rcd[i] || !dd->rcd[i]->cnt)
1284 continue;
1285 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
1286 ret = -EBUSY;
1287 goto bail;
1288 }
1289 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
1290
1291 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1292 ppd = dd->pport + pidx;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001293
Easwar Hariharan91ab4ed2016-02-03 14:35:57 -08001294 shutdown_led_override(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001295 }
1296 if (dd->flags & HFI1_HAS_SEND_DMA)
1297 sdma_exit(dd);
1298
1299 hfi1_reset_cpu_counters(dd);
1300
1301 ret = hfi1_init(dd, 1);
1302
1303 if (ret)
1304 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08001305 "Reinitialize unit %u after reset failed with %d\n",
1306 unit, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001307 else
1308 dd_dev_info(dd, "Reinitialized unit %u after resetting\n",
Jubin John17fb4f22016-02-14 20:21:52 -08001309 unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001310
1311bail:
1312 return ret;
1313}
1314
1315void handle_eflags(struct hfi1_packet *packet)
1316{
1317 struct hfi1_ctxtdata *rcd = packet->rcd;
1318 u32 rte = rhf_rcv_type_err(packet->rhf);
1319
Mike Marciniszyn77241052015-07-30 15:17:43 -04001320 rcv_hdrerr(rcd, rcd->ppd, packet);
Ignacio Hernandeza03a03e2015-11-06 20:07:03 -05001321 if (rhf_err_flags(packet->rhf))
1322 dd_dev_err(rcd->dd,
1323 "receive context %d: rhf 0x%016llx, errs [ %s%s%s%s%s%s%s%s] rte 0x%x\n",
1324 rcd->ctxt, packet->rhf,
1325 packet->rhf & RHF_K_HDR_LEN_ERR ? "k_hdr_len " : "",
1326 packet->rhf & RHF_DC_UNC_ERR ? "dc_unc " : "",
1327 packet->rhf & RHF_DC_ERR ? "dc " : "",
1328 packet->rhf & RHF_TID_ERR ? "tid " : "",
1329 packet->rhf & RHF_LEN_ERR ? "len " : "",
1330 packet->rhf & RHF_ECC_ERR ? "ecc " : "",
1331 packet->rhf & RHF_VCRC_ERR ? "vcrc " : "",
1332 packet->rhf & RHF_ICRC_ERR ? "icrc " : "",
1333 rte);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001334}
1335
1336/*
1337 * The following functions are called by the interrupt handler. They are type
1338 * specific handlers for each packet type.
1339 */
1340int process_receive_ib(struct hfi1_packet *packet)
1341{
1342 trace_hfi1_rcvhdr(packet->rcd->ppd->dd,
1343 packet->rcd->ctxt,
1344 rhf_err_flags(packet->rhf),
1345 RHF_RCV_TYPE_IB,
1346 packet->hlen,
1347 packet->tlen,
1348 packet->updegr,
1349 rhf_egr_index(packet->rhf));
1350
1351 if (unlikely(rhf_err_flags(packet->rhf))) {
1352 handle_eflags(packet);
1353 return RHF_RCV_CONTINUE;
1354 }
1355
1356 hfi1_ib_rcv(packet);
1357 return RHF_RCV_CONTINUE;
1358}
1359
1360int process_receive_bypass(struct hfi1_packet *packet)
1361{
1362 if (unlikely(rhf_err_flags(packet->rhf)))
1363 handle_eflags(packet);
1364
1365 dd_dev_err(packet->rcd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08001366 "Bypass packets are not supported in normal operation. Dropping\n");
Jakub Pawlak2b719042016-07-01 16:01:22 -07001367 incr_cntr64(&packet->rcd->dd->sw_rcv_bypass_packet_errors);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001368 return RHF_RCV_CONTINUE;
1369}
1370
1371int process_receive_error(struct hfi1_packet *packet)
1372{
1373 handle_eflags(packet);
1374
1375 if (unlikely(rhf_err_flags(packet->rhf)))
1376 dd_dev_err(packet->rcd->dd,
1377 "Unhandled error packet received. Dropping.\n");
1378
1379 return RHF_RCV_CONTINUE;
1380}
1381
1382int kdeth_process_expected(struct hfi1_packet *packet)
1383{
1384 if (unlikely(rhf_err_flags(packet->rhf)))
1385 handle_eflags(packet);
1386
1387 dd_dev_err(packet->rcd->dd,
1388 "Unhandled expected packet received. Dropping.\n");
1389 return RHF_RCV_CONTINUE;
1390}
1391
1392int kdeth_process_eager(struct hfi1_packet *packet)
1393{
1394 if (unlikely(rhf_err_flags(packet->rhf)))
1395 handle_eflags(packet);
1396
1397 dd_dev_err(packet->rcd->dd,
1398 "Unhandled eager packet received. Dropping.\n");
1399 return RHF_RCV_CONTINUE;
1400}
1401
1402int process_receive_invalid(struct hfi1_packet *packet)
1403{
1404 dd_dev_err(packet->rcd->dd, "Invalid packet type %d. Dropping\n",
Jubin John17fb4f22016-02-14 20:21:52 -08001405 rhf_rcv_type(packet->rhf));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001406 return RHF_RCV_CONTINUE;
1407}