man4: use .Mt for emails (1/2)
[dragonfly.git] / share / man / man4 / tl.4
1 .\" Copyright (c) 1997, 1998
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: src/share/man/man4/tl.4,v 1.10.2.4 2003/02/17 21:20:39 trhodes Exp $
32 .\"
33 .Dd May 1, 1998
34 .Dt TL 4
35 .Os
36 .Sh NAME
37 .Nm tl
38 .Nd Texas Instruments ThunderLAN ethernet device driver
39 .Sh SYNOPSIS
40 .Cd "device miibus"
41 .Cd "device tl"
42 .Sh DESCRIPTION
43 The
44 .Nm
45 driver provides support for PCI ethernet adapters based on the Texas
46 Instruments ThunderLAN ethernet controller chip.
47 This includes a large
48 number of Compaq PCI-bus ethernet adapters as well as the integrated
49 ethernet controllers built into several models of Compaq Prosignia
50 servers and Compaq Deskpro desktop machines.
51 This driver also supports
52 the Olicom OC-2135/2138, OC-2325 and OC-2326 10/100 TX UTP adapters
53 and the Racore 8165 10/100baseTX and 8148 10baseT/100baseTX/100baseFX
54 multi-personality cards.
55 .Pp
56 The ThunderLAN controller has a standard MII interface that supports
57 up to 32 physical interface devices (PHYs). It also has a built-in
58 10baseT PHY hardwired at MII address 31, which may be used in some
59 10Mbps-only hardware configurations.
60 In 100Mbps configurations, a
61 National Semiconductor DP83840A or other MII-compliant PHY may be
62 attached to the ThunderLAN's MII bus.
63 If a DP83840A or equivalent
64 is available, the ThunderLAN chip can operate at either 100Mbps or
65 10Mbps in either half-duplex or full-duplex modes.
66 The ThunderLAN's
67 built-in PHY and the DP83840A also support autonegotiation.
68 .Pp
69 The
70 .Nm
71 driver supports the following media types:
72 .Bl -tag -width xxxxxxxxxxxxxxxxxxxx
73 .It autoselect
74 Enable autoselection of the media type and options.
75 Note that this
76 option is only available on those PHYs that support autonegotiation.
77 Also, the PHY will not advertise those modes that have been explicitly
78 disabled using the following media options.
79 .It 10baseT/UTP
80 Set 10Mbps operation
81 .It 100baseTX
82 Set 100Mbps (fast ethernet) operation
83 .It 10base5/AUI
84 Enable AUI/BNC interface (useful only with the built-in PHY).
85 .El
86 .Pp
87 The
88 .Nm
89 driver supports the following media options:
90 .Bl -tag -width xxxxxxxxxxxxxxxxxxxx
91 .It full-duplex
92 Force full duplex operation
93 .It half-duplex
94 Force half duplex operation.
95 .It hw-loopback
96 Enable hardware loopback mode.
97 .El
98 .Pp
99 Note that the 100baseTX media type is only available if supported
100 by the PHY.
101 For more information on configuring this device, see
102 .Xr ifconfig 8 .
103 .Sh DIAGNOSTICS
104 .Bl -diag
105 .It "tl%d: couldn't map memory"
106 A fatal initialization error has occurred.
107 .It "tl%d: couldn't map interrupt"
108 A fatal initialization error has occurred.
109 .It "tl%d: device timeout"
110 The device has stopped responding to the network, or there is a problem with
111 the network connection (cable).
112 .It "tl%d: no memory for rx list"
113 The driver failed to allocate an mbuf for the receiver ring.
114 .It "tl%d: no memory for tx list"
115 The driver failed to allocate an mbuf for the transmitter ring when
116 allocating a pad buffer or collapsing an mbuf chain into a cluster.
117 .El
118 .Sh SEE ALSO
119 .Xr arp 4 ,
120 .Xr ifmedia 4 ,
121 .Xr miibus 4 ,
122 .Xr netintro 4 ,
123 .Xr ng_ether 4 ,
124 .Xr ifconfig 8
125 .Sh HISTORY
126 The
127 .Nm
128 device driver first appeared in
129 .Fx 2.2 .
130 .Sh AUTHORS
131 The
132 .Nm
133 driver was written by
134 .An Bill Paul Aq Mt wpaul@ctr.columbia.edu .