BPicture: Fix archive constructor.
[haiku.git] / src / add-ons / kernel / drivers / network / ipro1000 / README
blob56ed9711a01791ec4b444eaddd4dfe7f525ab7f7
1 $FreeBSD: /repoman/r/ncvs/src/sys/dev/em/README,v 1.1.2.8 2003/09/03 16:36:45 pdeuskar Exp $
2 FreeBSD* Driver for the Intel(R) PRO/1000 Family of Adapters
3 ============================================================
5 July 24, 2003
8 Contents
9 ========
11 - Overview
12 - Supported Adapters
13 - Building and Installation
14 - Speed and Duplex Configuration
15 - Additional Configurations
16 - Known Limitations
17 - Support
18 - License
21 Overview
22 ========
24 This file describes the FreeBSD* driver, version 1.7.x, for the Intel(R)
25 PRO/1000 Family of Adapters. This driver has been developed for use with 
26 FreeBSD, version 4.7. 
28 For questions related to hardware requirements, refer to the documentation 
29 supplied with your Intel PRO/1000 adapter. All hardware requirements listed 
30 apply to use with FreeBSD.
33 Supported Adapters
34 ==================
36 The following Intel network adapters are compatible with the drivers in this 
37 release:
39    Controller  Adapter Name                         Board IDs
40    ----------  ------------                         ---------
42    82542       PRO/1000 Gigabit Server Adapter      700262-xxx, 717037-xxx
44    82543       PRO/1000 F Server Adapter            738640-xxx, A38888-xxx,
45                                                     A06512-xxx
47    82543       PRO/1000 T Server Adapter            A19845-xxx, A33948-xxx
49    82544       PRO/1000 XT Server Adapter           A51580-xxx
51    82544       PRO/1000 XF Server Adapter           A50484-xxx
53    82544       PRO/1000 T Desktop Adapter           A62947-xxx
55    82540       PRO/1000 MT Desktop Adapter          A78408-xxx
57    82541       PRO/1000 MT Desktop Adapter          C91016-xxx
59    82545       PRO/1000 MT Server Adapter           A92165-xxx
61    82545       PRO/1000 MF Server Adapter           A91622-xxx
63    82545       PRO/1000 MF Server Adapter(LX)       A91624-xxx
65    82546       PRO/1000 MT Dual Port Server Adapter A92111-xxx
67    82546       PRO/1000 MF Dual Port Server Adapter A91620-xxx
69    82546EB     PRO/1000 MT Quad Port Server Adapter C11227-xxx 
71    82547       PRO/1000 CT Network Connection
74 To verify your Intel adapter is supported, find the board ID number on the
75 adapter. Look for a label that has a barcode and a number in the format of
76 123456-001 (six digits hyphen three digits). Match this to the list of 
77 numbers above.
79 For more information on how to identify your adapter, go to the Adapter &
80 Driver ID Guide at:
82     http://support.intel.com/support/network/adapter/pro100/21397.htm
84 For the latest Intel network drivers for FreeBSD, see:
86     http://appsr.intel.com/scripts-df/support_intel.asp
89 Building and Installation
90 =========================
92 NOTE: The driver can be installed as a dynamic loadable kernel module or 
93       compiled into the kernel. You must have kernel sources installed in 
94       order to compile the driver module.
96 In the instructions below, x.x.x is the driver version as indicated in the 
97 name of the driver tar file.
99 1. Move the base driver tar file to the directory of your choice. For 
100    example, use /home/username/em or /usr/local/src/em.
102 2. Untar/unzip the archive:
104         tar xvfz em-x.x.x.tar.gz
106    This will create an em-x.x.x directory.
108 3. To create a loadable module, perform the following steps. 
109    NOTE: To compile the driver into the kernel, go directly to step 4.
111         a. To compile the module
113                   cd em-x.x.x
114                   make
116         b. To install the compiled module in system directory:
117          
118                   make install
119                 
120         c. If you want the driver to load automatically when the system is booted:
122               1. Follow steps a, and b above to compile and install the module
123               2. Edit /boot/loader.conf, and add the following line:
125                   if_em_load="YES"
127 4. To compile the driver into the kernel:
129         cd em-x.x.x/src
131         cp if_em* /usr/src/sys/dev/em
133         cp Makefile.kernel /usr/src/sys/modules/em/Makefile
135    Edit the /usr/src/sys/conf/files.i386 file, and add the following lines:
137         dev/em/if_em.c optional em
139         dev/em/if_em_hw.c optional em 
141    Remove the following lines from the /usr/src/sys/conf/files.i386 file, 
142    if they exist:
144         dev/em/if_em_fxhw.c optional em
145         dev/em/if_em_phy.c optional em
147    Edit the kernel configuration file (i.e., GENERIC or MYKERNEL) in 
148    /usr/src/sys/i386/conf, and ensure the following line is present:
150         device em
152    Compile and install the kernel. The system must be rebooted for the kernel
153    updates to take effect. For additional information on compiling the 
154    kernel, consult the FreeBSD operating system documentation.
156 5. To assign an IP address to the interface, enter the following:
158         ifconfig em<interface_num> <IP_address>
160 6. Verify that the interface works. Enter the following, where <IP_address>
161    is the IP address for another machine on the same subnet as the interface
162    that is being tested:
164         ping <IP_address>
166 7. To configure the IP address to remain after reboot, edit /etc/rc.conf, 
167    and create the appropriate ifconfig_em<interface_num> entry:
169         ifconfig_em<interface_num>="<ifconfig_settings>"
171    Example usage:
173         ifconfig_em0="inet 192.168.10.1 netmask 255.255.255.0"
175    NOTE: For assistance, see the ifconfig man page.
178 Speed and Duplex Configuration
179 ==============================
181 By default, the adapter auto-negotiates the speed and duplex of the 
182 connection. If there is a specific need, the ifconfig utility can be used to 
183 configure the speed and duplex settings on the adapter. Example usage:
185         ifconfig em<interface_num> <IP_address> media 100baseTX mediaopt 
186             full-duplex
188    NOTE: Only use mediaopt to set the driver to full-duplex. If mediaopt is 
189          not specified and you are not running at gigabit speed, the driver 
190          defaults to half-duplex.
193 This driver supports the following media type options:
195    autoselect      -  Enables auto-negotiation for speed and duplex.
197    10baseT/UTP     -  Sets speed to 10 Mbps. Use the ifconfig mediaopt 
198                       option to select full-duplex mode.
200    100baseTX       -  Sets speed to 100 Mbps. Use the ifconfig mediaopt
201                       option to select full-duplex mode.
203    1000baseTX      -  Sets speed to 1000 Mbps. In this case, the driver
204                       supports only full-duplex mode.
206    1000baseSX      -  Sets speed to 1000 Mbps. In this case, the driver
207                       supports only full-duplex mode.
209 For more information on the ifconfig utility, see the ifconfig man page.
212 Additional Configurations
213 =========================
215 The driver supports Transmit/Receive Checksum Offload and Jumbo Frames on 
216 all but the 82542-based adapters. For specific adapters, refer to the 
217 Supported Adapters section.
219   Jumbo Frames
220   ------------
221   To enable Jumbo Frames, use the ifconfig utility to increase the MTU 
222   beyond 1500 bytes. 
224   NOTES: Only enable Jumbo Frames if your network infrastructure supports 
225          them.
226    
227          The Jumbo Frames setting on the switch must be set to at least 
228          22 bytes larger than that of the adapter.
230   The Jumbo Frames MTU range for Intel Adapters is 1500 to 16114. The default 
231   MTU range is 1500. To modify the setting, enter the following:
233         ifconfig em<interface_num> <hostname or IP address> mtu 9000
235   To confirm an interface's MTU value, use the ifconfig command. To confirm
236   the MTU used between two specific devices, use:
238         route get <destination_IP_address>
240   VLANs
241   -----
242   To create a new VLAN pseudo-interface:
244         ifconfig <vlan_name> create
246   To associate the VLAN pseudo-interface with a physical interface and 
247   assign a VLAN ID, IP address, and netmask:
249         ifconfig <vlan_name> <ip_address> netmask <subnet_mask> vlan 
250            <vlan_id> vlandev <physical_interface>
252   Example:
254         ifconfig vlan10 10.0.0.1 netmask 255.255.255.0 vlan10 vlandev em0
256   In this example, all packets will be marked on egress with  802.1Q VLAN 
257   tags, specifying a VLAN ID of 10.
259   To remove a VLAN pseudo-interface:
261         ifconfig <vlan_name> destroy
263   Polling
264   -------
265   To enable polling in the driver, add the following options to the kernel 
266   configuration, and then recompile the kernel:
268         options DEVICE_POLLING
269         options HZ=1000
271   At runtime, use the following command to turn on polling mode. Similarly,
272   turn off polling mode by setting the variable to 0:
274         sysctl kern.polling.enable=1
277   NOTES: DEVICE POLLING is only valid for non-SMP kernels.
279          The driver has to be built into the kernel for DEVICE POLLING to be
280          enabled in the driver.
283 Known Limitations
284 =================
286   There are known performance issues with this driver when running UDP traffic
287   with Jumbo Frames. Intel recommends not using Jumbo Frames for UDP traffic.
290   82541/82547 can't link or is slow to link with some link partners
291   -----------------------------------------------------------------
293   There is a known compatibility issue with 82541/82547 and some switches 
294   where link will not be established, or will be slow to establish.  In 
295   particular, these switches are known to be incompatible with 82541/82547:
297         Planex FXG-08TE
298         I-O Data ETG-SH8
300   To workaround the issue, the driver can be compiled with an override of the 
301   PHY's master/slave setting.  Forcing master or forcing slave mode will 
302   improve time-to-link.
304   Edit ./em.x.x.x/src/if_em.h to remove the #define EM_MASTER_SLAVE 
305   from within the comments.  
307       /* #define EM_MASTER_SLAVE  2 */
308       #define EM_MASTER_SLAVE  2 
310   Use one of the following options.
311       0 = Hardware default
312       1 = Master mode
313       2 = Slave mode
314       3 = Auto master/slave
316   Recompile the module (refer to step 3 above)
317   a. To compile the module
319           cd em-x.x.x
320           make clean
321           make
323    b. To install the compiled module in system directory:
325           make install
328 Support
329 =======
331 For general information and support, go to the Intel support website at:
333         http://support.intel.com
335 If an issue is identified with the released source code on the supported
336 kernel with a supported adapter, email the specific information related to 
337 the issue to freebsdnic@mailbox.intel.com.
340 License
341 =======
343 This software program is released under the terms of a license agreement 
344 between you ('Licensee') and Intel. Do not use or load this software or any 
345 associated materials (collectively, the 'Software') until you have carefully 
346 read the full terms and conditions of the LICENSE located in this software 
347 package. By loading or using the Software, you agree to the terms of this 
348 Agreement. If you do not agree with the terms of this Agreement, do not 
349 install or use the Software.
351 * Other names and brands may be claimed as the property of others.