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