Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 1 | /******************************************************************* |
| 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> |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 32 | |
| 33 | #include "ocrdma.h" |
| 34 | #include "ocrdma_verbs.h" |
| 35 | #include "ocrdma_ah.h" |
| 36 | #include "ocrdma_hw.h" |
| 37 | |
Devesh Sharma | 0ea8726 | 2014-07-02 11:36:04 +0530 | [diff] [blame] | 38 | #define OCRDMA_VID_PCP_SHIFT 0xD |
| 39 | |
Naresh Gottumukkala | 1afc045 | 2013-08-07 12:52:33 +0530 | [diff] [blame] | 40 | static inline int set_av_attr(struct ocrdma_dev *dev, struct ocrdma_ah *ah, |
devesh.sharma@emulex.com | 1be528b | 2014-09-05 15:09:48 +0530 | [diff] [blame^] | 41 | struct ib_ah_attr *attr, union ib_gid *sgid, int pdid) |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 42 | { |
| 43 | int status = 0; |
| 44 | u16 vlan_tag; bool vlan_enabled = false; |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 45 | struct ocrdma_eth_vlan eth; |
| 46 | struct ocrdma_grh grh; |
| 47 | int eth_sz; |
| 48 | |
| 49 | memset(ð, 0, sizeof(eth)); |
| 50 | memset(&grh, 0, sizeof(grh)); |
| 51 | |
devesh.sharma@emulex.com | 1be528b | 2014-09-05 15:09:48 +0530 | [diff] [blame^] | 52 | /* VLAN */ |
Moni Shoua | 40aca6f | 2013-12-12 18:03:15 +0200 | [diff] [blame] | 53 | vlan_tag = attr->vlan_id; |
Naresh Gottumukkala | 84b105d | 2013-08-26 15:27:50 +0530 | [diff] [blame] | 54 | if (!vlan_tag || (vlan_tag > 0xFFF)) |
| 55 | vlan_tag = dev->pvid; |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 56 | if (vlan_tag && (vlan_tag < 0x1000)) { |
| 57 | eth.eth_type = cpu_to_be16(0x8100); |
| 58 | eth.roce_eth_type = cpu_to_be16(OCRDMA_ROCE_ETH_TYPE); |
Devesh Sharma | 0ea8726 | 2014-07-02 11:36:04 +0530 | [diff] [blame] | 59 | vlan_tag |= (dev->sl & 0x07) << OCRDMA_VID_PCP_SHIFT; |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 60 | eth.vlan_tag = cpu_to_be16(vlan_tag); |
| 61 | eth_sz = sizeof(struct ocrdma_eth_vlan); |
| 62 | vlan_enabled = true; |
| 63 | } else { |
| 64 | eth.eth_type = cpu_to_be16(OCRDMA_ROCE_ETH_TYPE); |
| 65 | eth_sz = sizeof(struct ocrdma_eth_basic); |
| 66 | } |
devesh.sharma@emulex.com | 1be528b | 2014-09-05 15:09:48 +0530 | [diff] [blame^] | 67 | /* MAC */ |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 68 | memcpy(ð.smac[0], &dev->nic_info.mac_addr[0], ETH_ALEN); |
Moni Shoua | 40aca6f | 2013-12-12 18:03:15 +0200 | [diff] [blame] | 69 | status = ocrdma_resolve_dmac(dev, attr, ð.dmac[0]); |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 70 | if (status) |
| 71 | return status; |
devesh.sharma@emulex.com | 1be528b | 2014-09-05 15:09:48 +0530 | [diff] [blame^] | 72 | ah->sgid_index = attr->grh.sgid_index; |
| 73 | memcpy(&grh.sgid[0], sgid->raw, sizeof(union ib_gid)); |
| 74 | memcpy(&grh.dgid[0], attr->grh.dgid.raw, sizeof(attr->grh.dgid.raw)); |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 75 | |
| 76 | grh.tclass_flow = cpu_to_be32((6 << 28) | |
| 77 | (attr->grh.traffic_class << 24) | |
| 78 | attr->grh.flow_label); |
| 79 | /* 0x1b is next header value in GRH */ |
| 80 | grh.pdid_hoplimit = cpu_to_be32((pdid << 16) | |
| 81 | (0x1b << 8) | attr->grh.hop_limit); |
devesh.sharma@emulex.com | 1be528b | 2014-09-05 15:09:48 +0530 | [diff] [blame^] | 82 | /* Eth HDR */ |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 83 | memcpy(&ah->av->eth_hdr, ð, eth_sz); |
| 84 | memcpy((u8 *)ah->av + eth_sz, &grh, sizeof(struct ocrdma_grh)); |
| 85 | if (vlan_enabled) |
| 86 | ah->av->valid |= OCRDMA_AV_VLAN_VALID; |
Devesh Sharma | fe5e8a1 | 2013-12-05 15:48:01 +0530 | [diff] [blame] | 87 | ah->av->valid = cpu_to_le32(ah->av->valid); |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 88 | return status; |
| 89 | } |
| 90 | |
| 91 | struct ib_ah *ocrdma_create_ah(struct ib_pd *ibpd, struct ib_ah_attr *attr) |
| 92 | { |
| 93 | u32 *ahid_addr; |
| 94 | int status; |
| 95 | struct ocrdma_ah *ah; |
| 96 | struct ocrdma_pd *pd = get_ocrdma_pd(ibpd); |
Naresh Gottumukkala | f99b164 | 2013-08-07 12:52:32 +0530 | [diff] [blame] | 97 | struct ocrdma_dev *dev = get_ocrdma_dev(ibpd->device); |
devesh.sharma@emulex.com | 1be528b | 2014-09-05 15:09:48 +0530 | [diff] [blame^] | 98 | union ib_gid sgid; |
| 99 | u8 zmac[ETH_ALEN]; |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 100 | |
| 101 | if (!(attr->ah_flags & IB_AH_GRH)) |
| 102 | return ERR_PTR(-EINVAL); |
| 103 | |
Selvin Xavier | 31dbdd9 | 2014-06-10 19:32:13 +0530 | [diff] [blame] | 104 | if (atomic_cmpxchg(&dev->update_sl, 1, 0)) |
| 105 | ocrdma_init_service_level(dev); |
Devesh Sharma | fad51b7 | 2014-02-04 11:57:10 +0530 | [diff] [blame] | 106 | ah = kzalloc(sizeof(*ah), GFP_ATOMIC); |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 107 | if (!ah) |
| 108 | return ERR_PTR(-ENOMEM); |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 109 | |
| 110 | status = ocrdma_alloc_av(dev, ah); |
| 111 | if (status) |
| 112 | goto av_err; |
devesh.sharma@emulex.com | 1be528b | 2014-09-05 15:09:48 +0530 | [diff] [blame^] | 113 | |
| 114 | status = ocrdma_query_gid(&dev->ibdev, 1, attr->grh.sgid_index, &sgid); |
| 115 | if (status) { |
| 116 | pr_err("%s(): Failed to query sgid, status = %d\n", |
| 117 | __func__, status); |
| 118 | goto av_conf_err; |
| 119 | } |
| 120 | |
| 121 | memset(&zmac, 0, ETH_ALEN); |
| 122 | if (pd->uctx && |
| 123 | memcmp(attr->dmac, &zmac, ETH_ALEN)) { |
| 124 | status = rdma_addr_find_dmac_by_grh(&sgid, &attr->grh.dgid, |
| 125 | attr->dmac, &attr->vlan_id); |
| 126 | if (status) { |
| 127 | pr_err("%s(): Failed to resolve dmac from gid." |
| 128 | "status = %d\n", __func__, status); |
| 129 | goto av_conf_err; |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | status = set_av_attr(dev, ah, attr, &sgid, pd->id); |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 134 | if (status) |
| 135 | goto av_conf_err; |
| 136 | |
| 137 | /* if pd is for the user process, pass the ah_id to user space */ |
| 138 | if ((pd->uctx) && (pd->uctx->ah_tbl.va)) { |
| 139 | ahid_addr = pd->uctx->ah_tbl.va + attr->dlid; |
| 140 | *ahid_addr = ah->id; |
| 141 | } |
| 142 | return &ah->ibah; |
| 143 | |
| 144 | av_conf_err: |
| 145 | ocrdma_free_av(dev, ah); |
| 146 | av_err: |
| 147 | kfree(ah); |
| 148 | return ERR_PTR(status); |
| 149 | } |
| 150 | |
| 151 | int ocrdma_destroy_ah(struct ib_ah *ibah) |
| 152 | { |
| 153 | struct ocrdma_ah *ah = get_ocrdma_ah(ibah); |
Naresh Gottumukkala | 1afc045 | 2013-08-07 12:52:33 +0530 | [diff] [blame] | 154 | struct ocrdma_dev *dev = get_ocrdma_dev(ibah->device); |
| 155 | |
| 156 | ocrdma_free_av(dev, ah); |
Parav Pandit | fe2caef | 2012-03-21 04:09:06 +0530 | [diff] [blame] | 157 | kfree(ah); |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | int ocrdma_query_ah(struct ib_ah *ibah, struct ib_ah_attr *attr) |
| 162 | { |
| 163 | struct ocrdma_ah *ah = get_ocrdma_ah(ibah); |
| 164 | struct ocrdma_av *av = ah->av; |
| 165 | struct ocrdma_grh *grh; |
| 166 | attr->ah_flags |= IB_AH_GRH; |
| 167 | if (ah->av->valid & Bit(1)) { |
| 168 | grh = (struct ocrdma_grh *)((u8 *)ah->av + |
| 169 | sizeof(struct ocrdma_eth_vlan)); |
| 170 | attr->sl = be16_to_cpu(av->eth_hdr.vlan_tag) >> 13; |
| 171 | } else { |
| 172 | grh = (struct ocrdma_grh *)((u8 *)ah->av + |
| 173 | sizeof(struct ocrdma_eth_basic)); |
| 174 | attr->sl = 0; |
| 175 | } |
| 176 | memcpy(&attr->grh.dgid.raw[0], &grh->dgid[0], sizeof(grh->dgid)); |
| 177 | attr->grh.sgid_index = ah->sgid_index; |
| 178 | attr->grh.hop_limit = be32_to_cpu(grh->pdid_hoplimit) & 0xff; |
| 179 | attr->grh.traffic_class = be32_to_cpu(grh->tclass_flow) >> 24; |
| 180 | attr->grh.flow_label = be32_to_cpu(grh->tclass_flow) & 0x00ffffffff; |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | int ocrdma_modify_ah(struct ib_ah *ibah, struct ib_ah_attr *attr) |
| 185 | { |
| 186 | /* modify_ah is unsupported */ |
| 187 | return -ENOSYS; |
| 188 | } |
| 189 | |
| 190 | int ocrdma_process_mad(struct ib_device *ibdev, |
| 191 | int process_mad_flags, |
| 192 | u8 port_num, |
| 193 | struct ib_wc *in_wc, |
| 194 | struct ib_grh *in_grh, |
| 195 | struct ib_mad *in_mad, struct ib_mad *out_mad) |
| 196 | { |
| 197 | return IB_MAD_RESULT_SUCCESS; |
| 198 | } |