svn commit: r219004 - head/share/man/man4
Hans Petter Selasky
hselasky at FreeBSD.org
Thu Feb 24 18:08:23 UTC 2011
Author: hselasky
Date: Thu Feb 24 18:08:23 2011
New Revision: 219004
URL: http://svn.freebsd.org/changeset/base/219004
Log:
- Add missing xhci(4) manual page.
- Minor update in some USB manual pages.
MFC after: 3 days
Approved by: thompsa (mentor)
Added:
head/share/man/man4/xhci.4 (contents, props changed)
Modified:
head/share/man/man4/Makefile
head/share/man/man4/ehci.4
head/share/man/man4/ohci.4
head/share/man/man4/snd_uaudio.4
head/share/man/man4/uhci.4
head/share/man/man4/usb.4
Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile Thu Feb 24 16:13:33 2011 (r219003)
+++ head/share/man/man4/Makefile Thu Feb 24 18:08:23 2011 (r219004)
@@ -509,6 +509,7 @@ MAN= aac.4 \
${_wpi.4} \
xe.4 \
${_xen.4} \
+ xhci.4 \
xl.4 \
xpt.4 \
zero.4 \
Modified: head/share/man/man4/ehci.4
==============================================================================
--- head/share/man/man4/ehci.4 Thu Feb 24 16:13:33 2011 (r219003)
+++ head/share/man/man4/ehci.4 Thu Feb 24 18:08:23 2011 (r219004)
@@ -29,7 +29,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd March 20, 2005
+.Dd February 24, 2011
.Dt EHCI 4
.Os
.Sh NAME
@@ -70,6 +70,7 @@ but can be noticed since
2.0 devices plugged in to the same
connector appear to connect to different USB busses.
.Sh SEE ALSO
+.Xr xhci 4 ,
.Xr ohci 4 ,
.Xr uhci 4 ,
.Xr usb 4
@@ -78,7 +79,19 @@ The
.Nm
device driver first appeared in
.Fx 5.1 .
-.Sh BUGS
-The driver is not finished and is quite buggy.
-.Pp
-There is currently no support for isochronous transfers.
+.Sh LOADER TUNABLES
+Tunables can be set at the
+.Xr loader 8
+prompt before booting the kernel or stored in
+.Xr loader.conf 5 .
+.Bl -tag -width "xxxxxx"
+.It Va hw.usb.ehci.lostintrbug
+This tunable enables the lost interrupt quirk.
+The default value is 0 (off).
+.It Va hw.usb.ehci.iaadbug
+This tunable enables the EHCI doorbell quirk.
+The default value is 0 (off).
+.It Va hw.usb.ehci.no_hs
+This tunable disables USB devices to attach like HIGH-speed ones and will force all attached devices to attach to the FULL- or LOW-speed companion controller.
+The default value is 0 (off).
+.El
Modified: head/share/man/man4/ohci.4
==============================================================================
--- head/share/man/man4/ohci.4 Thu Feb 24 16:13:33 2011 (r219003)
+++ head/share/man/man4/ohci.4 Thu Feb 24 18:08:23 2011 (r219004)
@@ -60,6 +60,7 @@ NVIDIA nForce3
Sun PCIO-2 (RIO USB)
.El
.Sh SEE ALSO
+.Xr xhci 4 ,
.Xr ehci 4 ,
.Xr uhci 4
.Sh HISTORY
Modified: head/share/man/man4/snd_uaudio.4
==============================================================================
--- head/share/man/man4/snd_uaudio.4 Thu Feb 24 16:13:33 2011 (r219003)
+++ head/share/man/man4/snd_uaudio.4 Thu Feb 24 18:08:23 2011 (r219004)
@@ -29,12 +29,12 @@
.\"
.\" $FreeBSD$
.\"
-.Dd December 15, 2005
+.Dd February 24, 2011
.Dt SND_UAUDIO 4
.Os
.Sh NAME
.Nm snd_uaudio
-.Nd USB audio device driver
+.Nd USB audio and MIDI device driver
.Sh SYNOPSIS
To compile this driver into the kernel, place the following lines in your
kernel configuration file:
@@ -55,7 +55,9 @@ The
.Nm
driver provides support for
.Tn USB
-audio class devices.
+audio class devices and
+.Tn USB
+MIDI class devices.
.Pp
A
.Tn USB
@@ -94,8 +96,7 @@ as of this writing, does not handle devi
abstracted manner, i.e., a detach request is refused by the
.Tn PCM
framework if the device is in use.
-For
-.Tn USB
-and supposedly other detach-able busses, it is necessary to allow the
-device un-registration to complete successfully, otherwise the driver
-leaves wild pointers to invalid data structures and thus leading to a panic.
+It is necessary to allow the device un-registration to complete
+successfully, otherwise the
+.Tn PCM
+layer will panic.
Modified: head/share/man/man4/uhci.4
==============================================================================
--- head/share/man/man4/uhci.4 Thu Feb 24 16:13:33 2011 (r219003)
+++ head/share/man/man4/uhci.4 Thu Feb 24 18:08:23 2011 (r219004)
@@ -50,6 +50,7 @@ Intel 82371SB (PIIX3)
VIA 83C572
.El
.Sh SEE ALSO
+.Xr xhci 4 ,
.Xr ehci 4 ,
.Xr ohci 4
.Sh HISTORY
Modified: head/share/man/man4/usb.4
==============================================================================
--- head/share/man/man4/usb.4 Thu Feb 24 16:13:33 2011 (r219003)
+++ head/share/man/man4/usb.4 Thu Feb 24 18:08:23 2011 (r219004)
@@ -164,7 +164,8 @@ specifications can be found at:
.Xr uplcom 4 ,
.Xr urio 4 ,
.Xr uvscom 4 ,
-.Xr usbconfig 8
+.Xr usbconfig 8 ,
+.Xr xhci 4
.Sh STANDARDS
The
.Nm
Added: head/share/man/man4/xhci.4
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/share/man/man4/xhci.4 Thu Feb 24 18:08:23 2011 (r219004)
@@ -0,0 +1,61 @@
+.\"
+.\" Copyright (c) 2011 Hans Petter Selasky. All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+.\" POSSIBILITY OF SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dd February 24, 2011
+.Dt XHCI 4
+.Os
+.Sh NAME
+.Nm xhci
+.Nd USB eXtensible Host Controller driver
+.Sh SYNOPSIS
+.Cd "device xhci"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for the
+.Tn USB
+eXtensible Host Controller Interface,
+which allows use of
+.Tn USB
+1.0, 2.0 and 3.0 devices on the same
+.Tn USB
+port.
+.Pp
+The
+.Tn XHCI
+controller supports
+.Tn USB
+connection speeds up to 4.8Gbps when using a USB 3.0 compliant device.
+.Sh SEE ALSO
+.Xr ehci 4 ,
+.Xr ohci 4 ,
+.Xr uhci 4 ,
+.Xr usb 4
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Fx 8.2 .
More information about the svn-src-head
mailing list