Merge branch 'bp-remove-pc-buf' into for-next
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / ide / ide-tape.c
CommitLineData
1da177e4 1/*
5ce78af4
BP
2 * IDE ATAPI streaming tape driver.
3 *
59bca8cc
BZ
4 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
1da177e4 6 *
1da177e4
LT
7 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
1da177e4 13 *
5ce78af4
BP
14 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
1da177e4
LT
16 */
17
51509eec
BZ
18#define DRV_NAME "ide-tape"
19
dfe79936 20#define IDETAPE_VERSION "1.20"
1da177e4 21
1da177e4
LT
22#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
9bae1ff3 30#include <linux/jiffies.h>
1da177e4 31#include <linux/major.h>
1da177e4
LT
32#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
cf8b8975 40#include <linux/mutex.h>
90699ce2 41#include <scsi/scsi.h>
1da177e4
LT
42
43#include <asm/byteorder.h>
c837cfa5
BP
44#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
1da177e4 47#include <asm/unaligned.h>
1da177e4
LT
48#include <linux/mtio.h>
49
8004a8c9
BP
50enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
8004a8c9
BP
59};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
1da177e4 74/**************************** Tunable parameters *****************************/
1da177e4 75/*
3c98bf34
BP
76 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
1da177e4 78 *
3c98bf34 79 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
1da177e4
LT
80 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
1da177e4 83/*
3c98bf34
BP
84 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
1da177e4 88 */
3c98bf34 89#define IDETAPE_FIFO_THRESHOLD 2
1da177e4
LT
90
91/*
3c98bf34 92 * DSC polling parameters.
1da177e4 93 *
3c98bf34
BP
94 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
1da177e4 96 *
3c98bf34
BP
97 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
1da177e4 102 *
3c98bf34
BP
103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
1da177e4 111 *
3c98bf34
BP
112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
1da177e4 114 */
3c98bf34
BP
115
116/* DSC timings. */
1da177e4
LT
117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
54abf37e
BP
127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
1da177e4 133
03056b90
BP
134/* Tape door status */
135#define DOOR_UNLOCKED 0
136#define DOOR_LOCKED 1
137#define DOOR_EXPLICITLY_LOCKED 2
138
139/* Some defines for the SPACE command */
140#define IDETAPE_SPACE_OVER_FILEMARK 1
141#define IDETAPE_SPACE_TO_EOD 3
142
143/* Some defines for the LOAD UNLOAD command */
144#define IDETAPE_LU_LOAD_MASK 1
145#define IDETAPE_LU_RETENSION_MASK 2
146#define IDETAPE_LU_EOT_MASK 4
147
03056b90
BP
148/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
149#define IDETAPE_BLOCK_DESCRIPTOR 0
150#define IDETAPE_CAPABILITIES_PAGE 0x2a
151
1da177e4 152/*
3c98bf34
BP
153 * Most of our global data which we need to save even as we leave the driver due
154 * to an interrupt or a timer event is stored in the struct defined below.
1da177e4
LT
155 */
156typedef struct ide_tape_obj {
7f3c868b
BZ
157 ide_drive_t *drive;
158 struct ide_driver *driver;
159 struct gendisk *disk;
8fed4368 160 struct device dev;
1da177e4 161
2e8a6f89
BZ
162 /* used by REQ_IDETAPE_{READ,WRITE} requests */
163 struct ide_atapi_pc queued_pc;
394a4c21 164
1da177e4 165 /*
3c98bf34 166 * DSC polling variables.
1da177e4 167 *
3c98bf34
BP
168 * While polling for DSC we use postponed_rq to postpone the current
169 * request so that ide.c will be able to service pending requests on the
170 * other device. Note that at most we will have only one DSC (usually
5bd50dc6 171 * data transfer) request in the device request queue.
1da177e4
LT
172 */
173 struct request *postponed_rq;
174 /* The time in which we started polling for DSC */
175 unsigned long dsc_polling_start;
176 /* Timer used to poll for dsc */
177 struct timer_list dsc_timer;
178 /* Read/Write dsc polling frequency */
54bb2074
BP
179 unsigned long best_dsc_rw_freq;
180 unsigned long dsc_poll_freq;
1da177e4
LT
181 unsigned long dsc_timeout;
182
3c98bf34 183 /* Read position information */
1da177e4
LT
184 u8 partition;
185 /* Current block */
54bb2074 186 unsigned int first_frame;
1da177e4 187
3c98bf34 188 /* Last error information */
1da177e4
LT
189 u8 sense_key, asc, ascq;
190
3c98bf34 191 /* Character device operation */
1da177e4
LT
192 unsigned int minor;
193 /* device name */
194 char name[4];
195 /* Current character device data transfer direction */
54abf37e 196 u8 chrdev_dir;
1da177e4 197
54bb2074
BP
198 /* tape block size, usually 512 or 1024 bytes */
199 unsigned short blk_size;
1da177e4 200 int user_bs_factor;
b6422013 201
1da177e4 202 /* Copy of the tape's Capabilities and Mechanical Page */
b6422013 203 u8 caps[20];
1da177e4
LT
204
205 /*
3c98bf34 206 * Active data transfer request parameters.
1da177e4 207 *
3c98bf34
BP
208 * At most, there is only one ide-tape originated data transfer request
209 * in the device request queue. This allows ide.c to easily service
210 * requests from the other device when we postpone our active request.
1da177e4 211 */
83042b24 212
3c98bf34 213 /* Data buffer size chosen based on the tape's recommendation */
f73850a3 214 int buffer_size;
963da55c
TH
215 /* Staging buffer of buffer_size bytes */
216 void *buf;
217 /* The read/write cursor */
218 void *cur;
219 /* The number of valid bytes in buf */
220 size_t valid;
3c98bf34 221
3c98bf34 222 /* Measures average tape speed */
1da177e4
LT
223 unsigned long avg_time;
224 int avg_size;
225 int avg_speed;
226
1da177e4
LT
227 /* the door is currently locked */
228 int door_locked;
229 /* the tape hardware is write protected */
230 char drv_write_prot;
231 /* the tape is write protected (hardware or opened as read-only) */
232 char write_prot;
233
8004a8c9 234 u32 debug_mask;
1da177e4
LT
235} idetape_tape_t;
236
cf8b8975 237static DEFINE_MUTEX(idetape_ref_mutex);
1da177e4 238
d5dee80a
WD
239static struct class *idetape_sysfs_class;
240
8fed4368 241static void ide_tape_release(struct device *);
08da591e 242
9d01e4cd
BP
243static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
244
245static struct ide_tape_obj *ide_tape_get(struct gendisk *disk, bool cdev,
246 unsigned int i)
1da177e4
LT
247{
248 struct ide_tape_obj *tape = NULL;
249
cf8b8975 250 mutex_lock(&idetape_ref_mutex);
9d01e4cd
BP
251
252 if (cdev)
253 tape = idetape_devs[i];
254 else
255 tape = ide_drv_g(disk, ide_tape_obj);
256
08da591e 257 if (tape) {
d3e33ff5 258 if (ide_device_get(tape->drive))
08da591e 259 tape = NULL;
d3e33ff5 260 else
8fed4368 261 get_device(&tape->dev);
08da591e 262 }
9d01e4cd 263
cf8b8975 264 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
265 return tape;
266}
267
1da177e4
LT
268static void ide_tape_put(struct ide_tape_obj *tape)
269{
d3e33ff5
BZ
270 ide_drive_t *drive = tape->drive;
271
cf8b8975 272 mutex_lock(&idetape_ref_mutex);
8fed4368 273 put_device(&tape->dev);
d3e33ff5 274 ide_device_put(drive);
cf8b8975 275 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
276}
277
1da177e4 278/*
1b5db434
BP
279 * called on each failed packet command retry to analyze the request sense. We
280 * currently do not utilize this information.
1da177e4 281 */
ae3a8387 282static void idetape_analyze_error(ide_drive_t *drive)
1da177e4
LT
283{
284 idetape_tape_t *tape = drive->driver_data;
5e2040fd 285 struct ide_atapi_pc *pc = drive->failed_pc;
dfb7e621 286 struct request *rq = drive->hwif->rq;
ae3a8387 287 u8 *sense = bio_data(rq->bio);
1da177e4 288
1b5db434
BP
289 tape->sense_key = sense[2] & 0xF;
290 tape->asc = sense[12];
291 tape->ascq = sense[13];
8004a8c9
BP
292
293 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
294 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
1da177e4 295
077e6dba 296 /* correct remaining bytes to transfer */
21d9c5d2 297 if (pc->flags & PC_FLAG_DMA_ERROR)
077e6dba 298 rq->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
1da177e4
LT
299
300 /*
301 * If error was the result of a zero-length read or write command,
302 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
303 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
304 */
90699ce2 305 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
1b5db434
BP
306 /* length == 0 */
307 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
308 if (tape->sense_key == 5) {
1da177e4
LT
309 /* don't report an error, everything's ok */
310 pc->error = 0;
311 /* don't retry read/write */
346331f8 312 pc->flags |= PC_FLAG_ABORT;
1da177e4
LT
313 }
314 }
90699ce2 315 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
c152cc1a 316 pc->error = IDE_DRV_ERROR_FILEMARK;
346331f8 317 pc->flags |= PC_FLAG_ABORT;
1da177e4 318 }
90699ce2 319 if (pc->c[0] == WRITE_6) {
1b5db434
BP
320 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
321 && tape->asc == 0x0 && tape->ascq == 0x2)) {
c152cc1a 322 pc->error = IDE_DRV_ERROR_EOD;
346331f8 323 pc->flags |= PC_FLAG_ABORT;
1da177e4
LT
324 }
325 }
90699ce2 326 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
1b5db434 327 if (tape->sense_key == 8) {
c152cc1a 328 pc->error = IDE_DRV_ERROR_EOD;
346331f8 329 pc->flags |= PC_FLAG_ABORT;
1da177e4 330 }
346331f8 331 if (!(pc->flags & PC_FLAG_ABORT) &&
077e6dba 332 (blk_rq_bytes(rq) - rq->resid_len))
1da177e4
LT
333 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
334 }
335}
336
b14c7212
BZ
337static void ide_tape_handle_dsc(ide_drive_t *);
338
03a2faae 339static int ide_tape_callback(ide_drive_t *drive, int dsc)
1da177e4
LT
340{
341 idetape_tape_t *tape = drive->driver_data;
2b9efba4 342 struct ide_atapi_pc *pc = drive->pc;
313afea7 343 struct request *rq = drive->hwif->rq;
5985e6ab 344 int uptodate = pc->error ? 0 : 1;
313afea7 345 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
1da177e4 346
8004a8c9
BP
347 debug_log(DBG_PROCS, "Enter %s\n", __func__);
348
b14c7212
BZ
349 if (dsc)
350 ide_tape_handle_dsc(drive);
351
5e2040fd
BZ
352 if (drive->failed_pc == pc)
353 drive->failed_pc = NULL;
dd2e9a03 354
5985e6ab
BZ
355 if (pc->c[0] == REQUEST_SENSE) {
356 if (uptodate)
ae3a8387 357 idetape_analyze_error(drive);
5985e6ab
BZ
358 else
359 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
360 "itself - Aborting request!\n");
361 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
077e6dba
BP
362 unsigned int blocks =
363 (blk_rq_bytes(rq) - rq->resid_len) / tape->blk_size;
5985e6ab
BZ
364
365 tape->avg_size += blocks * tape->blk_size;
366
367 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
368 tape->avg_speed = tape->avg_size * HZ /
369 (jiffies - tape->avg_time) / 1024;
370 tape->avg_size = 0;
371 tape->avg_time = jiffies;
372 }
373
374 tape->first_frame += blocks;
5985e6ab 375
313afea7
BZ
376 if (pc->error) {
377 uptodate = 0;
378 err = pc->error;
379 }
1da177e4 380 }
313afea7
BZ
381 rq->errors = err;
382
03a2faae 383 return uptodate;
1da177e4
LT
384}
385
1da177e4 386/*
3c98bf34 387 * Postpone the current request so that ide.c will be able to service requests
b65fac32 388 * from another device on the same port while we are polling for DSC.
1da177e4 389 */
5a04cfa9 390static void idetape_postpone_request(ide_drive_t *drive)
1da177e4
LT
391{
392 idetape_tape_t *tape = drive->driver_data;
393
8004a8c9
BP
394 debug_log(DBG_PROCS, "Enter %s\n", __func__);
395
b65fac32
BZ
396 tape->postponed_rq = drive->hwif->rq;
397
54bb2074 398 ide_stall_queue(drive, tape->dsc_poll_freq);
1da177e4
LT
399}
400
74e63e74
BZ
401static void ide_tape_handle_dsc(ide_drive_t *drive)
402{
403 idetape_tape_t *tape = drive->driver_data;
404
405 /* Media access command */
406 tape->dsc_polling_start = jiffies;
407 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
408 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
409 /* Allow ide.c to handle other requests */
410 idetape_postpone_request(drive);
411}
412
1da177e4 413/*
3c98bf34 414 * Packet Command Interface
1da177e4 415 *
2b9efba4 416 * The current Packet Command is available in drive->pc, and will not change
3c98bf34
BP
417 * until we finish handling it. Each packet command is associated with a
418 * callback function that will be called when the command is finished.
1da177e4 419 *
3c98bf34 420 * The handling will be done in three stages:
1da177e4 421 *
b788ee9c 422 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
aa5d2de7 423 * the interrupt handler to ide_pc_intr.
1da177e4 424 *
aa5d2de7 425 * 2. On each interrupt, ide_pc_intr will be called. This step will be
3c98bf34 426 * repeated until the device signals us that no more interrupts will be issued.
1da177e4 427 *
3c98bf34
BP
428 * 3. ATAPI Tape media access commands have immediate status with a delayed
429 * process. In case of a successful initiation of a media access packet command,
430 * the DSC bit will be set when the actual execution of the command is finished.
431 * Since the tape drive will not issue an interrupt, we have to poll for this
432 * event. In this case, we define the request as "low priority request" by
433 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
434 * exit the driver.
1da177e4 435 *
3c98bf34
BP
436 * ide.c will then give higher priority to requests which originate from the
437 * other device, until will change rq_status to RQ_ACTIVE.
1da177e4 438 *
3c98bf34 439 * 4. When the packet command is finished, it will be checked for errors.
1da177e4 440 *
3c98bf34
BP
441 * 5. In case an error was found, we queue a request sense packet command in
442 * front of the request queue and retry the operation up to
443 * IDETAPE_MAX_PC_RETRIES times.
1da177e4 444 *
3c98bf34
BP
445 * 6. In case no error was found, or we decided to give up and not to retry
446 * again, the callback function will be called and then we will handle the next
447 * request.
1da177e4 448 */
1da177e4 449
b788ee9c
BZ
450static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
451 struct ide_cmd *cmd,
452 struct ide_atapi_pc *pc)
1da177e4 453{
1da177e4 454 idetape_tape_t *tape = drive->driver_data;
dfb7e621 455 struct request *rq = drive->hwif->rq;
1da177e4 456
5e2040fd
BZ
457 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
458 drive->failed_pc = pc;
2b9efba4 459
1da177e4 460 /* Set the current packet command */
2b9efba4 461 drive->pc = pc;
1da177e4
LT
462
463 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
346331f8 464 (pc->flags & PC_FLAG_ABORT)) {
b3071d19 465
1da177e4 466 /*
3c98bf34
BP
467 * We will "abort" retrying a packet command in case legitimate
468 * error code was received (crossing a filemark, or end of the
469 * media, for example).
1da177e4 470 */
346331f8 471 if (!(pc->flags & PC_FLAG_ABORT)) {
90699ce2 472 if (!(pc->c[0] == TEST_UNIT_READY &&
1da177e4
LT
473 tape->sense_key == 2 && tape->asc == 4 &&
474 (tape->ascq == 1 || tape->ascq == 8))) {
475 printk(KERN_ERR "ide-tape: %s: I/O error, "
476 "pc = %2x, key = %2x, "
477 "asc = %2x, ascq = %2x\n",
478 tape->name, pc->c[0],
479 tape->sense_key, tape->asc,
480 tape->ascq);
481 }
482 /* Giving up */
c152cc1a 483 pc->error = IDE_DRV_ERROR_GENERAL;
1da177e4 484 }
b3071d19 485
5e2040fd 486 drive->failed_pc = NULL;
b14c7212 487 drive->pc_callback(drive, 0);
dfb7e621 488 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
92f5daff 489 return ide_stopped;
1da177e4 490 }
8004a8c9 491 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
1da177e4
LT
492
493 pc->retries++;
1da177e4 494
b788ee9c 495 return ide_issue_pc(drive, cmd);
1da177e4
LT
496}
497
3c98bf34 498/* A mode sense command is used to "sense" tape parameters. */
d236d74c 499static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
1da177e4 500{
7bf7420a 501 ide_init_pc(pc);
90699ce2 502 pc->c[0] = MODE_SENSE;
1da177e4 503 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
3c98bf34
BP
504 /* DBD = 1 - Don't return block descriptors */
505 pc->c[1] = 8;
1da177e4
LT
506 pc->c[2] = page_code;
507 /*
508 * Changed pc->c[3] to 0 (255 will at best return unused info).
509 *
510 * For SCSI this byte is defined as subpage instead of high byte
511 * of length and some IDE drives seem to interpret it this way
512 * and return an error when 255 is used.
513 */
514 pc->c[3] = 0;
3c98bf34
BP
515 /* We will just discard data in that case */
516 pc->c[4] = 255;
1da177e4 517 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
d236d74c 518 pc->req_xfer = 12;
1da177e4 519 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
d236d74c 520 pc->req_xfer = 24;
1da177e4 521 else
d236d74c 522 pc->req_xfer = 50;
1da177e4
LT
523}
524
5a04cfa9 525static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
1da177e4 526{
b73c7ee2 527 ide_hwif_t *hwif = drive->hwif;
1da177e4 528 idetape_tape_t *tape = drive->driver_data;
2b9efba4 529 struct ide_atapi_pc *pc = drive->pc;
22c525b9 530 u8 stat;
1da177e4 531
374e042c 532 stat = hwif->tp_ops->read_status(hwif);
c47137a9 533
3a7d2484
BZ
534 if (stat & ATA_DSC) {
535 if (stat & ATA_ERR) {
1da177e4 536 /* Error detected */
90699ce2 537 if (pc->c[0] != TEST_UNIT_READY)
1da177e4
LT
538 printk(KERN_ERR "ide-tape: %s: I/O error, ",
539 tape->name);
540 /* Retry operation */
6b544fcc 541 ide_retry_pc(drive);
258ec411 542 return ide_stopped;
1da177e4
LT
543 }
544 pc->error = 0;
1da177e4 545 } else {
c152cc1a 546 pc->error = IDE_DRV_ERROR_GENERAL;
5e2040fd 547 drive->failed_pc = NULL;
1da177e4 548 }
b14c7212 549 drive->pc_callback(drive, 0);
1da177e4
LT
550 return ide_stopped;
551}
552
cd2abbfe 553static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
0014c75b
BP
554 struct ide_atapi_pc *pc, struct request *rq,
555 u8 opcode)
1da177e4 556{
10c0b343 557 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
0014c75b 558
7bf7420a 559 ide_init_pc(pc);
860ff5ec 560 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
1da177e4 561 pc->c[1] = 1;
19f52a78
BP
562
563 if (blk_rq_bytes(rq) == tape->buffer_size)
5e331095 564 pc->flags |= PC_FLAG_DMA_OK;
1da177e4 565
963da55c 566 if (opcode == READ_6)
cd2abbfe 567 pc->c[0] = READ_6;
963da55c 568 else if (opcode == WRITE_6) {
cd2abbfe
BP
569 pc->c[0] = WRITE_6;
570 pc->flags |= PC_FLAG_WRITING;
cd2abbfe 571 }
0014c75b
BP
572
573 memcpy(rq->cmd, pc->c, 12);
1da177e4
LT
574}
575
1da177e4
LT
576static ide_startstop_t idetape_do_request(ide_drive_t *drive,
577 struct request *rq, sector_t block)
578{
b73c7ee2 579 ide_hwif_t *hwif = drive->hwif;
1da177e4 580 idetape_tape_t *tape = drive->driver_data;
d236d74c 581 struct ide_atapi_pc *pc = NULL;
1da177e4 582 struct request *postponed_rq = tape->postponed_rq;
b788ee9c 583 struct ide_cmd cmd;
22c525b9 584 u8 stat;
1da177e4 585
9780e2dd
TH
586 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %u\n"
587 (unsigned long long)blk_rq_pos(rq), blk_rq_sectors(rq));
1da177e4 588
6b544fcc 589 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
3c98bf34 590 /* We do not support buffer cache originated requests. */
1da177e4 591 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
4aff5e23 592 "request queue (%d)\n", drive->name, rq->cmd_type);
89f78b32
BZ
593 if (blk_fs_request(rq) == 0 && rq->errors == 0)
594 rq->errors = -EIO;
130e8867 595 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
1da177e4
LT
596 return ide_stopped;
597 }
598
3c98bf34 599 /* Retry a failed packet command */
5e2040fd
BZ
600 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
601 pc = drive->failed_pc;
28c7214b
BZ
602 goto out;
603 }
5a04cfa9 604
1da177e4
LT
605 if (postponed_rq != NULL)
606 if (rq != postponed_rq) {
607 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
608 "Two DSC requests were queued\n");
313afea7 609 drive->failed_pc = NULL;
6902a533 610 rq->errors = 0;
f974b196 611 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
1da177e4
LT
612 return ide_stopped;
613 }
1da177e4
LT
614
615 tape->postponed_rq = NULL;
616
617 /*
618 * If the tape is still busy, postpone our request and service
619 * the other device meanwhile.
620 */
374e042c 621 stat = hwif->tp_ops->read_status(hwif);
1da177e4 622
97100fc8
BZ
623 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
624 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
626542ca 625 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
1da177e4 626
97100fc8 627 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
626542ca 628 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
97100fc8 629 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
1da177e4
LT
630 }
631
626542ca
BP
632 if (!(drive->atapi_flags & IDE_AFLAG_IGNORE_DSC) &&
633 !(stat & ATA_DSC)) {
1da177e4
LT
634 if (postponed_rq == NULL) {
635 tape->dsc_polling_start = jiffies;
54bb2074 636 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
1da177e4
LT
637 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
638 } else if (time_after(jiffies, tape->dsc_timeout)) {
639 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
640 tape->name);
83dd5735 641 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
1da177e4
LT
642 idetape_media_access_finished(drive);
643 return ide_stopped;
644 } else {
645 return ide_do_reset(drive);
646 }
5a04cfa9
BP
647 } else if (time_after(jiffies,
648 tape->dsc_polling_start +
649 IDETAPE_DSC_MA_THRESHOLD))
54bb2074 650 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
1da177e4
LT
651 idetape_postpone_request(drive);
652 return ide_stopped;
626542ca
BP
653 } else
654 drive->atapi_flags &= ~IDE_AFLAG_IGNORE_DSC;
655
83dd5735 656 if (rq->cmd[13] & REQ_IDETAPE_READ) {
2e8a6f89 657 pc = &tape->queued_pc;
0014c75b 658 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
1da177e4
LT
659 goto out;
660 }
83dd5735 661 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
2e8a6f89 662 pc = &tape->queued_pc;
0014c75b 663 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
1da177e4
LT
664 goto out;
665 }
83dd5735 666 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
c267cc1c 667 pc = (struct ide_atapi_pc *)rq->special;
83dd5735
BP
668 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
669 rq->cmd[13] |= REQ_IDETAPE_PC2;
1da177e4
LT
670 goto out;
671 }
83dd5735 672 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
1da177e4
LT
673 idetape_media_access_finished(drive);
674 return ide_stopped;
675 }
676 BUG();
28c7214b 677
f2e3ab52 678out:
6b544fcc
BP
679 /* prepare sense request for this command */
680 ide_prep_sense(drive, rq);
681
b788ee9c
BZ
682 memset(&cmd, 0, sizeof(cmd));
683
684 if (rq_data_dir(rq))
685 cmd.tf_flags |= IDE_TFLAG_WRITE;
686
687 cmd.rq = rq;
688
dfb7e621 689 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
5c4be572
TH
690 ide_map_sg(drive, &cmd);
691
b788ee9c 692 return ide_tape_issue_pc(drive, &cmd, pc);
1da177e4
LT
693}
694
1da177e4 695/*
3c98bf34
BP
696 * Write a filemark if write_filemark=1. Flush the device buffers without
697 * writing a filemark otherwise.
1da177e4 698 */
5a04cfa9 699static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
d236d74c 700 struct ide_atapi_pc *pc, int write_filemark)
1da177e4 701{
7bf7420a 702 ide_init_pc(pc);
90699ce2 703 pc->c[0] = WRITE_FILEMARKS;
1da177e4 704 pc->c[4] = write_filemark;
346331f8 705 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
706}
707
1da177e4
LT
708static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
709{
710 idetape_tape_t *tape = drive->driver_data;
2ac07d92 711 struct gendisk *disk = tape->disk;
1da177e4
LT
712 int load_attempted = 0;
713
3c98bf34 714 /* Wait for the tape to become ready */
49d8078a 715 set_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT), &drive->atapi_flags);
1da177e4
LT
716 timeout += jiffies;
717 while (time_before(jiffies, timeout)) {
de699ad5 718 if (ide_do_test_unit_ready(drive, disk) == 0)
1da177e4
LT
719 return 0;
720 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
3c98bf34
BP
721 || (tape->asc == 0x3A)) {
722 /* no media */
1da177e4
LT
723 if (load_attempted)
724 return -ENOMEDIUM;
0c8a6c7a 725 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
1da177e4
LT
726 load_attempted = 1;
727 /* not about to be ready */
728 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
729 (tape->ascq == 1 || tape->ascq == 8)))
730 return -EIO;
80ce45fd 731 msleep(100);
1da177e4
LT
732 }
733 return -EIO;
734}
735
5a04cfa9 736static int idetape_flush_tape_buffers(ide_drive_t *drive)
1da177e4 737{
2ac07d92 738 struct ide_tape_obj *tape = drive->driver_data;
d236d74c 739 struct ide_atapi_pc pc;
1da177e4
LT
740 int rc;
741
742 idetape_create_write_filemark_cmd(drive, &pc, 0);
b13345f3 743 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
5a04cfa9 744 if (rc)
1da177e4
LT
745 return rc;
746 idetape_wait_ready(drive, 60 * 5 * HZ);
747 return 0;
748}
749
55ce3a12 750static int ide_tape_read_position(ide_drive_t *drive)
1da177e4
LT
751{
752 idetape_tape_t *tape = drive->driver_data;
d236d74c 753 struct ide_atapi_pc pc;
55ce3a12 754 u8 buf[20];
1da177e4 755
8004a8c9 756 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1da177e4 757
55ce3a12
BP
758 /* prep cmd */
759 ide_init_pc(&pc);
760 pc.c[0] = READ_POSITION;
761 pc.req_xfer = 20;
762
763 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer))
1da177e4 764 return -1;
55ce3a12
BP
765
766 if (!pc.error) {
767 debug_log(DBG_SENSE, "BOP - %s\n",
768 (buf[0] & 0x80) ? "Yes" : "No");
769 debug_log(DBG_SENSE, "EOP - %s\n",
770 (buf[0] & 0x40) ? "Yes" : "No");
771
772 if (buf[0] & 0x4) {
773 printk(KERN_INFO "ide-tape: Block location is unknown"
774 "to the tape\n");
8dcce408
BZ
775 clear_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
776 &drive->atapi_flags);
55ce3a12
BP
777 return -1;
778 } else {
779 debug_log(DBG_SENSE, "Block Location - %u\n",
780 be32_to_cpup((__be32 *)&buf[4]));
781
782 tape->partition = buf[1];
783 tape->first_frame = be32_to_cpup((__be32 *)&buf[4]);
8dcce408
BZ
784 set_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
785 &drive->atapi_flags);
55ce3a12
BP
786 }
787 }
788
789 return tape->first_frame;
1da177e4
LT
790}
791
d236d74c
BP
792static void idetape_create_locate_cmd(ide_drive_t *drive,
793 struct ide_atapi_pc *pc,
5a04cfa9 794 unsigned int block, u8 partition, int skip)
1da177e4 795{
7bf7420a 796 ide_init_pc(pc);
90699ce2 797 pc->c[0] = POSITION_TO_ELEMENT;
1da177e4 798 pc->c[1] = 2;
860ff5ec 799 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
1da177e4 800 pc->c[8] = partition;
346331f8 801 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
802}
803
ec0fdb01 804static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
1da177e4
LT
805{
806 idetape_tape_t *tape = drive->driver_data;
1da177e4 807
54abf37e 808 if (tape->chrdev_dir != IDETAPE_DIR_READ)
9798630a 809 return;
1da177e4 810
49d8078a 811 clear_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags);
963da55c
TH
812 tape->valid = 0;
813 if (tape->buf != NULL) {
814 kfree(tape->buf);
815 tape->buf = NULL;
1da177e4
LT
816 }
817
54abf37e 818 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4
LT
819}
820
821/*
3c98bf34
BP
822 * Position the tape to the requested block using the LOCATE packet command.
823 * A READ POSITION command is then issued to check where we are positioned. Like
824 * all higher level operations, we queue the commands at the tail of the request
825 * queue and wait for their completion.
1da177e4 826 */
5a04cfa9
BP
827static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
828 u8 partition, int skip)
1da177e4
LT
829{
830 idetape_tape_t *tape = drive->driver_data;
2ac07d92 831 struct gendisk *disk = tape->disk;
55ce3a12 832 int ret;
d236d74c 833 struct ide_atapi_pc pc;
1da177e4 834
54abf37e 835 if (tape->chrdev_dir == IDETAPE_DIR_READ)
ec0fdb01 836 __ide_tape_discard_merge_buffer(drive);
1da177e4
LT
837 idetape_wait_ready(drive, 60 * 5 * HZ);
838 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
55ce3a12
BP
839 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
840 if (ret)
841 return ret;
1da177e4 842
55ce3a12
BP
843 ret = ide_tape_read_position(drive);
844 if (ret < 0)
845 return ret;
846 return 0;
1da177e4
LT
847}
848
ec0fdb01 849static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
5a04cfa9 850 int restore_position)
1da177e4
LT
851{
852 idetape_tape_t *tape = drive->driver_data;
1da177e4
LT
853 int seek, position;
854
ec0fdb01 855 __ide_tape_discard_merge_buffer(drive);
1da177e4 856 if (restore_position) {
55ce3a12 857 position = ide_tape_read_position(drive);
9798630a 858 seek = position > 0 ? position : 0;
1da177e4 859 if (idetape_position_tape(drive, seek, 0, 0)) {
5a04cfa9 860 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
ec0fdb01 861 " %s\n", tape->name, __func__);
1da177e4
LT
862 return;
863 }
864 }
865}
866
867/*
3c98bf34
BP
868 * Generate a read/write request for the block device interface and wait for it
869 * to be serviced.
1da177e4 870 */
6bb11dd1 871static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
1da177e4
LT
872{
873 idetape_tape_t *tape = drive->driver_data;
64ea1b4a 874 struct request *rq;
21d9c5d2 875 int ret;
1da177e4 876
8004a8c9 877 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
21d9c5d2 878 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
6bb11dd1 879 BUG_ON(size < 0 || size % tape->blk_size);
8004a8c9 880
64ea1b4a
FT
881 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
882 rq->cmd_type = REQ_TYPE_SPECIAL;
83dd5735 883 rq->cmd[13] = cmd;
64ea1b4a 884 rq->rq_disk = tape->disk;
c9059598 885 rq->__sector = tape->first_frame;
21d9c5d2
TH
886
887 if (size) {
963da55c 888 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
21d9c5d2
TH
889 __GFP_WAIT);
890 if (ret)
891 goto out_put;
892 }
893
64ea1b4a
FT
894 blk_execute_rq(drive->queue, tape->disk, rq, 0);
895
963da55c 896 /* calculate the number of transferred bytes and update buffer state */
c3a4d78c 897 size -= rq->resid_len;
963da55c 898 tape->cur = tape->buf;
21d9c5d2 899 if (cmd == REQ_IDETAPE_READ)
963da55c
TH
900 tape->valid = size;
901 else
902 tape->valid = 0;
1da177e4 903
21d9c5d2
TH
904 ret = size;
905 if (rq->errors == IDE_DRV_ERROR_GENERAL)
906 ret = -EIO;
21d9c5d2
TH
907out_put:
908 blk_put_request(rq);
64ea1b4a 909 return ret;
1da177e4
LT
910}
911
d236d74c 912static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
1da177e4 913{
7bf7420a 914 ide_init_pc(pc);
90699ce2 915 pc->c[0] = INQUIRY;
5a04cfa9 916 pc->c[4] = 254;
d236d74c 917 pc->req_xfer = 254;
1da177e4
LT
918}
919
d236d74c
BP
920static void idetape_create_rewind_cmd(ide_drive_t *drive,
921 struct ide_atapi_pc *pc)
1da177e4 922{
7bf7420a 923 ide_init_pc(pc);
90699ce2 924 pc->c[0] = REZERO_UNIT;
346331f8 925 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
926}
927
d236d74c 928static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
1da177e4 929{
7bf7420a 930 ide_init_pc(pc);
90699ce2 931 pc->c[0] = ERASE;
1da177e4 932 pc->c[1] = 1;
346331f8 933 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
934}
935
d236d74c 936static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
1da177e4 937{
7bf7420a 938 ide_init_pc(pc);
90699ce2 939 pc->c[0] = SPACE;
860ff5ec 940 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
1da177e4 941 pc->c[1] = cmd;
346331f8 942 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
943}
944
d9df937a 945static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
1da177e4
LT
946{
947 idetape_tape_t *tape = drive->driver_data;
55a5d291 948
54abf37e 949 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
077e3bdb 950 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
5a04cfa9 951 " but we are not writing.\n");
1da177e4
LT
952 return;
953 }
963da55c 954 if (tape->buf) {
6bb11dd1
TH
955 size_t aligned = roundup(tape->valid, tape->blk_size);
956
957 memset(tape->cur, 0, aligned - tape->valid);
07bd9686 958 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
963da55c
TH
959 kfree(tape->buf);
960 tape->buf = NULL;
1da177e4 961 }
54abf37e 962 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4
LT
963}
964
88f1b941 965static int idetape_init_rw(ide_drive_t *drive, int dir)
1da177e4
LT
966{
967 idetape_tape_t *tape = drive->driver_data;
88f1b941 968 int rc;
1da177e4 969
88f1b941 970 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
1da177e4 971
88f1b941
TH
972 if (tape->chrdev_dir == dir)
973 return 0;
974
975 if (tape->chrdev_dir == IDETAPE_DIR_READ)
976 ide_tape_discard_merge_buffer(drive, 1);
977 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
978 ide_tape_flush_merge_buffer(drive);
979 idetape_flush_tape_buffers(drive);
980 }
981
982 if (tape->buf || tape->valid) {
983 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
984 tape->valid = 0;
985 }
986
987 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
988 if (!tape->buf)
989 return -ENOMEM;
990 tape->chrdev_dir = dir;
991 tape->cur = tape->buf;
992
993 /*
994 * Issue a 0 rw command to ensure that DSC handshake is
995 * switched from completion mode to buffer available mode. No
996 * point in issuing this if DSC overlap isn't supported, some
997 * drives (Seagate STT3401A) will return an error.
998 */
999 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1000 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
1001 : REQ_IDETAPE_WRITE;
1002
1003 rc = idetape_queue_rw_tail(drive, cmd, 0);
1004 if (rc < 0) {
1005 kfree(tape->buf);
1006 tape->buf = NULL;
1007 tape->chrdev_dir = IDETAPE_DIR_NONE;
1008 return rc;
1da177e4
LT
1009 }
1010 }
5e69bd95 1011
1da177e4
LT
1012 return 0;
1013}
1014
5a04cfa9 1015static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
1da177e4
LT
1016{
1017 idetape_tape_t *tape = drive->driver_data;
963da55c
TH
1018
1019 memset(tape->buf, 0, tape->buffer_size);
3c98bf34 1020
1da177e4 1021 while (bcount) {
963da55c 1022 unsigned int count = min(tape->buffer_size, bcount);
1da177e4 1023
6bb11dd1 1024 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
1da177e4 1025 bcount -= count;
1da177e4
LT
1026 }
1027}
1028
1da177e4 1029/*
3c98bf34
BP
1030 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1031 * currently support only one partition.
1032 */
5a04cfa9 1033static int idetape_rewind_tape(ide_drive_t *drive)
1da177e4 1034{
2ac07d92
BZ
1035 struct ide_tape_obj *tape = drive->driver_data;
1036 struct gendisk *disk = tape->disk;
d236d74c 1037 struct ide_atapi_pc pc;
55ce3a12 1038 int ret;
8004a8c9
BP
1039
1040 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1041
1da177e4 1042 idetape_create_rewind_cmd(drive, &pc);
55ce3a12
BP
1043 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1044 if (ret)
1045 return ret;
1da177e4 1046
55ce3a12
BP
1047 ret = ide_tape_read_position(drive);
1048 if (ret < 0)
1049 return ret;
1da177e4
LT
1050 return 0;
1051}
1052
3c98bf34 1053/* mtio.h compatible commands should be issued to the chrdev interface. */
5a04cfa9
BP
1054static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1055 unsigned long arg)
1da177e4
LT
1056{
1057 idetape_tape_t *tape = drive->driver_data;
1da177e4
LT
1058 void __user *argp = (void __user *)arg;
1059
d59823fa
BP
1060 struct idetape_config {
1061 int dsc_rw_frequency;
1062 int dsc_media_access_frequency;
1063 int nr_stages;
1064 } config;
1065
8004a8c9
BP
1066 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1067
1da177e4 1068 switch (cmd) {
5a04cfa9
BP
1069 case 0x0340:
1070 if (copy_from_user(&config, argp, sizeof(config)))
1071 return -EFAULT;
1072 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
5a04cfa9
BP
1073 break;
1074 case 0x0350:
1075 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
83042b24 1076 config.nr_stages = 1;
5a04cfa9
BP
1077 if (copy_to_user(argp, &config, sizeof(config)))
1078 return -EFAULT;
1079 break;
1080 default:
1081 return -EIO;
1da177e4
LT
1082 }
1083 return 0;
1084}
1085
5a04cfa9
BP
1086static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1087 int mt_count)
1da177e4
LT
1088{
1089 idetape_tape_t *tape = drive->driver_data;
2ac07d92 1090 struct gendisk *disk = tape->disk;
d236d74c 1091 struct ide_atapi_pc pc;
5a04cfa9 1092 int retval, count = 0;
b6422013 1093 int sprev = !!(tape->caps[4] & 0x20);
1da177e4
LT
1094
1095 if (mt_count == 0)
1096 return 0;
1097 if (MTBSF == mt_op || MTBSFM == mt_op) {
b6422013 1098 if (!sprev)
1da177e4 1099 return -EIO;
5a04cfa9 1100 mt_count = -mt_count;
1da177e4
LT
1101 }
1102
54abf37e 1103 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
963da55c 1104 tape->valid = 0;
49d8078a
BP
1105 if (test_and_clear_bit(ilog2(IDE_AFLAG_FILEMARK),
1106 &drive->atapi_flags))
1da177e4 1107 ++count;
ec0fdb01 1108 ide_tape_discard_merge_buffer(drive, 0);
1da177e4
LT
1109 }
1110
1da177e4 1111 switch (mt_op) {
5a04cfa9
BP
1112 case MTFSF:
1113 case MTBSF:
1114 idetape_create_space_cmd(&pc, mt_count - count,
1115 IDETAPE_SPACE_OVER_FILEMARK);
b13345f3 1116 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
5a04cfa9
BP
1117 case MTFSFM:
1118 case MTBSFM:
1119 if (!sprev)
1120 return -EIO;
1121 retval = idetape_space_over_filemarks(drive, MTFSF,
1122 mt_count - count);
1123 if (retval)
1124 return retval;
1125 count = (MTBSFM == mt_op ? 1 : -1);
1126 return idetape_space_over_filemarks(drive, MTFSF, count);
1127 default:
1128 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1129 mt_op);
1130 return -EIO;
1da177e4
LT
1131 }
1132}
1133
1da177e4 1134/*
3c98bf34 1135 * Our character device read / write functions.
1da177e4 1136 *
3c98bf34
BP
1137 * The tape is optimized to maximize throughput when it is transferring an
1138 * integral number of the "continuous transfer limit", which is a parameter of
1139 * the specific tape (26kB on my particular tape, 32kB for Onstream).
1da177e4 1140 *
3c98bf34
BP
1141 * As of version 1.3 of the driver, the character device provides an abstract
1142 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1143 * same backup/restore procedure is supported. The driver will internally
1144 * convert the requests to the recommended transfer unit, so that an unmatch
1145 * between the user's block size to the recommended size will only result in a
1146 * (slightly) increased driver overhead, but will no longer hit performance.
1147 * This is not applicable to Onstream.
1da177e4 1148 */
5a04cfa9
BP
1149static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1150 size_t count, loff_t *ppos)
1da177e4 1151{
5aeddf90 1152 struct ide_tape_obj *tape = file->private_data;
1da177e4 1153 ide_drive_t *drive = tape->drive;
07bd9686 1154 size_t done = 0;
dcd96379 1155 ssize_t ret = 0;
07bd9686 1156 int rc;
1da177e4 1157
8004a8c9 1158 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1da177e4 1159
54abf37e 1160 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
49d8078a 1161 if (test_bit(ilog2(IDE_AFLAG_DETECT_BS), &drive->atapi_flags))
54bb2074
BP
1162 if (count > tape->blk_size &&
1163 (count % tape->blk_size) == 0)
1164 tape->user_bs_factor = count / tape->blk_size;
1da177e4 1165 }
07bd9686 1166
88f1b941 1167 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
8d06bfad 1168 if (rc < 0)
1da177e4 1169 return rc;
07bd9686
TH
1170
1171 while (done < count) {
1172 size_t todo;
1173
1174 /* refill if staging buffer is empty */
1175 if (!tape->valid) {
1176 /* If we are at a filemark, nothing more to read */
49d8078a
BP
1177 if (test_bit(ilog2(IDE_AFLAG_FILEMARK),
1178 &drive->atapi_flags))
07bd9686
TH
1179 break;
1180 /* read */
1181 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1182 tape->buffer_size) <= 0)
1183 break;
1184 }
1185
1186 /* copy out */
1187 todo = min_t(size_t, count - done, tape->valid);
1188 if (copy_to_user(buf + done, tape->cur, todo))
dcd96379 1189 ret = -EFAULT;
07bd9686
TH
1190
1191 tape->cur += todo;
1192 tape->valid -= todo;
1193 done += todo;
1da177e4 1194 }
07bd9686 1195
49d8078a 1196 if (!done && test_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags)) {
8004a8c9
BP
1197 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1198
1da177e4
LT
1199 idetape_space_over_filemarks(drive, MTFSF, 1);
1200 return 0;
1201 }
dcd96379 1202
07bd9686 1203 return ret ? ret : done;
1da177e4
LT
1204}
1205
5a04cfa9 1206static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
1da177e4
LT
1207 size_t count, loff_t *ppos)
1208{
5aeddf90 1209 struct ide_tape_obj *tape = file->private_data;
1da177e4 1210 ide_drive_t *drive = tape->drive;
07bd9686 1211 size_t done = 0;
dcd96379 1212 ssize_t ret = 0;
88f1b941 1213 int rc;
1da177e4
LT
1214
1215 /* The drive is write protected. */
1216 if (tape->write_prot)
1217 return -EACCES;
1218
8004a8c9 1219 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1da177e4
LT
1220
1221 /* Initialize write operation */
88f1b941
TH
1222 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1223 if (rc < 0)
1224 return rc;
07bd9686
TH
1225
1226 while (done < count) {
1227 size_t todo;
1228
1229 /* flush if staging buffer is full */
1230 if (tape->valid == tape->buffer_size &&
1231 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1232 tape->buffer_size) <= 0)
1233 return rc;
1234
1235 /* copy in */
1236 todo = min_t(size_t, count - done,
1237 tape->buffer_size - tape->valid);
1238 if (copy_from_user(tape->cur, buf + done, todo))
dcd96379 1239 ret = -EFAULT;
07bd9686
TH
1240
1241 tape->cur += todo;
1242 tape->valid += todo;
1243 done += todo;
1da177e4 1244 }
07bd9686
TH
1245
1246 return ret ? ret : done;
1da177e4
LT
1247}
1248
5a04cfa9 1249static int idetape_write_filemark(ide_drive_t *drive)
1da177e4 1250{
2ac07d92 1251 struct ide_tape_obj *tape = drive->driver_data;
d236d74c 1252 struct ide_atapi_pc pc;
1da177e4
LT
1253
1254 /* Write a filemark */
1255 idetape_create_write_filemark_cmd(drive, &pc, 1);
b13345f3 1256 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
1da177e4
LT
1257 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1258 return -EIO;
1259 }
1260 return 0;
1261}
1262
1263/*
d99c9da2
BP
1264 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1265 * requested.
1da177e4 1266 *
d99c9da2
BP
1267 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1268 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
5bd50dc6 1269 * usually not supported.
1da177e4 1270 *
d99c9da2 1271 * The following commands are currently not supported:
1da177e4 1272 *
d99c9da2
BP
1273 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1274 * MT_ST_WRITE_THRESHOLD.
1da177e4 1275 */
d99c9da2 1276static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
1da177e4
LT
1277{
1278 idetape_tape_t *tape = drive->driver_data;
2ac07d92 1279 struct gendisk *disk = tape->disk;
d236d74c 1280 struct ide_atapi_pc pc;
5a04cfa9 1281 int i, retval;
1da177e4 1282
8004a8c9
BP
1283 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1284 mt_op, mt_count);
5a04cfa9 1285
1da177e4 1286 switch (mt_op) {
5a04cfa9
BP
1287 case MTFSF:
1288 case MTFSFM:
1289 case MTBSF:
1290 case MTBSFM:
1291 if (!mt_count)
1292 return 0;
1293 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1294 default:
1295 break;
1da177e4 1296 }
5a04cfa9 1297
1da177e4 1298 switch (mt_op) {
5a04cfa9
BP
1299 case MTWEOF:
1300 if (tape->write_prot)
1301 return -EACCES;
ec0fdb01 1302 ide_tape_discard_merge_buffer(drive, 1);
5a04cfa9
BP
1303 for (i = 0; i < mt_count; i++) {
1304 retval = idetape_write_filemark(drive);
1305 if (retval)
1306 return retval;
1307 }
1308 return 0;
1309 case MTREW:
ec0fdb01 1310 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1311 if (idetape_rewind_tape(drive))
1312 return -EIO;
1313 return 0;
1314 case MTLOAD:
ec0fdb01 1315 ide_tape_discard_merge_buffer(drive, 0);
0c8a6c7a 1316 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
5a04cfa9
BP
1317 case MTUNLOAD:
1318 case MTOFFL:
1319 /*
1320 * If door is locked, attempt to unlock before
1321 * attempting to eject.
1322 */
1323 if (tape->door_locked) {
0578042d 1324 if (!ide_set_media_lock(drive, disk, 0))
385a4b87 1325 tape->door_locked = DOOR_UNLOCKED;
5a04cfa9 1326 }
ec0fdb01 1327 ide_tape_discard_merge_buffer(drive, 0);
0c8a6c7a 1328 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
5a04cfa9 1329 if (!retval)
49d8078a
BP
1330 clear_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1331 &drive->atapi_flags);
5a04cfa9
BP
1332 return retval;
1333 case MTNOP:
ec0fdb01 1334 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1335 return idetape_flush_tape_buffers(drive);
1336 case MTRETEN:
ec0fdb01 1337 ide_tape_discard_merge_buffer(drive, 0);
0c8a6c7a 1338 return ide_do_start_stop(drive, disk,
5a04cfa9 1339 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
5a04cfa9
BP
1340 case MTEOM:
1341 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
b13345f3 1342 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
5a04cfa9
BP
1343 case MTERASE:
1344 (void)idetape_rewind_tape(drive);
1345 idetape_create_erase_cmd(&pc);
b13345f3 1346 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
5a04cfa9
BP
1347 case MTSETBLK:
1348 if (mt_count) {
1349 if (mt_count < tape->blk_size ||
1350 mt_count % tape->blk_size)
1da177e4 1351 return -EIO;
5a04cfa9 1352 tape->user_bs_factor = mt_count / tape->blk_size;
49d8078a
BP
1353 clear_bit(ilog2(IDE_AFLAG_DETECT_BS),
1354 &drive->atapi_flags);
5a04cfa9 1355 } else
49d8078a
BP
1356 set_bit(ilog2(IDE_AFLAG_DETECT_BS),
1357 &drive->atapi_flags);
5a04cfa9
BP
1358 return 0;
1359 case MTSEEK:
ec0fdb01 1360 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1361 return idetape_position_tape(drive,
1362 mt_count * tape->user_bs_factor, tape->partition, 0);
1363 case MTSETPART:
ec0fdb01 1364 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1365 return idetape_position_tape(drive, 0, mt_count, 0);
1366 case MTFSR:
1367 case MTBSR:
1368 case MTLOCK:
0578042d 1369 retval = ide_set_media_lock(drive, disk, 1);
5a04cfa9 1370 if (retval)
1da177e4 1371 return retval;
5a04cfa9
BP
1372 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1373 return 0;
1374 case MTUNLOCK:
0578042d 1375 retval = ide_set_media_lock(drive, disk, 0);
5a04cfa9
BP
1376 if (retval)
1377 return retval;
1378 tape->door_locked = DOOR_UNLOCKED;
1379 return 0;
1380 default:
1381 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1382 mt_op);
1383 return -EIO;
1da177e4
LT
1384 }
1385}
1386
1387/*
d99c9da2
BP
1388 * Our character device ioctls. General mtio.h magnetic io commands are
1389 * supported here, and not in the corresponding block interface. Our own
1390 * ide-tape ioctls are supported on both interfaces.
1da177e4 1391 */
d99c9da2
BP
1392static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1393 unsigned int cmd, unsigned long arg)
1da177e4 1394{
5aeddf90 1395 struct ide_tape_obj *tape = file->private_data;
1da177e4
LT
1396 ide_drive_t *drive = tape->drive;
1397 struct mtop mtop;
1398 struct mtget mtget;
1399 struct mtpos mtpos;
54bb2074 1400 int block_offset = 0, position = tape->first_frame;
1da177e4
LT
1401 void __user *argp = (void __user *)arg;
1402
8004a8c9 1403 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
1da177e4 1404
54abf37e 1405 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
d9df937a 1406 ide_tape_flush_merge_buffer(drive);
1da177e4
LT
1407 idetape_flush_tape_buffers(drive);
1408 }
1409 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
963da55c 1410 block_offset = tape->valid /
54bb2074 1411 (tape->blk_size * tape->user_bs_factor);
55ce3a12 1412 position = ide_tape_read_position(drive);
5a04cfa9 1413 if (position < 0)
1da177e4
LT
1414 return -EIO;
1415 }
1416 switch (cmd) {
5a04cfa9
BP
1417 case MTIOCTOP:
1418 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1419 return -EFAULT;
1420 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1421 case MTIOCGET:
1422 memset(&mtget, 0, sizeof(struct mtget));
1423 mtget.mt_type = MT_ISSCSI2;
1424 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1425 mtget.mt_dsreg =
1426 ((tape->blk_size * tape->user_bs_factor)
1427 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
1428
1429 if (tape->drv_write_prot)
1430 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1431
1432 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1433 return -EFAULT;
1434 return 0;
1435 case MTIOCPOS:
1436 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1437 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1438 return -EFAULT;
1439 return 0;
1440 default:
1441 if (tape->chrdev_dir == IDETAPE_DIR_READ)
ec0fdb01 1442 ide_tape_discard_merge_buffer(drive, 1);
5a04cfa9 1443 return idetape_blkdev_ioctl(drive, cmd, arg);
1da177e4
LT
1444 }
1445}
1446
3cffb9ce
BP
1447/*
1448 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1449 * block size with the reported value.
1450 */
1451static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1452{
1453 idetape_tape_t *tape = drive->driver_data;
d236d74c 1454 struct ide_atapi_pc pc;
837272b4 1455 u8 buf[12];
3cffb9ce
BP
1456
1457 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
837272b4 1458 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
3cffb9ce 1459 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
54bb2074 1460 if (tape->blk_size == 0) {
3cffb9ce
BP
1461 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1462 "block size, assuming 32k\n");
54bb2074 1463 tape->blk_size = 32768;
3cffb9ce
BP
1464 }
1465 return;
1466 }
837272b4
BP
1467 tape->blk_size = (buf[4 + 5] << 16) +
1468 (buf[4 + 6] << 8) +
1469 buf[4 + 7];
1470 tape->drv_write_prot = (buf[2] & 0x80) >> 7;
3cffb9ce 1471}
1da177e4 1472
5a04cfa9 1473static int idetape_chrdev_open(struct inode *inode, struct file *filp)
1da177e4
LT
1474{
1475 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1476 ide_drive_t *drive;
1477 idetape_tape_t *tape;
1da177e4
LT
1478 int retval;
1479
8004a8c9
BP
1480 if (i >= MAX_HWIFS * MAX_DRIVES)
1481 return -ENXIO;
1482
04f4ac9d 1483 lock_kernel();
9d01e4cd 1484 tape = ide_tape_get(NULL, true, i);
04f4ac9d
JC
1485 if (!tape) {
1486 unlock_kernel();
8004a8c9 1487 return -ENXIO;
04f4ac9d 1488 }
8004a8c9
BP
1489
1490 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1491
1da177e4
LT
1492 /*
1493 * We really want to do nonseekable_open(inode, filp); here, but some
1494 * versions of tar incorrectly call lseek on tapes and bail out if that
1495 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1496 */
1497 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1498
1da177e4
LT
1499 drive = tape->drive;
1500
1501 filp->private_data = tape;
1502
49d8078a 1503 if (test_and_set_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags)) {
1da177e4
LT
1504 retval = -EBUSY;
1505 goto out_put_tape;
1506 }
1507
1508 retval = idetape_wait_ready(drive, 60 * HZ);
1509 if (retval) {
49d8078a 1510 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
1da177e4
LT
1511 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1512 goto out_put_tape;
1513 }
1514
1515 idetape_read_position(drive);
49d8078a 1516 if (!test_bit(ilog2(IDE_AFLAG_ADDRESS_VALID), &drive->atapi_flags))
1da177e4
LT
1517 (void)idetape_rewind_tape(drive);
1518
1da177e4 1519 /* Read block size and write protect status from drive. */
3cffb9ce 1520 ide_tape_get_bsize_from_bdesc(drive);
1da177e4
LT
1521
1522 /* Set write protect flag if device is opened as read-only. */
1523 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1524 tape->write_prot = 1;
1525 else
1526 tape->write_prot = tape->drv_write_prot;
1527
1528 /* Make sure drive isn't write protected if user wants to write. */
1529 if (tape->write_prot) {
1530 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1531 (filp->f_flags & O_ACCMODE) == O_RDWR) {
49d8078a 1532 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
1da177e4
LT
1533 retval = -EROFS;
1534 goto out_put_tape;
1535 }
1536 }
1537
3c98bf34 1538 /* Lock the tape drive door so user can't eject. */
54abf37e 1539 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
0578042d 1540 if (!ide_set_media_lock(drive, tape->disk, 1)) {
385a4b87
BZ
1541 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1542 tape->door_locked = DOOR_LOCKED;
1da177e4
LT
1543 }
1544 }
04f4ac9d 1545 unlock_kernel();
1da177e4
LT
1546 return 0;
1547
1548out_put_tape:
1549 ide_tape_put(tape);
04f4ac9d 1550 unlock_kernel();
1da177e4
LT
1551 return retval;
1552}
1553
5a04cfa9 1554static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
1da177e4
LT
1555{
1556 idetape_tape_t *tape = drive->driver_data;
1557
d9df937a 1558 ide_tape_flush_merge_buffer(drive);
963da55c
TH
1559 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1560 if (tape->buf != NULL) {
54bb2074
BP
1561 idetape_pad_zeros(drive, tape->blk_size *
1562 (tape->user_bs_factor - 1));
963da55c
TH
1563 kfree(tape->buf);
1564 tape->buf = NULL;
1da177e4
LT
1565 }
1566 idetape_write_filemark(drive);
1567 idetape_flush_tape_buffers(drive);
1568 idetape_flush_tape_buffers(drive);
1569}
1570
5a04cfa9 1571static int idetape_chrdev_release(struct inode *inode, struct file *filp)
1da177e4 1572{
5aeddf90 1573 struct ide_tape_obj *tape = filp->private_data;
1da177e4 1574 ide_drive_t *drive = tape->drive;
1da177e4
LT
1575 unsigned int minor = iminor(inode);
1576
1577 lock_kernel();
1578 tape = drive->driver_data;
8004a8c9
BP
1579
1580 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1da177e4 1581
54abf37e 1582 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
1da177e4 1583 idetape_write_release(drive, minor);
54abf37e 1584 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
1da177e4 1585 if (minor < 128)
ec0fdb01 1586 ide_tape_discard_merge_buffer(drive, 1);
1da177e4 1587 }
f64eee7b 1588
49d8078a
BP
1589 if (minor < 128 && test_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1590 &drive->atapi_flags))
1da177e4 1591 (void) idetape_rewind_tape(drive);
49d8078a 1592
54abf37e 1593 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
1da177e4 1594 if (tape->door_locked == DOOR_LOCKED) {
0578042d 1595 if (!ide_set_media_lock(drive, tape->disk, 0))
385a4b87 1596 tape->door_locked = DOOR_UNLOCKED;
1da177e4
LT
1597 }
1598 }
49d8078a 1599 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
1da177e4
LT
1600 ide_tape_put(tape);
1601 unlock_kernel();
1602 return 0;
1603}
1604
6d29c8f0 1605static void idetape_get_inquiry_results(ide_drive_t *drive)
1da177e4 1606{
1da177e4 1607 idetape_tape_t *tape = drive->driver_data;
d236d74c 1608 struct ide_atapi_pc pc;
41fa9f86 1609 u8 pc_buf[256];
801bd32e 1610 char fw_rev[4], vendor_id[8], product_id[16];
6d29c8f0 1611
1da177e4 1612 idetape_create_inquiry_cmd(&pc);
b13345f3 1613 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
6d29c8f0
BP
1614 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1615 tape->name);
1da177e4
LT
1616 return;
1617 }
b13345f3
BP
1618 memcpy(vendor_id, &pc_buf[8], 8);
1619 memcpy(product_id, &pc_buf[16], 16);
1620 memcpy(fw_rev, &pc_buf[32], 4);
41f81d54 1621
801bd32e
BP
1622 ide_fixstring(vendor_id, 8, 0);
1623 ide_fixstring(product_id, 16, 0);
1624 ide_fixstring(fw_rev, 4, 0);
41f81d54 1625
801bd32e 1626 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
41f81d54 1627 drive->name, tape->name, vendor_id, product_id, fw_rev);
1da177e4
LT
1628}
1629
1630/*
b6422013
BP
1631 * Ask the tape about its various parameters. In particular, we will adjust our
1632 * data transfer buffer size to the recommended value as returned by the tape.
1da177e4 1633 */
5a04cfa9 1634static void idetape_get_mode_sense_results(ide_drive_t *drive)
1da177e4
LT
1635{
1636 idetape_tape_t *tape = drive->driver_data;
d236d74c 1637 struct ide_atapi_pc pc;
b13345f3 1638 u8 buf[24], *caps;
b6422013 1639 u8 speed, max_speed;
47314fa4 1640
1da177e4 1641 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
b13345f3 1642 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
b6422013
BP
1643 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1644 " some default values\n");
54bb2074 1645 tape->blk_size = 512;
b6422013
BP
1646 put_unaligned(52, (u16 *)&tape->caps[12]);
1647 put_unaligned(540, (u16 *)&tape->caps[14]);
1648 put_unaligned(6*52, (u16 *)&tape->caps[16]);
1da177e4
LT
1649 return;
1650 }
b13345f3 1651 caps = buf + 4 + buf[3];
b6422013
BP
1652
1653 /* convert to host order and save for later use */
cd740ab0
HH
1654 speed = be16_to_cpup((__be16 *)&caps[14]);
1655 max_speed = be16_to_cpup((__be16 *)&caps[8]);
1da177e4 1656
cd740ab0
HH
1657 *(u16 *)&caps[8] = max_speed;
1658 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1659 *(u16 *)&caps[14] = speed;
1660 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
1da177e4 1661
b6422013
BP
1662 if (!speed) {
1663 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1664 "(assuming 650KB/sec)\n", drive->name);
cd740ab0 1665 *(u16 *)&caps[14] = 650;
1da177e4 1666 }
b6422013
BP
1667 if (!max_speed) {
1668 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1669 "(assuming 650KB/sec)\n", drive->name);
cd740ab0 1670 *(u16 *)&caps[8] = 650;
1da177e4
LT
1671 }
1672
b6422013 1673 memcpy(&tape->caps, caps, 20);
0578042d
BZ
1674
1675 /* device lacks locking support according to capabilities page */
1676 if ((caps[6] & 1) == 0)
42619d35 1677 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
0578042d 1678
b6422013 1679 if (caps[7] & 0x02)
54bb2074 1680 tape->blk_size = 512;
b6422013 1681 else if (caps[7] & 0x04)
54bb2074 1682 tape->blk_size = 1024;
1da177e4
LT
1683}
1684
7662d046 1685#ifdef CONFIG_IDE_PROC_FS
8185d5aa
BZ
1686#define ide_tape_devset_get(name, field) \
1687static int get_##name(ide_drive_t *drive) \
1688{ \
1689 idetape_tape_t *tape = drive->driver_data; \
1690 return tape->field; \
1691}
1692
1693#define ide_tape_devset_set(name, field) \
1694static int set_##name(ide_drive_t *drive, int arg) \
1695{ \
1696 idetape_tape_t *tape = drive->driver_data; \
1697 tape->field = arg; \
1698 return 0; \
1699}
1700
92f1f8fd 1701#define ide_tape_devset_rw_field(_name, _field) \
8185d5aa
BZ
1702ide_tape_devset_get(_name, _field) \
1703ide_tape_devset_set(_name, _field) \
92f1f8fd 1704IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
8185d5aa 1705
92f1f8fd 1706#define ide_tape_devset_r_field(_name, _field) \
8185d5aa 1707ide_tape_devset_get(_name, _field) \
92f1f8fd 1708IDE_DEVSET(_name, 0, get_##_name, NULL)
8185d5aa
BZ
1709
1710static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1711static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1712static int divf_buffer(ide_drive_t *drive) { return 2; }
1713static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1714
97100fc8 1715ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
92f1f8fd
EO
1716
1717ide_tape_devset_rw_field(debug_mask, debug_mask);
1718ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
1719
1720ide_tape_devset_r_field(avg_speed, avg_speed);
1721ide_tape_devset_r_field(speed, caps[14]);
1722ide_tape_devset_r_field(buffer, caps[16]);
1723ide_tape_devset_r_field(buffer_size, buffer_size);
1724
1725static const struct ide_proc_devset idetape_settings[] = {
1726 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1727 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1728 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1729 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1730 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1731 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1732 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1733 mulf_tdsc, divf_tdsc),
71bfc7a7 1734 { NULL },
8185d5aa 1735};
7662d046 1736#endif
1da177e4
LT
1737
1738/*
3c98bf34 1739 * The function below is called to:
1da177e4 1740 *
3c98bf34
BP
1741 * 1. Initialize our various state variables.
1742 * 2. Ask the tape for its capabilities.
1743 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1744 * is chosen based on the recommendation which we received in step 2.
1da177e4 1745 *
3c98bf34
BP
1746 * Note that at this point ide.c already assigned us an irq, so that we can
1747 * queue requests here and wait for their completion.
1da177e4 1748 */
5a04cfa9 1749static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
1da177e4 1750{
83042b24 1751 unsigned long t;
1da177e4 1752 int speed;
f73850a3 1753 int buffer_size;
b6422013 1754 u16 *ctl = (u16 *)&tape->caps[12];
1da177e4 1755
85e39035 1756 drive->pc_callback = ide_tape_callback;
776bb027 1757
97100fc8
BZ
1758 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1759
4166c199
BZ
1760 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1761 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1762 tape->name);
97100fc8 1763 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1da177e4 1764 }
97100fc8 1765
1da177e4 1766 /* Seagate Travan drives do not support DSC overlap. */
4dde4492 1767 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
97100fc8
BZ
1768 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1769
1da177e4
LT
1770 tape->minor = minor;
1771 tape->name[0] = 'h';
1772 tape->name[1] = 't';
1773 tape->name[2] = '0' + minor;
54abf37e 1774 tape->chrdev_dir = IDETAPE_DIR_NONE;
4dde4492 1775
1da177e4
LT
1776 idetape_get_inquiry_results(drive);
1777 idetape_get_mode_sense_results(drive);
3cffb9ce 1778 ide_tape_get_bsize_from_bdesc(drive);
1da177e4 1779 tape->user_bs_factor = 1;
f73850a3
BP
1780 tape->buffer_size = *ctl * tape->blk_size;
1781 while (tape->buffer_size > 0xffff) {
1da177e4 1782 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
b6422013 1783 *ctl /= 2;
f73850a3 1784 tape->buffer_size = *ctl * tape->blk_size;
1da177e4 1785 }
f73850a3 1786 buffer_size = tape->buffer_size;
1da177e4 1787
83042b24 1788 /* select the "best" DSC read/write polling freq */
b6422013 1789 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
1da177e4 1790
f73850a3 1791 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
1da177e4
LT
1792
1793 /*
3c98bf34
BP
1794 * Ensure that the number we got makes sense; limit it within
1795 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
1da177e4 1796 */
a792bd5a
HH
1797 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1798 IDETAPE_DSC_RW_MAX);
1da177e4 1799 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
83042b24 1800 "%lums tDSC%s\n",
b6422013 1801 drive->name, tape->name, *(u16 *)&tape->caps[14],
f73850a3
BP
1802 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1803 tape->buffer_size / 1024,
54bb2074 1804 tape->best_dsc_rw_freq * 1000 / HZ,
97100fc8 1805 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
1da177e4 1806
1e874f44 1807 ide_proc_register_driver(drive, tape->driver);
1da177e4
LT
1808}
1809
4031bbe4 1810static void ide_tape_remove(ide_drive_t *drive)
1da177e4
LT
1811{
1812 idetape_tape_t *tape = drive->driver_data;
1da177e4 1813
7662d046 1814 ide_proc_unregister_driver(drive, tape->driver);
8fed4368 1815 device_del(&tape->dev);
1da177e4
LT
1816 ide_unregister_region(tape->disk);
1817
8fed4368
BZ
1818 mutex_lock(&idetape_ref_mutex);
1819 put_device(&tape->dev);
1820 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
1821}
1822
8fed4368 1823static void ide_tape_release(struct device *dev)
1da177e4 1824{
8fed4368 1825 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
1da177e4
LT
1826 ide_drive_t *drive = tape->drive;
1827 struct gendisk *g = tape->disk;
1828
963da55c 1829 BUG_ON(tape->valid);
8604affd 1830
97100fc8 1831 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1da177e4 1832 drive->driver_data = NULL;
dbc1272e 1833 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
5a04cfa9
BP
1834 device_destroy(idetape_sysfs_class,
1835 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
1da177e4
LT
1836 idetape_devs[tape->minor] = NULL;
1837 g->private_data = NULL;
1838 put_disk(g);
1839 kfree(tape);
1840}
1841
ecfd80e4 1842#ifdef CONFIG_IDE_PROC_FS
1da177e4
LT
1843static int proc_idetape_read_name
1844 (char *page, char **start, off_t off, int count, int *eof, void *data)
1845{
1846 ide_drive_t *drive = (ide_drive_t *) data;
1847 idetape_tape_t *tape = drive->driver_data;
1848 char *out = page;
1849 int len;
1850
1851 len = sprintf(out, "%s\n", tape->name);
1852 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1853}
1854
1855static ide_proc_entry_t idetape_proc[] = {
1856 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1857 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1858 { NULL, 0, NULL, NULL }
1859};
79cb3803
BZ
1860
1861static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1862{
1863 return idetape_proc;
1864}
1865
1866static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1867{
1868 return idetape_settings;
1869}
1da177e4
LT
1870#endif
1871
4031bbe4 1872static int ide_tape_probe(ide_drive_t *);
1da177e4 1873
7f3c868b 1874static struct ide_driver idetape_driver = {
8604affd 1875 .gen_driver = {
4ef3b8f4 1876 .owner = THIS_MODULE,
8604affd
BZ
1877 .name = "ide-tape",
1878 .bus = &ide_bus_type,
8604affd 1879 },
4031bbe4
RK
1880 .probe = ide_tape_probe,
1881 .remove = ide_tape_remove,
1da177e4 1882 .version = IDETAPE_VERSION,
1da177e4 1883 .do_request = idetape_do_request,
7662d046 1884#ifdef CONFIG_IDE_PROC_FS
79cb3803
BZ
1885 .proc_entries = ide_tape_proc_entries,
1886 .proc_devsets = ide_tape_proc_devsets,
7662d046 1887#endif
1da177e4
LT
1888};
1889
3c98bf34 1890/* Our character device supporting functions, passed to register_chrdev. */
2b8693c0 1891static const struct file_operations idetape_fops = {
1da177e4
LT
1892 .owner = THIS_MODULE,
1893 .read = idetape_chrdev_read,
1894 .write = idetape_chrdev_write,
1895 .ioctl = idetape_chrdev_ioctl,
1896 .open = idetape_chrdev_open,
1897 .release = idetape_chrdev_release,
1898};
1899
a4600f81 1900static int idetape_open(struct block_device *bdev, fmode_t mode)
1da177e4 1901{
9d01e4cd 1902 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk, false, 0);
1da177e4 1903
5a04cfa9 1904 if (!tape)
1da177e4
LT
1905 return -ENXIO;
1906
1da177e4
LT
1907 return 0;
1908}
1909
a4600f81 1910static int idetape_release(struct gendisk *disk, fmode_t mode)
1da177e4 1911{
5aeddf90 1912 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
1da177e4
LT
1913
1914 ide_tape_put(tape);
1da177e4
LT
1915 return 0;
1916}
1917
a4600f81 1918static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
1da177e4
LT
1919 unsigned int cmd, unsigned long arg)
1920{
5aeddf90 1921 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
1da177e4 1922 ide_drive_t *drive = tape->drive;
1bddd9e6 1923 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
1da177e4
LT
1924 if (err == -EINVAL)
1925 err = idetape_blkdev_ioctl(drive, cmd, arg);
1926 return err;
1927}
1928
1929static struct block_device_operations idetape_block_ops = {
1930 .owner = THIS_MODULE,
a4600f81
AV
1931 .open = idetape_open,
1932 .release = idetape_release,
1933 .locked_ioctl = idetape_ioctl,
1da177e4
LT
1934};
1935
4031bbe4 1936static int ide_tape_probe(ide_drive_t *drive)
1da177e4
LT
1937{
1938 idetape_tape_t *tape;
1939 struct gendisk *g;
1940 int minor;
1941
1942 if (!strstr("ide-tape", drive->driver_req))
1943 goto failed;
2a924662 1944
1da177e4
LT
1945 if (drive->media != ide_tape)
1946 goto failed;
2a924662 1947
97100fc8
BZ
1948 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1949 ide_check_atapi_device(drive, DRV_NAME) == 0) {
5a04cfa9
BP
1950 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1951 " the driver\n", drive->name);
1da177e4
LT
1952 goto failed;
1953 }
5a04cfa9 1954 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
1da177e4 1955 if (tape == NULL) {
5a04cfa9
BP
1956 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1957 drive->name);
1da177e4
LT
1958 goto failed;
1959 }
1960
1961 g = alloc_disk(1 << PARTN_BITS);
1962 if (!g)
1963 goto out_free_tape;
1964
1965 ide_init_disk(g, drive);
1966
8fed4368
BZ
1967 tape->dev.parent = &drive->gendev;
1968 tape->dev.release = ide_tape_release;
1969 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1970
1971 if (device_register(&tape->dev))
1972 goto out_free_disk;
1da177e4
LT
1973
1974 tape->drive = drive;
1975 tape->driver = &idetape_driver;
1976 tape->disk = g;
1977
1978 g->private_data = &tape->driver;
1979
1980 drive->driver_data = tape;
1981
cf8b8975 1982 mutex_lock(&idetape_ref_mutex);
1da177e4
LT
1983 for (minor = 0; idetape_devs[minor]; minor++)
1984 ;
1985 idetape_devs[minor] = tape;
cf8b8975 1986 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
1987
1988 idetape_setup(drive, tape, minor);
1989
3ee074bf
GKH
1990 device_create(idetape_sysfs_class, &drive->gendev,
1991 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1992 device_create(idetape_sysfs_class, &drive->gendev,
1993 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
1994 "n%s", tape->name);
d5dee80a 1995
1da177e4
LT
1996 g->fops = &idetape_block_ops;
1997 ide_register_region(g);
1998
1999 return 0;
8604affd 2000
8fed4368
BZ
2001out_free_disk:
2002 put_disk(g);
1da177e4
LT
2003out_free_tape:
2004 kfree(tape);
2005failed:
8604affd 2006 return -ENODEV;
1da177e4
LT
2007}
2008
5a04cfa9 2009static void __exit idetape_exit(void)
1da177e4 2010{
8604affd 2011 driver_unregister(&idetape_driver.gen_driver);
d5dee80a 2012 class_destroy(idetape_sysfs_class);
1da177e4
LT
2013 unregister_chrdev(IDETAPE_MAJOR, "ht");
2014}
2015
17514e8a 2016static int __init idetape_init(void)
1da177e4 2017{
d5dee80a
WD
2018 int error = 1;
2019 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2020 if (IS_ERR(idetape_sysfs_class)) {
2021 idetape_sysfs_class = NULL;
2022 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2023 error = -EBUSY;
2024 goto out;
2025 }
2026
1da177e4 2027 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
5a04cfa9
BP
2028 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2029 " interface\n");
d5dee80a
WD
2030 error = -EBUSY;
2031 goto out_free_class;
1da177e4 2032 }
d5dee80a
WD
2033
2034 error = driver_register(&idetape_driver.gen_driver);
2035 if (error)
2036 goto out_free_driver;
2037
2038 return 0;
2039
2040out_free_driver:
2041 driver_unregister(&idetape_driver.gen_driver);
2042out_free_class:
2043 class_destroy(idetape_sysfs_class);
2044out:
2045 return error;
1da177e4
LT
2046}
2047
263756ec 2048MODULE_ALIAS("ide:*m-tape*");
1da177e4
LT
2049module_init(idetape_init);
2050module_exit(idetape_exit);
2051MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
9c145768
BP
2052MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2053MODULE_LICENSE("GPL");