[276] | 1 | .\"
|
---|
| 2 | .\" Copyright (c) 2011 Rick van der Zwet <info@rickvanderzwet.nl>
|
---|
| 3 | .\"
|
---|
| 4 | .\" Permission to use, copy, modify, and distribute this software for any
|
---|
| 5 | .\" purpose with or without fee is hereby granted, provided that the above
|
---|
| 6 | .\" copyright notice and this permission notice appear in all copies.
|
---|
| 7 | .\"
|
---|
| 8 | .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
---|
| 9 | .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
---|
| 10 | .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
---|
| 11 | .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
---|
| 12 | .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
---|
| 13 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
---|
| 14 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
---|
| 15 | .\"
|
---|
| 16 | .\" $FreeBSD$
|
---|
| 17 | .\"
|
---|
| 18 | .Dd February 14, 2011
|
---|
| 19 | .Dt MOS 4
|
---|
| 20 | .Os
|
---|
| 21 | .Sh NAME
|
---|
| 22 | .Nm mos
|
---|
| 23 | .Nd Moschip MCS7730/MCS7840 USB Ethernet driver
|
---|
| 24 | .Sh SYNOPSIS
|
---|
| 25 | To compile this driver into the kernel,
|
---|
| 26 | place the following lines in your
|
---|
| 27 | kernel configuration file:
|
---|
| 28 | .Bd -ragged -offset indent
|
---|
| 29 | .Cd "device uhci"
|
---|
| 30 | .Cd "device ohci"
|
---|
| 31 | .Cd "device usb"
|
---|
| 32 | .Cd "device miibus"
|
---|
| 33 | .Cd "device mos"
|
---|
| 34 | .Ed
|
---|
| 35 | .Pp
|
---|
| 36 | Alternatively, to load the driver as a
|
---|
| 37 | module at boot time, place the following line in
|
---|
| 38 | .Xr loader.conf 5 :
|
---|
| 39 | .Bd -literal -offset indent
|
---|
| 40 | if_mos_load="YES"
|
---|
| 41 | .Ed
|
---|
| 42 | .Sh DESCRIPTION
|
---|
| 43 | The
|
---|
| 44 | .Nm
|
---|
| 45 | driver provides support for USB Ethernet adapters based on the
|
---|
| 46 | Moschip MCS7730/MCS7830 chipset.
|
---|
| 47 | .Pp
|
---|
| 48 | The adapters that contain the Moschip MCS7730/MCS7830 chipset
|
---|
| 49 | will operate at 100Base-TX and full-duplex.
|
---|
| 50 | .Pp
|
---|
| 51 | The Moschip contains a 10/100
|
---|
| 52 | Ethernet MAC with MII interface and is designed to work with both
|
---|
| 53 | Ethernet and HomePNA transceivers.
|
---|
| 54 | Although designed to interface with
|
---|
| 55 | 100Mbps peripherals, this only works with USB 2.0. The existing USB 1.0
|
---|
| 56 | standard specifies a maximum transfer speed of 12Mbps.
|
---|
| 57 | USB 1.0 Users should therefore not expect to actually achieve 100Mbps speeds
|
---|
| 58 | with these devices.
|
---|
| 59 | .Pp
|
---|
| 60 | The Moschip supports a 64-bit multicast hash table, single perfect
|
---|
| 61 | filter entry for the station address and promiscuous mode.
|
---|
| 62 | Packets are
|
---|
| 63 | received and transmitted over separate USB bulk transfer endpoints.
|
---|
| 64 | .Pp
|
---|
| 65 | For more information on configuring this device, see
|
---|
| 66 | .Xr ifconfig 8 .
|
---|
| 67 | .Sh HARDWARE
|
---|
| 68 | Adapters supported by the
|
---|
| 69 | .Nm
|
---|
| 70 | driver include:
|
---|
| 71 | .Pp
|
---|
| 72 | .Bl -bullet -compact
|
---|
| 73 | .It
|
---|
| 74 | Sitecom LN030
|
---|
| 75 | .Sh SEE ALSO
|
---|
| 76 | .Xr altq 4 ,
|
---|
| 77 | .Xr arp 4 ,
|
---|
| 78 | .Xr miibus 4 ,
|
---|
| 79 | .Xr netintro 4 ,
|
---|
| 80 | .Xr ng_ether 4 ,
|
---|
| 81 | .Xr ifconfig 8
|
---|
| 82 | .Rs
|
---|
| 83 | .%T ADMtek AN986 data sheet
|
---|
| 84 | .%O http://www.moschip.com/data/products/MCS7830/Data%20Sheet_7830.pdf
|
---|
| 85 | .Re
|
---|
| 86 | .Sh HISTORY
|
---|
| 87 | The
|
---|
| 88 | .Nm
|
---|
| 89 | device driver first appeared in
|
---|
| 90 | .Fx 8.2 .
|
---|
| 91 | .Sh AUTHORS
|
---|
| 92 | The
|
---|
| 93 | .Nm
|
---|
| 94 | driver was written by
|
---|
| 95 | .An Rick van der Zwet info@rickvanderzwet.nl .
|
---|