]> Pileus Git - ~andy/linux/blob - drivers/ide/ide-tape.c
ide-{floppy,tape}: cleanup ide*_end_request()
[~andy/linux] / drivers / ide / ide-tape.c
1 /*
2  * IDE ATAPI streaming tape driver.
3  *
4  * Copyright (C) 1995-1999  Gadi Oxman <gadio@netvision.net.il>
5  * Copyright (C) 2003-2005  Bartlomiej Zolnierkiewicz
6  *
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).
13  *
14  * For a historical changelog see
15  * Documentation/ide/ChangeLog.ide-tape.1995-2002
16  */
17
18 #define DRV_NAME "ide-tape"
19
20 #define IDETAPE_VERSION "1.20"
21
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>
30 #include <linux/jiffies.h>
31 #include <linux/major.h>
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>
40 #include <linux/mutex.h>
41 #include <scsi/scsi.h>
42
43 #include <asm/byteorder.h>
44 #include <linux/irq.h>
45 #include <linux/uaccess.h>
46 #include <linux/io.h>
47 #include <asm/unaligned.h>
48 #include <linux/mtio.h>
49
50 enum {
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),
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
74 /**************************** Tunable parameters *****************************/
75 /*
76  * After each failed packet command we issue a request sense command and retry
77  * the packet command IDETAPE_MAX_PC_RETRIES times.
78  *
79  * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
80  */
81 #define IDETAPE_MAX_PC_RETRIES          3
82
83 /*
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.
88  */
89 #define IDETAPE_FIFO_THRESHOLD          2
90
91 /*
92  * DSC polling parameters.
93  *
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:
96  *
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.
102  *
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).
111  *
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.
114  */
115
116 /* DSC timings. */
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
127 /* tape directions */
128 enum {
129         IDETAPE_DIR_NONE  = (1 << 0),
130         IDETAPE_DIR_READ  = (1 << 1),
131         IDETAPE_DIR_WRITE = (1 << 2),
132 };
133
134 struct idetape_bh {
135         u32 b_size;
136         atomic_t b_count;
137         struct idetape_bh *b_reqnext;
138         char *b_data;
139 };
140
141 /* Tape door status */
142 #define DOOR_UNLOCKED                   0
143 #define DOOR_LOCKED                     1
144 #define DOOR_EXPLICITLY_LOCKED          2
145
146 /* Some defines for the SPACE command */
147 #define IDETAPE_SPACE_OVER_FILEMARK     1
148 #define IDETAPE_SPACE_TO_EOD            3
149
150 /* Some defines for the LOAD UNLOAD command */
151 #define IDETAPE_LU_LOAD_MASK            1
152 #define IDETAPE_LU_RETENSION_MASK       2
153 #define IDETAPE_LU_EOT_MASK             4
154
155 /* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
156 #define IDETAPE_BLOCK_DESCRIPTOR        0
157 #define IDETAPE_CAPABILITIES_PAGE       0x2a
158
159 /*
160  * Most of our global data which we need to save even as we leave the driver due
161  * to an interrupt or a timer event is stored in the struct defined below.
162  */
163 typedef struct ide_tape_obj {
164         ide_drive_t             *drive;
165         struct ide_driver       *driver;
166         struct gendisk          *disk;
167         struct device           dev;
168
169         /* used by REQ_IDETAPE_{READ,WRITE} requests */
170         struct ide_atapi_pc queued_pc;
171
172         /*
173          * DSC polling variables.
174          *
175          * While polling for DSC we use postponed_rq to postpone the current
176          * request so that ide.c will be able to service pending requests on the
177          * other device. Note that at most we will have only one DSC (usually
178          * data transfer) request in the device request queue.
179          */
180         struct request *postponed_rq;
181         /* The time in which we started polling for DSC */
182         unsigned long dsc_polling_start;
183         /* Timer used to poll for dsc */
184         struct timer_list dsc_timer;
185         /* Read/Write dsc polling frequency */
186         unsigned long best_dsc_rw_freq;
187         unsigned long dsc_poll_freq;
188         unsigned long dsc_timeout;
189
190         /* Read position information */
191         u8 partition;
192         /* Current block */
193         unsigned int first_frame;
194
195         /* Last error information */
196         u8 sense_key, asc, ascq;
197
198         /* Character device operation */
199         unsigned int minor;
200         /* device name */
201         char name[4];
202         /* Current character device data transfer direction */
203         u8 chrdev_dir;
204
205         /* tape block size, usually 512 or 1024 bytes */
206         unsigned short blk_size;
207         int user_bs_factor;
208
209         /* Copy of the tape's Capabilities and Mechanical Page */
210         u8 caps[20];
211
212         /*
213          * Active data transfer request parameters.
214          *
215          * At most, there is only one ide-tape originated data transfer request
216          * in the device request queue. This allows ide.c to easily service
217          * requests from the other device when we postpone our active request.
218          */
219
220         /* Data buffer size chosen based on the tape's recommendation */
221         int buffer_size;
222         /* merge buffer */
223         struct idetape_bh *merge_bh;
224         /* size of the merge buffer */
225         int merge_bh_size;
226         /* pointer to current buffer head within the merge buffer */
227         struct idetape_bh *bh;
228         char *b_data;
229         int b_count;
230
231         int pages_per_buffer;
232         /* Wasted space in each stage */
233         int excess_bh_size;
234
235         /* Measures average tape speed */
236         unsigned long avg_time;
237         int avg_size;
238         int avg_speed;
239
240         /* the door is currently locked */
241         int door_locked;
242         /* the tape hardware is write protected */
243         char drv_write_prot;
244         /* the tape is write protected (hardware or opened as read-only) */
245         char write_prot;
246
247         u32 debug_mask;
248 } idetape_tape_t;
249
250 static DEFINE_MUTEX(idetape_ref_mutex);
251
252 static struct class *idetape_sysfs_class;
253
254 static void ide_tape_release(struct device *);
255
256 static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
257 {
258         struct ide_tape_obj *tape = NULL;
259
260         mutex_lock(&idetape_ref_mutex);
261         tape = ide_drv_g(disk, ide_tape_obj);
262         if (tape) {
263                 if (ide_device_get(tape->drive))
264                         tape = NULL;
265                 else
266                         get_device(&tape->dev);
267         }
268         mutex_unlock(&idetape_ref_mutex);
269         return tape;
270 }
271
272 static void ide_tape_put(struct ide_tape_obj *tape)
273 {
274         ide_drive_t *drive = tape->drive;
275
276         mutex_lock(&idetape_ref_mutex);
277         put_device(&tape->dev);
278         ide_device_put(drive);
279         mutex_unlock(&idetape_ref_mutex);
280 }
281
282 /*
283  * The variables below are used for the character device interface. Additional
284  * state variables are defined in our ide_drive_t structure.
285  */
286 static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
287
288 static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
289 {
290         struct ide_tape_obj *tape = NULL;
291
292         mutex_lock(&idetape_ref_mutex);
293         tape = idetape_devs[i];
294         if (tape)
295                 get_device(&tape->dev);
296         mutex_unlock(&idetape_ref_mutex);
297         return tape;
298 }
299
300 static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
301                                   unsigned int bcount)
302 {
303         struct idetape_bh *bh = pc->bh;
304         int count;
305
306         while (bcount) {
307                 if (bh == NULL) {
308                         printk(KERN_ERR "ide-tape: bh == NULL in "
309                                 "idetape_input_buffers\n");
310                         ide_pad_transfer(drive, 0, bcount);
311                         return;
312                 }
313                 count = min(
314                         (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
315                         bcount);
316                 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
317                                         atomic_read(&bh->b_count), count);
318                 bcount -= count;
319                 atomic_add(count, &bh->b_count);
320                 if (atomic_read(&bh->b_count) == bh->b_size) {
321                         bh = bh->b_reqnext;
322                         if (bh)
323                                 atomic_set(&bh->b_count, 0);
324                 }
325         }
326         pc->bh = bh;
327 }
328
329 static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
330                                    unsigned int bcount)
331 {
332         struct idetape_bh *bh = pc->bh;
333         int count;
334
335         while (bcount) {
336                 if (bh == NULL) {
337                         printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
338                                         __func__);
339                         return;
340                 }
341                 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
342                 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
343                 bcount -= count;
344                 pc->b_data += count;
345                 pc->b_count -= count;
346                 if (!pc->b_count) {
347                         bh = bh->b_reqnext;
348                         pc->bh = bh;
349                         if (bh) {
350                                 pc->b_data = bh->b_data;
351                                 pc->b_count = atomic_read(&bh->b_count);
352                         }
353                 }
354         }
355 }
356
357 static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
358 {
359         struct idetape_bh *bh = pc->bh;
360         int count;
361         unsigned int bcount = pc->xferred;
362
363         if (pc->flags & PC_FLAG_WRITING)
364                 return;
365         while (bcount) {
366                 if (bh == NULL) {
367                         printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
368                                         __func__);
369                         return;
370                 }
371                 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
372                 atomic_set(&bh->b_count, count);
373                 if (atomic_read(&bh->b_count) == bh->b_size)
374                         bh = bh->b_reqnext;
375                 bcount -= count;
376         }
377         pc->bh = bh;
378 }
379
380 /*
381  * called on each failed packet command retry to analyze the request sense. We
382  * currently do not utilize this information.
383  */
384 static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
385 {
386         idetape_tape_t *tape = drive->driver_data;
387         struct ide_atapi_pc *pc = drive->failed_pc;
388
389         tape->sense_key = sense[2] & 0xF;
390         tape->asc       = sense[12];
391         tape->ascq      = sense[13];
392
393         debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
394                  pc->c[0], tape->sense_key, tape->asc, tape->ascq);
395
396         /* Correct pc->xferred by asking the tape.       */
397         if (pc->flags & PC_FLAG_DMA_ERROR) {
398                 pc->xferred = pc->req_xfer -
399                         tape->blk_size *
400                         get_unaligned_be32(&sense[3]);
401                 idetape_update_buffers(drive, pc);
402         }
403
404         /*
405          * If error was the result of a zero-length read or write command,
406          * with sense key=5, asc=0x22, ascq=0, let it slide.  Some drives
407          * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
408          */
409         if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
410             /* length == 0 */
411             && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
412                 if (tape->sense_key == 5) {
413                         /* don't report an error, everything's ok */
414                         pc->error = 0;
415                         /* don't retry read/write */
416                         pc->flags |= PC_FLAG_ABORT;
417                 }
418         }
419         if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
420                 pc->error = IDE_DRV_ERROR_FILEMARK;
421                 pc->flags |= PC_FLAG_ABORT;
422         }
423         if (pc->c[0] == WRITE_6) {
424                 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
425                      && tape->asc == 0x0 && tape->ascq == 0x2)) {
426                         pc->error = IDE_DRV_ERROR_EOD;
427                         pc->flags |= PC_FLAG_ABORT;
428                 }
429         }
430         if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
431                 if (tape->sense_key == 8) {
432                         pc->error = IDE_DRV_ERROR_EOD;
433                         pc->flags |= PC_FLAG_ABORT;
434                 }
435                 if (!(pc->flags & PC_FLAG_ABORT) &&
436                     pc->xferred)
437                         pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
438         }
439 }
440
441 /* Free data buffers completely. */
442 static void ide_tape_kfree_buffer(idetape_tape_t *tape)
443 {
444         struct idetape_bh *prev_bh, *bh = tape->merge_bh;
445
446         while (bh) {
447                 u32 size = bh->b_size;
448
449                 while (size) {
450                         unsigned int order = fls(size >> PAGE_SHIFT)-1;
451
452                         if (bh->b_data)
453                                 free_pages((unsigned long)bh->b_data, order);
454
455                         size &= (order-1);
456                         bh->b_data += (1 << order) * PAGE_SIZE;
457                 }
458                 prev_bh = bh;
459                 bh = bh->b_reqnext;
460                 kfree(prev_bh);
461         }
462 }
463
464 static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
465 {
466         struct request *rq = drive->hwif->rq;
467
468         debug_log(DBG_PROCS, "Enter %s\n", __func__);
469
470         rq->errors = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
471
472         if (uptodate == 0)
473                 drive->failed_pc = NULL;
474
475         ide_complete_rq(drive, 0);
476
477         return 0;
478 }
479
480 static void ide_tape_handle_dsc(ide_drive_t *);
481
482 static void ide_tape_callback(ide_drive_t *drive, int dsc)
483 {
484         idetape_tape_t *tape = drive->driver_data;
485         struct ide_atapi_pc *pc = drive->pc;
486         struct request *rq = drive->hwif->rq;
487         int uptodate = pc->error ? 0 : 1;
488         int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
489
490         debug_log(DBG_PROCS, "Enter %s\n", __func__);
491
492         if (dsc)
493                 ide_tape_handle_dsc(drive);
494
495         if (drive->failed_pc == pc)
496                 drive->failed_pc = NULL;
497
498         if (pc->c[0] == REQUEST_SENSE) {
499                 if (uptodate)
500                         idetape_analyze_error(drive, pc->buf);
501                 else
502                         printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
503                                         "itself - Aborting request!\n");
504         } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
505                 int blocks = pc->xferred / tape->blk_size;
506
507                 tape->avg_size += blocks * tape->blk_size;
508
509                 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
510                         tape->avg_speed = tape->avg_size * HZ /
511                                 (jiffies - tape->avg_time) / 1024;
512                         tape->avg_size = 0;
513                         tape->avg_time = jiffies;
514                 }
515
516                 tape->first_frame += blocks;
517                 rq->current_nr_sectors -= blocks;
518
519                 if (pc->error) {
520                         uptodate = 0;
521                         err = pc->error;
522                 }
523         } else if (pc->c[0] == READ_POSITION && uptodate) {
524                 u8 *readpos = pc->buf;
525
526                 debug_log(DBG_SENSE, "BOP - %s\n",
527                                 (readpos[0] & 0x80) ? "Yes" : "No");
528                 debug_log(DBG_SENSE, "EOP - %s\n",
529                                 (readpos[0] & 0x40) ? "Yes" : "No");
530
531                 if (readpos[0] & 0x4) {
532                         printk(KERN_INFO "ide-tape: Block location is unknown"
533                                          "to the tape\n");
534                         clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
535                         uptodate = 0;
536                         err = IDE_DRV_ERROR_GENERAL;
537                 } else {
538                         debug_log(DBG_SENSE, "Block Location - %u\n",
539                                         be32_to_cpup((__be32 *)&readpos[4]));
540
541                         tape->partition = readpos[1];
542                         tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
543                         set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
544                 }
545         }
546
547         rq->errors = err;
548
549         if (uptodate == 0)
550                 drive->failed_pc = NULL;
551
552         if (blk_special_request(rq))
553                 ide_complete_rq(drive, 0);
554         else
555                 ide_end_request(drive, uptodate, 0);
556 }
557
558 /*
559  * Postpone the current request so that ide.c will be able to service requests
560  * from another device on the same port while we are polling for DSC.
561  */
562 static void idetape_postpone_request(ide_drive_t *drive)
563 {
564         idetape_tape_t *tape = drive->driver_data;
565
566         debug_log(DBG_PROCS, "Enter %s\n", __func__);
567
568         tape->postponed_rq = drive->hwif->rq;
569
570         ide_stall_queue(drive, tape->dsc_poll_freq);
571 }
572
573 static void ide_tape_handle_dsc(ide_drive_t *drive)
574 {
575         idetape_tape_t *tape = drive->driver_data;
576
577         /* Media access command */
578         tape->dsc_polling_start = jiffies;
579         tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
580         tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
581         /* Allow ide.c to handle other requests */
582         idetape_postpone_request(drive);
583 }
584
585 static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
586                                 unsigned int bcount, int write)
587 {
588         if (write)
589                 idetape_output_buffers(drive, pc, bcount);
590         else
591                 idetape_input_buffers(drive, pc, bcount);
592
593         return bcount;
594 }
595
596 /*
597  * Packet Command Interface
598  *
599  * The current Packet Command is available in drive->pc, and will not change
600  * until we finish handling it. Each packet command is associated with a
601  * callback function that will be called when the command is finished.
602  *
603  * The handling will be done in three stages:
604  *
605  * 1. idetape_issue_pc will send the packet command to the drive, and will set
606  * the interrupt handler to ide_pc_intr.
607  *
608  * 2. On each interrupt, ide_pc_intr will be called. This step will be
609  * repeated until the device signals us that no more interrupts will be issued.
610  *
611  * 3. ATAPI Tape media access commands have immediate status with a delayed
612  * process. In case of a successful initiation of a media access packet command,
613  * the DSC bit will be set when the actual execution of the command is finished.
614  * Since the tape drive will not issue an interrupt, we have to poll for this
615  * event. In this case, we define the request as "low priority request" by
616  * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
617  * exit the driver.
618  *
619  * ide.c will then give higher priority to requests which originate from the
620  * other device, until will change rq_status to RQ_ACTIVE.
621  *
622  * 4. When the packet command is finished, it will be checked for errors.
623  *
624  * 5. In case an error was found, we queue a request sense packet command in
625  * front of the request queue and retry the operation up to
626  * IDETAPE_MAX_PC_RETRIES times.
627  *
628  * 6. In case no error was found, or we decided to give up and not to retry
629  * again, the callback function will be called and then we will handle the next
630  * request.
631  */
632
633 static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
634                 struct ide_atapi_pc *pc)
635 {
636         idetape_tape_t *tape = drive->driver_data;
637
638         if (drive->pc->c[0] == REQUEST_SENSE &&
639             pc->c[0] == REQUEST_SENSE) {
640                 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
641                         "Two request sense in serial were issued\n");
642         }
643
644         if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
645                 drive->failed_pc = pc;
646
647         /* Set the current packet command */
648         drive->pc = pc;
649
650         if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
651                 (pc->flags & PC_FLAG_ABORT)) {
652                 /*
653                  * We will "abort" retrying a packet command in case legitimate
654                  * error code was received (crossing a filemark, or end of the
655                  * media, for example).
656                  */
657                 if (!(pc->flags & PC_FLAG_ABORT)) {
658                         if (!(pc->c[0] == TEST_UNIT_READY &&
659                               tape->sense_key == 2 && tape->asc == 4 &&
660                              (tape->ascq == 1 || tape->ascq == 8))) {
661                                 printk(KERN_ERR "ide-tape: %s: I/O error, "
662                                                 "pc = %2x, key = %2x, "
663                                                 "asc = %2x, ascq = %2x\n",
664                                                 tape->name, pc->c[0],
665                                                 tape->sense_key, tape->asc,
666                                                 tape->ascq);
667                         }
668                         /* Giving up */
669                         pc->error = IDE_DRV_ERROR_GENERAL;
670                 }
671                 drive->failed_pc = NULL;
672                 drive->pc_callback(drive, 0);
673                 return ide_stopped;
674         }
675         debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
676
677         pc->retries++;
678
679         return ide_issue_pc(drive);
680 }
681
682 /* A mode sense command is used to "sense" tape parameters. */
683 static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
684 {
685         ide_init_pc(pc);
686         pc->c[0] = MODE_SENSE;
687         if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
688                 /* DBD = 1 - Don't return block descriptors */
689                 pc->c[1] = 8;
690         pc->c[2] = page_code;
691         /*
692          * Changed pc->c[3] to 0 (255 will at best return unused info).
693          *
694          * For SCSI this byte is defined as subpage instead of high byte
695          * of length and some IDE drives seem to interpret it this way
696          * and return an error when 255 is used.
697          */
698         pc->c[3] = 0;
699         /* We will just discard data in that case */
700         pc->c[4] = 255;
701         if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
702                 pc->req_xfer = 12;
703         else if (page_code == IDETAPE_CAPABILITIES_PAGE)
704                 pc->req_xfer = 24;
705         else
706                 pc->req_xfer = 50;
707 }
708
709 static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
710 {
711         ide_hwif_t *hwif = drive->hwif;
712         idetape_tape_t *tape = drive->driver_data;
713         struct ide_atapi_pc *pc = drive->pc;
714         u8 stat;
715
716         stat = hwif->tp_ops->read_status(hwif);
717
718         if (stat & ATA_DSC) {
719                 if (stat & ATA_ERR) {
720                         /* Error detected */
721                         if (pc->c[0] != TEST_UNIT_READY)
722                                 printk(KERN_ERR "ide-tape: %s: I/O error, ",
723                                                 tape->name);
724                         /* Retry operation */
725                         ide_retry_pc(drive, tape->disk);
726                         return ide_stopped;
727                 }
728                 pc->error = 0;
729         } else {
730                 pc->error = IDE_DRV_ERROR_GENERAL;
731                 drive->failed_pc = NULL;
732         }
733         drive->pc_callback(drive, 0);
734         return ide_stopped;
735 }
736
737 static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
738                                    struct ide_atapi_pc *pc, struct request *rq,
739                                    u8 opcode)
740 {
741         struct idetape_bh *bh = (struct idetape_bh *)rq->special;
742         unsigned int length = rq->current_nr_sectors;
743
744         ide_init_pc(pc);
745         put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
746         pc->c[1] = 1;
747         pc->bh = bh;
748         pc->buf = NULL;
749         pc->buf_size = length * tape->blk_size;
750         pc->req_xfer = pc->buf_size;
751         if (pc->req_xfer == tape->buffer_size)
752                 pc->flags |= PC_FLAG_DMA_OK;
753
754         if (opcode == READ_6) {
755                 pc->c[0] = READ_6;
756                 atomic_set(&bh->b_count, 0);
757         } else if (opcode == WRITE_6) {
758                 pc->c[0] = WRITE_6;
759                 pc->flags |= PC_FLAG_WRITING;
760                 pc->b_data = bh->b_data;
761                 pc->b_count = atomic_read(&bh->b_count);
762         }
763
764         memcpy(rq->cmd, pc->c, 12);
765 }
766
767 static ide_startstop_t idetape_do_request(ide_drive_t *drive,
768                                           struct request *rq, sector_t block)
769 {
770         ide_hwif_t *hwif = drive->hwif;
771         idetape_tape_t *tape = drive->driver_data;
772         struct ide_atapi_pc *pc = NULL;
773         struct request *postponed_rq = tape->postponed_rq;
774         u8 stat;
775
776         debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
777                         " current_nr_sectors: %u\n",
778                         (unsigned long long)rq->sector, rq->nr_sectors,
779                         rq->current_nr_sectors);
780
781         if (!blk_special_request(rq)) {
782                 /* We do not support buffer cache originated requests. */
783                 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
784                         "request queue (%d)\n", drive->name, rq->cmd_type);
785                 ide_end_request(drive, 0, 0);
786                 return ide_stopped;
787         }
788
789         /* Retry a failed packet command */
790         if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
791                 pc = drive->failed_pc;
792                 goto out;
793         }
794
795         if (postponed_rq != NULL)
796                 if (rq != postponed_rq) {
797                         printk(KERN_ERR "ide-tape: ide-tape.c bug - "
798                                         "Two DSC requests were queued\n");
799                         rq->errors = IDE_DRV_ERROR_GENERAL;
800                         drive->failed_pc = NULL;
801                         ide_complete_rq(drive, 0);
802                         return ide_stopped;
803                 }
804
805         tape->postponed_rq = NULL;
806
807         /*
808          * If the tape is still busy, postpone our request and service
809          * the other device meanwhile.
810          */
811         stat = hwif->tp_ops->read_status(hwif);
812
813         if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
814             (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
815                 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
816
817         if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
818                 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
819                 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
820         }
821
822         if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
823             (stat & ATA_DSC) == 0) {
824                 if (postponed_rq == NULL) {
825                         tape->dsc_polling_start = jiffies;
826                         tape->dsc_poll_freq = tape->best_dsc_rw_freq;
827                         tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
828                 } else if (time_after(jiffies, tape->dsc_timeout)) {
829                         printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
830                                 tape->name);
831                         if (rq->cmd[13] & REQ_IDETAPE_PC2) {
832                                 idetape_media_access_finished(drive);
833                                 return ide_stopped;
834                         } else {
835                                 return ide_do_reset(drive);
836                         }
837                 } else if (time_after(jiffies,
838                                         tape->dsc_polling_start +
839                                         IDETAPE_DSC_MA_THRESHOLD))
840                         tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
841                 idetape_postpone_request(drive);
842                 return ide_stopped;
843         }
844         if (rq->cmd[13] & REQ_IDETAPE_READ) {
845                 pc = &tape->queued_pc;
846                 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
847                 goto out;
848         }
849         if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
850                 pc = &tape->queued_pc;
851                 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
852                 goto out;
853         }
854         if (rq->cmd[13] & REQ_IDETAPE_PC1) {
855                 pc = (struct ide_atapi_pc *) rq->buffer;
856                 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
857                 rq->cmd[13] |= REQ_IDETAPE_PC2;
858                 goto out;
859         }
860         if (rq->cmd[13] & REQ_IDETAPE_PC2) {
861                 idetape_media_access_finished(drive);
862                 return ide_stopped;
863         }
864         BUG();
865
866 out:
867         return idetape_issue_pc(drive, pc);
868 }
869
870 /*
871  * The function below uses __get_free_pages to allocate a data buffer of size
872  * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
873  * much as possible.
874  *
875  * It returns a pointer to the newly allocated buffer, or NULL in case of
876  * failure.
877  */
878 static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
879                                                   int full, int clear)
880 {
881         struct idetape_bh *prev_bh, *bh, *merge_bh;
882         int pages = tape->pages_per_buffer;
883         unsigned int order, b_allocd;
884         char *b_data = NULL;
885
886         merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
887         bh = merge_bh;
888         if (bh == NULL)
889                 goto abort;
890
891         order = fls(pages) - 1;
892         bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
893         if (!bh->b_data)
894                 goto abort;
895         b_allocd = (1 << order) * PAGE_SIZE;
896         pages &= (order-1);
897
898         if (clear)
899                 memset(bh->b_data, 0, b_allocd);
900         bh->b_reqnext = NULL;
901         bh->b_size = b_allocd;
902         atomic_set(&bh->b_count, full ? bh->b_size : 0);
903
904         while (pages) {
905                 order = fls(pages) - 1;
906                 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
907                 if (!b_data)
908                         goto abort;
909                 b_allocd = (1 << order) * PAGE_SIZE;
910
911                 if (clear)
912                         memset(b_data, 0, b_allocd);
913
914                 /* newly allocated page frames below buffer header or ...*/
915                 if (bh->b_data == b_data + b_allocd) {
916                         bh->b_size += b_allocd;
917                         bh->b_data -= b_allocd;
918                         if (full)
919                                 atomic_add(b_allocd, &bh->b_count);
920                         continue;
921                 }
922                 /* they are above the header */
923                 if (b_data == bh->b_data + bh->b_size) {
924                         bh->b_size += b_allocd;
925                         if (full)
926                                 atomic_add(b_allocd, &bh->b_count);
927                         continue;
928                 }
929                 prev_bh = bh;
930                 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
931                 if (!bh) {
932                         free_pages((unsigned long) b_data, order);
933                         goto abort;
934                 }
935                 bh->b_reqnext = NULL;
936                 bh->b_data = b_data;
937                 bh->b_size = b_allocd;
938                 atomic_set(&bh->b_count, full ? bh->b_size : 0);
939                 prev_bh->b_reqnext = bh;
940
941                 pages &= (order-1);
942         }
943
944         bh->b_size -= tape->excess_bh_size;
945         if (full)
946                 atomic_sub(tape->excess_bh_size, &bh->b_count);
947         return merge_bh;
948 abort:
949         ide_tape_kfree_buffer(tape);
950         return NULL;
951 }
952
953 static int idetape_copy_stage_from_user(idetape_tape_t *tape,
954                                         const char __user *buf, int n)
955 {
956         struct idetape_bh *bh = tape->bh;
957         int count;
958         int ret = 0;
959
960         while (n) {
961                 if (bh == NULL) {
962                         printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
963                                         __func__);
964                         return 1;
965                 }
966                 count = min((unsigned int)
967                                 (bh->b_size - atomic_read(&bh->b_count)),
968                                 (unsigned int)n);
969                 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
970                                 count))
971                         ret = 1;
972                 n -= count;
973                 atomic_add(count, &bh->b_count);
974                 buf += count;
975                 if (atomic_read(&bh->b_count) == bh->b_size) {
976                         bh = bh->b_reqnext;
977                         if (bh)
978                                 atomic_set(&bh->b_count, 0);
979                 }
980         }
981         tape->bh = bh;
982         return ret;
983 }
984
985 static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
986                                       int n)
987 {
988         struct idetape_bh *bh = tape->bh;
989         int count;
990         int ret = 0;
991
992         while (n) {
993                 if (bh == NULL) {
994                         printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
995                                         __func__);
996                         return 1;
997                 }
998                 count = min(tape->b_count, n);
999                 if  (copy_to_user(buf, tape->b_data, count))
1000                         ret = 1;
1001                 n -= count;
1002                 tape->b_data += count;
1003                 tape->b_count -= count;
1004                 buf += count;
1005                 if (!tape->b_count) {
1006                         bh = bh->b_reqnext;
1007                         tape->bh = bh;
1008                         if (bh) {
1009                                 tape->b_data = bh->b_data;
1010                                 tape->b_count = atomic_read(&bh->b_count);
1011                         }
1012                 }
1013         }
1014         return ret;
1015 }
1016
1017 static void idetape_init_merge_buffer(idetape_tape_t *tape)
1018 {
1019         struct idetape_bh *bh = tape->merge_bh;
1020         tape->bh = tape->merge_bh;
1021
1022         if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
1023                 atomic_set(&bh->b_count, 0);
1024         else {
1025                 tape->b_data = bh->b_data;
1026                 tape->b_count = atomic_read(&bh->b_count);
1027         }
1028 }
1029
1030 /*
1031  * Write a filemark if write_filemark=1. Flush the device buffers without
1032  * writing a filemark otherwise.
1033  */
1034 static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
1035                 struct ide_atapi_pc *pc, int write_filemark)
1036 {
1037         ide_init_pc(pc);
1038         pc->c[0] = WRITE_FILEMARKS;
1039         pc->c[4] = write_filemark;
1040         pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1041 }
1042
1043 static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1044 {
1045         idetape_tape_t *tape = drive->driver_data;
1046         struct gendisk *disk = tape->disk;
1047         int load_attempted = 0;
1048
1049         /* Wait for the tape to become ready */
1050         set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
1051         timeout += jiffies;
1052         while (time_before(jiffies, timeout)) {
1053                 if (ide_do_test_unit_ready(drive, disk) == 0)
1054                         return 0;
1055                 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
1056                     || (tape->asc == 0x3A)) {
1057                         /* no media */
1058                         if (load_attempted)
1059                                 return -ENOMEDIUM;
1060                         ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
1061                         load_attempted = 1;
1062                 /* not about to be ready */
1063                 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1064                              (tape->ascq == 1 || tape->ascq == 8)))
1065                         return -EIO;
1066                 msleep(100);
1067         }
1068         return -EIO;
1069 }
1070
1071 static int idetape_flush_tape_buffers(ide_drive_t *drive)
1072 {
1073         struct ide_tape_obj *tape = drive->driver_data;
1074         struct ide_atapi_pc pc;
1075         int rc;
1076
1077         idetape_create_write_filemark_cmd(drive, &pc, 0);
1078         rc = ide_queue_pc_tail(drive, tape->disk, &pc);
1079         if (rc)
1080                 return rc;
1081         idetape_wait_ready(drive, 60 * 5 * HZ);
1082         return 0;
1083 }
1084
1085 static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
1086 {
1087         ide_init_pc(pc);
1088         pc->c[0] = READ_POSITION;
1089         pc->req_xfer = 20;
1090 }
1091
1092 static int idetape_read_position(ide_drive_t *drive)
1093 {
1094         idetape_tape_t *tape = drive->driver_data;
1095         struct ide_atapi_pc pc;
1096         int position;
1097
1098         debug_log(DBG_PROCS, "Enter %s\n", __func__);
1099
1100         idetape_create_read_position_cmd(&pc);
1101         if (ide_queue_pc_tail(drive, tape->disk, &pc))
1102                 return -1;
1103         position = tape->first_frame;
1104         return position;
1105 }
1106
1107 static void idetape_create_locate_cmd(ide_drive_t *drive,
1108                 struct ide_atapi_pc *pc,
1109                 unsigned int block, u8 partition, int skip)
1110 {
1111         ide_init_pc(pc);
1112         pc->c[0] = POSITION_TO_ELEMENT;
1113         pc->c[1] = 2;
1114         put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
1115         pc->c[8] = partition;
1116         pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1117 }
1118
1119 static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
1120 {
1121         idetape_tape_t *tape = drive->driver_data;
1122
1123         if (tape->chrdev_dir != IDETAPE_DIR_READ)
1124                 return;
1125
1126         clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
1127         tape->merge_bh_size = 0;
1128         if (tape->merge_bh != NULL) {
1129                 ide_tape_kfree_buffer(tape);
1130                 tape->merge_bh = NULL;
1131         }
1132
1133         tape->chrdev_dir = IDETAPE_DIR_NONE;
1134 }
1135
1136 /*
1137  * Position the tape to the requested block using the LOCATE packet command.
1138  * A READ POSITION command is then issued to check where we are positioned. Like
1139  * all higher level operations, we queue the commands at the tail of the request
1140  * queue and wait for their completion.
1141  */
1142 static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1143                 u8 partition, int skip)
1144 {
1145         idetape_tape_t *tape = drive->driver_data;
1146         struct gendisk *disk = tape->disk;
1147         int retval;
1148         struct ide_atapi_pc pc;
1149
1150         if (tape->chrdev_dir == IDETAPE_DIR_READ)
1151                 __ide_tape_discard_merge_buffer(drive);
1152         idetape_wait_ready(drive, 60 * 5 * HZ);
1153         idetape_create_locate_cmd(drive, &pc, block, partition, skip);
1154         retval = ide_queue_pc_tail(drive, disk, &pc);
1155         if (retval)
1156                 return (retval);
1157
1158         idetape_create_read_position_cmd(&pc);
1159         return ide_queue_pc_tail(drive, disk, &pc);
1160 }
1161
1162 static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
1163                                           int restore_position)
1164 {
1165         idetape_tape_t *tape = drive->driver_data;
1166         int seek, position;
1167
1168         __ide_tape_discard_merge_buffer(drive);
1169         if (restore_position) {
1170                 position = idetape_read_position(drive);
1171                 seek = position > 0 ? position : 0;
1172                 if (idetape_position_tape(drive, seek, 0, 0)) {
1173                         printk(KERN_INFO "ide-tape: %s: position_tape failed in"
1174                                          " %s\n", tape->name, __func__);
1175                         return;
1176                 }
1177         }
1178 }
1179
1180 /*
1181  * Generate a read/write request for the block device interface and wait for it
1182  * to be serviced.
1183  */
1184 static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1185                                  struct idetape_bh *bh)
1186 {
1187         idetape_tape_t *tape = drive->driver_data;
1188         struct request *rq;
1189         int ret, errors;
1190
1191         debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1192
1193         rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1194         rq->cmd_type = REQ_TYPE_SPECIAL;
1195         rq->cmd[13] = cmd;
1196         rq->rq_disk = tape->disk;
1197         rq->special = (void *)bh;
1198         rq->sector = tape->first_frame;
1199         rq->nr_sectors = blocks;
1200         rq->current_nr_sectors = blocks;
1201         blk_execute_rq(drive->queue, tape->disk, rq, 0);
1202
1203         errors = rq->errors;
1204         ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1205         blk_put_request(rq);
1206
1207         if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1208                 return 0;
1209
1210         if (tape->merge_bh)
1211                 idetape_init_merge_buffer(tape);
1212         if (errors == IDE_DRV_ERROR_GENERAL)
1213                 return -EIO;
1214         return ret;
1215 }
1216
1217 static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
1218 {
1219         ide_init_pc(pc);
1220         pc->c[0] = INQUIRY;
1221         pc->c[4] = 254;
1222         pc->req_xfer = 254;
1223 }
1224
1225 static void idetape_create_rewind_cmd(ide_drive_t *drive,
1226                 struct ide_atapi_pc *pc)
1227 {
1228         ide_init_pc(pc);
1229         pc->c[0] = REZERO_UNIT;
1230         pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1231 }
1232
1233 static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
1234 {
1235         ide_init_pc(pc);
1236         pc->c[0] = ERASE;
1237         pc->c[1] = 1;
1238         pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1239 }
1240
1241 static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
1242 {
1243         ide_init_pc(pc);
1244         pc->c[0] = SPACE;
1245         put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
1246         pc->c[1] = cmd;
1247         pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1248 }
1249
1250 /* Queue up a character device originated write request. */
1251 static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
1252 {
1253         idetape_tape_t *tape = drive->driver_data;
1254
1255         debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1256
1257         return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1258                                      blocks, tape->merge_bh);
1259 }
1260
1261 static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
1262 {
1263         idetape_tape_t *tape = drive->driver_data;
1264         int blocks, min;
1265         struct idetape_bh *bh;
1266
1267         if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1268                 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
1269                                 " but we are not writing.\n");
1270                 return;
1271         }
1272         if (tape->merge_bh_size > tape->buffer_size) {
1273                 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
1274                 tape->merge_bh_size = tape->buffer_size;
1275         }
1276         if (tape->merge_bh_size) {
1277                 blocks = tape->merge_bh_size / tape->blk_size;
1278                 if (tape->merge_bh_size % tape->blk_size) {
1279                         unsigned int i;
1280
1281                         blocks++;
1282                         i = tape->blk_size - tape->merge_bh_size %
1283                                 tape->blk_size;
1284                         bh = tape->bh->b_reqnext;
1285                         while (bh) {
1286                                 atomic_set(&bh->b_count, 0);
1287                                 bh = bh->b_reqnext;
1288                         }
1289                         bh = tape->bh;
1290                         while (i) {
1291                                 if (bh == NULL) {
1292                                         printk(KERN_INFO "ide-tape: bug,"
1293                                                          " bh NULL\n");
1294                                         break;
1295                                 }
1296                                 min = min(i, (unsigned int)(bh->b_size -
1297                                                 atomic_read(&bh->b_count)));
1298                                 memset(bh->b_data + atomic_read(&bh->b_count),
1299                                                 0, min);
1300                                 atomic_add(min, &bh->b_count);
1301                                 i -= min;
1302                                 bh = bh->b_reqnext;
1303                         }
1304                 }
1305                 (void) idetape_add_chrdev_write_request(drive, blocks);
1306                 tape->merge_bh_size = 0;
1307         }
1308         if (tape->merge_bh != NULL) {
1309                 ide_tape_kfree_buffer(tape);
1310                 tape->merge_bh = NULL;
1311         }
1312         tape->chrdev_dir = IDETAPE_DIR_NONE;
1313 }
1314
1315 static int idetape_init_read(ide_drive_t *drive)
1316 {
1317         idetape_tape_t *tape = drive->driver_data;
1318         int bytes_read;
1319
1320         /* Initialize read operation */
1321         if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1322                 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
1323                         ide_tape_flush_merge_buffer(drive);
1324                         idetape_flush_tape_buffers(drive);
1325                 }
1326                 if (tape->merge_bh || tape->merge_bh_size) {
1327                         printk(KERN_ERR "ide-tape: merge_bh_size should be"
1328                                          " 0 now\n");
1329                         tape->merge_bh_size = 0;
1330                 }
1331                 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1332                 if (!tape->merge_bh)
1333                         return -ENOMEM;
1334                 tape->chrdev_dir = IDETAPE_DIR_READ;
1335
1336                 /*
1337                  * Issue a read 0 command to ensure that DSC handshake is
1338                  * switched from completion mode to buffer available mode.
1339                  * No point in issuing this if DSC overlap isn't supported, some
1340                  * drives (Seagate STT3401A) will return an error.
1341                  */
1342                 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1343                         bytes_read = idetape_queue_rw_tail(drive,
1344                                                         REQ_IDETAPE_READ, 0,
1345                                                         tape->merge_bh);
1346                         if (bytes_read < 0) {
1347                                 ide_tape_kfree_buffer(tape);
1348                                 tape->merge_bh = NULL;
1349                                 tape->chrdev_dir = IDETAPE_DIR_NONE;
1350                                 return bytes_read;
1351                         }
1352                 }
1353         }
1354
1355         return 0;
1356 }
1357
1358 /* called from idetape_chrdev_read() to service a chrdev read request. */
1359 static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
1360 {
1361         idetape_tape_t *tape = drive->driver_data;
1362
1363         debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
1364
1365         /* If we are at a filemark, return a read length of 0 */
1366         if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1367                 return 0;
1368
1369         idetape_init_read(drive);
1370
1371         return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
1372                                      tape->merge_bh);
1373 }
1374
1375 static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
1376 {
1377         idetape_tape_t *tape = drive->driver_data;
1378         struct idetape_bh *bh;
1379         int blocks;
1380
1381         while (bcount) {
1382                 unsigned int count;
1383
1384                 bh = tape->merge_bh;
1385                 count = min(tape->buffer_size, bcount);
1386                 bcount -= count;
1387                 blocks = count / tape->blk_size;
1388                 while (count) {
1389                         atomic_set(&bh->b_count,
1390                                    min(count, (unsigned int)bh->b_size));
1391                         memset(bh->b_data, 0, atomic_read(&bh->b_count));
1392                         count -= atomic_read(&bh->b_count);
1393                         bh = bh->b_reqnext;
1394                 }
1395                 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
1396                                       tape->merge_bh);
1397         }
1398 }
1399
1400 /*
1401  * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1402  * currently support only one partition.
1403  */
1404 static int idetape_rewind_tape(ide_drive_t *drive)
1405 {
1406         struct ide_tape_obj *tape = drive->driver_data;
1407         struct gendisk *disk = tape->disk;
1408         int retval;
1409         struct ide_atapi_pc pc;
1410
1411         debug_log(DBG_SENSE, "Enter %s\n", __func__);
1412
1413         idetape_create_rewind_cmd(drive, &pc);
1414         retval = ide_queue_pc_tail(drive, disk, &pc);
1415         if (retval)
1416                 return retval;
1417
1418         idetape_create_read_position_cmd(&pc);
1419         retval = ide_queue_pc_tail(drive, disk, &pc);
1420         if (retval)
1421                 return retval;
1422         return 0;
1423 }
1424
1425 /* mtio.h compatible commands should be issued to the chrdev interface. */
1426 static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1427                                 unsigned long arg)
1428 {
1429         idetape_tape_t *tape = drive->driver_data;
1430         void __user *argp = (void __user *)arg;
1431
1432         struct idetape_config {
1433                 int dsc_rw_frequency;
1434                 int dsc_media_access_frequency;
1435                 int nr_stages;
1436         } config;
1437
1438         debug_log(DBG_PROCS, "Enter %s\n", __func__);
1439
1440         switch (cmd) {
1441         case 0x0340:
1442                 if (copy_from_user(&config, argp, sizeof(config)))
1443                         return -EFAULT;
1444                 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
1445                 break;
1446         case 0x0350:
1447                 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
1448                 config.nr_stages = 1;
1449                 if (copy_to_user(argp, &config, sizeof(config)))
1450                         return -EFAULT;
1451                 break;
1452         default:
1453                 return -EIO;
1454         }
1455         return 0;
1456 }
1457
1458 static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1459                                         int mt_count)
1460 {
1461         idetape_tape_t *tape = drive->driver_data;
1462         struct gendisk *disk = tape->disk;
1463         struct ide_atapi_pc pc;
1464         int retval, count = 0;
1465         int sprev = !!(tape->caps[4] & 0x20);
1466
1467         if (mt_count == 0)
1468                 return 0;
1469         if (MTBSF == mt_op || MTBSFM == mt_op) {
1470                 if (!sprev)
1471                         return -EIO;
1472                 mt_count = -mt_count;
1473         }
1474
1475         if (tape->chrdev_dir == IDETAPE_DIR_READ) {
1476                 tape->merge_bh_size = 0;
1477                 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1478                         ++count;
1479                 ide_tape_discard_merge_buffer(drive, 0);
1480         }
1481
1482         switch (mt_op) {
1483         case MTFSF:
1484         case MTBSF:
1485                 idetape_create_space_cmd(&pc, mt_count - count,
1486                                          IDETAPE_SPACE_OVER_FILEMARK);
1487                 return ide_queue_pc_tail(drive, disk, &pc);
1488         case MTFSFM:
1489         case MTBSFM:
1490                 if (!sprev)
1491                         return -EIO;
1492                 retval = idetape_space_over_filemarks(drive, MTFSF,
1493                                                       mt_count - count);
1494                 if (retval)
1495                         return retval;
1496                 count = (MTBSFM == mt_op ? 1 : -1);
1497                 return idetape_space_over_filemarks(drive, MTFSF, count);
1498         default:
1499                 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1500                                 mt_op);
1501                 return -EIO;
1502         }
1503 }
1504
1505 /*
1506  * Our character device read / write functions.
1507  *
1508  * The tape is optimized to maximize throughput when it is transferring an
1509  * integral number of the "continuous transfer limit", which is a parameter of
1510  * the specific tape (26kB on my particular tape, 32kB for Onstream).
1511  *
1512  * As of version 1.3 of the driver, the character device provides an abstract
1513  * continuous view of the media - any mix of block sizes (even 1 byte) on the
1514  * same backup/restore procedure is supported. The driver will internally
1515  * convert the requests to the recommended transfer unit, so that an unmatch
1516  * between the user's block size to the recommended size will only result in a
1517  * (slightly) increased driver overhead, but will no longer hit performance.
1518  * This is not applicable to Onstream.
1519  */
1520 static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1521                                    size_t count, loff_t *ppos)
1522 {
1523         struct ide_tape_obj *tape = file->private_data;
1524         ide_drive_t *drive = tape->drive;
1525         ssize_t bytes_read, temp, actually_read = 0, rc;
1526         ssize_t ret = 0;
1527         u16 ctl = *(u16 *)&tape->caps[12];
1528
1529         debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1530
1531         if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1532                 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
1533                         if (count > tape->blk_size &&
1534                             (count % tape->blk_size) == 0)
1535                                 tape->user_bs_factor = count / tape->blk_size;
1536         }
1537         rc = idetape_init_read(drive);
1538         if (rc < 0)
1539                 return rc;
1540         if (count == 0)
1541                 return (0);
1542         if (tape->merge_bh_size) {
1543                 actually_read = min((unsigned int)(tape->merge_bh_size),
1544                                     (unsigned int)count);
1545                 if (idetape_copy_stage_to_user(tape, buf, actually_read))
1546                         ret = -EFAULT;
1547                 buf += actually_read;
1548                 tape->merge_bh_size -= actually_read;
1549                 count -= actually_read;
1550         }
1551         while (count >= tape->buffer_size) {
1552                 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
1553                 if (bytes_read <= 0)
1554                         goto finish;
1555                 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
1556                         ret = -EFAULT;
1557                 buf += bytes_read;
1558                 count -= bytes_read;
1559                 actually_read += bytes_read;
1560         }
1561         if (count) {
1562                 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
1563                 if (bytes_read <= 0)
1564                         goto finish;
1565                 temp = min((unsigned long)count, (unsigned long)bytes_read);
1566                 if (idetape_copy_stage_to_user(tape, buf, temp))
1567                         ret = -EFAULT;
1568                 actually_read += temp;
1569                 tape->merge_bh_size = bytes_read-temp;
1570         }
1571 finish:
1572         if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
1573                 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1574
1575                 idetape_space_over_filemarks(drive, MTFSF, 1);
1576                 return 0;
1577         }
1578
1579         return ret ? ret : actually_read;
1580 }
1581
1582 static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
1583                                      size_t count, loff_t *ppos)
1584 {
1585         struct ide_tape_obj *tape = file->private_data;
1586         ide_drive_t *drive = tape->drive;
1587         ssize_t actually_written = 0;
1588         ssize_t ret = 0;
1589         u16 ctl = *(u16 *)&tape->caps[12];
1590
1591         /* The drive is write protected. */
1592         if (tape->write_prot)
1593                 return -EACCES;
1594
1595         debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1596
1597         /* Initialize write operation */
1598         if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1599                 if (tape->chrdev_dir == IDETAPE_DIR_READ)
1600                         ide_tape_discard_merge_buffer(drive, 1);
1601                 if (tape->merge_bh || tape->merge_bh_size) {
1602                         printk(KERN_ERR "ide-tape: merge_bh_size "
1603                                 "should be 0 now\n");
1604                         tape->merge_bh_size = 0;
1605                 }
1606                 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1607                 if (!tape->merge_bh)
1608                         return -ENOMEM;
1609                 tape->chrdev_dir = IDETAPE_DIR_WRITE;
1610                 idetape_init_merge_buffer(tape);
1611
1612                 /*
1613                  * Issue a write 0 command to ensure that DSC handshake is
1614                  * switched from completion mode to buffer available mode. No
1615                  * point in issuing this if DSC overlap isn't supported, some
1616                  * drives (Seagate STT3401A) will return an error.
1617                  */
1618                 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1619                         ssize_t retval = idetape_queue_rw_tail(drive,
1620                                                         REQ_IDETAPE_WRITE, 0,
1621                                                         tape->merge_bh);
1622                         if (retval < 0) {
1623                                 ide_tape_kfree_buffer(tape);
1624                                 tape->merge_bh = NULL;
1625                                 tape->chrdev_dir = IDETAPE_DIR_NONE;
1626                                 return retval;
1627                         }
1628                 }
1629         }
1630         if (count == 0)
1631                 return (0);
1632         if (tape->merge_bh_size) {
1633                 if (tape->merge_bh_size >= tape->buffer_size) {
1634                         printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
1635                         tape->merge_bh_size = 0;
1636                 }
1637                 actually_written = min((unsigned int)
1638                                 (tape->buffer_size - tape->merge_bh_size),
1639                                 (unsigned int)count);
1640                 if (idetape_copy_stage_from_user(tape, buf, actually_written))
1641                                 ret = -EFAULT;
1642                 buf += actually_written;
1643                 tape->merge_bh_size += actually_written;
1644                 count -= actually_written;
1645
1646                 if (tape->merge_bh_size == tape->buffer_size) {
1647                         ssize_t retval;
1648                         tape->merge_bh_size = 0;
1649                         retval = idetape_add_chrdev_write_request(drive, ctl);
1650                         if (retval <= 0)
1651                                 return (retval);
1652                 }
1653         }
1654         while (count >= tape->buffer_size) {
1655                 ssize_t retval;
1656                 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
1657                         ret = -EFAULT;
1658                 buf += tape->buffer_size;
1659                 count -= tape->buffer_size;
1660                 retval = idetape_add_chrdev_write_request(drive, ctl);
1661                 actually_written += tape->buffer_size;
1662                 if (retval <= 0)
1663                         return (retval);
1664         }
1665         if (count) {
1666                 actually_written += count;
1667                 if (idetape_copy_stage_from_user(tape, buf, count))
1668                         ret = -EFAULT;
1669                 tape->merge_bh_size += count;
1670         }
1671         return ret ? ret : actually_written;
1672 }
1673
1674 static int idetape_write_filemark(ide_drive_t *drive)
1675 {
1676         struct ide_tape_obj *tape = drive->driver_data;
1677         struct ide_atapi_pc pc;
1678
1679         /* Write a filemark */
1680         idetape_create_write_filemark_cmd(drive, &pc, 1);
1681         if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
1682                 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1683                 return -EIO;
1684         }
1685         return 0;
1686 }
1687
1688 /*
1689  * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1690  * requested.
1691  *
1692  * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1693  * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
1694  * usually not supported.
1695  *
1696  * The following commands are currently not supported:
1697  *
1698  * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1699  * MT_ST_WRITE_THRESHOLD.
1700  */
1701 static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
1702 {
1703         idetape_tape_t *tape = drive->driver_data;
1704         struct gendisk *disk = tape->disk;
1705         struct ide_atapi_pc pc;
1706         int i, retval;
1707
1708         debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1709                         mt_op, mt_count);
1710
1711         switch (mt_op) {
1712         case MTFSF:
1713         case MTFSFM:
1714         case MTBSF:
1715         case MTBSFM:
1716                 if (!mt_count)
1717                         return 0;
1718                 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1719         default:
1720                 break;
1721         }
1722
1723         switch (mt_op) {
1724         case MTWEOF:
1725                 if (tape->write_prot)
1726                         return -EACCES;
1727                 ide_tape_discard_merge_buffer(drive, 1);
1728                 for (i = 0; i < mt_count; i++) {
1729                         retval = idetape_write_filemark(drive);
1730                         if (retval)
1731                                 return retval;
1732                 }
1733                 return 0;
1734         case MTREW:
1735                 ide_tape_discard_merge_buffer(drive, 0);
1736                 if (idetape_rewind_tape(drive))
1737                         return -EIO;
1738                 return 0;
1739         case MTLOAD:
1740                 ide_tape_discard_merge_buffer(drive, 0);
1741                 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
1742         case MTUNLOAD:
1743         case MTOFFL:
1744                 /*
1745                  * If door is locked, attempt to unlock before
1746                  * attempting to eject.
1747                  */
1748                 if (tape->door_locked) {
1749                         if (!ide_set_media_lock(drive, disk, 0))
1750                                 tape->door_locked = DOOR_UNLOCKED;
1751                 }
1752                 ide_tape_discard_merge_buffer(drive, 0);
1753                 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
1754                 if (!retval)
1755                         clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
1756                 return retval;
1757         case MTNOP:
1758                 ide_tape_discard_merge_buffer(drive, 0);
1759                 return idetape_flush_tape_buffers(drive);
1760         case MTRETEN:
1761                 ide_tape_discard_merge_buffer(drive, 0);
1762                 return ide_do_start_stop(drive, disk,
1763                         IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
1764         case MTEOM:
1765                 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
1766                 return ide_queue_pc_tail(drive, disk, &pc);
1767         case MTERASE:
1768                 (void)idetape_rewind_tape(drive);
1769                 idetape_create_erase_cmd(&pc);
1770                 return ide_queue_pc_tail(drive, disk, &pc);
1771         case MTSETBLK:
1772                 if (mt_count) {
1773                         if (mt_count < tape->blk_size ||
1774                             mt_count % tape->blk_size)
1775                                 return -EIO;
1776                         tape->user_bs_factor = mt_count / tape->blk_size;
1777                         clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
1778                 } else
1779                         set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
1780                 return 0;
1781         case MTSEEK:
1782                 ide_tape_discard_merge_buffer(drive, 0);
1783                 return idetape_position_tape(drive,
1784                         mt_count * tape->user_bs_factor, tape->partition, 0);
1785         case MTSETPART:
1786                 ide_tape_discard_merge_buffer(drive, 0);
1787                 return idetape_position_tape(drive, 0, mt_count, 0);
1788         case MTFSR:
1789         case MTBSR:
1790         case MTLOCK:
1791                 retval = ide_set_media_lock(drive, disk, 1);
1792                 if (retval)
1793                         return retval;
1794                 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1795                 return 0;
1796         case MTUNLOCK:
1797                 retval = ide_set_media_lock(drive, disk, 0);
1798                 if (retval)
1799                         return retval;
1800                 tape->door_locked = DOOR_UNLOCKED;
1801                 return 0;
1802         default:
1803                 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1804                                 mt_op);
1805                 return -EIO;
1806         }
1807 }
1808
1809 /*
1810  * Our character device ioctls. General mtio.h magnetic io commands are
1811  * supported here, and not in the corresponding block interface. Our own
1812  * ide-tape ioctls are supported on both interfaces.
1813  */
1814 static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1815                                 unsigned int cmd, unsigned long arg)
1816 {
1817         struct ide_tape_obj *tape = file->private_data;
1818         ide_drive_t *drive = tape->drive;
1819         struct mtop mtop;
1820         struct mtget mtget;
1821         struct mtpos mtpos;
1822         int block_offset = 0, position = tape->first_frame;
1823         void __user *argp = (void __user *)arg;
1824
1825         debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
1826
1827         if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
1828                 ide_tape_flush_merge_buffer(drive);
1829                 idetape_flush_tape_buffers(drive);
1830         }
1831         if (cmd == MTIOCGET || cmd == MTIOCPOS) {
1832                 block_offset = tape->merge_bh_size /
1833                         (tape->blk_size * tape->user_bs_factor);
1834                 position = idetape_read_position(drive);
1835                 if (position < 0)
1836                         return -EIO;
1837         }
1838         switch (cmd) {
1839         case MTIOCTOP:
1840                 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1841                         return -EFAULT;
1842                 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1843         case MTIOCGET:
1844                 memset(&mtget, 0, sizeof(struct mtget));
1845                 mtget.mt_type = MT_ISSCSI2;
1846                 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1847                 mtget.mt_dsreg =
1848                         ((tape->blk_size * tape->user_bs_factor)
1849                          << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
1850
1851                 if (tape->drv_write_prot)
1852                         mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1853
1854                 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1855                         return -EFAULT;
1856                 return 0;
1857         case MTIOCPOS:
1858                 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1859                 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1860                         return -EFAULT;
1861                 return 0;
1862         default:
1863                 if (tape->chrdev_dir == IDETAPE_DIR_READ)
1864                         ide_tape_discard_merge_buffer(drive, 1);
1865                 return idetape_blkdev_ioctl(drive, cmd, arg);
1866         }
1867 }
1868
1869 /*
1870  * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1871  * block size with the reported value.
1872  */
1873 static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1874 {
1875         idetape_tape_t *tape = drive->driver_data;
1876         struct ide_atapi_pc pc;
1877
1878         idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
1879         if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
1880                 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
1881                 if (tape->blk_size == 0) {
1882                         printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1883                                             "block size, assuming 32k\n");
1884                         tape->blk_size = 32768;
1885                 }
1886                 return;
1887         }
1888         tape->blk_size = (pc.buf[4 + 5] << 16) +
1889                                 (pc.buf[4 + 6] << 8)  +
1890                                  pc.buf[4 + 7];
1891         tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
1892 }
1893
1894 static int idetape_chrdev_open(struct inode *inode, struct file *filp)
1895 {
1896         unsigned int minor = iminor(inode), i = minor & ~0xc0;
1897         ide_drive_t *drive;
1898         idetape_tape_t *tape;
1899         int retval;
1900
1901         if (i >= MAX_HWIFS * MAX_DRIVES)
1902                 return -ENXIO;
1903
1904         lock_kernel();
1905         tape = ide_tape_chrdev_get(i);
1906         if (!tape) {
1907                 unlock_kernel();
1908                 return -ENXIO;
1909         }
1910
1911         debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1912
1913         /*
1914          * We really want to do nonseekable_open(inode, filp); here, but some
1915          * versions of tar incorrectly call lseek on tapes and bail out if that
1916          * fails.  So we disallow pread() and pwrite(), but permit lseeks.
1917          */
1918         filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1919
1920         drive = tape->drive;
1921
1922         filp->private_data = tape;
1923
1924         if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
1925                 retval = -EBUSY;
1926                 goto out_put_tape;
1927         }
1928
1929         retval = idetape_wait_ready(drive, 60 * HZ);
1930         if (retval) {
1931                 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
1932                 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1933                 goto out_put_tape;
1934         }
1935
1936         idetape_read_position(drive);
1937         if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
1938                 (void)idetape_rewind_tape(drive);
1939
1940         /* Read block size and write protect status from drive. */
1941         ide_tape_get_bsize_from_bdesc(drive);
1942
1943         /* Set write protect flag if device is opened as read-only. */
1944         if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1945                 tape->write_prot = 1;
1946         else
1947                 tape->write_prot = tape->drv_write_prot;
1948
1949         /* Make sure drive isn't write protected if user wants to write. */
1950         if (tape->write_prot) {
1951                 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1952                     (filp->f_flags & O_ACCMODE) == O_RDWR) {
1953                         clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
1954                         retval = -EROFS;
1955                         goto out_put_tape;
1956                 }
1957         }
1958
1959         /* Lock the tape drive door so user can't eject. */
1960         if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
1961                 if (!ide_set_media_lock(drive, tape->disk, 1)) {
1962                         if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1963                                 tape->door_locked = DOOR_LOCKED;
1964                 }
1965         }
1966         unlock_kernel();
1967         return 0;
1968
1969 out_put_tape:
1970         ide_tape_put(tape);
1971         unlock_kernel();
1972         return retval;
1973 }
1974
1975 static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
1976 {
1977         idetape_tape_t *tape = drive->driver_data;
1978
1979         ide_tape_flush_merge_buffer(drive);
1980         tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1981         if (tape->merge_bh != NULL) {
1982                 idetape_pad_zeros(drive, tape->blk_size *
1983                                 (tape->user_bs_factor - 1));
1984                 ide_tape_kfree_buffer(tape);
1985                 tape->merge_bh = NULL;
1986         }
1987         idetape_write_filemark(drive);
1988         idetape_flush_tape_buffers(drive);
1989         idetape_flush_tape_buffers(drive);
1990 }
1991
1992 static int idetape_chrdev_release(struct inode *inode, struct file *filp)
1993 {
1994         struct ide_tape_obj *tape = filp->private_data;
1995         ide_drive_t *drive = tape->drive;
1996         unsigned int minor = iminor(inode);
1997
1998         lock_kernel();
1999         tape = drive->driver_data;
2000
2001         debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2002
2003         if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
2004                 idetape_write_release(drive, minor);
2005         if (tape->chrdev_dir == IDETAPE_DIR_READ) {
2006                 if (minor < 128)
2007                         ide_tape_discard_merge_buffer(drive, 1);
2008         }
2009
2010         if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
2011                 (void) idetape_rewind_tape(drive);
2012         if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
2013                 if (tape->door_locked == DOOR_LOCKED) {
2014                         if (!ide_set_media_lock(drive, tape->disk, 0))
2015                                 tape->door_locked = DOOR_UNLOCKED;
2016                 }
2017         }
2018         clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
2019         ide_tape_put(tape);
2020         unlock_kernel();
2021         return 0;
2022 }
2023
2024 static void idetape_get_inquiry_results(ide_drive_t *drive)
2025 {
2026         idetape_tape_t *tape = drive->driver_data;
2027         struct ide_atapi_pc pc;
2028         char fw_rev[4], vendor_id[8], product_id[16];
2029
2030         idetape_create_inquiry_cmd(&pc);
2031         if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
2032                 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2033                                 tape->name);
2034                 return;
2035         }
2036         memcpy(vendor_id, &pc.buf[8], 8);
2037         memcpy(product_id, &pc.buf[16], 16);
2038         memcpy(fw_rev, &pc.buf[32], 4);
2039
2040         ide_fixstring(vendor_id, 8, 0);
2041         ide_fixstring(product_id, 16, 0);
2042         ide_fixstring(fw_rev, 4, 0);
2043
2044         printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
2045                         drive->name, tape->name, vendor_id, product_id, fw_rev);
2046 }
2047
2048 /*
2049  * Ask the tape about its various parameters. In particular, we will adjust our
2050  * data transfer buffer size to the recommended value as returned by the tape.
2051  */
2052 static void idetape_get_mode_sense_results(ide_drive_t *drive)
2053 {
2054         idetape_tape_t *tape = drive->driver_data;
2055         struct ide_atapi_pc pc;
2056         u8 *caps;
2057         u8 speed, max_speed;
2058
2059         idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
2060         if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
2061                 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2062                                 " some default values\n");
2063                 tape->blk_size = 512;
2064                 put_unaligned(52,   (u16 *)&tape->caps[12]);
2065                 put_unaligned(540,  (u16 *)&tape->caps[14]);
2066                 put_unaligned(6*52, (u16 *)&tape->caps[16]);
2067                 return;
2068         }
2069         caps = pc.buf + 4 + pc.buf[3];
2070
2071         /* convert to host order and save for later use */
2072         speed = be16_to_cpup((__be16 *)&caps[14]);
2073         max_speed = be16_to_cpup((__be16 *)&caps[8]);
2074
2075         *(u16 *)&caps[8] = max_speed;
2076         *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2077         *(u16 *)&caps[14] = speed;
2078         *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
2079
2080         if (!speed) {
2081                 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2082                                 "(assuming 650KB/sec)\n", drive->name);
2083                 *(u16 *)&caps[14] = 650;
2084         }
2085         if (!max_speed) {
2086                 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2087                                 "(assuming 650KB/sec)\n", drive->name);
2088                 *(u16 *)&caps[8] = 650;
2089         }
2090
2091         memcpy(&tape->caps, caps, 20);
2092
2093         /* device lacks locking support according to capabilities page */
2094         if ((caps[6] & 1) == 0)
2095                 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
2096
2097         if (caps[7] & 0x02)
2098                 tape->blk_size = 512;
2099         else if (caps[7] & 0x04)
2100                 tape->blk_size = 1024;
2101 }
2102
2103 #ifdef CONFIG_IDE_PROC_FS
2104 #define ide_tape_devset_get(name, field) \
2105 static int get_##name(ide_drive_t *drive) \
2106 { \
2107         idetape_tape_t *tape = drive->driver_data; \
2108         return tape->field; \
2109 }
2110
2111 #define ide_tape_devset_set(name, field) \
2112 static int set_##name(ide_drive_t *drive, int arg) \
2113 { \
2114         idetape_tape_t *tape = drive->driver_data; \
2115         tape->field = arg; \
2116         return 0; \
2117 }
2118
2119 #define ide_tape_devset_rw_field(_name, _field) \
2120 ide_tape_devset_get(_name, _field) \
2121 ide_tape_devset_set(_name, _field) \
2122 IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
2123
2124 #define ide_tape_devset_r_field(_name, _field) \
2125 ide_tape_devset_get(_name, _field) \
2126 IDE_DEVSET(_name, 0, get_##_name, NULL)
2127
2128 static int mulf_tdsc(ide_drive_t *drive)        { return 1000; }
2129 static int divf_tdsc(ide_drive_t *drive)        { return   HZ; }
2130 static int divf_buffer(ide_drive_t *drive)      { return    2; }
2131 static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2132
2133 ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
2134
2135 ide_tape_devset_rw_field(debug_mask, debug_mask);
2136 ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
2137
2138 ide_tape_devset_r_field(avg_speed, avg_speed);
2139 ide_tape_devset_r_field(speed, caps[14]);
2140 ide_tape_devset_r_field(buffer, caps[16]);
2141 ide_tape_devset_r_field(buffer_size, buffer_size);
2142
2143 static const struct ide_proc_devset idetape_settings[] = {
2144         __IDE_PROC_DEVSET(avg_speed,    0, 0xffff, NULL, NULL),
2145         __IDE_PROC_DEVSET(buffer,       0, 0xffff, NULL, divf_buffer),
2146         __IDE_PROC_DEVSET(buffer_size,  0, 0xffff, NULL, divf_buffer_size),
2147         __IDE_PROC_DEVSET(debug_mask,   0, 0xffff, NULL, NULL),
2148         __IDE_PROC_DEVSET(dsc_overlap,  0,      1, NULL, NULL),
2149         __IDE_PROC_DEVSET(speed,        0, 0xffff, NULL, NULL),
2150         __IDE_PROC_DEVSET(tdsc,         IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2151                                         mulf_tdsc, divf_tdsc),
2152         { NULL },
2153 };
2154 #endif
2155
2156 /*
2157  * The function below is called to:
2158  *
2159  * 1. Initialize our various state variables.
2160  * 2. Ask the tape for its capabilities.
2161  * 3. Allocate a buffer which will be used for data transfer. The buffer size
2162  * is chosen based on the recommendation which we received in step 2.
2163  *
2164  * Note that at this point ide.c already assigned us an irq, so that we can
2165  * queue requests here and wait for their completion.
2166  */
2167 static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
2168 {
2169         unsigned long t;
2170         int speed;
2171         int buffer_size;
2172         u16 *ctl = (u16 *)&tape->caps[12];
2173
2174         drive->pc_callback       = ide_tape_callback;
2175         drive->pc_update_buffers = idetape_update_buffers;
2176         drive->pc_io_buffers     = ide_tape_io_buffers;
2177
2178         drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2179
2180         if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2181                 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2182                                  tape->name);
2183                 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2184         }
2185
2186         /* Seagate Travan drives do not support DSC overlap. */
2187         if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
2188                 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2189
2190         tape->minor = minor;
2191         tape->name[0] = 'h';
2192         tape->name[1] = 't';
2193         tape->name[2] = '0' + minor;
2194         tape->chrdev_dir = IDETAPE_DIR_NONE;
2195
2196         idetape_get_inquiry_results(drive);
2197         idetape_get_mode_sense_results(drive);
2198         ide_tape_get_bsize_from_bdesc(drive);
2199         tape->user_bs_factor = 1;
2200         tape->buffer_size = *ctl * tape->blk_size;
2201         while (tape->buffer_size > 0xffff) {
2202                 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
2203                 *ctl /= 2;
2204                 tape->buffer_size = *ctl * tape->blk_size;
2205         }
2206         buffer_size = tape->buffer_size;
2207         tape->pages_per_buffer = buffer_size / PAGE_SIZE;
2208         if (buffer_size % PAGE_SIZE) {
2209                 tape->pages_per_buffer++;
2210                 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
2211         }
2212
2213         /* select the "best" DSC read/write polling freq */
2214         speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
2215
2216         t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
2217
2218         /*
2219          * Ensure that the number we got makes sense; limit it within
2220          * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
2221          */
2222         tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2223                                          IDETAPE_DSC_RW_MAX);
2224         printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
2225                 "%lums tDSC%s\n",
2226                 drive->name, tape->name, *(u16 *)&tape->caps[14],
2227                 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2228                 tape->buffer_size / 1024,
2229                 tape->best_dsc_rw_freq * 1000 / HZ,
2230                 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
2231
2232         ide_proc_register_driver(drive, tape->driver);
2233 }
2234
2235 static void ide_tape_remove(ide_drive_t *drive)
2236 {
2237         idetape_tape_t *tape = drive->driver_data;
2238
2239         ide_proc_unregister_driver(drive, tape->driver);
2240         device_del(&tape->dev);
2241         ide_unregister_region(tape->disk);
2242
2243         mutex_lock(&idetape_ref_mutex);
2244         put_device(&tape->dev);
2245         mutex_unlock(&idetape_ref_mutex);
2246 }
2247
2248 static void ide_tape_release(struct device *dev)
2249 {
2250         struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
2251         ide_drive_t *drive = tape->drive;
2252         struct gendisk *g = tape->disk;
2253
2254         BUG_ON(tape->merge_bh_size);
2255
2256         drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2257         drive->driver_data = NULL;
2258         device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
2259         device_destroy(idetape_sysfs_class,
2260                         MKDEV(IDETAPE_MAJOR, tape->minor + 128));
2261         idetape_devs[tape->minor] = NULL;
2262         g->private_data = NULL;
2263         put_disk(g);
2264         kfree(tape);
2265 }
2266
2267 #ifdef CONFIG_IDE_PROC_FS
2268 static int proc_idetape_read_name
2269         (char *page, char **start, off_t off, int count, int *eof, void *data)
2270 {
2271         ide_drive_t     *drive = (ide_drive_t *) data;
2272         idetape_tape_t  *tape = drive->driver_data;
2273         char            *out = page;
2274         int             len;
2275
2276         len = sprintf(out, "%s\n", tape->name);
2277         PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2278 }
2279
2280 static ide_proc_entry_t idetape_proc[] = {
2281         { "capacity",   S_IFREG|S_IRUGO,        proc_ide_read_capacity, NULL },
2282         { "name",       S_IFREG|S_IRUGO,        proc_idetape_read_name, NULL },
2283         { NULL, 0, NULL, NULL }
2284 };
2285
2286 static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2287 {
2288         return idetape_proc;
2289 }
2290
2291 static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2292 {
2293         return idetape_settings;
2294 }
2295 #endif
2296
2297 static int ide_tape_probe(ide_drive_t *);
2298
2299 static struct ide_driver idetape_driver = {
2300         .gen_driver = {
2301                 .owner          = THIS_MODULE,
2302                 .name           = "ide-tape",
2303                 .bus            = &ide_bus_type,
2304         },
2305         .probe                  = ide_tape_probe,
2306         .remove                 = ide_tape_remove,
2307         .version                = IDETAPE_VERSION,
2308         .do_request             = idetape_do_request,
2309         .end_request            = idetape_end_request,
2310 #ifdef CONFIG_IDE_PROC_FS
2311         .proc_entries           = ide_tape_proc_entries,
2312         .proc_devsets           = ide_tape_proc_devsets,
2313 #endif
2314 };
2315
2316 /* Our character device supporting functions, passed to register_chrdev. */
2317 static const struct file_operations idetape_fops = {
2318         .owner          = THIS_MODULE,
2319         .read           = idetape_chrdev_read,
2320         .write          = idetape_chrdev_write,
2321         .ioctl          = idetape_chrdev_ioctl,
2322         .open           = idetape_chrdev_open,
2323         .release        = idetape_chrdev_release,
2324 };
2325
2326 static int idetape_open(struct block_device *bdev, fmode_t mode)
2327 {
2328         struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
2329
2330         if (!tape)
2331                 return -ENXIO;
2332
2333         return 0;
2334 }
2335
2336 static int idetape_release(struct gendisk *disk, fmode_t mode)
2337 {
2338         struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
2339
2340         ide_tape_put(tape);
2341         return 0;
2342 }
2343
2344 static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
2345                         unsigned int cmd, unsigned long arg)
2346 {
2347         struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
2348         ide_drive_t *drive = tape->drive;
2349         int err = generic_ide_ioctl(drive, bdev, cmd, arg);
2350         if (err == -EINVAL)
2351                 err = idetape_blkdev_ioctl(drive, cmd, arg);
2352         return err;
2353 }
2354
2355 static struct block_device_operations idetape_block_ops = {
2356         .owner          = THIS_MODULE,
2357         .open           = idetape_open,
2358         .release        = idetape_release,
2359         .locked_ioctl   = idetape_ioctl,
2360 };
2361
2362 static int ide_tape_probe(ide_drive_t *drive)
2363 {
2364         idetape_tape_t *tape;
2365         struct gendisk *g;
2366         int minor;
2367
2368         if (!strstr("ide-tape", drive->driver_req))
2369                 goto failed;
2370
2371         if (drive->media != ide_tape)
2372                 goto failed;
2373
2374         if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2375             ide_check_atapi_device(drive, DRV_NAME) == 0) {
2376                 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2377                                 " the driver\n", drive->name);
2378                 goto failed;
2379         }
2380         tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
2381         if (tape == NULL) {
2382                 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2383                                 drive->name);
2384                 goto failed;
2385         }
2386
2387         g = alloc_disk(1 << PARTN_BITS);
2388         if (!g)
2389                 goto out_free_tape;
2390
2391         ide_init_disk(g, drive);
2392
2393         tape->dev.parent = &drive->gendev;
2394         tape->dev.release = ide_tape_release;
2395         dev_set_name(&tape->dev, dev_name(&drive->gendev));
2396
2397         if (device_register(&tape->dev))
2398                 goto out_free_disk;
2399
2400         tape->drive = drive;
2401         tape->driver = &idetape_driver;
2402         tape->disk = g;
2403
2404         g->private_data = &tape->driver;
2405
2406         drive->driver_data = tape;
2407
2408         mutex_lock(&idetape_ref_mutex);
2409         for (minor = 0; idetape_devs[minor]; minor++)
2410                 ;
2411         idetape_devs[minor] = tape;
2412         mutex_unlock(&idetape_ref_mutex);
2413
2414         idetape_setup(drive, tape, minor);
2415
2416         device_create(idetape_sysfs_class, &drive->gendev,
2417                       MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2418         device_create(idetape_sysfs_class, &drive->gendev,
2419                       MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2420                       "n%s", tape->name);
2421
2422         g->fops = &idetape_block_ops;
2423         ide_register_region(g);
2424
2425         return 0;
2426
2427 out_free_disk:
2428         put_disk(g);
2429 out_free_tape:
2430         kfree(tape);
2431 failed:
2432         return -ENODEV;
2433 }
2434
2435 static void __exit idetape_exit(void)
2436 {
2437         driver_unregister(&idetape_driver.gen_driver);
2438         class_destroy(idetape_sysfs_class);
2439         unregister_chrdev(IDETAPE_MAJOR, "ht");
2440 }
2441
2442 static int __init idetape_init(void)
2443 {
2444         int error = 1;
2445         idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2446         if (IS_ERR(idetape_sysfs_class)) {
2447                 idetape_sysfs_class = NULL;
2448                 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2449                 error = -EBUSY;
2450                 goto out;
2451         }
2452
2453         if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
2454                 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2455                                 " interface\n");
2456                 error = -EBUSY;
2457                 goto out_free_class;
2458         }
2459
2460         error = driver_register(&idetape_driver.gen_driver);
2461         if (error)
2462                 goto out_free_driver;
2463
2464         return 0;
2465
2466 out_free_driver:
2467         driver_unregister(&idetape_driver.gen_driver);
2468 out_free_class:
2469         class_destroy(idetape_sysfs_class);
2470 out:
2471         return error;
2472 }
2473
2474 MODULE_ALIAS("ide:*m-tape*");
2475 module_init(idetape_init);
2476 module_exit(idetape_exit);
2477 MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
2478 MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2479 MODULE_LICENSE("GPL");