mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
ixgbe: Fix 82599 KX4 Wake on LAN issue after an improper system shutdown
Advanced Power Management is disabled for 82599 KX4 connections by clearing GRC.APME bit, causing it to not wake the system from an improper system shutdown. By default GRC.APME is enabled and software is not supposed to clear these settings during adapter probe. Signed-off-by: Mallikarjuna R Chilakala <mallikarjuna.chilakala@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1097cd1770
commit
0ecad5a262
@ -6246,9 +6246,6 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
|
|||||||
case IXGBE_DEV_ID_82599_KX4:
|
case IXGBE_DEV_ID_82599_KX4:
|
||||||
adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
|
adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
|
||||||
IXGBE_WUFC_MC | IXGBE_WUFC_BC);
|
IXGBE_WUFC_MC | IXGBE_WUFC_BC);
|
||||||
/* Enable ACPI wakeup in GRC */
|
|
||||||
IXGBE_WRITE_REG(hw, IXGBE_GRC,
|
|
||||||
(IXGBE_READ_REG(hw, IXGBE_GRC) & ~IXGBE_GRC_APME));
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
adapter->wol = 0;
|
adapter->wol = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user