ixgbe: Add generic XAUI support to 82599
This patch adds the generic XAUI device support for 82599 controllers. Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@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
e76678dd65
commit
1fcf03e656
|
@ -347,6 +347,7 @@ enum ixgbe_media_type ixgbe_get_media_type_82599(struct ixgbe_hw *hw)
|
||||||
switch (hw->device_id) {
|
switch (hw->device_id) {
|
||||||
case IXGBE_DEV_ID_82599:
|
case IXGBE_DEV_ID_82599:
|
||||||
case IXGBE_DEV_ID_82599_KX4:
|
case IXGBE_DEV_ID_82599_KX4:
|
||||||
|
case IXGBE_DEV_ID_82599_XAUI_LOM:
|
||||||
/* Default device ID is mezzanine card KX/KX4 */
|
/* Default device ID is mezzanine card KX/KX4 */
|
||||||
media_type = ixgbe_media_type_backplane;
|
media_type = ixgbe_media_type_backplane;
|
||||||
break;
|
break;
|
||||||
|
@ -1199,6 +1200,8 @@ u32 ixgbe_get_supported_physical_layer_82599(struct ixgbe_hw *hw)
|
||||||
physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_CX4;
|
physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_CX4;
|
||||||
else if (pma_pmd_10g_parallel == IXGBE_AUTOC_10G_KX4)
|
else if (pma_pmd_10g_parallel == IXGBE_AUTOC_10G_KX4)
|
||||||
physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
|
physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
|
||||||
|
else if (pma_pmd_10g_parallel == IXGBE_AUTOC_10G_XAUI)
|
||||||
|
physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_XAUI;
|
||||||
goto out;
|
goto out;
|
||||||
break;
|
break;
|
||||||
case IXGBE_AUTOC_LMS_10G_SERIAL:
|
case IXGBE_AUTOC_LMS_10G_SERIAL:
|
||||||
|
|
|
@ -90,6 +90,8 @@ static struct pci_device_id ixgbe_pci_tbl[] = {
|
||||||
board_82598 },
|
board_82598 },
|
||||||
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4),
|
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4),
|
||||||
board_82599 },
|
board_82599 },
|
||||||
|
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM),
|
||||||
|
board_82599 },
|
||||||
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP),
|
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP),
|
||||||
board_82599 },
|
board_82599 },
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
#define IXGBE_DEV_ID_82599 0x10D8
|
#define IXGBE_DEV_ID_82599 0x10D8
|
||||||
#define IXGBE_DEV_ID_82599_KX4 0x10F7
|
#define IXGBE_DEV_ID_82599_KX4 0x10F7
|
||||||
#define IXGBE_DEV_ID_82599_SFP 0x10FB
|
#define IXGBE_DEV_ID_82599_SFP 0x10FB
|
||||||
|
#define IXGBE_DEV_ID_82599_XAUI_LOM 0x10FC
|
||||||
|
|
||||||
/* General Registers */
|
/* General Registers */
|
||||||
#define IXGBE_CTRL 0x00000
|
#define IXGBE_CTRL 0x00000
|
||||||
|
@ -1954,6 +1955,7 @@ typedef u32 ixgbe_physical_layer;
|
||||||
#define IXGBE_PHYSICAL_LAYER_1000BASE_KX 0x0200
|
#define IXGBE_PHYSICAL_LAYER_1000BASE_KX 0x0200
|
||||||
#define IXGBE_PHYSICAL_LAYER_1000BASE_BX 0x0400
|
#define IXGBE_PHYSICAL_LAYER_1000BASE_BX 0x0400
|
||||||
#define IXGBE_PHYSICAL_LAYER_10GBASE_KR 0x0800
|
#define IXGBE_PHYSICAL_LAYER_10GBASE_KR 0x0800
|
||||||
|
#define IXGBE_PHYSICAL_LAYER_10GBASE_XAUI 0x1000
|
||||||
|
|
||||||
enum ixgbe_eeprom_type {
|
enum ixgbe_eeprom_type {
|
||||||
ixgbe_eeprom_uninitialized = 0,
|
ixgbe_eeprom_uninitialized = 0,
|
||||||
|
|
Loading…
Reference in New Issue