]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/net/ethernet/mellanox/mlx5/core/fw.c
net/mlx5: Add helper functions to set/query MCC/MCDA/MCQI registers
[linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / fw.c
1 /*
2  * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
3  *
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
38 static int mlx5_cmd_query_adapter(struct mlx5_core_dev *dev, u32 *out,
39                                   int outlen)
40 {
41         u32 in[MLX5_ST_SZ_DW(query_adapter_in)] = {0};
42
43         MLX5_SET(query_adapter_in, in, opcode, MLX5_CMD_OP_QUERY_ADAPTER);
44         return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
45 }
46
47 int mlx5_query_board_id(struct mlx5_core_dev *dev)
48 {
49         u32 *out;
50         int outlen = MLX5_ST_SZ_BYTES(query_adapter_out);
51         int err;
52
53         out = kzalloc(outlen, GFP_KERNEL);
54         if (!out)
55                 return -ENOMEM;
56
57         err = mlx5_cmd_query_adapter(dev, out, outlen);
58         if (err)
59                 goto out;
60
61         memcpy(dev->board_id,
62                MLX5_ADDR_OF(query_adapter_out, out,
63                             query_adapter_struct.vsd_contd_psid),
64                MLX5_FLD_SZ_BYTES(query_adapter_out,
65                                  query_adapter_struct.vsd_contd_psid));
66
67 out:
68         kfree(out);
69         return err;
70 }
71
72 int mlx5_core_query_vendor_id(struct mlx5_core_dev *mdev, u32 *vendor_id)
73 {
74         u32 *out;
75         int outlen = MLX5_ST_SZ_BYTES(query_adapter_out);
76         int err;
77
78         out = kzalloc(outlen, GFP_KERNEL);
79         if (!out)
80                 return -ENOMEM;
81
82         err = mlx5_cmd_query_adapter(mdev, out, outlen);
83         if (err)
84                 goto out;
85
86         *vendor_id = MLX5_GET(query_adapter_out, out,
87                               query_adapter_struct.ieee_vendor_id);
88 out:
89         kfree(out);
90         return err;
91 }
92 EXPORT_SYMBOL(mlx5_core_query_vendor_id);
93
94 static int mlx5_get_pcam_reg(struct mlx5_core_dev *dev)
95 {
96         return mlx5_query_pcam_reg(dev, dev->caps.pcam,
97                                    MLX5_PCAM_FEATURE_ENHANCED_FEATURES,
98                                    MLX5_PCAM_REGS_5000_TO_507F);
99 }
100
101 static int mlx5_get_mcam_reg(struct mlx5_core_dev *dev)
102 {
103         return mlx5_query_mcam_reg(dev, dev->caps.mcam,
104                                    MLX5_MCAM_FEATURE_ENHANCED_FEATURES,
105                                    MLX5_MCAM_REGS_FIRST_128);
106 }
107
108 int mlx5_query_hca_caps(struct mlx5_core_dev *dev)
109 {
110         int err;
111
112         err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL);
113         if (err)
114                 return err;
115
116         if (MLX5_CAP_GEN(dev, eth_net_offloads)) {
117                 err = mlx5_core_get_caps(dev, MLX5_CAP_ETHERNET_OFFLOADS);
118                 if (err)
119                         return err;
120         }
121
122         if (MLX5_CAP_GEN(dev, pg)) {
123                 err = mlx5_core_get_caps(dev, MLX5_CAP_ODP);
124                 if (err)
125                         return err;
126         }
127
128         if (MLX5_CAP_GEN(dev, atomic)) {
129                 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC);
130                 if (err)
131                         return err;
132         }
133
134         if (MLX5_CAP_GEN(dev, roce)) {
135                 err = mlx5_core_get_caps(dev, MLX5_CAP_ROCE);
136                 if (err)
137                         return err;
138         }
139
140         if (MLX5_CAP_GEN(dev, nic_flow_table) ||
141             MLX5_CAP_GEN(dev, ipoib_enhanced_offloads)) {
142                 err = mlx5_core_get_caps(dev, MLX5_CAP_FLOW_TABLE);
143                 if (err)
144                         return err;
145         }
146
147         if (MLX5_CAP_GEN(dev, vport_group_manager) &&
148             MLX5_CAP_GEN(dev, eswitch_flow_table)) {
149                 err = mlx5_core_get_caps(dev, MLX5_CAP_ESWITCH_FLOW_TABLE);
150                 if (err)
151                         return err;
152         }
153
154         if (MLX5_CAP_GEN(dev, eswitch_flow_table)) {
155                 err = mlx5_core_get_caps(dev, MLX5_CAP_ESWITCH);
156                 if (err)
157                         return err;
158         }
159
160         if (MLX5_CAP_GEN(dev, vector_calc)) {
161                 err = mlx5_core_get_caps(dev, MLX5_CAP_VECTOR_CALC);
162                 if (err)
163                         return err;
164         }
165
166         if (MLX5_CAP_GEN(dev, qos)) {
167                 err = mlx5_core_get_caps(dev, MLX5_CAP_QOS);
168                 if (err)
169                         return err;
170         }
171
172         if (MLX5_CAP_GEN(dev, pcam_reg))
173                 mlx5_get_pcam_reg(dev);
174
175         if (MLX5_CAP_GEN(dev, mcam_reg))
176                 mlx5_get_mcam_reg(dev);
177
178         return 0;
179 }
180
181 int mlx5_cmd_init_hca(struct mlx5_core_dev *dev)
182 {
183         u32 out[MLX5_ST_SZ_DW(init_hca_out)] = {0};
184         u32 in[MLX5_ST_SZ_DW(init_hca_in)]   = {0};
185
186         MLX5_SET(init_hca_in, in, opcode, MLX5_CMD_OP_INIT_HCA);
187         return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
188 }
189
190 int mlx5_cmd_teardown_hca(struct mlx5_core_dev *dev)
191 {
192         u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {0};
193         u32 in[MLX5_ST_SZ_DW(teardown_hca_in)]   = {0};
194
195         MLX5_SET(teardown_hca_in, in, opcode, MLX5_CMD_OP_TEARDOWN_HCA);
196         return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
197 }
198
199 int mlx5_cmd_force_teardown_hca(struct mlx5_core_dev *dev)
200 {
201         u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {0};
202         u32 in[MLX5_ST_SZ_DW(teardown_hca_in)] = {0};
203         int force_state;
204         int ret;
205
206         if (!MLX5_CAP_GEN(dev, force_teardown)) {
207                 mlx5_core_dbg(dev, "force teardown is not supported in the firmware\n");
208                 return -EOPNOTSUPP;
209         }
210
211         MLX5_SET(teardown_hca_in, in, opcode, MLX5_CMD_OP_TEARDOWN_HCA);
212         MLX5_SET(teardown_hca_in, in, profile, MLX5_TEARDOWN_HCA_IN_PROFILE_FORCE_CLOSE);
213
214         ret = mlx5_cmd_exec_polling(dev, in, sizeof(in), out, sizeof(out));
215         if (ret)
216                 return ret;
217
218         force_state = MLX5_GET(teardown_hca_out, out, force_state);
219         if (force_state == MLX5_TEARDOWN_HCA_OUT_FORCE_STATE_FAIL) {
220                 mlx5_core_err(dev, "teardown with force mode failed\n");
221                 return -EIO;
222         }
223
224         return 0;
225 }
226
227 enum mlxsw_reg_mcc_instruction {
228         MLX5_REG_MCC_INSTRUCTION_LOCK_UPDATE_HANDLE = 0x01,
229         MLX5_REG_MCC_INSTRUCTION_RELEASE_UPDATE_HANDLE = 0x02,
230         MLX5_REG_MCC_INSTRUCTION_UPDATE_COMPONENT = 0x03,
231         MLX5_REG_MCC_INSTRUCTION_VERIFY_COMPONENT = 0x04,
232         MLX5_REG_MCC_INSTRUCTION_ACTIVATE = 0x06,
233         MLX5_REG_MCC_INSTRUCTION_CANCEL = 0x08,
234 };
235
236 static int mlx5_reg_mcc_set(struct mlx5_core_dev *dev,
237                             enum mlxsw_reg_mcc_instruction instr,
238                             u16 component_index, u32 update_handle,
239                             u32 component_size)
240 {
241         u32 out[MLX5_ST_SZ_DW(mcc_reg)];
242         u32 in[MLX5_ST_SZ_DW(mcc_reg)];
243
244         memset(in, 0, sizeof(in));
245
246         MLX5_SET(mcc_reg, in, instruction, instr);
247         MLX5_SET(mcc_reg, in, component_index, component_index);
248         MLX5_SET(mcc_reg, in, update_handle, update_handle);
249         MLX5_SET(mcc_reg, in, component_size, component_size);
250
251         return mlx5_core_access_reg(dev, in, sizeof(in), out,
252                                     sizeof(out), MLX5_REG_MCC, 0, 1);
253 }
254
255 static int mlx5_reg_mcc_query(struct mlx5_core_dev *dev,
256                               u32 *update_handle, u8 *error_code,
257                               u8 *control_state)
258 {
259         u32 out[MLX5_ST_SZ_DW(mcc_reg)];
260         u32 in[MLX5_ST_SZ_DW(mcc_reg)];
261         int err;
262
263         memset(in, 0, sizeof(in));
264         memset(out, 0, sizeof(out));
265         MLX5_SET(mcc_reg, in, update_handle, *update_handle);
266
267         err = mlx5_core_access_reg(dev, in, sizeof(in), out,
268                                    sizeof(out), MLX5_REG_MCC, 0, 0);
269         if (err)
270                 goto out;
271
272         *update_handle = MLX5_GET(mcc_reg, out, update_handle);
273         *error_code = MLX5_GET(mcc_reg, out, error_code);
274         *control_state = MLX5_GET(mcc_reg, out, control_state);
275
276 out:
277         return err;
278 }
279
280 static int mlx5_reg_mcda_set(struct mlx5_core_dev *dev,
281                              u32 update_handle,
282                              u32 offset, u16 size,
283                              u8 *data)
284 {
285         int err, in_size = MLX5_ST_SZ_BYTES(mcda_reg) + size;
286         u32 out[MLX5_ST_SZ_DW(mcda_reg)];
287         int i, j, dw_size = size >> 2;
288         __be32 data_element;
289         u32 *in;
290
291         in = kzalloc(in_size, GFP_KERNEL);
292         if (!in)
293                 return -ENOMEM;
294
295         MLX5_SET(mcda_reg, in, update_handle, update_handle);
296         MLX5_SET(mcda_reg, in, offset, offset);
297         MLX5_SET(mcda_reg, in, size, size);
298
299         for (i = 0; i < dw_size; i++) {
300                 j = i * 4;
301                 data_element = htonl(*(u32 *)&data[j]);
302                 memcpy(MLX5_ADDR_OF(mcda_reg, in, data) + j, &data_element, 4);
303         }
304
305         err = mlx5_core_access_reg(dev, in, in_size, out,
306                                    sizeof(out), MLX5_REG_MCDA, 0, 1);
307         kfree(in);
308         return err;
309 }
310
311 static int mlx5_reg_mcqi_query(struct mlx5_core_dev *dev,
312                                u16 component_index,
313                                u32 *max_component_size,
314                                u8 *log_mcda_word_size,
315                                u16 *mcda_max_write_size)
316 {
317         u32 out[MLX5_ST_SZ_DW(mcqi_reg) + MLX5_ST_SZ_DW(mcqi_cap)];
318         int offset = MLX5_ST_SZ_DW(mcqi_reg);
319         u32 in[MLX5_ST_SZ_DW(mcqi_reg)];
320         int err;
321
322         memset(in, 0, sizeof(in));
323         memset(out, 0, sizeof(out));
324
325         MLX5_SET(mcqi_reg, in, component_index, component_index);
326         MLX5_SET(mcqi_reg, in, data_size, MLX5_ST_SZ_BYTES(mcqi_cap));
327
328         err = mlx5_core_access_reg(dev, in, sizeof(in), out,
329                                    sizeof(out), MLX5_REG_MCQI, 0, 0);
330         if (err)
331                 goto out;
332
333         *max_component_size = MLX5_GET(mcqi_cap, out + offset, max_component_size);
334         *log_mcda_word_size = MLX5_GET(mcqi_cap, out + offset, log_mcda_word_size);
335         *mcda_max_write_size = MLX5_GET(mcqi_cap, out + offset, mcda_max_write_size);
336
337 out:
338         return err;
339 }