Back to home page

OSCL-LXR

 
 

    


0001 .. SPDX-License-Identifier: GPL-2.0+
0002 
0003 ==========================================================
0004 Linux Base Driver for Intel(R) Ethernet Network Connection
0005 ==========================================================
0006 
0007 Intel Gigabit Linux driver.
0008 Copyright(c) 1999 - 2013 Intel Corporation.
0009 
0010 Contents
0011 ========
0012 
0013 - Identifying Your Adapter
0014 - Command Line Parameters
0015 - Speed and Duplex Configuration
0016 - Additional Configurations
0017 - Support
0018 
0019 Identifying Your Adapter
0020 ========================
0021 
0022 For more information on how to identify your adapter, go to the Adapter &
0023 Driver ID Guide at:
0024 
0025     http://support.intel.com/support/go/network/adapter/idguide.htm
0026 
0027 For the latest Intel network drivers for Linux, refer to the following
0028 website.  In the search field, enter your adapter name or type, or use the
0029 networking link on the left to search for your adapter:
0030 
0031     http://support.intel.com/support/go/network/adapter/home.htm
0032 
0033 Command Line Parameters
0034 =======================
0035 
0036 The default value for each parameter is generally the recommended setting,
0037 unless otherwise noted.
0038 
0039 NOTES:
0040         For more information about the AutoNeg, Duplex, and Speed
0041         parameters, see the "Speed and Duplex Configuration" section in
0042         this document.
0043 
0044         For more information about the InterruptThrottleRate,
0045         RxIntDelay, TxIntDelay, RxAbsIntDelay, and TxAbsIntDelay
0046         parameters, see the application note at:
0047         http://www.intel.com/design/network/applnots/ap450.htm
0048 
0049 AutoNeg
0050 -------
0051 
0052 (Supported only on adapters with copper connections)
0053 
0054 :Valid Range:   0x01-0x0F, 0x20-0x2F
0055 :Default Value: 0x2F
0056 
0057 This parameter is a bit-mask that specifies the speed and duplex settings
0058 advertised by the adapter.  When this parameter is used, the Speed and
0059 Duplex parameters must not be specified.
0060 
0061 NOTE:
0062        Refer to the Speed and Duplex section of this readme for more
0063        information on the AutoNeg parameter.
0064 
0065 Duplex
0066 ------
0067 
0068 (Supported only on adapters with copper connections)
0069 
0070 :Valid Range:   0-2 (0=auto-negotiate, 1=half, 2=full)
0071 :Default Value: 0
0072 
0073 This defines the direction in which data is allowed to flow.  Can be
0074 either one or two-directional.  If both Duplex and the link partner are
0075 set to auto-negotiate, the board auto-detects the correct duplex.  If the
0076 link partner is forced (either full or half), Duplex defaults to half-
0077 duplex.
0078 
0079 FlowControl
0080 -----------
0081 
0082 :Valid Range:   0-3 (0=none, 1=Rx only, 2=Tx only, 3=Rx&Tx)
0083 :Default Value: Reads flow control settings from the EEPROM
0084 
0085 This parameter controls the automatic generation(Tx) and response(Rx)
0086 to Ethernet PAUSE frames.
0087 
0088 InterruptThrottleRate
0089 ---------------------
0090 
0091 (not supported on Intel(R) 82542, 82543 or 82544-based adapters)
0092 
0093 :Valid Range:
0094    0,1,3,4,100-100000 (0=off, 1=dynamic, 3=dynamic conservative,
0095    4=simplified balancing)
0096 :Default Value: 3
0097 
0098 The driver can limit the amount of interrupts per second that the adapter
0099 will generate for incoming packets. It does this by writing a value to the
0100 adapter that is based on the maximum amount of interrupts that the adapter
0101 will generate per second.
0102 
0103 Setting InterruptThrottleRate to a value greater or equal to 100
0104 will program the adapter to send out a maximum of that many interrupts
0105 per second, even if more packets have come in. This reduces interrupt
0106 load on the system and can lower CPU utilization under heavy load,
0107 but will increase latency as packets are not processed as quickly.
0108 
0109 The default behaviour of the driver previously assumed a static
0110 InterruptThrottleRate value of 8000, providing a good fallback value for
0111 all traffic types,but lacking in small packet performance and latency.
0112 The hardware can handle many more small packets per second however, and
0113 for this reason an adaptive interrupt moderation algorithm was implemented.
0114 
0115 Since 7.3.x, the driver has two adaptive modes (setting 1 or 3) in which
0116 it dynamically adjusts the InterruptThrottleRate value based on the traffic
0117 that it receives. After determining the type of incoming traffic in the last
0118 timeframe, it will adjust the InterruptThrottleRate to an appropriate value
0119 for that traffic.
0120 
0121 The algorithm classifies the incoming traffic every interval into
0122 classes.  Once the class is determined, the InterruptThrottleRate value is
0123 adjusted to suit that traffic type the best. There are three classes defined:
0124 "Bulk traffic", for large amounts of packets of normal size; "Low latency",
0125 for small amounts of traffic and/or a significant percentage of small
0126 packets; and "Lowest latency", for almost completely small packets or
0127 minimal traffic.
0128 
0129 In dynamic conservative mode, the InterruptThrottleRate value is set to 4000
0130 for traffic that falls in class "Bulk traffic". If traffic falls in the "Low
0131 latency" or "Lowest latency" class, the InterruptThrottleRate is increased
0132 stepwise to 20000. This default mode is suitable for most applications.
0133 
0134 For situations where low latency is vital such as cluster or
0135 grid computing, the algorithm can reduce latency even more when
0136 InterruptThrottleRate is set to mode 1. In this mode, which operates
0137 the same as mode 3, the InterruptThrottleRate will be increased stepwise to
0138 70000 for traffic in class "Lowest latency".
0139 
0140 In simplified mode the interrupt rate is based on the ratio of TX and
0141 RX traffic.  If the bytes per second rate is approximately equal, the
0142 interrupt rate will drop as low as 2000 interrupts per second.  If the
0143 traffic is mostly transmit or mostly receive, the interrupt rate could
0144 be as high as 8000.
0145 
0146 Setting InterruptThrottleRate to 0 turns off any interrupt moderation
0147 and may improve small packet latency, but is generally not suitable
0148 for bulk throughput traffic.
0149 
0150 NOTE:
0151        InterruptThrottleRate takes precedence over the TxAbsIntDelay and
0152        RxAbsIntDelay parameters.  In other words, minimizing the receive
0153        and/or transmit absolute delays does not force the controller to
0154        generate more interrupts than what the Interrupt Throttle Rate
0155        allows.
0156 
0157 CAUTION:
0158           If you are using the Intel(R) PRO/1000 CT Network Connection
0159           (controller 82547), setting InterruptThrottleRate to a value
0160           greater than 75,000, may hang (stop transmitting) adapters
0161           under certain network conditions.  If this occurs a NETDEV
0162           WATCHDOG message is logged in the system event log.  In
0163           addition, the controller is automatically reset, restoring
0164           the network connection.  To eliminate the potential for the
0165           hang, ensure that InterruptThrottleRate is set no greater
0166           than 75,000 and is not set to 0.
0167 
0168 NOTE:
0169        When e1000 is loaded with default settings and multiple adapters
0170        are in use simultaneously, the CPU utilization may increase non-
0171        linearly.  In order to limit the CPU utilization without impacting
0172        the overall throughput, we recommend that you load the driver as
0173        follows::
0174 
0175            modprobe e1000 InterruptThrottleRate=3000,3000,3000
0176 
0177        This sets the InterruptThrottleRate to 3000 interrupts/sec for
0178        the first, second, and third instances of the driver.  The range
0179        of 2000 to 3000 interrupts per second works on a majority of
0180        systems and is a good starting point, but the optimal value will
0181        be platform-specific.  If CPU utilization is not a concern, use
0182        RX_POLLING (NAPI) and default driver settings.
0183 
0184 RxDescriptors
0185 -------------
0186 
0187 :Valid Range:
0188  - 48-256 for 82542 and 82543-based adapters
0189  - 48-4096 for all other supported adapters
0190 :Default Value: 256
0191 
0192 This value specifies the number of receive buffer descriptors allocated
0193 by the driver.  Increasing this value allows the driver to buffer more
0194 incoming packets, at the expense of increased system memory utilization.
0195 
0196 Each descriptor is 16 bytes.  A receive buffer is also allocated for each
0197 descriptor and can be either 2048, 4096, 8192, or 16384 bytes, depending
0198 on the MTU setting. The maximum MTU size is 16110.
0199 
0200 NOTE:
0201        MTU designates the frame size.  It only needs to be set for Jumbo
0202        Frames.  Depending on the available system resources, the request
0203        for a higher number of receive descriptors may be denied.  In this
0204        case, use a lower number.
0205 
0206 RxIntDelay
0207 ----------
0208 
0209 :Valid Range:   0-65535 (0=off)
0210 :Default Value: 0
0211 
0212 This value delays the generation of receive interrupts in units of 1.024
0213 microseconds.  Receive interrupt reduction can improve CPU efficiency if
0214 properly tuned for specific network traffic.  Increasing this value adds
0215 extra latency to frame reception and can end up decreasing the throughput
0216 of TCP traffic.  If the system is reporting dropped receives, this value
0217 may be set too high, causing the driver to run out of available receive
0218 descriptors.
0219 
0220 CAUTION:
0221           When setting RxIntDelay to a value other than 0, adapters may
0222           hang (stop transmitting) under certain network conditions.  If
0223           this occurs a NETDEV WATCHDOG message is logged in the system
0224           event log.  In addition, the controller is automatically reset,
0225           restoring the network connection.  To eliminate the potential
0226           for the hang ensure that RxIntDelay is set to 0.
0227 
0228 RxAbsIntDelay
0229 -------------
0230 
0231 (This parameter is supported only on 82540, 82545 and later adapters.)
0232 
0233 :Valid Range:   0-65535 (0=off)
0234 :Default Value: 128
0235 
0236 This value, in units of 1.024 microseconds, limits the delay in which a
0237 receive interrupt is generated.  Useful only if RxIntDelay is non-zero,
0238 this value ensures that an interrupt is generated after the initial
0239 packet is received within the set amount of time.  Proper tuning,
0240 along with RxIntDelay, may improve traffic throughput in specific network
0241 conditions.
0242 
0243 Speed
0244 -----
0245 
0246 (This parameter is supported only on adapters with copper connections.)
0247 
0248 :Valid Settings: 0, 10, 100, 1000
0249 :Default Value:  0 (auto-negotiate at all supported speeds)
0250 
0251 Speed forces the line speed to the specified value in megabits per second
0252 (Mbps).  If this parameter is not specified or is set to 0 and the link
0253 partner is set to auto-negotiate, the board will auto-detect the correct
0254 speed.  Duplex should also be set when Speed is set to either 10 or 100.
0255 
0256 TxDescriptors
0257 -------------
0258 
0259 :Valid Range:
0260   - 48-256 for 82542 and 82543-based adapters
0261   - 48-4096 for all other supported adapters
0262 :Default Value: 256
0263 
0264 This value is the number of transmit descriptors allocated by the driver.
0265 Increasing this value allows the driver to queue more transmits.  Each
0266 descriptor is 16 bytes.
0267 
0268 NOTE:
0269        Depending on the available system resources, the request for a
0270        higher number of transmit descriptors may be denied.  In this case,
0271        use a lower number.
0272 
0273 TxIntDelay
0274 ----------
0275 
0276 :Valid Range:   0-65535 (0=off)
0277 :Default Value: 8
0278 
0279 This value delays the generation of transmit interrupts in units of
0280 1.024 microseconds.  Transmit interrupt reduction can improve CPU
0281 efficiency if properly tuned for specific network traffic.  If the
0282 system is reporting dropped transmits, this value may be set too high
0283 causing the driver to run out of available transmit descriptors.
0284 
0285 TxAbsIntDelay
0286 -------------
0287 
0288 (This parameter is supported only on 82540, 82545 and later adapters.)
0289 
0290 :Valid Range:   0-65535 (0=off)
0291 :Default Value: 32
0292 
0293 This value, in units of 1.024 microseconds, limits the delay in which a
0294 transmit interrupt is generated.  Useful only if TxIntDelay is non-zero,
0295 this value ensures that an interrupt is generated after the initial
0296 packet is sent on the wire within the set amount of time.  Proper tuning,
0297 along with TxIntDelay, may improve traffic throughput in specific
0298 network conditions.
0299 
0300 XsumRX
0301 ------
0302 
0303 (This parameter is NOT supported on the 82542-based adapter.)
0304 
0305 :Valid Range:   0-1
0306 :Default Value: 1
0307 
0308 A value of '1' indicates that the driver should enable IP checksum
0309 offload for received packets (both UDP and TCP) to the adapter hardware.
0310 
0311 Copybreak
0312 ---------
0313 
0314 :Valid Range:   0-xxxxxxx (0=off)
0315 :Default Value: 256
0316 :Usage: modprobe e1000.ko copybreak=128
0317 
0318 Driver copies all packets below or equaling this size to a fresh RX
0319 buffer before handing it up the stack.
0320 
0321 This parameter is different than other parameters, in that it is a
0322 single (not 1,1,1 etc.) parameter applied to all driver instances and
0323 it is also available during runtime at
0324 /sys/module/e1000/parameters/copybreak
0325 
0326 SmartPowerDownEnable
0327 --------------------
0328 
0329 :Valid Range: 0-1
0330 :Default Value:  0 (disabled)
0331 
0332 Allows PHY to turn off in lower power states. The user can turn off
0333 this parameter in supported chipsets.
0334 
0335 Speed and Duplex Configuration
0336 ==============================
0337 
0338 Three keywords are used to control the speed and duplex configuration.
0339 These keywords are Speed, Duplex, and AutoNeg.
0340 
0341 If the board uses a fiber interface, these keywords are ignored, and the
0342 fiber interface board only links at 1000 Mbps full-duplex.
0343 
0344 For copper-based boards, the keywords interact as follows:
0345 
0346 - The default operation is auto-negotiate.  The board advertises all
0347   supported speed and duplex combinations, and it links at the highest
0348   common speed and duplex mode IF the link partner is set to auto-negotiate.
0349 
0350 - If Speed = 1000, limited auto-negotiation is enabled and only 1000 Mbps
0351   is advertised (The 1000BaseT spec requires auto-negotiation.)
0352 
0353 - If Speed = 10 or 100, then both Speed and Duplex should be set.  Auto-
0354   negotiation is disabled, and the AutoNeg parameter is ignored.  Partner
0355   SHOULD also be forced.
0356 
0357 The AutoNeg parameter is used when more control is required over the
0358 auto-negotiation process.  It should be used when you wish to control which
0359 speed and duplex combinations are advertised during the auto-negotiation
0360 process.
0361 
0362 The parameter may be specified as either a decimal or hexadecimal value as
0363 determined by the bitmap below.
0364 
0365 ============== ====== ====== ======= ======= ====== ====== ======= ======
0366 Bit position   7      6      5       4       3      2      1       0
0367 Decimal Value  128    64     32      16      8      4      2       1
0368 Hex value      80     40     20      10      8      4      2       1
0369 Speed (Mbps)   N/A    N/A    1000    N/A     100    100    10      10
0370 Duplex                       Full            Full   Half   Full    Half
0371 ============== ====== ====== ======= ======= ====== ====== ======= ======
0372 
0373 Some examples of using AutoNeg::
0374 
0375   modprobe e1000 AutoNeg=0x01 (Restricts autonegotiation to 10 Half)
0376   modprobe e1000 AutoNeg=1 (Same as above)
0377   modprobe e1000 AutoNeg=0x02 (Restricts autonegotiation to 10 Full)
0378   modprobe e1000 AutoNeg=0x03 (Restricts autonegotiation to 10 Half or 10 Full)
0379   modprobe e1000 AutoNeg=0x04 (Restricts autonegotiation to 100 Half)
0380   modprobe e1000 AutoNeg=0x05 (Restricts autonegotiation to 10 Half or 100
0381   Half)
0382   modprobe e1000 AutoNeg=0x020 (Restricts autonegotiation to 1000 Full)
0383   modprobe e1000 AutoNeg=32 (Same as above)
0384 
0385 Note that when this parameter is used, Speed and Duplex must not be specified.
0386 
0387 If the link partner is forced to a specific speed and duplex, then this
0388 parameter should not be used.  Instead, use the Speed and Duplex parameters
0389 previously mentioned to force the adapter to the same speed and duplex.
0390 
0391 Additional Configurations
0392 =========================
0393 
0394 Jumbo Frames
0395 ------------
0396 
0397   Jumbo Frames support is enabled by changing the MTU to a value larger than
0398   the default of 1500.  Use the ifconfig command to increase the MTU size.
0399   For example::
0400 
0401        ifconfig eth<x> mtu 9000 up
0402 
0403   This setting is not saved across reboots.  It can be made permanent if
0404   you add::
0405 
0406        MTU=9000
0407 
0408   to the file /etc/sysconfig/network-scripts/ifcfg-eth<x>.  This example
0409   applies to the Red Hat distributions; other distributions may store this
0410   setting in a different location.
0411 
0412 Notes:
0413   Degradation in throughput performance may be observed in some Jumbo frames
0414   environments. If this is observed, increasing the application's socket buffer
0415   size and/or increasing the /proc/sys/net/ipv4/tcp_*mem entry values may help.
0416   See the specific application manual and /usr/src/linux*/Documentation/
0417   networking/ip-sysctl.txt for more details.
0418 
0419   - The maximum MTU setting for Jumbo Frames is 16110.  This value coincides
0420     with the maximum Jumbo Frames size of 16128.
0421 
0422   - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
0423     poor performance or loss of link.
0424 
0425   - Adapters based on the Intel(R) 82542 and 82573V/E controller do not
0426     support Jumbo Frames. These correspond to the following product names::
0427 
0428      Intel(R) PRO/1000 Gigabit Server Adapter
0429      Intel(R) PRO/1000 PM Network Connection
0430 
0431 ethtool
0432 -------
0433 
0434   The driver utilizes the ethtool interface for driver configuration and
0435   diagnostics, as well as displaying statistical information.  The ethtool
0436   version 1.6 or later is required for this functionality.
0437 
0438   The latest release of ethtool can be found from
0439   https://www.kernel.org/pub/software/network/ethtool/
0440 
0441 Enabling Wake on LAN (WoL)
0442 --------------------------
0443 
0444   WoL is configured through the ethtool utility.
0445 
0446   WoL will be enabled on the system during the next shut down or reboot.
0447   For this driver version, in order to enable WoL, the e1000 driver must be
0448   loaded when shutting down or rebooting the system.
0449 
0450 Support
0451 =======
0452 
0453 For general information, go to the Intel support website at:
0454 
0455     http://support.intel.com
0456 
0457 or the Intel Wired Networking project hosted by Sourceforge at:
0458 
0459     http://sourceforge.net/projects/e1000
0460 
0461 If an issue is identified with the released source code on the supported
0462 kernel with a supported adapter, email the specific information related
0463 to the issue to e1000-devel@lists.sf.net