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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ST_H
  2. #define _ST_H
  3. #ifndef _SCSI_H
  4. #include "scsi.h"
  5. #endif
  6. #include <linux/devfs_fs_kernel.h>
  7. #include <linux/completion.h>
  8. /* The tape buffer descriptor. */
  9. typedef struct {
  10. unsigned char in_use;
  11. unsigned char dma; /* DMA-able buffer */
  12. int buffer_size;
  13. int buffer_blocks;
  14. int buffer_bytes;
  15. int read_pointer;
  16. int writing;
  17. int midlevel_result;
  18. int syscall_result;
  19. Scsi_Request *last_SRpnt;
  20. unsigned char *b_data;
  21. unsigned short use_sg; /* zero or number of segments for this adapter */
  22. unsigned short sg_segs; /* total number of allocated segments */
  23. unsigned short orig_sg_segs; /* number of segments allocated at first try */
  24. struct scatterlist sg[1]; /* MUST BE last item */
  25. } ST_buffer;
  26. /* The tape mode definition */
  27. typedef struct {
  28. unsigned char defined;
  29. unsigned char sysv; /* SYS V semantics? */
  30. unsigned char do_async_writes;
  31. unsigned char do_buffer_writes;
  32. unsigned char do_read_ahead;
  33. unsigned char defaults_for_writes;
  34. unsigned char default_compression; /* 0 = don't touch, etc */
  35. short default_density; /* Forced density, -1 = no value */
  36. int default_blksize; /* Forced blocksize, -1 = no value */
  37. } ST_mode;
  38. #define ST_NBR_MODE_BITS 2
  39. #define ST_NBR_MODES (1 << ST_NBR_MODE_BITS)
  40. #define ST_MODE_SHIFT (7 - ST_NBR_MODE_BITS)
  41. #define ST_MODE_MASK ((ST_NBR_MODES - 1) << ST_MODE_SHIFT)
  42. #define ST_MAX_TAPES (1 << ST_MODE_SHIFT)
  43. /* The status related to each partition */
  44. typedef struct {
  45. unsigned char rw;
  46. unsigned char eof;
  47. unsigned char at_sm;
  48. unsigned char last_block_valid;
  49. u32 last_block_visited;
  50. int drv_block; /* The block where the drive head is */
  51. int drv_file;
  52. } ST_partstat;
  53. #define ST_NBR_PARTITIONS 4
  54. /* The tape drive descriptor */
  55. typedef struct {
  56. kdev_t devt;
  57. Scsi_Device *device;
  58. struct semaphore lock; /* For serialization */
  59. struct completion wait; /* For SCSI commands */
  60. ST_buffer *buffer;
  61. /* Drive characteristics */
  62. unsigned char omit_blklims;
  63. unsigned char do_auto_lock;
  64. unsigned char can_bsr;
  65. unsigned char can_partitions;
  66. unsigned char two_fm;
  67. unsigned char fast_mteom;
  68. unsigned char immediate;
  69. unsigned char restr_dma;
  70. unsigned char scsi2_logical;
  71. unsigned char default_drvbuffer; /* 0xff = don't touch, value 3 bits */
  72. unsigned char cln_mode; /* 0 = none, otherwise sense byte nbr */
  73. unsigned char cln_sense_value;
  74. unsigned char cln_sense_mask;
  75. unsigned char use_pf; /* Set Page Format bit in all mode selects? */
  76. unsigned char c_algo;      /* compression algorithm */
  77. int tape_type;
  78. int write_threshold;
  79. int timeout; /* timeout for normal commands */
  80. int long_timeout; /* timeout for commands known to take long time */
  81. /* Mode characteristics */
  82. ST_mode modes[ST_NBR_MODES];
  83. int current_mode;
  84. devfs_handle_t de_r[ST_NBR_MODES];  /*  Rewind entries     */
  85. devfs_handle_t de_n[ST_NBR_MODES];  /*  No-rewind entries  */
  86. /* Status variables */
  87. int partition;
  88. int new_partition;
  89. int nbr_partitions; /* zero until partition support enabled */
  90. ST_partstat ps[ST_NBR_PARTITIONS];
  91. unsigned char dirty;
  92. unsigned char ready;
  93. unsigned char write_prot;
  94. unsigned char drv_write_prot;
  95. unsigned char in_use;
  96. unsigned char blksize_changed;
  97. unsigned char density_changed;
  98. unsigned char compression_changed;
  99. unsigned char drv_buffer;
  100. unsigned char density;
  101. unsigned char door_locked;
  102. unsigned char autorew_dev;   /* auto-rewind device */
  103. unsigned char rew_at_close;  /* rewind necessary at close */
  104. unsigned char inited;
  105. unsigned char cleaning_req;  /* cleaning requested? */
  106. int block_size;
  107. int min_block;
  108. int max_block;
  109. int recover_count;     /* From tape opening */
  110. int recover_reg;       /* From last status call */
  111. #if DEBUG
  112. unsigned char write_pending;
  113. int nbr_finished;
  114. int nbr_waits;
  115. unsigned char last_cmnd[6];
  116. unsigned char last_sense[16];
  117. #endif
  118. } Scsi_Tape;
  119. /* Bit masks for use_pf */
  120. #define USE_PF      1
  121. #define PF_TESTED   2
  122. /* Values of eof */
  123. #define ST_NOEOF 0
  124. #define ST_FM_HIT       1
  125. #define ST_FM           2
  126. #define ST_EOM_OK       3
  127. #define ST_EOM_ERROR 4
  128. #define ST_EOD_1        5
  129. #define ST_EOD_2        6
  130. #define ST_EOD 7
  131. /* EOD hit while reading => ST_EOD_1 => return zero => ST_EOD_2 =>
  132.    return zero => ST_EOD, return ENOSPC */
  133. /* Values of rw */
  134. #define ST_IDLE 0
  135. #define ST_READING 1
  136. #define ST_WRITING 2
  137. /* Values of ready state */
  138. #define ST_READY 0
  139. #define ST_NOT_READY 1
  140. #define ST_NO_TAPE 2
  141. /* Values for door lock state */
  142. #define ST_UNLOCKED 0
  143. #define ST_LOCKED_EXPLICIT 1
  144. #define ST_LOCKED_AUTO  2
  145. #define ST_LOCK_FAILS   3
  146. /* Positioning SCSI-commands for Tandberg, etc. drives */
  147. #define QFA_REQUEST_BLOCK 0x02
  148. #define QFA_SEEK_BLOCK 0x0c
  149. /* Setting the binary options */
  150. #define ST_DONT_TOUCH  0
  151. #define ST_NO          1
  152. #define ST_YES         2
  153. #define EXTENDED_SENSE_START  18
  154. #endif