NetBSD/sys/dev/scsipi/scsi_disk.h

376 lines
12 KiB
C
Raw Normal View History

/* $NetBSD: scsi_disk.h,v 1.29 2005/01/31 23:06:41 reinoud Exp $ */
1993-03-21 21:04:42 +03:00
/*
* SCSI-specific interface description
*/
/*
* Some lines of this file come from a file of the name "scsi.h"
1993-03-21 21:04:42 +03:00
* distributed by OSF as part of mach2.5,
* so the following disclaimer has been kept.
*
* Copyright 1990 by Open Software Foundation,
* Grenoble, FRANCE
*
* All Rights Reserved
*
1993-03-21 21:04:42 +03:00
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appears in all copies and
* that both the copyright notice and this permission notice appear in
* supporting documentation, and that the name of OSF or Open Software
* Foundation not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission.
*
1993-03-21 21:04:42 +03:00
* OSF DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
* IN NO EVENT SHALL OSF BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
* NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Largely written by Julian Elischer (julian@tfs.com)
* for TRW Financial Systems.
*
* TRW Financial Systems, in accordance with their agreement with Carnegie
* Mellon University, makes this software available to CMU to distribute
* or use in any manner that they see fit as long as this message is kept with
1993-03-21 21:04:42 +03:00
* the software. For this reason TFS also grants any other persons or
* organisations permission to use or modify this software.
*
* TFS supplies this software to be publicly redistributed
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
*/
/*
* SCSI command format
*/
2003-01-07 00:02:18 +03:00
#ifndef _DEV_SCSIPI_SCSI_DISK_H_
#define _DEV_SCSIPI_SCSI_DISK_H_
1993-03-21 21:04:42 +03:00
/*
* XXX Is this also used by ATAPI?
*/
#define SCSI_FORMAT_UNIT 0x04
struct scsi_format_unit {
uint8_t opcode;
uint8_t flags;
#define SFU_DLF_MASK 0x07
#define SFU_CMPLST 0x08
#define SFU_FMTDATA 0x10
uint8_t vendor_specific;
uint8_t interleave[2];
uint8_t control;
};
/*
* If the FmtData bit is set, a FORMAT UNIT parameter list is transfered
* to the target during the DATA OUT phase. The parameter list includes
*
* Defect list header
* Initialization pattern descriptor (if any)
* Defect descriptor(s) (if any)
*/
struct scsi_format_unit_defect_list_header {
uint8_t reserved;
uint8_t flags;
#define DLH_VS 0x01 /* vendor specific */
#define DLH_IMMED 0x02 /* immediate return */
#define DLH_DSP 0x04 /* disable saving parameters */
#define DLH_IP 0x08 /* initialization pattern */
#define DLH_STPF 0x10 /* stop format */
#define DLH_DCRT 0x20 /* disable certification */
#define DLH_DPRY 0x40 /* disable primary */
#define DLH_FOV 0x80 /* format options valid */
uint8_t defect_lst_len[2];
};
/*
* See Table 117 of the SCSI-2 specification for a description of
* the IP modifier.
*/
struct scsi_initialization_pattern_descriptor {
uint8_t ip_modifier;
uint8_t pattern_type;
#define IP_TYPE_DEFAULT 0x01
#define IP_TYPE_REPEAT 0x01
/* 0x02 -> 0x7f: reserved */
/* 0x80 -> 0xff: vendor-specific */
uint8_t pattern_length[2];
#if 0
uint8_t pattern[...];
#endif
};
/*
* Defect desciptors. These are used as the defect lists in the FORMAT UNIT
* and READ DEFECT DATA commands, and as the translate page of the
* SEND DIAGNOSTIC and RECEIVE DIAGNOSTIC RESULTS commands.
*/
/* Block format */
struct scsi_defect_descriptor_bf {
uint8_t block_address[4];
};
/* Bytes from index format */
struct scsi_defect_descriptor_bfif {
uint8_t cylinder[3];
uint8_t head;
uint8_t bytes_from_index[4];
};
/* Physical sector format */
struct scsi_defect_descriptor_psf {
uint8_t cylinder[3];
uint8_t head;
uint8_t sector[4];
};
/*
* XXX for now this isn't in the ATAPI specs, but if there are on day
* ATAPI hard disks, it is likely that they implement this command (or a
* command like this ?
*/
#define SCSI_REASSIGN_BLOCKS 0x07
struct scsi_reassign_blocks {
uint8_t opcode;
uint8_t byte2;
uint8_t unused[3];
uint8_t control;
1993-03-21 21:04:42 +03:00
};
1997-10-03 05:56:52 +04:00
/*
* XXX Is this also used by ATAPI?
*/
#define SCSI_REZERO_UNIT 0x01
struct scsi_rezero_unit {
uint8_t opcode;
uint8_t byte2;
uint8_t reserved[3];
uint8_t control;
1997-10-03 05:56:52 +04:00
};
#define SCSI_READ_6_COMMAND 0x08
#define SCSI_WRITE_6_COMMAND 0x0a
struct scsi_rw_6 {
uint8_t opcode;
uint8_t addr[3];
#define SRW_TOPADDR 0x1F /* only 5 bits here */
uint8_t length;
uint8_t control;
1993-03-21 21:04:42 +03:00
};
1998-06-09 23:03:24 +04:00
/*
* XXX Does ATAPI have an equivalent?
*/
#define SCSI_SYNCHRONIZE_CACHE_10 0x35
struct scsi_synchronize_cache_10 {
uint8_t opcode;
uint8_t flags;
2004-12-08 02:21:06 +03:00
#define SSC_RELADR 0x01 /* obsolete */
1998-06-09 23:03:24 +04:00
#define SSC_IMMED 0x02
2004-12-08 02:21:06 +03:00
#define SSC_SYNC_NV 0x04
uint8_t addr[4];
uint8_t byte7;
uint8_t length[2];
uint8_t control;
1998-06-09 23:03:24 +04:00
};
/*
* XXX Does ATAPI have an equivalent?
*/
#define SCSI_READ_DEFECT_DATA 0x37
struct scsi_read_defect_data {
uint8_t opcode;
uint8_t byte2;
#define RDD_PRIMARY 0x10
#define RDD_GROWN 0x08
#define RDD_BF 0x00
#define RDD_BFIF 0x04
#define RDD_PSF 0x05
uint8_t flags;
uint8_t reserved[4];
uint8_t length[2];
uint8_t control;
};
2004-12-08 02:21:06 +03:00
#define SCSI_SYNCHRONIZE_CACHE_16 0x91
struct scsi_synchronize_cache_16 {
uint8_t opcode;
uint8_t flags; /* see SYNCHRONIZE CACHE (10) */
uint8_t addr[8];
uint8_t length[4];
uint8_t byte15;
uint8_t control;
2004-12-08 02:21:06 +03:00
};
/* DATAs definitions for the above commands */
1993-03-21 21:04:42 +03:00
struct scsi_reassign_blocks_data {
uint8_t reserved[2];
uint8_t length[2];
struct {
uint8_t dlbaddr[4];
1993-03-21 21:04:42 +03:00
} defect_descriptor[1];
};
struct scsi_read_defect_data_data {
uint8_t reserved;
uint8_t flags;
uint8_t length[2];
union scsi_defect_descriptor {
struct scsi_defect_descriptor_bf bf;
struct scsi_defect_descriptor_bfif bfif;
struct scsi_defect_descriptor_psf psf;
} defect_descriptor[1];
};
union scsi_disk_pages {
#define DISK_PGCODE 0x3F /* only 6 bits valid */
struct page_disk_format {
uint8_t pg_code; /* page code (should be 3) */
uint8_t pg_length; /* page length (should be 0x16) */
uint8_t trk_z[2]; /* tracks per zone */
uint8_t alt_sec[2]; /* alternate sectors per zone */
uint8_t alt_trk_z[2]; /* alternate tracks per zone */
uint8_t alt_trk_v[2]; /* alternate tracks per volume */
uint8_t ph_sec_t[2]; /* physical sectors per track */
uint8_t bytes_s[2]; /* bytes per sector */
uint8_t interleave[2]; /* interleave */
uint8_t trk_skew[2]; /* track skew factor */
uint8_t cyl_skew[2]; /* cylinder skew */
uint8_t flags; /* various */
#define DISK_FMT_SURF 0x10
#define DISK_FMT_RMB 0x20
#define DISK_FMT_HSEC 0x40
#define DISK_FMT_SSEC 0x80
uint8_t reserved2;
uint8_t reserved3;
1993-03-21 21:04:42 +03:00
} disk_format;
struct page_rigid_geometry {
uint8_t pg_code; /* page code (should be 4) */
uint8_t pg_length; /* page length (should be 0x16) */
uint8_t ncyl[3]; /* number of cylinders */
uint8_t nheads; /* number of heads */
uint8_t st_cyl_wp[3]; /* starting cyl., write precomp */
uint8_t st_cyl_rwc[3]; /* starting cyl., red. write cur */
uint8_t driv_step[2]; /* drive step rate */
uint8_t land_zone[3]; /* landing zone cylinder */
uint8_t sp_sync_ctl; /* spindle synch control */
#define SPINDLE_SYNCH_MASK 0x03 /* mask of valid bits */
#define SPINDLE_SYNCH_NONE 0x00 /* synch disabled or not supported */
#define SPINDLE_SYNCH_SLAVE 0x01 /* disk is a slave */
#define SPINDLE_SYNCH_MASTER 0x02 /* disk is a master */
#define SPINDLE_SYNCH_MCONTROL 0x03 /* disk is a master control */
uint8_t rot_offset; /* rotational offset (for spindle synch) */
uint8_t reserved1;
uint8_t rpm[2]; /* media rotation speed */
uint8_t reserved2;
uint8_t reserved3;
1993-03-21 21:04:42 +03:00
} rigid_geometry;
struct page_flex_geometry {
uint8_t pg_code; /* page code (should be 5) */
uint8_t pg_length; /* page length (should be 0x1e) */
uint8_t xfr_rate[2];
uint8_t nheads; /* number of heads */
uint8_t ph_sec_tr; /* physical sectors per track */
uint8_t bytes_s[2]; /* bytes per sector */
uint8_t ncyl[2]; /* number of cylinders */
uint8_t st_cyl_wp[2]; /* start cyl., write precomp */
uint8_t st_cyl_rwc[2]; /* start cyl., red. write cur */
uint8_t driv_step[2]; /* drive step rate */
uint8_t driv_step_w; /* drive step pulse width */
uint8_t head_settle[2];/* head settle delay */
uint8_t motor_on; /* motor on delay */
uint8_t motor_off; /* motor off delay */
uint8_t flags; /* various flags */
#define MOTOR_ON 0x20 /* motor on (pin 16)? */
#define START_AT_SECTOR_1 0x40 /* start at sector 1 */
#define READY_VALID 0x20 /* RDY (pin 34) valid */
uint8_t step_p_cyl; /* step pulses per cylinder */
uint8_t write_pre; /* write precompensation */
uint8_t head_load; /* head load delay */
uint8_t head_unload; /* head unload delay */
uint8_t pin_34_2; /* pin 34 (6) pin 2 (7/11) definition */
uint8_t pin_4_1; /* pin 4 (8/9) pin 1 (13) definition */
uint8_t rpm[2]; /* rotational rate */
uint8_t reserved3;
uint8_t reserved4;
} flex_geometry;
2001-09-01 06:39:21 +04:00
struct page_caching {
uint8_t pg_code; /* page code (should be 8) */
uint8_t pg_length; /* page length (should be 0x0a) */
uint8_t flags; /* cache parameter flags */
2001-09-01 06:39:21 +04:00
#define CACHING_RCD 0x01 /* read cache disable */
#define CACHING_MF 0x02 /* multiplcation factor */
#define CACHING_WCE 0x04 /* write cache enable (write-back) */
#define CACHING_SIZE 0x08 /* use CACHE SEGMENT SIZE */
#define CACHING_DISC 0x10 /* pftch across time discontinuities */
#define CACHING_CAP 0x20 /* caching analysis permitted */
#define CACHING_ABPF 0x40 /* abort prefetch */
#define CACHING_IC 0x80 /* initiator control */
uint8_t ret_prio; /* retention priority */
2001-09-01 06:39:21 +04:00
#define READ_RET_PRIO_SHIFT 4
#define RET_PRIO_DONT_DISTINGUISH 0x0
#define RET_PRIO_REPLACE_READ_WRITE 0x1
#define RET_PRIO_REPLACE_PREFETCH 0xf
uint8_t dis_prefetch_xfer_len[2];
uint8_t min_prefetch[2];
uint8_t max_prefetch[2];
uint8_t max_prefetch_ceiling[2];
uint8_t flags2; /* additional cache param flags */
#define CACHING2_VS0 0x08 /* vendor specific bit */
#define CACHING2_VS1 0x10 /* vendor specific bit */
#define CACHING2_DRA 0x20 /* disable read ahead */
#define CACHING2_LBCSS 0x40 /* CACHE SEGMENT SIZE is blocks */
#define CACHING2_FSW 0x80 /* force sequential write */
uint8_t num_cache_segments;
uint8_t cache_segment_size[2];
uint8_t reserved1;
uint8_t non_cache_segment_size[2];
} caching_params;
struct page_control {
uint8_t pg_code; /* page code (should be 0x0a) */
uint8_t pg_length; /* page length (should be 0x0a) */
uint8_t ctl_flags1; /* First set of flags */
#define CTL1_TST_PER_INTR 0x40 /* Task set per initiator */
#define CTL1_TST_FIELD 0xe0 /* Full field */
#define CTL1_D_SENSE 0x04 /* Descriptor-format sense return */
#define CTL1_GLTSD 0x02 /* Glob. Log Targ. Save Disable */
#define CTL1_RLEC 0x01 /* Rpt Logging Exception Condition */
uint8_t ctl_flags2; /* Second set of flags */
#define CTL2_QAM_UNRESTRICT 0x10 /* Unrestricted reordering allowed */
#define CTL2_QAM_FIELD 0xf0 /* Full Queue alogo. modifier field */
#define CTL2_QERR_ABRT 0x02 /* Queue error - abort all */
#define CTL2_QERR_ABRT_SELF 0x06 /* Queue error - abort intr's */
#define CTL2_QERR_FIELD 0x06 /* Full field */
#define CTL2_DQUE 0x01 /* Disable queuing */
uint8_t ctl_flags3; /* Third set of flags */
#define CTL3_TAS 0x80 /* other-intr aborts generate status */
#define CTL3_RAC 0x40 /* Report A Check */
#define CTL3_UAIC_RET 0x10 /* retain UA, see SPC-3 */
#define CTL3_UAIC_RET_EST 0x30 /* retain UA and establish UA */
#define CTL3_UA_INTRLOCKS 0x30 /* UA Interlock control field */
#define CTL3_SWP 0x08 /* Software write protect */
#define CTL3_RAERP 0x04 /* (unit) Ready AER Permission */
#define CTL3_UAAERP 0x02 /* Unit Attention AER Permission */
#define CTL3_EAERP 0x01 /* Error AER Permission */
uint8_t ctl_autoload; /* autoload mode control */
#define CTL_AUTOLOAD_FIELD 0x07 /* autoload field */
uint8_t ctl_r_hld[2]; /* RAERP holdoff period */
uint8_t ctl_busy[2]; /* busy timeout period */
uint8_t ctl_selt[2]; /* extended self-test completion time */
} control_params;
};
2003-01-07 00:02:18 +03:00
#endif /* _DEV_SCSIPI_SCSI_DISK_H_ */