]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
iwlwifi: incorporate firmware filename into version
authorJohannes Berg <johannes.berg@intel.com>
Thu, 31 Oct 2019 09:28:32 +0000 (10:28 +0100)
committerLuca Coelho <luciano.coelho@intel.com>
Sat, 4 Jan 2020 10:46:14 +0000 (12:46 +0200)
We have many different firmware images with the same version,
and it's sometimes cumbersome to figure out which image was
really used, especially as the marketing strings that we do
print out can be the same for (slightly) different hardware
using different firmware images.

Incorporate the firmware filename into the fw_version so it's
printed out all the time. Unfortunately, this will make the
string be longer than the 32 characters for ethtool, but we
almost never really use ethtool, so strip the "iwlwifi-"
prefix (if not overridden), and the remaining data that may
then be stripped at the end is not usually useful anyway.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/fw/img.h
drivers/net/wireless/intel/iwlwifi/iwl-drv.c

index 994880a83652ab3c77ee3d0f30209d8b93a083b1..90ca5f929cf9bde541a91cc43ce61fc7abbb6f73 100644 (file)
@@ -251,7 +251,7 @@ struct iwl_fw_dbg {
 struct iwl_fw {
        u32 ucode_ver;
 
-       char fw_version[ETHTOOL_FWVERS_LEN];
+       char fw_version[64];
 
        /* ucode images */
        struct fw_img img[IWL_UCODE_TYPE_MAX];
index c6cb5e1a1bd91ba34d9df94c0e4fb9091ac02963..773de0b724be6ef1de09bff3c77c2fc0eec9d2ef 100644 (file)
@@ -493,6 +493,16 @@ static void iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
        }
 }
 
+static const char *iwl_reduced_fw_name(struct iwl_drv *drv)
+{
+       const char *name = drv->firmware_name;
+
+       if (strncmp(name, "iwlwifi-", 8) == 0)
+               name += 8;
+
+       return name;
+}
+
 static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
                                    const struct firmware *ucode_raw,
                                    struct iwl_firmware_pieces *pieces)
@@ -551,12 +561,12 @@ static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
 
        snprintf(drv->fw.fw_version,
                 sizeof(drv->fw.fw_version),
-                "%u.%u.%u.%u%s",
+                "%u.%u.%u.%u%s %s",
                 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
                 IWL_UCODE_MINOR(drv->fw.ucode_ver),
                 IWL_UCODE_API(drv->fw.ucode_ver),
                 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
-                buildstr);
+                buildstr, iwl_reduced_fw_name(drv));
 
        /* Verify size of file vs. image size info in file's header */
 
@@ -636,12 +646,12 @@ static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
 
        snprintf(drv->fw.fw_version,
                 sizeof(drv->fw.fw_version),
-                "%u.%u.%u.%u%s",
+                "%u.%u.%u.%u%s %s",
                 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
                 IWL_UCODE_MINOR(drv->fw.ucode_ver),
                 IWL_UCODE_API(drv->fw.ucode_ver),
                 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
-                buildstr);
+                buildstr, iwl_reduced_fw_name(drv));
 
        data = ucode->data;
 
@@ -895,11 +905,13 @@ static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
                        if (major >= 35)
                                snprintf(drv->fw.fw_version,
                                         sizeof(drv->fw.fw_version),
-                                       "%u.%08x.%u", major, minor, local_comp);
+                                       "%u.%08x.%u %s", major, minor,
+                                       local_comp, iwl_reduced_fw_name(drv));
                        else
                                snprintf(drv->fw.fw_version,
                                         sizeof(drv->fw.fw_version),
-                                       "%u.%u.%u", major, minor, local_comp);
+                                       "%u.%u.%u %s", major, minor,
+                                       local_comp, iwl_reduced_fw_name(drv));
                        break;
                        }
                case IWL_UCODE_TLV_FW_DBG_DEST: {