Skip to content

Commit bc7f75f

Browse files
ahkokDavid S. Miller
authored andcommitted
[E1000E]: New pci-express e1000 driver (currently for ICH9 devices only)
This driver implements support for the ICH9 on-board LAN ethernet device. The device is similar to ICH8. The driver encompasses code to support 82571/2/3, es2lan and ICH8 devices as well, but those device IDs are disabled and will be "lifted" from the e1000 driver over one at a time once this driver receives some more live time. Changes to the last snapshot posted are exclusively in the internal hardware API organization. Many thanks to Jeff Garzik for jumping in and getting this organized with a keen eye on the future layout. [ Integrated napi_struct patch from Auke as well... -DaveM ] Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent cbdb9e4 commit bc7f75f

File tree

14 files changed

+17843
-0
lines changed

14 files changed

+17843
-0
lines changed

drivers/net/Kconfig

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2055,6 +2055,29 @@ config E1000_DISABLE_PACKET_SPLIT
20552055

20562056
If in doubt, say N.
20572057

2058+
config E1000E
2059+
tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support"
2060+
depends on PCI
2061+
---help---
2062+
This driver supports the PCI-Express Intel(R) PRO/1000 gigabit
2063+
ethernet family of adapters. For PCI or PCI-X e1000 adapters,
2064+
use the regular e1000 driver For more information on how to
2065+
identify your adapter, go to the Adapter & Driver ID Guide at:
2066+
2067+
<http://support.intel.com/support/network/adapter/pro100/21397.htm>
2068+
2069+
For general information and support, go to the Intel support
2070+
website at:
2071+
2072+
<http://support.intel.com>
2073+
2074+
More specific information on configuring the driver is in
2075+
<file:Documentation/networking/e1000e.txt>.
2076+
2077+
To compile this driver as a module, choose M here and read
2078+
<file:Documentation/networking/net-modules.txt>. The module
2079+
will be called e1000e.
2080+
20582081
source "drivers/net/ixp2000/Kconfig"
20592082

20602083
config MYRI_SBUS

drivers/net/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#
44

55
obj-$(CONFIG_E1000) += e1000/
6+
obj-$(CONFIG_E1000E) += e1000e/
67
obj-$(CONFIG_IBM_EMAC) += ibm_emac/
78
obj-$(CONFIG_IXGB) += ixgb/
89
obj-$(CONFIG_CHELSIO_T1) += chelsio/

0 commit comments

Comments
 (0)