12 #define _IOT_mtop _IOT (_IOTS (short), 1, _IOTS (int), 1, 0, 0)
13 #define _IOT_mtget _IOT (_IOTS (long), 7, 0, 0, 0, 0)
14 #define _IOT_mtpos _IOT_SIMPLE (long)
15 #define _IOT_mtconfiginfo _IOT (_IOTS (long), 2, _IOTS (short), 3, _IOTS (long), 1)
36 #define MTSETDENSITY 21
39 #define MTSETDRVBUFFER 24
47 #define MTCOMPRESSION 32
61 #define MT_ISUNKNOWN 0x01
62 #define MT_ISQIC02 0x02
63 #define MT_ISWT5150 0x03
64 #define MT_ISARCHIVE_5945L2 0x04
65 #define MT_ISCMSJ500 0x05
66 #define MT_ISTDC3610 0x06
67 #define MT_ISARCHIVE_VP60I 0x07
68 #define MT_ISARCHIVE_2150L 0x08
69 #define MT_ISARCHIVE_2060L 0x09
70 #define MT_ISARCHIVESC499 0x0A
71 #define MT_ISQIC02_ALL_FEATURES 0x0F
72 #define MT_ISWT5099EEN24 0x11
73 #define MT_ISTEAC_MT2ST 0x12
74 #define MT_ISEVEREX_FT40A 0x32
75 #define MT_ISDDS1 0x51
76 #define MT_ISDDS2 0x52
77 #define MT_ISSCSI1 0x71
78 #define MT_ISSCSI2 0x72
79 #define MT_ISFTAPE_UNKNOWN 0x800000
80 #define MT_ISFTAPE_FLAG 0x800000
87 #define MT_TAPE_INFO \
89 {MT_ISUNKNOWN, "Unknown type of tape device"}, \
90 {MT_ISQIC02, "Generic QIC-02 tape streamer"}, \
91 {MT_ISWT5150, "Wangtek 5150, QIC-150"}, \
92 {MT_ISARCHIVE_5945L2, "Archive 5945L-2"}, \
93 {MT_ISCMSJ500, "CMS Jumbo 500"}, \
94 {MT_ISTDC3610, "Tandberg TDC 3610, QIC-24"}, \
95 {MT_ISARCHIVE_VP60I, "Archive VP60i, QIC-02"}, \
96 {MT_ISARCHIVE_2150L, "Archive Viper 2150L"}, \
97 {MT_ISARCHIVE_2060L, "Archive Viper 2060L"}, \
98 {MT_ISARCHIVESC499, "Archive SC-499 QIC-36 controller"}, \
99 {MT_ISQIC02_ALL_FEATURES, "Generic QIC-02 tape, all features"}, \
100 {MT_ISWT5099EEN24, "Wangtek 5099-een24, 60MB"}, \
101 {MT_ISTEAC_MT2ST, "Teac MT-2ST 155mb data cassette drive"}, \
102 {MT_ISEVEREX_FT40A, "Everex FT40A, QIC-40"}, \
103 {MT_ISSCSI1, "Generic SCSI-1 tape"}, \
104 {MT_ISSCSI2, "Generic SCSI-2 tape"}, \
112 struct mtconfiginfo
{
115 unsigned short irqnr
;
116 unsigned short dmanr
;
119 unsigned have_dens
:1;
124 unsigned have_seek
:1;
125 unsigned have_tell
:1;
126 unsigned have_ras1
:1;
127 unsigned have_ras2
:1;
128 unsigned have_ras3
:1;
134 #define MTIOCTOP _IOW('m', 1, struct mtop)
135 #define MTIOCGET _IOR('m', 2, struct mtget)
136 #define MTIOCPOS _IOR('m', 3, struct mtpos)
138 #define MTIOCGETCONFIG _IOR('m', 4, struct mtconfiginfo)
139 #define MTIOCSETCONFIG _IOW('m', 5, struct mtconfiginfo)
141 #define GMT_EOF(x) ((x) & 0x80000000)
142 #define GMT_BOT(x) ((x) & 0x40000000)
143 #define GMT_EOT(x) ((x) & 0x20000000)
144 #define GMT_SM(x) ((x) & 0x10000000)
145 #define GMT_EOD(x) ((x) & 0x08000000)
146 #define GMT_WR_PROT(x) ((x) & 0x04000000)
147 #define GMT_ONLINE(x) ((x) & 0x01000000)
148 #define GMT_D_6250(x) ((x) & 0x00800000)
149 #define GMT_D_1600(x) ((x) & 0x00400000)
150 #define GMT_D_800(x) ((x) & 0x00200000)
151 #define GMT_DR_OPEN(x) ((x) & 0x00040000)
152 #define GMT_IM_REP_EN(x) ((x) & 0x00010000)
154 #define MT_ST_BLKSIZE_SHIFT 0
155 #define MT_ST_BLKSIZE_MASK 0xffffff
156 #define MT_ST_DENSITY_SHIFT 24
157 #define MT_ST_DENSITY_MASK 0xff000000
158 #define MT_ST_SOFTERR_SHIFT 0
159 #define MT_ST_SOFTERR_MASK 0xffff
160 #define MT_ST_OPTIONS 0xf0000000
161 #define MT_ST_BOOLEANS 0x10000000
162 #define MT_ST_SETBOOLEANS 0x30000000
163 #define MT_ST_CLEARBOOLEANS 0x40000000
164 #define MT_ST_WRITE_THRESHOLD 0x20000000
165 #define MT_ST_DEF_BLKSIZE 0x50000000
166 #define MT_ST_DEF_OPTIONS 0x60000000
167 #define MT_ST_BUFFER_WRITES 0x1
168 #define MT_ST_ASYNC_WRITES 0x2
169 #define MT_ST_READ_AHEAD 0x4
170 #define MT_ST_DEBUGGING 0x8
171 #define MT_ST_TWO_FM 0x10
172 #define MT_ST_FAST_MTEOM 0x20
173 #define MT_ST_AUTO_LOCK 0x40
174 #define MT_ST_DEF_WRITES 0x80
175 #define MT_ST_CAN_BSR 0x100
176 #define MT_ST_NO_BLKLIMS 0x200
177 #define MT_ST_CAN_PARTITIONS 0x400
178 #define MT_ST_SCSI2LOGICAL 0x800
179 #define MT_ST_CLEAR_DEFAULT 0xfffff
180 #define MT_ST_DEF_DENSITY (MT_ST_DEF_OPTIONS | 0x100000)
181 #define MT_ST_DEF_COMPRESSION (MT_ST_DEF_OPTIONS | 0x200000)
182 #define MT_ST_DEF_DRVBUFFER (MT_ST_DEF_OPTIONS | 0x300000)
183 #define MT_ST_HPLOADER_OFFSET 10000
185 # define DEFTAPE "/dev/tape"