1.\" 2.\" Copyright (c) 2006 3.\" Damien Bergamini <damien.bergamini@free.fr> 4.\" 5.\" Permission to use, copy, modify, and distribute this software for any 6.\" purpose with or without fee is hereby granted, provided that the above 7.\" copyright notice and this permission notice appear in all copies. 8.\" 9.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16.\" 17.\" $FreeBSD$ 18.\" 19.Dd April 7, 2009 20.Dt UATH 4 21.Os 22.Sh NAME 23.Nm uath 24.Nd Atheros USB IEEE 802.11a/b/g wireless network device 25.Sh SYNOPSIS 26To compile this driver into the kernel, 27place the following lines in your 28kernel configuration file: 29.Bd -ragged -offset indent 30.Cd "device ehci" 31.Cd "device uhci" 32.Cd "device ohci" 33.Cd "device usb" 34.Cd "device uath" 35.Cd "device wlan" 36.Ed 37.Pp 38Alternatively, to load the driver as a 39module at boot time, place the following line in 40.Xr loader.conf 5 : 41.Bd -literal -offset indent 42if_uath_load="YES" 43.Ed 44.Sh DESCRIPTION 45The 46.Nm 47driver supports USB 2.0 wireless network devices based on Atheros 48Communications fifth generation AR5005UG and AR5005UX chipsets. 49.Pp 50The AR5005UG chipset is made of an AR5523 multiprotocol MAC/baseband processor 51and an AR2112 Radio-on-a-Chip that can operate between 2300 and 2500 MHz 52(802.11b/g). 53.Pp 54The AR5005UX chipset is made of an AR5523 multiprotocol MAC/baseband processor 55and an AR5112 dual band Radio-on-a-Chip that can operate between 2300 and 562500 MHz (802.11b/g) or 4900 and 5850 MHz (802.11a). 57.Pp 58The AR5005UG and AR5005UX chipsets both have an integrated 32-bit MIPS 59R4000-class processor that runs a firmware and manages, among other things, 60the automatic control of the transmit rate and the calibration of the radio. 61.Pp 62.Nm 63supports 64.Cm station , 65and 66.Cm monitor 67mode operation. 68Only one virtual interface may be configured at any time. 69For more information on configuring this device, see 70.Xr ifconfig 8 . 71.Sh FIRMWARE 72.Nm 73requires firmware that is downloaded to the device. 74This is normally done by the 75.Xr uathload 8 76utility that is launched by 77.Xr devd 8 78when the device is inserted. 79.Xr uathload 8 80includes the firmware in the binary program. 81This firmware is licensed for general use and is included in the base system. 82.Sh HARDWARE 83The 84.Nm 85driver should work with the following adapters: 86.Bl -column "TRENDware International TEW-444UB" "AR5005UX" 87.It Em "Adapter" Ta Em "Chipset" 88.\".It Belkin F6D3050 AR5005UX 89.It Li "Compex WLU108AG" Ta AR5005UX 90.It Li "Compex WLU108G" Ta AR5005UG 91.\".It Li "D-Link DWL-AG132" Ta AR5005UX 92.It Li "D-Link DWL-G132" Ta AR5005UG 93.\".It Li "Edimax EW-7315Ug" Ta AR5005UG (AR2414???) 94.\".It Li "Lancom USB-54ag" Ta AR5005UX 95.\".It Li "NEC WL54TU" Ta AR5005UX 96.It Li "IODATA WN-G54/US" Ta AR5005UG 97.It Li "MELCO WLI-U2-KAMG54" Ta AR5005UX 98.It Li "Netgear WG111T" Ta AR5005UG 99.It Li "Netgear WG111U" Ta AR5005UX 100.It Li "Netgear WPN111" Ta AR5005UG 101.It Li "Olitec 000544" Ta AR5005UG 102.It Li "PLANET WDL-U357" Ta AR5005UX 103.\".It Li "Senao WUB-8004" Ta AR5005UX 104.It Li "Siemens Gigaset 108" Ta AR5005UG 105.It Li "SMC SMCWUSBT-G" Ta AR5005UG 106.It Li "SMC SMCWUSBT-G2" Ta AR5005UG 107.\".It Li "SparkLAN WL-685GS" Ta AR5005UG 108.It Li "SparkLAN WL-785A" Ta AR5005UX 109.It Li "TP-Link TL-WN620G" Ta AR5005UG 110.It Li "TRENDware International TEW-444UB" Ta AR5005UG 111.It Li "TRENDware International TEW-504UB" Ta AR5005UX 112.It Li "Unex Technology UR054ag" Ta AR5005UX 113.\".It Li "Wistron NeWeb DCUA-81" Ta AR5005UX 114.\".It Li "Wistron NeWeb DRUA-81" Ta AR5005UG 115.\".It Li "Wistron NeWeb DRUA-82" Ta AR5005UX 116.\".It Li "ZyXEL G-200 v2" Ta AR5005UG 117.It Li "ZyXEL XtremeMIMO M-202" Ta AR5005UX 118.El 119.Sh EXAMPLES 120Join an existing BSS network (i.e., connect to an access point): 121.Bd -literal -offset indent 122ifconfig wlan create wlandev uath0 inet 192.168.0.20 \e 123 netmask 0xffffff00 124.Ed 125.Pp 126Join a specific BSS network with network name 127.Dq Li my_net : 128.Pp 129.Dl "ifconfig wlan create wlandev uath0 ssid my_net up" 130.Pp 131Join a specific BSS network with 64-bit WEP encryption: 132.Bd -literal -offset indent 133ifconfig wlan create wlandev uath0 ssid my_net \e 134 wepmode on wepkey 0x1234567890 weptxkey 1 up 135.Ed 136.Pp 137Join a specific BSS network with 128-bit WEP encryption: 138.Bd -literal -offset indent 139ifconfig wlan create wlandev uath0 wlanmode adhoc ssid my_net \e 140 wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 141.Ed 142.Sh DIAGNOSTICS 143.Bl -diag 144.It "uath%d: could not send command (error=%s)" 145An attempt to send a command to the firmware failed. 146.It "uath%d: timeout waiting for command reply" 147A read command was sent to the firmware but the firmware failed to reply in 148time. 149.It "uath%d: device timeout" 150A frame dispatched to the hardware for transmission did not complete in time. 151The driver will reset the hardware. 152This should not happen. 153.El 154.Sh SEE ALSO 155.Xr netintro 4 , 156.Xr usb 4 , 157.Xr wlan 4 , 158.Xr wlan_ccmp 4 , 159.Xr wlan_tkip 4 , 160.Xr wlan_wep 4 , 161.Xr devd 8 , 162.Xr ifconfig 8 , 163.Xr uathload 8 , 164.Xr wpa_supplicant 8 165.Sh HISTORY 166The 167.Nm 168driver first appeared in 169.Ox 4.0 . 170.Sh AUTHORS 171.An -nosplit 172The 173.Nm 174driver was written by 175.An Weongyo Jeong Aq Mt weongyo@FreeBSD.org 176and 177.An Sam Leffler Aq Mt sam@FreeBSD.org . 178It is distantly related to a driver written by 179.An Damien Bergamini Aq Mt damien@openbsd.org . 180.Sh CAVEATS 181Atheros proprietary 108 Mbps mode (aka Super AG mode) is not supported. 182.Pp 183Dual-band adapters are presently not working; 184to workaround, restriction operation to 2.4GHz channels. 185