1
2
3
4
5
6 #ifndef _LINUX_MTIO_H
7 #define _LINUX_MTIO_H
8
9 #include <linux/ioctl.h>
10
11
12
13
14
15
16 struct mtop {
17 short mt_op;
18 int mt_count;
19 };
20
21
22 #define MTRESET 0
23 #define MTFSF 1
24
25
26 #define MTBSF 2
27 #define MTFSR 3
28 #define MTBSR 4
29 #define MTWEOF 5
30 #define MTREW 6
31 #define MTOFFL 7
32 #define MTNOP 8
33 #define MTRETEN 9
34 #define MTBSFM 10
35 #define MTFSFM 11
36 #define MTEOM 12
37
38
39
40 #define MTERASE 13
41
42 #define MTRAS1 14
43 #define MTRAS2 15
44 #define MTRAS3 16
45
46
47 #define MTSETBLK 20
48 #define MTSETDENSITY 21
49 #define MTSEEK 22
50 #define MTTELL 23
51 #define MTSETDRVBUFFER 24
52
53 #define MTFSS 25
54 #define MTBSS 26
55 #define MTWSM 27
56
57
58
59 struct mtget {
60 long mt_type;
61 long mt_resid;
62
63
64
65
66
67 long mt_dsreg;
68 long mt_gstat;
69 long mt_erreg;
70
71 daddr_t mt_fileno;
72 daddr_t mt_blkno;
73 };
74
75
76
77
78
79
80
81 #define MT_ISUNKNOWN 0x01
82 #define MT_ISQIC02 0x02
83 #define MT_ISWT5150 0x03
84 #define MT_ISARCHIVE_5945L2 0x04
85 #define MT_ISCMSJ500 0x05
86 #define MT_ISTDC3610 0x06
87 #define MT_ISARCHIVE_VP60I 0x07
88 #define MT_ISARCHIVE_2150L 0x08
89 #define MT_ISARCHIVE_2060L 0x09
90 #define MT_ISARCHIVESC499 0x0A
91 #define MT_ISQIC02_ALL_FEATURES 0x0F
92 #define MT_ISWT5099EEN24 0x11
93 #define MT_ISTEAC_MT2ST 0x12
94 #define MT_ISEVEREX_FT40A 0x32
95 #define MT_ISDDS1 0x51
96 #define MT_ISDDS2 0x52
97 #define MT_ISSCSI1 0x71
98 #define MT_ISSCSI2 0x72
99
100
101
102
103 #define MT_ISFTAPE_UNKNOWN 0x800000
104 #define MT_ISFTAPE_FLAG 0x800000
105
106 struct mt_tape_info {
107 long t_type;
108 char *t_name;
109 };
110
111 #define MT_TAPE_INFO { \
112 {MT_ISUNKNOWN, "Unknown type of tape device"}, \
113 {MT_ISQIC02, "Generic QIC-02 tape streamer"}, \
114 {MT_ISWT5150, "Wangtek 5150, QIC-150"}, \
115 {MT_ISARCHIVE_5945L2, "Archive 5945L-2"}, \
116 {MT_ISCMSJ500, "CMS Jumbo 500"}, \
117 {MT_ISTDC3610, "Tandberg TDC 3610, QIC-24"}, \
118 {MT_ISARCHIVE_VP60I, "Archive VP60i, QIC-02"}, \
119 {MT_ISARCHIVE_2150L, "Archive Viper 2150L"}, \
120 {MT_ISARCHIVE_2060L, "Archive Viper 2060L"}, \
121 {MT_ISARCHIVESC499, "Archive SC-499 QIC-36 controller"}, \
122 {MT_ISQIC02_ALL_FEATURES, "Generic QIC-02 tape, all features"}, \
123 {MT_ISWT5099EEN24, "Wangtek 5099-een24, 60MB"}, \
124 {MT_ISTEAC_MT2ST, "Teac MT-2ST 155mb data cassette drive"}, \
125 {MT_ISEVEREX_FT40A, "Everex FT40A, QIC-40"}, \
126 {MT_ISSCSI1, "Generic SCSI-1 tape"}, \
127 {MT_ISSCSI2, "Generic SCSI-2 tape"}, \
128 {0, NULL} \
129 }
130
131
132
133
134 struct mtpos {
135 long mt_blkno;
136 };
137
138
139
140 #define MTIOCTOP _IOW('m', 1, struct mtop)
141 #define MTIOCGET _IOR('m', 2, struct mtget)
142 #define MTIOCPOS _IOR('m', 3, struct mtpos)
143
144
145
146
147 #define MTIOCGETCONFIG _IOR('m', 4, struct mtconfiginfo)
148 #define MTIOCSETCONFIG _IOW('m', 5, struct mtconfiginfo)
149
150
151
152
153
154
155
156
157 #define GMT_EOF(x) ((x) & 0x80000000)
158 #define GMT_BOT(x) ((x) & 0x40000000)
159 #define GMT_EOT(x) ((x) & 0x20000000)
160 #define GMT_SM(x) ((x) & 0x10000000)
161 #define GMT_EOD(x) ((x) & 0x08000000)
162 #define GMT_WR_PROT(x) ((x) & 0x04000000)
163
164 #define GMT_ONLINE(x) ((x) & 0x01000000)
165 #define GMT_D_6250(x) ((x) & 0x00800000)
166 #define GMT_D_1600(x) ((x) & 0x00400000)
167 #define GMT_D_800(x) ((x) & 0x00200000)
168
169
170 #define GMT_DR_OPEN(x) ((x) & 0x00040000)
171
172 #define GMT_IM_REP_EN(x) ((x) & 0x00010000)
173
174
175
176
177
178
179
180
181 #define MT_ST_BLKSIZE_SHIFT 0
182 #define MT_ST_BLKSIZE_MASK 0xffffff
183 #define MT_ST_DENSITY_SHIFT 24
184 #define MT_ST_DENSITY_MASK 0xff000000
185
186 #define MT_ST_SOFTERR_SHIFT 0
187 #define MT_ST_SOFTERR_MASK 0xffff
188
189 #define MT_ST_OPTIONS 0xf0000000
190 #define MT_ST_BOOLEANS 0x10000000
191 #define MT_ST_WRITE_THRESHOLD 0x20000000
192 #define MT_ST_BUFFER_WRITES 0x1
193 #define MT_ST_ASYNC_WRITES 0x2
194 #define MT_ST_READ_AHEAD 0x4
195 #define MT_ST_DEBUGGING 0x8
196 #define MT_ST_TWO_FM 0x10
197 #define MT_ST_FAST_MTEOM 0x20
198
199 #endif