scgio.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)scgio.h 2.14 98/11/29 Copyright 1986 J. Schilling */
  2. /*
  3.  * Definitions for the SCSI general driver 'scg'
  4.  *
  5.  * Copyright (c) 1986 J. Schilling
  6.  */
  7. /*
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2, or (at your option)
  11.  * any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; see the file COPYING.  If not, write to
  20.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22. #ifndef _SCGIO_H
  23. #define _SCGIO_H
  24. #ifndef _SCGCMD_H
  25. #include <scg/scgcmd.h>
  26. #endif
  27. #if defined(SVR4)
  28. #include <sys/ioccom.h>
  29. #endif
  30. #if defined(__STDC__) || defined(SVR4)
  31. #define SCGIOCMD _IOWR('G', 1, struct scg_cmd) /* do a SCSI cmd   */
  32. #define SCGIORESET _IO('G', 2) /* reset SCSI bus  */
  33. #define SCGIOGDISRE _IOR('G', 4, int) /* get sc disre Val*/
  34. #define SCGIOSDISRE _IOW('G', 5, int) /* set sc disre Val*/
  35. #define SCGIOIDBG _IO('G', 100) /* Inc Debug Val   */
  36. #define SCGIODDBG _IO('G', 101) /* Dec Debug Val   */
  37. #define SCGIOGDBG _IOR('G', 102, int) /* get Debug Val   */
  38. #define SCGIOSDBG _IOW('G', 103, int) /* set Debug Val   */
  39. #define SCIOGDBG _IOR('G', 104, int) /* get sc Debug Val*/
  40. #define SCIOSDBG _IOW('G', 105, int) /* set sc Debug Val*/
  41. #else
  42. #define SCGIOCMD _IOWR(G, 1, struct scg_cmd) /* do a SCSI cmd   */
  43. #define SCGIORESET _IO(G, 2) /* reset SCSI bus  */
  44. #define SCGIOGDISRE _IOR(G, 4, int) /* get sc disre Val*/
  45. #define SCGIOSDISRE _IOW(G, 5, int) /* set sc disre Val*/
  46. #define SCGIOIDBG _IO(G, 100) /* Inc Debug Val   */
  47. #define SCGIODDBG _IO(G, 101) /* Dec Debug Val   */
  48. #define SCGIOGDBG _IOR(G, 102, int) /* get Debug Val   */
  49. #define SCGIOSDBG _IOW(G, 103, int) /* set Debug Val   */
  50. #define SCIOGDBG _IOR(G, 104, int) /* get sc Debug Val*/
  51. #define SCIOSDBG _IOW(G, 105, int) /* set sc Debug Val*/
  52. #endif
  53. #define SCGIO_CMD SCGIOCMD /* backward ccompatibility */
  54. #endif /* _SCGIO_H */