]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
net/mlx5: Fix version printout in case of health issue
authorEli Cohen <eli@mellanox.com>
Fri, 16 Dec 2016 16:30:15 +0000 (10:30 -0600)
committerSaeed Mahameed <saeedm@mellanox.com>
Thu, 19 Jan 2017 21:19:52 +0000 (23:19 +0200)
Firmware representation of the firmware version on the health buffer has
changed for newer device. The representation in the initialization
segment does not and will not change. In addition, we print the health
buffer firmware version as a raw hex number.

Signed-off-by: Eli Cohen <eli@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/health.c

index 5bcf93422ee0b28337040138d026c2ab443642a9..d0515391d33bbc57961311f648ed5ef25f457c28 100644 (file)
@@ -231,21 +231,6 @@ static const char *hsynd_str(u8 synd)
        }
 }
 
-static u16 get_maj(u32 fw)
-{
-       return fw >> 28;
-}
-
-static u16 get_min(u32 fw)
-{
-       return fw >> 16 & 0xfff;
-}
-
-static u16 get_sub(u32 fw)
-{
-       return fw & 0xffff;
-}
-
 static void print_health_info(struct mlx5_core_dev *dev)
 {
        struct mlx5_core_health *health = &dev->priv.health;
@@ -263,13 +248,14 @@ static void print_health_info(struct mlx5_core_dev *dev)
 
        dev_err(&dev->pdev->dev, "assert_exit_ptr 0x%08x\n", ioread32be(&h->assert_exit_ptr));
        dev_err(&dev->pdev->dev, "assert_callra 0x%08x\n", ioread32be(&h->assert_callra));
-       fw = ioread32be(&h->fw_ver);
-       sprintf(fw_str, "%d.%d.%d", get_maj(fw), get_min(fw), get_sub(fw));
+       sprintf(fw_str, "%d.%d.%d", fw_rev_maj(dev), fw_rev_min(dev), fw_rev_sub(dev));
        dev_err(&dev->pdev->dev, "fw_ver %s\n", fw_str);
        dev_err(&dev->pdev->dev, "hw_id 0x%08x\n", ioread32be(&h->hw_id));
        dev_err(&dev->pdev->dev, "irisc_index %d\n", ioread8(&h->irisc_index));
        dev_err(&dev->pdev->dev, "synd 0x%x: %s\n", ioread8(&h->synd), hsynd_str(ioread8(&h->synd)));
        dev_err(&dev->pdev->dev, "ext_synd 0x%04x\n", ioread16be(&h->ext_synd));
+       fw = ioread32be(&h->fw_ver);
+       dev_err(&dev->pdev->dev, "raw fw_ver 0x%08x\n", fw);
 }
 
 static unsigned long get_next_poll_jiffies(void)