1
2 #ifndef _ST_H
3 #define _ST_H
4
5
6
7
8 #ifndef _SCSI_H
9 #include "scsi.h"
10 #endif
11
12 typedef struct {
13 int in_use;
14 int buffer_size;
15 int buffer_blocks;
16 int buffer_bytes;
17 int read_pointer;
18 int writing;
19 int last_result;
20 int last_result_fatal;
21 unsigned char b_data[1];
22 } ST_buffer;
23
24 typedef struct {
25 unsigned capacity;
26 struct wait_queue * waiting;
27 Scsi_Device* device;
28 unsigned char dirty;
29 unsigned char rw;
30 unsigned char ready;
31 unsigned char eof;
32 unsigned char write_prot;
33 unsigned char drv_write_prot;
34 unsigned char in_use;
35 unsigned char eof_hit;
36 unsigned char drv_buffer;
37 unsigned char do_buffer_writes;
38 unsigned char do_async_writes;
39 unsigned char do_read_ahead;
40 unsigned char two_fm;
41 unsigned char density;
42 ST_buffer * buffer;
43 int block_size;
44 int min_block;
45 int max_block;
46 int write_threshold;
47 int recover_count;
48 int drv_block;
49 unsigned char moves_after_eof;
50 unsigned char at_sm;
51 struct mtget * mt_status;
52 Scsi_Cmnd SCpnt;
53 } Scsi_Tape;
54
55
56 #define ST_NOEOF 0
57 #define ST_FM 1
58 #define ST_EOM_OK 2
59 #define ST_EOM_ERROR 3
60 #define ST_EOD 4
61
62
63 #define ST_IDLE 0
64 #define ST_READING 1
65 #define ST_WRITING 2
66
67
68 #define ST_READY 0
69 #define ST_NOT_READY 1
70 #define ST_NO_TAPE 2
71
72
73 #define QFA_REQUEST_BLOCK 0x02
74 #define QFA_SEEK_BLOCK 0x0c
75
76 #endif
77