19a443537Soulijun /*
29a443537Soulijun * Copyright (c) 2016 Hisilicon Limited.
39a443537Soulijun *
49a443537Soulijun * This software is available to you under a choice of one of two
59a443537Soulijun * licenses. You may choose to be licensed under the terms of the GNU
69a443537Soulijun * General Public License (GPL) Version 2, available from the file
79a443537Soulijun * COPYING in the main directory of this source tree, or the
89a443537Soulijun * OpenIB.org BSD license below:
99a443537Soulijun *
109a443537Soulijun * Redistribution and use in source and binary forms, with or
119a443537Soulijun * without modification, are permitted provided that the following
129a443537Soulijun * conditions are met:
139a443537Soulijun *
149a443537Soulijun * - Redistributions of source code must retain the above
159a443537Soulijun * copyright notice, this list of conditions and the following
169a443537Soulijun * disclaimer.
179a443537Soulijun *
189a443537Soulijun * - Redistributions in binary form must reproduce the above
199a443537Soulijun * copyright notice, this list of conditions and the following
209a443537Soulijun * disclaimer in the documentation and/or other materials
219a443537Soulijun * provided with the distribution.
229a443537Soulijun *
239a443537Soulijun * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
249a443537Soulijun * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
259a443537Soulijun * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
269a443537Soulijun * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
279a443537Soulijun * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
289a443537Soulijun * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
299a443537Soulijun * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
309a443537Soulijun * SOFTWARE.
319a443537Soulijun */
329a443537Soulijun
337406c003SWeihang Li #include <linux/pci.h>
349a443537Soulijun #include <rdma/ib_addr.h>
359a443537Soulijun #include <rdma/ib_cache.h>
36*74161f98SLuoyouming #include "hnae3.h"
379a443537Soulijun #include "hns_roce_device.h"
38*74161f98SLuoyouming #include "hns_roce_hw_v2.h"
399a443537Soulijun
get_ah_udp_sport(const struct rdma_ah_attr * ah_attr)40074bf2c2SWeihang Li static inline u16 get_ah_udp_sport(const struct rdma_ah_attr *ah_attr)
41074bf2c2SWeihang Li {
42074bf2c2SWeihang Li u32 fl = ah_attr->grh.flow_label;
43074bf2c2SWeihang Li u16 sport;
44074bf2c2SWeihang Li
45074bf2c2SWeihang Li if (!fl)
46e8a533cbSJason A. Donenfeld sport = get_random_u32_inclusive(IB_ROCE_UDP_ENCAP_VALID_PORT_MIN,
47e8a533cbSJason A. Donenfeld IB_ROCE_UDP_ENCAP_VALID_PORT_MAX);
48074bf2c2SWeihang Li else
49074bf2c2SWeihang Li sport = rdma_flow_label_to_udp_sport(fl);
50074bf2c2SWeihang Li
51074bf2c2SWeihang Li return sport;
52074bf2c2SWeihang Li }
53074bf2c2SWeihang Li
hns_roce_create_ah(struct ib_ah * ibah,struct rdma_ah_init_attr * init_attr,struct ib_udata * udata)54fa5d010cSMaor Gottlieb int hns_roce_create_ah(struct ib_ah *ibah, struct rdma_ah_init_attr *init_attr,
55fa5d010cSMaor Gottlieb struct ib_udata *udata)
569a443537Soulijun {
57fa5d010cSMaor Gottlieb struct rdma_ah_attr *ah_attr = init_attr->ah_attr;
58d8966fcdSDasaratharaman Chandramouli const struct ib_global_route *grh = rdma_ah_read_grh(ah_attr);
597406c003SWeihang Li struct hns_roce_dev *hr_dev = to_hr_dev(ibah->device);
607406c003SWeihang Li struct hns_roce_ah *ah = to_hr_ah(ibah);
617406c003SWeihang Li int ret = 0;
62*74161f98SLuoyouming u32 max_sl;
63a70c0739SParav Pandit
6438d22088SChengchang Tang if (hr_dev->pci_dev->revision == PCI_REVISION_ID_HIP08 && udata)
6566d86e52SWeihang Li return -EOPNOTSUPP;
6666d86e52SWeihang Li
6782e620d9SLang Cheng ah->av.port = rdma_ah_get_port_num(ah_attr);
68d8966fcdSDasaratharaman Chandramouli ah->av.gid_index = grh->sgid_index;
699a443537Soulijun
70d8966fcdSDasaratharaman Chandramouli if (rdma_ah_get_static_rate(ah_attr))
719a443537Soulijun ah->av.stat_rate = IB_RATE_10_GBPS;
729a443537Soulijun
73fba429fcSWeihang Li ah->av.hop_limit = grh->hop_limit;
74074bf2c2SWeihang Li ah->av.flowlabel = grh->flow_label;
75074bf2c2SWeihang Li ah->av.udp_sport = get_ah_udp_sport(ah_attr);
76603bee93SWeihang Li ah->av.tclass = get_tclass(grh);
77fba429fcSWeihang Li
78*74161f98SLuoyouming ah->av.sl = rdma_ah_get_sl(ah_attr);
79*74161f98SLuoyouming max_sl = min_t(u32, MAX_SERVICE_LEVEL, hr_dev->caps.sl_num - 1);
80*74161f98SLuoyouming if (unlikely(ah->av.sl > max_sl)) {
81*74161f98SLuoyouming ibdev_err_ratelimited(&hr_dev->ib_dev,
82*74161f98SLuoyouming "failed to set sl, sl (%u) shouldn't be larger than %u.\n",
83*74161f98SLuoyouming ah->av.sl, max_sl);
84*74161f98SLuoyouming return -EINVAL;
85*74161f98SLuoyouming }
86*74161f98SLuoyouming
87fba429fcSWeihang Li memcpy(ah->av.dgid, grh->dgid.raw, HNS_ROCE_GID_SIZE);
88fba429fcSWeihang Li memcpy(ah->av.mac, ah_attr->roce.dmac, ETH_ALEN);
899a443537Soulijun
907406c003SWeihang Li /* HIP08 needs to record vlan info in Address Vector */
9138d22088SChengchang Tang if (hr_dev->pci_dev->revision == PCI_REVISION_ID_HIP08) {
927406c003SWeihang Li ret = rdma_read_gid_l2_fields(ah_attr->grh.sgid_attr,
937406c003SWeihang Li &ah->av.vlan_id, NULL);
947406c003SWeihang Li if (ret)
957406c003SWeihang Li return ret;
967406c003SWeihang Li
9794a8c4dfSWeihang Li ah->av.vlan_en = ah->av.vlan_id < VLAN_N_VID;
987406c003SWeihang Li }
997406c003SWeihang Li
1007406c003SWeihang Li return ret;
1019a443537Soulijun }
1029a443537Soulijun
hns_roce_query_ah(struct ib_ah * ibah,struct rdma_ah_attr * ah_attr)10390898850SDasaratharaman Chandramouli int hns_roce_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr)
1049a443537Soulijun {
1059a443537Soulijun struct hns_roce_ah *ah = to_hr_ah(ibah);
1069a443537Soulijun
1079a443537Soulijun memset(ah_attr, 0, sizeof(*ah_attr));
1089a443537Soulijun
10982e620d9SLang Cheng rdma_ah_set_sl(ah_attr, ah->av.sl);
11082e620d9SLang Cheng rdma_ah_set_port_num(ah_attr, ah->av.port);
111d8966fcdSDasaratharaman Chandramouli rdma_ah_set_static_rate(ah_attr, ah->av.stat_rate);
11282e620d9SLang Cheng rdma_ah_set_grh(ah_attr, NULL, ah->av.flowlabel,
11382e620d9SLang Cheng ah->av.gid_index, ah->av.hop_limit, ah->av.tclass);
114d8966fcdSDasaratharaman Chandramouli rdma_ah_set_dgid_raw(ah_attr, ah->av.dgid);
1159a443537Soulijun
1169a443537Soulijun return 0;
1179a443537Soulijun }
118