igc: Fix possible system crash when loading module
authorVinicius Costa Gomes <vinicius.gomes@intel.com>
Mon, 17 Apr 2023 22:18:39 +0000 (15:18 -0700)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Mon, 12 Jun 2023 20:18:30 +0000 (13:18 -0700)
commitc080fe262f9e73a00934b70c16b1479cf40cd2bd
tree356154f8a91145391adec8a739c2b8c3e4980b88
parente43516f5978d11d36511ce63d31d1da4db916510
igc: Fix possible system crash when loading module

Guarantee that when probe() is run again, PTM and PCI busmaster will be
in the same state as it was if the driver was never loaded.

Avoid an i225/i226 hardware issue that PTM requests can be made even
though PCI bus mastering is not enabled. These unexpected PTM requests
can crash some systems.

So, "force" disable PTM and busmastering before removing the driver,
so they can be re-enabled in the right order during probe(). This is
more like a workaround and should be applicable for i225 and i226, in
any platform.

Fixes: 1b5d73fb8624 ("igc: Enable PCIe PTM")
Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@intel.com>
Reviewed-by: Muhammad Husaini Zulkifli <muhammad.husaini.zulkifli@intel.com>
Tested-by: Naama Meir <naamax.meir@linux.intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/igc/igc_main.c