xref: /freebsd/share/man/man4/ste.4 (revision daf1cffce2e07931f27c6c6998652e90df6ba87e)
1.\" Copyright (c) 1997, 1998, 1999
2.\"	Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by Bill Paul.
15.\" 4. Neither the name of the author nor the names of any co-contributors
16.\"    may be used to endorse or promote products derived from this software
17.\"   without specific prior written permission.
18.\"
19.\" THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
20.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22.\" ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
23.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29.\" THE POSSIBILITY OF SUCH DAMAGE.
30.\"
31.\" $FreeBSD$
32.\"
33.Dd August 21, 1999
34.Dt STE 4
35.Os FreeBSD
36.Sh NAME
37.Nm ste
38.Nd
39Sundance Technologies ST201 fast ethernet device driver
40.Sh SYNOPSIS
41.Cd "device miibus"
42.Cd "device ste"
43.Sh DESCRIPTION
44The
45.Nm
46driver provides support for PCI ethernet adapters and embedded
47controllers based on the Sundance Technologies ST201 PCI fast
48ethernet controller chip. This includes the D-Link DFE-550TX.
49.Pp
50The Sundance ST201 uses bus master DMA and is designed to be a
513Com Etherlink XL workalike. It uses the same DMA descriptor
52structure and is very similar in operation, however its register
53layout is different. The ST201 has a 64-bit multicast hash filter
54and a single perfect filter entry for the station address. IT
55supports both 10 and 100Mbps speeds in either full or half duplex
56using an MII transceiver.
57.Pp
58The
59.Nm
60driver supports the following media types:
61.Pp
62.Bl -tag -width xxxxxxxxxxxxxxxxxxxx
63.It autoselect
64Enable autoselection of the media type and options.
65The user can manually override
66the autoselected mode by adding media options to the
67.Pa /etc/rc.conf
68fine.
69.It 10baseT/UTP
70Set 10Mbps operation. The
71.Ar mediaopt
72option can also be used to select either
73.Ar full-duplex
74or
75.Ar half-duplex modes.
76.It 100baseTX
77Set 100Mbps (fast ethernet) operation. The
78.Ar mediaopt
79option can also be used to select either
80.Ar full-duplex
81or
82.Ar half-duplex
83modes.
84.El
85.Pp
86The
87.Nm
88driver supports the following media options:
89.Pp
90.Bl -tag -width xxxxxxxxxxxxxxxxxxxx
91.It full-duplex
92Force full duplex operation
93.It half-duplex
94Force half duplex operation.
95.El
96.Pp
97For more information on configuring this device, see
98.Xr ifconfig 8 .
99.Sh DIAGNOSTICS
100.Bl -diag
101.It "ste%d: couldn't map ports/memory"
102A fatal initialization error has occurred.
103.It "ste%d: couldn't map interrupt"
104A fatal initialization error has occurred.
105.It "ste%d: watchdog timeout"
106The device has stopped responding to the network, or there is a problem with
107the network connection (cable).
108.It "ste%d: no memory for rx list"
109The driver failed to allocate an mbuf for the receiver ring.
110.It "ste%d: no memory for tx list"
111The driver failed to allocate an mbuf for the transmitter ring when
112allocating a pad buffer or collapsing an mbuf chain into a cluster.
113.It "ste%d: chip is in D3 power state -- setting to D0"
114This message applies only to adapters which support power
115management. Some operating systems place the controller in low power
116mode when shutting down, and some PCI BIOSes fail to bring the chip
117out of this state before configuring it. The controller loses all of
118its PCI configuration in the D3 state, so if the BIOS does not set
119it back to full power mode in time, it won't be able to configure it
120correctly. The driver tries to detect this condition and bring
121the adapter back to the D0 (full power) state, but this may not be
122enough to return the driver to a fully operational condition. If
123you see this message at boot time and the driver fails to attach
124the device as a network interface, you will have to perform second
125warm boot to have the device properly configured.
126.Pp
127Note that this condition only occurs when warm booting from another
128operating system. If you power down your system prior to booting
129.Fx ,
130the card should be configured correctly.
131.El
132.Sh SEE ALSO
133.Xr arp 4 ,
134.Xr netintro 4 ,
135.Xr ifconfig 8 ,
136.Xr ng_ether 8
137.Rs
138.%T Sundance ST201 data sheet
139.%O http://www.sundanceti.com
140.Re
141.Sh HISTORY
142The
143.Nm
144device driver first appeared in
145.Fx 3.0 .
146.Sh AUTHORS
147The
148.Nm
149driver was written by
150.An Bill Paul Aq wpaul@ee.columbia.edu .
151