Difference between revisions of "Unit SCSI"
(Created page with "Return to Unit Reference === Description === ---- ''To be documented'' === Constants === ---- ''To be documented'' === Type definitions === ---- ''To...") |
|||
(23 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
---- | ---- | ||
− | '' | + | '''Ultibo SCSI Interface unit''' |
+ | |||
+ | The SCSI interface unit is device non specific in that it implements only the SCSI protocol. | ||
+ | |||
+ | Actual command transfer is performed by a device specific driver that implements the exact semantics of the device. eg USB Mass Storage devices use the SCSI protocol, the SCSI interface implements the protocol behaviour but the actual command transfer is handled by the USB storage driver. | ||
=== Constants === | === Constants === | ||
---- | ---- | ||
− | '' | + | |
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI specific constants''' <code> SCSI_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_NAME_PREFIX = 'SCSI';</code> | ||
+ | | Name prefix for SCSI Devices | ||
+ | |- | ||
+ | | <code>SCSI_HOST_PREFIX = 'SCSIHost';</code> | ||
+ | | Name prefix for Host Devices | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI device type''' <code> SCSI_TYPE_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_TYPE_NONE = 0;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>SCSI_TYPE_HDD = 1;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI device state''' <code> SCSI_STATE_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_STATE_EJECTED = 0;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>SCSI_STATE_INSERTED = 1;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI device flag''' <code> SCSI_FLAG_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_FLAG_NONE = $00000000;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI protocol message''' <code> SCSI_MESSAGE_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_COMPLETE = $00;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_EXTENDED = $01;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_SAVE_DP = $02;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_RESTORE_DP = $03;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_DISCONNECT = $04;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_ID_ERROR = $05;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_ABORT = $06;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_REJECT = $07;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_NOOP = $08;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_PARITY = $09;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_LCOMPLETE = $0a;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_FCOMPLETE = $0b;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_RESET = $0c;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_ABORT_TAG = $0d;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_CLEAR_QUEUE = $0e;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_INIT_REC = $0f;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_REL_REC = $10;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_TERMINATE = $11;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_SIMPLE_TAG = $20;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_HEAD_TAG = $21;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_ORDERED_TAG = $22;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_IGN_RESIDUE = $23;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_IDENTIFY = $80;</code> | ||
+ | | | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_X_MODIFY_DP = $00;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_X_SYNC_REQ = $01;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_X_WIDE_REQ = $03;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_MESSAGE_X_PPR_REQ = $04;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI protocol status''' <code> SCSI_STATUS_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_GOOD = $00;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_CHECK_COND = $02;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_COND_MET = $04;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_BUSY = $08;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_INT = $10;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_INT_COND_MET = $14;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_CONFLICT = $18;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_TERMINATED = $20;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_QUEUE_FULL = $28;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_ILLEGAL = $ff;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_STATUS_SENSE = $80;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI protocol sense key''' <code> SCSI_SENSE_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_NO_SENSE = $00;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_RECOVERED_ERROR = $01;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_NOT_READY = $02;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_MEDIUM_ERROR = $03;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_HARDWARE_ERROR = $04;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_ILLEGAL_REQUEST = $05;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_UNIT_ATTENTION = $06;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_DATA_PROTECT = $07;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_BLANK_CHECK = $08;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_VENDOR_SPECIFIC = $09;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_COPY_ABORTED = $0A;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_ABORTED_COMMAND = $0B;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_VOLUME_OVERFLOW = $0D;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SCSI_SENSE_MISCOMPARE = $0E;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI protocol additional sense code''' <code> SCSI_ASC_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_ASC_NO_SENSE = $00;</code> | ||
+ | | NO SENSE | ||
+ | |- | ||
+ | | <code>SCSI_ASC_RECOVERED_RETRIES = $17;</code> | ||
+ | | RECOVERED DATA WITH RETRIES | ||
+ | |- | ||
+ | | <code>SCSI_ASC_RECOVERED_ECC = $18;</code> | ||
+ | | RECOVERED DATA WITH ECC | ||
+ | |- | ||
+ | | <code>SCSI_ASC_NOT_READY_LUN = $04;</code> | ||
+ | | LOGICAL UNIT NOT READY | ||
+ | |- | ||
+ | | <code>SCSI_ASC_NOT_READY_NO_REF_POS = $06;</code> | ||
+ | | NO REFERENCE POSITION FOUND | ||
+ | |- | ||
+ | | <code>SCSI_ASC_NOT_READY_LUN_COMM = $08;</code> | ||
+ | | LOGICAL UNIT COMMUNICATION | ||
+ | |- | ||
+ | | <code>SCSI_ASC_NOT_READY_MEDIUM_NOT_PRESENT = $3A;</code> | ||
+ | | MEDIUM NOT PRESENT | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI protocol additional sense code qualifier''' <code> SCSI_ASCQ_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NO_SENSE = $00;</code> | ||
+ | | NO SENSE | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_RECOVERED_RETRIES = $01;</code> | ||
+ | | RECOVERED DATA WITH RETRIES | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_RECOVERED_ECC = $00;</code> | ||
+ | | RECOVERED DATA WITH ECC | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NOT_READY_LUN_BECOME_READY = $01;</code> | ||
+ | | LOGICAL DRIVE NOT READY - BECOMING READY | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NOT_READY_LUN_INIT_REQUIRED = $02;</code> | ||
+ | | LOGICAL DRIVE NOT READY - INITIALIZATION REQUIRED | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NOT_READY_LUN_FORMAT_PROGRESS = $04;</code> | ||
+ | | LOGICAL UNIT NOT READY - FORMAT IN PROGRESS | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NOT_READY_LUN_DEVICE_BUSY = $FF;</code> | ||
+ | | LOGICAL DRIVE NOT READY - DEVICE IS BUSY | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NOT_READY_LUN_COMM_FAILURE = $00;</code> | ||
+ | | LOGICAL UNIT COMMUNICATION FAILURE | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NOT_READY_LUN_COMM_TIMEOUT = $01;</code> | ||
+ | | LOGICAL UNIT COMMUNICATION TIME-OUT | ||
+ | |- | ||
+ | | <code>SCSI_ASCQ_NOT_READY_LUN_COMM_OVERRUN = $80;</code> | ||
+ | | LOGICAL UNIT COMMUNICATION OVERRUN | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI protocol command''' <code> SCSI_COMMAND_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_CHANGE_DEF = $40;</code> | ||
+ | | Change Definition (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_COMPARE = $39;</code> | ||
+ | | Compare (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_COPY = $18;</code> | ||
+ | | Copy (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_COP_VERIFY = $3A;</code> | ||
+ | | Copy and Verify (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_INQUIRY = $12;</code> | ||
+ | | Inquiry (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_LOG_SELECT = $4C;</code> | ||
+ | | Log Select (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_LOG_SENSE = $4D;</code> | ||
+ | | Log Sense (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_MODE_SEL6 = $15;</code> | ||
+ | | Mode Select 6-byte (Device Specific) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_MODE_SEL10 = $55;</code> | ||
+ | | Mode Select 10-byte (Device Specific) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_MODE_SEN6 = $1A;</code> | ||
+ | | Mode Sense 6-byte (Device Specific) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_MODE_SEN10 = $5A;</code> | ||
+ | | Mode Sense 10-byte (Device Specific) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_READ_BUFF = $3C;</code> | ||
+ | | Read Buffer (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_REQ_SENSE = $03;</code> | ||
+ | | Request Sense (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SEND_DIAG = $1D;</code> | ||
+ | | Send Diagnostic (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_TST_U_RDY = $00;</code> | ||
+ | | Test Unit Ready (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRITE_BUFF = $3B;</code> | ||
+ | | Write Buffer (Optional) | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | |colspan="2"|''Commands Unique to Direct Access Devices'' | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_COMPARE = $39;</code> | ||
+ | | Compare (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_FORMAT = $04;</code> | ||
+ | | Format Unit (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_LCK_UN_CAC = $36;</code> | ||
+ | | Lock Unlock Cache (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_PREFETCH = $34;</code> | ||
+ | | Prefetch (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_MED_REMOVL = $1E;</code> | ||
+ | | Prevent/Allow medium Removal (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_READ6 = $08;</code> | ||
+ | | Read 6-byte (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_READ10 = $28;</code> | ||
+ | | Read 10-byte (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_READ12 = $A8;</code> | ||
+ | | Read 12-byte (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_READ16 = $88;</code> | ||
+ | | Read 16-byte (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_RD_CAPAC = $25;</code> | ||
+ | | Read Capacity (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_RD_CAPAC10 = SCSI_COMMAND_RD_CAPAC;</code> | ||
+ | | Read Capacity (10) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_RD_DEFECT = $37;</code> | ||
+ | | Read Defect Data (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_READ_LONG = $3E;</code> | ||
+ | | Read Long (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_REASS_BLK = $07;</code> | ||
+ | | Reassign Blocks (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_RCV_DIAG = $1C;</code> | ||
+ | | Receive Diagnostic Results (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_RELEASE = $17;</code> | ||
+ | | Release Unit (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_REZERO = $01;</code> | ||
+ | | Rezero Unit (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SRCH_DAT_E = $31;</code> | ||
+ | | Search Data Equal (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SRCH_DAT_H = $30;</code> | ||
+ | | Search Data High (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SRCH_DAT_L = $32;</code> | ||
+ | | Search Data Low (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SEEK6 = $0B;</code> | ||
+ | | Seek 6-Byte (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SEEK10 = $2B;</code> | ||
+ | | Seek 10-Byte (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SEND_DIAG = $1D;</code> | ||
+ | | Send Diagnostics (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SET_LIMIT = $33;</code> | ||
+ | | Set Limits (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_START_STP = $1B;</code> | ||
+ | | Start/Stop Unit (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SYNC_CACHE = $35;</code> | ||
+ | | Synchronize Cache (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_VERIFY = $2F;</code> | ||
+ | | Verify (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRITE6 = $0A;</code> | ||
+ | | Write 6-Byte (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRITE10 = $2A;</code> | ||
+ | | Write 10-Byte (MANDATORY) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRITE12 = $AA;</code> | ||
+ | | Write 12-Byte (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRITE16 = $8A;</code> | ||
+ | | Write 16-Byte (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRT_VERIFY = $2E;</code> | ||
+ | | Write and Verify (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRITE_LONG = $3F;</code> | ||
+ | | Write Long (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_WRITE_SAME = $41;</code> | ||
+ | | Write Same (Optional) | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_RD_FMT_CAP = $23;</code> | ||
+ | | Read Format Capacities | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_SVC_ACT_IN = $9E;</code> | ||
+ | | Service Action In | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI command data''' <code> SCSI_COMMAND_MAX_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_COMMAND_MAX_SIZE = 16;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI service action''' <code> SCSI_SAI_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_SAI_READ_CAPACITY_16 = $10;</code> | ||
+ | | Read Capacity (16) | ||
+ | |- | ||
+ | | <code>SCSI_SAI_GET_LBA_STATUS = $12;</code> | ||
+ | | Get LBA Status | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI inquiry data''' <code> SCSI_INQUIRY_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_INQUIRY_STANDARD = $00;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI standard inquiry data''' <code> SCSI_STANDARD_INQUIRY_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_STANDARD_INQUIRY_SIZE = 36;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI inquiry peripheral device type''' <code> SCSI_DEVICE_TYPE_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_DISK = $00;</code> | ||
+ | | SBC-3 - Direct access block device (e.g., magnetic disk) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_TAPE = $01;</code> | ||
+ | | SSC-3 - Sequential-access device (e.g., magnetic tape) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_PRINTER = $02;</code> | ||
+ | | SSC - Printer device | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_PROCESSOR = $03;</code> | ||
+ | | SPC-2 - Processor device | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_WRITE_ONCE = $04;</code> | ||
+ | | SBC - Write-once device (e.g., some optical disks) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_CD_DVD = $05;</code> | ||
+ | | MMC-5 - CD/DVD device | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_SCANNER = $06;</code> | ||
+ | | Scanner device (obsolete) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_OPTICAL = $07;</code> | ||
+ | | SBC - Optical memory device (e.g., some optical disks) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_CHANGER = $08;</code> | ||
+ | | SMC-3 - Medium changer device (e.g., jukeboxes) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_COMMS = $09;</code> | ||
+ | | Communications device (obsolete) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_ARRAY = $0C;</code> | ||
+ | | SCC-2 - Storage array controller device (e.g., RAID) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_ENCLOSURE = $0D;</code> | ||
+ | | SES - Enclosure services device | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_RBC = $0E;</code> | ||
+ | | RBC - Simplified direct-access device (e.g., magnetic disk) | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_CARD = $0F;</code> | ||
+ | | OCRW - Optical card reader/writer device | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_BRIDGE = $10;</code> | ||
+ | | BCC - Bridge Controller Commands | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_OBJECT = $11;</code> | ||
+ | | OSD - Object-based Storage Device | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_AUTOMATION = $12;</code> | ||
+ | | ADC-2 - Automation/Drive Interface | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_WELL_KNOWN = $1E;</code> | ||
+ | | Well known logical unit | ||
+ | |- | ||
+ | | <code>SCSI_DEVICE_TYPE_UNKNOWN = $1F;</code> | ||
+ | | Unknown or no device type | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI inquiry removable media bit''' <code> SCSI_REMOVABLE_MEDIA_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_REMOVABLE_MEDIA_BIT = $80;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI request sense data''' <code> SCSI_REQUEST_SENSE_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_REQUEST_SENSE_SIZE = 18;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI read capacity data''' <code> SCSI_READ_CAPACITY_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_READ_CAPACITY_SIZE = 8;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>SCSI_READ_CAPACITY_16_SIZE = 32;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI read 10 data''' <code> SCSI_READ_10_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_READ_10_MAX_BLOCKS = $FFFF;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI write 10 data''' <code> SCSI_WRITE_10_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_WRITE_10_MAX_BLOCKS = $FFFF;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''SCSI logging''' <code> SCSI_LOG_* </code></div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>SCSI_LOG_LEVEL_DEBUG = LOG_LEVEL_DEBUG;</code> | ||
+ | | SCSI debugging messages | ||
+ | |- | ||
+ | | <code>SCSI_LOG_LEVEL_INFO = LOG_LEVEL_INFO;</code> | ||
+ | | SCSI informational messages, such as a device being attached or detached | ||
+ | |- | ||
+ | | <code>SCSI_LOG_LEVEL_ERROR = LOG_LEVEL_ERROR;</code> | ||
+ | | SCSI error messages | ||
+ | |- | ||
+ | | <code>SCSI_LOG_LEVEL_WARN = LOG_LEVEL_WARN;</code> | ||
+ | | SCSI warning messages | ||
+ | |- | ||
+ | | <code>SCSI_LOG_LEVEL_NONE = LOG_LEVEL_NONE;</code> | ||
+ | | No SCSI messages | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
=== Type definitions === | === Type definitions === | ||
---- | ---- | ||
− | '' | + | |
+ | '''SCSI host enumeration callback''' | ||
+ | |||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | <code>TSCSIHostEnumerate = function(Host:PSCSIHost; Data:Pointer):LongWord;</code> | ||
+ | | style="width: 40%;"| | ||
+ | |- | ||
+ | |} | ||
+ | |||
+ | '''SCSI host''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PSCSIHost = ^TSCSIHost;</code> | ||
+ | |||
+ | <code>TSCSIHost = record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | |colspan="2"|''Device Properties'' | ||
+ | |- | ||
+ | | <code>Device:TDevice;</code> | ||
+ | | The Device entry for this Host | ||
+ | |- | ||
+ | |colspan="2"|''Host Properties'' | ||
+ | |- | ||
+ | | <code>HostId:LongWord;</code> | ||
+ | | Unique Id of this Host in the Host table | ||
+ | |- | ||
+ | | <code>HostState:LongWord;</code> | ||
+ | | Host state (eg ?????) | ||
+ | |- | ||
+ | |colspan="2"|''Statistics Properties'' | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | |colspan="2"|''Driver Properties'' | ||
+ | |- | ||
+ | | <code>Lock:TMutexHandle;</code> | ||
+ | | Host lock | ||
+ | |- | ||
+ | |colspan="2"|''Internal Properties'' | ||
+ | |- | ||
+ | | <code>Prev:PSCSIHost;</code> | ||
+ | | Previous entry in Host table | ||
+ | |- | ||
+ | | <code>Next:PSCSIHost;</code> | ||
+ | | Next entry in Host table | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''SCSI enumeration callback''' | ||
+ | |||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | <code>TSCSIEnumerate = function(SCSI:PSCSIDevice; Data:Pointer):LongWord;</code> | ||
+ | | style="width: 40%;"| | ||
+ | |- | ||
+ | |} | ||
+ | |||
+ | '''SCSI notification callback''' | ||
+ | |||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | <code>TSCSINotification = function(Device:PDevice; Data:Pointer; Notification:LongWord):LongWord;</code> | ||
+ | | style="width: 40%;"| | ||
+ | |- | ||
+ | |} | ||
+ | |||
+ | '''SCSI device''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PSCSIDevice = ^TSCSIDevice;</code> | ||
+ | |||
+ | <code>TSCSIDevice = record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | |colspan="2"|''Device Properties'' | ||
+ | |- | ||
+ | | <code>Device:TDevice;</code> | ||
+ | | The Device entry for this SCSI | ||
+ | |- | ||
+ | |colspan="2"|''SCSI Properties'' | ||
+ | |- | ||
+ | | <code>SCSIId:LongWord;</code> | ||
+ | | Unique Id of this SCSI in the SCSI table | ||
+ | |- | ||
+ | | <code>SCSIState:LongWord;</code> | ||
+ | | SCSI state (eg SCSI_STATE_INSERTED) | ||
+ | |- | ||
+ | |colspan="2"|''Statistics Properties'' | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | |colspan="2"|''Driver Properties'' | ||
+ | |- | ||
+ | | <code>Lock:TMutexHandle;</code> | ||
+ | | Device lock | ||
+ | |- | ||
+ | | <code>Vendor:PChar;</code> | ||
+ | | SCSI Vendor | ||
+ | |- | ||
+ | | <code>Product:PChar;</code> | ||
+ | | SCSI Product | ||
+ | |- | ||
+ | | <code>Revision:PChar;</code> | ||
+ | | Firmware Revision | ||
+ | |- | ||
+ | |colspan="2"|''Internal Properties'' | ||
+ | |- | ||
+ | | <code>Prev:PSCSIDevice;</code> | ||
+ | | Previous entry in SCSI table | ||
+ | |- | ||
+ | | <code>Next:PSCSIDevice;</code> | ||
+ | | Next entry in SCSI table | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''SCSI command block''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PSCSICommandBlock = ^TSCSICommandBlock;</code> | ||
+ | |||
+ | <code>TSCSICommandBlock = record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>Command:array[0..SCSI_COMMAND_MAX_SIZE - 1] of Byte;</code> | ||
+ | | Command | ||
+ | |- | ||
+ | | <code>SenseData:array[0..63] of Byte;</code> | ||
+ | | Request Sense | ||
+ | |- | ||
+ | | <code>Status:Byte;</code> | ||
+ | | SCSI Status | ||
+ | |- | ||
+ | | <code>TargetID:Byte;</code> | ||
+ | | Target ID | ||
+ | |- | ||
+ | | <code>TargetLUN:Byte;</code> | ||
+ | | Target LUN | ||
+ | |- | ||
+ | | <code>CommandLength:Byte;</code> | ||
+ | | Command Length | ||
+ | |- | ||
+ | | <code>DataLength:LongWord;</code> | ||
+ | | Total Data Length | ||
+ | |- | ||
+ | | <code>Data:Pointer;</code> | ||
+ | | Pointer to Data | ||
+ | |- | ||
+ | | <code>MessageOut:array[0..11] of Byte;</code> | ||
+ | | Message out buffer | ||
+ | |- | ||
+ | | <code>MessageIn:array[0..11] of Byte;</code> | ||
+ | | Message in buffer | ||
+ | |- | ||
+ | | <code>SenseCommandLength:Byte;</code> | ||
+ | | Sense Command Length | ||
+ | |- | ||
+ | | <code>SenseDataLength:LongWord;</code> | ||
+ | | Sense Data Length | ||
+ | |- | ||
+ | | <code>SenseCommand:array[0..5] of Byte;</code> | ||
+ | | Sense Command | ||
+ | |- | ||
+ | | <code>ControllerStatus:LongWord;</code> | ||
+ | | Controller Status | ||
+ | |- | ||
+ | | <code>TransferredBytes:LongWord;</code> | ||
+ | | Transferred Bytes | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''SCSI standard inquiry data''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PSCSIStandardInquiryData = ^TSCSIStandardInquiryData;</code> | ||
+ | |||
+ | <code>TSCSIStandardInquiryData = packed record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>DeviceType:Byte;</code> | ||
+ | | Peripheral Device Type (Bits 4..0) | ||
+ | |- | ||
+ | | <code>RemovableMediaBit:Byte;</code> | ||
+ | | Removable Media Bit (Bit 7) ($80) | ||
+ | |- | ||
+ | | <code>Version:Byte;</code> | ||
+ | | ISO/ECMA/ANSI Version (ISO Bits 7..6)(ECMA Bits 5..3)(ANSI Bits 2..0) | ||
+ | |- | ||
+ | | <code>ResponseFormat:Byte;</code> | ||
+ | | Response Data Format (Bits 3..0) | ||
+ | |- | ||
+ | | <code>AdditionalLength:Byte;</code> | ||
+ | | Additional Length | ||
+ | |- | ||
+ | | <code>Reserved1:Byte;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>Reserved2:Word;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>Vendor:array[0..7] of Char;</code> | ||
+ | | Vendor Information | ||
+ | |- | ||
+ | | <code>Product:array[0..15] of Char;</code> | ||
+ | | Product Identification | ||
+ | |- | ||
+ | | <code>Revision:array[0..3] of Char;</code> | ||
+ | | Product Revision Level | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''SCSI request sense data''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PSCSIRequestSenseData = ^TSCSIRequestSenseData;</code> | ||
+ | |||
+ | <code>TSCSIRequestSenseData = packed record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>ErrorCode:Byte;</code> | ||
+ | | Error Code (Bits 6..0) (Bit 7 is Valid bit) | ||
+ | |- | ||
+ | | <code>Reserved1:Byte;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SenseKey:Byte;</code> | ||
+ | | Sense Key (Bits 3..0) | ||
+ | |- | ||
+ | | <code>Information:LongWord;</code> | ||
+ | | Information | ||
+ | |- | ||
+ | | <code>AdditionalLength:Byte;</code> | ||
+ | | Additional Sense Length | ||
+ | |- | ||
+ | | <code>Reserved2:LongWord;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>ASC:Byte;</code> | ||
+ | | Additional Sense Code | ||
+ | |- | ||
+ | | <code>ASCQ:Byte;</code> | ||
+ | | Additional Sense Code Qualifier | ||
+ | |- | ||
+ | | <code>Reserved3:LongWord;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''SCSI read capacity data''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PSCSIReadCapacityData = ^TSCSIReadCapacityData;</code> | ||
+ | |||
+ | <code>TSCSIReadCapacityData = packed record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>LastBlock:LongWord;</code> | ||
+ | | Last Logical Block Address (Big Endian) | ||
+ | |- | ||
+ | | <code>BlockSize:LongWord;</code> | ||
+ | | Block Length In Bytes (Big Endian) | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''SCSI read capacity 16 data''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PSCSIReadCapacity16Data = ^TSCSIReadCapacity16Data;</code> | ||
+ | |||
+ | <code>TSCSIReadCapacity16Data = packed record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>LastBlock:Int64;</code> | ||
+ | | Last Logical Block Address (Big Endian) | ||
+ | |- | ||
+ | | <code>BlockSize:LongWord;</code> | ||
+ | | Block Length In Bytes (Big Endian) | ||
+ | |- | ||
+ | | <code>Reserved1:Byte;</code> | ||
+ | | P_TYPE (Bits 3..1) PROT_EN (Bit 0) | ||
+ | |- | ||
+ | | <code>Reserved2:Byte;</code> | ||
+ | | P_I_EXPONENT (Bitss 7..4) LOGICAL BLOCKS PER PHYSICAL BLOCK EXPONENT (Bits 3..0 | ||
+ | |- | ||
+ | | <code>Reserved3:Byte;</code> | ||
+ | | TPE (Bit 7) TPRZ (Bit 6) LOWEST ALIGNED LOGICAL BLOCK ADDRESS (Bits 5..0)(Big Endian) | ||
+ | |- | ||
+ | | <code>Reserved4:Byte;</code> | ||
+ | | LOWEST ALIGNED LOGICAL BLOCK ADDRESS (Bits 7..0)(Big Endian) | ||
+ | |- | ||
+ | | <code>Reserved5:array[0..15] of Byte;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
=== Public variables === | === Public variables === | ||
---- | ---- | ||
− | '' | + | |
+ | '''SCSI logging''' | ||
+ | |||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | <code>SCSI_DEFAULT_LOG_LEVEL:LongWord = SCSI_LOG_LEVEL_DEBUG;</code> | ||
+ | | style="width: 40%;"|Minimum level for SCSI messages. Only messages with level greater than or equal to this will be printed. | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | <code>SCSI_LOG_ENABLED:Boolean;</code> | ||
+ | | style="width: 40%;"| | ||
+ | |- | ||
+ | |} | ||
+ | <br /> | ||
=== Function declarations === | === Function declarations === | ||
---- | ---- | ||
− | |||
+ | '''Initialization functions''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">procedure SCSIInit;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | |||
+ | '''SCSI functions''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceInquiry(SCSI:PSCSIDevice; var DeviceType,DeviceFlags:LongWord; var Vendor,Product,Revision:PChar):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceRequestSense(SCSI:PSCSIDevice; var SenseKey,ASC,ASCQ:Byte):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceReadCapacity(SCSI:PSCSIDevice; var BlockSize,BlockShift:LongWord; var BlockCount:Int64):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceTestUnitReady(SCSI:PSCSIDevice; var DeviceFlags:LongWord):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceRead10(SCSI:PSCSIDevice; Start:LongWord; Count:Word; Buffer:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceWrite10(SCSI:PSCSIDevice; Start:LongWord; Count:Word; Buffer:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceRead16(SCSI:PSCSIDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceWrite16(SCSI:PSCSIDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceTransport(SCSI:PSCSIDevice; Command:PSCSICommandBlock):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceCreate:PSCSIDevice;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Create a new SCSI entry</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Return | ||
+ | | Pointer to new SCSI entry or nil if SCSI could not be created | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceCreateEx(Size:LongWord):PSCSIDevice;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Create a new SCSI entry</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Size | ||
+ | | Size in bytes to allocate for new SCSI (Including the SCSI entry) | ||
+ | |- | ||
+ | ! Return | ||
+ | | Pointer to new SCSI entry or nil if SCSI could not be created | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceDestroy(SCSI:PSCSIDevice):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Destroy an existing SCSI entry</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceRegister(SCSI:PSCSIDevice):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Register a new SCSI in the SCSI table</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceDeregister(SCSI:PSCSIDevice):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Deregister a SCSI from the SCSI table</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceFind(SCSIId:LongWord):PSCSIDevice;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceFindByName(const Name:String):PSCSIDevice; inline;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceFindByDescription(const Description:String):PSCSIDevice; inline;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceEnumerate(Callback:TSCSIEnumerate; Data:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceNotification(SCSI:PSCSIDevice; Callback:TSCSINotification; Data:Pointer; Notification,Flags:LongWord):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostCreate:PSCSIHost;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Create a new Host entry</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Return | ||
+ | | Pointer to new Host entry or nil if host could not be created | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostCreateEx(Size:LongWord):PSCSIHost;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Create a new Host entry</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Size | ||
+ | | Size in bytes to allocate for new host (Including the host entry) | ||
+ | |- | ||
+ | ! Return | ||
+ | | Pointer to new Host entry or nil if host could not be created | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostDestroy(Host:PSCSIHost):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Destroy an existing Host entry</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostRegister(Host:PSCSIHost):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Register a new Host in the Host table</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostDeregister(Host:PSCSIHost):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Deregister a Host from the Host table</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostFind(HostId:LongWord):PSCSIHost;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostEnumerate(Callback:TSCSIHostEnumerate; Data:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | |||
+ | '''SCSI helper functions''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIGetCount:LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Get the current SCSI count</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceCheck(SCSI:PSCSIDevice):PSCSIDevice;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Check if the supplied SCSI is in the SCSI table</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">procedure SCSILog(Level:LongWord; SCSI:PSCSIDevice; const AText:String);</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">procedure SCSILogInfo(SCSI:PSCSIDevice; const AText:String); inline;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">procedure SCSILogWarn(SCSI:PSCSIDevice; const AText:String); inline;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">procedure SCSILogError(SCSI:PSCSIDevice; const AText:String); inline;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">procedure SCSILogDebug(SCSI:PSCSIDevice; const AText:String); inline;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIDeviceTypeToStorageType(DeviceType:Byte; Removable,Floppy:Boolean):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostGetCount:LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Get the current Host count</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIHostCheck(Host:PSCSIHost):PSCSIHost;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' Check if the supplied Host is in the host table</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | |||
+ | '''SCSI storage functions''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIStorageDeviceRead(Storage:PStorageDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIStorageDeviceWrite(Storage:PStorageDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">function SCSIStorageDeviceControl(Storage:PStorageDevice; Request:Integer; Argument1:PtrUInt; var Argument2:PtrUInt):LongWord;</pre> | ||
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
Return to [[Unit_Reference|Unit Reference]] | Return to [[Unit_Reference|Unit Reference]] |
Latest revision as of 03:36, 15 December 2022
Return to Unit Reference
Contents
[hide]Description
Ultibo SCSI Interface unit
The SCSI interface unit is device non specific in that it implements only the SCSI protocol.
Actual command transfer is performed by a device specific driver that implements the exact semantics of the device. eg USB Mass Storage devices use the SCSI protocol, the SCSI interface implements the protocol behaviour but the actual command transfer is handled by the USB storage driver.
Constants
SCSI_*
SCSI_TYPE_*
SCSI_STATE_*
SCSI_FLAG_*
SCSI_MESSAGE_*
SCSI_STATUS_*
SCSI_SENSE_*
SCSI_ASC_*
SCSI_ASCQ_*
SCSI_COMMAND_*
SCSI_COMMAND_MAX_*
SCSI_SAI_*
SCSI_INQUIRY_*
SCSI_STANDARD_INQUIRY_*
SCSI_DEVICE_TYPE_*
SCSI_REMOVABLE_MEDIA_*
SCSI_REQUEST_SENSE_*
SCSI_READ_CAPACITY_*
SCSI_READ_10_*
SCSI_WRITE_10_*
SCSI_LOG_*
Type definitions
SCSI host enumeration callback
TSCSIHostEnumerate = function(Host:PSCSIHost; Data:Pointer):LongWord;
|
SCSI host
SCSI enumeration callback
TSCSIEnumerate = function(SCSI:PSCSIDevice; Data:Pointer):LongWord;
|
SCSI notification callback
TSCSINotification = function(Device:PDevice; Data:Pointer; Notification:LongWord):LongWord;
|
SCSI device
SCSI command block
SCSI standard inquiry data
PSCSIStandardInquiryData = ^TSCSIStandardInquiryData;
TSCSIStandardInquiryData = packed record
SCSI request sense data
SCSI read capacity data
SCSI read capacity 16 data
PSCSIReadCapacity16Data = ^TSCSIReadCapacity16Data;
TSCSIReadCapacity16Data = packed record
Public variables
SCSI logging
SCSI_DEFAULT_LOG_LEVEL:LongWord = SCSI_LOG_LEVEL_DEBUG;
|
Minimum level for SCSI messages. Only messages with level greater than or equal to this will be printed. |
SCSI_LOG_ENABLED:Boolean;
|
Function declarations
Initialization functions
SCSI functions
function SCSIDeviceInquiry(SCSI:PSCSIDevice; var DeviceType,DeviceFlags:LongWord; var Vendor,Product,Revision:PChar):LongWord;
function SCSIDeviceRequestSense(SCSI:PSCSIDevice; var SenseKey,ASC,ASCQ:Byte):LongWord;
function SCSIDeviceReadCapacity(SCSI:PSCSIDevice; var BlockSize,BlockShift:LongWord; var BlockCount:Int64):LongWord;
function SCSIDeviceTestUnitReady(SCSI:PSCSIDevice; var DeviceFlags:LongWord):LongWord;
function SCSIDeviceRead10(SCSI:PSCSIDevice; Start:LongWord; Count:Word; Buffer:Pointer):LongWord;
function SCSIDeviceWrite10(SCSI:PSCSIDevice; Start:LongWord; Count:Word; Buffer:Pointer):LongWord;
function SCSIDeviceRead16(SCSI:PSCSIDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;
function SCSIDeviceWrite16(SCSI:PSCSIDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;
function SCSIDeviceTransport(SCSI:PSCSIDevice; Command:PSCSICommandBlock):LongWord;
function SCSIDeviceCreateEx(Size:LongWord):PSCSIDevice;
function SCSIDeviceDestroy(SCSI:PSCSIDevice):LongWord;
function SCSIDeviceRegister(SCSI:PSCSIDevice):LongWord;
function SCSIDeviceDeregister(SCSI:PSCSIDevice):LongWord;
function SCSIDeviceFindByName(const Name:String):PSCSIDevice; inline;
function SCSIDeviceFindByDescription(const Description:String):PSCSIDevice; inline;
function SCSIDeviceEnumerate(Callback:TSCSIEnumerate; Data:Pointer):LongWord;
function SCSIDeviceNotification(SCSI:PSCSIDevice; Callback:TSCSINotification; Data:Pointer; Notification,Flags:LongWord):LongWord;
function SCSIHostDestroy(Host:PSCSIHost):LongWord;
function SCSIHostRegister(Host:PSCSIHost):LongWord;
function SCSIHostDeregister(Host:PSCSIHost):LongWord;
function SCSIHostEnumerate(Callback:TSCSIHostEnumerate; Data:Pointer):LongWord;
SCSI helper functions
function SCSIDeviceCheck(SCSI:PSCSIDevice):PSCSIDevice;
procedure SCSILog(Level:LongWord; SCSI:PSCSIDevice; const AText:String);
procedure SCSILogInfo(SCSI:PSCSIDevice; const AText:String); inline;
procedure SCSILogWarn(SCSI:PSCSIDevice; const AText:String); inline;
procedure SCSILogError(SCSI:PSCSIDevice; const AText:String); inline;
procedure SCSILogDebug(SCSI:PSCSIDevice; const AText:String); inline;
function SCSIDeviceTypeToStorageType(DeviceType:Byte; Removable,Floppy:Boolean):LongWord;
function SCSIHostCheck(Host:PSCSIHost):PSCSIHost;
SCSI storage functions
function SCSIStorageDeviceRead(Storage:PStorageDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;
function SCSIStorageDeviceWrite(Storage:PStorageDevice; const Start,Count:Int64; Buffer:Pointer):LongWord;
function SCSIStorageDeviceControl(Storage:PStorageDevice; Request:Integer; Argument1:PtrUInt; var Argument2:PtrUInt):LongWord;
Return to Unit Reference