1.\" Copyright (c) 1996 2.\" Julian Elischer <julian@FreeBSD.org>. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 10.\" 2. Redistributions in binary form must reproduce the above copyright 11.\" notice, this list of conditions and the following disclaimer in the 12.\" documentation and/or other materials provided with the distribution. 13.\" 14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24.\" SUCH DAMAGE. 25.\" 26.\" $FreeBSD$ 27.Dd October 15, 1998 28.Dt SCSI 4 29.Os 30.Sh NAME 31.Nm SCSI , 32.Nm CAM 33.Nd CAM SCSI subsystem 34.Sh SYNOPSIS 35.Cd "device scbus" 36.Cd "device cd" 37.Cd "device ch" 38.Cd "device da" 39.Cd "device pass" 40.Cd "device pt" 41.Cd "device sa" 42.Cd "device ch" 43.Cd "options CAMDEBUG" 44.Cd "options CAM_DEBUG_BUS=-1" 45.Cd "options CAM_DEBUG_TARGET=-1" 46.Cd "options CAM_DEBUG_LUN=-1" 47.Cd "options CAM_DEBUG_FLAGS=CAM_DEBUG_INFO|CAM_DEBUG_CDB" 48.Cd "options CAM_MAX_HIGHPOWER=4" 49.Cd "options SCSI_NO_SENSE_STRINGS" 50.Cd "options SCSI_NO_OP_STRINGS" 51.Cd "options SCSI_DELAY=8000" 52.Sh DESCRIPTION 53The CAM 54.Tn SCSI 55subsystem provides a uniform and modular system for the implementation 56of drivers to control various 57.Tn SCSI 58devices, and to utilize different 59.Tn SCSI 60host adapters through host adapter drivers. 61When the system probes the 62.Tn SCSI 63busses, it attaches any devices it finds to the appropriate 64drivers. The 65.Xr pass 4 66driver, if it is configured in the kernel, will attach to all 67.Tn SCSI 68devices. 69.Sh KERNEL CONFIGURATION 70There are a number of generic kernel configuration options for the 71CAM 72.Tn SCSI 73subsystem: 74.Bl -tag -width SCSI_NO_SENSE_STRINGS 75.It Dv CAMDEBUG 76This option enables the CAM debugging printf code. This won't actually 77cause any debugging information to be printed out when included by itself. 78Enabling printouts requires additional configuration. See below for 79details. 80.It Dv "CAM_MAX_HIGHPOWER=4" 81This sets the maximum allowable number of concurrent "high power" commands. 82A "high power" command is a command that takes more electrical power than 83most to complete. An example of this (and the only command currently 84tagged as "high power") is the 85.Tn SCSI 86START UNIT command. Starting a SCSI disk often takes significantly more 87electrical power than normal operation of the disk. This option allows the 88user to specify how many concurrent high power commands may be outstanding 89without overloading the power supply on his computer. 90.It Dv SCSI_NO_SENSE_STRINGS 91This eliminates text descriptions of each 92.Tn SCSI 93Additional Sense Code and Additional Sense Code Qualifier pair. Since this 94is a fairly large text database, eliminating it reduces the size of the 95kernel somewhat. This is primarily necessary for boot floppies and other 96low disk space or low memory space environments. In most cases, though, 97this should be enabled, since it speeds the interpretation of 98.Tn SCSI 99error messages. Don't let the "kernel bloat" zealots get to you -- leave 100the sense descriptions in your kernel! 101.It Dv SCSI_NO_OP_STRINGS 102This disables text descriptions of each 103.Tn SCSI 104opcode. This option, like the sense string option above, is primarily 105useful for environments like a boot floppy where kernel size is critical. 106Enabling this option for normal use isn't recommended, since it slows 107debugging of 108.Tn SCSI 109problems. 110.It Dv SCSI_DELAY=8000 111This is the 112.Tn SCSI 113"bus settle delay." In CAM, it is specified in 114.Em milliseconds , 115not seconds like the old 116.Tn SCSI 117layer used to do. When the kernel boots, it sends a bus reset to each 118.Tn SCSI 119bus to tell each device to reset itself to a default set of transfer 120negotiations and other settings. Most 121.Tn SCSI 122devices need some amount of time to recover from a bus reset. Newer disks 123may need as little as 100ms, while old, slow devices may need much longer. 124If the 125.Dv SCSI_DELAY 126isn't specified, it defaults to 2 seconds. The minimum allowable value for 127.Dv SCSI_DELAY 128is "100", or 100ms. One special case is that if the 129.Dv SCSI_DELAY 130is set to 0, that will be taken to mean the "lowest possible value." In 131that case, the 132.Dv SCSI_DELAY 133will be reset to 100ms. 134.El 135.Pp 136All devices and the SCSI busses support boot time allocation so that 137an upper number of devices and controllers does not need to be configured; 138.Cd "device da0" 139will suffice for any number of disk drivers. 140.Pp 141The devices are either 142.Em wired 143so they appear as a particular device unit or 144.Em counted 145so that they appear as the next available unused unit. 146.Pp 147To configure a driver in the kernel without wiring down the device use a 148config line similar to 149.Cd "device ch0" 150to include the changer driver. 151.Pp 152To wire down a unit use a config line similar to 153.Cd "device ch1 at scbus0 target 4 unit 0" 154to assign changer 1 as the changer with SCSI ID 4, 155SCSI logical unit 0 on SCSI bus 0. 156Individual scbuses can be wired down to specific controllers with 157a config line similar to 158.Cd "device scbus0 at ahc0" 159which assigns scsi bus 0 to the first unit using the ahc driver. 160For controllers supporting more than one bus, 161the particular bus can be specified as in 162.Cd "device scbus3 at ahc1 bus 1" 163which assigns scbus 1 to the second bus probed on the ahc1 device. 164.Pp 165When you have a mixture of wired down and counted devices then the 166counting begins with the first non-wired down unit for a particular 167type. That is, if you have a disk wired down as 168.Em "device da1" , 169then the first non-wired disk shall come on line as 170.Em da2 . 171.Sh ADAPTERS 172The system allows common device drivers to work through many different 173types of adapters. 174The adapters take requests from the upper layers and do 175all IO between the 176.Em SCSI 177bus and the system. 178The maximum size of a transfer is governed by the 179adapter. 180Most adapters can transfer 64KB in a single operation, however 181many can transfer larger amounts. 182.Sh TARGET MODE 183Some adapters support 184.Em target mode 185in which the system is capable of operating as a device, responding to 186operations initiated by another system. 187Target mode is supported for 188some adapters, but is not yet complete for this version of the CAM 189.Tn SCSI 190subsystem. 191.Sh FILES 192see other scsi device entries. 193.Sh DIAGNOSTICS 194When the kernel is compiled with options CAMDEBUG, an XPT_DEBUG CCB can be 195used to enable various amounts of tracing information on any 196specific device. 197Devices not being traced will not produce trace information. 198There are currently four debugging flags that may be turned on: 199.Bl -tag -width CAM_DEBUG_SUBTRACE 200.It Dv CAM_DEBUG_INFO 201This debugging flag enables general informational printfs for the device 202or devices in question. 203.It Dv CAM_DEBUG_TRACE 204This debugging flag enables function-level command flow tracing. i.e.\& 205kernel printfs will happen at the entrance and exit of various functions. 206.It Dv CAM_DEBUG_SUBTRACE 207This debugging flag enables debugging output internal to various functions. 208.It Dv CAM_DEBUG_CDB 209This debugging flag will cause the kernel to print out all 210.Tn SCSI 211commands sent to a particular device or devices. 212.El 213.Pp 214Some of these flags, most notably 215.Dv CAM_DEBUG_TRACE 216and 217.Dv CAM_DEBUG_SUBTRACE 218will produce kernel printfs in EXTREME numbers. Because of that, they 219aren't especially useful. There aren't many things logged at the 220.Dv CAM_DEBUG_INFO 221level, so it isn't especially useful. The most useful debugging flag is 222the 223.Dv CAM_DEBUG_CDB 224flag. Users can enable debugging from their kernel config file, by using 225the following kernel config options: 226.Bl -tag -width CAM_DEBUG_TARGET 227.It Dv CAMDEBUG 228This enables CAM debugging. Without this option, users will not even be able 229to turn on debugging from userland via 230.Xr camcontrol 8 . 231.It Dv CAM_DEBUG_FLAGS 232This allows the user to set the various debugging flags described above 233in a kernel config file. Flags may be ORed together if the user wishes to 234see printfs for multiple debugging levels. 235.It Dv CAM_DEBUG_BUS 236Specify a bus to debug. To debug all busses, set this to -1. 237.It Dv CAM_DEBUG_TARGET 238Specify a target to debug. To debug all targets, set this to -1. 239.It Dv CAM_DEBUG_LUN 240Specify a lun to debug. To debug all luns, set this to -1. 241.El 242.Pp 243When specifying a bus, target or lun to debug, you 244.Em MUST 245specify all three bus/target/lun options above. Using wildcards, you 246should be able to enable debugging on most anything. 247.Pp 248Users may also enable debugging printfs on the fly, if the 249.Dv CAMDEBUG 250option is their config file, by using the 251.Xr camcontrol 8 252utility. See 253.Xr camcontrol 8 254for details. 255.Sh SEE ALSO 256.Xr aha 4 , 257.Xr ahb 4 , 258.Xr ahc 4 , 259.Xr bt 4 , 260.Xr cd 4 , 261.Xr ch 4 , 262.Xr da 4 , 263.Xr pass 4 , 264.Xr pt 4 , 265.Xr sa 4 , 266.Xr xpt 4 , 267.Xr camcontrol 8 268.Sh HISTORY 269The CAM 270.Tn SCSI 271subsystem first appeared in 272.Fx 3.0 . 273.Sh AUTHORS 274.An -nosplit 275The CAM 276.Tn SCSI 277subsystem was written by 278.An Justin Gibbs 279and 280.An Kenneth Merry . 281