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