xref: /dflybsd-src/share/man/man4/sbp.4 (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
1*86d7f5d3SJohn Marino.\" Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa
2*86d7f5d3SJohn Marino.\" All rights reserved.
3*86d7f5d3SJohn Marino.\"
4*86d7f5d3SJohn Marino.\" Redistribution and use in source and binary forms, with or without
5*86d7f5d3SJohn Marino.\" modification, are permitted provided that the following conditions
6*86d7f5d3SJohn Marino.\" are met:
7*86d7f5d3SJohn Marino.\" 1. Redistributions of source code must retain the above copyright
8*86d7f5d3SJohn Marino.\"    notice, this list of conditions and the following disclaimer.
9*86d7f5d3SJohn Marino.\" 2. Redistributions in binary form must reproduce the above copyright
10*86d7f5d3SJohn Marino.\"    notice, this list of conditions and the following disclaimer in the
11*86d7f5d3SJohn Marino.\"    documentation and/or other materials provided with the distribution.
12*86d7f5d3SJohn Marino.\" 3. All advertising materials mentioning features or use of this software
13*86d7f5d3SJohn Marino.\"    must display the acknowledgement as bellow:
14*86d7f5d3SJohn Marino.\"
15*86d7f5d3SJohn Marino.\"      This product includes software developed by K. Kobayashi
16*86d7f5d3SJohn Marino.\"
17*86d7f5d3SJohn Marino.\" 4. The name of the author may not be used to endorse or promote products
18*86d7f5d3SJohn Marino.\"    derived from this software without specific prior written permission.
19*86d7f5d3SJohn Marino.\"
20*86d7f5d3SJohn Marino.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21*86d7f5d3SJohn Marino.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22*86d7f5d3SJohn Marino.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23*86d7f5d3SJohn Marino.\" DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24*86d7f5d3SJohn Marino.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25*86d7f5d3SJohn Marino.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26*86d7f5d3SJohn Marino.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27*86d7f5d3SJohn Marino.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28*86d7f5d3SJohn Marino.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29*86d7f5d3SJohn Marino.\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30*86d7f5d3SJohn Marino.\" POSSIBILITY OF SUCH DAMAGE.
31*86d7f5d3SJohn Marino.\"
32*86d7f5d3SJohn Marino.\" $FreeBSD: src/share/man/man4/sbp.4,v 1.1.2.5 2003/12/25 22:51:32 brueffer Exp $
33*86d7f5d3SJohn Marino.\" $DragonFly: src/share/man/man4/sbp.4,v 1.3 2004/01/30 22:38:47 dillon Exp $
34*86d7f5d3SJohn Marino.\"
35*86d7f5d3SJohn Marino.Dd May 20, 2002
36*86d7f5d3SJohn Marino.Dt SBP 4
37*86d7f5d3SJohn Marino.Os
38*86d7f5d3SJohn Marino.Sh NAME
39*86d7f5d3SJohn Marino.Nm sbp
40*86d7f5d3SJohn Marino.Nd Serial Bus Protocol 2 (SBP-2) Mass Storage Devices driver
41*86d7f5d3SJohn Marino.Sh SYNOPSIS
42*86d7f5d3SJohn Marino.Cd "kldload firewire"
43*86d7f5d3SJohn Marino.Cd "kldload cam"
44*86d7f5d3SJohn Marino.Cd "kldload sbp"
45*86d7f5d3SJohn Marino.Pp
46*86d7f5d3SJohn Marinoor
47*86d7f5d3SJohn Marino.Pp
48*86d7f5d3SJohn Marino.Cd "device sbp"
49*86d7f5d3SJohn Marino.Cd "device firewire"
50*86d7f5d3SJohn Marino.Cd "device scbus"
51*86d7f5d3SJohn Marino.Cd "device da"
52*86d7f5d3SJohn Marino.Cd "device cd"
53*86d7f5d3SJohn Marino.Cd "device pass"
54*86d7f5d3SJohn Marino.Sh DESCRIPTION
55*86d7f5d3SJohn MarinoThe
56*86d7f5d3SJohn Marino.Nm
57*86d7f5d3SJohn Marinodriver provides support for SBP-2 devices that attach to the FireWire
58*86d7f5d3SJohn Marino(IEEE 1394) port.
59*86d7f5d3SJohn MarinoIt should work with SBP-2 devices which the CAM layer supports, for example,
60*86d7f5d3SJohn MarinoHDDs, CDROM drives and DVD drives.
61*86d7f5d3SJohn Marino.Pp
62*86d7f5d3SJohn MarinoNote that
63*86d7f5d3SJohn Marino.Xr umass 4
64*86d7f5d3SJohn Marinodoes not detach the device from the CAM layer when the device is unplugged.
65*86d7f5d3SJohn MarinoThe idea is to prevent detachment of active filesystems due to temporary
66*86d7f5d3SJohn Marinodisconnects or changes in the bus topology.  You may have to run
67*86d7f5d3SJohn Marino.Dq Nm fwcontrol Fl r
68*86d7f5d3SJohn Marinoseveral times for the system to properly detach such devices.
69*86d7f5d3SJohn Marino.Pp
70*86d7f5d3SJohn MarinoSome (broken) HDDs don't work well with tagged queuing. If you have problems
71*86d7f5d3SJohn Marinowith such drives, try
72*86d7f5d3SJohn Marino.Dq Nm camcontrol [device id] tags -N 1
73*86d7f5d3SJohn Marinoto disable tagged queuing.
74*86d7f5d3SJohn Marino.Sh SEE ALSO
75*86d7f5d3SJohn Marino.Xr cam 4 ,
76*86d7f5d3SJohn Marino.Xr firewire 4 ,
77*86d7f5d3SJohn Marino.Xr camcontrol 8 ,
78*86d7f5d3SJohn Marino.Xr fwcontrol 8 ,
79*86d7f5d3SJohn Marino.Xr kldload 8 ,
80*86d7f5d3SJohn Marino.Xr sysctl 8
81*86d7f5d3SJohn Marino.Sh AUTHORS
82*86d7f5d3SJohn Marino.An -nosplit
83*86d7f5d3SJohn MarinoThe
84*86d7f5d3SJohn Marino.Nm
85*86d7f5d3SJohn Marinodriver was written by
86*86d7f5d3SJohn Marino.An Katsushi Kobayashi
87*86d7f5d3SJohn Marinoand
88*86d7f5d3SJohn Marino.An Hidetoshi Shimokawa .
89*86d7f5d3SJohn Marino.Pp
90*86d7f5d3SJohn MarinoThis manual page was written by
91*86d7f5d3SJohn Marino.An Katsushi Kobayashi .
92