xref: /freebsd/share/man/man4/fxp.4 (revision d37ea99837e6ad50837fd9fe1771ddf1c3ba6002)
1.\"
2.\" Copyright (c) 1997 David E. O'Brien
3.\"
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\"
15.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
16.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
19.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25.\"
26.\" $FreeBSD$
27.\"
28.Dd May 9, 2004
29.Dt FXP 4
30.Os
31.Sh NAME
32.Nm fxp
33.Nd Intel EtherExpress PRO/100 Ethernet device driver
34.Sh SYNOPSIS
35.Cd "device miibus"
36.Cd "device fxp"
37.Sh DESCRIPTION
38The
39.Nm
40driver provides support for Ethernet adapters based on the Intel
41i82557, i82558, i82559, i82550, and i82562 chips.
42This includes the following adapters:
43.Pp
44.Bl -bullet -compact
45.It
46Intel EtherExpress PRO/10
47.It
48Intel InBusiness 10/100
49.It
50Intel PRO/100B / EtherExpressPRO/100 B PCI Adapter
51.It
52Intel PRO/100+ Management Adapter
53.It
54Intel PRO/100 VE Desktop Adapter
55.It
56Intel PRO/100 M Desktop Adapter
57.It
58Intel PRO/100 S Desktop, Server and Dual-Port Server Adapters
59.It
60Contec C-NET(PI)-100TX (PC98)
61.It
62NEC PC-9821Ra20, Rv20, Xv13, Xv20 internal 100Base-TX (PC98)
63.It
64NEC PC-9821X-B06 (PC98)
65.It
66Many on-board network interfaces on Intel motherboards.
67.El
68.Pp
69The
70.Nm
71driver supports the following media types:
72.Pp
73.Bl -tag -width xxxxxxxxxxxxxxxxxxxx
74.It autoselect
75Enable autoselection of the media type and options
76.It 10baseT/UTP
77Set 10Mbps operation
78.It 100baseTX
79Set 100Mbps (Fast Ethernet) operation
80.El
81.Pp
82The
83.Nm
84driver supports the following media options:
85.Pp
86.Bl -tag -width xxxxxxxxxxxxxxxxxxxx
87.It full-duplex
88Set full duplex operation
89.El
90.Pp
91Note that 100baseTX media type is not available on the Pro/10.
92For further information on configuring this device, see
93.Xr ifconfig 8 .
94.Pp
95The
96.Nm
97driver also supports a special link option:
98.Bl -tag -width link0
99.It Cm link0
100Some chip revisions have loadable microcode which can be used to reduce the
101interrupt load on the host cpu.
102Not all boards have microcode support.
103Setting the
104.Cm link0
105flag with
106.Xr ifconfig 8
107will download the microcode to the chip if it is available.
108.El
109.Sh DIAGNOSTICS
110.Bl -diag
111.It "fxp%d: couldn't map memory"
112A fatal initialization error has occurred.
113.It "fxp%d: couldn't map interrupt"
114A fatal initialization error has occurred.
115.It "fxp%d: Failed to malloc memory"
116There are not enough mbuf's available for allocation.
117.It "fxp%d: device timeout"
118The device has stopped responding to the network, or there is a problem with
119the network connection (cable).
120.It "fxp%d: Ethernet address ff:ff:ff:ff:ff:ff"
121In some Alpha's (AXPpci and Multia) you must tell the driver to use (slower)
122I/O rather than memory to access the card.
123Create, if it does not yet exist, and add to the file
124.Pa /boot/device.hints
125the line
126.Dq Li hint.fxp.0.prefer_iomap="0" .
127.It "fxp%d: Microcode loaded, int_delay: %d usec  bundle_max: %d"
128The chip has successfully downloaded the microcode, and changed the
129parameterized values to the given settings.
130.El
131.Sh SEE ALSO
132.Xr arp 4 ,
133.Xr miibus 4 ,
134.Xr netintro 4 ,
135.Xr ng_ether 4 ,
136.Xr ifconfig 8
137.Sh HISTORY
138The
139.Nm
140device driver first appeared in
141.Fx 2.1 .
142.Sh AUTHORS
143.An -nosplit
144The
145.Nm
146device driver was written by
147.An David Greenman .
148It has then been updated to use the busdma API and made endian-clean by
149.An Maxime Henrion .
150This manual page was written by
151.An David E. O'Brien .
152