xref: /freebsd/share/man/man4/ure.4 (revision 4c72525953fdf618a3fc0a45f3ef3f071dcc0c52)
1*4c725259SAlexander Ziaee.\"-
2*4c725259SAlexander Ziaee.\" SPDX-License-Identifier: BSD-2-Clause
3e1b74f21SKevin Lo.\"
4a24d62b5SKevin Lo.\" Copyright (c) 2015-2016 Kevin Lo <kevlo@FreeBSD.org>
5e1b74f21SKevin Lo.\" All rights reserved.
6e1b74f21SKevin Lo.\"
7e1b74f21SKevin Lo.\" Redistribution and use in source and binary forms, with or without
8e1b74f21SKevin Lo.\" modification, are permitted provided that the following conditions
9e1b74f21SKevin Lo.\" are met:
10e1b74f21SKevin Lo.\" 1. Redistributions of source code must retain the above copyright
11e1b74f21SKevin Lo.\"    notice, this list of conditions and the following disclaimer.
12e1b74f21SKevin Lo.\" 2. Redistributions in binary form must reproduce the above copyright
13e1b74f21SKevin Lo.\"    notice, this list of conditions and the following disclaimer in the
14e1b74f21SKevin Lo.\"    documentation and/or other materials provided with the distribution.
15e1b74f21SKevin Lo.\"
16e1b74f21SKevin Lo.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17e1b74f21SKevin Lo.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18e1b74f21SKevin Lo.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19e1b74f21SKevin Lo.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20e1b74f21SKevin Lo.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21e1b74f21SKevin Lo.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22e1b74f21SKevin Lo.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23e1b74f21SKevin Lo.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24e1b74f21SKevin Lo.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25e1b74f21SKevin Lo.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26e1b74f21SKevin Lo.\" SUCH DAMAGE.
27e1b74f21SKevin Lo.\"
28*4c725259SAlexander Ziaee.Dd September 3, 2024
29e1b74f21SKevin Lo.Dt URE 4
30e1b74f21SKevin Lo.Os
31e1b74f21SKevin Lo.Sh NAME
32e1b74f21SKevin Lo.Nm ure
33*4c725259SAlexander Ziaee.Nd RealTek RTL8152/RTL8153/RTL8156 USB Ethernet driver
34e1b74f21SKevin Lo.Sh SYNOPSIS
35e1b74f21SKevin LoTo compile this driver into the kernel,
36e1b74f21SKevin Loplace the following lines in your
37e1b74f21SKevin Lokernel configuration file:
38e1b74f21SKevin Lo.Bd -ragged -offset indent
39e1b74f21SKevin Lo.Cd "device uhci"
40e1b74f21SKevin Lo.Cd "device ohci"
41e1b74f21SKevin Lo.Cd "device usb"
42e1b74f21SKevin Lo.Cd "device miibus"
43e1b74f21SKevin Lo.Cd "device uether"
44e1b74f21SKevin Lo.Cd "device ure"
45e1b74f21SKevin Lo.Ed
46e1b74f21SKevin Lo.Pp
47e1b74f21SKevin LoAlternatively, to load the driver as a
48e1b74f21SKevin Lomodule at boot time, place the following line in
49e1b74f21SKevin Lo.Xr loader.conf 5 :
50e1b74f21SKevin Lo.Bd -literal -offset indent
51e1b74f21SKevin Loif_ure_load="YES"
52e1b74f21SKevin Lo.Ed
53e1b74f21SKevin Lo.Sh DESCRIPTION
54e1b74f21SKevin LoThe
55e1b74f21SKevin Lo.Nm
56e1b74f21SKevin Lodriver provides support for USB Ethernet adapters based on the RealTek
57*4c725259SAlexander ZiaeeRTL8152, RTL8153/RTL8153B, and RTL8156/RTL8156B USB Ethernet controllers,
58*4c725259SAlexander Ziaeeas well as USB Ethernet PHYs provided by
59*4c725259SAlexander Ziaee.Xr rgephy 4 .
60e1b74f21SKevin Lo.Pp
61*4c725259SAlexander ZiaeeNICs based on the RTL8152 are capable of 10 and 100Mbps.
62*4c725259SAlexander ZiaeeNICs based on the RTL8153 or provided by
63*4c725259SAlexander Ziaee.Xr rgephy 4
64*4c725259SAlexander Ziaeeare capable of 10, 100, and 1000Mbps.
65*4c725259SAlexander ZiaeeNICs based on the RTL8156 are capable of 10, 100, 1000, and 2500Mbps operation.
66e1b74f21SKevin Lo.Pp
67e1b74f21SKevin LoThe
68e1b74f21SKevin Lo.Nm
69e1b74f21SKevin Lodriver supports the following media types:
70*4c725259SAlexander Ziaee.Bl -tag -width "10baseT/UTP"
71e1b74f21SKevin Lo.It Cm autoselect
72e1b74f21SKevin LoEnable auto selection of the media type and options.
73e1b74f21SKevin LoThe user can manually override
74e1b74f21SKevin Lothe auto selected mode by adding media options to the
75e1b74f21SKevin Lo.Pa /etc/rc.conf
76e1b74f21SKevin Lofile.
77e1b74f21SKevin Lo.It Cm 10baseT/UTP
78e1b74f21SKevin LoSet 10Mbps operation.
79e1b74f21SKevin LoThe
80e1b74f21SKevin Lo.Cm mediaopt
81e1b74f21SKevin Looption can also be used to select either
82e1b74f21SKevin Lo.Cm full-duplex
83e1b74f21SKevin Loor
84e1b74f21SKevin Lo.Cm half-duplex
85e1b74f21SKevin Lomodes.
86e1b74f21SKevin Lo.It Cm 100baseTX
87e1b74f21SKevin LoSet 100Mbps (Fast Ethernet) operation.
88e1b74f21SKevin LoThe
89e1b74f21SKevin Lo.Cm mediaopt
90e1b74f21SKevin Looption can also be used to select either
91e1b74f21SKevin Lo.Cm full-duplex
92e1b74f21SKevin Loor
93e1b74f21SKevin Lo.Cm half-duplex
94e1b74f21SKevin Lomodes.
95a24d62b5SKevin Lo.It Cm 1000baseTX
96*4c725259SAlexander ZiaeeSet 1000baseTX (Gigabit Ethernet) operation over twisted pair.
97a24d62b5SKevin LoThe RealTek gigE chips support 1000Mbps in
98a24d62b5SKevin Lo.Cm full-duplex
99a24d62b5SKevin Lomode only.
1006ea4d95fSLi-Wen Hsu.It Cm 2500base-T
1016ea4d95fSLi-Wen HsuSet 2500Base-T operation over twisted pair.
1026ea4d95fSLi-Wen HsuThe RealTek 8156/8156B chips support 2500Mbps in
1036ea4d95fSLi-Wen Hsu.Cm full-duplex
1046ea4d95fSLi-Wen Hsumode only.
105e1b74f21SKevin Lo.El
106e1b74f21SKevin Lo.Pp
107e1b74f21SKevin LoThe
108e1b74f21SKevin Lo.Nm
109*4c725259SAlexander Ziaeedriver supports the following media options for 10/100 operation:
110*4c725259SAlexander Ziaee.Bl -tag -width "full-duplex"
111e1b74f21SKevin Lo.It Cm full-duplex
112*4c725259SAlexander ZiaeeForce full-duplex operation.
113e1b74f21SKevin Lo.It Cm half-duplex
114*4c725259SAlexander ZiaeeForce half-duplex operation.
115e1b74f21SKevin Lo.El
116e1b74f21SKevin Lo.Pp
117e1b74f21SKevin LoFor more information on configuring this device, see
118e1b74f21SKevin Lo.Xr ifconfig 8 .
119e1b74f21SKevin Lo.Sh DIAGNOSTICS
120e1b74f21SKevin Lo.Bl -diag
121e1b74f21SKevin Lo.It "ure%d: watchdog timeout"
122e1b74f21SKevin LoA packet was queued for transmission and a transmit command was
123e1b74f21SKevin Loissued, however the device failed to acknowledge the transmission
124e1b74f21SKevin Lobefore a timeout expired.
125e1b74f21SKevin Lo.El
126e1b74f21SKevin Lo.Sh SEE ALSO
127e1b74f21SKevin Lo.Xr arp 4 ,
128e1b74f21SKevin Lo.Xr miibus 4 ,
129e1b74f21SKevin Lo.Xr netintro 4 ,
130e1b74f21SKevin Lo.Xr ng_ether 4 ,
131e1b74f21SKevin Lo.Xr ifconfig 8
132e1b74f21SKevin Lo.Sh AUTHORS
133e1b74f21SKevin LoThe
134e1b74f21SKevin Lo.Nm
135e1b74f21SKevin Lodriver was written by
136e1b74f21SKevin Lo.An Kevin Lo Aq Mt kevlo@FreeBSD.org .
137