blob: a67194209581b69ddae5a75bac1703cc1210a888 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 Linux Kernel 2.6 series
2 SCSI mid_level - lower_level driver interface
3 =============================================
4
5Introduction
6============
7This document outlines the interface between the Linux SCSI mid level and
8SCSI lower level drivers. Lower level drivers (LLDs) are variously called
9host bus adapter (HBA) drivers and host drivers (HD). A "host" in this
10context is a bridge between a computer IO bus (e.g. PCI or ISA) and a
11single SCSI initiator port on a SCSI transport. An "initiator" port
12(SCSI terminology, see SAM-3 at http://www.t10.org) sends SCSI commands
13to "target" SCSI ports (e.g. disks). There can be many LLDs in a running
14system, but only one per hardware type. Most LLDs can control one or more
15SCSI HBAs. Some HBAs contain multiple hosts.
16
17In some cases the SCSI transport is an external bus that already has
18its own subsystem in Linux (e.g. USB and ieee1394). In such cases the
19SCSI subsystem LLD is a software bridge to the other driver subsystem.
20Examples are the usb-storage driver (found in the drivers/usb/storage
21directory) and the ieee1394/sbp2 driver (found in the drivers/ieee1394
22directory).
23
24For example, the aic7xxx LLD controls Adaptec SCSI parallel interface
25(SPI) controllers based on that company's 7xxx chip series. The aic7xxx
26LLD can be built into the kernel or loaded as a module. There can only be
27one aic7xxx LLD running in a Linux system but it may be controlling many
28HBAs. These HBAs might be either on PCI daughter-boards or built into
29the motherboard (or both). Some aic7xxx based HBAs are dual controllers
30and thus represent two hosts. Like most modern HBAs, each aic7xxx host
31has its own PCI device address. [The one-to-one correspondence between
32a SCSI host and a PCI device is common but not required (e.g. with
Paul Gortmakera88dc062012-05-16 20:33:52 -040033ISA adapters).]
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35The SCSI mid level isolates an LLD from other layers such as the SCSI
36upper layer drivers and the block layer.
37
38This version of the document roughly matches linux kernel version 2.6.8 .
39
40Documentation
41=============
42There is a SCSI documentation directory within the kernel source tree,
43typically Documentation/scsi . Most documents are in plain
44(i.e. ASCII) text. This file is named scsi_mid_low_api.txt and can be
45found in that directory. A more recent copy of this document may be found
Justin P. Mattock0ea6e612010-07-23 20:51:24 -070046at http://web.archive.org/web/20070107183357rn_1/sg.torque.net/scsi/.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047Many LLDs are documented there (e.g. aic7xxx.txt). The SCSI mid-level is
48briefly described in scsi.txt which contains a url to a document
49describing the SCSI subsystem in the lk 2.4 series. Two upper level
50drivers have documents in that directory: st.txt (SCSI tape driver) and
51scsi-generic.txt (for the sg driver).
52
53Some documentation (or urls) for LLDs may be found in the C source code
54or in the same directory as the C source code. For example to find a url
55about the USB mass storage driver see the
56/usr/src/linux/drivers/usb/storage directory.
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058Driver structure
59================
60Traditionally an LLD for the SCSI subsystem has been at least two files in
61the drivers/scsi directory. For example, a driver called "xyz" has a header
62file "xyz.h" and a source file "xyz.c". [Actually there is no good reason
63why this couldn't all be in one file; the header file is superfluous.] Some
64drivers that have been ported to several operating systems have more than
65two files. For example the aic7xxx driver has separate files for generic
66and OS-specific code (e.g. FreeBSD and Linux). Such drivers tend to have
67their own directory under the drivers/scsi directory.
68
69When a new LLD is being added to Linux, the following files (found in the
70drivers/scsi directory) will need some attention: Makefile and Kconfig .
71It is probably best to study how existing LLDs are organized.
72
73As the 2.5 series development kernels evolve into the 2.6 series
74production series, changes are being introduced into this interface. An
75example of this is driver initialization code where there are now 2 models
76available. The older one, similar to what was found in the lk 2.4 series,
77is based on hosts that are detected at HBA driver load time. This will be
78referred to the "passive" initialization model. The newer model allows HBAs
79to be hot plugged (and unplugged) during the lifetime of the LLD and will
80be referred to as the "hotplug" initialization model. The newer model is
81preferred as it can handle both traditional SCSI equipment that is
82permanently connected as well as modern "SCSI" devices (e.g. USB or
83IEEE 1394 connected digital cameras) that are hotplugged. Both
84initialization models are discussed in the following sections.
85
86An LLD interfaces to the SCSI subsystem several ways:
87 a) directly invoking functions supplied by the mid level
88 b) passing a set of function pointers to a registration function
89 supplied by the mid level. The mid level will then invoke these
90 functions at some point in the future. The LLD will supply
91 implementations of these functions.
92 c) direct access to instances of well known data structures maintained
93 by the mid level
94
95Those functions in group a) are listed in a section entitled "Mid level
96supplied functions" below.
97
98Those functions in group b) are listed in a section entitled "Interface
99functions" below. Their function pointers are placed in the members of
100"struct scsi_host_template", an instance of which is passed to
101scsi_host_alloc() ** . Those interface functions that the LLD does not
102wish to supply should have NULL placed in the corresponding member of
103struct scsi_host_template. Defining an instance of struct
104scsi_host_template at file scope will cause NULL to be placed in function
105 pointer members not explicitly initialized.
106
107Those usages in group c) should be handled with care, especially in a
108"hotplug" environment. LLDs should be aware of the lifetime of instances
109that are shared with the mid level and other layers.
110
111All functions defined within an LLD and all data defined at file scope
112should be static. For example the slave_alloc() function in an LLD
113called "xxx" could be defined as
114"static int xxx_slave_alloc(struct scsi_device * sdev) { /* code */ }"
115
116** the scsi_host_alloc() function is a replacement for the rather vaguely
117named scsi_register() function in most situations. The scsi_register()
118and scsi_unregister() functions remain to support legacy LLDs that use
119the passive initialization model.
120
121
122Hotplug initialization model
123============================
124In this model an LLD controls when SCSI hosts are introduced and removed
125from the SCSI subsystem. Hosts can be introduced as early as driver
126initialization and removed as late as driver shutdown. Typically a driver
127will respond to a sysfs probe() callback that indicates an HBA has been
128detected. After confirming that the new device is one that the LLD wants
129to control, the LLD will initialize the HBA and then register a new host
130with the SCSI mid level.
131
132During LLD initialization the driver should register itself with the
133appropriate IO bus on which it expects to find HBA(s) (e.g. the PCI bus).
134This can probably be done via sysfs. Any driver parameters (especially
135those that are writable after the driver is loaded) could also be
136registered with sysfs at this point. The SCSI mid level first becomes
137aware of an LLD when that LLD registers its first HBA.
138
139At some later time, the LLD becomes aware of an HBA and what follows
140is a typical sequence of calls between the LLD and the mid level.
141This example shows the mid level scanning the newly introduced HBA for 3
142scsi devices of which only the first 2 respond:
143
144 HBA PROBE: assume 2 SCSI devices found in scan
145LLD mid level LLD
146===-------------------=========--------------------===------
147scsi_host_alloc() -->
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700148scsi_add_host() ---->
149scsi_scan_host() -------+
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 |
151 slave_alloc()
152 slave_configure() --> scsi_adjust_queue_depth()
153 |
154 slave_alloc()
155 slave_configure()
156 |
157 slave_alloc() ***
158 slave_destroy() ***
159------------------------------------------------------------
160
161If the LLD wants to adjust the default queue settings, it can invoke
162scsi_adjust_queue_depth() in its slave_configure() routine.
163
164*** For scsi devices that the mid level tries to scan but do not
165 respond, a slave_alloc(), slave_destroy() pair is called.
166
167When an HBA is being removed it could be as part of an orderly shutdown
168associated with the LLD module being unloaded (e.g. with the "rmmod"
169command) or in response to a "hot unplug" indicated by sysfs()'s
170remove() callback being invoked. In either case, the sequence is the
171same:
172
173 HBA REMOVE: assume 2 SCSI devices attached
174LLD mid level LLD
175===----------------------=========-----------------===------
176scsi_remove_host() ---------+
177 |
178 slave_destroy()
179 slave_destroy()
180scsi_host_put()
181------------------------------------------------------------
182
183It may be useful for a LLD to keep track of struct Scsi_Host instances
184(a pointer is returned by scsi_host_alloc()). Such instances are "owned"
185by the mid-level. struct Scsi_Host instances are freed from
186scsi_host_put() when the reference count hits zero.
187
188Hot unplugging an HBA that controls a disk which is processing SCSI
189commands on a mounted file system is an interesting situation. Reference
190counting logic is being introduced into the mid level to cope with many
191of the issues involved. See the section on reference counting below.
192
193
194The hotplug concept may be extended to SCSI devices. Currently, when an
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700195HBA is added, the scsi_scan_host() function causes a scan for SCSI devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196attached to the HBA's SCSI transport. On newer SCSI transports the HBA
197may become aware of a new SCSI device _after_ the scan has completed.
198An LLD can use this sequence to make the mid level aware of a SCSI device:
199
200 SCSI DEVICE hotplug
201LLD mid level LLD
202===-------------------=========--------------------===------
203scsi_add_device() ------+
204 |
205 slave_alloc()
206 slave_configure() [--> scsi_adjust_queue_depth()]
207------------------------------------------------------------
208
209In a similar fashion, an LLD may become aware that a SCSI device has been
210removed (unplugged) or the connection to it has been interrupted. Some
211existing SCSI transports (e.g. SPI) may not become aware that a SCSI
212device has been removed until a subsequent SCSI command fails which will
213probably cause that device to be set offline by the mid level. An LLD that
214detects the removal of a SCSI device can instigate its removal from
215upper layers with this sequence:
216
217 SCSI DEVICE hot unplug
218LLD mid level LLD
219===----------------------=========-----------------===------
220scsi_remove_device() -------+
221 |
222 slave_destroy()
223------------------------------------------------------------
224
225It may be useful for an LLD to keep track of struct scsi_device instances
226(a pointer is passed as the parameter to slave_alloc() and
227slave_configure() callbacks). Such instances are "owned" by the mid-level.
228struct scsi_device instances are freed after slave_destroy().
229
230
231Passive initialization model
232============================
233These older LLDs include a file called "scsi_module.c" [yes the ".c" is a
234little surprising] in their source code. For that file to work an
235instance of struct scsi_host_template with the name "driver_template"
236needs to be defined. Here is a typical code sequence used in this model:
237 static struct scsi_host_template driver_template = {
238 ...
239 };
240 #include "scsi_module.c"
241
242The scsi_module.c file contains two functions:
243 - init_this_scsi_driver() which is executed when the LLD is
244 initialized (i.e. boot time or module load time)
245 - exit_this_scsi_driver() which is executed when the LLD is shut
246 down (i.e. module unload time)
247Note: since these functions are tagged with __init and __exit qualifiers
248an LLD should not call them explicitly (since the kernel does that).
249
250Here is an example of an initialization sequence when two hosts are
251detected (so detect() returns 2) and the SCSI bus scan on each host
252finds 1 SCSI device (and a second device does not respond).
253
254LLD mid level LLD
255===----------------------=========-----------------===------
256init_this_scsi_driver() ----+
257 |
258 detect() -----------------+
259 | |
260 | scsi_register()
261 | scsi_register()
262 |
263 slave_alloc()
264 slave_configure() --> scsi_adjust_queue_depth()
265 slave_alloc() ***
266 slave_destroy() ***
267 |
268 slave_alloc()
269 slave_configure()
270 slave_alloc() ***
271 slave_destroy() ***
272------------------------------------------------------------
273
274The mid level invokes scsi_adjust_queue_depth() with tagged queuing off and
275"cmd_per_lun" for that host as the queue length. These settings can be
276overridden by a slave_configure() supplied by the LLD.
277
278*** For scsi devices that the mid level tries to scan but do not
279 respond, a slave_alloc(), slave_destroy() pair is called.
280
281Here is an LLD shutdown sequence:
282
283LLD mid level LLD
284===----------------------=========-----------------===------
285exit_this_scsi_driver() ----+
286 |
287 slave_destroy()
288 release() --> scsi_unregister()
289 |
290 slave_destroy()
291 release() --> scsi_unregister()
292------------------------------------------------------------
293
294An LLD need not define slave_destroy() (i.e. it is optional).
295
296The shortcoming of the "passive initialization model" is that host
297registration and de-registration are (typically) tied to LLD initialization
298and shutdown. Once the LLD is initialized then a new host that appears
299(e.g. via hotplugging) cannot easily be added without a redundant
300driver shutdown and re-initialization. It may be possible to write an LLD
301that uses both initialization models.
302
303
304Reference Counting
305==================
306The Scsi_Host structure has had reference counting infrastructure added.
307This effectively spreads the ownership of struct Scsi_Host instances
308across the various SCSI layers which use them. Previously such instances
309were exclusively owned by the mid level. LLDs would not usually need to
310directly manipulate these reference counts but there may be some cases
311where they do.
312
313There are 3 reference counting functions of interest associated with
314struct Scsi_Host:
315 - scsi_host_alloc(): returns a pointer to new instance of struct
316 Scsi_Host which has its reference count ^^ set to 1
317 - scsi_host_get(): adds 1 to the reference count of the given instance
318 - scsi_host_put(): decrements 1 from the reference count of the given
319 instance. If the reference count reaches 0 then the given instance
320 is freed
321
322The Scsi_device structure has had reference counting infrastructure added.
323This effectively spreads the ownership of struct Scsi_device instances
324across the various SCSI layers which use them. Previously such instances
325were exclusively owned by the mid level. See the access functions declared
326towards the end of include/scsi/scsi_device.h . If an LLD wants to keep
327a copy of a pointer to a Scsi_device instance it should use scsi_device_get()
328to bump its reference count. When it is finished with the pointer it can
329use scsi_device_put() to decrement its reference count (and potentially
330delete it).
331
332^^ struct Scsi_Host actually has 2 reference counts which are manipulated
333in parallel by these functions.
334
335
336Conventions
337===========
338First, Linus Torvalds's thoughts on C coding style can be found in the
339Documentation/CodingStyle file.
340
341Next, there is a movement to "outlaw" typedefs introducing synonyms for
342struct tags. Both can be still found in the SCSI subsystem, but
343the typedefs have been moved to a single file, scsi_typedefs.h to
344make their future removal easier, for example:
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100345"typedef struct scsi_cmnd Scsi_Cmnd;"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347Also, most C99 enhancements are encouraged to the extent they are supported
348by the relevant gcc compilers. So C99 style structure and array
349initializers are encouraged where appropriate. Don't go too far,
350VLAs are not properly supported yet. An exception to this is the use of
351"//" style comments; /*...*/ comments are still preferred in Linux.
352
353Well written, tested and documented code, need not be re-formatted to
354comply with the above conventions. For example, the aic7xxx driver
355comes to Linux from FreeBSD and Adaptec's own labs. No doubt FreeBSD
356and Adaptec have their own coding conventions.
357
358
359Mid level supplied functions
360============================
361These functions are supplied by the SCSI mid level for use by LLDs.
362The names (i.e. entry points) of these functions are exported
363so an LLD that is a module can access them. The kernel will
364arrange for the SCSI mid level to be loaded and initialized before any LLD
365is initialized. The functions below are listed alphabetically and their
366names all start with "scsi_".
367
368Summary:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 scsi_add_device - creates new scsi device (lu) instance
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700370 scsi_add_host - perform sysfs registration and set up transport class
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 scsi_adjust_queue_depth - change the queue depth on a SCSI device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 scsi_bios_ptable - return copy of block device's partition table
373 scsi_block_requests - prevent further commands being queued to given host
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 scsi_host_alloc - return a new scsi_host instance whose refcount==1
375 scsi_host_get - increments Scsi_Host instance's refcount
376 scsi_host_put - decrements Scsi_Host instance's refcount (free if 0)
377 scsi_partsize - parse partition table into cylinders, heads + sectors
378 scsi_register - create and register a scsi host adapter instance.
379 scsi_remove_device - detach and remove a SCSI device
380 scsi_remove_host - detach and remove all SCSI devices owned by host
381 scsi_report_bus_reset - report scsi _bus_ reset observed
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700382 scsi_scan_host - scan SCSI bus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 scsi_track_queue_full - track successive QUEUE_FULL events
384 scsi_unblock_requests - allow further commands to be queued to given host
385 scsi_unregister - [calls scsi_host_put()]
386
387
388Details:
389
390/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 * scsi_add_device - creates new scsi device (lu) instance
392 * @shost: pointer to scsi host instance
393 * @channel: channel number (rarely other than 0)
394 * @id: target id number
395 * @lun: logical unit number
396 *
397 * Returns pointer to new struct scsi_device instance or
398 * ERR_PTR(-ENODEV) (or some other bent pointer) if something is
399 * wrong (e.g. no lu responds at given address)
400 *
401 * Might block: yes
402 *
403 * Notes: This call is usually performed internally during a scsi
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700404 * bus scan when an HBA is added (i.e. scsi_scan_host()). So it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * should only be called if the HBA becomes aware of a new scsi
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700406 * device (lu) after scsi_scan_host() has completed. If successful
407 * this call can lead to slave_alloc() and slave_configure() callbacks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * into the LLD.
409 *
410 * Defined in: drivers/scsi/scsi_scan.c
411 **/
412struct scsi_device * scsi_add_device(struct Scsi_Host *shost,
413 unsigned int channel,
414 unsigned int id, unsigned int lun)
415
416
417/**
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700418 * scsi_add_host - perform sysfs registration and set up transport class
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * @shost: pointer to scsi host instance
420 * @dev: pointer to struct device of type scsi class
421 *
422 * Returns 0 on success, negative errno of failure (e.g. -ENOMEM)
423 *
424 * Might block: no
425 *
426 * Notes: Only required in "hotplug initialization model" after a
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700427 * successful call to scsi_host_alloc(). This function does not
428 * scan the bus; this can be done by calling scsi_scan_host() or
429 * in some other transport-specific way. The LLD must set up
430 * the transport template before calling this function and may only
431 * access the transport class data after this function has been called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
433 * Defined in: drivers/scsi/hosts.c
434 **/
435int scsi_add_host(struct Scsi_Host *shost, struct device * dev)
436
437
438/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * scsi_adjust_queue_depth - allow LLD to change queue depth on a SCSI device
440 * @sdev: pointer to SCSI device to change queue depth on
441 * @tagged: 0 - no tagged queuing
442 * MSG_SIMPLE_TAG - simple tagged queuing
443 * MSG_ORDERED_TAG - ordered tagged queuing
444 * @tags Number of tags allowed if tagged queuing enabled,
445 * or number of commands the LLD can queue up
446 * in non-tagged mode (as per cmd_per_lun).
447 *
448 * Returns nothing
449 *
450 * Might block: no
451 *
452 * Notes: Can be invoked any time on a SCSI device controlled by this
453 * LLD. [Specifically during and after slave_configure() and prior to
Christoph Hellwig2ecb2042014-11-03 14:09:02 +0100454 * slave_destroy().] Can safely be invoked from interrupt code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 *
456 * Defined in: drivers/scsi/scsi.c [see source code for more notes]
457 *
458 **/
459void scsi_adjust_queue_depth(struct scsi_device * sdev, int tagged,
460 int tags)
461
462
463/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * scsi_bios_ptable - return copy of block device's partition table
465 * @dev: pointer to block device
466 *
467 * Returns pointer to partition table, or NULL for failure
468 *
469 * Might block: yes
470 *
471 * Notes: Caller owns memory returned (free with kfree() )
472 *
473 * Defined in: drivers/scsi/scsicam.c
474 **/
475unsigned char *scsi_bios_ptable(struct block_device *dev)
476
477
478/**
479 * scsi_block_requests - prevent further commands being queued to given host
480 *
481 * @shost: pointer to host to block commands on
482 *
483 * Returns nothing
484 *
485 * Might block: no
486 *
487 * Notes: There is no timer nor any other means by which the requests
488 * get unblocked other than the LLD calling scsi_unblock_requests().
489 *
490 * Defined in: drivers/scsi/scsi_lib.c
491**/
492void scsi_block_requests(struct Scsi_Host * shost)
493
494
495/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * scsi_host_alloc - create a scsi host adapter instance and perform basic
497 * initialization.
498 * @sht: pointer to scsi host template
499 * @privsize: extra bytes to allocate in hostdata array (which is the
500 * last member of the returned Scsi_Host instance)
501 *
502 * Returns pointer to new Scsi_Host instance or NULL on failure
503 *
504 * Might block: yes
505 *
506 * Notes: When this call returns to the LLD, the SCSI bus scan on
507 * this host has _not_ yet been done.
508 * The hostdata array (by default zero length) is a per host scratch
509 * area for the LLD's exclusive use.
510 * Both associated refcounting objects have their refcount set to 1.
511 * Full registration (in sysfs) and a bus scan are performed later when
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700512 * scsi_add_host() and scsi_scan_host() are called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 *
514 * Defined in: drivers/scsi/hosts.c .
515 **/
516struct Scsi_Host * scsi_host_alloc(struct scsi_host_template * sht,
517 int privsize)
518
519
520/**
521 * scsi_host_get - increment Scsi_Host instance refcount
522 * @shost: pointer to struct Scsi_Host instance
523 *
524 * Returns nothing
525 *
526 * Might block: currently may block but may be changed to not block
527 *
528 * Notes: Actually increments the counts in two sub-objects
529 *
530 * Defined in: drivers/scsi/hosts.c
531 **/
532void scsi_host_get(struct Scsi_Host *shost)
533
534
535/**
536 * scsi_host_put - decrement Scsi_Host instance refcount, free if 0
537 * @shost: pointer to struct Scsi_Host instance
538 *
539 * Returns nothing
540 *
541 * Might block: currently may block but may be changed to not block
542 *
543 * Notes: Actually decrements the counts in two sub-objects. If the
544 * latter refcount reaches 0, the Scsi_Host instance is freed.
545 * The LLD need not worry exactly when the Scsi_Host instance is
546 * freed, it just shouldn't access the instance after it has balanced
547 * out its refcount usage.
548 *
549 * Defined in: drivers/scsi/hosts.c
550 **/
551void scsi_host_put(struct Scsi_Host *shost)
552
553
554/**
555 * scsi_partsize - parse partition table into cylinders, heads + sectors
556 * @buf: pointer to partition table
557 * @capacity: size of (total) disk in 512 byte sectors
558 * @cyls: outputs number of cylinders calculated via this pointer
559 * @hds: outputs number of heads calculated via this pointer
560 * @secs: outputs number of sectors calculated via this pointer
561 *
562 * Returns 0 on success, -1 on failure
563 *
564 * Might block: no
565 *
566 * Notes: Caller owns memory returned (free with kfree() )
567 *
568 * Defined in: drivers/scsi/scsicam.c
569 **/
570int scsi_partsize(unsigned char *buf, unsigned long capacity,
571 unsigned int *cyls, unsigned int *hds, unsigned int *secs)
572
573
574/**
575 * scsi_register - create and register a scsi host adapter instance.
576 * @sht: pointer to scsi host template
577 * @privsize: extra bytes to allocate in hostdata array (which is the
578 * last member of the returned Scsi_Host instance)
579 *
580 * Returns pointer to new Scsi_Host instance or NULL on failure
581 *
582 * Might block: yes
583 *
584 * Notes: When this call returns to the LLD, the SCSI bus scan on
585 * this host has _not_ yet been done.
586 * The hostdata array (by default zero length) is a per host scratch
587 * area for the LLD.
588 *
589 * Defined in: drivers/scsi/hosts.c .
590 **/
591struct Scsi_Host * scsi_register(struct scsi_host_template * sht,
592 int privsize)
593
594
595/**
596 * scsi_remove_device - detach and remove a SCSI device
597 * @sdev: a pointer to a scsi device instance
598 *
599 * Returns value: 0 on success, -EINVAL if device not attached
600 *
601 * Might block: yes
602 *
603 * Notes: If an LLD becomes aware that a scsi device (lu) has
604 * been removed but its host is still present then it can request
605 * the removal of that scsi device. If successful this call will
606 * lead to the slave_destroy() callback being invoked. sdev is an
607 * invalid pointer after this call.
608 *
609 * Defined in: drivers/scsi/scsi_sysfs.c .
610 **/
611int scsi_remove_device(struct scsi_device *sdev)
612
613
614/**
615 * scsi_remove_host - detach and remove all SCSI devices owned by host
616 * @shost: a pointer to a scsi host instance
617 *
618 * Returns value: 0 on success, 1 on failure (e.g. LLD busy ??)
619 *
620 * Might block: yes
621 *
622 * Notes: Should only be invoked if the "hotplug initialization
623 * model" is being used. It should be called _prior_ to
624 * scsi_unregister().
625 *
626 * Defined in: drivers/scsi/hosts.c .
627 **/
628int scsi_remove_host(struct Scsi_Host *shost)
629
630
631/**
632 * scsi_report_bus_reset - report scsi _bus_ reset observed
633 * @shost: a pointer to a scsi host involved
634 * @channel: channel (within) host on which scsi bus reset occurred
635 *
636 * Returns nothing
637 *
638 * Might block: no
639 *
640 * Notes: This only needs to be called if the reset is one which
641 * originates from an unknown location. Resets originated by the
642 * mid level itself don't need to call this, but there should be
643 * no harm. The main purpose of this is to make sure that a
644 * CHECK_CONDITION is properly treated.
645 *
646 * Defined in: drivers/scsi/scsi_error.c .
647 **/
648void scsi_report_bus_reset(struct Scsi_Host * shost, int channel)
649
650
651/**
Matthew Wilcoxdc25fcf2005-11-10 07:45:55 -0700652 * scsi_scan_host - scan SCSI bus
653 * @shost: a pointer to a scsi host instance
654 *
655 * Might block: yes
656 *
657 * Notes: Should be called after scsi_add_host()
658 *
659 * Defined in: drivers/scsi/scsi_scan.c
660 **/
661void scsi_scan_host(struct Scsi_Host *shost)
662
663
664/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * scsi_track_queue_full - track successive QUEUE_FULL events on given
666 * device to determine if and when there is a need
667 * to adjust the queue depth on the device.
668 * @sdev: pointer to SCSI device instance
669 * @depth: Current number of outstanding SCSI commands on this device,
670 * not counting the one returned as QUEUE_FULL.
671 *
672 * Returns 0 - no change needed
673 * >0 - adjust queue depth to this new depth
674 * -1 - drop back to untagged operation using host->cmd_per_lun
675 * as the untagged command depth
676 *
677 * Might block: no
678 *
679 * Notes: LLDs may call this at any time and we will do "The Right
680 * Thing"; interrupt context safe.
681 *
682 * Defined in: drivers/scsi/scsi.c .
683 **/
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100684int scsi_track_queue_full(struct scsi_device *sdev, int depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686
687/**
688 * scsi_unblock_requests - allow further commands to be queued to given host
689 *
690 * @shost: pointer to host to unblock commands on
691 *
692 * Returns nothing
693 *
694 * Might block: no
695 *
696 * Defined in: drivers/scsi/scsi_lib.c .
697**/
698void scsi_unblock_requests(struct Scsi_Host * shost)
699
700
701/**
702 * scsi_unregister - unregister and free memory used by host instance
703 * @shp: pointer to scsi host instance to unregister.
704 *
705 * Returns nothing
706 *
707 * Might block: no
708 *
709 * Notes: Should not be invoked if the "hotplug initialization
710 * model" is being used. Called internally by exit_this_scsi_driver()
711 * in the "passive initialization model". Hence a LLD has no need to
712 * call this function directly.
713 *
714 * Defined in: drivers/scsi/hosts.c .
715 **/
716void scsi_unregister(struct Scsi_Host * shp)
717
718
719
720
721Interface Functions
722===================
723Interface functions are supplied (defined) by LLDs and their function
724pointers are placed in an instance of struct scsi_host_template which
725is passed to scsi_host_alloc() [or scsi_register() / init_this_scsi_driver()].
726Some are mandatory. Interface functions should be declared static. The
727accepted convention is that driver "xyz" will declare its slave_configure()
728function as:
729 static int xyz_slave_configure(struct scsi_device * sdev);
730and so forth for all interface functions listed below.
731
732A pointer to this function should be placed in the 'slave_configure' member
733of a "struct scsi_host_template" instance. A pointer to such an instance
734should be passed to the mid level's scsi_host_alloc() [or scsi_register() /
735init_this_scsi_driver()].
736
737The interface functions are also described in the include/scsi/scsi_host.h
738file immediately above their definition point in "struct scsi_host_template".
739In some cases more detail is given in scsi_host.h than below.
740
741The interface functions are listed below in alphabetical order.
742
743Summary:
744 bios_param - fetch head, sector, cylinder info for a disk
745 detect - detects HBAs this driver wants to control
746 eh_timed_out - notify the host that a command timer expired
747 eh_abort_handler - abort given command
748 eh_bus_reset_handler - issue SCSI bus reset
749 eh_device_reset_handler - issue SCSI device reset
750 eh_host_reset_handler - reset host (host bus adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 info - supply information about given host
752 ioctl - driver can respond to ioctls
753 proc_info - supports /proc/scsi/{driver_name}/{host_no}
754 queuecommand - queue scsi command, invoke 'done' on completion
755 release - release all resources associated with given host
756 slave_alloc - prior to any commands being sent to a new device
757 slave_configure - driver fine tuning for given device after attach
758 slave_destroy - given device is about to be shut down
759
760
761Details:
762
763/**
764 * bios_param - fetch head, sector, cylinder info for a disk
765 * @sdev: pointer to scsi device context (defined in
766 * include/scsi/scsi_device.h)
767 * @bdev: pointer to block device context (defined in fs.h)
768 * @capacity: device size (in 512 byte sectors)
769 * @params: three element array to place output:
770 * params[0] number of heads (max 255)
771 * params[1] number of sectors (max 63)
772 * params[2] number of cylinders
773 *
774 * Return value is ignored
775 *
776 * Locks: none
777 *
778 * Calling context: process (sd)
779 *
780 * Notes: an arbitrary geometry (based on READ CAPACITY) is used
781 * if this function is not provided. The params array is
782 * pre-initialized with made up values just in case this function
783 * doesn't output anything.
784 *
785 * Optionally defined in: LLD
786 **/
787 int bios_param(struct scsi_device * sdev, struct block_device *bdev,
788 sector_t capacity, int params[3])
789
790
791/**
792 * detect - detects HBAs this driver wants to control
793 * @shtp: host template for this driver.
794 *
795 * Returns number of hosts this driver wants to control. 0 means no
796 * suitable hosts found.
797 *
798 * Locks: none held
799 *
800 * Calling context: process [invoked from init_this_scsi_driver()]
801 *
802 * Notes: First function called from the SCSI mid level on this
803 * driver. Upper level drivers (e.g. sd) may not (yet) be present.
804 * For each host found, this method should call scsi_register()
805 * [see hosts.c].
806 *
807 * Defined in: LLD (required if "passive initialization mode" is used,
808 * not invoked in "hotplug initialization mode")
809 **/
810 int detect(struct scsi_host_template * shtp)
811
812
813/**
814 * eh_timed_out - The timer for the command has just fired
815 * @scp: identifies command timing out
816 *
817 * Returns:
818 *
819 * EH_HANDLED: I fixed the error, please complete the command
820 * EH_RESET_TIMER: I need more time, reset the timer and
821 * begin counting again
822 * EH_NOT_HANDLED Begin normal error recovery
823 *
824 *
825 * Locks: None held
826 *
827 * Calling context: interrupt
828 *
829 * Notes: This is to give the LLD an opportunity to do local recovery.
830 * This recovery is limited to determining if the outstanding command
831 * will ever complete. You may not abort and restart the command from
832 * this callback.
833 *
834 * Optionally defined in: LLD
835 **/
836 int eh_timed_out(struct scsi_cmnd * scp)
837
838
839/**
840 * eh_abort_handler - abort command associated with scp
841 * @scp: identifies command to be aborted
842 *
843 * Returns SUCCESS if command aborted else FAILED
844 *
Jeff Garzik 8fa728a2005-05-28 07:54:40 -0400845 * Locks: None held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 *
847 * Calling context: kernel thread
848 *
Hannes Reinecke6ad55502013-11-11 13:44:57 +0100849 * Notes: If 'no_async_abort' is defined this callback
850 * will be invoked from scsi_eh thread. No other commands
851 * will then be queued on current host during eh.
852 * Otherwise it will be called whenever scsi_times_out()
853 * is called due to a command timeout.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 *
855 * Optionally defined in: LLD
856 **/
857 int eh_abort_handler(struct scsi_cmnd * scp)
858
859
860/**
861 * eh_bus_reset_handler - issue SCSI bus reset
862 * @scp: SCSI bus that contains this device should be reset
863 *
864 * Returns SUCCESS if command aborted else FAILED
865 *
Jeff Garzik 68b3aa72005-05-28 07:56:31 -0400866 * Locks: None held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 *
868 * Calling context: kernel thread
869 *
870 * Notes: Invoked from scsi_eh thread. No other commands will be
871 * queued on current host during eh.
872 *
873 * Optionally defined in: LLD
874 **/
875 int eh_bus_reset_handler(struct scsi_cmnd * scp)
876
877
878/**
879 * eh_device_reset_handler - issue SCSI device reset
880 * @scp: identifies SCSI device to be reset
881 *
882 * Returns SUCCESS if command aborted else FAILED
883 *
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -0400884 * Locks: None held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 *
886 * Calling context: kernel thread
887 *
888 * Notes: Invoked from scsi_eh thread. No other commands will be
889 * queued on current host during eh.
890 *
891 * Optionally defined in: LLD
892 **/
893 int eh_device_reset_handler(struct scsi_cmnd * scp)
894
895
896/**
897 * eh_host_reset_handler - reset host (host bus adapter)
898 * @scp: SCSI host that contains this device should be reset
899 *
900 * Returns SUCCESS if command aborted else FAILED
901 *
Jeff Garzik df0ae242005-05-28 07:57:14 -0400902 * Locks: None held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 *
904 * Calling context: kernel thread
905 *
906 * Notes: Invoked from scsi_eh thread. No other commands will be
907 * queued on current host during eh.
908 * With the default eh_strategy in place, if none of the _abort_,
909 * _device_reset_, _bus_reset_ or this eh handler function are
910 * defined (or they all return FAILED) then the device in question
911 * will be set offline whenever eh is invoked.
912 *
913 * Optionally defined in: LLD
914 **/
915 int eh_host_reset_handler(struct scsi_cmnd * scp)
916
917
918/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * info - supply information about given host: driver name plus data
920 * to distinguish given host
921 * @shp: host to supply information about
922 *
923 * Return ASCII null terminated string. [This driver is assumed to
924 * manage the memory pointed to and maintain it, typically for the
925 * lifetime of this host.]
926 *
927 * Locks: none
928 *
929 * Calling context: process
930 *
931 * Notes: Often supplies PCI or ISA information such as IO addresses
932 * and interrupt numbers. If not supplied struct Scsi_Host::name used
933 * instead. It is assumed the returned information fits on one line
934 * (i.e. does not included embedded newlines).
935 * The SCSI_IOCTL_PROBE_HOST ioctl yields the string returned by this
936 * function (or struct Scsi_Host::name if this function is not
937 * available).
938 * In a similar manner, init_this_scsi_driver() outputs to the console
939 * each host's "info" (or name) for the driver it is registering.
940 * Also if proc_info() is not supplied, the output of this function
941 * is used instead.
942 *
943 * Optionally defined in: LLD
944 **/
945 const char * info(struct Scsi_Host * shp)
946
947
948/**
949 * ioctl - driver can respond to ioctls
950 * @sdp: device that ioctl was issued for
951 * @cmd: ioctl number
952 * @arg: pointer to read or write data from. Since it points to
953 * user space, should use appropriate kernel functions
954 * (e.g. copy_from_user() ). In the Unix style this argument
955 * can also be viewed as an unsigned long.
956 *
957 * Returns negative "errno" value when there is a problem. 0 or a
958 * positive value indicates success and is returned to the user space.
959 *
960 * Locks: none
961 *
962 * Calling context: process
963 *
964 * Notes: The SCSI subsystem uses a "trickle down" ioctl model.
965 * The user issues an ioctl() against an upper level driver
966 * (e.g. /dev/sdc) and if the upper level driver doesn't recognize
967 * the 'cmd' then it is passed to the SCSI mid level. If the SCSI
968 * mid level does not recognize it, then the LLD that controls
969 * the device receives the ioctl. According to recent Unix standards
970 * unsupported ioctl() 'cmd' numbers should return -ENOTTY.
971 *
972 * Optionally defined in: LLD
973 **/
974 int ioctl(struct scsi_device *sdp, int cmd, void *arg)
975
976
977/**
978 * proc_info - supports /proc/scsi/{driver_name}/{host_no}
979 * @buffer: anchor point to output to (0==writeto1_read0) or fetch from
980 * (1==writeto1_read0).
981 * @start: where "interesting" data is written to. Ignored when
982 * 1==writeto1_read0.
983 * @offset: offset within buffer 0==writeto1_read0 is actually
984 * interested in. Ignored when 1==writeto1_read0 .
985 * @length: maximum (or actual) extent of buffer
986 * @host_no: host number of interest (struct Scsi_Host::host_no)
987 * @writeto1_read0: 1 -> data coming from user space towards driver
988 * (e.g. "echo some_string > /proc/scsi/xyz/2")
989 * 0 -> user what data from this driver
990 * (e.g. "cat /proc/scsi/xyz/2")
991 *
992 * Returns length when 1==writeto1_read0. Otherwise number of chars
993 * output to buffer past offset.
994 *
995 * Locks: none held
996 *
997 * Calling context: process
998 *
999 * Notes: Driven from scsi_proc.c which interfaces to proc_fs. proc_fs
1000 * support can now be configured out of the scsi subsystem.
1001 *
1002 * Optionally defined in: LLD
1003 **/
1004 int proc_info(char * buffer, char ** start, off_t offset,
1005 int length, int host_no, int writeto1_read0)
1006
1007
1008/**
James Bottomley29687512010-12-16 09:22:24 -05001009 * queuecommand - queue scsi command, invoke scp->scsi_done on completion
1010 * @shost: pointer to the scsi host object
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 * @scp: pointer to scsi command object
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 *
1013 * Returns 0 on success.
1014 *
1015 * If there's a failure, return either:
1016 *
1017 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
1018 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
1019 *
1020 * On both of these returns, the mid-layer will requeue the I/O
1021 *
1022 * - if the return is SCSI_MLQUEUE_DEVICE_BUSY, only that particular
1023 * device will be paused, and it will be unpaused when a command to
1024 * the device returns (or after a brief delay if there are no more
1025 * outstanding commands to it). Commands to other devices continue
1026 * to be processed normally.
1027 *
1028 * - if the return is SCSI_MLQUEUE_HOST_BUSY, all I/O to the host
1029 * is paused and will be unpaused when any command returns from
1030 * the host (or after a brief delay if there are no outstanding
1031 * commands to the host).
1032 *
1033 * For compatibility with earlier versions of queuecommand, any
1034 * other return value is treated the same as
1035 * SCSI_MLQUEUE_HOST_BUSY.
1036 *
1037 * Other types of errors that are detected immediately may be
1038 * flagged by setting scp->result to an appropriate value,
James Bottomley29687512010-12-16 09:22:24 -05001039 * invoking the scp->scsi_done callback, and then returning 0
1040 * from this function. If the command is not performed
1041 * immediately (and the LLD is starting (or will start) the given
1042 * command) then this function should place 0 in scp->result and
1043 * return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 *
1045 * Command ownership. If the driver returns zero, it owns the
James Bottomley29687512010-12-16 09:22:24 -05001046 * command and must take responsibility for ensuring the
1047 * scp->scsi_done callback is executed. Note: the driver may
1048 * call scp->scsi_done before returning zero, but after it has
1049 * called scp->scsi_done, it may not return any value other than
1050 * zero. If the driver makes a non-zero return, it must not
1051 * execute the command's scsi_done callback at any time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 *
James Bottomley29687512010-12-16 09:22:24 -05001053 * Locks: up to and including 2.6.36, struct Scsi_Host::host_lock
1054 * held on entry (with "irqsave") and is expected to be
1055 * held on return. From 2.6.37 onwards, queuecommand is
1056 * called without any locks held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 *
1058 * Calling context: in interrupt (soft irq) or process context
1059 *
James Bottomley29687512010-12-16 09:22:24 -05001060 * Notes: This function should be relatively fast. Normally it
1061 * will not wait for IO to complete. Hence the scp->scsi_done
1062 * callback is invoked (often directly from an interrupt service
1063 * routine) some time after this function has returned. In some
1064 * cases (e.g. pseudo adapter drivers that manufacture the
1065 * response to a SCSI INQUIRY) the scp->scsi_done callback may be
1066 * invoked before this function returns. If the scp->scsi_done
1067 * callback is not invoked within a certain period the SCSI mid
1068 * level will commence error processing. If a status of CHECK
1069 * CONDITION is placed in "result" when the scp->scsi_done
1070 * callback is invoked, then the LLD driver should perform
1071 * autosense and fill in the struct scsi_cmnd::sense_buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 * array. The scsi_cmnd::sense_buffer array is zeroed prior to
1073 * the mid level queuing a command to an LLD.
1074 *
1075 * Defined in: LLD
1076 **/
James Bottomley29687512010-12-16 09:22:24 -05001077 int queuecommand(struct Scsi_Host *shost, struct scsi_cmnd * scp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079
1080/**
1081 * release - release all resources associated with given host
1082 * @shp: host to be released.
1083 *
1084 * Return value ignored (could soon be a function returning void).
1085 *
1086 * Locks: none held
1087 *
1088 * Calling context: process
1089 *
1090 * Notes: Invoked from scsi_module.c's exit_this_scsi_driver().
1091 * LLD's implementation of this function should call
1092 * scsi_unregister(shp) prior to returning.
1093 * Only needed for old-style host templates.
1094 *
1095 * Defined in: LLD (required in "passive initialization model",
1096 * should not be defined in hotplug model)
1097 **/
1098 int release(struct Scsi_Host * shp)
1099
1100
1101/**
1102 * slave_alloc - prior to any commands being sent to a new device
1103 * (i.e. just prior to scan) this call is made
1104 * @sdp: pointer to new device (about to be scanned)
1105 *
1106 * Returns 0 if ok. Any other return is assumed to be an error and
1107 * the device is ignored.
1108 *
1109 * Locks: none
1110 *
1111 * Calling context: process
1112 *
1113 * Notes: Allows the driver to allocate any resources for a device
1114 * prior to its initial scan. The corresponding scsi device may not
1115 * exist but the mid level is just about to scan for it (i.e. send
1116 * and INQUIRY command plus ...). If a device is found then
1117 * slave_configure() will be called while if a device is not found
1118 * slave_destroy() is called.
1119 * For more details see the include/scsi/scsi_host.h file.
1120 *
1121 * Optionally defined in: LLD
1122 **/
1123 int slave_alloc(struct scsi_device *sdp)
1124
1125
1126/**
1127 * slave_configure - driver fine tuning for given device just after it
1128 * has been first scanned (i.e. it responded to an
1129 * INQUIRY)
1130 * @sdp: device that has just been attached
1131 *
1132 * Returns 0 if ok. Any other return is assumed to be an error and
1133 * the device is taken offline. [offline devices will _not_ have
1134 * slave_destroy() called on them so clean up resources.]
1135 *
1136 * Locks: none
1137 *
1138 * Calling context: process
1139 *
1140 * Notes: Allows the driver to inspect the response to the initial
1141 * INQUIRY done by the scanning code and take appropriate action.
1142 * For more details see the include/scsi/scsi_host.h file.
1143 *
1144 * Optionally defined in: LLD
1145 **/
1146 int slave_configure(struct scsi_device *sdp)
1147
1148
1149/**
1150 * slave_destroy - given device is about to be shut down. All
1151 * activity has ceased on this device.
1152 * @sdp: device that is about to be shut down
1153 *
1154 * Returns nothing
1155 *
1156 * Locks: none
1157 *
1158 * Calling context: process
1159 *
1160 * Notes: Mid level structures for given device are still in place
1161 * but are about to be torn down. Any per device resources allocated
1162 * by this driver for given device should be freed now. No further
1163 * commands will be sent for this sdp instance. [However the device
1164 * could be re-attached in the future in which case a new instance
1165 * of struct scsi_device would be supplied by future slave_alloc()
1166 * and slave_configure() calls.]
1167 *
1168 * Optionally defined in: LLD
1169 **/
1170 void slave_destroy(struct scsi_device *sdp)
1171
1172
1173
1174Data Structures
1175===============
1176struct scsi_host_template
1177-------------------------
1178There is one "struct scsi_host_template" instance per LLD ***. It is
1179typically initialized as a file scope static in a driver's header file. That
1180way members that are not explicitly initialized will be set to 0 or NULL.
1181Member of interest:
1182 name - name of driver (may contain spaces, please limit to
1183 less than 80 characters)
1184 proc_name - name used in "/proc/scsi/<proc_name>/<host_no>" and
1185 by sysfs in one of its "drivers" directories. Hence
1186 "proc_name" should only contain characters acceptable
1187 to a Unix file name.
1188 (*queuecommand)() - primary callback that the mid level uses to inject
1189 SCSI commands into an LLD.
1190The structure is defined and commented in include/scsi/scsi_host.h
1191
1192*** In extreme situations a single driver may have several instances
1193 if it controls several different classes of hardware (e.g. an LLD
1194 that handles both ISA and PCI cards and has a separate instance of
1195 struct scsi_host_template for each class).
1196
1197struct Scsi_Host
1198----------------
1199There is one struct Scsi_Host instance per host (HBA) that an LLD
1200controls. The struct Scsi_Host structure has many members in common
1201with "struct scsi_host_template". When a new struct Scsi_Host instance
1202is created (in scsi_host_alloc() in hosts.c) those common members are
1203initialized from the driver's struct scsi_host_template instance. Members
1204of interest:
1205 host_no - system wide unique number that is used for identifying
1206 this host. Issued in ascending order from 0.
1207 can_queue - must be greater than 0; do not send more than can_queue
1208 commands to the adapter.
1209 this_id - scsi id of host (scsi initiator) or -1 if not known
1210 sg_tablesize - maximum scatter gather elements allowed by host.
1211 0 implies scatter gather not supported by host
1212 max_sectors - maximum number of sectors (usually 512 bytes) allowed
1213 in a single SCSI command. The default value of 0 leads
1214 to a setting of SCSI_DEFAULT_MAX_SECTORS (defined in
1215 scsi_host.h) which is currently set to 1024. So for a
1216 disk the maximum transfer size is 512 KB when max_sectors
1217 is not defined. Note that this size may not be sufficient
1218 for disk firmware uploads.
1219 cmd_per_lun - maximum number of commands that can be queued on devices
1220 controlled by the host. Overridden by LLD calls to
1221 scsi_adjust_queue_depth().
1222 unchecked_isa_dma - 1=>only use bottom 16 MB of ram (ISA DMA addressing
1223 restriction), 0=>can use full 32 bit (or better) DMA
1224 address space
1225 use_clustering - 1=>SCSI commands in mid level's queue can be merged,
1226 0=>disallow SCSI command merging
Hannes Reinecke6ad55502013-11-11 13:44:57 +01001227 no_async_abort - 1=>Asynchronous aborts are not supported
1228 0=>Timed-out commands will be aborted asynchronously
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 hostt - pointer to driver's struct scsi_host_template from which
1230 this struct Scsi_Host instance was spawned
1231 hostt->proc_name - name of LLD. This is the driver name that sysfs uses
1232 transportt - pointer to driver's struct scsi_transport_template instance
1233 (if any). FC and SPI transports currently supported.
1234 sh_list - a double linked list of pointers to all struct Scsi_Host
1235 instances (currently ordered by ascending host_no)
1236 my_devices - a double linked list of pointers to struct scsi_device
1237 instances that belong to this host.
1238 hostdata[0] - area reserved for LLD at end of struct Scsi_Host. Size
1239 is set by the second argument (named 'xtr_bytes') to
1240 scsi_host_alloc() or scsi_register().
James Smart9e4f5e22009-03-26 13:33:19 -04001241 vendor_id - a unique value that identifies the vendor supplying
1242 the LLD for the Scsi_Host. Used most often in validating
1243 vendor-specific message requests. Value consists of an
1244 identifier type and a vendor-specific value.
1245 See scsi_netlink.h for a description of valid formats.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247The scsi_host structure is defined in include/scsi/scsi_host.h
1248
1249struct scsi_device
1250------------------
1251Generally, there is one instance of this structure for each SCSI logical unit
1252on a host. Scsi devices connected to a host are uniquely identified by a
1253channel number, target id and logical unit number (lun).
1254The structure is defined in include/scsi/scsi_device.h
1255
1256struct scsi_cmnd
1257----------------
1258Instances of this structure convey SCSI commands to the LLD and responses
1259back to the mid level. The SCSI mid level will ensure that no more SCSI
1260commands become queued against the LLD than are indicated by
1261scsi_adjust_queue_depth() (or struct Scsi_Host::cmd_per_lun). There will
1262be at least one instance of struct scsi_cmnd available for each SCSI device.
1263Members of interest:
1264 cmnd - array containing SCSI command
1265 cmnd_len - length (in bytes) of SCSI command
1266 sc_data_direction - direction of data transfer in data phase. See
1267 "enum dma_data_direction" in include/linux/dma-mapping.h
1268 request_bufflen - number of data bytes to transfer (0 if no data phase)
1269 use_sg - ==0 -> no scatter gather list, hence transfer data
1270 to/from request_buffer
1271 - >0 -> scatter gather list (actually an array) in
1272 request_buffer with use_sg elements
1273 request_buffer - either contains data buffer or scatter gather list
1274 depending on the setting of use_sg. Scatter gather
1275 elements are defined by 'struct scatterlist' found
1276 in include/asm/scatterlist.h .
1277 done - function pointer that should be invoked by LLD when the
1278 SCSI command is completed (successfully or otherwise).
1279 Should only be called by an LLD if the LLD has accepted
1280 the command (i.e. queuecommand() returned or will return
1281 0). The LLD may invoke 'done' prior to queuecommand()
1282 finishing.
1283 result - should be set by LLD prior to calling 'done'. A value
1284 of 0 implies a successfully completed command (and all
1285 data (if any) has been transferred to or from the SCSI
1286 target device). 'result' is a 32 bit unsigned integer that
1287 can be viewed as 4 related bytes. The SCSI status value is
1288 in the LSB. See include/scsi/scsi.h status_byte(),
1289 msg_byte(), host_byte() and driver_byte() macros and
1290 related constants.
1291 sense_buffer - an array (maximum size: SCSI_SENSE_BUFFERSIZE bytes) that
1292 should be written when the SCSI status (LSB of 'result')
1293 is set to CHECK_CONDITION (2). When CHECK_CONDITION is
1294 set, if the top nibble of sense_buffer[0] has the value 7
1295 then the mid level will assume the sense_buffer array
1296 contains a valid SCSI sense buffer; otherwise the mid
1297 level will issue a REQUEST_SENSE SCSI command to
1298 retrieve the sense buffer. The latter strategy is error
1299 prone in the presence of command queuing so the LLD should
1300 always "auto-sense".
1301 device - pointer to scsi_device object that this command is
1302 associated with.
1303 resid - an LLD should set this signed integer to the requested
1304 transfer length (i.e. 'request_bufflen') less the number
1305 of bytes that are actually transferred. 'resid' is
1306 preset to 0 so an LLD can ignore it if it cannot detect
1307 underruns (overruns should be rare). If possible an LLD
1308 should set 'resid' prior to invoking 'done'. The most
1309 interesting case is data transfers from a SCSI target
Douglas Gilbert75c65a52010-12-23 21:40:37 -05001310 device (e.g. READs) that underrun.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 underflow - LLD should place (DID_ERROR << 16) in 'result' if
1312 actual number of bytes transferred is less than this
1313 figure. Not many LLDs implement this check and some that
1314 do just output an error message to the log rather than
1315 report a DID_ERROR. Better for an LLD to implement
1316 'resid'.
1317
Douglas Gilbert75c65a52010-12-23 21:40:37 -05001318It is recommended that a LLD set 'resid' on data transfers from a SCSI
1319target device (e.g. READs). It is especially important that 'resid' is set
1320when such data transfers have sense keys of MEDIUM ERROR and HARDWARE ERROR
1321(and possibly RECOVERED ERROR). In these cases if a LLD is in doubt how much
1322data has been received then the safest approach is to indicate no bytes have
1323been received. For example: to indicate that no valid data has been received
1324a LLD might use these helpers:
1325 scsi_set_resid(SCpnt, scsi_bufflen(SCpnt));
1326where 'SCpnt' is a pointer to a scsi_cmnd object. To indicate only three 512
1327bytes blocks has been received 'resid' could be set like this:
1328 scsi_set_resid(SCpnt, scsi_bufflen(SCpnt) - (3 * 512));
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330The scsi_cmnd structure is defined in include/scsi/scsi_cmnd.h
1331
1332
1333Locks
1334=====
1335Each struct Scsi_Host instance has a spin_lock called struct
1336Scsi_Host::default_lock which is initialized in scsi_host_alloc() [found in
1337hosts.c]. Within the same function the struct Scsi_Host::host_lock pointer
Christoph Hellwig4f777ed22006-11-04 20:11:36 +01001338is initialized to point at default_lock. Thereafter lock and unlock
1339operations performed by the mid level use the struct Scsi_Host::host_lock
1340pointer. Previously drivers could override the host_lock pointer but
1341this is not allowed anymore.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344Autosense
1345=========
1346Autosense (or auto-sense) is defined in the SAM-2 document as "the
1347automatic return of sense data to the application client coincident
1348with the completion of a SCSI command" when a status of CHECK CONDITION
1349occurs. LLDs should perform autosense. This should be done when the LLD
1350detects a CHECK CONDITION status by either:
1351 a) instructing the SCSI protocol (e.g. SCSI Parallel Interface (SPI))
1352 to perform an extra data in phase on such responses
1353 b) or, the LLD issuing a REQUEST SENSE command itself
1354
1355Either way, when a status of CHECK CONDITION is detected, the mid level
1356decides whether the LLD has performed autosense by checking struct
1357scsi_cmnd::sense_buffer[0] . If this byte has an upper nibble of 7 (or 0xf)
1358then autosense is assumed to have taken place. If it has another value (and
1359this byte is initialized to 0 before each command) then the mid level will
1360issue a REQUEST SENSE command.
1361
1362In the presence of queued commands the "nexus" that maintains sense
1363buffer data from the command that failed until a following REQUEST SENSE
1364may get out of synchronization. This is why it is best for the LLD
1365to perform autosense.
1366
1367
1368Changes since lk 2.4 series
1369===========================
1370io_request_lock has been replaced by several finer grained locks. The lock
1371relevant to LLDs is struct Scsi_Host::host_lock and there is
1372one per SCSI host.
1373
1374The older error handling mechanism has been removed. This means the
1375LLD interface functions abort() and reset() have been removed.
1376The struct scsi_host_template::use_new_eh_code flag has been removed.
1377
1378In the 2.4 series the SCSI subsystem configuration descriptions were
1379aggregated with the configuration descriptions from all other Linux
1380subsystems in the Documentation/Configure.help file. In the 2.6 series,
1381the SCSI subsystem now has its own (much smaller) drivers/scsi/Kconfig
1382file that contains both configuration and help information.
1383
1384struct SHT has been renamed to struct scsi_host_template.
1385
1386Addition of the "hotplug initialization model" and many extra functions
1387to support it.
1388
1389
1390Credits
1391=======
1392The following people have contributed to this document:
1393 Mike Anderson <andmike at us dot ibm dot com>
James Bottomley99cb8132008-02-03 16:00:12 -06001394 James Bottomley <James dot Bottomley at hansenpartnership dot com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 Patrick Mansfield <patmans at us dot ibm dot com>
1396 Christoph Hellwig <hch at infradead dot org>
1397 Doug Ledford <dledford at redhat dot com>
1398 Andries Brouwer <Andries dot Brouwer at cwi dot nl>
Adrian Bunkf4b09eb2006-01-03 13:37:51 +01001399 Randy Dunlap <rdunlap at xenotime dot net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 Alan Stern <stern at rowland dot harvard dot edu>
1401
1402
1403Douglas Gilbert
1404dgilbert at interlog dot com
140521st September 2004