diff options
author | Bill Paul <wpaul@windriver.com> | 2014-03-17 22:07:29 +0000 |
---|---|---|
committer | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2014-03-17 22:07:29 +0000 |
commit | bf8ea49c0cdf7a73cfc0df5e0eab6f8c9fbca410 (patch) | |
tree | cc89f737deb75ddbcdca1b870b129ef7b8055016 /nicintel_spi.c | |
parent | 495fc2c96ad7c79eff6ac548f7d5c40d0ac0043b (diff) | |
download | flashrom-bf8ea49c0cdf7a73cfc0df5e0eab6f8c9fbca410.tar.gz flashrom-bf8ea49c0cdf7a73cfc0df5e0eab6f8c9fbca410.tar.bz2 flashrom-bf8ea49c0cdf7a73cfc0df5e0eab6f8c9fbca410.zip |
Add support for Intel 82574L to nicintel_spi.c
Corresponding to flashrom svn r1767.
Signed-off-by: Bill Paul <wpaul@windriver.com>
Acked-by: Idwer Vollering <vidwer@gmail.com>
Diffstat (limited to 'nicintel_spi.c')
-rw-r--r-- | nicintel_spi.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/nicintel_spi.c b/nicintel_spi.c index faceedd1d..1522c9b3f 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}, }; |