david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[igbvf] Add i350 virtual function support

Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Erik Jacobson 2012-04-05 11:31:57 -05:00 committed by Michael Brown
parent 0e4a5ca4c7
commit 96a8c70a0c
2 changed files with 3 additions and 1 deletions

View File

@ -942,7 +942,8 @@ void igbvf_remove ( struct pci_device *pdev )
}
static struct pci_device_id igbvf_pci_tbl[] = {
PCI_ROM(0x8086, 0x10CA, "igbvf", "E1000_DEV_ID_82576_VF", 0)
PCI_ROM(0x8086, 0x10CA, "igbvf", "E1000_DEV_ID_82576_VF", 0),
PCI_ROM(0x8086, 0x1520, "i350vf", "E1000_DEV_ID_I350_VF", 0),
};

View File

@ -54,6 +54,7 @@ FILE_LICENCE ( GPL2_ONLY );
struct e1000_hw;
#define E1000_DEV_ID_82576_VF 0x10CA
#define E1000_DEV_ID_I350_VF 0x1520
#define E1000_VF_INIT_TIMEOUT 200 /* Number of retries to clear RSTI */