blob: 8e45714fa369832ae9a42d81b76f19d18b2fd846 [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
Saeed Mahameed6cf0a152015-04-02 17:07:30 +03002 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
Eli Cohene126ba92013-07-07 17:25:49 +03003 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#include <linux/mlx5/cmd.h>
34#include <rdma/ib_mad.h>
35#include <rdma/ib_smi.h>
36#include "mlx5_ib.h"
37
38enum {
39 MLX5_IB_VENDOR_CLASS1 = 0x9,
40 MLX5_IB_VENDOR_CLASS2 = 0xa
41};
42
43int mlx5_MAD_IFC(struct mlx5_ib_dev *dev, int ignore_mkey, int ignore_bkey,
Ira Weinya97e2d82015-05-31 17:15:30 -040044 u8 port, const struct ib_wc *in_wc, const struct ib_grh *in_grh,
45 const void *in_mad, void *response_mad)
Eli Cohene126ba92013-07-07 17:25:49 +030046{
47 u8 op_modifier = 0;
48
49 /* Key check traps can't be generated unless we have in_wc to
50 * tell us where to send the trap.
51 */
52 if (ignore_mkey || !in_wc)
53 op_modifier |= 0x1;
54 if (ignore_bkey || !in_wc)
55 op_modifier |= 0x2;
56
Jack Morgenstein9603b612014-07-28 23:30:22 +030057 return mlx5_core_mad_ifc(dev->mdev, in_mad, response_mad, op_modifier, port);
Eli Cohene126ba92013-07-07 17:25:49 +030058}
59
60int mlx5_ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
Ira Weinya97e2d82015-05-31 17:15:30 -040061 const struct ib_wc *in_wc, const struct ib_grh *in_grh,
Ira Weiny4cd7c942015-06-06 14:38:31 -040062 const struct ib_mad_hdr *in, size_t in_mad_size,
63 struct ib_mad_hdr *out, size_t *out_mad_size,
64 u16 *out_mad_pkey_index)
Eli Cohene126ba92013-07-07 17:25:49 +030065{
66 u16 slid;
67 int err;
Ira Weiny4cd7c942015-06-06 14:38:31 -040068 const struct ib_mad *in_mad = (const struct ib_mad *)in;
69 struct ib_mad *out_mad = (struct ib_mad *)out;
70
71 BUG_ON(in_mad_size != sizeof(*in_mad) ||
72 *out_mad_size != sizeof(*out_mad));
Eli Cohene126ba92013-07-07 17:25:49 +030073
74 slid = in_wc ? in_wc->slid : be16_to_cpu(IB_LID_PERMISSIVE);
75
76 if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP && slid == 0)
77 return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
78
79 if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED ||
80 in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) {
81 if (in_mad->mad_hdr.method != IB_MGMT_METHOD_GET &&
82 in_mad->mad_hdr.method != IB_MGMT_METHOD_SET &&
83 in_mad->mad_hdr.method != IB_MGMT_METHOD_TRAP_REPRESS)
84 return IB_MAD_RESULT_SUCCESS;
85
86 /* Don't process SMInfo queries -- the SMA can't handle them.
87 */
88 if (in_mad->mad_hdr.attr_id == IB_SMP_ATTR_SM_INFO)
89 return IB_MAD_RESULT_SUCCESS;
90 } else if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_PERF_MGMT ||
91 in_mad->mad_hdr.mgmt_class == MLX5_IB_VENDOR_CLASS1 ||
92 in_mad->mad_hdr.mgmt_class == MLX5_IB_VENDOR_CLASS2 ||
93 in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_CONG_MGMT) {
94 if (in_mad->mad_hdr.method != IB_MGMT_METHOD_GET &&
95 in_mad->mad_hdr.method != IB_MGMT_METHOD_SET)
96 return IB_MAD_RESULT_SUCCESS;
97 } else {
98 return IB_MAD_RESULT_SUCCESS;
99 }
100
101 err = mlx5_MAD_IFC(to_mdev(ibdev),
102 mad_flags & IB_MAD_IGNORE_MKEY,
103 mad_flags & IB_MAD_IGNORE_BKEY,
104 port_num, in_wc, in_grh, in_mad, out_mad);
105 if (err)
106 return IB_MAD_RESULT_FAILURE;
107
108 /* set return bit in status of directed route responses */
109 if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE)
110 out_mad->mad_hdr.status |= cpu_to_be16(1 << 15);
111
112 if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP_REPRESS)
113 /* no response for trap repress */
114 return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
115
116 return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY;
117}
118
119int mlx5_query_ext_port_caps(struct mlx5_ib_dev *dev, u8 port)
120{
121 struct ib_smp *in_mad = NULL;
122 struct ib_smp *out_mad = NULL;
123 int err = -ENOMEM;
124 u16 packet_error;
125
126 in_mad = kzalloc(sizeof(*in_mad), GFP_KERNEL);
127 out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL);
128 if (!in_mad || !out_mad)
129 goto out;
130
131 init_query_mad(in_mad);
132 in_mad->attr_id = MLX5_ATTR_EXTENDED_PORT_INFO;
133 in_mad->attr_mod = cpu_to_be32(port);
134
135 err = mlx5_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
136
137 packet_error = be16_to_cpu(out_mad->status);
138
Eli Cohenc7a08ac2014-10-02 12:19:42 +0300139 dev->mdev->caps.gen.ext_port_cap[port - 1] = (!err && !packet_error) ?
Eli Cohene126ba92013-07-07 17:25:49 +0300140 MLX_EXT_PORT_CAP_FLAG_EXTENDED_PORT_INFO : 0;
141
142out:
143 kfree(in_mad);
144 kfree(out_mad);
145 return err;
146}