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