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