ixgbe: add WoL support for some 82599 subdevice IDs
We had some 82599 subdevice IDs missing from the list of parts that support WoL. Reported-by: Neil Horman <nhorman@redhat.com> Signed-off-by: Emil Tantilov <emil.s.tantilov@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
c6d45171d7
commit
00103a6ce3
|
@ -9204,8 +9204,10 @@ int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
|
|||
case IXGBE_DEV_ID_82599_SFP:
|
||||
/* Only these subdevices could supports WOL */
|
||||
switch (subdevice_id) {
|
||||
case IXGBE_SUBDEV_ID_82599_SFP_WOL0:
|
||||
case IXGBE_SUBDEV_ID_82599_560FLR:
|
||||
case IXGBE_SUBDEV_ID_82599_LOM_SNAP6:
|
||||
case IXGBE_SUBDEV_ID_82599_SFP_WOL0:
|
||||
case IXGBE_SUBDEV_ID_82599_SFP_2OCP:
|
||||
/* only support first port */
|
||||
if (hw->bus.func != 0)
|
||||
break;
|
||||
|
@ -9213,7 +9215,9 @@ int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
|
|||
case IXGBE_SUBDEV_ID_82599_SFP:
|
||||
case IXGBE_SUBDEV_ID_82599_RNDC:
|
||||
case IXGBE_SUBDEV_ID_82599_ECNA_DP:
|
||||
case IXGBE_SUBDEV_ID_82599_LOM_SFP:
|
||||
case IXGBE_SUBDEV_ID_82599_SFP_1OCP:
|
||||
case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM1:
|
||||
case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM2:
|
||||
is_wol_supported = 1;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -59,8 +59,12 @@
|
|||
#define IXGBE_SUBDEV_ID_82599_RNDC 0x1F72
|
||||
#define IXGBE_SUBDEV_ID_82599_560FLR 0x17D0
|
||||
#define IXGBE_SUBDEV_ID_82599_SP_560FLR 0x211B
|
||||
#define IXGBE_SUBDEV_ID_82599_LOM_SNAP6 0x2159
|
||||
#define IXGBE_SUBDEV_ID_82599_SFP_1OCP 0x000D
|
||||
#define IXGBE_SUBDEV_ID_82599_SFP_2OCP 0x0008
|
||||
#define IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM1 0x8976
|
||||
#define IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM2 0x06EE
|
||||
#define IXGBE_SUBDEV_ID_82599_ECNA_DP 0x0470
|
||||
#define IXGBE_SUBDEV_ID_82599_LOM_SFP 0x8976
|
||||
#define IXGBE_DEV_ID_82599_SFP_EM 0x1507
|
||||
#define IXGBE_DEV_ID_82599_SFP_SF2 0x154D
|
||||
#define IXGBE_DEV_ID_82599EN_SFP 0x1557
|
||||
|
|
Loading…
Reference in New Issue