summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2014-03-17 22:07:29 +0000
committerstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2014-03-17 22:07:29 +0000
commit4788122ad01454ef3af4615b99d3c872cf6a2cc4 (patch)
treecc89f737deb75ddbcdca1b870b129ef7b8055016
parentf86aad01d11334eb95e0813035e95942ec626711 (diff)
downloadflashrom-4788122ad01454ef3af4615b99d3c872cf6a2cc4.tar.gz
Add support for Intel 82574L to nicintel_spi.c.
Signed-off-by: Bill Paul <wpaul@windriver.com> Acked-by: Idwer Vollering <vidwer@gmail.com> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1767 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--nicintel_spi.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/nicintel_spi.c b/nicintel_spi.c
index faceedd..1522c9b 100644
--- a/nicintel_spi.c
+++ b/nicintel_spi.c
@@ -19,10 +19,16 @@
*/
/*
- * Datasheet:
+ * Datasheets:
* PCI/PCI-X Family of Gigabit Ethernet Controllers Software Developer's Manual
* 82540EP/EM, 82541xx, 82544GC/EI, 82545GM/EM, 82546GB/EB, and 82547xx
- * http://download.intel.com/design/network/manuals/8254x_GBe_SDM.pdf
+ * http://www.intel.com/content/www/us/en/ethernet-controllers/pci-pci-x-family-gbe-controllers-software-dev-manual.html
+ *
+ * PCIe GbE Controllers Open Source Software Developer's Manual
+ * http://www.intel.com/content/www/us/en/ethernet-controllers/pcie-gbe-controllers-open-source-manual.html
+ *
+ * Intel 82574 Gigabit Ethernet Controller Family Datasheet
+ * http://www.intel.com/content/www/us/en/ethernet-controllers/82574l-gbe-controller-datasheet.html
*/
#include <stdlib.h>
@@ -72,6 +78,7 @@ const struct dev_entry nics_intel_spi[] = {
{PCI_VENDOR_ID_INTEL, 0x1076, OK, "Intel", "82541GI Gigabit Ethernet Controller"},
{PCI_VENDOR_ID_INTEL, 0x107c, OK, "Intel", "82541PI Gigabit Ethernet Controller"},
{PCI_VENDOR_ID_INTEL, 0x10b9, OK, "Intel", "82572EI Gigabit Ethernet Controller"},
+ {PCI_VENDOR_ID_INTEL, 0x10d3, OK, "Intel", "82574L Gigabit Ethernet Controller"},
{0},
};