Browse Source

[tg3] Add support for BCM57766

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Bernd Wiebelt 9 years ago
parent
commit
24112d91a0
3 changed files with 3 additions and 0 deletions
  1. 1
    0
      src/drivers/net/tg3/tg3.c
  2. 1
    0
      src/drivers/net/tg3/tg3.h
  3. 1
    0
      src/drivers/net/tg3/tg3_hw.c

+ 1
- 0
src/drivers/net/tg3/tg3.c View File

@@ -928,6 +928,7 @@ static struct pci_device_id tg3_nics[] = {
928 928
 	PCI_ROM(0x14e4, 0x16b6, "14e4-16b6", "14e4-16b6", 0),
929 929
 	PCI_ROM(0x14e4, 0x1657, "14e4-1657", "14e4-1657", 0),
930 930
 	PCI_ROM(0x14e4, 0x165f, "14e4-165f", "14e4-165f", 0),
931
+	PCI_ROM(0x14e4, 0x1686, "14e4-1686", "14e4-1686", 0),
931 932
 	PCI_ROM(0x1148, 0x4400, "1148-4400", "1148-4400", 0),
932 933
 	PCI_ROM(0x1148, 0x4500, "1148-4500", "1148-4500", 0),
933 934
 	PCI_ROM(0x173b, 0x03e8, "173b-03e8", "173b-03e8", 0),

+ 1
- 0
src/drivers/net/tg3/tg3.h View File

@@ -189,6 +189,7 @@
189 189
 #define  TG3PCI_DEVICE_TIGON3_57761	 0x16b0
190 190
 #define  TG3PCI_DEVICE_TIGON3_57762	 0x1682
191 191
 #define  TG3PCI_DEVICE_TIGON3_57765	 0x16b4
192
+#define  TG3PCI_DEVICE_TIGON3_57766	 0x1686
192 193
 #define  TG3PCI_DEVICE_TIGON3_57791	 0x16b2
193 194
 #define  TG3PCI_DEVICE_TIGON3_57795	 0x16b6
194 195
 #define  TG3PCI_DEVICE_TIGON3_5719	 0x1657

+ 1
- 0
src/drivers/net/tg3/tg3_hw.c View File

@@ -436,6 +436,7 @@ int tg3_get_invariants(struct tg3 *tp)
436 436
 			 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
437 437
 			 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
438 438
 			 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
439
+			 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
439 440
 			 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
440 441
 			 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
441 442
 			pci_read_config_dword(tp->pdev,

Loading…
Cancel
Save