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