added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / drivers / ide / ide-tape.c
blobaf7860cb7f7c5a1068bf0c77c77f1d17cdbd8bdb
1 /*
2 * IDE ATAPI streaming tape driver.
4 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
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.
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
14 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
18 #define DRV_NAME "ide-tape"
20 #define IDETAPE_VERSION "1.20"
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>
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>
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),
61 /* define to see debug info */
62 #define IDETAPE_DEBUG_LOG 0
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); \
70 #else
71 #define debug_log(lvl, fmt, args...) do {} while (0)
72 #endif
74 /**************************** Tunable parameters *****************************/
76 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
79 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
81 #define IDETAPE_MAX_PC_RETRIES 3
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.
89 #define IDETAPE_FIFO_THRESHOLD 2
92 * DSC polling parameters.
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:
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.
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).
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.
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 */
125 /*************************** End of tunable parameters ***********************/
127 /* tape directions */
128 enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
134 struct idetape_bh {
135 u32 b_size;
136 atomic_t b_count;
137 struct idetape_bh *b_reqnext;
138 char *b_data;
141 /* Tape door status */
142 #define DOOR_UNLOCKED 0
143 #define DOOR_LOCKED 1
144 #define DOOR_EXPLICITLY_LOCKED 2
146 /* Some defines for the SPACE command */
147 #define IDETAPE_SPACE_OVER_FILEMARK 1
148 #define IDETAPE_SPACE_TO_EOD 3
150 /* Some defines for the LOAD UNLOAD command */
151 #define IDETAPE_LU_LOAD_MASK 1
152 #define IDETAPE_LU_RETENSION_MASK 2
153 #define IDETAPE_LU_EOT_MASK 4
155 /* Error codes returned in rq->errors to the higher part of the driver. */
156 #define IDETAPE_ERROR_GENERAL 101
157 #define IDETAPE_ERROR_FILEMARK 102
158 #define IDETAPE_ERROR_EOD 103
160 /* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
161 #define IDETAPE_BLOCK_DESCRIPTOR 0
162 #define IDETAPE_CAPABILITIES_PAGE 0x2a
165 * Most of our global data which we need to save even as we leave the driver due
166 * to an interrupt or a timer event is stored in the struct defined below.
168 typedef struct ide_tape_obj {
169 ide_drive_t *drive;
170 struct ide_driver *driver;
171 struct gendisk *disk;
172 struct device dev;
175 * failed_pc points to the last failed packet command, or contains
176 * NULL if we do not need to retry any packet command. This is
177 * required since an additional packet command is needed before the
178 * retry, to get detailed information on what went wrong.
180 /* Last failed packet command */
181 struct ide_atapi_pc *failed_pc;
182 /* used by REQ_IDETAPE_{READ,WRITE} requests */
183 struct ide_atapi_pc queued_pc;
186 * DSC polling variables.
188 * While polling for DSC we use postponed_rq to postpone the current
189 * request so that ide.c will be able to service pending requests on the
190 * other device. Note that at most we will have only one DSC (usually
191 * data transfer) request in the device request queue.
193 struct request *postponed_rq;
194 /* The time in which we started polling for DSC */
195 unsigned long dsc_polling_start;
196 /* Timer used to poll for dsc */
197 struct timer_list dsc_timer;
198 /* Read/Write dsc polling frequency */
199 unsigned long best_dsc_rw_freq;
200 unsigned long dsc_poll_freq;
201 unsigned long dsc_timeout;
203 /* Read position information */
204 u8 partition;
205 /* Current block */
206 unsigned int first_frame;
208 /* Last error information */
209 u8 sense_key, asc, ascq;
211 /* Character device operation */
212 unsigned int minor;
213 /* device name */
214 char name[4];
215 /* Current character device data transfer direction */
216 u8 chrdev_dir;
218 /* tape block size, usually 512 or 1024 bytes */
219 unsigned short blk_size;
220 int user_bs_factor;
222 /* Copy of the tape's Capabilities and Mechanical Page */
223 u8 caps[20];
226 * Active data transfer request parameters.
228 * At most, there is only one ide-tape originated data transfer request
229 * in the device request queue. This allows ide.c to easily service
230 * requests from the other device when we postpone our active request.
233 /* Data buffer size chosen based on the tape's recommendation */
234 int buffer_size;
235 /* merge buffer */
236 struct idetape_bh *merge_bh;
237 /* size of the merge buffer */
238 int merge_bh_size;
239 /* pointer to current buffer head within the merge buffer */
240 struct idetape_bh *bh;
241 char *b_data;
242 int b_count;
244 int pages_per_buffer;
245 /* Wasted space in each stage */
246 int excess_bh_size;
248 /* protects the ide-tape queue */
249 spinlock_t lock;
251 /* Measures average tape speed */
252 unsigned long avg_time;
253 int avg_size;
254 int avg_speed;
256 /* the door is currently locked */
257 int door_locked;
258 /* the tape hardware is write protected */
259 char drv_write_prot;
260 /* the tape is write protected (hardware or opened as read-only) */
261 char write_prot;
263 u32 debug_mask;
264 } idetape_tape_t;
266 static DEFINE_MUTEX(idetape_ref_mutex);
268 static struct class *idetape_sysfs_class;
270 static void ide_tape_release(struct device *);
272 static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
274 struct ide_tape_obj *tape = NULL;
276 mutex_lock(&idetape_ref_mutex);
277 tape = ide_drv_g(disk, ide_tape_obj);
278 if (tape) {
279 if (ide_device_get(tape->drive))
280 tape = NULL;
281 else
282 get_device(&tape->dev);
284 mutex_unlock(&idetape_ref_mutex);
285 return tape;
288 static void ide_tape_put(struct ide_tape_obj *tape)
290 ide_drive_t *drive = tape->drive;
292 mutex_lock(&idetape_ref_mutex);
293 put_device(&tape->dev);
294 ide_device_put(drive);
295 mutex_unlock(&idetape_ref_mutex);
299 * The variables below are used for the character device interface. Additional
300 * state variables are defined in our ide_drive_t structure.
302 static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
304 static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
306 struct ide_tape_obj *tape = NULL;
308 mutex_lock(&idetape_ref_mutex);
309 tape = idetape_devs[i];
310 if (tape)
311 get_device(&tape->dev);
312 mutex_unlock(&idetape_ref_mutex);
313 return tape;
316 static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
317 unsigned int bcount)
319 struct idetape_bh *bh = pc->bh;
320 int count;
322 while (bcount) {
323 if (bh == NULL) {
324 printk(KERN_ERR "ide-tape: bh == NULL in "
325 "idetape_input_buffers\n");
326 ide_pad_transfer(drive, 0, bcount);
327 return;
329 count = min(
330 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
331 bcount);
332 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
333 atomic_read(&bh->b_count), count);
334 bcount -= count;
335 atomic_add(count, &bh->b_count);
336 if (atomic_read(&bh->b_count) == bh->b_size) {
337 bh = bh->b_reqnext;
338 if (bh)
339 atomic_set(&bh->b_count, 0);
342 pc->bh = bh;
345 static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
346 unsigned int bcount)
348 struct idetape_bh *bh = pc->bh;
349 int count;
351 while (bcount) {
352 if (bh == NULL) {
353 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
354 __func__);
355 return;
357 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
358 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
359 bcount -= count;
360 pc->b_data += count;
361 pc->b_count -= count;
362 if (!pc->b_count) {
363 bh = bh->b_reqnext;
364 pc->bh = bh;
365 if (bh) {
366 pc->b_data = bh->b_data;
367 pc->b_count = atomic_read(&bh->b_count);
373 static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
375 struct idetape_bh *bh = pc->bh;
376 int count;
377 unsigned int bcount = pc->xferred;
379 if (pc->flags & PC_FLAG_WRITING)
380 return;
381 while (bcount) {
382 if (bh == NULL) {
383 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
384 __func__);
385 return;
387 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
388 atomic_set(&bh->b_count, count);
389 if (atomic_read(&bh->b_count) == bh->b_size)
390 bh = bh->b_reqnext;
391 bcount -= count;
393 pc->bh = bh;
397 * called on each failed packet command retry to analyze the request sense. We
398 * currently do not utilize this information.
400 static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
402 idetape_tape_t *tape = drive->driver_data;
403 struct ide_atapi_pc *pc = tape->failed_pc;
405 tape->sense_key = sense[2] & 0xF;
406 tape->asc = sense[12];
407 tape->ascq = sense[13];
409 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
410 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
412 /* Correct pc->xferred by asking the tape. */
413 if (pc->flags & PC_FLAG_DMA_ERROR) {
414 pc->xferred = pc->req_xfer -
415 tape->blk_size *
416 get_unaligned_be32(&sense[3]);
417 idetape_update_buffers(drive, pc);
421 * If error was the result of a zero-length read or write command,
422 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
423 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
425 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
426 /* length == 0 */
427 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
428 if (tape->sense_key == 5) {
429 /* don't report an error, everything's ok */
430 pc->error = 0;
431 /* don't retry read/write */
432 pc->flags |= PC_FLAG_ABORT;
435 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
436 pc->error = IDETAPE_ERROR_FILEMARK;
437 pc->flags |= PC_FLAG_ABORT;
439 if (pc->c[0] == WRITE_6) {
440 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
441 && tape->asc == 0x0 && tape->ascq == 0x2)) {
442 pc->error = IDETAPE_ERROR_EOD;
443 pc->flags |= PC_FLAG_ABORT;
446 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
447 if (tape->sense_key == 8) {
448 pc->error = IDETAPE_ERROR_EOD;
449 pc->flags |= PC_FLAG_ABORT;
451 if (!(pc->flags & PC_FLAG_ABORT) &&
452 pc->xferred)
453 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
457 /* Free data buffers completely. */
458 static void ide_tape_kfree_buffer(idetape_tape_t *tape)
460 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
462 while (bh) {
463 u32 size = bh->b_size;
465 while (size) {
466 unsigned int order = fls(size >> PAGE_SHIFT)-1;
468 if (bh->b_data)
469 free_pages((unsigned long)bh->b_data, order);
471 size &= (order-1);
472 bh->b_data += (1 << order) * PAGE_SIZE;
474 prev_bh = bh;
475 bh = bh->b_reqnext;
476 kfree(prev_bh);
480 static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
482 struct request *rq = drive->hwif->rq;
483 idetape_tape_t *tape = drive->driver_data;
484 unsigned long flags;
485 int error;
487 debug_log(DBG_PROCS, "Enter %s\n", __func__);
489 switch (uptodate) {
490 case 0: error = IDETAPE_ERROR_GENERAL; break;
491 case 1: error = 0; break;
492 default: error = uptodate;
494 rq->errors = error;
495 if (error)
496 tape->failed_pc = NULL;
498 if (!blk_special_request(rq)) {
499 ide_end_request(drive, uptodate, nr_sects);
500 return 0;
503 spin_lock_irqsave(&tape->lock, flags);
505 ide_end_drive_cmd(drive, 0, 0);
507 spin_unlock_irqrestore(&tape->lock, flags);
508 return 0;
511 static void ide_tape_handle_dsc(ide_drive_t *);
513 static void ide_tape_callback(ide_drive_t *drive, int dsc)
515 idetape_tape_t *tape = drive->driver_data;
516 struct ide_atapi_pc *pc = drive->pc;
517 int uptodate = pc->error ? 0 : 1;
519 debug_log(DBG_PROCS, "Enter %s\n", __func__);
521 if (dsc)
522 ide_tape_handle_dsc(drive);
524 if (tape->failed_pc == pc)
525 tape->failed_pc = NULL;
527 if (pc->c[0] == REQUEST_SENSE) {
528 if (uptodate)
529 idetape_analyze_error(drive, pc->buf);
530 else
531 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
532 "itself - Aborting request!\n");
533 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
534 struct request *rq = drive->hwif->rq;
535 int blocks = pc->xferred / tape->blk_size;
537 tape->avg_size += blocks * tape->blk_size;
539 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
540 tape->avg_speed = tape->avg_size * HZ /
541 (jiffies - tape->avg_time) / 1024;
542 tape->avg_size = 0;
543 tape->avg_time = jiffies;
546 tape->first_frame += blocks;
547 rq->current_nr_sectors -= blocks;
549 if (pc->error)
550 uptodate = pc->error;
551 } else if (pc->c[0] == READ_POSITION && uptodate) {
552 u8 *readpos = pc->buf;
554 debug_log(DBG_SENSE, "BOP - %s\n",
555 (readpos[0] & 0x80) ? "Yes" : "No");
556 debug_log(DBG_SENSE, "EOP - %s\n",
557 (readpos[0] & 0x40) ? "Yes" : "No");
559 if (readpos[0] & 0x4) {
560 printk(KERN_INFO "ide-tape: Block location is unknown"
561 "to the tape\n");
562 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
563 uptodate = 0;
564 } else {
565 debug_log(DBG_SENSE, "Block Location - %u\n",
566 be32_to_cpup((__be32 *)&readpos[4]));
568 tape->partition = readpos[1];
569 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
570 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
574 idetape_end_request(drive, uptodate, 0);
578 * Postpone the current request so that ide.c will be able to service requests
579 * from another device on the same port while we are polling for DSC.
581 static void idetape_postpone_request(ide_drive_t *drive)
583 idetape_tape_t *tape = drive->driver_data;
585 debug_log(DBG_PROCS, "Enter %s\n", __func__);
587 tape->postponed_rq = drive->hwif->rq;
589 ide_stall_queue(drive, tape->dsc_poll_freq);
592 static void ide_tape_handle_dsc(ide_drive_t *drive)
594 idetape_tape_t *tape = drive->driver_data;
596 /* Media access command */
597 tape->dsc_polling_start = jiffies;
598 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
599 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
600 /* Allow ide.c to handle other requests */
601 idetape_postpone_request(drive);
604 static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
605 unsigned int bcount, int write)
607 if (write)
608 idetape_output_buffers(drive, pc, bcount);
609 else
610 idetape_input_buffers(drive, pc, bcount);
612 return bcount;
616 * Packet Command Interface
618 * The current Packet Command is available in drive->pc, and will not change
619 * until we finish handling it. Each packet command is associated with a
620 * callback function that will be called when the command is finished.
622 * The handling will be done in three stages:
624 * 1. idetape_issue_pc will send the packet command to the drive, and will set
625 * the interrupt handler to ide_pc_intr.
627 * 2. On each interrupt, ide_pc_intr will be called. This step will be
628 * repeated until the device signals us that no more interrupts will be issued.
630 * 3. ATAPI Tape media access commands have immediate status with a delayed
631 * process. In case of a successful initiation of a media access packet command,
632 * the DSC bit will be set when the actual execution of the command is finished.
633 * Since the tape drive will not issue an interrupt, we have to poll for this
634 * event. In this case, we define the request as "low priority request" by
635 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
636 * exit the driver.
638 * ide.c will then give higher priority to requests which originate from the
639 * other device, until will change rq_status to RQ_ACTIVE.
641 * 4. When the packet command is finished, it will be checked for errors.
643 * 5. In case an error was found, we queue a request sense packet command in
644 * front of the request queue and retry the operation up to
645 * IDETAPE_MAX_PC_RETRIES times.
647 * 6. In case no error was found, or we decided to give up and not to retry
648 * again, the callback function will be called and then we will handle the next
649 * request.
652 static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
653 struct ide_atapi_pc *pc)
655 idetape_tape_t *tape = drive->driver_data;
657 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
658 tape->failed_pc = pc;
660 /* Set the current packet command */
661 drive->pc = pc;
663 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
664 (pc->flags & PC_FLAG_ABORT)) {
666 * We will "abort" retrying a packet command in case legitimate
667 * error code was received (crossing a filemark, or end of the
668 * media, for example).
670 if (!(pc->flags & PC_FLAG_ABORT)) {
671 if (!(pc->c[0] == TEST_UNIT_READY &&
672 tape->sense_key == 2 && tape->asc == 4 &&
673 (tape->ascq == 1 || tape->ascq == 8))) {
674 printk(KERN_ERR "ide-tape: %s: I/O error, "
675 "pc = %2x, key = %2x, "
676 "asc = %2x, ascq = %2x\n",
677 tape->name, pc->c[0],
678 tape->sense_key, tape->asc,
679 tape->ascq);
681 /* Giving up */
682 pc->error = IDETAPE_ERROR_GENERAL;
684 tape->failed_pc = NULL;
685 drive->pc_callback(drive, 0);
686 return ide_stopped;
688 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
690 pc->retries++;
692 return ide_issue_pc(drive);
695 /* A mode sense command is used to "sense" tape parameters. */
696 static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
698 ide_init_pc(pc);
699 pc->c[0] = MODE_SENSE;
700 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
701 /* DBD = 1 - Don't return block descriptors */
702 pc->c[1] = 8;
703 pc->c[2] = page_code;
705 * Changed pc->c[3] to 0 (255 will at best return unused info).
707 * For SCSI this byte is defined as subpage instead of high byte
708 * of length and some IDE drives seem to interpret it this way
709 * and return an error when 255 is used.
711 pc->c[3] = 0;
712 /* We will just discard data in that case */
713 pc->c[4] = 255;
714 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
715 pc->req_xfer = 12;
716 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
717 pc->req_xfer = 24;
718 else
719 pc->req_xfer = 50;
722 static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
724 ide_hwif_t *hwif = drive->hwif;
725 idetape_tape_t *tape = drive->driver_data;
726 struct ide_atapi_pc *pc = drive->pc;
727 u8 stat;
729 stat = hwif->tp_ops->read_status(hwif);
731 if (stat & ATA_DSC) {
732 if (stat & ATA_ERR) {
733 /* Error detected */
734 if (pc->c[0] != TEST_UNIT_READY)
735 printk(KERN_ERR "ide-tape: %s: I/O error, ",
736 tape->name);
737 /* Retry operation */
738 ide_retry_pc(drive, tape->disk);
739 return ide_stopped;
741 pc->error = 0;
742 } else {
743 pc->error = IDETAPE_ERROR_GENERAL;
744 tape->failed_pc = NULL;
746 drive->pc_callback(drive, 0);
747 return ide_stopped;
750 static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
751 struct ide_atapi_pc *pc, struct request *rq,
752 u8 opcode)
754 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
755 unsigned int length = rq->current_nr_sectors;
757 ide_init_pc(pc);
758 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
759 pc->c[1] = 1;
760 pc->bh = bh;
761 pc->buf = NULL;
762 pc->buf_size = length * tape->blk_size;
763 pc->req_xfer = pc->buf_size;
764 if (pc->req_xfer == tape->buffer_size)
765 pc->flags |= PC_FLAG_DMA_OK;
767 if (opcode == READ_6) {
768 pc->c[0] = READ_6;
769 atomic_set(&bh->b_count, 0);
770 } else if (opcode == WRITE_6) {
771 pc->c[0] = WRITE_6;
772 pc->flags |= PC_FLAG_WRITING;
773 pc->b_data = bh->b_data;
774 pc->b_count = atomic_read(&bh->b_count);
777 memcpy(rq->cmd, pc->c, 12);
780 static ide_startstop_t idetape_do_request(ide_drive_t *drive,
781 struct request *rq, sector_t block)
783 ide_hwif_t *hwif = drive->hwif;
784 idetape_tape_t *tape = drive->driver_data;
785 struct ide_atapi_pc *pc = NULL;
786 struct request *postponed_rq = tape->postponed_rq;
787 u8 stat;
789 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
790 " current_nr_sectors: %u\n",
791 (unsigned long long)rq->sector, rq->nr_sectors,
792 rq->current_nr_sectors);
794 if (!blk_special_request(rq)) {
795 /* We do not support buffer cache originated requests. */
796 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
797 "request queue (%d)\n", drive->name, rq->cmd_type);
798 ide_end_request(drive, 0, 0);
799 return ide_stopped;
802 /* Retry a failed packet command */
803 if (tape->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
804 pc = tape->failed_pc;
805 goto out;
808 if (postponed_rq != NULL)
809 if (rq != postponed_rq) {
810 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
811 "Two DSC requests were queued\n");
812 idetape_end_request(drive, 0, 0);
813 return ide_stopped;
816 tape->postponed_rq = NULL;
819 * If the tape is still busy, postpone our request and service
820 * the other device meanwhile.
822 stat = hwif->tp_ops->read_status(hwif);
824 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
825 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
826 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
828 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
829 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
830 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
833 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
834 (stat & ATA_DSC) == 0) {
835 if (postponed_rq == NULL) {
836 tape->dsc_polling_start = jiffies;
837 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
838 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
839 } else if (time_after(jiffies, tape->dsc_timeout)) {
840 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
841 tape->name);
842 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
843 idetape_media_access_finished(drive);
844 return ide_stopped;
845 } else {
846 return ide_do_reset(drive);
848 } else if (time_after(jiffies,
849 tape->dsc_polling_start +
850 IDETAPE_DSC_MA_THRESHOLD))
851 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
852 idetape_postpone_request(drive);
853 return ide_stopped;
855 if (rq->cmd[13] & REQ_IDETAPE_READ) {
856 pc = &tape->queued_pc;
857 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
858 goto out;
860 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
861 pc = &tape->queued_pc;
862 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
863 goto out;
865 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
866 pc = (struct ide_atapi_pc *) rq->buffer;
867 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
868 rq->cmd[13] |= REQ_IDETAPE_PC2;
869 goto out;
871 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
872 idetape_media_access_finished(drive);
873 return ide_stopped;
875 BUG();
877 out:
878 return idetape_issue_pc(drive, pc);
882 * The function below uses __get_free_pages to allocate a data buffer of size
883 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
884 * much as possible.
886 * It returns a pointer to the newly allocated buffer, or NULL in case of
887 * failure.
889 static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
890 int full, int clear)
892 struct idetape_bh *prev_bh, *bh, *merge_bh;
893 int pages = tape->pages_per_buffer;
894 unsigned int order, b_allocd;
895 char *b_data = NULL;
897 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
898 bh = merge_bh;
899 if (bh == NULL)
900 goto abort;
902 order = fls(pages) - 1;
903 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
904 if (!bh->b_data)
905 goto abort;
906 b_allocd = (1 << order) * PAGE_SIZE;
907 pages &= (order-1);
909 if (clear)
910 memset(bh->b_data, 0, b_allocd);
911 bh->b_reqnext = NULL;
912 bh->b_size = b_allocd;
913 atomic_set(&bh->b_count, full ? bh->b_size : 0);
915 while (pages) {
916 order = fls(pages) - 1;
917 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
918 if (!b_data)
919 goto abort;
920 b_allocd = (1 << order) * PAGE_SIZE;
922 if (clear)
923 memset(b_data, 0, b_allocd);
925 /* newly allocated page frames below buffer header or ...*/
926 if (bh->b_data == b_data + b_allocd) {
927 bh->b_size += b_allocd;
928 bh->b_data -= b_allocd;
929 if (full)
930 atomic_add(b_allocd, &bh->b_count);
931 continue;
933 /* they are above the header */
934 if (b_data == bh->b_data + bh->b_size) {
935 bh->b_size += b_allocd;
936 if (full)
937 atomic_add(b_allocd, &bh->b_count);
938 continue;
940 prev_bh = bh;
941 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
942 if (!bh) {
943 free_pages((unsigned long) b_data, order);
944 goto abort;
946 bh->b_reqnext = NULL;
947 bh->b_data = b_data;
948 bh->b_size = b_allocd;
949 atomic_set(&bh->b_count, full ? bh->b_size : 0);
950 prev_bh->b_reqnext = bh;
952 pages &= (order-1);
955 bh->b_size -= tape->excess_bh_size;
956 if (full)
957 atomic_sub(tape->excess_bh_size, &bh->b_count);
958 return merge_bh;
959 abort:
960 ide_tape_kfree_buffer(tape);
961 return NULL;
964 static int idetape_copy_stage_from_user(idetape_tape_t *tape,
965 const char __user *buf, int n)
967 struct idetape_bh *bh = tape->bh;
968 int count;
969 int ret = 0;
971 while (n) {
972 if (bh == NULL) {
973 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
974 __func__);
975 return 1;
977 count = min((unsigned int)
978 (bh->b_size - atomic_read(&bh->b_count)),
979 (unsigned int)n);
980 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
981 count))
982 ret = 1;
983 n -= count;
984 atomic_add(count, &bh->b_count);
985 buf += count;
986 if (atomic_read(&bh->b_count) == bh->b_size) {
987 bh = bh->b_reqnext;
988 if (bh)
989 atomic_set(&bh->b_count, 0);
992 tape->bh = bh;
993 return ret;
996 static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
997 int n)
999 struct idetape_bh *bh = tape->bh;
1000 int count;
1001 int ret = 0;
1003 while (n) {
1004 if (bh == NULL) {
1005 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1006 __func__);
1007 return 1;
1009 count = min(tape->b_count, n);
1010 if (copy_to_user(buf, tape->b_data, count))
1011 ret = 1;
1012 n -= count;
1013 tape->b_data += count;
1014 tape->b_count -= count;
1015 buf += count;
1016 if (!tape->b_count) {
1017 bh = bh->b_reqnext;
1018 tape->bh = bh;
1019 if (bh) {
1020 tape->b_data = bh->b_data;
1021 tape->b_count = atomic_read(&bh->b_count);
1025 return ret;
1028 static void idetape_init_merge_buffer(idetape_tape_t *tape)
1030 struct idetape_bh *bh = tape->merge_bh;
1031 tape->bh = tape->merge_bh;
1033 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
1034 atomic_set(&bh->b_count, 0);
1035 else {
1036 tape->b_data = bh->b_data;
1037 tape->b_count = atomic_read(&bh->b_count);
1042 * Write a filemark if write_filemark=1. Flush the device buffers without
1043 * writing a filemark otherwise.
1045 static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
1046 struct ide_atapi_pc *pc, int write_filemark)
1048 ide_init_pc(pc);
1049 pc->c[0] = WRITE_FILEMARKS;
1050 pc->c[4] = write_filemark;
1051 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1054 static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1056 idetape_tape_t *tape = drive->driver_data;
1057 struct gendisk *disk = tape->disk;
1058 int load_attempted = 0;
1060 /* Wait for the tape to become ready */
1061 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
1062 timeout += jiffies;
1063 while (time_before(jiffies, timeout)) {
1064 if (ide_do_test_unit_ready(drive, disk) == 0)
1065 return 0;
1066 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
1067 || (tape->asc == 0x3A)) {
1068 /* no media */
1069 if (load_attempted)
1070 return -ENOMEDIUM;
1071 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
1072 load_attempted = 1;
1073 /* not about to be ready */
1074 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1075 (tape->ascq == 1 || tape->ascq == 8)))
1076 return -EIO;
1077 msleep(100);
1079 return -EIO;
1082 static int idetape_flush_tape_buffers(ide_drive_t *drive)
1084 struct ide_tape_obj *tape = drive->driver_data;
1085 struct ide_atapi_pc pc;
1086 int rc;
1088 idetape_create_write_filemark_cmd(drive, &pc, 0);
1089 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
1090 if (rc)
1091 return rc;
1092 idetape_wait_ready(drive, 60 * 5 * HZ);
1093 return 0;
1096 static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
1098 ide_init_pc(pc);
1099 pc->c[0] = READ_POSITION;
1100 pc->req_xfer = 20;
1103 static int idetape_read_position(ide_drive_t *drive)
1105 idetape_tape_t *tape = drive->driver_data;
1106 struct ide_atapi_pc pc;
1107 int position;
1109 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1111 idetape_create_read_position_cmd(&pc);
1112 if (ide_queue_pc_tail(drive, tape->disk, &pc))
1113 return -1;
1114 position = tape->first_frame;
1115 return position;
1118 static void idetape_create_locate_cmd(ide_drive_t *drive,
1119 struct ide_atapi_pc *pc,
1120 unsigned int block, u8 partition, int skip)
1122 ide_init_pc(pc);
1123 pc->c[0] = POSITION_TO_ELEMENT;
1124 pc->c[1] = 2;
1125 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
1126 pc->c[8] = partition;
1127 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1130 static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
1132 idetape_tape_t *tape = drive->driver_data;
1134 if (tape->chrdev_dir != IDETAPE_DIR_READ)
1135 return;
1137 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
1138 tape->merge_bh_size = 0;
1139 if (tape->merge_bh != NULL) {
1140 ide_tape_kfree_buffer(tape);
1141 tape->merge_bh = NULL;
1144 tape->chrdev_dir = IDETAPE_DIR_NONE;
1148 * Position the tape to the requested block using the LOCATE packet command.
1149 * A READ POSITION command is then issued to check where we are positioned. Like
1150 * all higher level operations, we queue the commands at the tail of the request
1151 * queue and wait for their completion.
1153 static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1154 u8 partition, int skip)
1156 idetape_tape_t *tape = drive->driver_data;
1157 struct gendisk *disk = tape->disk;
1158 int retval;
1159 struct ide_atapi_pc pc;
1161 if (tape->chrdev_dir == IDETAPE_DIR_READ)
1162 __ide_tape_discard_merge_buffer(drive);
1163 idetape_wait_ready(drive, 60 * 5 * HZ);
1164 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
1165 retval = ide_queue_pc_tail(drive, disk, &pc);
1166 if (retval)
1167 return (retval);
1169 idetape_create_read_position_cmd(&pc);
1170 return ide_queue_pc_tail(drive, disk, &pc);
1173 static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
1174 int restore_position)
1176 idetape_tape_t *tape = drive->driver_data;
1177 int seek, position;
1179 __ide_tape_discard_merge_buffer(drive);
1180 if (restore_position) {
1181 position = idetape_read_position(drive);
1182 seek = position > 0 ? position : 0;
1183 if (idetape_position_tape(drive, seek, 0, 0)) {
1184 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
1185 " %s\n", tape->name, __func__);
1186 return;
1192 * Generate a read/write request for the block device interface and wait for it
1193 * to be serviced.
1195 static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1196 struct idetape_bh *bh)
1198 idetape_tape_t *tape = drive->driver_data;
1199 struct request *rq;
1200 int ret, errors;
1202 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1204 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1205 rq->cmd_type = REQ_TYPE_SPECIAL;
1206 rq->cmd[13] = cmd;
1207 rq->rq_disk = tape->disk;
1208 rq->special = (void *)bh;
1209 rq->sector = tape->first_frame;
1210 rq->nr_sectors = blocks;
1211 rq->current_nr_sectors = blocks;
1212 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1214 errors = rq->errors;
1215 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1216 blk_put_request(rq);
1218 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1219 return 0;
1221 if (tape->merge_bh)
1222 idetape_init_merge_buffer(tape);
1223 if (errors == IDETAPE_ERROR_GENERAL)
1224 return -EIO;
1225 return ret;
1228 static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
1230 ide_init_pc(pc);
1231 pc->c[0] = INQUIRY;
1232 pc->c[4] = 254;
1233 pc->req_xfer = 254;
1236 static void idetape_create_rewind_cmd(ide_drive_t *drive,
1237 struct ide_atapi_pc *pc)
1239 ide_init_pc(pc);
1240 pc->c[0] = REZERO_UNIT;
1241 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1244 static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
1246 ide_init_pc(pc);
1247 pc->c[0] = ERASE;
1248 pc->c[1] = 1;
1249 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1252 static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
1254 ide_init_pc(pc);
1255 pc->c[0] = SPACE;
1256 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
1257 pc->c[1] = cmd;
1258 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1261 /* Queue up a character device originated write request. */
1262 static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
1264 idetape_tape_t *tape = drive->driver_data;
1266 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1268 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1269 blocks, tape->merge_bh);
1272 static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
1274 idetape_tape_t *tape = drive->driver_data;
1275 int blocks, min;
1276 struct idetape_bh *bh;
1278 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1279 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
1280 " but we are not writing.\n");
1281 return;
1283 if (tape->merge_bh_size > tape->buffer_size) {
1284 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
1285 tape->merge_bh_size = tape->buffer_size;
1287 if (tape->merge_bh_size) {
1288 blocks = tape->merge_bh_size / tape->blk_size;
1289 if (tape->merge_bh_size % tape->blk_size) {
1290 unsigned int i;
1292 blocks++;
1293 i = tape->blk_size - tape->merge_bh_size %
1294 tape->blk_size;
1295 bh = tape->bh->b_reqnext;
1296 while (bh) {
1297 atomic_set(&bh->b_count, 0);
1298 bh = bh->b_reqnext;
1300 bh = tape->bh;
1301 while (i) {
1302 if (bh == NULL) {
1303 printk(KERN_INFO "ide-tape: bug,"
1304 " bh NULL\n");
1305 break;
1307 min = min(i, (unsigned int)(bh->b_size -
1308 atomic_read(&bh->b_count)));
1309 memset(bh->b_data + atomic_read(&bh->b_count),
1310 0, min);
1311 atomic_add(min, &bh->b_count);
1312 i -= min;
1313 bh = bh->b_reqnext;
1316 (void) idetape_add_chrdev_write_request(drive, blocks);
1317 tape->merge_bh_size = 0;
1319 if (tape->merge_bh != NULL) {
1320 ide_tape_kfree_buffer(tape);
1321 tape->merge_bh = NULL;
1323 tape->chrdev_dir = IDETAPE_DIR_NONE;
1326 static int idetape_init_read(ide_drive_t *drive)
1328 idetape_tape_t *tape = drive->driver_data;
1329 int bytes_read;
1331 /* Initialize read operation */
1332 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1333 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
1334 ide_tape_flush_merge_buffer(drive);
1335 idetape_flush_tape_buffers(drive);
1337 if (tape->merge_bh || tape->merge_bh_size) {
1338 printk(KERN_ERR "ide-tape: merge_bh_size should be"
1339 " 0 now\n");
1340 tape->merge_bh_size = 0;
1342 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1343 if (!tape->merge_bh)
1344 return -ENOMEM;
1345 tape->chrdev_dir = IDETAPE_DIR_READ;
1348 * Issue a read 0 command to ensure that DSC handshake is
1349 * switched from completion mode to buffer available mode.
1350 * No point in issuing this if DSC overlap isn't supported, some
1351 * drives (Seagate STT3401A) will return an error.
1353 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1354 bytes_read = idetape_queue_rw_tail(drive,
1355 REQ_IDETAPE_READ, 0,
1356 tape->merge_bh);
1357 if (bytes_read < 0) {
1358 ide_tape_kfree_buffer(tape);
1359 tape->merge_bh = NULL;
1360 tape->chrdev_dir = IDETAPE_DIR_NONE;
1361 return bytes_read;
1366 return 0;
1369 /* called from idetape_chrdev_read() to service a chrdev read request. */
1370 static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
1372 idetape_tape_t *tape = drive->driver_data;
1374 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
1376 /* If we are at a filemark, return a read length of 0 */
1377 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1378 return 0;
1380 idetape_init_read(drive);
1382 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
1383 tape->merge_bh);
1386 static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
1388 idetape_tape_t *tape = drive->driver_data;
1389 struct idetape_bh *bh;
1390 int blocks;
1392 while (bcount) {
1393 unsigned int count;
1395 bh = tape->merge_bh;
1396 count = min(tape->buffer_size, bcount);
1397 bcount -= count;
1398 blocks = count / tape->blk_size;
1399 while (count) {
1400 atomic_set(&bh->b_count,
1401 min(count, (unsigned int)bh->b_size));
1402 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1403 count -= atomic_read(&bh->b_count);
1404 bh = bh->b_reqnext;
1406 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
1407 tape->merge_bh);
1412 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1413 * currently support only one partition.
1415 static int idetape_rewind_tape(ide_drive_t *drive)
1417 struct ide_tape_obj *tape = drive->driver_data;
1418 struct gendisk *disk = tape->disk;
1419 int retval;
1420 struct ide_atapi_pc pc;
1422 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1424 idetape_create_rewind_cmd(drive, &pc);
1425 retval = ide_queue_pc_tail(drive, disk, &pc);
1426 if (retval)
1427 return retval;
1429 idetape_create_read_position_cmd(&pc);
1430 retval = ide_queue_pc_tail(drive, disk, &pc);
1431 if (retval)
1432 return retval;
1433 return 0;
1436 /* mtio.h compatible commands should be issued to the chrdev interface. */
1437 static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1438 unsigned long arg)
1440 idetape_tape_t *tape = drive->driver_data;
1441 void __user *argp = (void __user *)arg;
1443 struct idetape_config {
1444 int dsc_rw_frequency;
1445 int dsc_media_access_frequency;
1446 int nr_stages;
1447 } config;
1449 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1451 switch (cmd) {
1452 case 0x0340:
1453 if (copy_from_user(&config, argp, sizeof(config)))
1454 return -EFAULT;
1455 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
1456 break;
1457 case 0x0350:
1458 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
1459 config.nr_stages = 1;
1460 if (copy_to_user(argp, &config, sizeof(config)))
1461 return -EFAULT;
1462 break;
1463 default:
1464 return -EIO;
1466 return 0;
1469 static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1470 int mt_count)
1472 idetape_tape_t *tape = drive->driver_data;
1473 struct gendisk *disk = tape->disk;
1474 struct ide_atapi_pc pc;
1475 int retval, count = 0;
1476 int sprev = !!(tape->caps[4] & 0x20);
1478 if (mt_count == 0)
1479 return 0;
1480 if (MTBSF == mt_op || MTBSFM == mt_op) {
1481 if (!sprev)
1482 return -EIO;
1483 mt_count = -mt_count;
1486 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
1487 tape->merge_bh_size = 0;
1488 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1489 ++count;
1490 ide_tape_discard_merge_buffer(drive, 0);
1493 switch (mt_op) {
1494 case MTFSF:
1495 case MTBSF:
1496 idetape_create_space_cmd(&pc, mt_count - count,
1497 IDETAPE_SPACE_OVER_FILEMARK);
1498 return ide_queue_pc_tail(drive, disk, &pc);
1499 case MTFSFM:
1500 case MTBSFM:
1501 if (!sprev)
1502 return -EIO;
1503 retval = idetape_space_over_filemarks(drive, MTFSF,
1504 mt_count - count);
1505 if (retval)
1506 return retval;
1507 count = (MTBSFM == mt_op ? 1 : -1);
1508 return idetape_space_over_filemarks(drive, MTFSF, count);
1509 default:
1510 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1511 mt_op);
1512 return -EIO;
1517 * Our character device read / write functions.
1519 * The tape is optimized to maximize throughput when it is transferring an
1520 * integral number of the "continuous transfer limit", which is a parameter of
1521 * the specific tape (26kB on my particular tape, 32kB for Onstream).
1523 * As of version 1.3 of the driver, the character device provides an abstract
1524 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1525 * same backup/restore procedure is supported. The driver will internally
1526 * convert the requests to the recommended transfer unit, so that an unmatch
1527 * between the user's block size to the recommended size will only result in a
1528 * (slightly) increased driver overhead, but will no longer hit performance.
1529 * This is not applicable to Onstream.
1531 static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1532 size_t count, loff_t *ppos)
1534 struct ide_tape_obj *tape = file->private_data;
1535 ide_drive_t *drive = tape->drive;
1536 ssize_t bytes_read, temp, actually_read = 0, rc;
1537 ssize_t ret = 0;
1538 u16 ctl = *(u16 *)&tape->caps[12];
1540 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1542 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1543 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
1544 if (count > tape->blk_size &&
1545 (count % tape->blk_size) == 0)
1546 tape->user_bs_factor = count / tape->blk_size;
1548 rc = idetape_init_read(drive);
1549 if (rc < 0)
1550 return rc;
1551 if (count == 0)
1552 return (0);
1553 if (tape->merge_bh_size) {
1554 actually_read = min((unsigned int)(tape->merge_bh_size),
1555 (unsigned int)count);
1556 if (idetape_copy_stage_to_user(tape, buf, actually_read))
1557 ret = -EFAULT;
1558 buf += actually_read;
1559 tape->merge_bh_size -= actually_read;
1560 count -= actually_read;
1562 while (count >= tape->buffer_size) {
1563 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
1564 if (bytes_read <= 0)
1565 goto finish;
1566 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
1567 ret = -EFAULT;
1568 buf += bytes_read;
1569 count -= bytes_read;
1570 actually_read += bytes_read;
1572 if (count) {
1573 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
1574 if (bytes_read <= 0)
1575 goto finish;
1576 temp = min((unsigned long)count, (unsigned long)bytes_read);
1577 if (idetape_copy_stage_to_user(tape, buf, temp))
1578 ret = -EFAULT;
1579 actually_read += temp;
1580 tape->merge_bh_size = bytes_read-temp;
1582 finish:
1583 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
1584 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1586 idetape_space_over_filemarks(drive, MTFSF, 1);
1587 return 0;
1590 return ret ? ret : actually_read;
1593 static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
1594 size_t count, loff_t *ppos)
1596 struct ide_tape_obj *tape = file->private_data;
1597 ide_drive_t *drive = tape->drive;
1598 ssize_t actually_written = 0;
1599 ssize_t ret = 0;
1600 u16 ctl = *(u16 *)&tape->caps[12];
1602 /* The drive is write protected. */
1603 if (tape->write_prot)
1604 return -EACCES;
1606 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1608 /* Initialize write operation */
1609 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1610 if (tape->chrdev_dir == IDETAPE_DIR_READ)
1611 ide_tape_discard_merge_buffer(drive, 1);
1612 if (tape->merge_bh || tape->merge_bh_size) {
1613 printk(KERN_ERR "ide-tape: merge_bh_size "
1614 "should be 0 now\n");
1615 tape->merge_bh_size = 0;
1617 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1618 if (!tape->merge_bh)
1619 return -ENOMEM;
1620 tape->chrdev_dir = IDETAPE_DIR_WRITE;
1621 idetape_init_merge_buffer(tape);
1624 * Issue a write 0 command to ensure that DSC handshake is
1625 * switched from completion mode to buffer available mode. No
1626 * point in issuing this if DSC overlap isn't supported, some
1627 * drives (Seagate STT3401A) will return an error.
1629 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1630 ssize_t retval = idetape_queue_rw_tail(drive,
1631 REQ_IDETAPE_WRITE, 0,
1632 tape->merge_bh);
1633 if (retval < 0) {
1634 ide_tape_kfree_buffer(tape);
1635 tape->merge_bh = NULL;
1636 tape->chrdev_dir = IDETAPE_DIR_NONE;
1637 return retval;
1641 if (count == 0)
1642 return (0);
1643 if (tape->merge_bh_size) {
1644 if (tape->merge_bh_size >= tape->buffer_size) {
1645 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
1646 tape->merge_bh_size = 0;
1648 actually_written = min((unsigned int)
1649 (tape->buffer_size - tape->merge_bh_size),
1650 (unsigned int)count);
1651 if (idetape_copy_stage_from_user(tape, buf, actually_written))
1652 ret = -EFAULT;
1653 buf += actually_written;
1654 tape->merge_bh_size += actually_written;
1655 count -= actually_written;
1657 if (tape->merge_bh_size == tape->buffer_size) {
1658 ssize_t retval;
1659 tape->merge_bh_size = 0;
1660 retval = idetape_add_chrdev_write_request(drive, ctl);
1661 if (retval <= 0)
1662 return (retval);
1665 while (count >= tape->buffer_size) {
1666 ssize_t retval;
1667 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
1668 ret = -EFAULT;
1669 buf += tape->buffer_size;
1670 count -= tape->buffer_size;
1671 retval = idetape_add_chrdev_write_request(drive, ctl);
1672 actually_written += tape->buffer_size;
1673 if (retval <= 0)
1674 return (retval);
1676 if (count) {
1677 actually_written += count;
1678 if (idetape_copy_stage_from_user(tape, buf, count))
1679 ret = -EFAULT;
1680 tape->merge_bh_size += count;
1682 return ret ? ret : actually_written;
1685 static int idetape_write_filemark(ide_drive_t *drive)
1687 struct ide_tape_obj *tape = drive->driver_data;
1688 struct ide_atapi_pc pc;
1690 /* Write a filemark */
1691 idetape_create_write_filemark_cmd(drive, &pc, 1);
1692 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
1693 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1694 return -EIO;
1696 return 0;
1700 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1701 * requested.
1703 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1704 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
1705 * usually not supported.
1707 * The following commands are currently not supported:
1709 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1710 * MT_ST_WRITE_THRESHOLD.
1712 static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
1714 idetape_tape_t *tape = drive->driver_data;
1715 struct gendisk *disk = tape->disk;
1716 struct ide_atapi_pc pc;
1717 int i, retval;
1719 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1720 mt_op, mt_count);
1722 switch (mt_op) {
1723 case MTFSF:
1724 case MTFSFM:
1725 case MTBSF:
1726 case MTBSFM:
1727 if (!mt_count)
1728 return 0;
1729 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1730 default:
1731 break;
1734 switch (mt_op) {
1735 case MTWEOF:
1736 if (tape->write_prot)
1737 return -EACCES;
1738 ide_tape_discard_merge_buffer(drive, 1);
1739 for (i = 0; i < mt_count; i++) {
1740 retval = idetape_write_filemark(drive);
1741 if (retval)
1742 return retval;
1744 return 0;
1745 case MTREW:
1746 ide_tape_discard_merge_buffer(drive, 0);
1747 if (idetape_rewind_tape(drive))
1748 return -EIO;
1749 return 0;
1750 case MTLOAD:
1751 ide_tape_discard_merge_buffer(drive, 0);
1752 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
1753 case MTUNLOAD:
1754 case MTOFFL:
1756 * If door is locked, attempt to unlock before
1757 * attempting to eject.
1759 if (tape->door_locked) {
1760 if (!ide_set_media_lock(drive, disk, 0))
1761 tape->door_locked = DOOR_UNLOCKED;
1763 ide_tape_discard_merge_buffer(drive, 0);
1764 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
1765 if (!retval)
1766 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
1767 return retval;
1768 case MTNOP:
1769 ide_tape_discard_merge_buffer(drive, 0);
1770 return idetape_flush_tape_buffers(drive);
1771 case MTRETEN:
1772 ide_tape_discard_merge_buffer(drive, 0);
1773 return ide_do_start_stop(drive, disk,
1774 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
1775 case MTEOM:
1776 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
1777 return ide_queue_pc_tail(drive, disk, &pc);
1778 case MTERASE:
1779 (void)idetape_rewind_tape(drive);
1780 idetape_create_erase_cmd(&pc);
1781 return ide_queue_pc_tail(drive, disk, &pc);
1782 case MTSETBLK:
1783 if (mt_count) {
1784 if (mt_count < tape->blk_size ||
1785 mt_count % tape->blk_size)
1786 return -EIO;
1787 tape->user_bs_factor = mt_count / tape->blk_size;
1788 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
1789 } else
1790 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
1791 return 0;
1792 case MTSEEK:
1793 ide_tape_discard_merge_buffer(drive, 0);
1794 return idetape_position_tape(drive,
1795 mt_count * tape->user_bs_factor, tape->partition, 0);
1796 case MTSETPART:
1797 ide_tape_discard_merge_buffer(drive, 0);
1798 return idetape_position_tape(drive, 0, mt_count, 0);
1799 case MTFSR:
1800 case MTBSR:
1801 case MTLOCK:
1802 retval = ide_set_media_lock(drive, disk, 1);
1803 if (retval)
1804 return retval;
1805 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1806 return 0;
1807 case MTUNLOCK:
1808 retval = ide_set_media_lock(drive, disk, 0);
1809 if (retval)
1810 return retval;
1811 tape->door_locked = DOOR_UNLOCKED;
1812 return 0;
1813 default:
1814 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1815 mt_op);
1816 return -EIO;
1821 * Our character device ioctls. General mtio.h magnetic io commands are
1822 * supported here, and not in the corresponding block interface. Our own
1823 * ide-tape ioctls are supported on both interfaces.
1825 static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1826 unsigned int cmd, unsigned long arg)
1828 struct ide_tape_obj *tape = file->private_data;
1829 ide_drive_t *drive = tape->drive;
1830 struct mtop mtop;
1831 struct mtget mtget;
1832 struct mtpos mtpos;
1833 int block_offset = 0, position = tape->first_frame;
1834 void __user *argp = (void __user *)arg;
1836 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
1838 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
1839 ide_tape_flush_merge_buffer(drive);
1840 idetape_flush_tape_buffers(drive);
1842 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
1843 block_offset = tape->merge_bh_size /
1844 (tape->blk_size * tape->user_bs_factor);
1845 position = idetape_read_position(drive);
1846 if (position < 0)
1847 return -EIO;
1849 switch (cmd) {
1850 case MTIOCTOP:
1851 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1852 return -EFAULT;
1853 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1854 case MTIOCGET:
1855 memset(&mtget, 0, sizeof(struct mtget));
1856 mtget.mt_type = MT_ISSCSI2;
1857 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1858 mtget.mt_dsreg =
1859 ((tape->blk_size * tape->user_bs_factor)
1860 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
1862 if (tape->drv_write_prot)
1863 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1865 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1866 return -EFAULT;
1867 return 0;
1868 case MTIOCPOS:
1869 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1870 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1871 return -EFAULT;
1872 return 0;
1873 default:
1874 if (tape->chrdev_dir == IDETAPE_DIR_READ)
1875 ide_tape_discard_merge_buffer(drive, 1);
1876 return idetape_blkdev_ioctl(drive, cmd, arg);
1881 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1882 * block size with the reported value.
1884 static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1886 idetape_tape_t *tape = drive->driver_data;
1887 struct ide_atapi_pc pc;
1889 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
1890 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
1891 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
1892 if (tape->blk_size == 0) {
1893 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1894 "block size, assuming 32k\n");
1895 tape->blk_size = 32768;
1897 return;
1899 tape->blk_size = (pc.buf[4 + 5] << 16) +
1900 (pc.buf[4 + 6] << 8) +
1901 pc.buf[4 + 7];
1902 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
1905 static int idetape_chrdev_open(struct inode *inode, struct file *filp)
1907 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1908 ide_drive_t *drive;
1909 idetape_tape_t *tape;
1910 int retval;
1912 if (i >= MAX_HWIFS * MAX_DRIVES)
1913 return -ENXIO;
1915 lock_kernel();
1916 tape = ide_tape_chrdev_get(i);
1917 if (!tape) {
1918 unlock_kernel();
1919 return -ENXIO;
1922 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1925 * We really want to do nonseekable_open(inode, filp); here, but some
1926 * versions of tar incorrectly call lseek on tapes and bail out if that
1927 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1929 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1931 drive = tape->drive;
1933 filp->private_data = tape;
1935 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
1936 retval = -EBUSY;
1937 goto out_put_tape;
1940 retval = idetape_wait_ready(drive, 60 * HZ);
1941 if (retval) {
1942 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
1943 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1944 goto out_put_tape;
1947 idetape_read_position(drive);
1948 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
1949 (void)idetape_rewind_tape(drive);
1951 /* Read block size and write protect status from drive. */
1952 ide_tape_get_bsize_from_bdesc(drive);
1954 /* Set write protect flag if device is opened as read-only. */
1955 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1956 tape->write_prot = 1;
1957 else
1958 tape->write_prot = tape->drv_write_prot;
1960 /* Make sure drive isn't write protected if user wants to write. */
1961 if (tape->write_prot) {
1962 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1963 (filp->f_flags & O_ACCMODE) == O_RDWR) {
1964 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
1965 retval = -EROFS;
1966 goto out_put_tape;
1970 /* Lock the tape drive door so user can't eject. */
1971 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
1972 if (!ide_set_media_lock(drive, tape->disk, 1)) {
1973 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1974 tape->door_locked = DOOR_LOCKED;
1977 unlock_kernel();
1978 return 0;
1980 out_put_tape:
1981 ide_tape_put(tape);
1982 unlock_kernel();
1983 return retval;
1986 static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
1988 idetape_tape_t *tape = drive->driver_data;
1990 ide_tape_flush_merge_buffer(drive);
1991 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1992 if (tape->merge_bh != NULL) {
1993 idetape_pad_zeros(drive, tape->blk_size *
1994 (tape->user_bs_factor - 1));
1995 ide_tape_kfree_buffer(tape);
1996 tape->merge_bh = NULL;
1998 idetape_write_filemark(drive);
1999 idetape_flush_tape_buffers(drive);
2000 idetape_flush_tape_buffers(drive);
2003 static int idetape_chrdev_release(struct inode *inode, struct file *filp)
2005 struct ide_tape_obj *tape = filp->private_data;
2006 ide_drive_t *drive = tape->drive;
2007 unsigned int minor = iminor(inode);
2009 lock_kernel();
2010 tape = drive->driver_data;
2012 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2014 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
2015 idetape_write_release(drive, minor);
2016 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
2017 if (minor < 128)
2018 ide_tape_discard_merge_buffer(drive, 1);
2021 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
2022 (void) idetape_rewind_tape(drive);
2023 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
2024 if (tape->door_locked == DOOR_LOCKED) {
2025 if (!ide_set_media_lock(drive, tape->disk, 0))
2026 tape->door_locked = DOOR_UNLOCKED;
2029 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
2030 ide_tape_put(tape);
2031 unlock_kernel();
2032 return 0;
2035 static void idetape_get_inquiry_results(ide_drive_t *drive)
2037 idetape_tape_t *tape = drive->driver_data;
2038 struct ide_atapi_pc pc;
2039 char fw_rev[4], vendor_id[8], product_id[16];
2041 idetape_create_inquiry_cmd(&pc);
2042 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
2043 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2044 tape->name);
2045 return;
2047 memcpy(vendor_id, &pc.buf[8], 8);
2048 memcpy(product_id, &pc.buf[16], 16);
2049 memcpy(fw_rev, &pc.buf[32], 4);
2051 ide_fixstring(vendor_id, 8, 0);
2052 ide_fixstring(product_id, 16, 0);
2053 ide_fixstring(fw_rev, 4, 0);
2055 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
2056 drive->name, tape->name, vendor_id, product_id, fw_rev);
2060 * Ask the tape about its various parameters. In particular, we will adjust our
2061 * data transfer buffer size to the recommended value as returned by the tape.
2063 static void idetape_get_mode_sense_results(ide_drive_t *drive)
2065 idetape_tape_t *tape = drive->driver_data;
2066 struct ide_atapi_pc pc;
2067 u8 *caps;
2068 u8 speed, max_speed;
2070 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
2071 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
2072 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2073 " some default values\n");
2074 tape->blk_size = 512;
2075 put_unaligned(52, (u16 *)&tape->caps[12]);
2076 put_unaligned(540, (u16 *)&tape->caps[14]);
2077 put_unaligned(6*52, (u16 *)&tape->caps[16]);
2078 return;
2080 caps = pc.buf + 4 + pc.buf[3];
2082 /* convert to host order and save for later use */
2083 speed = be16_to_cpup((__be16 *)&caps[14]);
2084 max_speed = be16_to_cpup((__be16 *)&caps[8]);
2086 *(u16 *)&caps[8] = max_speed;
2087 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2088 *(u16 *)&caps[14] = speed;
2089 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
2091 if (!speed) {
2092 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2093 "(assuming 650KB/sec)\n", drive->name);
2094 *(u16 *)&caps[14] = 650;
2096 if (!max_speed) {
2097 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2098 "(assuming 650KB/sec)\n", drive->name);
2099 *(u16 *)&caps[8] = 650;
2102 memcpy(&tape->caps, caps, 20);
2104 /* device lacks locking support according to capabilities page */
2105 if ((caps[6] & 1) == 0)
2106 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
2108 if (caps[7] & 0x02)
2109 tape->blk_size = 512;
2110 else if (caps[7] & 0x04)
2111 tape->blk_size = 1024;
2114 #ifdef CONFIG_IDE_PROC_FS
2115 #define ide_tape_devset_get(name, field) \
2116 static int get_##name(ide_drive_t *drive) \
2118 idetape_tape_t *tape = drive->driver_data; \
2119 return tape->field; \
2122 #define ide_tape_devset_set(name, field) \
2123 static int set_##name(ide_drive_t *drive, int arg) \
2125 idetape_tape_t *tape = drive->driver_data; \
2126 tape->field = arg; \
2127 return 0; \
2130 #define ide_tape_devset_rw_field(_name, _field) \
2131 ide_tape_devset_get(_name, _field) \
2132 ide_tape_devset_set(_name, _field) \
2133 IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
2135 #define ide_tape_devset_r_field(_name, _field) \
2136 ide_tape_devset_get(_name, _field) \
2137 IDE_DEVSET(_name, 0, get_##_name, NULL)
2139 static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2140 static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2141 static int divf_buffer(ide_drive_t *drive) { return 2; }
2142 static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2144 ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
2146 ide_tape_devset_rw_field(debug_mask, debug_mask);
2147 ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
2149 ide_tape_devset_r_field(avg_speed, avg_speed);
2150 ide_tape_devset_r_field(speed, caps[14]);
2151 ide_tape_devset_r_field(buffer, caps[16]);
2152 ide_tape_devset_r_field(buffer_size, buffer_size);
2154 static const struct ide_proc_devset idetape_settings[] = {
2155 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2156 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2157 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2158 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2159 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2160 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2161 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2162 mulf_tdsc, divf_tdsc),
2163 { NULL },
2165 #endif
2168 * The function below is called to:
2170 * 1. Initialize our various state variables.
2171 * 2. Ask the tape for its capabilities.
2172 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2173 * is chosen based on the recommendation which we received in step 2.
2175 * Note that at this point ide.c already assigned us an irq, so that we can
2176 * queue requests here and wait for their completion.
2178 static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
2180 unsigned long t;
2181 int speed;
2182 int buffer_size;
2183 u16 *ctl = (u16 *)&tape->caps[12];
2185 drive->pc_callback = ide_tape_callback;
2186 drive->pc_update_buffers = idetape_update_buffers;
2187 drive->pc_io_buffers = ide_tape_io_buffers;
2189 spin_lock_init(&tape->lock);
2191 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2193 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2194 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2195 tape->name);
2196 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2199 /* Seagate Travan drives do not support DSC overlap. */
2200 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
2201 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2203 tape->minor = minor;
2204 tape->name[0] = 'h';
2205 tape->name[1] = 't';
2206 tape->name[2] = '0' + minor;
2207 tape->chrdev_dir = IDETAPE_DIR_NONE;
2209 idetape_get_inquiry_results(drive);
2210 idetape_get_mode_sense_results(drive);
2211 ide_tape_get_bsize_from_bdesc(drive);
2212 tape->user_bs_factor = 1;
2213 tape->buffer_size = *ctl * tape->blk_size;
2214 while (tape->buffer_size > 0xffff) {
2215 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
2216 *ctl /= 2;
2217 tape->buffer_size = *ctl * tape->blk_size;
2219 buffer_size = tape->buffer_size;
2220 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
2221 if (buffer_size % PAGE_SIZE) {
2222 tape->pages_per_buffer++;
2223 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
2226 /* select the "best" DSC read/write polling freq */
2227 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
2229 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
2232 * Ensure that the number we got makes sense; limit it within
2233 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
2235 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2236 IDETAPE_DSC_RW_MAX);
2237 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
2238 "%lums tDSC%s\n",
2239 drive->name, tape->name, *(u16 *)&tape->caps[14],
2240 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2241 tape->buffer_size / 1024,
2242 tape->best_dsc_rw_freq * 1000 / HZ,
2243 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
2245 ide_proc_register_driver(drive, tape->driver);
2248 static void ide_tape_remove(ide_drive_t *drive)
2250 idetape_tape_t *tape = drive->driver_data;
2252 ide_proc_unregister_driver(drive, tape->driver);
2253 device_del(&tape->dev);
2254 ide_unregister_region(tape->disk);
2256 mutex_lock(&idetape_ref_mutex);
2257 put_device(&tape->dev);
2258 mutex_unlock(&idetape_ref_mutex);
2261 static void ide_tape_release(struct device *dev)
2263 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
2264 ide_drive_t *drive = tape->drive;
2265 struct gendisk *g = tape->disk;
2267 BUG_ON(tape->merge_bh_size);
2269 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2270 drive->driver_data = NULL;
2271 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
2272 device_destroy(idetape_sysfs_class,
2273 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
2274 idetape_devs[tape->minor] = NULL;
2275 g->private_data = NULL;
2276 put_disk(g);
2277 kfree(tape);
2280 #ifdef CONFIG_IDE_PROC_FS
2281 static int proc_idetape_read_name
2282 (char *page, char **start, off_t off, int count, int *eof, void *data)
2284 ide_drive_t *drive = (ide_drive_t *) data;
2285 idetape_tape_t *tape = drive->driver_data;
2286 char *out = page;
2287 int len;
2289 len = sprintf(out, "%s\n", tape->name);
2290 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2293 static ide_proc_entry_t idetape_proc[] = {
2294 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2295 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2296 { NULL, 0, NULL, NULL }
2299 static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2301 return idetape_proc;
2304 static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2306 return idetape_settings;
2308 #endif
2310 static int ide_tape_probe(ide_drive_t *);
2312 static struct ide_driver idetape_driver = {
2313 .gen_driver = {
2314 .owner = THIS_MODULE,
2315 .name = "ide-tape",
2316 .bus = &ide_bus_type,
2318 .probe = ide_tape_probe,
2319 .remove = ide_tape_remove,
2320 .version = IDETAPE_VERSION,
2321 .do_request = idetape_do_request,
2322 .end_request = idetape_end_request,
2323 #ifdef CONFIG_IDE_PROC_FS
2324 .proc_entries = ide_tape_proc_entries,
2325 .proc_devsets = ide_tape_proc_devsets,
2326 #endif
2329 /* Our character device supporting functions, passed to register_chrdev. */
2330 static const struct file_operations idetape_fops = {
2331 .owner = THIS_MODULE,
2332 .read = idetape_chrdev_read,
2333 .write = idetape_chrdev_write,
2334 .ioctl = idetape_chrdev_ioctl,
2335 .open = idetape_chrdev_open,
2336 .release = idetape_chrdev_release,
2339 static int idetape_open(struct block_device *bdev, fmode_t mode)
2341 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
2343 if (!tape)
2344 return -ENXIO;
2346 return 0;
2349 static int idetape_release(struct gendisk *disk, fmode_t mode)
2351 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
2353 ide_tape_put(tape);
2354 return 0;
2357 static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
2358 unsigned int cmd, unsigned long arg)
2360 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
2361 ide_drive_t *drive = tape->drive;
2362 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
2363 if (err == -EINVAL)
2364 err = idetape_blkdev_ioctl(drive, cmd, arg);
2365 return err;
2368 static struct block_device_operations idetape_block_ops = {
2369 .owner = THIS_MODULE,
2370 .open = idetape_open,
2371 .release = idetape_release,
2372 .locked_ioctl = idetape_ioctl,
2375 static int ide_tape_probe(ide_drive_t *drive)
2377 idetape_tape_t *tape;
2378 struct gendisk *g;
2379 int minor;
2381 if (!strstr("ide-tape", drive->driver_req))
2382 goto failed;
2384 if (drive->media != ide_tape)
2385 goto failed;
2387 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2388 ide_check_atapi_device(drive, DRV_NAME) == 0) {
2389 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2390 " the driver\n", drive->name);
2391 goto failed;
2393 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
2394 if (tape == NULL) {
2395 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2396 drive->name);
2397 goto failed;
2400 g = alloc_disk(1 << PARTN_BITS);
2401 if (!g)
2402 goto out_free_tape;
2404 ide_init_disk(g, drive);
2406 tape->dev.parent = &drive->gendev;
2407 tape->dev.release = ide_tape_release;
2408 dev_set_name(&tape->dev, dev_name(&drive->gendev));
2410 if (device_register(&tape->dev))
2411 goto out_free_disk;
2413 tape->drive = drive;
2414 tape->driver = &idetape_driver;
2415 tape->disk = g;
2417 g->private_data = &tape->driver;
2419 drive->driver_data = tape;
2421 mutex_lock(&idetape_ref_mutex);
2422 for (minor = 0; idetape_devs[minor]; minor++)
2424 idetape_devs[minor] = tape;
2425 mutex_unlock(&idetape_ref_mutex);
2427 idetape_setup(drive, tape, minor);
2429 device_create(idetape_sysfs_class, &drive->gendev,
2430 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2431 device_create(idetape_sysfs_class, &drive->gendev,
2432 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2433 "n%s", tape->name);
2435 g->fops = &idetape_block_ops;
2436 ide_register_region(g);
2438 return 0;
2440 out_free_disk:
2441 put_disk(g);
2442 out_free_tape:
2443 kfree(tape);
2444 failed:
2445 return -ENODEV;
2448 static void __exit idetape_exit(void)
2450 driver_unregister(&idetape_driver.gen_driver);
2451 class_destroy(idetape_sysfs_class);
2452 unregister_chrdev(IDETAPE_MAJOR, "ht");
2455 static int __init idetape_init(void)
2457 int error = 1;
2458 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2459 if (IS_ERR(idetape_sysfs_class)) {
2460 idetape_sysfs_class = NULL;
2461 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2462 error = -EBUSY;
2463 goto out;
2466 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
2467 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2468 " interface\n");
2469 error = -EBUSY;
2470 goto out_free_class;
2473 error = driver_register(&idetape_driver.gen_driver);
2474 if (error)
2475 goto out_free_driver;
2477 return 0;
2479 out_free_driver:
2480 driver_unregister(&idetape_driver.gen_driver);
2481 out_free_class:
2482 class_destroy(idetape_sysfs_class);
2483 out:
2484 return error;
2487 MODULE_ALIAS("ide:*m-tape*");
2488 module_init(idetape_init);
2489 module_exit(idetape_exit);
2490 MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
2491 MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2492 MODULE_LICENSE("GPL");