Home | History | Annotate | Line # | Download | only in scsictl
scsictl.8 revision 1.14
 $NetBSD: scsictl.8,v 1.14 2002/06/26 16:04:13 mjacob Exp $

Copyright (c) 1998 The NetBSD Foundation, Inc.
All rights reserved.

This code is derived from software contributed to The NetBSD Foundation
by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
NASA Ames Research Center.

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.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by the NetBSD
Foundation, Inc. and its contributors.
4. Neither the name of The NetBSD Foundation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

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.

.Dd October 15, 1998 .Dt SCSICTL 8 .Os .Sh NAME .Nm scsictl .Nd a program to manipulate SCSI devices and busses .Sh SYNOPSIS .Nm .Ar device .Ar command .Oo .Ar arg Oo ... .Oc .Oc .Sh DESCRIPTION .Nm allows a user or system administrator to issue commands to and otherwise control SCSI devices and busses. It is used by specifying a device or bus to manipulate, the command to perform, and any arguments the command may require. .Nm determines if the specified device is an actual device or a SCSI bus automatically, and selects the appropriate command set.

p For commands which .Nm issues a SCSI command to the device directly, any returned sense information will be decoded by .Nm and displayed to the standard output. .Sh DEVICE COMMANDS The following commands are supported for SCSI devices:

p .Nm format .Oo blocksize .Oo immediate .Oc .Oc

p (Low level) format the named device. If the optional .Li blocksize parameter is provided, the device geometry will be modified to use the specified .Li blocksize. If this parameter is different form the Current or Default Mode Page 3 parameters, the device will update Mode Page 3 at the successful completion of the Format. Device geometry may change as a result of using a new device .Li blocksize. When the optional .Li blocksize parameter is specified, the Defect List on the drive will revert to the original primary defect list created at the time of manufacture if available. The drive will usually recertify itself during the Format and add any other defective blocks to the new Defect List. Some disks may not support the ability to change the blocksize and may enter a Degraded Mode when fed a Format command of this type. If this happens the standard recovery for the drive requires issuing a correct Format command, i.e. one without the blocksize parameter.

p When the .Li immediate parameter is also specified, the disk is instructed to return from the format command right away. It continues to format, and every ten seconds .Nm issues a TEST UNIT READY command to check the associated sense data. This associated sense data has a progress indicator which indicates how far the format is progressing. Note well that most SCSI disk drives prior to a few years ago do not support this option.

p .Nm identify

p Identify the specified device, displaying the device's SCSI bus, target, and lun, as well as the device's vendor, product, and revision strings.

p .Nm reassign .Ar blkno .Oo blkno Oo ... .Oc .Oc

p Issues a .Li REASSIGN BLOCKS command to the device, adding the specified blocks to the grown defect list. This command is only supported on direct access devices.

p .Nm release

p Send a "RELEASE" command to the device to release a reservation on it.

p .Nm reserve

p Send a "RESERVE" command to the device to place a reservation on it.

p .Nm reset

p Reset the device. This command is only supported for devices which support the .Li SCIOCRESET ioctl.

p .Nm reset

p Reset the SCSI bus. This command is only supported if the host adapter supports the .Li SCBUSIORESET ioctl.

p .Nm start

p Send a "START" command to the device. This is useful typically only for disk devices.

p .Nm stop

p Send a "STOP" command to the device. This is useful typically only for disk devices.

p .Nm tur

p Send a "TEST UNIT READY" command to the device. This is useful for generating current device status. .Sh BUS COMMANDS The following commands are supported for SCSI busses:

p .Nm reset

p Reset the SCSI bus. This command is only supported if the host adapter supports the .Li SCBUSIORESET ioctl.

p .Nm scan .Ar target .Ar lun

p Scan the SCSI bus for devices. This is useful if a device was not connected or powered on when the system was booted. The .Ar target and .Ar lun arguments specify which SCSI target and lun on the bus is to be scanned. Either may be wildcarded by specifying the keyword .Dq any or .Dq all .

p .Nm detach .Ar target .Ar lun

p Detach the specified device from the bus. Useful if a device is powered down after use. The .Ar target and .Ar lun arguments have the same meaning as for the .Nm scan command, and may also be wildcarded. .Sh NOTES When scanning the SCSI bus, information about newly recognized devices is printed to console. No information is printed for already probed devices. .Sh FILES

a /dev/scsibus* - for commands operating on SCSI busses .Sh SEE ALSO .Xr ioctl 2 , .Xr cd 4 , .Xr ch 4 , .Xr sd 4 , .Xr se 4 , .Xr ss 4 , .Xr st 4 , .Xr uk 4 .Sh HISTORY The .Nm command first appeared in .Nx 1.4 . .Sh AUTHORS The .Nm command was written by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, NASA Ames Research Center.