2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <linux/mlx5/driver.h>
34 #include <linux/mlx5/cmd.h>
35 #include <linux/mlx5/eswitch.h>
36 #include <linux/module.h>
37 #include "mlx5_core.h"
38 #include "../../mlxfw/mlxfw.h"
41 MCQS_IDENTIFIER_BOOT_IMG = 0x1,
42 MCQS_IDENTIFIER_OEM_NVCONFIG = 0x4,
43 MCQS_IDENTIFIER_MLNX_NVCONFIG = 0x5,
44 MCQS_IDENTIFIER_CS_TOKEN = 0x6,
45 MCQS_IDENTIFIER_DBG_TOKEN = 0x7,
46 MCQS_IDENTIFIER_GEARBOX = 0xA,
50 MCQS_UPDATE_STATE_IDLE,
51 MCQS_UPDATE_STATE_IN_PROGRESS,
52 MCQS_UPDATE_STATE_APPLIED,
53 MCQS_UPDATE_STATE_ACTIVE,
54 MCQS_UPDATE_STATE_ACTIVE_PENDING_RESET,
55 MCQS_UPDATE_STATE_FAILED,
56 MCQS_UPDATE_STATE_CANCELED,
57 MCQS_UPDATE_STATE_BUSY,
61 MCQI_INFO_TYPE_CAPABILITIES = 0x0,
62 MCQI_INFO_TYPE_VERSION = 0x1,
63 MCQI_INFO_TYPE_ACTIVATION_METHOD = 0x5,
67 MCQI_FW_RUNNING_VERSION = 0,
68 MCQI_FW_STORED_VERSION = 1,
71 static int mlx5_cmd_query_adapter(struct mlx5_core_dev *dev, u32 *out,
74 u32 in[MLX5_ST_SZ_DW(query_adapter_in)] = {0};
76 MLX5_SET(query_adapter_in, in, opcode, MLX5_CMD_OP_QUERY_ADAPTER);
77 return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
80 int mlx5_query_board_id(struct mlx5_core_dev *dev)
83 int outlen = MLX5_ST_SZ_BYTES(query_adapter_out);
86 out = kzalloc(outlen, GFP_KERNEL);
90 err = mlx5_cmd_query_adapter(dev, out, outlen);
95 MLX5_ADDR_OF(query_adapter_out, out,
96 query_adapter_struct.vsd_contd_psid),
97 MLX5_FLD_SZ_BYTES(query_adapter_out,
98 query_adapter_struct.vsd_contd_psid));
105 int mlx5_core_query_vendor_id(struct mlx5_core_dev *mdev, u32 *vendor_id)
108 int outlen = MLX5_ST_SZ_BYTES(query_adapter_out);
111 out = kzalloc(outlen, GFP_KERNEL);
115 err = mlx5_cmd_query_adapter(mdev, out, outlen);
119 *vendor_id = MLX5_GET(query_adapter_out, out,
120 query_adapter_struct.ieee_vendor_id);
125 EXPORT_SYMBOL(mlx5_core_query_vendor_id);
127 static int mlx5_get_pcam_reg(struct mlx5_core_dev *dev)
129 return mlx5_query_pcam_reg(dev, dev->caps.pcam,
130 MLX5_PCAM_FEATURE_ENHANCED_FEATURES,
131 MLX5_PCAM_REGS_5000_TO_507F);
134 static int mlx5_get_mcam_access_reg_group(struct mlx5_core_dev *dev,
135 enum mlx5_mcam_reg_groups group)
137 return mlx5_query_mcam_reg(dev, dev->caps.mcam[group],
138 MLX5_MCAM_FEATURE_ENHANCED_FEATURES, group);
141 static int mlx5_get_qcam_reg(struct mlx5_core_dev *dev)
143 return mlx5_query_qcam_reg(dev, dev->caps.qcam,
144 MLX5_QCAM_FEATURE_ENHANCED_FEATURES,
145 MLX5_QCAM_REGS_FIRST_128);
148 int mlx5_query_hca_caps(struct mlx5_core_dev *dev)
152 err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL);
156 if (MLX5_CAP_GEN(dev, eth_net_offloads)) {
157 err = mlx5_core_get_caps(dev, MLX5_CAP_ETHERNET_OFFLOADS);
162 if (MLX5_CAP_GEN(dev, ipoib_enhanced_offloads)) {
163 err = mlx5_core_get_caps(dev, MLX5_CAP_IPOIB_ENHANCED_OFFLOADS);
168 if (MLX5_CAP_GEN(dev, pg)) {
169 err = mlx5_core_get_caps(dev, MLX5_CAP_ODP);
174 if (MLX5_CAP_GEN(dev, atomic)) {
175 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC);
180 if (MLX5_CAP_GEN(dev, roce)) {
181 err = mlx5_core_get_caps(dev, MLX5_CAP_ROCE);
186 if (MLX5_CAP_GEN(dev, nic_flow_table) ||
187 MLX5_CAP_GEN(dev, ipoib_enhanced_offloads)) {
188 err = mlx5_core_get_caps(dev, MLX5_CAP_FLOW_TABLE);
193 if (MLX5_CAP_GEN(dev, vport_group_manager) &&
194 MLX5_ESWITCH_MANAGER(dev)) {
195 err = mlx5_core_get_caps(dev, MLX5_CAP_ESWITCH_FLOW_TABLE);
200 if (MLX5_ESWITCH_MANAGER(dev)) {
201 err = mlx5_core_get_caps(dev, MLX5_CAP_ESWITCH);
206 if (MLX5_CAP_GEN(dev, vector_calc)) {
207 err = mlx5_core_get_caps(dev, MLX5_CAP_VECTOR_CALC);
212 if (MLX5_CAP_GEN(dev, qos)) {
213 err = mlx5_core_get_caps(dev, MLX5_CAP_QOS);
218 if (MLX5_CAP_GEN(dev, debug))
219 mlx5_core_get_caps(dev, MLX5_CAP_DEBUG);
221 if (MLX5_CAP_GEN(dev, pcam_reg))
222 mlx5_get_pcam_reg(dev);
224 if (MLX5_CAP_GEN(dev, mcam_reg)) {
225 mlx5_get_mcam_access_reg_group(dev, MLX5_MCAM_REGS_FIRST_128);
226 mlx5_get_mcam_access_reg_group(dev, MLX5_MCAM_REGS_0x9080_0x90FF);
227 mlx5_get_mcam_access_reg_group(dev, MLX5_MCAM_REGS_0x9100_0x917F);
230 if (MLX5_CAP_GEN(dev, qcam_reg))
231 mlx5_get_qcam_reg(dev);
233 if (MLX5_CAP_GEN(dev, device_memory)) {
234 err = mlx5_core_get_caps(dev, MLX5_CAP_DEV_MEM);
239 if (MLX5_CAP_GEN(dev, event_cap)) {
240 err = mlx5_core_get_caps(dev, MLX5_CAP_DEV_EVENT);
245 if (MLX5_CAP_GEN(dev, tls_tx)) {
246 err = mlx5_core_get_caps(dev, MLX5_CAP_TLS);
251 if (MLX5_CAP_GEN_64(dev, general_obj_types) &
252 MLX5_GENERAL_OBJ_TYPES_CAP_VIRTIO_NET_Q) {
253 err = mlx5_core_get_caps(dev, MLX5_CAP_VDPA_EMULATION);
261 int mlx5_cmd_init_hca(struct mlx5_core_dev *dev, uint32_t *sw_owner_id)
263 u32 out[MLX5_ST_SZ_DW(init_hca_out)] = {0};
264 u32 in[MLX5_ST_SZ_DW(init_hca_in)] = {0};
267 MLX5_SET(init_hca_in, in, opcode, MLX5_CMD_OP_INIT_HCA);
269 if (MLX5_CAP_GEN(dev, sw_owner_id)) {
270 for (i = 0; i < 4; i++)
271 MLX5_ARRAY_SET(init_hca_in, in, sw_owner_id, i,
275 return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
278 int mlx5_cmd_teardown_hca(struct mlx5_core_dev *dev)
280 u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {0};
281 u32 in[MLX5_ST_SZ_DW(teardown_hca_in)] = {0};
283 MLX5_SET(teardown_hca_in, in, opcode, MLX5_CMD_OP_TEARDOWN_HCA);
284 return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
287 int mlx5_cmd_force_teardown_hca(struct mlx5_core_dev *dev)
289 u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {0};
290 u32 in[MLX5_ST_SZ_DW(teardown_hca_in)] = {0};
294 if (!MLX5_CAP_GEN(dev, force_teardown)) {
295 mlx5_core_dbg(dev, "force teardown is not supported in the firmware\n");
299 MLX5_SET(teardown_hca_in, in, opcode, MLX5_CMD_OP_TEARDOWN_HCA);
300 MLX5_SET(teardown_hca_in, in, profile, MLX5_TEARDOWN_HCA_IN_PROFILE_FORCE_CLOSE);
302 ret = mlx5_cmd_exec_polling(dev, in, sizeof(in), out, sizeof(out));
306 force_state = MLX5_GET(teardown_hca_out, out, state);
307 if (force_state == MLX5_TEARDOWN_HCA_OUT_FORCE_STATE_FAIL) {
308 mlx5_core_warn(dev, "teardown with force mode failed, doing normal teardown\n");
315 #define MLX5_FAST_TEARDOWN_WAIT_MS 3000
316 int mlx5_cmd_fast_teardown_hca(struct mlx5_core_dev *dev)
318 unsigned long end, delay_ms = MLX5_FAST_TEARDOWN_WAIT_MS;
319 u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {0};
320 u32 in[MLX5_ST_SZ_DW(teardown_hca_in)] = {0};
324 if (!MLX5_CAP_GEN(dev, fast_teardown)) {
325 mlx5_core_dbg(dev, "fast teardown is not supported in the firmware\n");
329 MLX5_SET(teardown_hca_in, in, opcode, MLX5_CMD_OP_TEARDOWN_HCA);
330 MLX5_SET(teardown_hca_in, in, profile,
331 MLX5_TEARDOWN_HCA_IN_PROFILE_PREPARE_FAST_TEARDOWN);
333 ret = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
337 state = MLX5_GET(teardown_hca_out, out, state);
338 if (state == MLX5_TEARDOWN_HCA_OUT_FORCE_STATE_FAIL) {
339 mlx5_core_warn(dev, "teardown with fast mode failed\n");
343 mlx5_set_nic_state(dev, MLX5_NIC_IFC_DISABLED);
345 /* Loop until device state turns to disable */
346 end = jiffies + msecs_to_jiffies(delay_ms);
348 if (mlx5_get_nic_state(dev) == MLX5_NIC_IFC_DISABLED)
352 } while (!time_after(jiffies, end));
354 if (mlx5_get_nic_state(dev) != MLX5_NIC_IFC_DISABLED) {
355 dev_err(&dev->pdev->dev, "NIC IFC still %d after %lums.\n",
356 mlx5_get_nic_state(dev), delay_ms);
363 enum mlxsw_reg_mcc_instruction {
364 MLX5_REG_MCC_INSTRUCTION_LOCK_UPDATE_HANDLE = 0x01,
365 MLX5_REG_MCC_INSTRUCTION_RELEASE_UPDATE_HANDLE = 0x02,
366 MLX5_REG_MCC_INSTRUCTION_UPDATE_COMPONENT = 0x03,
367 MLX5_REG_MCC_INSTRUCTION_VERIFY_COMPONENT = 0x04,
368 MLX5_REG_MCC_INSTRUCTION_ACTIVATE = 0x06,
369 MLX5_REG_MCC_INSTRUCTION_CANCEL = 0x08,
372 static int mlx5_reg_mcc_set(struct mlx5_core_dev *dev,
373 enum mlxsw_reg_mcc_instruction instr,
374 u16 component_index, u32 update_handle,
377 u32 out[MLX5_ST_SZ_DW(mcc_reg)];
378 u32 in[MLX5_ST_SZ_DW(mcc_reg)];
380 memset(in, 0, sizeof(in));
382 MLX5_SET(mcc_reg, in, instruction, instr);
383 MLX5_SET(mcc_reg, in, component_index, component_index);
384 MLX5_SET(mcc_reg, in, update_handle, update_handle);
385 MLX5_SET(mcc_reg, in, component_size, component_size);
387 return mlx5_core_access_reg(dev, in, sizeof(in), out,
388 sizeof(out), MLX5_REG_MCC, 0, 1);
391 static int mlx5_reg_mcc_query(struct mlx5_core_dev *dev,
392 u32 *update_handle, u8 *error_code,
395 u32 out[MLX5_ST_SZ_DW(mcc_reg)];
396 u32 in[MLX5_ST_SZ_DW(mcc_reg)];
399 memset(in, 0, sizeof(in));
400 memset(out, 0, sizeof(out));
401 MLX5_SET(mcc_reg, in, update_handle, *update_handle);
403 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
404 sizeof(out), MLX5_REG_MCC, 0, 0);
408 *update_handle = MLX5_GET(mcc_reg, out, update_handle);
409 *error_code = MLX5_GET(mcc_reg, out, error_code);
410 *control_state = MLX5_GET(mcc_reg, out, control_state);
416 static int mlx5_reg_mcda_set(struct mlx5_core_dev *dev,
418 u32 offset, u16 size,
421 int err, in_size = MLX5_ST_SZ_BYTES(mcda_reg) + size;
422 u32 out[MLX5_ST_SZ_DW(mcda_reg)];
423 int i, j, dw_size = size >> 2;
427 in = kzalloc(in_size, GFP_KERNEL);
431 MLX5_SET(mcda_reg, in, update_handle, update_handle);
432 MLX5_SET(mcda_reg, in, offset, offset);
433 MLX5_SET(mcda_reg, in, size, size);
435 for (i = 0; i < dw_size; i++) {
437 data_element = htonl(*(u32 *)&data[j]);
438 memcpy(MLX5_ADDR_OF(mcda_reg, in, data) + j, &data_element, 4);
441 err = mlx5_core_access_reg(dev, in, in_size, out,
442 sizeof(out), MLX5_REG_MCDA, 0, 1);
447 static int mlx5_reg_mcqi_query(struct mlx5_core_dev *dev,
448 u16 component_index, bool read_pending,
449 u8 info_type, u16 data_size, void *mcqi_data)
451 u32 out[MLX5_ST_SZ_DW(mcqi_reg) + MLX5_UN_SZ_DW(mcqi_reg_data)] = {};
452 u32 in[MLX5_ST_SZ_DW(mcqi_reg)] = {};
456 MLX5_SET(mcqi_reg, in, component_index, component_index);
457 MLX5_SET(mcqi_reg, in, read_pending_component, read_pending);
458 MLX5_SET(mcqi_reg, in, info_type, info_type);
459 MLX5_SET(mcqi_reg, in, data_size, data_size);
461 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
462 MLX5_ST_SZ_BYTES(mcqi_reg) + data_size,
463 MLX5_REG_MCQI, 0, 0);
467 data = MLX5_ADDR_OF(mcqi_reg, out, data);
468 memcpy(mcqi_data, data, data_size);
473 static int mlx5_reg_mcqi_caps_query(struct mlx5_core_dev *dev, u16 component_index,
474 u32 *max_component_size, u8 *log_mcda_word_size,
475 u16 *mcda_max_write_size)
477 u32 mcqi_reg[MLX5_ST_SZ_DW(mcqi_cap)] = {};
480 err = mlx5_reg_mcqi_query(dev, component_index, 0,
481 MCQI_INFO_TYPE_CAPABILITIES,
482 MLX5_ST_SZ_BYTES(mcqi_cap), mcqi_reg);
486 *max_component_size = MLX5_GET(mcqi_cap, mcqi_reg, max_component_size);
487 *log_mcda_word_size = MLX5_GET(mcqi_cap, mcqi_reg, log_mcda_word_size);
488 *mcda_max_write_size = MLX5_GET(mcqi_cap, mcqi_reg, mcda_max_write_size);
493 struct mlx5_mlxfw_dev {
494 struct mlxfw_dev mlxfw_dev;
495 struct mlx5_core_dev *mlx5_core_dev;
498 static int mlx5_component_query(struct mlxfw_dev *mlxfw_dev,
499 u16 component_index, u32 *p_max_size,
500 u8 *p_align_bits, u16 *p_max_write_size)
502 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
503 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
504 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
506 if (!MLX5_CAP_GEN(dev, mcam_reg) || !MLX5_CAP_MCAM_REG(dev, mcqi)) {
507 mlx5_core_warn(dev, "caps query isn't supported by running FW\n");
511 return mlx5_reg_mcqi_caps_query(dev, component_index, p_max_size,
512 p_align_bits, p_max_write_size);
515 static int mlx5_fsm_lock(struct mlxfw_dev *mlxfw_dev, u32 *fwhandle)
517 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
518 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
519 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
520 u8 control_state, error_code;
524 err = mlx5_reg_mcc_query(dev, fwhandle, &error_code, &control_state);
528 if (control_state != MLXFW_FSM_STATE_IDLE)
531 return mlx5_reg_mcc_set(dev, MLX5_REG_MCC_INSTRUCTION_LOCK_UPDATE_HANDLE,
535 static int mlx5_fsm_component_update(struct mlxfw_dev *mlxfw_dev, u32 fwhandle,
536 u16 component_index, u32 component_size)
538 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
539 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
540 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
542 return mlx5_reg_mcc_set(dev, MLX5_REG_MCC_INSTRUCTION_UPDATE_COMPONENT,
543 component_index, fwhandle, component_size);
546 static int mlx5_fsm_block_download(struct mlxfw_dev *mlxfw_dev, u32 fwhandle,
547 u8 *data, u16 size, u32 offset)
549 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
550 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
551 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
553 return mlx5_reg_mcda_set(dev, fwhandle, offset, size, data);
556 static int mlx5_fsm_component_verify(struct mlxfw_dev *mlxfw_dev, u32 fwhandle,
559 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
560 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
561 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
563 return mlx5_reg_mcc_set(dev, MLX5_REG_MCC_INSTRUCTION_VERIFY_COMPONENT,
564 component_index, fwhandle, 0);
567 static int mlx5_fsm_activate(struct mlxfw_dev *mlxfw_dev, u32 fwhandle)
569 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
570 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
571 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
573 return mlx5_reg_mcc_set(dev, MLX5_REG_MCC_INSTRUCTION_ACTIVATE, 0,
577 static int mlx5_fsm_query_state(struct mlxfw_dev *mlxfw_dev, u32 fwhandle,
578 enum mlxfw_fsm_state *fsm_state,
579 enum mlxfw_fsm_state_err *fsm_state_err)
581 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
582 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
583 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
584 u8 control_state, error_code;
587 err = mlx5_reg_mcc_query(dev, &fwhandle, &error_code, &control_state);
591 *fsm_state = control_state;
592 *fsm_state_err = min_t(enum mlxfw_fsm_state_err, error_code,
593 MLXFW_FSM_STATE_ERR_MAX);
597 static void mlx5_fsm_cancel(struct mlxfw_dev *mlxfw_dev, u32 fwhandle)
599 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
600 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
601 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
603 mlx5_reg_mcc_set(dev, MLX5_REG_MCC_INSTRUCTION_CANCEL, 0, fwhandle, 0);
606 static void mlx5_fsm_release(struct mlxfw_dev *mlxfw_dev, u32 fwhandle)
608 struct mlx5_mlxfw_dev *mlx5_mlxfw_dev =
609 container_of(mlxfw_dev, struct mlx5_mlxfw_dev, mlxfw_dev);
610 struct mlx5_core_dev *dev = mlx5_mlxfw_dev->mlx5_core_dev;
612 mlx5_reg_mcc_set(dev, MLX5_REG_MCC_INSTRUCTION_RELEASE_UPDATE_HANDLE, 0,
616 static const struct mlxfw_dev_ops mlx5_mlxfw_dev_ops = {
617 .component_query = mlx5_component_query,
618 .fsm_lock = mlx5_fsm_lock,
619 .fsm_component_update = mlx5_fsm_component_update,
620 .fsm_block_download = mlx5_fsm_block_download,
621 .fsm_component_verify = mlx5_fsm_component_verify,
622 .fsm_activate = mlx5_fsm_activate,
623 .fsm_query_state = mlx5_fsm_query_state,
624 .fsm_cancel = mlx5_fsm_cancel,
625 .fsm_release = mlx5_fsm_release
628 int mlx5_firmware_flash(struct mlx5_core_dev *dev,
629 const struct firmware *firmware,
630 struct netlink_ext_ack *extack)
632 struct mlx5_mlxfw_dev mlx5_mlxfw_dev = {
634 .ops = &mlx5_mlxfw_dev_ops,
635 .psid = dev->board_id,
636 .psid_size = strlen(dev->board_id),
641 if (!MLX5_CAP_GEN(dev, mcam_reg) ||
642 !MLX5_CAP_MCAM_REG(dev, mcqi) ||
643 !MLX5_CAP_MCAM_REG(dev, mcc) ||
644 !MLX5_CAP_MCAM_REG(dev, mcda)) {
645 pr_info("%s flashing isn't supported by the running FW\n", __func__);
649 return mlxfw_firmware_flash(&mlx5_mlxfw_dev.mlxfw_dev,
653 static int mlx5_reg_mcqi_version_query(struct mlx5_core_dev *dev,
654 u16 component_index, bool read_pending,
655 u32 *mcqi_version_out)
657 return mlx5_reg_mcqi_query(dev, component_index, read_pending,
658 MCQI_INFO_TYPE_VERSION,
659 MLX5_ST_SZ_BYTES(mcqi_version),
663 static int mlx5_reg_mcqs_query(struct mlx5_core_dev *dev, u32 *out,
666 u8 out_sz = MLX5_ST_SZ_BYTES(mcqs_reg);
667 u32 in[MLX5_ST_SZ_DW(mcqs_reg)] = {};
670 memset(out, 0, out_sz);
672 MLX5_SET(mcqs_reg, in, component_index, component_index);
674 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
675 out_sz, MLX5_REG_MCQS, 0, 0);
679 /* scans component index sequentially, to find the boot img index */
680 static int mlx5_get_boot_img_component_index(struct mlx5_core_dev *dev)
682 u32 out[MLX5_ST_SZ_DW(mcqs_reg)] = {};
683 u16 identifier, component_idx = 0;
688 err = mlx5_reg_mcqs_query(dev, out, component_idx);
692 identifier = MLX5_GET(mcqs_reg, out, identifier);
693 quit = !!MLX5_GET(mcqs_reg, out, last_index_flag);
694 quit |= identifier == MCQS_IDENTIFIER_BOOT_IMG;
695 } while (!quit && ++component_idx);
697 if (identifier != MCQS_IDENTIFIER_BOOT_IMG) {
698 mlx5_core_warn(dev, "mcqs: can't find boot_img component ix, last scanned idx %d\n",
703 return component_idx;
707 mlx5_fw_image_pending(struct mlx5_core_dev *dev,
709 bool *pending_version_exists)
711 u32 out[MLX5_ST_SZ_DW(mcqs_reg)];
712 u8 component_update_state;
715 err = mlx5_reg_mcqs_query(dev, out, component_index);
719 component_update_state = MLX5_GET(mcqs_reg, out, component_update_state);
721 if (component_update_state == MCQS_UPDATE_STATE_IDLE) {
722 *pending_version_exists = false;
723 } else if (component_update_state == MCQS_UPDATE_STATE_ACTIVE_PENDING_RESET) {
724 *pending_version_exists = true;
727 "mcqs: can't read pending fw version while fw state is %d\n",
728 component_update_state);
734 int mlx5_fw_version_query(struct mlx5_core_dev *dev,
735 u32 *running_ver, u32 *pending_ver)
737 u32 reg_mcqi_version[MLX5_ST_SZ_DW(mcqi_version)] = {};
738 bool pending_version_exists;
742 if (!MLX5_CAP_GEN(dev, mcam_reg) || !MLX5_CAP_MCAM_REG(dev, mcqi) ||
743 !MLX5_CAP_MCAM_REG(dev, mcqs)) {
744 mlx5_core_warn(dev, "fw query isn't supported by the FW\n");
748 component_index = mlx5_get_boot_img_component_index(dev);
749 if (component_index < 0)
750 return component_index;
752 err = mlx5_reg_mcqi_version_query(dev, component_index,
753 MCQI_FW_RUNNING_VERSION,
758 *running_ver = MLX5_GET(mcqi_version, reg_mcqi_version, version);
760 err = mlx5_fw_image_pending(dev, component_index, &pending_version_exists);
764 if (!pending_version_exists) {
769 err = mlx5_reg_mcqi_version_query(dev, component_index,
770 MCQI_FW_STORED_VERSION,
775 *pending_ver = MLX5_GET(mcqi_version, reg_mcqi_version, version);