blob: 71fe15af356cda609a2a0abae7b11bff1be1df0a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001Linux* Base Driver for the Intel(R) PRO/1000 Family of Adapters
2===============================================================
3
Jesse Brandeburg55be0622006-03-15 12:18:13 -08004November 15, 2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6
7Contents
8========
9
10- In This Release
11- Identifying Your Adapter
12- Command Line Parameters
13- Speed and Duplex Configuration
14- Additional Configurations
15- Known Issues
16- Support
17
18
19In This Release
20===============
21
22This file describes the Linux* Base Driver for the Intel(R) PRO/1000 Family
Jesse Brandeburg55be0622006-03-15 12:18:13 -080023of Adapters. This driver includes support for Itanium(R)2-based systems.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Jesse Brandeburg55be0622006-03-15 12:18:13 -080025For questions related to hardware requirements, refer to the documentation
26supplied with your Intel PRO/1000 adapter. All hardware requirements listed
Linus Torvalds1da177e2005-04-16 15:20:36 -070027apply to use with Linux.
28
Jesse Brandeburg55be0622006-03-15 12:18:13 -080029The following features are now available in supported kernels:
30 - Native VLANs
31 - Channel Bonding (teaming)
32 - SNMP
33
34Channel Bonding documentation can be found in the Linux kernel source:
35/Documentation/networking/bonding.txt
36
37The driver information previously displayed in the /proc filesystem is not
38supported in this release. Alternatively, you can use ethtool (version 1.6
39or later), lspci, and ifconfig to obtain the same information.
40
41Instructions on updating ethtool can be found in the section "Additional
42Configurations" later in this document.
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45Identifying Your Adapter
46========================
47
Jesse Brandeburg55be0622006-03-15 12:18:13 -080048For more information on how to identify your adapter, go to the Adapter &
Linus Torvalds1da177e2005-04-16 15:20:36 -070049Driver ID Guide at:
50
51 http://support.intel.com/support/network/adapter/pro100/21397.htm
52
Jesse Brandeburg55be0622006-03-15 12:18:13 -080053For the latest Intel network drivers for Linux, refer to the following
54website. In the search field, enter your adapter name or type, or use the
Linus Torvalds1da177e2005-04-16 15:20:36 -070055networking link on the left to search for your adapter:
56
57 http://downloadfinder.intel.com/scripts-df/support_intel.asp
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Jesse Brandeburg55be0622006-03-15 12:18:13 -080060Command Line Parameters =======================
61
62If the driver is built as a module, the following optional parameters
63are used by entering them on the command line with the modprobe or insmod
64command using this syntax:
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 modprobe e1000 [<option>=<VAL1>,<VAL2>,...]
67
Jesse Brandeburg55be0622006-03-15 12:18:13 -080068 insmod e1000 [<option>=<VAL1>,<VAL2>,...]
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70For example, with two PRO/1000 PCI adapters, entering:
71
72 insmod e1000 TxDescriptors=80,128
73
Jesse Brandeburg55be0622006-03-15 12:18:13 -080074loads the e1000 driver with 80 TX descriptors for the first adapter and 128
75TX descriptors for the second adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77The default value for each parameter is generally the recommended setting,
Jesse Brandeburg55be0622006-03-15 12:18:13 -080078unless otherwise noted.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Jesse Brandeburg55be0622006-03-15 12:18:13 -080080NOTES: For more information about the AutoNeg, Duplex, and Speed
81 parameters, see the "Speed and Duplex Configuration" section in
82 this document.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Jesse Brandeburg55be0622006-03-15 12:18:13 -080084 For more information about the InterruptThrottleRate,
85 RxIntDelay, TxIntDelay, RxAbsIntDelay, and TxAbsIntDelay
86 parameters, see the application note at:
87 http://www.intel.com/design/network/applnots/ap450.htm
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Jesse Brandeburg55be0622006-03-15 12:18:13 -080089 A descriptor describes a data buffer and attributes related to
90 the data buffer. This information is accessed by the hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Jesse Brandeburg55be0622006-03-15 12:18:13 -080092
93AutoNeg
94-------
95(Supported only on adapters with copper connections)
96Valid Range: 0x01-0x0F, 0x20-0x2F
Linus Torvalds1da177e2005-04-16 15:20:36 -070097Default Value: 0x2F
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Jesse Brandeburg55be0622006-03-15 12:18:13 -080099This parameter is a bit mask that specifies which speed and duplex
100settings the board advertises. When this parameter is used, the Speed
101and Duplex parameters must not be specified.
102
103NOTE: Refer to the Speed and Duplex section of this readme for more
104 information on the AutoNeg parameter.
105
106
107Duplex
108------
109(Supported only on adapters with copper connections)
110Valid Range: 0-2 (0=auto-negotiate, 1=half, 2=full)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111Default Value: 0
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800112
113Defines the direction in which data is allowed to flow. Can be either
114one or two-directional. If both Duplex and the link partner are set to
115auto-negotiate, the board auto-detects the correct duplex. If the link
116partner is forced (either full or half), Duplex defaults to half-duplex.
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119FlowControl
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800120----------
121Valid Range: 0-3 (0=none, 1=Rx only, 2=Tx only, 3=Rx&Tx)
122Default Value: Reads flow control settings from the EEPROM
123
124This parameter controls the automatic generation(Tx) and response(Rx)
125to Ethernet PAUSE frames.
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128InterruptThrottleRate
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800129---------------------
130(not supported on Intel 82542, 82543 or 82544-based adapters)
131Valid Range: 100-100000 (0=off, 1=dynamic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132Default Value: 8000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800134This value represents the maximum number of interrupts per second the
135controller generates. InterruptThrottleRate is another setting used in
136interrupt moderation. Dynamic mode uses a heuristic algorithm to adjust
137InterruptThrottleRate based on the current traffic load.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800139NOTE: InterruptThrottleRate takes precedence over the TxAbsIntDelay and
140 RxAbsIntDelay parameters. In other words, minimizing the receive
141 and/or transmit absolute delays does not force the controller to
142 generate more interrupts than what the Interrupt Throttle Rate
143 allows.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800145CAUTION: If you are using the Intel PRO/1000 CT Network Connection
146 (controller 82547), setting InterruptThrottleRate to a value
147 greater than 75,000, may hang (stop transmitting) adapters
148 under certain network conditions. If this occurs a NETDEV
149 WATCHDOG message is logged in the system event log. In
150 addition, the controller is automatically reset, restoring
151 the network connection. To eliminate the potential for the
152 hang, ensure that InterruptThrottleRate is set no greater
153 than 75,000 and is not set to 0.
154
155NOTE: When e1000 is loaded with default settings and multiple adapters
156 are in use simultaneously, the CPU utilization may increase non-
157 linearly. In order to limit the CPU utilization without impacting
158 the overall throughput, we recommend that you load the driver as
159 follows:
160
161 insmod e1000.o InterruptThrottleRate=3000,3000,3000
162
163 This sets the InterruptThrottleRate to 3000 interrupts/sec for
164 the first, second, and third instances of the driver. The range
165 of 2000 to 3000 interrupts per second works on a majority of
166 systems and is a good starting point, but the optimal value will
167 be platform-specific. If CPU utilization is not a concern, use
168 RX_POLLING (NAPI) and default driver settings.
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171RxDescriptors
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800172-------------
173Valid Range: 80-256 for 82542 and 82543-based adapters
174 80-4096 for all other supported adapters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175Default Value: 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800177This value specifies the number of receive descriptors allocated by the
178driver. Increasing this value allows the driver to buffer more incoming
179packets. Each descriptor is 16 bytes. A receive buffer is also
180allocated for each descriptor and is 2048.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183RxIntDelay
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800184----------
185Valid Range: 0-65535 (0=off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186Default Value: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800188This value delays the generation of receive interrupts in units of 1.024
189microseconds. Receive interrupt reduction can improve CPU efficiency if
190properly tuned for specific network traffic. Increasing this value adds
191extra latency to frame reception and can end up decreasing the throughput
192of TCP traffic. If the system is reporting dropped receives, this value
193may be set too high, causing the driver to run out of available receive
194descriptors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800196CAUTION: When setting RxIntDelay to a value other than 0, adapters may
197 hang (stop transmitting) under certain network conditions. If
198 this occurs a NETDEV WATCHDOG message is logged in the system
199 event log. In addition, the controller is automatically reset,
200 restoring the network connection. To eliminate the potential
201 for the hang ensure that RxIntDelay is set to 0.
202
203
204RxAbsIntDelay
205-------------
206(This parameter is supported only on 82540, 82545 and later adapters.)
207Valid Range: 0-65535 (0=off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208Default Value: 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800210This value, in units of 1.024 microseconds, limits the delay in which a
211receive interrupt is generated. Useful only if RxIntDelay is non-zero,
212this value ensures that an interrupt is generated after the initial
213packet is received within the set amount of time. Proper tuning,
214along with RxIntDelay, may improve traffic throughput in specific network
215conditions.
216
217
218Speed
219-----
220(This parameter is supported only on adapters with copper connections.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221Valid Settings: 0, 10, 100, 1000
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800222Default Value: 0 (auto-negotiate at all supported speeds)
223
224Speed forces the line speed to the specified value in megabits per second
225(Mbps). If this parameter is not specified or is set to 0 and the link
226partner is set to auto-negotiate, the board will auto-detect the correct
227speed. Duplex should also be set when Speed is set to either 10 or 100.
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230TxDescriptors
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800231-------------
232Valid Range: 80-256 for 82542 and 82543-based adapters
233 80-4096 for all other supported adapters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234Default Value: 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800236This value is the number of transmit descriptors allocated by the driver.
237Increasing this value allows the driver to queue more transmits. Each
238descriptor is 16 bytes.
239
240NOTE: Depending on the available system resources, the request for a
241 higher number of transmit descriptors may be denied. In this case,
242 use a lower number.
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245TxIntDelay
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800246----------
247Valid Range: 0-65535 (0=off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248Default Value: 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800250This value delays the generation of transmit interrupts in units of
2511.024 microseconds. Transmit interrupt reduction can improve CPU
252efficiency if properly tuned for specific network traffic. If the
253system is reporting dropped transmits, this value may be set too high
254causing the driver to run out of available transmit descriptors.
255
256
257TxAbsIntDelay
258-------------
259(This parameter is supported only on 82540, 82545 and later adapters.)
260Valid Range: 0-65535 (0=off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261Default Value: 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800263This value, in units of 1.024 microseconds, limits the delay in which a
264transmit interrupt is generated. Useful only if TxIntDelay is non-zero,
265this value ensures that an interrupt is generated after the initial
266packet is sent on the wire within the set amount of time. Proper tuning,
267along with TxIntDelay, may improve traffic throughput in specific
268network conditions.
269
270XsumRX
271------
272(This parameter is NOT supported on the 82542-based adapter.)
273Valid Range: 0-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274Default Value: 1
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800275
276A value of '1' indicates that the driver should enable IP checksum
277offload for received packets (both UDP and TCP) to the adapter hardware.
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280Speed and Duplex Configuration
281==============================
282
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800283Three keywords are used to control the speed and duplex configuration.
284These keywords are Speed, Duplex, and AutoNeg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800286If the board uses a fiber interface, these keywords are ignored, and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287fiber interface board only links at 1000 Mbps full-duplex.
288
289For copper-based boards, the keywords interact as follows:
290
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800291 The default operation is auto-negotiate. The board advertises all
292 supported speed and duplex combinations, and it links at the highest
293 common speed and duplex mode IF the link partner is set to auto-negotiate.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800295 If Speed = 1000, limited auto-negotiation is enabled and only 1000 Mbps
296 is advertised (The 1000BaseT spec requires auto-negotiation.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 If Speed = 10 or 100, then both Speed and Duplex should be set. Auto-
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800299 negotiation is disabled, and the AutoNeg parameter is ignored. Partner
300 SHOULD also be forced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800302The AutoNeg parameter is used when more control is required over the
303auto-negotiation process. It should be used when you wish to control which
304speed and duplex combinations are advertised during the auto-negotiation
305process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800307The parameter may be specified as either a decimal or hexidecimal value as
308determined by the bitmap below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800310Bit position 7 6 5 4 3 2 1 0
311Decimal Value 128 64 32 16 8 4 2 1
312Hex value 80 40 20 10 8 4 2 1
313Speed (Mbps) N/A N/A 1000 N/A 100 100 10 10
314Duplex Full Full Half Full Half
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800316Some examples of using AutoNeg:
317
318 modprobe e1000 AutoNeg=0x01 (Restricts autonegotiation to 10 Half)
319 modprobe e1000 AutoNeg=1 (Same as above)
320 modprobe e1000 AutoNeg=0x02 (Restricts autonegotiation to 10 Full)
321 modprobe e1000 AutoNeg=0x03 (Restricts autonegotiation to 10 Half or 10 Full)
322 modprobe e1000 AutoNeg=0x04 (Restricts autonegotiation to 100 Half)
323 modprobe e1000 AutoNeg=0x05 (Restricts autonegotiation to 10 Half or 100
324 Half)
325 modprobe e1000 AutoNeg=0x020 (Restricts autonegotiation to 1000 Full)
326 modprobe e1000 AutoNeg=32 (Same as above)
327
328Note that when this parameter is used, Speed and Duplex must not be specified.
329
330If the link partner is forced to a specific speed and duplex, then this
331parameter should not be used. Instead, use the Speed and Duplex parameters
332previously mentioned to force the adapter to the same speed and duplex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334
335Additional Configurations
336=========================
337
338 Configuring the Driver on Different Distributions
339 -------------------------------------------------
340
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800341 Configuring a network driver to load properly when the system is started
342 is distribution dependent. Typically, the configuration process involves
343 adding an alias line to /etc/modules.conf or /etc/modprobe.conf as well
344 as editing other system startup scripts and/or configuration files. Many
345 popular Linux distributions ship with tools to make these changes for you.
346 To learn the proper way to configure a network device for your system,
347 refer to your distribution documentation. If during this process you are
348 asked for the driver or module name, the name for the Linux Base Driver
349 for the Intel PRO/1000 Family of Adapters is e1000.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800351 As an example, if you install the e1000 driver for two PRO/1000 adapters
352 (eth0 and eth1) and set the speed and duplex to 10full and 100half, add
353 the following to modules.conf or or modprobe.conf:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 alias eth0 e1000
356 alias eth1 e1000
357 options e1000 Speed=10,100 Duplex=2,1
358
359 Viewing Link Messages
360 ---------------------
361
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800362 Link messages will not be displayed to the console if the distribution is
363 restricting system messages. In order to see network driver link messages
364 on your console, set dmesg to eight by entering the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 dmesg -n 8
367
368 NOTE: This setting is not saved across reboots.
369
370 Jumbo Frames
371 ------------
372
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800373 The driver supports Jumbo Frames for all adapters except 82542 and
374 82573-based adapters. Jumbo Frames support is enabled by changing the
375 MTU to a value larger than the default of 1500. Use the ifconfig command
376 to increase the MTU size. For example:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800378 ifconfig eth<x> mtu 9000 up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800380 This setting is not saved across reboots. It can be made permanent if
381 you add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800383 MTU=9000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800385 to the file /etc/sysconfig/network-scripts/ifcfg-eth<x>. This example
386 applies to the Red Hat distributions; other distributions may store this
387 setting in a different location.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800389 Notes:
390
391 - To enable Jumbo Frames, increase the MTU size on the interface beyond
392 1500.
393 - The maximum MTU setting for Jumbo Frames is 16110. This value coincides
394 with the maximum Jumbo Frames size of 16128.
395 - Using Jumbo Frames at 10 or 100 Mbps may result in poor performance or
396 loss of link.
397 - Some Intel gigabit adapters that support Jumbo Frames have a frame size
398 limit of 9238 bytes, with a corresponding MTU size limit of 9216 bytes.
399 The adapters with this limitation are based on the Intel 82571EB and
400 82572EI controllers, which correspond to these product names:
401 Intel® PRO/1000 PT Dual Port Server Adapter
402 Intel® PRO/1000 PF Dual Port Server Adapter
403 Intel® PRO/1000 PT Server Adapter
404 Intel® PRO/1000 PT Desktop Adapter
405 Intel® PRO/1000 PF Server Adapter
406
407 - The Intel PRO/1000 PM Network Connection does not support jumbo frames.
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 Ethtool
411 -------
412
413 The driver utilizes the ethtool interface for driver configuration and
414 diagnostics, as well as displaying statistical information. Ethtool
415 version 1.6 or later is required for this functionality.
416
417 The latest release of ethtool can be found from
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800418 http://sourceforge.net/projects/gkernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800420 NOTE: Ethtool 1.6 only supports a limited set of ethtool options. Support
421 for a more complete ethtool feature set can be enabled by upgrading
422 ethtool to ethtool-1.8.1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 Enabling Wake on LAN* (WoL)
425 ---------------------------
426
427 WoL is configured through the Ethtool* utility. Ethtool is included with
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800428 all versions of Red Hat after Red Hat 7.2. For other Linux distributions,
429 download and install Ethtool from the following website:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 http://sourceforge.net/projects/gkernel.
431
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800432 For instructions on enabling WoL with Ethtool, refer to the website listed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 above.
434
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800435 WoL will be enabled on the system during the next shut down or reboot.
436 For this driver version, in order to enable WoL, the e1000 driver must be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 loaded when shutting down or rebooting the system.
438
439 NAPI
440 ----
441
442 NAPI (Rx polling mode) is supported in the e1000 driver. NAPI is enabled
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800443 or disabled based on the configuration of the kernel. To override
444 the default, use the following compile-time flags.
445
446 To enable NAPI, compile the driver module, passing in a configuration option:
447
448 make CFLAGS_EXTRA=-DE1000_NAPI install
449
450 To disable NAPI, compile the driver module, passing in a configuration option:
451
452 make CFLAGS_EXTRA=-DE1000_NO_NAPI install
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 See www.cyberus.ca/~hadi/usenix-paper.tgz for more information on NAPI.
455
456
457Known Issues
458============
459
460 Jumbo Frames System Requirement
461 -------------------------------
462
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800463 Memory allocation failures have been observed on Linux systems with 64 MB
464 of RAM or less that are running Jumbo Frames. If you are using Jumbo
465 Frames, your system may require more than the advertised minimum
466 requirement of 64 MB of system memory.
467
468 Performance Degradation with Jumbo Frames
469 -----------------------------------------
470
471 Degradation in throughput performance may be observed in some Jumbo frames
472 environments. If this is observed, increasing the application's socket
473 buffer size and/or increasing the /proc/sys/net/ipv4/tcp_*mem entry values
474 may help. See the specific application manual and
475 /usr/src/linux*/Documentation/
476 networking/ip-sysctl.txt for more details.
477
478 Jumbo frames on Foundry BigIron 8000 switch
479 -------------------------------------------
480 There is a known issue using Jumbo frames when connected to a Foundry
481 BigIron 8000 switch. This is a 3rd party limitation. If you experience
482 loss of packets, lower the MTU size.
483
484 Multiple Interfaces on Same Ethernet Broadcast Network
485 ------------------------------------------------------
486
487 Due to the default ARP behavior on Linux, it is not possible to have
488 one system on two IP networks in the same Ethernet broadcast domain
489 (non-partitioned switch) behave as expected. All Ethernet interfaces
490 will respond to IP traffic for any IP address assigned to the system.
491 This results in unbalanced receive traffic.
492
493 If you have multiple interfaces in a server, either turn on ARP
494 filtering by entering:
495
496 echo 1 > /proc/sys/net/ipv4/conf/all/arp_filter
497 (this only works if your kernel's version is higher than 2.4.5),
498
499 NOTE: This setting is not saved across reboots. The configuration
500 change can be made permanent by adding the line:
501 net.ipv4.conf.all.arp_filter = 1
502 to the file /etc/sysctl.conf
503
504 or,
505
506 install the interfaces in separate broadcast domains (either in
507 different switches or in a switch partitioned to VLANs).
508
509 82541/82547 can't link or are slow to link with some link partners
510 -----------------------------------------------------------------
511
512 There is a known compatibility issue with 82541/82547 and some
513 low-end switches where the link will not be established, or will
514 be slow to establish. In particular, these switches are known to
515 be incompatible with 82541/82547:
516
517 Planex FXG-08TE
518 I-O Data ETG-SH8
519
520 To workaround this issue, the driver can be compiled with an override
521 of the PHY's master/slave setting. Forcing master or forcing slave
522 mode will improve time-to-link.
523
524 # make EXTRA_CFLAGS=-DE1000_MASTER_SLAVE=<n>
525
526 Where <n> is:
527
528 0 = Hardware default
529 1 = Master mode
530 2 = Slave mode
531 3 = Auto master/slave
532
533 Disable rx flow control with ethtool
534 ------------------------------------
535
536 In order to disable receive flow control using ethtool, you must turn
537 off auto-negotiation on the same command line.
538
539 For example:
540
541 ethtool -A eth? autoneg off rx off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543
544Support
545=======
546
547For general information, go to the Intel support website at:
548
549 http://support.intel.com
550
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800551 or the Intel Wired Networking project hosted by Sourceforge at:
552
553 http://sourceforge.net/projects/e1000
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555If an issue is identified with the released source code on the supported
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800556kernel with a supported adapter, email the specific information related
557to the issue to e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559
560License
561=======
562
Jesse Brandeburg55be0622006-03-15 12:18:13 -0800563This software program is released under the terms of a license agreement
564between you ('Licensee') and Intel. Do not use or load this software or any
565associated materials (collectively, the 'Software') until you have carefully
566read the full terms and conditions of the file COPYING located in this software
567package. By loading or using the Software, you agree to the terms of this
568Agreement. If you do not agree with the terms of this Agreement, do not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569install or use the Software.
570
571* Other names and brands may be claimed as the property of others.