igc: Add NVM checksum validation
authorSasha Neftin <sasha.neftin@intel.com>
Wed, 24 Jul 2019 07:05:46 +0000 (10:05 +0300)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Mon, 9 Sep 2019 17:08:38 +0000 (10:08 -0700)
Add NVM checksum validation during probe functionality.

Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/igc/igc_main.c

index 2515528..965d1c9 100644 (file)
@@ -4133,6 +4133,15 @@ static int igc_probe(struct pci_dev *pdev,
         */
        hw->mac.ops.reset_hw(hw);
 
+       if (igc_get_flash_presence_i225(hw)) {
+               if (hw->nvm.ops.validate(hw) < 0) {
+                       dev_err(&pdev->dev,
+                               "The NVM Checksum Is Not Valid\n");
+                       err = -EIO;
+                       goto err_eeprom;
+               }
+       }
+
        if (eth_platform_get_mac_address(&pdev->dev, hw->mac.addr)) {
                /* copy the MAC address out of the NVM */
                if (hw->mac.ops.read_mac_addr(hw))