![]() |
![]() |
| ||||||||||||||||||||||||||||||||
Chapter 14SCSI Target DriversThe Solaris DDI/DKI divides the software interface to SCSI devices into two major parts: target drivers and host bus adapter (HBA) drivers. Target refers to a driver for a device on a SCSI bus, such as a disk or a tape drive. Host bus adapter refers to the driver for the SCSI controller on the host machine. SCSA defines the interface between these two components. This chapter discusses target drivers only. See Chapter 15, SCSI Host Bus Adapter Drivers for information on host bus adapter drivers. Note - The terms "host bus adapter" or "HBA" used in this manual are equivalent to the phrase "host adapter" defined in SCSI specifications. This chapter provides information on the following subjects: Introduction to Target DriversTarget drivers can be either character or block device drivers, depending on the device. Drivers for tape drives are usually character device drivers, while disks are handled by block device drivers. This chapter describes how to write a SCSI target driver and discusses the additional requirements that SCSA places on block and character drivers for SCSI target devices. The following reference documents provide supplemental information needed by the designers of target drivers and host bus adapter drivers. Small Computer System Interface 2 (SCSI-2), ANSI/NCITS X3.131-1994, Global Engineering Documents, 1998. ISBN 1199002488. The Basics of SCSI, Fourth Edition, ANCOT Corporation, 1998. ISBN 0963743988. Also refer to the SCSI command specification for the target device, provided by the hardware vendor. Sun Common SCSI Architecture OverviewThe Sun Common SCSI Architecture (SCSA) is the Solaris DDI/DKI programming interface for the transmission of SCSI commands from a target driver to a host bus adapter driver. This interface is independent of the type of host bus adapter hardware, the platform, the processor architecture, and the SCSI command being transported across the interface. By conforming to the SCSA, the target driver can pass any SCSI command to a target device without knowledge of the hardware implementation of the host bus adapter. The SCSA conceptually separates building the SCSI command (by the target driver) from transporting the SCSI command and data across the SCSI bus. The architecture defines the software interface between high-level and low-level software components. The higher level software component consists of one or more SCSI target drivers, which translate I/O requests into SCSI commands appropriate for the peripheral device. Figure 14-1 illustrates the SCSI architecture. Figure 14-1 SCSA Block Diagram ![]() The lower-level software component consists of a SCSA interface layer and one or more host bus adapter drivers. The target driver is responsible for the generation of the proper SCSI commands required to execute the desired function and for processing the results. General Flow of ControlAssuming no transport errors occur, the following steps describe the general flow of control for a read or write request.
SCSA allows the execution of many of such operations, both overlapped and queued, at various points in the process. The model places the management of system resources on the host bus adapter driver. The software interface enables the execution of target driver functions on host bus adapter drivers using SCSI bus adapters of varying degrees of sophistication. SCSA FunctionsSCSA defines functions to manage the allocation and freeing of resources, the sensing and setting of control states, and the transport of SCSI commands. These functions are listed in Table 14-1. Table 14-1 Standard SCSA Functions
Note - If your driver needs to work with a SCSI-1 device, use the makecom(9F) function. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||