dptsig.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:15k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* BSDI dptsig.h,v 1.7 1998/06/03 19:15:00 karels Exp */
  2. /*
  3.  * Copyright (c) 1996-1999 Distributed Processing Technology Corporation
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source form, with or without modification, are
  7.  * permitted provided that redistributions of source code must retain the
  8.  * above copyright notice, this list of conditions and the following disclaimer.
  9.  *
  10.  * This software is provided `as is' by Distributed Processing Technology and
  11.  * any express or implied warranties, including, but not limited to, the
  12.  * implied warranties of merchantability and fitness for a particular purpose,
  13.  * are disclaimed. In no event shall Distributed Processing Technology be
  14.  * liable for any direct, indirect, incidental, special, exemplary or
  15.  * consequential damages (including, but not limited to, procurement of
  16.  * substitute goods or services; loss of use, data, or profits; or business
  17.  * interruptions) however caused and on any theory of liability, whether in
  18.  * contract, strict liability, or tort (including negligence or otherwise)
  19.  * arising in any way out of the use of this driver software, even if advised
  20.  * of the possibility of such damage.
  21.  *
  22.  */
  23. #ifndef __DPTSIG_H_
  24. #define __DPTSIG_H_
  25. #ifdef _SINIX_ADDON
  26. #include "dpt.h"
  27. #endif
  28. /* DPT SIGNATURE SPEC AND HEADER FILE                           */
  29. /* Signature Version 1 (sorry no 'A')                           */
  30. /* to make sure we are talking the same size under all OS's     */
  31. typedef unsigned char sigBYTE;
  32. typedef unsigned short sigWORD;
  33. #if (defined(_MULTI_DATAMODEL) && defined(sun) && !defined(_ILP32))
  34. typedef uint32_t sigLONG;
  35. #else
  36. typedef unsigned long sigLONG;
  37. #endif
  38. /*
  39.  * use sigWORDLittleEndian for:
  40.  *  dsCapabilities
  41.  *  dsDeviceSupp
  42.  *  dsAdapterSupp
  43.  *  dsApplication
  44.  * use sigLONGLittleEndian for:
  45.  *      dsOS
  46.  * so that the sig can be standardised to Little Endian
  47.  */
  48. #if (defined(_DPT_BIG_ENDIAN))
  49. # define sigWORDLittleEndian(x) ((((x)&0xFF)<<8)|(((x)>>8)&0xFF))
  50. # define sigLONGLittleEndian(x) 
  51.         ((((x)&0xFF)<<24) |             
  52.          (((x)&0xFF00)<<8) |    
  53.          (((x)&0xFF0000L)>>8) | 
  54.          (((x)&0xFF000000L)>>24))
  55. #else
  56. # define sigWORDLittleEndian(x) (x)
  57. # define sigLONGLittleEndian(x) (x)
  58. #endif
  59. /* must make sure the structure is not word or double-word aligned      */
  60. /* ---------------------------------------------------------------      */
  61. /* Borland will ignore the following pragma:                            */
  62. /* Word alignment is OFF by default.  If in the, IDE make               */
  63. /* sure that Options | Compiler | Code Generation | Word Alignment      */
  64. /* is not checked.  If using BCC, do not use the -a option.             */
  65. #ifndef NO_PACK
  66. #if defined (_DPT_AIX)
  67. #pragma options align=packed
  68. #else
  69. #pragma pack(1)
  70. #endif  /* aix */
  71. #endif
  72. /* For the Macintosh */
  73. #if STRUCTALIGNMENTSUPPORTED
  74. #pragma options align=mac68k
  75. #endif
  76. /* Current Signature Version - sigBYTE dsSigVersion; */
  77. /* ------------------------------------------------------------------ */
  78. #define SIG_VERSION 1
  79. /* Processor Family - sigBYTE dsProcessorFamily;  DISTINCT VALUES */
  80. /* ------------------------------------------------------------------ */
  81. /* What type of processor the file is meant to run on. */
  82. /* This will let us know whether to read sigWORDs as high/low or low/high. */
  83. #define PROC_INTEL      0x00    /* Intel 80x86 */
  84. #define PROC_MOTOROLA   0x01    /* Motorola 68K */
  85. #define PROC_MIPS4000   0x02    /* MIPS RISC 4000 */
  86. #define PROC_ALPHA      0x03    /* DEC Alpha */
  87. #define PROC_POWERPC    0x04    /* IBM Power PC */
  88. #define PROC_i960       0x05    /* Intel i960 */
  89. #define PROC_ULTRASPARC 0x06    /* SPARC processor */
  90. /* Specific Minimim Processor - sigBYTE dsProcessor;    FLAG BITS */
  91. /* ------------------------------------------------------------------ */
  92. /* Different bit definitions dependent on processor_family */
  93. /* PROC_INTEL: */
  94. #define PROC_8086       0x01    /* Intel 8086 */
  95. #define PROC_286        0x02    /* Intel 80286 */
  96. #define PROC_386        0x04    /* Intel 80386 */
  97. #define PROC_486        0x08    /* Intel 80486 */
  98. #define PROC_PENTIUM    0x10    /* Intel 586 aka P5 aka Pentium */
  99. #define PROC_SEXIUM 0x20 /* Intel 686 aka P6 aka Pentium Pro or MMX */
  100. /* PROC_i960: */
  101. #define PROC_960RX      0x01    /* Intel 80960RC/RD */
  102. #define PROC_960HX      0x02    /* Intel 80960HA/HD/HT */
  103. /* PROC_MOTOROLA: */
  104. #define PROC_68000      0x01    /* Motorola 68000 */
  105. #define PROC_68010 0x02 /* Motorola 68010 */
  106. #define PROC_68020      0x04    /* Motorola 68020 */
  107. #define PROC_68030      0x08    /* Motorola 68030 */
  108. #define PROC_68040      0x10    /* Motorola 68040 */
  109. /* PROC_POWERPC */
  110. #define PROC_PPC601 0x01 /* PowerPC 601 */
  111. #define PROC_PPC603 0x02 /* PowerPC 603 */
  112. #define PROC_PPC604 0x04 /* PowerPC 604 */
  113. /* PROC_MIPS4000: */
  114. #define PROC_R4000      0x01    /* MIPS R4000 */
  115. /* Filetype - sigBYTE dsFiletype;       DISTINCT VALUES */
  116. /* ------------------------------------------------------------------ */
  117. #define FT_EXECUTABLE   0       /* Executable Program */
  118. #define FT_SCRIPT       1       /* Script/Batch File??? */
  119. #define FT_HBADRVR      2       /* HBA Driver */
  120. #define FT_OTHERDRVR    3       /* Other Driver */
  121. #define FT_IFS          4       /* Installable Filesystem Driver */
  122. #define FT_ENGINE       5       /* DPT Engine */
  123. #define FT_COMPDRVR     6       /* Compressed Driver Disk */
  124. #define FT_LANGUAGE     7       /* Foreign Language file */
  125. #define FT_FIRMWARE     8       /* Downloadable or actual Firmware */
  126. #define FT_COMMMODL     9       /* Communications Module */
  127. #define FT_INT13        10      /* INT 13 style HBA Driver */
  128. #define FT_HELPFILE     11      /* Help file */
  129. #define FT_LOGGER       12      /* Event Logger */
  130. #define FT_INSTALL      13      /* An Install Program */
  131. #define FT_LIBRARY      14      /* Storage Manager Real-Mode Calls */
  132. #define FT_RESOURCE  15  /* Storage Manager Resource File */
  133. #define FT_MODEM_DB   16   /* Storage Manager Modem Database */
  134. /* Filetype flags - sigBYTE dsFiletypeFlags;    FLAG BITS */
  135. /* ------------------------------------------------------------------ */
  136. #define FTF_DLL         0x01    /* Dynamic Link Library */
  137. #define FTF_NLM         0x02    /* Netware Loadable Module */
  138. #define FTF_OVERLAYS    0x04    /* Uses overlays */
  139. #define FTF_DEBUG       0x08    /* Debug version */
  140. #define FTF_TSR         0x10    /* TSR */
  141. #define FTF_SYS         0x20    /* DOS Loadable driver */
  142. #define FTF_PROTECTED   0x40    /* Runs in protected mode */
  143. #define FTF_APP_SPEC    0x80    /* Application Specific */
  144. #define FTF_ROM (FTF_SYS|FTF_TSR) /* Special Case */
  145. /* OEM - sigBYTE dsOEM;         DISTINCT VALUES */
  146. /* ------------------------------------------------------------------ */
  147. #define OEM_DPT         0       /* DPT */
  148. #define OEM_ATT         1       /* ATT */
  149. #define OEM_NEC         2       /* NEC */
  150. #define OEM_ALPHA       3       /* Alphatronix */
  151. #define OEM_AST         4       /* AST */
  152. #define OEM_OLIVETTI    5       /* Olivetti */
  153. #define OEM_SNI         6       /* Siemens/Nixdorf */
  154. #define OEM_SUN         7       /* SUN Microsystems */
  155. /* Operating System  - sigLONG dsOS;    FLAG BITS */
  156. /* ------------------------------------------------------------------ */
  157. #define OS_DOS          0x00000001 /* PC/MS-DOS */
  158. #define OS_WINDOWS      0x00000002 /* Microsoft Windows 3.x */
  159. #define OS_WINDOWS_NT   0x00000004 /* Microsoft Windows NT */
  160. #define OS_OS2M         0x00000008 /* OS/2 1.2.x,MS 1.3.0,IBM 1.3.x - Monolithic */
  161. #define OS_OS2L         0x00000010 /* Microsoft OS/2 1.301 - LADDR */
  162. #define OS_OS22x        0x00000020 /* IBM OS/2 2.x */
  163. #define OS_NW286        0x00000040 /* Novell NetWare 286 */
  164. #define OS_NW386        0x00000080 /* Novell NetWare 386 */
  165. #define OS_GEN_UNIX     0x00000100 /* Generic Unix */
  166. #define OS_SCO_UNIX     0x00000200 /* SCO Unix */
  167. #define OS_ATT_UNIX     0x00000400 /* ATT Unix */
  168. #define OS_UNIXWARE     0x00000800 /* USL Unix */
  169. #define OS_INT_UNIX     0x00001000 /* Interactive Unix */
  170. #define OS_SOLARIS      0x00002000 /* SunSoft Solaris */
  171. #define OS_QNX          0x00004000 /* QNX for Tom Moch */
  172. #define OS_NEXTSTEP     0x00008000 /* NeXTSTEP/OPENSTEP/MACH */
  173. #define OS_BANYAN       0x00010000 /* Banyan Vines */
  174. #define OS_OLIVETTI_UNIX 0x00020000/* Olivetti Unix */
  175. #define OS_MAC_OS 0x00040000 /* Mac OS */
  176. #define OS_WINDOWS_95 0x00080000 /* Microsoft Windows '95 */
  177. #define OS_NW4x 0x00100000 /* Novell Netware 4.x */
  178. #define OS_BSDI_UNIX 0x00200000 /* BSDi Unix BSD/OS 2.0 and up */
  179. #define OS_AIX_UNIX     0x00400000 /* AIX Unix */
  180. #define OS_FREE_BSD 0x00800000 /* FreeBSD Unix */
  181. #define OS_LINUX 0x01000000 /* Linux */
  182. #define OS_DGUX_UNIX 0x02000000 /* Data General Unix */
  183. #define OS_SINIX_N      0x04000000 /* SNI SINIX-N */
  184. #define OS_PLAN9 0x08000000 /* ATT Plan 9 */
  185. #define OS_TSX 0x10000000 /* SNH TSX-32 */
  186. #define OS_OTHER        0x80000000 /* Other */
  187. /* Capabilities - sigWORD dsCapabilities;        FLAG BITS */
  188. /* ------------------------------------------------------------------ */
  189. #define CAP_RAID0       0x0001  /* RAID-0 */
  190. #define CAP_RAID1       0x0002  /* RAID-1 */
  191. #define CAP_RAID3       0x0004  /* RAID-3 */
  192. #define CAP_RAID5       0x0008  /* RAID-5 */
  193. #define CAP_SPAN        0x0010  /* Spanning */
  194. #define CAP_PASS        0x0020  /* Provides passthrough */
  195. #define CAP_OVERLAP     0x0040  /* Passthrough supports overlapped commands */
  196. #define CAP_ASPI        0x0080  /* Supports ASPI Command Requests */
  197. #define CAP_ABOVE16MB   0x0100  /* ISA Driver supports greater than 16MB */
  198. #define CAP_EXTEND      0x8000  /* Extended info appears after description */
  199. #ifdef SNI_MIPS
  200. #define CAP_CACHEMODE   0x1000  /* dpt_force_cache is set in driver */
  201. #endif
  202. /* Devices Supported - sigWORD dsDeviceSupp;    FLAG BITS */
  203. /* ------------------------------------------------------------------ */
  204. #define DEV_DASD        0x0001  /* DASD (hard drives) */
  205. #define DEV_TAPE        0x0002  /* Tape drives */
  206. #define DEV_PRINTER     0x0004  /* Printers */
  207. #define DEV_PROC        0x0008  /* Processors */
  208. #define DEV_WORM        0x0010  /* WORM drives */
  209. #define DEV_CDROM       0x0020  /* CD-ROM drives */
  210. #define DEV_SCANNER     0x0040  /* Scanners */
  211. #define DEV_OPTICAL     0x0080  /* Optical Drives */
  212. #define DEV_JUKEBOX     0x0100  /* Jukebox */
  213. #define DEV_COMM        0x0200  /* Communications Devices */
  214. #define DEV_OTHER       0x0400  /* Other Devices */
  215. #define DEV_ALL         0xFFFF  /* All SCSI Devices */
  216. /* Adapters Families Supported - sigWORD dsAdapterSupp; FLAG BITS */
  217. /* ------------------------------------------------------------------ */
  218. #define ADF_2001        0x0001  /* PM2001           */
  219. #define ADF_2012A       0x0002  /* PM2012A          */
  220. #define ADF_PLUS_ISA    0x0004  /* PM2011,PM2021    */
  221. #define ADF_PLUS_EISA   0x0008  /* PM2012B,PM2022   */
  222. #define ADF_SC3_ISA 0x0010  /* PM2021           */
  223. #define ADF_SC3_EISA 0x0020  /* PM2022,PM2122, etc */
  224. #define ADF_SC3_PCI 0x0040  /* SmartCache III PCI */
  225. #define ADF_SC4_ISA 0x0080  /* SmartCache IV ISA */
  226. #define ADF_SC4_EISA 0x0100  /* SmartCache IV EISA */
  227. #define ADF_SC4_PCI 0x0200 /* SmartCache IV PCI */
  228. #define ADF_SC5_PCI 0x0400 /* Fifth Generation I2O products */
  229. /*
  230.  * Combinations of products
  231.  */
  232. #define ADF_ALL_2000 (ADF_2001|ADF_2012A)
  233. #define ADF_ALL_PLUS (ADF_PLUS_ISA|ADF_PLUS_EISA)
  234. #define ADF_ALL_SC3 (ADF_SC3_ISA|ADF_SC3_EISA|ADF_SC3_PCI)
  235. #define ADF_ALL_SC4 (ADF_SC4_ISA|ADF_SC4_EISA|ADF_SC4_PCI)
  236. #define ADF_ALL_SC5 (ADF_SC5_PCI)
  237. /* All EATA Cacheing Products */
  238. #define ADF_ALL_CACHE (ADF_ALL_PLUS|ADF_ALL_SC3|ADF_ALL_SC4)
  239. /* All EATA Bus Mastering Products */
  240. #define ADF_ALL_MASTER (ADF_2012A|ADF_ALL_CACHE)
  241. /* All EATA Adapter Products */
  242. #define ADF_ALL_EATA (ADF_2001|ADF_ALL_MASTER)
  243. #define ADF_ALL ADF_ALL_EATA
  244. /* Application - sigWORD dsApplication;         FLAG BITS */
  245. /* ------------------------------------------------------------------ */
  246. #define APP_DPTMGR      0x0001  /* DPT Storage Manager */
  247. #define APP_ENGINE      0x0002  /* DPT Engine */
  248. #define APP_SYTOS       0x0004  /* Sytron Sytos Plus */
  249. #define APP_CHEYENNE    0x0008  /* Cheyenne ARCServe + ARCSolo */
  250. #define APP_MSCDEX      0x0010  /* Microsoft CD-ROM extensions */
  251. #define APP_NOVABACK    0x0020  /* NovaStor Novaback */
  252. #define APP_AIM         0x0040  /* Archive Information Manager */
  253. /* Requirements - sigBYTE dsRequirements;         FLAG BITS             */
  254. /* ------------------------------------------------------------------   */
  255. #define REQ_SMARTROM    0x01    /* Requires SmartROM to be present      */
  256. #define REQ_DPTDDL      0x02    /* Requires DPTDDL.SYS to be loaded     */
  257. #define REQ_HBA_DRIVER  0x04    /* Requires an HBA driver to be loaded  */
  258. #define REQ_ASPI_TRAN   0x08    /* Requires an ASPI Transport Modules   */
  259. #define REQ_ENGINE      0x10    /* Requires a DPT Engine to be loaded   */
  260. #define REQ_COMM_ENG    0x20    /* Requires a DPT Communications Engine */
  261. /*
  262.  * You may adjust dsDescription_size with an override to a value less than
  263.  * 50 so that the structure allocates less real space.
  264.  */
  265. #if (!defined(dsDescription_size))
  266. # define dsDescription_size 50
  267. #endif
  268. typedef struct dpt_sig {
  269.     char    dsSignature[6];      /* ALWAYS "dPtSiG" */
  270.     sigBYTE dsSigVersion;        /* signature version (currently 1) */
  271.     sigBYTE dsProcessorFamily;   /* what type of processor */
  272.     sigBYTE dsProcessor;         /* precise processor */
  273.     sigBYTE dsFiletype;          /* type of file */
  274.     sigBYTE dsFiletypeFlags;     /* flags to specify load type, etc. */
  275.     sigBYTE dsOEM;               /* OEM file was created for */
  276.     sigLONG dsOS;                /* which Operating systems */
  277.     sigWORD dsCapabilities;      /* RAID levels, etc. */
  278.     sigWORD dsDeviceSupp;        /* Types of SCSI devices supported */
  279.     sigWORD dsAdapterSupp;       /* DPT adapter families supported */
  280.     sigWORD dsApplication;       /* applications file is for */
  281.     sigBYTE dsRequirements;      /* Other driver dependencies */
  282.     sigBYTE dsVersion;           /* 1 */
  283.     sigBYTE dsRevision;          /* 'J' */
  284.     sigBYTE dsSubRevision;       /* '9'   ' ' if N/A */
  285.     sigBYTE dsMonth;             /* creation month */
  286.     sigBYTE dsDay;               /* creation day */
  287.     sigBYTE dsYear;              /* creation year since 1980 (1993=13) */
  288.     /* description (NULL terminated) */
  289.     char  dsDescription[dsDescription_size];
  290. } dpt_sig_S;
  291. /* 32 bytes minimum - with no description.  Put NULL at description[0] */
  292. /* 81 bytes maximum - with 49 character description plus NULL. */
  293. /* This line added at Roycroft's request */
  294. /* Microsoft's NT compiler gets confused if you do a pack and don't */
  295. /* restore it. */
  296. #ifndef NO_UNPACK
  297. #if defined (_DPT_AIX)
  298. #pragma options align=reset
  299. #elif defined (UNPACK_FOUR)
  300. #pragma pack(4)
  301. #else
  302. #pragma pack()
  303. #endif  /* aix */
  304. #endif
  305. /* For the Macintosh */
  306. #if STRUCTALIGNMENTSUPPORTED
  307. #pragma options align=reset
  308. #endif
  309. #endif