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