SCSI Port Driver Overview

Windows provides a SCSI Port driver as a standard feature of the Windows storage architecture. The Windows storage architecture also provides the Storport Driver, which is the recommended alternative to SCSI Port for high-performance devices.

The SCSI Port driver streamlines the Windows storage subsystem by emulating a simplified SCSI adapter. Storage class drivers load on top of the SCSI port driver. This architecture allows you to write Windows storage class drivers with minimal concern for the unique hardware features of each SCSI adapter.

The emulation capabilities of the SCSI Port driver also allow you to develop minidrivers that are simpler to design and code than a monolithic port driver. In other words, using the SCSI Port driver allows you to focus on developing a miniport driver that handles the particular features of your adapter.

To use the SCSI Port support routines, link to one of the SCSI Port support libraries, scsiport.lib or scsiwmi.lib. These SCSI Port libraries handle all interaction between the miniport driver and the hardware abstraction layers (HAL) of the operating system. Miniport drivers must not link directly to the HAL support library, hal.lib, nor should they link directly to the ntoskrnl.lib or libcntpr.lib support libraries. SCSI miniport drivers to are incorrectly linked don't qualify for the Windows Hardware Compatibility Program.

The following articles examine the key features of the SCSI Port driver.

A general discussion of SCSI Port miniport drivers is provided in SCSI Miniport Drivers.