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