[Mellanox] Update FW upgrade script to use 'mlxfwmanager -d' option for specifying MST device in FW burn operation (#6541)

**- Why I did it**
Reduce the time it takes for the ASIC FW burn as part of the automatic FW upgrade procedure.

**- How I did it**
Add -d option to mlxfwmanager tool to use the faster MST device and not the default one which is not the fastest one.

**- How to verify it**
I manually changed ASIC FW followed by reboot command in order for FW upgrade to take place on deinit.
I manually changed ASIC FW followed by hard reset in order for FW upgrade to take place on init.

Signed-off-by: liora <liora@nvidia.com>
This commit is contained in:
Lior Avramov 2021-02-04 19:44:16 +02:00 committed by GitHub
parent ed4f8d0262
commit f76926add3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,7 @@ declare -r SPC1_ASIC="spc1"
declare -r SPC2_ASIC="spc2" declare -r SPC2_ASIC="spc2"
declare -r SPC3_ASIC="spc3" declare -r SPC3_ASIC="spc3"
declare -r UNKN_ASIC="unknown" declare -r UNKN_ASIC="unknown"
declare -r UNKN_MST="unknown"
declare -rA FW_FILE_MAP=( \ declare -rA FW_FILE_MAP=( \
[$SPC1_ASIC]="/etc/mlnx/fw-SPC.mfa" \ [$SPC1_ASIC]="/etc/mlnx/fw-SPC.mfa" \
@ -152,6 +153,18 @@ function GetAsicType() {
exit "${EXIT_FAILURE}" exit "${EXIT_FAILURE}"
} }
function GetMstDevice() {
local _MST_DEVICE="$(ls /dev/mst/*_pci_cr0 2>&1)"
if [[ ! -c "${_MST_DEVICE}" ]]; then
echo "${UNKN_MST}"
else
echo "${_MST_DEVICE}"
fi
exit "${EXIT_SUCCESS}"
}
function RunCmd() { function RunCmd() {
local ERROR_CODE="${EXIT_SUCCESS}" local ERROR_CODE="${EXIT_SUCCESS}"
@ -207,7 +220,13 @@ function UpgradeFW() {
ExitSuccess "firmware is up to date" ExitSuccess "firmware is up to date"
else else
LogNotice "firmware upgrade is required. Installing compatible version..." LogNotice "firmware upgrade is required. Installing compatible version..."
RunCmd "${BURN_CMD} -i ${_FW_FILE}" local -r _MST_DEVICE="$(GetMstDevice)"
if [[ "${_MST_DEVICE}" = "${UNKN_MST}" ]]; then
LogWarning "could not find fastest mst device, using default device"
RunCmd "${BURN_CMD} -i ${_FW_FILE}"
else
RunCmd "${BURN_CMD} -d ${_MST_DEVICE} -i ${_FW_FILE}"
fi
fi fi
} }