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