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