blob: d812904f398473d1502bb979d6d822c04b55f2b8 [file] [log] [blame]
Parav Panditfe2caef2012-03-21 04:09:06 +05301/*******************************************************************
2 * This file is part of the Emulex RoCE Device Driver for *
3 * RoCE (RDMA over Converged Ethernet) adapters. *
4 * Copyright (C) 2008-2012 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
6 * www.emulex.com *
7 * *
8 * This program is free software; you can redistribute it and/or *
9 * modify it under the terms of version 2 of the GNU General *
10 * Public License as published by the Free Software Foundation. *
11 * This program is distributed in the hope that it will be useful. *
12 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
13 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
14 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
15 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
16 * TO BE LEGALLY INVALID. See the GNU General Public License for *
17 * more details, a copy of which can be found in the file COPYING *
18 * included with this package. *
19 *
20 * Contact Information:
21 * linux-drivers@emulex.com
22 *
23 * Emulex
24 * 3333 Susan Street
25 * Costa Mesa, CA 92626
26 *******************************************************************/
27
28#include <net/neighbour.h>
29#include <net/netevent.h>
30
31#include <rdma/ib_addr.h>
Mitesh Ahujacad1fbb2014-12-18 14:12:55 +053032#include <rdma/ib_mad.h>
Parav Panditfe2caef2012-03-21 04:09:06 +053033
34#include "ocrdma.h"
35#include "ocrdma_verbs.h"
36#include "ocrdma_ah.h"
37#include "ocrdma_hw.h"
Mitesh Ahujacad1fbb2014-12-18 14:12:55 +053038#include "ocrdma_stats.h"
Parav Panditfe2caef2012-03-21 04:09:06 +053039
Devesh Sharma0ea87262014-07-02 11:36:04 +053040#define OCRDMA_VID_PCP_SHIFT 0xD
41
Naresh Gottumukkala1afc0452013-08-07 12:52:33 +053042static inline int set_av_attr(struct ocrdma_dev *dev, struct ocrdma_ah *ah,
Devesh Sharma29565f22014-12-18 14:13:07 +053043 struct ib_ah_attr *attr, union ib_gid *sgid,
44 int pdid, bool *isvlan)
Parav Panditfe2caef2012-03-21 04:09:06 +053045{
46 int status = 0;
Devesh Sharma29565f22014-12-18 14:13:07 +053047 u16 vlan_tag;
Parav Panditfe2caef2012-03-21 04:09:06 +053048 struct ocrdma_eth_vlan eth;
49 struct ocrdma_grh grh;
50 int eth_sz;
51
52 memset(&eth, 0, sizeof(eth));
53 memset(&grh, 0, sizeof(grh));
54
devesh.sharma@emulex.com1be528b2014-09-05 15:09:48 +053055 /* VLAN */
Moni Shoua40aca6f2013-12-12 18:03:15 +020056 vlan_tag = attr->vlan_id;
Naresh Gottumukkala84b105d2013-08-26 15:27:50 +053057 if (!vlan_tag || (vlan_tag > 0xFFF))
58 vlan_tag = dev->pvid;
Parav Panditfe2caef2012-03-21 04:09:06 +053059 if (vlan_tag && (vlan_tag < 0x1000)) {
60 eth.eth_type = cpu_to_be16(0x8100);
61 eth.roce_eth_type = cpu_to_be16(OCRDMA_ROCE_ETH_TYPE);
Devesh Sharma0ea87262014-07-02 11:36:04 +053062 vlan_tag |= (dev->sl & 0x07) << OCRDMA_VID_PCP_SHIFT;
Parav Panditfe2caef2012-03-21 04:09:06 +053063 eth.vlan_tag = cpu_to_be16(vlan_tag);
64 eth_sz = sizeof(struct ocrdma_eth_vlan);
Devesh Sharma29565f22014-12-18 14:13:07 +053065 *isvlan = true;
Parav Panditfe2caef2012-03-21 04:09:06 +053066 } else {
67 eth.eth_type = cpu_to_be16(OCRDMA_ROCE_ETH_TYPE);
68 eth_sz = sizeof(struct ocrdma_eth_basic);
69 }
devesh.sharma@emulex.com1be528b2014-09-05 15:09:48 +053070 /* MAC */
Parav Panditfe2caef2012-03-21 04:09:06 +053071 memcpy(&eth.smac[0], &dev->nic_info.mac_addr[0], ETH_ALEN);
Moni Shoua40aca6f2013-12-12 18:03:15 +020072 status = ocrdma_resolve_dmac(dev, attr, &eth.dmac[0]);
Parav Panditfe2caef2012-03-21 04:09:06 +053073 if (status)
74 return status;
devesh.sharma@emulex.com1be528b2014-09-05 15:09:48 +053075 ah->sgid_index = attr->grh.sgid_index;
76 memcpy(&grh.sgid[0], sgid->raw, sizeof(union ib_gid));
77 memcpy(&grh.dgid[0], attr->grh.dgid.raw, sizeof(attr->grh.dgid.raw));
Parav Panditfe2caef2012-03-21 04:09:06 +053078
79 grh.tclass_flow = cpu_to_be32((6 << 28) |
80 (attr->grh.traffic_class << 24) |
81 attr->grh.flow_label);
82 /* 0x1b is next header value in GRH */
83 grh.pdid_hoplimit = cpu_to_be32((pdid << 16) |
84 (0x1b << 8) | attr->grh.hop_limit);
devesh.sharma@emulex.com1be528b2014-09-05 15:09:48 +053085 /* Eth HDR */
Parav Panditfe2caef2012-03-21 04:09:06 +053086 memcpy(&ah->av->eth_hdr, &eth, eth_sz);
87 memcpy((u8 *)ah->av + eth_sz, &grh, sizeof(struct ocrdma_grh));
Devesh Sharma29565f22014-12-18 14:13:07 +053088 if (*isvlan)
Parav Panditfe2caef2012-03-21 04:09:06 +053089 ah->av->valid |= OCRDMA_AV_VLAN_VALID;
Devesh Sharmafe5e8a12013-12-05 15:48:01 +053090 ah->av->valid = cpu_to_le32(ah->av->valid);
Parav Panditfe2caef2012-03-21 04:09:06 +053091 return status;
92}
93
94struct ib_ah *ocrdma_create_ah(struct ib_pd *ibpd, struct ib_ah_attr *attr)
95{
96 u32 *ahid_addr;
Devesh Sharma29565f22014-12-18 14:13:07 +053097 bool isvlan = false;
Parav Panditfe2caef2012-03-21 04:09:06 +053098 int status;
99 struct ocrdma_ah *ah;
100 struct ocrdma_pd *pd = get_ocrdma_pd(ibpd);
Naresh Gottumukkalaf99b1642013-08-07 12:52:32 +0530101 struct ocrdma_dev *dev = get_ocrdma_dev(ibpd->device);
devesh.sharma@emulex.com1be528b2014-09-05 15:09:48 +0530102 union ib_gid sgid;
Parav Panditfe2caef2012-03-21 04:09:06 +0530103
104 if (!(attr->ah_flags & IB_AH_GRH))
105 return ERR_PTR(-EINVAL);
106
Selvin Xavier31dbdd92014-06-10 19:32:13 +0530107 if (atomic_cmpxchg(&dev->update_sl, 1, 0))
108 ocrdma_init_service_level(dev);
Devesh Sharmafad51b72014-02-04 11:57:10 +0530109 ah = kzalloc(sizeof(*ah), GFP_ATOMIC);
Parav Panditfe2caef2012-03-21 04:09:06 +0530110 if (!ah)
111 return ERR_PTR(-ENOMEM);
Parav Panditfe2caef2012-03-21 04:09:06 +0530112
113 status = ocrdma_alloc_av(dev, ah);
114 if (status)
115 goto av_err;
devesh.sharma@emulex.com1be528b2014-09-05 15:09:48 +0530116
117 status = ocrdma_query_gid(&dev->ibdev, 1, attr->grh.sgid_index, &sgid);
118 if (status) {
119 pr_err("%s(): Failed to query sgid, status = %d\n",
120 __func__, status);
121 goto av_conf_err;
122 }
123
Devesh Sharmae5f05082014-11-24 10:03:39 +0530124 if (pd->uctx) {
devesh.sharma@emulex.com1be528b2014-09-05 15:09:48 +0530125 status = rdma_addr_find_dmac_by_grh(&sgid, &attr->grh.dgid,
126 attr->dmac, &attr->vlan_id);
127 if (status) {
128 pr_err("%s(): Failed to resolve dmac from gid."
129 "status = %d\n", __func__, status);
130 goto av_conf_err;
131 }
132 }
133
Devesh Sharma29565f22014-12-18 14:13:07 +0530134 status = set_av_attr(dev, ah, attr, &sgid, pd->id, &isvlan);
Parav Panditfe2caef2012-03-21 04:09:06 +0530135 if (status)
136 goto av_conf_err;
137
138 /* if pd is for the user process, pass the ah_id to user space */
139 if ((pd->uctx) && (pd->uctx->ah_tbl.va)) {
140 ahid_addr = pd->uctx->ah_tbl.va + attr->dlid;
Devesh Sharma29565f22014-12-18 14:13:07 +0530141 *ahid_addr = 0;
142 *ahid_addr |= ah->id & OCRDMA_AH_ID_MASK;
143 if (isvlan)
144 *ahid_addr |= (OCRDMA_AH_VLAN_VALID_MASK <<
145 OCRDMA_AH_VLAN_VALID_SHIFT);
Parav Panditfe2caef2012-03-21 04:09:06 +0530146 }
Devesh Sharma29565f22014-12-18 14:13:07 +0530147
Parav Panditfe2caef2012-03-21 04:09:06 +0530148 return &ah->ibah;
149
150av_conf_err:
151 ocrdma_free_av(dev, ah);
152av_err:
153 kfree(ah);
154 return ERR_PTR(status);
155}
156
157int ocrdma_destroy_ah(struct ib_ah *ibah)
158{
159 struct ocrdma_ah *ah = get_ocrdma_ah(ibah);
Naresh Gottumukkala1afc0452013-08-07 12:52:33 +0530160 struct ocrdma_dev *dev = get_ocrdma_dev(ibah->device);
161
162 ocrdma_free_av(dev, ah);
Parav Panditfe2caef2012-03-21 04:09:06 +0530163 kfree(ah);
164 return 0;
165}
166
167int ocrdma_query_ah(struct ib_ah *ibah, struct ib_ah_attr *attr)
168{
169 struct ocrdma_ah *ah = get_ocrdma_ah(ibah);
170 struct ocrdma_av *av = ah->av;
171 struct ocrdma_grh *grh;
172 attr->ah_flags |= IB_AH_GRH;
devesh.sharma@emulex.comf0c2c222014-09-05 15:09:49 +0530173 if (ah->av->valid & OCRDMA_AV_VALID) {
Parav Panditfe2caef2012-03-21 04:09:06 +0530174 grh = (struct ocrdma_grh *)((u8 *)ah->av +
175 sizeof(struct ocrdma_eth_vlan));
176 attr->sl = be16_to_cpu(av->eth_hdr.vlan_tag) >> 13;
177 } else {
178 grh = (struct ocrdma_grh *)((u8 *)ah->av +
179 sizeof(struct ocrdma_eth_basic));
180 attr->sl = 0;
181 }
182 memcpy(&attr->grh.dgid.raw[0], &grh->dgid[0], sizeof(grh->dgid));
183 attr->grh.sgid_index = ah->sgid_index;
184 attr->grh.hop_limit = be32_to_cpu(grh->pdid_hoplimit) & 0xff;
185 attr->grh.traffic_class = be32_to_cpu(grh->tclass_flow) >> 24;
186 attr->grh.flow_label = be32_to_cpu(grh->tclass_flow) & 0x00ffffffff;
187 return 0;
188}
189
190int ocrdma_modify_ah(struct ib_ah *ibah, struct ib_ah_attr *attr)
191{
192 /* modify_ah is unsupported */
193 return -ENOSYS;
194}
195
196int ocrdma_process_mad(struct ib_device *ibdev,
197 int process_mad_flags,
198 u8 port_num,
199 struct ib_wc *in_wc,
200 struct ib_grh *in_grh,
201 struct ib_mad *in_mad, struct ib_mad *out_mad)
202{
Mitesh Ahujacad1fbb2014-12-18 14:12:55 +0530203 int status;
204 struct ocrdma_dev *dev;
205
206 switch (in_mad->mad_hdr.mgmt_class) {
207 case IB_MGMT_CLASS_PERF_MGMT:
208 dev = get_ocrdma_dev(ibdev);
209 if (!ocrdma_pma_counters(dev, out_mad))
210 status = IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY;
211 else
212 status = IB_MAD_RESULT_SUCCESS;
213 break;
214 default:
215 status = IB_MAD_RESULT_SUCCESS;
216 break;
217 }
218 return status;
Parav Panditfe2caef2012-03-21 04:09:06 +0530219}