blob: 77fc1aa261148e5784a1dd342181cd2f6ec5b754 [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
Saeed Mahameed302bdf62015-04-02 17:07:29 +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/driver.h>
34#include <linux/mlx5/cmd.h>
35#include <linux/module.h>
36#include "mlx5_core.h"
37
Majd Dibbiny7cf7fa52015-06-07 15:44:23 +030038static int mlx5_cmd_query_adapter(struct mlx5_core_dev *dev, u32 *out,
39 int outlen)
Eli Cohene126ba92013-07-07 17:25:49 +030040{
Majd Dibbiny211e6c82015-06-04 19:30:42 +030041 u32 in[MLX5_ST_SZ_DW(query_adapter_in)];
42
43 memset(in, 0, sizeof(in));
44
45 MLX5_SET(query_adapter_in, in, opcode, MLX5_CMD_OP_QUERY_ADAPTER);
46
47 return mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, outlen);
48}
49
50int mlx5_query_board_id(struct mlx5_core_dev *dev)
51{
52 u32 *out;
53 int outlen = MLX5_ST_SZ_BYTES(query_adapter_out);
Eli Cohene126ba92013-07-07 17:25:49 +030054 int err;
55
Majd Dibbiny211e6c82015-06-04 19:30:42 +030056 out = kzalloc(outlen, GFP_KERNEL);
Eli Cohene126ba92013-07-07 17:25:49 +030057 if (!out)
58 return -ENOMEM;
59
Majd Dibbiny211e6c82015-06-04 19:30:42 +030060 err = mlx5_cmd_query_adapter(dev, out, outlen);
Eli Cohene126ba92013-07-07 17:25:49 +030061 if (err)
Majd Dibbiny211e6c82015-06-04 19:30:42 +030062 goto out;
Eli Cohene126ba92013-07-07 17:25:49 +030063
Majd Dibbiny211e6c82015-06-04 19:30:42 +030064 memcpy(dev->board_id,
65 MLX5_ADDR_OF(query_adapter_out, out,
66 query_adapter_struct.vsd_contd_psid),
67 MLX5_FLD_SZ_BYTES(query_adapter_out,
68 query_adapter_struct.vsd_contd_psid));
Eli Cohene126ba92013-07-07 17:25:49 +030069
Majd Dibbiny211e6c82015-06-04 19:30:42 +030070out:
Eli Cohene126ba92013-07-07 17:25:49 +030071 kfree(out);
Eli Cohene126ba92013-07-07 17:25:49 +030072 return err;
73}
74
Majd Dibbiny211e6c82015-06-04 19:30:42 +030075int mlx5_core_query_vendor_id(struct mlx5_core_dev *mdev, u32 *vendor_id)
76{
77 u32 *out;
78 int outlen = MLX5_ST_SZ_BYTES(query_adapter_out);
79 int err;
80
81 out = kzalloc(outlen, GFP_KERNEL);
82 if (!out)
83 return -ENOMEM;
84
85 err = mlx5_cmd_query_adapter(mdev, out, outlen);
86 if (err)
87 goto out;
88
89 *vendor_id = MLX5_GET(query_adapter_out, out,
90 query_adapter_struct.ieee_vendor_id);
91out:
92 kfree(out);
93 return err;
94}
95EXPORT_SYMBOL(mlx5_core_query_vendor_id);
96
Saeed Mahameed938fe832015-05-28 22:28:41 +030097int mlx5_query_hca_caps(struct mlx5_core_dev *dev)
Eli Cohene126ba92013-07-07 17:25:49 +030098{
Haggai Erane420f0c2014-12-11 17:04:19 +020099 int err;
100
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200101 err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300102 if (err)
103 return err;
104
105 if (MLX5_CAP_GEN(dev, eth_net_offloads)) {
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200106 err = mlx5_core_get_caps(dev, MLX5_CAP_ETHERNET_OFFLOADS);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300107 if (err)
108 return err;
Haggai Erane420f0c2014-12-11 17:04:19 +0200109 }
110
Saeed Mahameed938fe832015-05-28 22:28:41 +0300111 if (MLX5_CAP_GEN(dev, pg)) {
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200112 err = mlx5_core_get_caps(dev, MLX5_CAP_ODP);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300113 if (err)
114 return err;
115 }
Haggai Erane420f0c2014-12-11 17:04:19 +0200116
Saeed Mahameed938fe832015-05-28 22:28:41 +0300117 if (MLX5_CAP_GEN(dev, atomic)) {
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200118 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300119 if (err)
120 return err;
121 }
Haggai Erane420f0c2014-12-11 17:04:19 +0200122
Saeed Mahameed938fe832015-05-28 22:28:41 +0300123 if (MLX5_CAP_GEN(dev, roce)) {
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200124 err = mlx5_core_get_caps(dev, MLX5_CAP_ROCE);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300125 if (err)
126 return err;
127 }
128
129 if (MLX5_CAP_GEN(dev, nic_flow_table)) {
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200130 err = mlx5_core_get_caps(dev, MLX5_CAP_FLOW_TABLE);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300131 if (err)
132 return err;
133 }
Saeed Mahameed495716b2015-12-01 18:03:19 +0200134
135 if (MLX5_CAP_GEN(dev, vport_group_manager) &&
136 MLX5_CAP_GEN(dev, eswitch_flow_table)) {
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200137 err = mlx5_core_get_caps(dev, MLX5_CAP_ESWITCH_FLOW_TABLE);
Saeed Mahameed495716b2015-12-01 18:03:19 +0200138 if (err)
139 return err;
140 }
141
Saeed Mahameed9bd0a182015-12-10 17:12:37 +0200142 if (MLX5_CAP_GEN(dev, eswitch_flow_table)) {
Leon Romanovskyb06e7de2016-02-23 10:25:22 +0200143 err = mlx5_core_get_caps(dev, MLX5_CAP_ESWITCH);
Saeed Mahameedd6666752015-12-01 18:03:22 +0200144 if (err)
145 return err;
146 }
147
Sagi Grimberg3f0393a2016-02-23 10:25:23 +0200148 if (MLX5_CAP_GEN(dev, vector_calc)) {
149 err = mlx5_core_get_caps(dev, MLX5_CAP_VECTOR_CALC);
150 if (err)
151 return err;
152 }
153
Yevgeny Petrilin1466cc52016-06-23 17:02:37 +0300154 if (MLX5_CAP_GEN(dev, qos)) {
155 err = mlx5_core_get_caps(dev, MLX5_CAP_QOS);
156 if (err)
157 return err;
158 }
159
Saeed Mahameed938fe832015-05-28 22:28:41 +0300160 return 0;
Haggai Erane420f0c2014-12-11 17:04:19 +0200161}
Haggai Erane420f0c2014-12-11 17:04:19 +0200162
Eli Cohene126ba92013-07-07 17:25:49 +0300163int mlx5_cmd_init_hca(struct mlx5_core_dev *dev)
164{
165 struct mlx5_cmd_init_hca_mbox_in in;
166 struct mlx5_cmd_init_hca_mbox_out out;
167 int err;
168
169 memset(&in, 0, sizeof(in));
170 memset(&out, 0, sizeof(out));
171 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_INIT_HCA);
172 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
173 if (err)
174 return err;
175
176 if (out.hdr.status)
177 err = mlx5_cmd_status_to_err(&out.hdr);
178
179 return err;
180}
181
182int mlx5_cmd_teardown_hca(struct mlx5_core_dev *dev)
183{
184 struct mlx5_cmd_teardown_hca_mbox_in in;
185 struct mlx5_cmd_teardown_hca_mbox_out out;
186 int err;
187
188 memset(&in, 0, sizeof(in));
189 memset(&out, 0, sizeof(out));
190 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_TEARDOWN_HCA);
191 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
192 if (err)
193 return err;
194
195 if (out.hdr.status)
196 err = mlx5_cmd_status_to_err(&out.hdr);
197
198 return err;
199}