1999-05-09 19:35:51 +00:00
|
|
|
.\" Copyright (c) 1999
|
2000-10-26 15:30:44 +00:00
|
|
|
.\" Nick Hibma <n_hibma@FreeBSD.org>. All rights reserved.
|
1999-05-09 19:35:51 +00:00
|
|
|
.\"
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
2010-03-04 22:06:57 +00:00
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
1999-05-09 19:35:51 +00:00
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
2010-03-04 22:06:57 +00:00
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR 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.
|
1999-05-09 19:35:51 +00:00
|
|
|
.\"
|
2005-02-09 18:07:17 +00:00
|
|
|
.\" $FreeBSD$
|
1999-05-09 19:35:51 +00:00
|
|
|
.\"
|
2020-01-28 00:36:46 +00:00
|
|
|
.Dd January 27, 2020
|
1999-11-15 23:14:32 +00:00
|
|
|
.Dt UMASS 4
|
2001-07-10 15:31:11 +00:00
|
|
|
.Os
|
1999-05-09 19:35:51 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm umass
|
2001-04-18 15:54:10 +00:00
|
|
|
.Nd USB Mass Storage Devices driver
|
1999-05-09 19:35:51 +00:00
|
|
|
.Sh SYNOPSIS
|
2006-11-22 21:30:02 +00:00
|
|
|
To compile this driver into the kernel,
|
|
|
|
place the following line in your
|
|
|
|
kernel configuration file:
|
|
|
|
.Bd -ragged -offset indent
|
2009-10-22 11:35:12 +00:00
|
|
|
.Cd "device scbus"
|
|
|
|
.Cd "device usb"
|
2000-01-23 16:13:26 +00:00
|
|
|
.Cd "device umass"
|
2006-11-22 21:30:02 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Alternatively, to load the driver as a
|
|
|
|
module at boot time, place the following line in
|
|
|
|
.Xr loader.conf 5 :
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
umass_load="YES"
|
|
|
|
.Ed
|
1999-05-09 19:35:51 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
driver provides support for Mass Storage devices that attach to the USB
|
2000-03-01 14:50:24 +00:00
|
|
|
port.
|
2000-03-18 17:59:27 +00:00
|
|
|
.Pp
|
2004-12-17 18:35:38 +00:00
|
|
|
To use the
|
|
|
|
.Nm
|
|
|
|
driver,
|
|
|
|
.Xr usb 4
|
|
|
|
and one of
|
|
|
|
.Xr uhci 4
|
|
|
|
or
|
|
|
|
.Xr ohci 4
|
2014-04-19 06:32:51 +00:00
|
|
|
or
|
|
|
|
.Xr ehci 4
|
2014-12-21 10:04:26 +00:00
|
|
|
or
|
2014-04-19 06:32:51 +00:00
|
|
|
.Xr xhci 4
|
2004-12-17 18:35:38 +00:00
|
|
|
must be configured in the kernel.
|
2005-01-18 20:23:47 +00:00
|
|
|
Additionally, since
|
|
|
|
.Nm
|
|
|
|
uses the SCSI subsystem and sometimes acts as a SCSI device, it
|
|
|
|
requires
|
2004-12-17 18:35:38 +00:00
|
|
|
.Xr da 4
|
2005-01-18 20:23:47 +00:00
|
|
|
and
|
|
|
|
.Xr scbus 4
|
|
|
|
to be included in the kernel.
|
2000-11-17 11:44:16 +00:00
|
|
|
.Sh EXAMPLES
|
2003-05-20 22:08:51 +00:00
|
|
|
.Bd -literal -offset indent
|
|
|
|
device umass
|
|
|
|
device scbus
|
|
|
|
device da
|
|
|
|
device pass
|
|
|
|
.Ed
|
1999-05-09 19:35:51 +00:00
|
|
|
.Pp
|
|
|
|
Add the
|
2000-11-20 18:41:33 +00:00
|
|
|
.Nm
|
1999-05-09 19:35:51 +00:00
|
|
|
driver to the kernel.
|
|
|
|
.Pp
|
2003-05-20 22:08:51 +00:00
|
|
|
.Bd -literal -offset indent
|
|
|
|
camcontrol rescan 0:0:0
|
|
|
|
camcontrol rescan 0:0:1
|
|
|
|
camcontrol rescan 0:0:2
|
|
|
|
camcontrol rescan 0:0:3
|
|
|
|
.Ed
|
2003-04-07 11:26:54 +00:00
|
|
|
.Pp
|
|
|
|
Rescan all slots on a multi-slot flash reader, where the slots map to separate
|
2003-05-20 22:08:51 +00:00
|
|
|
LUNs on a single SCSI ID.
|
|
|
|
Typically only the first slot will be enabled at boot time.
|
2020-01-28 00:36:46 +00:00
|
|
|
This assumes that the flash reader is the first SCSI bus in the system and has 4 slots.
|
1999-05-09 19:35:51 +00:00
|
|
|
.Sh SEE ALSO
|
2017-02-19 17:47:43 +00:00
|
|
|
.Xr cfumass 4 ,
|
2004-12-17 18:35:38 +00:00
|
|
|
.Xr ehci 4 ,
|
1999-05-09 19:35:51 +00:00
|
|
|
.Xr ohci 4 ,
|
|
|
|
.Xr uhci 4 ,
|
|
|
|
.Xr usb 4 ,
|
2014-12-26 22:30:18 +00:00
|
|
|
.Xr xhci 4 ,
|
2004-06-16 08:33:57 +00:00
|
|
|
.Xr camcontrol 8
|
1999-05-09 19:35:51 +00:00
|
|
|
.\".Sh HISTORY
|
1999-08-15 10:48:36 +00:00
|
|
|
.Sh AUTHORS
|
2000-11-22 09:35:58 +00:00
|
|
|
.An -nosplit
|
1999-05-09 19:35:51 +00:00
|
|
|
The
|
2000-11-20 18:41:33 +00:00
|
|
|
.Nm
|
1999-05-09 19:35:51 +00:00
|
|
|
driver was written by
|
2014-06-26 21:46:14 +00:00
|
|
|
.An MAEKAWA Masahide Aq Mt bishop@rr.iij4u.or.jp
|
1999-05-09 19:35:51 +00:00
|
|
|
and
|
2014-06-26 21:46:14 +00:00
|
|
|
.An Nick Hibma Aq Mt n_hibma@FreeBSD.org .
|
1999-05-09 19:35:51 +00:00
|
|
|
.Pp
|
|
|
|
This manual page was written by
|
2014-06-26 21:46:14 +00:00
|
|
|
.An Nick Hibma Aq Mt n_hibma@FreeBSD.org .
|