Blame sysdeps/unix/sysv/linux/scsi/sg.h

Packit 6c4009
/* Copyright (C) 1997-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
/*
Packit 6c4009
   History:
Packit 6c4009
    Started: Aug 9 by Lawrence Foard (entropy@world.std.com), to allow user
Packit 6c4009
     process control of SCSI devices.
Packit 6c4009
    Development Sponsored by Killy Corp. NY NY
Packit 6c4009
*/
Packit 6c4009
Packit 6c4009
#ifndef _SCSI_SG_H
Packit 6c4009
#define _SCSI_SG_H	1
Packit 6c4009
Packit 6c4009
#include <features.h>
Packit 6c4009
#define __need_size_t
Packit 6c4009
#include <stddef.h>
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* New interface introduced in the 3.x SG drivers follows */
Packit 6c4009
Packit 6c4009
/* Same structure as used by readv() Linux system call. It defines one
Packit 6c4009
   scatter-gather element. */
Packit 6c4009
typedef struct sg_iovec
Packit 6c4009
{
Packit 6c4009
  void * iov_base;            /* Starting address  */
Packit 6c4009
  size_t iov_len;             /* Length in bytes  */
Packit 6c4009
} sg_iovec_t;
Packit 6c4009
Packit 6c4009
Packit 6c4009
typedef struct sg_io_hdr
Packit 6c4009
{
Packit 6c4009
  int interface_id;           /* [i] 'S' for SCSI generic (required) */
Packit 6c4009
  int dxfer_direction;        /* [i] data transfer direction  */
Packit 6c4009
  unsigned char cmd_len;      /* [i] SCSI command length ( <= 16 bytes) */
Packit 6c4009
  unsigned char mx_sb_len;    /* [i] max length to write to sbp */
Packit 6c4009
  unsigned short int iovec_count; /* [i] 0 implies no scatter gather */
Packit 6c4009
  unsigned int dxfer_len;     /* [i] byte count of data transfer */
Packit 6c4009
  void * dxferp;              /* [i], [*io] points to data transfer memory
Packit 6c4009
				 or scatter gather list */
Packit 6c4009
  unsigned char * cmdp;       /* [i], [*i] points to command to perform */
Packit 6c4009
  unsigned char * sbp;        /* [i], [*o] points to sense_buffer memory */
Packit 6c4009
  unsigned int timeout;       /* [i] MAX_UINT->no timeout (unit: millisec) */
Packit 6c4009
  unsigned int flags;         /* [i] 0 -> default, see SG_FLAG... */
Packit 6c4009
  int pack_id;                /* [i->o] unused internally (normally) */
Packit 6c4009
  void * usr_ptr;             /* [i->o] unused internally */
Packit 6c4009
  unsigned char status;       /* [o] scsi status */
Packit 6c4009
  unsigned char masked_status;/* [o] shifted, masked scsi status */
Packit 6c4009
  unsigned char msg_status;   /* [o] messaging level data (optional) */
Packit 6c4009
  unsigned char sb_len_wr;    /* [o] byte count actually written to sbp */
Packit 6c4009
  unsigned short int host_status; /* [o] errors from host adapter */
Packit 6c4009
  unsigned short int driver_status;/* [o] errors from software driver */
Packit 6c4009
  int resid;                  /* [o] dxfer_len - actual_transferred */
Packit 6c4009
  unsigned int duration;      /* [o] time taken by cmd (unit: millisec) */
Packit 6c4009
  unsigned int info;          /* [o] auxiliary information */
Packit 6c4009
} sg_io_hdr_t;
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* Use negative values to flag difference from original sg_header structure.  */
Packit 6c4009
#define SG_DXFER_NONE -1        /* e.g. a SCSI Test Unit Ready command */
Packit 6c4009
#define SG_DXFER_TO_DEV -2      /* e.g. a SCSI WRITE command */
Packit 6c4009
#define SG_DXFER_FROM_DEV -3    /* e.g. a SCSI READ command */
Packit 6c4009
#define SG_DXFER_TO_FROM_DEV -4 /* treated like SG_DXFER_FROM_DEV with the
Packit 6c4009
				   additional property than during indirect
Packit 6c4009
				   IO the user buffer is copied into the
Packit 6c4009
				   kernel buffers before the transfer */
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* following flag values can be "or"-ed together */
Packit 6c4009
#define SG_FLAG_DIRECT_IO 1     /* default is indirect IO */
Packit 6c4009
#define SG_FLAG_LUN_INHIBIT 2   /* default is to put device's lun into */
Packit 6c4009
				/* the 2nd byte of SCSI command */
Packit 6c4009
#define SG_FLAG_NO_DXFER 0x10000 /* no transfer of kernel buffers to/from */
Packit 6c4009
				/* user space (debug indirect IO) */
Packit 6c4009
Packit 6c4009
/* The following 'info' values are "or"-ed together.  */
Packit 6c4009
#define SG_INFO_OK_MASK	0x1
Packit 6c4009
#define SG_INFO_OK	0x0	/* no sense, host nor driver "noise" */
Packit 6c4009
#define SG_INFO_CHECK	0x1     /* something abnormal happened */
Packit 6c4009
Packit 6c4009
#define SG_INFO_DIRECT_IO_MASK	0x6
Packit 6c4009
#define SG_INFO_INDIRECT_IO 	0x0	/* data xfer via kernel buffers (or no xfer) */
Packit 6c4009
#define SG_INFO_DIRECT_IO 	0x2	/* direct IO requested and performed */
Packit 6c4009
#define SG_INFO_MIXED_IO 	0x4	/* part direct, part indirect IO */
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* Request information about a specific SG device, used by
Packit 6c4009
   SG_GET_SCSI_ID ioctl ().  */
Packit 6c4009
struct sg_scsi_id {
Packit 6c4009
  /* Host number as in "scsi<n>" where 'n' is one of 0, 1, 2 etc.  */
Packit 6c4009
  int host_no;
Packit 6c4009
  int channel;
Packit 6c4009
  /* SCSI id of target device.  */
Packit 6c4009
  int scsi_id;
Packit 6c4009
  int lun;
Packit 6c4009
  /* TYPE_... defined in <scsi/scsi.h>.  */
Packit 6c4009
  int scsi_type;
Packit 6c4009
  /* Host (adapter) maximum commands per lun.  */
Packit 6c4009
  short int h_cmd_per_lun;
Packit 6c4009
  /* Device (or adapter) maximum queue length.  */
Packit 6c4009
  short int d_queue_depth;
Packit 6c4009
  /* Unused, set to 0 for now.  */
Packit 6c4009
  int unused[2];
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
/* Used by SG_GET_REQUEST_TABLE ioctl().  */
Packit 6c4009
typedef struct sg_req_info {
Packit 6c4009
    char req_state;     /* 0 -> not used, 1 -> written, 2 -> ready to read */
Packit 6c4009
    char orphan;        /* 0 -> normal request, 1 -> from interruped SG_IO */
Packit 6c4009
    char sg_io_owned;   /* 0 -> complete with read(), 1 -> owned by SG_IO */
Packit 6c4009
    char problem;       /* 0 -> no problem detected, 1 -> error to report */
Packit 6c4009
    int pack_id;        /* pack_id associated with request */
Packit 6c4009
    void * usr_ptr;     /* user provided pointer (in new interface) */
Packit 6c4009
    unsigned int duration; /* millisecs elapsed since written (req_state==1)
Packit 6c4009
			      or request duration (req_state==2) */
Packit 6c4009
    int unused;
Packit 6c4009
} sg_req_info_t;
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* IOCTLs: Those ioctls that are relevant to the SG 3.x drivers follow.
Packit 6c4009
 [Those that only apply to the SG 2.x drivers are at the end of the file.]
Packit 6c4009
 (_GET_s yield result via 'int *' 3rd argument unless otherwise indicated) */
Packit 6c4009
Packit 6c4009
#define SG_EMULATED_HOST 0x2203 /* true for emulated host adapter (ATAPI) */
Packit 6c4009
Packit 6c4009
/* Used to configure SCSI command transformation layer for ATAPI devices */
Packit 6c4009
/* Only supported by the ide-scsi driver */
Packit 6c4009
#define SG_SET_TRANSFORM 0x2204 /* N.B. 3rd arg is not pointer but value: */
Packit 6c4009
		      /* 3rd arg = 0 to disable transform, 1 to enable it */
Packit 6c4009
#define SG_GET_TRANSFORM 0x2205
Packit 6c4009
Packit 6c4009
#define SG_SET_RESERVED_SIZE 0x2275  /* request a new reserved buffer size */
Packit 6c4009
#define SG_GET_RESERVED_SIZE 0x2272  /* actual size of reserved buffer */
Packit 6c4009
Packit 6c4009
/* The following ioctl has a 'sg_scsi_id_t *' object as its 3rd argument. */
Packit 6c4009
#define SG_GET_SCSI_ID 0x2276   /* Yields fd's bus, chan, dev, lun + type */
Packit 6c4009
/* SCSI id information can also be obtained from SCSI_IOCTL_GET_IDLUN */
Packit 6c4009
Packit 6c4009
/* Override host setting and always DMA using low memory ( <16MB on i386) */
Packit 6c4009
#define SG_SET_FORCE_LOW_DMA 0x2279  /* 0-> use adapter setting, 1-> force */
Packit 6c4009
#define SG_GET_LOW_DMA 0x227a   /* 0-> use all ram for dma; 1-> low dma ram */
Packit 6c4009
Packit 6c4009
/* When SG_SET_FORCE_PACK_ID set to 1, pack_id is input to read() which
Packit 6c4009
   tries to fetch a packet with a matching pack_id, waits, or returns EAGAIN.
Packit 6c4009
   If pack_id is -1 then read oldest waiting. When ...FORCE_PACK_ID set to 0
Packit 6c4009
   then pack_id ignored by read() and oldest readable fetched. */
Packit 6c4009
#define SG_SET_FORCE_PACK_ID 0x227b
Packit 6c4009
#define SG_GET_PACK_ID 0x227c /* Yields oldest readable pack_id (or -1) */
Packit 6c4009
Packit 6c4009
#define SG_GET_NUM_WAITING 0x227d /* Number of commands awaiting read() */
Packit 6c4009
Packit 6c4009
/* Yields max scatter gather tablesize allowed by current host adapter */
Packit 6c4009
#define SG_GET_SG_TABLESIZE 0x227F  /* 0 implies can't do scatter gather */
Packit 6c4009
Packit 6c4009
#define SG_GET_VERSION_NUM 0x2282 /* Example: version 2.1.34 yields 20134 */
Packit 6c4009
Packit 6c4009
/* Returns -EBUSY if occupied. 3rd argument pointer to int (see next) */
Packit 6c4009
#define SG_SCSI_RESET 0x2284
Packit 6c4009
/* Associated values that can be given to SG_SCSI_RESET follow */
Packit 6c4009
#define SG_SCSI_RESET_NOTHING	0
Packit 6c4009
#define SG_SCSI_RESET_DEVICE	1
Packit 6c4009
#define SG_SCSI_RESET_BUS	2
Packit 6c4009
#define SG_SCSI_RESET_HOST	3
Packit 6c4009
Packit 6c4009
/* synchronous SCSI command ioctl, (only in version 3 interface) */
Packit 6c4009
#define SG_IO 0x2285   /* similar effect as write() followed by read() */
Packit 6c4009
Packit 6c4009
#define SG_GET_REQUEST_TABLE 0x2286   /* yields table of active requests */
Packit 6c4009
Packit 6c4009
/* How to treat EINTR during SG_IO ioctl(), only in SG 3.x series */
Packit 6c4009
#define SG_SET_KEEP_ORPHAN 0x2287 /* 1 -> hold for read(), 0 -> drop (def) */
Packit 6c4009
#define SG_GET_KEEP_ORPHAN 0x2288
Packit 6c4009
Packit 6c4009
Packit 6c4009
#define SG_SCATTER_SZ (8 * 4096)  /* PAGE_SIZE not available to user */
Packit 6c4009
/* Largest size (in bytes) a single scatter-gather list element can have.
Packit 6c4009
   The value must be a power of 2 and <= (PAGE_SIZE * 32) [131072 bytes on
Packit 6c4009
   i386]. The minimum value is PAGE_SIZE. If scatter-gather not supported
Packit 6c4009
   by adapter then this value is the largest data block that can be
Packit 6c4009
   read/written by a single scsi command. The user can find the value of
Packit 6c4009
   PAGE_SIZE by calling getpagesize() defined in unistd.h . */
Packit 6c4009
Packit 6c4009
#define SG_DEFAULT_RETRIES 1
Packit 6c4009
Packit 6c4009
/* Defaults, commented if they differ from original sg driver */
Packit 6c4009
#define SG_DEF_FORCE_LOW_DMA 0  /* was 1 -> memory below 16MB on i386 */
Packit 6c4009
#define SG_DEF_FORCE_PACK_ID 0
Packit 6c4009
#define SG_DEF_KEEP_ORPHAN 0
Packit 6c4009
#define SG_DEF_RESERVED_SIZE SG_SCATTER_SZ /* load time option */
Packit 6c4009
Packit 6c4009
/* maximum outstanding requests, write() yields EDOM if exceeded */
Packit 6c4009
#define SG_MAX_QUEUE 16
Packit 6c4009
Packit 6c4009
#define SG_BIG_BUFF SG_DEF_RESERVED_SIZE    /* for backward compatibility */
Packit 6c4009
Packit 6c4009
/* Alternate style type names, "..._t" variants preferred */
Packit 6c4009
typedef struct sg_io_hdr Sg_io_hdr;
Packit 6c4009
typedef struct sg_io_vec Sg_io_vec;
Packit 6c4009
typedef struct sg_scsi_id Sg_scsi_id;
Packit 6c4009
typedef struct sg_req_info Sg_req_info;
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv */
Packit 6c4009
/*   The older SG interface based on the 'sg_header' structure follows.   */
Packit 6c4009
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
Packit 6c4009
Packit 6c4009
#define SG_MAX_SENSE 16   /* this only applies to the sg_header interface */
Packit 6c4009
Packit 6c4009
struct sg_header
Packit 6c4009
 {
Packit 6c4009
   /* Length of incoming packet (including header).  */
Packit 6c4009
   int pack_len;
Packit 6c4009
   /* Maximal length of expected reply.  */
Packit 6c4009
   int reply_len;
Packit 6c4009
   /* Id number of packet.  */
Packit 6c4009
   int pack_id;
Packit 6c4009
   /* 0==ok, otherwise error number.  */
Packit 6c4009
   int result;
Packit 6c4009
   /* Force 12 byte command length for group 6 & 7 commands.  */
Packit 6c4009
   unsigned int twelve_byte:1;
Packit 6c4009
   /* SCSI status from target.  */
Packit 6c4009
   unsigned int target_status:5;
Packit 6c4009
   /* Host status (see "DID" codes).  */
Packit 6c4009
   unsigned int host_status:8;
Packit 6c4009
   /* Driver status+suggestion.  */
Packit 6c4009
   unsigned int driver_status:8;
Packit 6c4009
   /* Unused.  */
Packit 6c4009
   unsigned int other_flags:10;
Packit 6c4009
   /* Output in 3 cases:
Packit 6c4009
      when target_status is CHECK_CONDITION or
Packit 6c4009
      when target_status is COMMAND_TERMINATED or
Packit 6c4009
      when (driver_status & DRIVER_SENSE) is true.  */
Packit 6c4009
   unsigned char sense_buffer[SG_MAX_SENSE];
Packit 6c4009
 };
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* IOCTLs: The following are not required (or ignored) when the sg_io_hdr_t
Packit 6c4009
	   interface is used. They are kept for backward compatibility with
Packit 6c4009
	   the original and version 2 drivers. */
Packit 6c4009
Packit 6c4009
#define SG_SET_TIMEOUT		0x2201	/* Set timeout; *(int *)arg==timeout.  */
Packit 6c4009
#define SG_GET_TIMEOUT		0x2202	/* Get timeout; return timeout.  */
Packit 6c4009
Packit 6c4009
/* Get/set command queuing state per fd (default is SG_DEF_COMMAND_Q). */
Packit 6c4009
#define SG_GET_COMMAND_Q	0x2270	/* Yields 0 (queuing off) or 1 (on).  */
Packit 6c4009
#define SG_SET_COMMAND_Q 	0x2271	/* Change queuing state with 0 or 1.  */
Packit 6c4009
Packit 6c4009
/* Turn on error sense trace (1..8), dump this device to log/console (9)
Packit 6c4009
   or dump all sg device states ( >9 ) to log/console.  */
Packit 6c4009
#define SG_SET_DEBUG		0x227e	/* 0 -> turn off debug */
Packit 6c4009
Packit 6c4009
#define SG_NEXT_CMD_LEN		0x2283	/* Override SCSI command length with given
Packit 6c4009
					   number on the next write() on this file
Packit 6c4009
					   descriptor.  */
Packit 6c4009
Packit 6c4009
/* Defaults, commented if they differ from original sg driver */
Packit 6c4009
#define SG_DEFAULT_TIMEOUT (60*HZ) /* HZ == 'jiffies in 1 second' */
Packit 6c4009
#define SG_DEF_COMMAND_Q 0     /* command queuing is always on when
Packit 6c4009
				  the new interface is used */
Packit 6c4009
#define SG_DEF_UNDERRUN_FLAG 0
Packit 6c4009
Packit 6c4009
Packit 6c4009
#endif	/* scsi/sg.h */