]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/axge.4
OpenSSL: update to 3.0.11
[FreeBSD/FreeBSD.git] / share / man / man4 / axge.4
1 .\" Copyright (c) 1997, 1998, 1999, 2000-2003
2 .\"     Bill Paul <wpaul@windriver.com>. 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 .Dd October 4, 2023
32 .Dt AXGE 4
33 .Os
34 .Sh NAME
35 .Nm axge
36 .Nd "ASIX Electronics AX88178A/179/179A USB Gigabit Ethernet driver"
37 .Sh SYNOPSIS
38 To compile this driver into the kernel,
39 place the following lines in your
40 kernel configuration file:
41 .Bd -ragged -offset indent
42 .Cd "device xhci"
43 .Cd "device ehci"
44 .Cd "device uhci"
45 .Cd "device ohci"
46 .Cd "device usb"
47 .Cd "device miibus"
48 .Cd "device uether"
49 .Cd "device axge"
50 .Ed
51 .Pp
52 Alternatively, to load the driver as a
53 module at boot time, place the following line in
54 .Xr loader.conf 5 :
55 .Bd -literal -offset indent
56 if_axge_load="YES"
57 .Ed
58 .Sh DESCRIPTION
59 The
60 .Nm
61 driver provides support for USB Gigabit Ethernet adapters based on the ASIX
62 Electronics AX88179/AX88179A USB 3.0 and AX88178A USB 2.0 chipsets.
63 .Pp
64 The AX88179, AX88179A and AX88178A contain a 10/100/1000 Ethernet MAC with a
65 GMII interface for interfacing with the Gigabit Ethernet PHY.
66 .Pp
67 These devices will operate with both USB 1.x and USB 2.0 controllers, and the
68 AX88179/AX88179A will operate with USB 3.0 controllers.
69 Packets are received and transmitted over separate USB bulk transfer endpoints.
70 .Pp
71 The
72 .Nm
73 driver supports the following media types:
74 .Bl -tag -width ".Cm 10baseT/UTP"
75 .It Cm autoselect
76 Enable autoselection of the media type and options.
77 The user can manually override
78 the autoselected mode by adding media options to
79 .Xr rc.conf 5 .
80 .It Cm 10baseT/UTP
81 Set 10Mbps operation.
82 The
83 .Xr ifconfig 8
84 .Cm mediaopt
85 option can also be used to select either
86 .Cm full-duplex
87 or
88 .Cm half-duplex
89 modes.
90 .It Cm 100baseTX
91 Set 100Mbps (Fast Ethernet) operation.
92 The
93 .Xr ifconfig 8
94 .Cm mediaopt
95 option can also be used to select either
96 .Cm full-duplex
97 or
98 .Cm half-duplex
99 modes.
100 .It Cm 1000baseT
101 Set 1000Mbps (Gigabit Ethernet) operation (AX88178 only).
102 The
103 .Xr ifconfig 8
104 .Cm mediaopt
105 option can also be used to select either
106 .Cm full-duplex
107 or
108 .Cm half-duplex
109 modes.
110 .El
111 .Pp
112 The
113 .Nm
114 driver supports the following media options:
115 .Bl -tag -width ".Cm full-duplex"
116 .It Cm full-duplex
117 Force full duplex operation.
118 .It Cm half-duplex
119 Force half duplex operation.
120 .El
121 .Pp
122 For more information on configuring this device, see
123 .Xr ifconfig 8 .
124 .Sh SEE ALSO
125 .Xr altq 4 ,
126 .Xr arp 4 ,
127 .Xr miibus 4 ,
128 .Xr netintro 4 ,
129 .Xr ng_ether 4 ,
130 .Xr rgephy 4 ,
131 .Xr vlan 4 ,
132 .Xr ifconfig 8
133 .Sh HISTORY
134 The
135 .Nm
136 device driver first appeared in
137 .Fx 10.1 .
138 .Sh AUTHORS
139 .An -nosplit
140 The
141 .Nm
142 driver was written by
143 .An Kevin Lo Aq Mt kevlo@FreeBSD.org
144 and
145 .An Li-Wen Hsu Aq Mt lwhsu@FreeBSD.org .
146 This manual page was adapted by
147 .An Mark Johnston Aq Mt markj@FreeBSD.org
148 from the
149 .Xr axe 4
150 manual page.