]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/ide/ide-tape.c
ide: remove now unused ide_pci_create_host_proc()
[net-next-2.6.git] / drivers / ide / ide-tape.c
CommitLineData
1da177e4 1/*
5ce78af4
BP
2 * IDE ATAPI streaming tape driver.
3 *
59bca8cc
BZ
4 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
1da177e4 6 *
1da177e4
LT
7 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
1da177e4 13 *
5ce78af4
BP
14 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
1da177e4
LT
16 */
17
dfe79936 18#define IDETAPE_VERSION "1.20"
1da177e4 19
1da177e4
LT
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/string.h>
23#include <linux/kernel.h>
24#include <linux/delay.h>
25#include <linux/timer.h>
26#include <linux/mm.h>
27#include <linux/interrupt.h>
9bae1ff3 28#include <linux/jiffies.h>
1da177e4 29#include <linux/major.h>
1da177e4
LT
30#include <linux/errno.h>
31#include <linux/genhd.h>
32#include <linux/slab.h>
33#include <linux/pci.h>
34#include <linux/ide.h>
35#include <linux/smp_lock.h>
36#include <linux/completion.h>
37#include <linux/bitops.h>
cf8b8975 38#include <linux/mutex.h>
90699ce2 39#include <scsi/scsi.h>
1da177e4
LT
40
41#include <asm/byteorder.h>
c837cfa5
BP
42#include <linux/irq.h>
43#include <linux/uaccess.h>
44#include <linux/io.h>
1da177e4 45#include <asm/unaligned.h>
1da177e4
LT
46#include <linux/mtio.h>
47
8004a8c9
BP
48enum {
49 /* output errors only */
50 DBG_ERR = (1 << 0),
51 /* output all sense key/asc */
52 DBG_SENSE = (1 << 1),
53 /* info regarding all chrdev-related procedures */
54 DBG_CHRDEV = (1 << 2),
55 /* all remaining procedures */
56 DBG_PROCS = (1 << 3),
57 /* buffer alloc info (pc_stack & rq_stack) */
58 DBG_PCRQ_STACK = (1 << 4),
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
83/*
3c98bf34
BP
84 * With each packet command, we allocate a buffer of IDETAPE_PC_BUFFER_SIZE
85 * bytes. This is used for several packet commands (Not for READ/WRITE commands)
1da177e4
LT
86 */
87#define IDETAPE_PC_BUFFER_SIZE 256
88
89/*
90 * In various places in the driver, we need to allocate storage
91 * for packet commands and requests, which will remain valid while
92 * we leave the driver to wait for an interrupt or a timeout event.
93 */
94#define IDETAPE_PC_STACK (10 + IDETAPE_MAX_PC_RETRIES)
95
96/*
97 * Some drives (for example, Seagate STT3401A Travan) require a very long
98 * timeout, because they don't return an interrupt or clear their busy bit
99 * until after the command completes (even retension commands).
100 */
101#define IDETAPE_WAIT_CMD (900*HZ)
102
103/*
3c98bf34
BP
104 * The following parameter is used to select the point in the internal tape fifo
105 * in which we will start to refill the buffer. Decreasing the following
106 * parameter will improve the system's latency and interactive response, while
107 * using a high value might improve system throughput.
1da177e4 108 */
3c98bf34 109#define IDETAPE_FIFO_THRESHOLD 2
1da177e4
LT
110
111/*
3c98bf34 112 * DSC polling parameters.
1da177e4 113 *
3c98bf34
BP
114 * Polling for DSC (a single bit in the status register) is a very important
115 * function in ide-tape. There are two cases in which we poll for DSC:
1da177e4 116 *
3c98bf34
BP
117 * 1. Before a read/write packet command, to ensure that we can transfer data
118 * from/to the tape's data buffers, without causing an actual media access.
119 * In case the tape is not ready yet, we take out our request from the device
120 * request queue, so that ide.c could service requests from the other device
121 * on the same interface in the meantime.
1da177e4 122 *
3c98bf34
BP
123 * 2. After the successful initialization of a "media access packet command",
124 * which is a command that can take a long time to complete (the interval can
125 * range from several seconds to even an hour). Again, we postpone our request
126 * in the middle to free the bus for the other device. The polling frequency
127 * here should be lower than the read/write frequency since those media access
128 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
129 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
130 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
1da177e4 131 *
3c98bf34
BP
132 * We also set a timeout for the timer, in case something goes wrong. The
133 * timeout should be longer then the maximum execution time of a tape operation.
1da177e4 134 */
3c98bf34
BP
135
136/* DSC timings. */
1da177e4
LT
137#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
138#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
139#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
140#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
141#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
142#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
143#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
144
145/*************************** End of tunable parameters ***********************/
146
3c98bf34 147/* Read/Write error simulation */
1da177e4
LT
148#define SIMULATE_ERRORS 0
149
54abf37e
BP
150/* tape directions */
151enum {
152 IDETAPE_DIR_NONE = (1 << 0),
153 IDETAPE_DIR_READ = (1 << 1),
154 IDETAPE_DIR_WRITE = (1 << 2),
155};
1da177e4
LT
156
157struct idetape_bh {
ab057968 158 u32 b_size;
1da177e4
LT
159 atomic_t b_count;
160 struct idetape_bh *b_reqnext;
161 char *b_data;
162};
163
03056b90
BP
164/* Tape door status */
165#define DOOR_UNLOCKED 0
166#define DOOR_LOCKED 1
167#define DOOR_EXPLICITLY_LOCKED 2
168
169/* Some defines for the SPACE command */
170#define IDETAPE_SPACE_OVER_FILEMARK 1
171#define IDETAPE_SPACE_TO_EOD 3
172
173/* Some defines for the LOAD UNLOAD command */
174#define IDETAPE_LU_LOAD_MASK 1
175#define IDETAPE_LU_RETENSION_MASK 2
176#define IDETAPE_LU_EOT_MASK 4
177
178/*
179 * Special requests for our block device strategy routine.
180 *
181 * In order to service a character device command, we add special requests to
182 * the tail of our block device request queue and wait for their completion.
183 */
184
185enum {
186 REQ_IDETAPE_PC1 = (1 << 0), /* packet command (first stage) */
187 REQ_IDETAPE_PC2 = (1 << 1), /* packet command (second stage) */
188 REQ_IDETAPE_READ = (1 << 2),
189 REQ_IDETAPE_WRITE = (1 << 3),
190};
191
192/* Error codes returned in rq->errors to the higher part of the driver. */
193#define IDETAPE_ERROR_GENERAL 101
194#define IDETAPE_ERROR_FILEMARK 102
195#define IDETAPE_ERROR_EOD 103
196
197/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
198#define IDETAPE_BLOCK_DESCRIPTOR 0
199#define IDETAPE_CAPABILITIES_PAGE 0x2a
200
346331f8
BP
201/* Tape flag bits values. */
202enum {
203 IDETAPE_FLAG_IGNORE_DSC = (1 << 0),
204 /* 0 When the tape position is unknown */
205 IDETAPE_FLAG_ADDRESS_VALID = (1 << 1),
206 /* Device already opened */
42d54689 207 IDETAPE_FLAG_BUSY = (1 << 2),
346331f8 208 /* Attempt to auto-detect the current user block size */
42d54689 209 IDETAPE_FLAG_DETECT_BS = (1 << 3),
346331f8 210 /* Currently on a filemark */
42d54689 211 IDETAPE_FLAG_FILEMARK = (1 << 4),
346331f8 212 /* DRQ interrupt device */
42d54689 213 IDETAPE_FLAG_DRQ_INTERRUPT = (1 << 5),
346331f8 214 /* 0 = no tape is loaded, so we don't rewind after ejecting */
42d54689 215 IDETAPE_FLAG_MEDIUM_PRESENT = (1 << 6),
346331f8
BP
216};
217
3c98bf34 218/* A pipeline stage. */
1da177e4
LT
219typedef struct idetape_stage_s {
220 struct request rq; /* The corresponding request */
221 struct idetape_bh *bh; /* The data buffers */
222 struct idetape_stage_s *next; /* Pointer to the next stage */
223} idetape_stage_t;
224
1da177e4 225/*
3c98bf34
BP
226 * Most of our global data which we need to save even as we leave the driver due
227 * to an interrupt or a timer event is stored in the struct defined below.
1da177e4
LT
228 */
229typedef struct ide_tape_obj {
230 ide_drive_t *drive;
231 ide_driver_t *driver;
232 struct gendisk *disk;
233 struct kref kref;
234
235 /*
236 * Since a typical character device operation requires more
237 * than one packet command, we provide here enough memory
238 * for the maximum of interconnected packet commands.
239 * The packet commands are stored in the circular array pc_stack.
240 * pc_stack_index points to the last used entry, and warps around
241 * to the start when we get to the last array entry.
242 *
243 * pc points to the current processed packet command.
244 *
245 * failed_pc points to the last failed packet command, or contains
246 * NULL if we do not need to retry any packet command. This is
247 * required since an additional packet command is needed before the
248 * retry, to get detailed information on what went wrong.
249 */
250 /* Current packet command */
d236d74c 251 struct ide_atapi_pc *pc;
1da177e4 252 /* Last failed packet command */
d236d74c 253 struct ide_atapi_pc *failed_pc;
1da177e4 254 /* Packet command stack */
d236d74c 255 struct ide_atapi_pc pc_stack[IDETAPE_PC_STACK];
1da177e4
LT
256 /* Next free packet command storage space */
257 int pc_stack_index;
258 struct request rq_stack[IDETAPE_PC_STACK];
259 /* We implement a circular array */
260 int rq_stack_index;
261
262 /*
3c98bf34 263 * DSC polling variables.
1da177e4 264 *
3c98bf34
BP
265 * While polling for DSC we use postponed_rq to postpone the current
266 * request so that ide.c will be able to service pending requests on the
267 * other device. Note that at most we will have only one DSC (usually
5bd50dc6 268 * data transfer) request in the device request queue.
1da177e4
LT
269 */
270 struct request *postponed_rq;
271 /* The time in which we started polling for DSC */
272 unsigned long dsc_polling_start;
273 /* Timer used to poll for dsc */
274 struct timer_list dsc_timer;
275 /* Read/Write dsc polling frequency */
54bb2074
BP
276 unsigned long best_dsc_rw_freq;
277 unsigned long dsc_poll_freq;
1da177e4
LT
278 unsigned long dsc_timeout;
279
3c98bf34 280 /* Read position information */
1da177e4
LT
281 u8 partition;
282 /* Current block */
54bb2074 283 unsigned int first_frame;
1da177e4 284
3c98bf34 285 /* Last error information */
1da177e4
LT
286 u8 sense_key, asc, ascq;
287
3c98bf34 288 /* Character device operation */
1da177e4
LT
289 unsigned int minor;
290 /* device name */
291 char name[4];
292 /* Current character device data transfer direction */
54abf37e 293 u8 chrdev_dir;
1da177e4 294
54bb2074
BP
295 /* tape block size, usually 512 or 1024 bytes */
296 unsigned short blk_size;
1da177e4 297 int user_bs_factor;
b6422013 298
1da177e4 299 /* Copy of the tape's Capabilities and Mechanical Page */
b6422013 300 u8 caps[20];
1da177e4
LT
301
302 /*
3c98bf34 303 * Active data transfer request parameters.
1da177e4 304 *
3c98bf34
BP
305 * At most, there is only one ide-tape originated data transfer request
306 * in the device request queue. This allows ide.c to easily service
307 * requests from the other device when we postpone our active request.
1da177e4 308 */
83042b24 309
3c98bf34 310 /* Data buffer size chosen based on the tape's recommendation */
f73850a3 311 int buffer_size;
1da177e4
LT
312 idetape_stage_t *merge_stage;
313 int merge_stage_size;
314 struct idetape_bh *bh;
315 char *b_data;
316 int b_count;
3c98bf34 317
a997a435 318 int pages_per_buffer;
1da177e4
LT
319 /* Wasted space in each stage */
320 int excess_bh_size;
321
322 /* Status/Action flags: long for set_bit */
323 unsigned long flags;
324 /* protects the ide-tape queue */
54bb2074 325 spinlock_t lock;
1da177e4 326
3c98bf34 327 /* Measures average tape speed */
1da177e4
LT
328 unsigned long avg_time;
329 int avg_size;
330 int avg_speed;
331
1da177e4
LT
332 /* the door is currently locked */
333 int door_locked;
334 /* the tape hardware is write protected */
335 char drv_write_prot;
336 /* the tape is write protected (hardware or opened as read-only) */
337 char write_prot;
338
8004a8c9 339 u32 debug_mask;
1da177e4
LT
340} idetape_tape_t;
341
cf8b8975 342static DEFINE_MUTEX(idetape_ref_mutex);
1da177e4 343
d5dee80a
WD
344static struct class *idetape_sysfs_class;
345
1da177e4
LT
346#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
347
348#define ide_tape_g(disk) \
349 container_of((disk)->private_data, struct ide_tape_obj, driver)
350
351static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
352{
353 struct ide_tape_obj *tape = NULL;
354
cf8b8975 355 mutex_lock(&idetape_ref_mutex);
1da177e4
LT
356 tape = ide_tape_g(disk);
357 if (tape)
358 kref_get(&tape->kref);
cf8b8975 359 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
360 return tape;
361}
362
363static void ide_tape_release(struct kref *);
364
365static void ide_tape_put(struct ide_tape_obj *tape)
366{
cf8b8975 367 mutex_lock(&idetape_ref_mutex);
1da177e4 368 kref_put(&tape->kref, ide_tape_release);
cf8b8975 369 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
370}
371
1da177e4 372/*
3c98bf34
BP
373 * The variables below are used for the character device interface. Additional
374 * state variables are defined in our ide_drive_t structure.
1da177e4 375 */
5a04cfa9 376static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
1da177e4
LT
377
378#define ide_tape_f(file) ((file)->private_data)
379
380static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
381{
382 struct ide_tape_obj *tape = NULL;
383
cf8b8975 384 mutex_lock(&idetape_ref_mutex);
1da177e4
LT
385 tape = idetape_devs[i];
386 if (tape)
387 kref_get(&tape->kref);
cf8b8975 388 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
389 return tape;
390}
391
d236d74c 392static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
5a04cfa9 393 unsigned int bcount)
1da177e4
LT
394{
395 struct idetape_bh *bh = pc->bh;
396 int count;
397
398 while (bcount) {
1da177e4
LT
399 if (bh == NULL) {
400 printk(KERN_ERR "ide-tape: bh == NULL in "
401 "idetape_input_buffers\n");
7616c0ad 402 ide_atapi_discard_data(drive, bcount);
1da177e4
LT
403 return;
404 }
5a04cfa9
BP
405 count = min(
406 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
407 bcount);
408 HWIF(drive)->atapi_input_bytes(drive, bh->b_data +
409 atomic_read(&bh->b_count), count);
1da177e4
LT
410 bcount -= count;
411 atomic_add(count, &bh->b_count);
412 if (atomic_read(&bh->b_count) == bh->b_size) {
413 bh = bh->b_reqnext;
414 if (bh)
415 atomic_set(&bh->b_count, 0);
416 }
417 }
418 pc->bh = bh;
419}
420
d236d74c 421static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
5a04cfa9 422 unsigned int bcount)
1da177e4
LT
423{
424 struct idetape_bh *bh = pc->bh;
425 int count;
426
427 while (bcount) {
1da177e4 428 if (bh == NULL) {
5a04cfa9
BP
429 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
430 __func__);
1da177e4
LT
431 return;
432 }
1da177e4
LT
433 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
434 HWIF(drive)->atapi_output_bytes(drive, pc->b_data, count);
435 bcount -= count;
436 pc->b_data += count;
437 pc->b_count -= count;
438 if (!pc->b_count) {
5a04cfa9
BP
439 bh = bh->b_reqnext;
440 pc->bh = bh;
1da177e4
LT
441 if (bh) {
442 pc->b_data = bh->b_data;
443 pc->b_count = atomic_read(&bh->b_count);
444 }
445 }
446 }
447}
448
d236d74c 449static void idetape_update_buffers(struct ide_atapi_pc *pc)
1da177e4
LT
450{
451 struct idetape_bh *bh = pc->bh;
452 int count;
d236d74c 453 unsigned int bcount = pc->xferred;
1da177e4 454
346331f8 455 if (pc->flags & PC_FLAG_WRITING)
1da177e4
LT
456 return;
457 while (bcount) {
1da177e4 458 if (bh == NULL) {
5a04cfa9
BP
459 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
460 __func__);
1da177e4
LT
461 return;
462 }
1da177e4
LT
463 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
464 atomic_set(&bh->b_count, count);
465 if (atomic_read(&bh->b_count) == bh->b_size)
466 bh = bh->b_reqnext;
467 bcount -= count;
468 }
469 pc->bh = bh;
470}
471
472/*
473 * idetape_next_pc_storage returns a pointer to a place in which we can
474 * safely store a packet command, even though we intend to leave the
475 * driver. A storage space for a maximum of IDETAPE_PC_STACK packet
476 * commands is allocated at initialization time.
477 */
d236d74c 478static struct ide_atapi_pc *idetape_next_pc_storage(ide_drive_t *drive)
1da177e4
LT
479{
480 idetape_tape_t *tape = drive->driver_data;
481
8004a8c9
BP
482 debug_log(DBG_PCRQ_STACK, "pc_stack_index=%d\n", tape->pc_stack_index);
483
1da177e4 484 if (tape->pc_stack_index == IDETAPE_PC_STACK)
5a04cfa9 485 tape->pc_stack_index = 0;
1da177e4
LT
486 return (&tape->pc_stack[tape->pc_stack_index++]);
487}
488
489/*
490 * idetape_next_rq_storage is used along with idetape_next_pc_storage.
491 * Since we queue packet commands in the request queue, we need to
492 * allocate a request, along with the allocation of a packet command.
493 */
5a04cfa9 494
1da177e4
LT
495/**************************************************************
496 * *
497 * This should get fixed to use kmalloc(.., GFP_ATOMIC) *
498 * followed later on by kfree(). -ml *
499 * *
500 **************************************************************/
5a04cfa9
BP
501
502static struct request *idetape_next_rq_storage(ide_drive_t *drive)
1da177e4
LT
503{
504 idetape_tape_t *tape = drive->driver_data;
505
8004a8c9
BP
506 debug_log(DBG_PCRQ_STACK, "rq_stack_index=%d\n", tape->rq_stack_index);
507
1da177e4 508 if (tape->rq_stack_index == IDETAPE_PC_STACK)
5a04cfa9 509 tape->rq_stack_index = 0;
1da177e4
LT
510 return (&tape->rq_stack[tape->rq_stack_index++]);
511}
512
d236d74c 513static void idetape_init_pc(struct ide_atapi_pc *pc)
1da177e4
LT
514{
515 memset(pc->c, 0, 12);
516 pc->retries = 0;
517 pc->flags = 0;
d236d74c
BP
518 pc->req_xfer = 0;
519 pc->buf = pc->pc_buf;
520 pc->buf_size = IDETAPE_PC_BUFFER_SIZE;
1da177e4
LT
521 pc->bh = NULL;
522 pc->b_data = NULL;
523}
524
525/*
1b5db434
BP
526 * called on each failed packet command retry to analyze the request sense. We
527 * currently do not utilize this information.
1da177e4 528 */
1b5db434 529static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
1da177e4
LT
530{
531 idetape_tape_t *tape = drive->driver_data;
d236d74c 532 struct ide_atapi_pc *pc = tape->failed_pc;
1da177e4 533
1b5db434
BP
534 tape->sense_key = sense[2] & 0xF;
535 tape->asc = sense[12];
536 tape->ascq = sense[13];
8004a8c9
BP
537
538 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
539 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
1da177e4 540
d236d74c 541 /* Correct pc->xferred by asking the tape. */
346331f8 542 if (pc->flags & PC_FLAG_DMA_ERROR) {
d236d74c 543 pc->xferred = pc->req_xfer -
54bb2074 544 tape->blk_size *
860ff5ec 545 be32_to_cpu(get_unaligned((u32 *)&sense[3]));
1da177e4
LT
546 idetape_update_buffers(pc);
547 }
548
549 /*
550 * If error was the result of a zero-length read or write command,
551 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
552 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
553 */
90699ce2 554 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
1b5db434
BP
555 /* length == 0 */
556 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
557 if (tape->sense_key == 5) {
1da177e4
LT
558 /* don't report an error, everything's ok */
559 pc->error = 0;
560 /* don't retry read/write */
346331f8 561 pc->flags |= PC_FLAG_ABORT;
1da177e4
LT
562 }
563 }
90699ce2 564 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
1da177e4 565 pc->error = IDETAPE_ERROR_FILEMARK;
346331f8 566 pc->flags |= PC_FLAG_ABORT;
1da177e4 567 }
90699ce2 568 if (pc->c[0] == WRITE_6) {
1b5db434
BP
569 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
570 && tape->asc == 0x0 && tape->ascq == 0x2)) {
1da177e4 571 pc->error = IDETAPE_ERROR_EOD;
346331f8 572 pc->flags |= PC_FLAG_ABORT;
1da177e4
LT
573 }
574 }
90699ce2 575 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
1b5db434 576 if (tape->sense_key == 8) {
1da177e4 577 pc->error = IDETAPE_ERROR_EOD;
346331f8 578 pc->flags |= PC_FLAG_ABORT;
1da177e4 579 }
346331f8 580 if (!(pc->flags & PC_FLAG_ABORT) &&
d236d74c 581 pc->xferred)
1da177e4
LT
582 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
583 }
584}
585
d01dbc3b
BP
586/* Free data buffers completely. */
587static void ide_tape_kfree_buffer(idetape_stage_t *stage)
1da177e4
LT
588{
589 struct idetape_bh *prev_bh, *bh = stage->bh;
d01dbc3b
BP
590
591 while (bh) {
592 u32 size = bh->b_size;
593
594 while (size) {
595 unsigned int order = fls(size >> PAGE_SHIFT)-1;
596
597 if (bh->b_data)
598 free_pages((unsigned long)bh->b_data, order);
599
600 size &= (order-1);
601 bh->b_data += (1 << order) * PAGE_SIZE;
1da177e4
LT
602 }
603 prev_bh = bh;
604 bh = bh->b_reqnext;
605 kfree(prev_bh);
606 }
607 kfree(stage);
608}
609
1da177e4
LT
610static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
611{
612 struct request *rq = HWGROUP(drive)->rq;
613 idetape_tape_t *tape = drive->driver_data;
614 unsigned long flags;
615 int error;
1da177e4 616
8004a8c9 617 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1da177e4
LT
618
619 switch (uptodate) {
5a04cfa9
BP
620 case 0: error = IDETAPE_ERROR_GENERAL; break;
621 case 1: error = 0; break;
622 default: error = uptodate;
1da177e4
LT
623 }
624 rq->errors = error;
625 if (error)
626 tape->failed_pc = NULL;
627
3687221f
BZ
628 if (!blk_special_request(rq)) {
629 ide_end_request(drive, uptodate, nr_sects);
630 return 0;
631 }
632
54bb2074 633 spin_lock_irqsave(&tape->lock, flags);
1da177e4 634
1da177e4 635 ide_end_drive_cmd(drive, 0, 0);
1da177e4 636
54bb2074 637 spin_unlock_irqrestore(&tape->lock, flags);
1da177e4
LT
638 return 0;
639}
640
5a04cfa9 641static ide_startstop_t idetape_request_sense_callback(ide_drive_t *drive)
1da177e4
LT
642{
643 idetape_tape_t *tape = drive->driver_data;
644
8004a8c9
BP
645 debug_log(DBG_PROCS, "Enter %s\n", __func__);
646
1da177e4 647 if (!tape->pc->error) {
d236d74c 648 idetape_analyze_error(drive, tape->pc->buf);
1da177e4
LT
649 idetape_end_request(drive, 1, 0);
650 } else {
5a04cfa9
BP
651 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE itself - "
652 "Aborting request!\n");
1da177e4
LT
653 idetape_end_request(drive, 0, 0);
654 }
655 return ide_stopped;
656}
657
d236d74c 658static void idetape_create_request_sense_cmd(struct ide_atapi_pc *pc)
1da177e4 659{
5a04cfa9 660 idetape_init_pc(pc);
90699ce2 661 pc->c[0] = REQUEST_SENSE;
1da177e4 662 pc->c[4] = 20;
d236d74c
BP
663 pc->req_xfer = 20;
664 pc->idetape_callback = &idetape_request_sense_callback;
1da177e4
LT
665}
666
667static void idetape_init_rq(struct request *rq, u8 cmd)
668{
669 memset(rq, 0, sizeof(*rq));
4aff5e23 670 rq->cmd_type = REQ_TYPE_SPECIAL;
1da177e4
LT
671 rq->cmd[0] = cmd;
672}
673
674/*
3c98bf34
BP
675 * Generate a new packet command request in front of the request queue, before
676 * the current request, so that it will be processed immediately, on the next
677 * pass through the driver. The function below is called from the request
678 * handling part of the driver (the "bottom" part). Safe storage for the request
679 * should be allocated with ide_tape_next_{pc,rq}_storage() prior to that.
1da177e4 680 *
3c98bf34
BP
681 * Memory for those requests is pre-allocated at initialization time, and is
682 * limited to IDETAPE_PC_STACK requests. We assume that we have enough space for
683 * the maximum possible number of inter-dependent packet commands.
1da177e4 684 *
3c98bf34
BP
685 * The higher level of the driver - The ioctl handler and the character device
686 * handling functions should queue request to the lower level part and wait for
687 * their completion using idetape_queue_pc_tail or idetape_queue_rw_tail.
1da177e4 688 */
d236d74c 689static void idetape_queue_pc_head(ide_drive_t *drive, struct ide_atapi_pc *pc,
5a04cfa9 690 struct request *rq)
1da177e4
LT
691{
692 struct ide_tape_obj *tape = drive->driver_data;
693
694 idetape_init_rq(rq, REQ_IDETAPE_PC1);
695 rq->buffer = (char *) pc;
696 rq->rq_disk = tape->disk;
697 (void) ide_do_drive_cmd(drive, rq, ide_preempt);
698}
699
700/*
701 * idetape_retry_pc is called when an error was detected during the
702 * last packet command. We queue a request sense packet command in
703 * the head of the request list.
704 */
705static ide_startstop_t idetape_retry_pc (ide_drive_t *drive)
706{
707 idetape_tape_t *tape = drive->driver_data;
d236d74c 708 struct ide_atapi_pc *pc;
1da177e4 709 struct request *rq;
1da177e4 710
64a57fe4 711 (void)ide_read_error(drive);
1da177e4
LT
712 pc = idetape_next_pc_storage(drive);
713 rq = idetape_next_rq_storage(drive);
714 idetape_create_request_sense_cmd(pc);
346331f8 715 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
1da177e4
LT
716 idetape_queue_pc_head(drive, pc, rq);
717 return ide_stopped;
718}
719
720/*
3c98bf34
BP
721 * Postpone the current request so that ide.c will be able to service requests
722 * from another device on the same hwgroup while we are polling for DSC.
1da177e4 723 */
5a04cfa9 724static void idetape_postpone_request(ide_drive_t *drive)
1da177e4
LT
725{
726 idetape_tape_t *tape = drive->driver_data;
727
8004a8c9
BP
728 debug_log(DBG_PROCS, "Enter %s\n", __func__);
729
1da177e4 730 tape->postponed_rq = HWGROUP(drive)->rq;
54bb2074 731 ide_stall_queue(drive, tape->dsc_poll_freq);
1da177e4
LT
732}
733
d236d74c 734typedef void idetape_io_buf(ide_drive_t *, struct ide_atapi_pc *, unsigned int);
a1efc85f 735
1da177e4 736/*
a1efc85f
BP
737 * This is the usual interrupt handler which will be called during a packet
738 * command. We will transfer some of the data (as requested by the drive) and
739 * will re-point interrupt handler to us. When data transfer is finished, we
740 * will act according to the algorithm described before
8d06bfad 741 * idetape_issue_pc.
1da177e4 742 */
a1efc85f 743static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
1da177e4
LT
744{
745 ide_hwif_t *hwif = drive->hwif;
746 idetape_tape_t *tape = drive->driver_data;
d236d74c 747 struct ide_atapi_pc *pc = tape->pc;
a1efc85f
BP
748 xfer_func_t *xferfunc;
749 idetape_io_buf *iobuf;
1da177e4
LT
750 unsigned int temp;
751#if SIMULATE_ERRORS
5a04cfa9 752 static int error_sim_count;
1da177e4 753#endif
790d1239 754 u16 bcount;
8e7657ae 755 u8 stat, ireason;
1da177e4 756
8004a8c9 757 debug_log(DBG_PROCS, "Enter %s - interrupt handler\n", __func__);
1da177e4
LT
758
759 /* Clear the interrupt */
c47137a9 760 stat = ide_read_status(drive);
1da177e4 761
346331f8 762 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
5e37bdc0 763 if (hwif->dma_ops->dma_end(drive) || (stat & ERR_STAT)) {
1da177e4
LT
764 /*
765 * A DMA error is sometimes expected. For example,
766 * if the tape is crossing a filemark during a
767 * READ command, it will issue an irq and position
768 * itself before the filemark, so that only a partial
769 * data transfer will occur (which causes the DMA
770 * error). In that case, we will later ask the tape
771 * how much bytes of the original request were
772 * actually transferred (we can't receive that
773 * information from the DMA engine on most chipsets).
774 */
775
776 /*
777 * On the contrary, a DMA error is never expected;
778 * it usually indicates a hardware error or abort.
779 * If the tape crosses a filemark during a READ
780 * command, it will issue an irq and position itself
781 * after the filemark (not before). Only a partial
782 * data transfer will occur, but no DMA error.
783 * (AS, 19 Apr 2001)
784 */
346331f8 785 pc->flags |= PC_FLAG_DMA_ERROR;
1da177e4 786 } else {
d236d74c 787 pc->xferred = pc->req_xfer;
1da177e4
LT
788 idetape_update_buffers(pc);
789 }
8004a8c9
BP
790 debug_log(DBG_PROCS, "DMA finished\n");
791
1da177e4
LT
792 }
793
794 /* No more interrupts */
22c525b9 795 if ((stat & DRQ_STAT) == 0) {
8004a8c9 796 debug_log(DBG_SENSE, "Packet command completed, %d bytes"
d236d74c 797 " transferred\n", pc->xferred);
1da177e4 798
346331f8 799 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
1da177e4
LT
800 local_irq_enable();
801
802#if SIMULATE_ERRORS
90699ce2 803 if ((pc->c[0] == WRITE_6 || pc->c[0] == READ_6) &&
1da177e4
LT
804 (++error_sim_count % 100) == 0) {
805 printk(KERN_INFO "ide-tape: %s: simulating error\n",
806 tape->name);
22c525b9 807 stat |= ERR_STAT;
1da177e4
LT
808 }
809#endif
90699ce2 810 if ((stat & ERR_STAT) && pc->c[0] == REQUEST_SENSE)
22c525b9 811 stat &= ~ERR_STAT;
346331f8 812 if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR)) {
22c525b9 813 /* Error detected */
8004a8c9
BP
814 debug_log(DBG_ERR, "%s: I/O error\n", tape->name);
815
90699ce2 816 if (pc->c[0] == REQUEST_SENSE) {
a1efc85f
BP
817 printk(KERN_ERR "ide-tape: I/O error in request"
818 " sense command\n");
1da177e4
LT
819 return ide_do_reset(drive);
820 }
8004a8c9
BP
821 debug_log(DBG_ERR, "[cmd %x]: check condition\n",
822 pc->c[0]);
823
1da177e4
LT
824 /* Retry operation */
825 return idetape_retry_pc(drive);
826 }
827 pc->error = 0;
346331f8 828 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) &&
22c525b9 829 (stat & SEEK_STAT) == 0) {
1da177e4
LT
830 /* Media access command */
831 tape->dsc_polling_start = jiffies;
54bb2074 832 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
1da177e4
LT
833 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
834 /* Allow ide.c to handle other requests */
835 idetape_postpone_request(drive);
836 return ide_stopped;
837 }
838 if (tape->failed_pc == pc)
839 tape->failed_pc = NULL;
840 /* Command finished - Call the callback function */
d236d74c 841 return pc->idetape_callback(drive);
1da177e4 842 }
346331f8
BP
843
844 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
845 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
1da177e4
LT
846 printk(KERN_ERR "ide-tape: The tape wants to issue more "
847 "interrupts in DMA mode\n");
848 printk(KERN_ERR "ide-tape: DMA disabled, reverting to PIO\n");
7469aaf6 849 ide_dma_off(drive);
1da177e4
LT
850 return ide_do_reset(drive);
851 }
852 /* Get the number of bytes to transfer on this interrupt. */
4c3032d8
BZ
853 bcount = (hwif->INB(hwif->io_ports.lbah_addr) << 8) |
854 hwif->INB(hwif->io_ports.lbam_addr);
1da177e4 855
4c3032d8 856 ireason = hwif->INB(hwif->io_ports.nsect_addr);
1da177e4 857
8e7657ae 858 if (ireason & CD) {
a1efc85f 859 printk(KERN_ERR "ide-tape: CoD != 0 in %s\n", __func__);
1da177e4
LT
860 return ide_do_reset(drive);
861 }
346331f8 862 if (((ireason & IO) == IO) == !!(pc->flags & PC_FLAG_WRITING)) {
1da177e4
LT
863 /* Hopefully, we will never get here */
864 printk(KERN_ERR "ide-tape: We wanted to %s, ",
8e7657ae 865 (ireason & IO) ? "Write" : "Read");
1da177e4 866 printk(KERN_ERR "ide-tape: but the tape wants us to %s !\n",
8e7657ae 867 (ireason & IO) ? "Read" : "Write");
1da177e4
LT
868 return ide_do_reset(drive);
869 }
346331f8 870 if (!(pc->flags & PC_FLAG_WRITING)) {
1da177e4 871 /* Reading - Check that we have enough space */
d236d74c
BP
872 temp = pc->xferred + bcount;
873 if (temp > pc->req_xfer) {
874 if (temp > pc->buf_size) {
a1efc85f
BP
875 printk(KERN_ERR "ide-tape: The tape wants to "
876 "send us more data than expected "
877 "- discarding data\n");
7616c0ad 878 ide_atapi_discard_data(drive, bcount);
a1efc85f
BP
879 ide_set_handler(drive, &idetape_pc_intr,
880 IDETAPE_WAIT_CMD, NULL);
1da177e4
LT
881 return ide_started;
882 }
8004a8c9
BP
883 debug_log(DBG_SENSE, "The tape wants to send us more "
884 "data than expected - allowing transfer\n");
1da177e4 885 }
a1efc85f
BP
886 iobuf = &idetape_input_buffers;
887 xferfunc = hwif->atapi_input_bytes;
1da177e4 888 } else {
a1efc85f
BP
889 iobuf = &idetape_output_buffers;
890 xferfunc = hwif->atapi_output_bytes;
1da177e4 891 }
a1efc85f
BP
892
893 if (pc->bh)
894 iobuf(drive, pc, bcount);
895 else
d236d74c 896 xferfunc(drive, pc->cur_pos, bcount);
a1efc85f 897
1da177e4 898 /* Update the current position */
d236d74c
BP
899 pc->xferred += bcount;
900 pc->cur_pos += bcount;
8004a8c9
BP
901
902 debug_log(DBG_SENSE, "[cmd %x] transferred %d bytes on that intr.\n",
903 pc->c[0], bcount);
904
1da177e4
LT
905 /* And set the interrupt handler again */
906 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
907 return ide_started;
908}
909
910/*
3c98bf34 911 * Packet Command Interface
1da177e4 912 *
3c98bf34
BP
913 * The current Packet Command is available in tape->pc, and will not change
914 * until we finish handling it. Each packet command is associated with a
915 * callback function that will be called when the command is finished.
1da177e4 916 *
3c98bf34 917 * The handling will be done in three stages:
1da177e4 918 *
3c98bf34
BP
919 * 1. idetape_issue_pc will send the packet command to the drive, and will set
920 * the interrupt handler to idetape_pc_intr.
1da177e4 921 *
3c98bf34
BP
922 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
923 * repeated until the device signals us that no more interrupts will be issued.
1da177e4 924 *
3c98bf34
BP
925 * 3. ATAPI Tape media access commands have immediate status with a delayed
926 * process. In case of a successful initiation of a media access packet command,
927 * the DSC bit will be set when the actual execution of the command is finished.
928 * Since the tape drive will not issue an interrupt, we have to poll for this
929 * event. In this case, we define the request as "low priority request" by
930 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
931 * exit the driver.
1da177e4 932 *
3c98bf34
BP
933 * ide.c will then give higher priority to requests which originate from the
934 * other device, until will change rq_status to RQ_ACTIVE.
1da177e4 935 *
3c98bf34 936 * 4. When the packet command is finished, it will be checked for errors.
1da177e4 937 *
3c98bf34
BP
938 * 5. In case an error was found, we queue a request sense packet command in
939 * front of the request queue and retry the operation up to
940 * IDETAPE_MAX_PC_RETRIES times.
1da177e4 941 *
3c98bf34
BP
942 * 6. In case no error was found, or we decided to give up and not to retry
943 * again, the callback function will be called and then we will handle the next
944 * request.
1da177e4
LT
945 */
946static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
947{
948 ide_hwif_t *hwif = drive->hwif;
949 idetape_tape_t *tape = drive->driver_data;
d236d74c 950 struct ide_atapi_pc *pc = tape->pc;
1da177e4
LT
951 int retries = 100;
952 ide_startstop_t startstop;
8e7657ae 953 u8 ireason;
1da177e4 954
5a04cfa9
BP
955 if (ide_wait_stat(&startstop, drive, DRQ_STAT, BUSY_STAT, WAIT_READY)) {
956 printk(KERN_ERR "ide-tape: Strange, packet command initiated "
957 "yet DRQ isn't asserted\n");
1da177e4
LT
958 return startstop;
959 }
4c3032d8 960 ireason = hwif->INB(hwif->io_ports.nsect_addr);
8e7657ae 961 while (retries-- && ((ireason & CD) == 0 || (ireason & IO))) {
1da177e4
LT
962 printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while issuing "
963 "a packet command, retrying\n");
964 udelay(100);
4c3032d8 965 ireason = hwif->INB(hwif->io_ports.nsect_addr);
1da177e4
LT
966 if (retries == 0) {
967 printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while "
968 "issuing a packet command, ignoring\n");
8e7657ae
BZ
969 ireason |= CD;
970 ireason &= ~IO;
1da177e4
LT
971 }
972 }
8e7657ae 973 if ((ireason & CD) == 0 || (ireason & IO)) {
1da177e4
LT
974 printk(KERN_ERR "ide-tape: (IO,CoD) != (0,1) while issuing "
975 "a packet command\n");
976 return ide_do_reset(drive);
977 }
978 /* Set the interrupt routine */
979 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
980#ifdef CONFIG_BLK_DEV_IDEDMA
981 /* Begin DMA, if necessary */
346331f8 982 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS)
5e37bdc0 983 hwif->dma_ops->dma_start(drive);
1da177e4
LT
984#endif
985 /* Send the actual packet */
986 HWIF(drive)->atapi_output_bytes(drive, pc->c, 12);
987 return ide_started;
988}
989
d236d74c
BP
990static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
991 struct ide_atapi_pc *pc)
1da177e4
LT
992{
993 ide_hwif_t *hwif = drive->hwif;
994 idetape_tape_t *tape = drive->driver_data;
1da177e4 995 int dma_ok = 0;
790d1239 996 u16 bcount;
1da177e4 997
90699ce2
BP
998 if (tape->pc->c[0] == REQUEST_SENSE &&
999 pc->c[0] == REQUEST_SENSE) {
1da177e4
LT
1000 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
1001 "Two request sense in serial were issued\n");
1002 }
1da177e4 1003
90699ce2 1004 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
1da177e4
LT
1005 tape->failed_pc = pc;
1006 /* Set the current packet command */
1007 tape->pc = pc;
1008
1009 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
346331f8 1010 (pc->flags & PC_FLAG_ABORT)) {
1da177e4 1011 /*
3c98bf34
BP
1012 * We will "abort" retrying a packet command in case legitimate
1013 * error code was received (crossing a filemark, or end of the
1014 * media, for example).
1da177e4 1015 */
346331f8 1016 if (!(pc->flags & PC_FLAG_ABORT)) {
90699ce2 1017 if (!(pc->c[0] == TEST_UNIT_READY &&
1da177e4
LT
1018 tape->sense_key == 2 && tape->asc == 4 &&
1019 (tape->ascq == 1 || tape->ascq == 8))) {
1020 printk(KERN_ERR "ide-tape: %s: I/O error, "
1021 "pc = %2x, key = %2x, "
1022 "asc = %2x, ascq = %2x\n",
1023 tape->name, pc->c[0],
1024 tape->sense_key, tape->asc,
1025 tape->ascq);
1026 }
1027 /* Giving up */
1028 pc->error = IDETAPE_ERROR_GENERAL;
1029 }
1030 tape->failed_pc = NULL;
d236d74c 1031 return pc->idetape_callback(drive);
1da177e4 1032 }
8004a8c9 1033 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
1da177e4
LT
1034
1035 pc->retries++;
1036 /* We haven't transferred any data yet */
d236d74c
BP
1037 pc->xferred = 0;
1038 pc->cur_pos = pc->buf;
1da177e4 1039 /* Request to transfer the entire buffer at once */
d236d74c 1040 bcount = pc->req_xfer;
1da177e4 1041
346331f8
BP
1042 if (pc->flags & PC_FLAG_DMA_ERROR) {
1043 pc->flags &= ~PC_FLAG_DMA_ERROR;
1da177e4
LT
1044 printk(KERN_WARNING "ide-tape: DMA disabled, "
1045 "reverting to PIO\n");
7469aaf6 1046 ide_dma_off(drive);
1da177e4 1047 }
346331f8 1048 if ((pc->flags & PC_FLAG_DMA_RECOMMENDED) && drive->using_dma)
5e37bdc0 1049 dma_ok = !hwif->dma_ops->dma_setup(drive);
1da177e4 1050
2fc57388
BZ
1051 ide_pktcmd_tf_load(drive, IDE_TFLAG_NO_SELECT_MASK |
1052 IDE_TFLAG_OUT_DEVICE, bcount, dma_ok);
1053
346331f8
BP
1054 if (dma_ok)
1055 /* Will begin DMA later */
1056 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
1057 if (test_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags)) {
c1c9dbc8
BZ
1058 ide_execute_command(drive, WIN_PACKETCMD, &idetape_transfer_pc,
1059 IDETAPE_WAIT_CMD, NULL);
1da177e4
LT
1060 return ide_started;
1061 } else {
4c3032d8 1062 hwif->OUTB(WIN_PACKETCMD, hwif->io_ports.command_addr);
1da177e4
LT
1063 return idetape_transfer_pc(drive);
1064 }
1065}
1066
5a04cfa9 1067static ide_startstop_t idetape_pc_callback(ide_drive_t *drive)
1da177e4
LT
1068{
1069 idetape_tape_t *tape = drive->driver_data;
8004a8c9
BP
1070
1071 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1da177e4
LT
1072
1073 idetape_end_request(drive, tape->pc->error ? 0 : 1, 0);
1074 return ide_stopped;
1075}
1076
3c98bf34 1077/* A mode sense command is used to "sense" tape parameters. */
d236d74c 1078static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
1da177e4
LT
1079{
1080 idetape_init_pc(pc);
90699ce2 1081 pc->c[0] = MODE_SENSE;
1da177e4 1082 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
3c98bf34
BP
1083 /* DBD = 1 - Don't return block descriptors */
1084 pc->c[1] = 8;
1da177e4
LT
1085 pc->c[2] = page_code;
1086 /*
1087 * Changed pc->c[3] to 0 (255 will at best return unused info).
1088 *
1089 * For SCSI this byte is defined as subpage instead of high byte
1090 * of length and some IDE drives seem to interpret it this way
1091 * and return an error when 255 is used.
1092 */
1093 pc->c[3] = 0;
3c98bf34
BP
1094 /* We will just discard data in that case */
1095 pc->c[4] = 255;
1da177e4 1096 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
d236d74c 1097 pc->req_xfer = 12;
1da177e4 1098 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
d236d74c 1099 pc->req_xfer = 24;
1da177e4 1100 else
d236d74c
BP
1101 pc->req_xfer = 50;
1102 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1103}
1104
5a04cfa9 1105static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
1da177e4
LT
1106{
1107 idetape_tape_t *tape = drive->driver_data;
d236d74c 1108 struct ide_atapi_pc *pc = tape->pc;
22c525b9 1109 u8 stat;
1da177e4 1110
c47137a9
BZ
1111 stat = ide_read_status(drive);
1112
22c525b9
BZ
1113 if (stat & SEEK_STAT) {
1114 if (stat & ERR_STAT) {
1da177e4 1115 /* Error detected */
90699ce2 1116 if (pc->c[0] != TEST_UNIT_READY)
1da177e4
LT
1117 printk(KERN_ERR "ide-tape: %s: I/O error, ",
1118 tape->name);
1119 /* Retry operation */
1120 return idetape_retry_pc(drive);
1121 }
1122 pc->error = 0;
1123 if (tape->failed_pc == pc)
1124 tape->failed_pc = NULL;
1125 } else {
1126 pc->error = IDETAPE_ERROR_GENERAL;
1127 tape->failed_pc = NULL;
1128 }
d236d74c 1129 return pc->idetape_callback(drive);
1da177e4
LT
1130}
1131
5a04cfa9 1132static ide_startstop_t idetape_rw_callback(ide_drive_t *drive)
1da177e4
LT
1133{
1134 idetape_tape_t *tape = drive->driver_data;
1135 struct request *rq = HWGROUP(drive)->rq;
d236d74c 1136 int blocks = tape->pc->xferred / tape->blk_size;
1da177e4 1137
54bb2074 1138 tape->avg_size += blocks * tape->blk_size;
83042b24 1139
9bae1ff3 1140 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
5a04cfa9
BP
1141 tape->avg_speed = tape->avg_size * HZ /
1142 (jiffies - tape->avg_time) / 1024;
1da177e4
LT
1143 tape->avg_size = 0;
1144 tape->avg_time = jiffies;
1145 }
8004a8c9 1146 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1da177e4 1147
54bb2074 1148 tape->first_frame += blocks;
1da177e4
LT
1149 rq->current_nr_sectors -= blocks;
1150
1151 if (!tape->pc->error)
1152 idetape_end_request(drive, 1, 0);
1153 else
1154 idetape_end_request(drive, tape->pc->error, 0);
1155 return ide_stopped;
1156}
1157
d236d74c
BP
1158static void idetape_create_read_cmd(idetape_tape_t *tape,
1159 struct ide_atapi_pc *pc,
5a04cfa9 1160 unsigned int length, struct idetape_bh *bh)
1da177e4
LT
1161{
1162 idetape_init_pc(pc);
90699ce2 1163 pc->c[0] = READ_6;
860ff5ec 1164 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
1da177e4 1165 pc->c[1] = 1;
d236d74c 1166 pc->idetape_callback = &idetape_rw_callback;
1da177e4
LT
1167 pc->bh = bh;
1168 atomic_set(&bh->b_count, 0);
d236d74c
BP
1169 pc->buf = NULL;
1170 pc->buf_size = length * tape->blk_size;
1171 pc->req_xfer = pc->buf_size;
f73850a3 1172 if (pc->req_xfer == tape->buffer_size)
346331f8 1173 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
1da177e4
LT
1174}
1175
d236d74c
BP
1176static void idetape_create_write_cmd(idetape_tape_t *tape,
1177 struct ide_atapi_pc *pc,
5a04cfa9 1178 unsigned int length, struct idetape_bh *bh)
1da177e4
LT
1179{
1180 idetape_init_pc(pc);
90699ce2 1181 pc->c[0] = WRITE_6;
860ff5ec 1182 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
1da177e4 1183 pc->c[1] = 1;
d236d74c 1184 pc->idetape_callback = &idetape_rw_callback;
346331f8 1185 pc->flags |= PC_FLAG_WRITING;
1da177e4
LT
1186 pc->bh = bh;
1187 pc->b_data = bh->b_data;
1188 pc->b_count = atomic_read(&bh->b_count);
d236d74c
BP
1189 pc->buf = NULL;
1190 pc->buf_size = length * tape->blk_size;
1191 pc->req_xfer = pc->buf_size;
f73850a3 1192 if (pc->req_xfer == tape->buffer_size)
346331f8 1193 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
1da177e4
LT
1194}
1195
1da177e4
LT
1196static ide_startstop_t idetape_do_request(ide_drive_t *drive,
1197 struct request *rq, sector_t block)
1198{
1199 idetape_tape_t *tape = drive->driver_data;
d236d74c 1200 struct ide_atapi_pc *pc = NULL;
1da177e4 1201 struct request *postponed_rq = tape->postponed_rq;
22c525b9 1202 u8 stat;
1da177e4 1203
8004a8c9
BP
1204 debug_log(DBG_SENSE, "sector: %ld, nr_sectors: %ld,"
1205 " current_nr_sectors: %d\n",
1da177e4 1206 rq->sector, rq->nr_sectors, rq->current_nr_sectors);
1da177e4 1207
4aff5e23 1208 if (!blk_special_request(rq)) {
3c98bf34 1209 /* We do not support buffer cache originated requests. */
1da177e4 1210 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
4aff5e23 1211 "request queue (%d)\n", drive->name, rq->cmd_type);
1da177e4
LT
1212 ide_end_request(drive, 0, 0);
1213 return ide_stopped;
1214 }
1215
3c98bf34 1216 /* Retry a failed packet command */
5a04cfa9 1217 if (tape->failed_pc && tape->pc->c[0] == REQUEST_SENSE)
8d06bfad 1218 return idetape_issue_pc(drive, tape->failed_pc);
5a04cfa9 1219
1da177e4
LT
1220 if (postponed_rq != NULL)
1221 if (rq != postponed_rq) {
1222 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
1223 "Two DSC requests were queued\n");
1224 idetape_end_request(drive, 0, 0);
1225 return ide_stopped;
1226 }
1da177e4
LT
1227
1228 tape->postponed_rq = NULL;
1229
1230 /*
1231 * If the tape is still busy, postpone our request and service
1232 * the other device meanwhile.
1233 */
c47137a9 1234 stat = ide_read_status(drive);
1da177e4
LT
1235
1236 if (!drive->dsc_overlap && !(rq->cmd[0] & REQ_IDETAPE_PC2))
346331f8 1237 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
1da177e4
LT
1238
1239 if (drive->post_reset == 1) {
346331f8 1240 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
1da177e4
LT
1241 drive->post_reset = 0;
1242 }
1243
346331f8 1244 if (!test_and_clear_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags) &&
22c525b9 1245 (stat & SEEK_STAT) == 0) {
1da177e4
LT
1246 if (postponed_rq == NULL) {
1247 tape->dsc_polling_start = jiffies;
54bb2074 1248 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
1da177e4
LT
1249 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
1250 } else if (time_after(jiffies, tape->dsc_timeout)) {
1251 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
1252 tape->name);
1253 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1254 idetape_media_access_finished(drive);
1255 return ide_stopped;
1256 } else {
1257 return ide_do_reset(drive);
1258 }
5a04cfa9
BP
1259 } else if (time_after(jiffies,
1260 tape->dsc_polling_start +
1261 IDETAPE_DSC_MA_THRESHOLD))
54bb2074 1262 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
1da177e4
LT
1263 idetape_postpone_request(drive);
1264 return ide_stopped;
1265 }
1266 if (rq->cmd[0] & REQ_IDETAPE_READ) {
1da177e4 1267 pc = idetape_next_pc_storage(drive);
5a04cfa9
BP
1268 idetape_create_read_cmd(tape, pc, rq->current_nr_sectors,
1269 (struct idetape_bh *)rq->special);
1da177e4
LT
1270 goto out;
1271 }
1272 if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
1da177e4 1273 pc = idetape_next_pc_storage(drive);
5a04cfa9
BP
1274 idetape_create_write_cmd(tape, pc, rq->current_nr_sectors,
1275 (struct idetape_bh *)rq->special);
1da177e4
LT
1276 goto out;
1277 }
1da177e4 1278 if (rq->cmd[0] & REQ_IDETAPE_PC1) {
d236d74c 1279 pc = (struct ide_atapi_pc *) rq->buffer;
1da177e4
LT
1280 rq->cmd[0] &= ~(REQ_IDETAPE_PC1);
1281 rq->cmd[0] |= REQ_IDETAPE_PC2;
1282 goto out;
1283 }
1284 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1285 idetape_media_access_finished(drive);
1286 return ide_stopped;
1287 }
1288 BUG();
1289out:
8d06bfad 1290 return idetape_issue_pc(drive, pc);
1da177e4
LT
1291}
1292
1da177e4 1293/*
41aa1706 1294 * The function below uses __get_free_pages to allocate a data buffer of size
f73850a3 1295 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
3c98bf34 1296 * much as possible.
1da177e4 1297 *
41aa1706
BP
1298 * It returns a pointer to the newly allocated buffer, or NULL in case of
1299 * failure.
1da177e4 1300 */
41aa1706 1301static idetape_stage_t *ide_tape_kmalloc_buffer(idetape_tape_t *tape, int full,
5a04cfa9 1302 int clear)
1da177e4
LT
1303{
1304 idetape_stage_t *stage;
1305 struct idetape_bh *prev_bh, *bh;
a997a435 1306 int pages = tape->pages_per_buffer;
41aa1706 1307 unsigned int order, b_allocd;
1da177e4
LT
1308 char *b_data = NULL;
1309
5a04cfa9
BP
1310 stage = kmalloc(sizeof(idetape_stage_t), GFP_KERNEL);
1311 if (!stage)
1da177e4
LT
1312 return NULL;
1313 stage->next = NULL;
1314
5a04cfa9
BP
1315 stage->bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1316 bh = stage->bh;
1da177e4
LT
1317 if (bh == NULL)
1318 goto abort;
41aa1706
BP
1319
1320 order = fls(pages) - 1;
1321 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
5a04cfa9 1322 if (!bh->b_data)
1da177e4 1323 goto abort;
41aa1706
BP
1324 b_allocd = (1 << order) * PAGE_SIZE;
1325 pages &= (order-1);
1326
1da177e4 1327 if (clear)
41aa1706
BP
1328 memset(bh->b_data, 0, b_allocd);
1329 bh->b_reqnext = NULL;
1330 bh->b_size = b_allocd;
1da177e4
LT
1331 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1332
41aa1706
BP
1333 while (pages) {
1334 order = fls(pages) - 1;
1335 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
5a04cfa9 1336 if (!b_data)
1da177e4 1337 goto abort;
41aa1706
BP
1338 b_allocd = (1 << order) * PAGE_SIZE;
1339
1da177e4 1340 if (clear)
41aa1706
BP
1341 memset(b_data, 0, b_allocd);
1342
1343 /* newly allocated page frames below buffer header or ...*/
1344 if (bh->b_data == b_data + b_allocd) {
1345 bh->b_size += b_allocd;
1346 bh->b_data -= b_allocd;
1da177e4 1347 if (full)
41aa1706 1348 atomic_add(b_allocd, &bh->b_count);
1da177e4
LT
1349 continue;
1350 }
41aa1706 1351 /* they are above the header */
1da177e4 1352 if (b_data == bh->b_data + bh->b_size) {
41aa1706 1353 bh->b_size += b_allocd;
1da177e4 1354 if (full)
41aa1706 1355 atomic_add(b_allocd, &bh->b_count);
1da177e4
LT
1356 continue;
1357 }
1358 prev_bh = bh;
5a04cfa9
BP
1359 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1360 if (!bh) {
41aa1706 1361 free_pages((unsigned long) b_data, order);
1da177e4
LT
1362 goto abort;
1363 }
1364 bh->b_reqnext = NULL;
1365 bh->b_data = b_data;
41aa1706 1366 bh->b_size = b_allocd;
1da177e4
LT
1367 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1368 prev_bh->b_reqnext = bh;
41aa1706
BP
1369
1370 pages &= (order-1);
1da177e4 1371 }
41aa1706 1372
1da177e4
LT
1373 bh->b_size -= tape->excess_bh_size;
1374 if (full)
1375 atomic_sub(tape->excess_bh_size, &bh->b_count);
1376 return stage;
1377abort:
d01dbc3b 1378 ide_tape_kfree_buffer(stage);
1da177e4
LT
1379 return NULL;
1380}
1381
5a04cfa9 1382static int idetape_copy_stage_from_user(idetape_tape_t *tape,
8646c88f 1383 const char __user *buf, int n)
1da177e4
LT
1384{
1385 struct idetape_bh *bh = tape->bh;
1386 int count;
dcd96379 1387 int ret = 0;
1da177e4
LT
1388
1389 while (n) {
1da177e4 1390 if (bh == NULL) {
5a04cfa9
BP
1391 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1392 __func__);
dcd96379 1393 return 1;
1da177e4 1394 }
5a04cfa9
BP
1395 count = min((unsigned int)
1396 (bh->b_size - atomic_read(&bh->b_count)),
1397 (unsigned int)n);
1398 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1399 count))
dcd96379 1400 ret = 1;
1da177e4
LT
1401 n -= count;
1402 atomic_add(count, &bh->b_count);
1403 buf += count;
1404 if (atomic_read(&bh->b_count) == bh->b_size) {
1405 bh = bh->b_reqnext;
1406 if (bh)
1407 atomic_set(&bh->b_count, 0);
1408 }
1409 }
1410 tape->bh = bh;
dcd96379 1411 return ret;
1da177e4
LT
1412}
1413
5a04cfa9 1414static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
99d74e61 1415 int n)
1da177e4
LT
1416{
1417 struct idetape_bh *bh = tape->bh;
1418 int count;
dcd96379 1419 int ret = 0;
1da177e4
LT
1420
1421 while (n) {
1da177e4 1422 if (bh == NULL) {
5a04cfa9
BP
1423 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1424 __func__);
dcd96379 1425 return 1;
1da177e4 1426 }
1da177e4 1427 count = min(tape->b_count, n);
dcd96379
DW
1428 if (copy_to_user(buf, tape->b_data, count))
1429 ret = 1;
1da177e4
LT
1430 n -= count;
1431 tape->b_data += count;
1432 tape->b_count -= count;
1433 buf += count;
1434 if (!tape->b_count) {
5a04cfa9
BP
1435 bh = bh->b_reqnext;
1436 tape->bh = bh;
1da177e4
LT
1437 if (bh) {
1438 tape->b_data = bh->b_data;
1439 tape->b_count = atomic_read(&bh->b_count);
1440 }
1441 }
1442 }
dcd96379 1443 return ret;
1da177e4
LT
1444}
1445
5a04cfa9 1446static void idetape_init_merge_stage(idetape_tape_t *tape)
1da177e4
LT
1447{
1448 struct idetape_bh *bh = tape->merge_stage->bh;
5a04cfa9 1449
1da177e4 1450 tape->bh = bh;
54abf37e 1451 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
1da177e4
LT
1452 atomic_set(&bh->b_count, 0);
1453 else {
1454 tape->b_data = bh->b_data;
1455 tape->b_count = atomic_read(&bh->b_count);
1456 }
1457}
1458
a2f5b7f4 1459static ide_startstop_t idetape_read_position_callback(ide_drive_t *drive)
1da177e4
LT
1460{
1461 idetape_tape_t *tape = drive->driver_data;
d236d74c 1462 u8 *readpos = tape->pc->buf;
8004a8c9
BP
1463
1464 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1da177e4
LT
1465
1466 if (!tape->pc->error) {
a2f5b7f4
BP
1467 debug_log(DBG_SENSE, "BOP - %s\n",
1468 (readpos[0] & 0x80) ? "Yes" : "No");
1469 debug_log(DBG_SENSE, "EOP - %s\n",
1470 (readpos[0] & 0x40) ? "Yes" : "No");
1471
1472 if (readpos[0] & 0x4) {
1473 printk(KERN_INFO "ide-tape: Block location is unknown"
1474 "to the tape\n");
346331f8 1475 clear_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
1da177e4
LT
1476 idetape_end_request(drive, 0, 0);
1477 } else {
8004a8c9 1478 debug_log(DBG_SENSE, "Block Location - %u\n",
a2f5b7f4
BP
1479 be32_to_cpu(*(u32 *)&readpos[4]));
1480
1481 tape->partition = readpos[1];
54bb2074 1482 tape->first_frame =
a2f5b7f4 1483 be32_to_cpu(*(u32 *)&readpos[4]);
346331f8 1484 set_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
1da177e4
LT
1485 idetape_end_request(drive, 1, 0);
1486 }
1487 } else {
1488 idetape_end_request(drive, 0, 0);
1489 }
1490 return ide_stopped;
1491}
1492
1493/*
3c98bf34
BP
1494 * Write a filemark if write_filemark=1. Flush the device buffers without
1495 * writing a filemark otherwise.
1da177e4 1496 */
5a04cfa9 1497static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
d236d74c 1498 struct ide_atapi_pc *pc, int write_filemark)
1da177e4
LT
1499{
1500 idetape_init_pc(pc);
90699ce2 1501 pc->c[0] = WRITE_FILEMARKS;
1da177e4 1502 pc->c[4] = write_filemark;
346331f8 1503 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
d236d74c 1504 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1505}
1506
d236d74c 1507static void idetape_create_test_unit_ready_cmd(struct ide_atapi_pc *pc)
1da177e4
LT
1508{
1509 idetape_init_pc(pc);
90699ce2 1510 pc->c[0] = TEST_UNIT_READY;
d236d74c 1511 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1512}
1513
1514/*
3c98bf34
BP
1515 * We add a special packet command request to the tail of the request queue, and
1516 * wait for it to be serviced. This is not to be called from within the request
1517 * handling part of the driver! We allocate here data on the stack and it is
1518 * valid until the request is finished. This is not the case for the bottom part
1519 * of the driver, where we are always leaving the functions to wait for an
1520 * interrupt or a timer event.
1da177e4 1521 *
3c98bf34
BP
1522 * From the bottom part of the driver, we should allocate safe memory using
1523 * idetape_next_pc_storage() and ide_tape_next_rq_storage(), and add the request
1524 * to the request list without waiting for it to be serviced! In that case, we
1525 * usually use idetape_queue_pc_head().
1da177e4 1526 */
ea1ab3d3 1527static int idetape_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc)
1da177e4
LT
1528{
1529 struct ide_tape_obj *tape = drive->driver_data;
1530 struct request rq;
1531
1532 idetape_init_rq(&rq, REQ_IDETAPE_PC1);
1533 rq.buffer = (char *) pc;
1534 rq.rq_disk = tape->disk;
1535 return ide_do_drive_cmd(drive, &rq, ide_wait);
1536}
1537
d236d74c
BP
1538static void idetape_create_load_unload_cmd(ide_drive_t *drive,
1539 struct ide_atapi_pc *pc, int cmd)
1da177e4
LT
1540{
1541 idetape_init_pc(pc);
90699ce2 1542 pc->c[0] = START_STOP;
1da177e4 1543 pc->c[4] = cmd;
346331f8 1544 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
d236d74c 1545 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1546}
1547
1548static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1549{
1550 idetape_tape_t *tape = drive->driver_data;
d236d74c 1551 struct ide_atapi_pc pc;
1da177e4
LT
1552 int load_attempted = 0;
1553
3c98bf34 1554 /* Wait for the tape to become ready */
346331f8 1555 set_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
1da177e4
LT
1556 timeout += jiffies;
1557 while (time_before(jiffies, timeout)) {
1558 idetape_create_test_unit_ready_cmd(&pc);
ea1ab3d3 1559 if (!idetape_queue_pc_tail(drive, &pc))
1da177e4
LT
1560 return 0;
1561 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
3c98bf34
BP
1562 || (tape->asc == 0x3A)) {
1563 /* no media */
1da177e4
LT
1564 if (load_attempted)
1565 return -ENOMEDIUM;
5a04cfa9
BP
1566 idetape_create_load_unload_cmd(drive, &pc,
1567 IDETAPE_LU_LOAD_MASK);
ea1ab3d3 1568 idetape_queue_pc_tail(drive, &pc);
1da177e4
LT
1569 load_attempted = 1;
1570 /* not about to be ready */
1571 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1572 (tape->ascq == 1 || tape->ascq == 8)))
1573 return -EIO;
80ce45fd 1574 msleep(100);
1da177e4
LT
1575 }
1576 return -EIO;
1577}
1578
5a04cfa9 1579static int idetape_flush_tape_buffers(ide_drive_t *drive)
1da177e4 1580{
d236d74c 1581 struct ide_atapi_pc pc;
1da177e4
LT
1582 int rc;
1583
1584 idetape_create_write_filemark_cmd(drive, &pc, 0);
5a04cfa9
BP
1585 rc = idetape_queue_pc_tail(drive, &pc);
1586 if (rc)
1da177e4
LT
1587 return rc;
1588 idetape_wait_ready(drive, 60 * 5 * HZ);
1589 return 0;
1590}
1591
d236d74c 1592static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
1da177e4
LT
1593{
1594 idetape_init_pc(pc);
90699ce2 1595 pc->c[0] = READ_POSITION;
d236d74c
BP
1596 pc->req_xfer = 20;
1597 pc->idetape_callback = &idetape_read_position_callback;
1da177e4
LT
1598}
1599
5a04cfa9 1600static int idetape_read_position(ide_drive_t *drive)
1da177e4
LT
1601{
1602 idetape_tape_t *tape = drive->driver_data;
d236d74c 1603 struct ide_atapi_pc pc;
1da177e4
LT
1604 int position;
1605
8004a8c9 1606 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1da177e4
LT
1607
1608 idetape_create_read_position_cmd(&pc);
1609 if (idetape_queue_pc_tail(drive, &pc))
1610 return -1;
54bb2074 1611 position = tape->first_frame;
1da177e4
LT
1612 return position;
1613}
1614
d236d74c
BP
1615static void idetape_create_locate_cmd(ide_drive_t *drive,
1616 struct ide_atapi_pc *pc,
5a04cfa9 1617 unsigned int block, u8 partition, int skip)
1da177e4
LT
1618{
1619 idetape_init_pc(pc);
90699ce2 1620 pc->c[0] = POSITION_TO_ELEMENT;
1da177e4 1621 pc->c[1] = 2;
860ff5ec 1622 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
1da177e4 1623 pc->c[8] = partition;
346331f8 1624 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
d236d74c 1625 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1626}
1627
d236d74c
BP
1628static int idetape_create_prevent_cmd(ide_drive_t *drive,
1629 struct ide_atapi_pc *pc, int prevent)
1da177e4
LT
1630{
1631 idetape_tape_t *tape = drive->driver_data;
1632
b6422013
BP
1633 /* device supports locking according to capabilities page */
1634 if (!(tape->caps[6] & 0x01))
1da177e4
LT
1635 return 0;
1636
1637 idetape_init_pc(pc);
90699ce2 1638 pc->c[0] = ALLOW_MEDIUM_REMOVAL;
1da177e4 1639 pc->c[4] = prevent;
d236d74c 1640 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1641 return 1;
1642}
1643
5a04cfa9 1644static int __idetape_discard_read_pipeline(ide_drive_t *drive)
1da177e4
LT
1645{
1646 idetape_tape_t *tape = drive->driver_data;
1da177e4 1647
54abf37e 1648 if (tape->chrdev_dir != IDETAPE_DIR_READ)
1da177e4
LT
1649 return 0;
1650
83042b24 1651 clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags);
1da177e4
LT
1652 tape->merge_stage_size = 0;
1653 if (tape->merge_stage != NULL) {
d01dbc3b 1654 ide_tape_kfree_buffer(tape->merge_stage);
1da177e4
LT
1655 tape->merge_stage = NULL;
1656 }
1657
54abf37e 1658 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4 1659
83042b24 1660 return 0;
1da177e4
LT
1661}
1662
1663/*
3c98bf34
BP
1664 * Position the tape to the requested block using the LOCATE packet command.
1665 * A READ POSITION command is then issued to check where we are positioned. Like
1666 * all higher level operations, we queue the commands at the tail of the request
1667 * queue and wait for their completion.
1da177e4 1668 */
5a04cfa9
BP
1669static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1670 u8 partition, int skip)
1da177e4
LT
1671{
1672 idetape_tape_t *tape = drive->driver_data;
1673 int retval;
d236d74c 1674 struct ide_atapi_pc pc;
1da177e4 1675
54abf37e 1676 if (tape->chrdev_dir == IDETAPE_DIR_READ)
1da177e4
LT
1677 __idetape_discard_read_pipeline(drive);
1678 idetape_wait_ready(drive, 60 * 5 * HZ);
1679 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
1680 retval = idetape_queue_pc_tail(drive, &pc);
1681 if (retval)
1682 return (retval);
1683
1684 idetape_create_read_position_cmd(&pc);
1685 return (idetape_queue_pc_tail(drive, &pc));
1686}
1687
5a04cfa9
BP
1688static void idetape_discard_read_pipeline(ide_drive_t *drive,
1689 int restore_position)
1da177e4
LT
1690{
1691 idetape_tape_t *tape = drive->driver_data;
1692 int cnt;
1693 int seek, position;
1694
1695 cnt = __idetape_discard_read_pipeline(drive);
1696 if (restore_position) {
1697 position = idetape_read_position(drive);
1698 seek = position > cnt ? position - cnt : 0;
1699 if (idetape_position_tape(drive, seek, 0, 0)) {
5a04cfa9
BP
1700 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
1701 " discard_pipeline()\n", tape->name);
1da177e4
LT
1702 return;
1703 }
1704 }
1705}
1706
1707/*
3c98bf34
BP
1708 * Generate a read/write request for the block device interface and wait for it
1709 * to be serviced.
1da177e4 1710 */
5a04cfa9
BP
1711static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1712 struct idetape_bh *bh)
1da177e4
LT
1713{
1714 idetape_tape_t *tape = drive->driver_data;
1715 struct request rq;
1716
8004a8c9
BP
1717 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1718
1da177e4
LT
1719 idetape_init_rq(&rq, cmd);
1720 rq.rq_disk = tape->disk;
1721 rq.special = (void *)bh;
54bb2074 1722 rq.sector = tape->first_frame;
5a04cfa9
BP
1723 rq.nr_sectors = blocks;
1724 rq.current_nr_sectors = blocks;
1da177e4
LT
1725 (void) ide_do_drive_cmd(drive, &rq, ide_wait);
1726
1727 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1728 return 0;
1729
1730 if (tape->merge_stage)
1731 idetape_init_merge_stage(tape);
1732 if (rq.errors == IDETAPE_ERROR_GENERAL)
1733 return -EIO;
54bb2074 1734 return (tape->blk_size * (blocks-rq.current_nr_sectors));
1da177e4
LT
1735}
1736
d236d74c 1737static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
1da177e4
LT
1738{
1739 idetape_init_pc(pc);
90699ce2 1740 pc->c[0] = INQUIRY;
5a04cfa9 1741 pc->c[4] = 254;
d236d74c
BP
1742 pc->req_xfer = 254;
1743 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1744}
1745
d236d74c
BP
1746static void idetape_create_rewind_cmd(ide_drive_t *drive,
1747 struct ide_atapi_pc *pc)
1da177e4
LT
1748{
1749 idetape_init_pc(pc);
90699ce2 1750 pc->c[0] = REZERO_UNIT;
346331f8 1751 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
d236d74c 1752 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1753}
1754
d236d74c 1755static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
1da177e4
LT
1756{
1757 idetape_init_pc(pc);
90699ce2 1758 pc->c[0] = ERASE;
1da177e4 1759 pc->c[1] = 1;
346331f8 1760 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
d236d74c 1761 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1762}
1763
d236d74c 1764static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
1da177e4
LT
1765{
1766 idetape_init_pc(pc);
90699ce2 1767 pc->c[0] = SPACE;
860ff5ec 1768 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
1da177e4 1769 pc->c[1] = cmd;
346331f8 1770 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
d236d74c 1771 pc->idetape_callback = &idetape_pc_callback;
1da177e4
LT
1772}
1773
97c566ce 1774/* Queue up a character device originated write request. */
5a04cfa9 1775static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
1da177e4
LT
1776{
1777 idetape_tape_t *tape = drive->driver_data;
1da177e4 1778
8004a8c9 1779 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1da177e4 1780
0aa4b01e
BP
1781 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1782 blocks, tape->merge_stage->bh);
1da177e4
LT
1783}
1784
5a04cfa9 1785static void idetape_empty_write_pipeline(ide_drive_t *drive)
1da177e4
LT
1786{
1787 idetape_tape_t *tape = drive->driver_data;
1788 int blocks, min;
1789 struct idetape_bh *bh;
55a5d291 1790
54abf37e 1791 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
5a04cfa9
BP
1792 printk(KERN_ERR "ide-tape: bug: Trying to empty write pipeline,"
1793 " but we are not writing.\n");
1da177e4
LT
1794 return;
1795 }
f73850a3 1796 if (tape->merge_stage_size > tape->buffer_size) {
1da177e4 1797 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
f73850a3 1798 tape->merge_stage_size = tape->buffer_size;
1da177e4 1799 }
1da177e4 1800 if (tape->merge_stage_size) {
54bb2074
BP
1801 blocks = tape->merge_stage_size / tape->blk_size;
1802 if (tape->merge_stage_size % tape->blk_size) {
1da177e4
LT
1803 unsigned int i;
1804
1805 blocks++;
54bb2074
BP
1806 i = tape->blk_size - tape->merge_stage_size %
1807 tape->blk_size;
1da177e4
LT
1808 bh = tape->bh->b_reqnext;
1809 while (bh) {
1810 atomic_set(&bh->b_count, 0);
1811 bh = bh->b_reqnext;
1812 }
1813 bh = tape->bh;
1814 while (i) {
1815 if (bh == NULL) {
5a04cfa9
BP
1816 printk(KERN_INFO "ide-tape: bug,"
1817 " bh NULL\n");
1da177e4
LT
1818 break;
1819 }
5a04cfa9
BP
1820 min = min(i, (unsigned int)(bh->b_size -
1821 atomic_read(&bh->b_count)));
1822 memset(bh->b_data + atomic_read(&bh->b_count),
1823 0, min);
1da177e4
LT
1824 atomic_add(min, &bh->b_count);
1825 i -= min;
1826 bh = bh->b_reqnext;
1827 }
1828 }
1829 (void) idetape_add_chrdev_write_request(drive, blocks);
1830 tape->merge_stage_size = 0;
1831 }
1da177e4 1832 if (tape->merge_stage != NULL) {
d01dbc3b 1833 ide_tape_kfree_buffer(tape->merge_stage);
1da177e4
LT
1834 tape->merge_stage = NULL;
1835 }
54abf37e 1836 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4
LT
1837}
1838
83042b24 1839static int idetape_init_read(ide_drive_t *drive)
1da177e4
LT
1840{
1841 idetape_tape_t *tape = drive->driver_data;
1da177e4 1842 int bytes_read;
1da177e4
LT
1843
1844 /* Initialize read operation */
54abf37e
BP
1845 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1846 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
1da177e4
LT
1847 idetape_empty_write_pipeline(drive);
1848 idetape_flush_tape_buffers(drive);
1849 }
1da177e4 1850 if (tape->merge_stage || tape->merge_stage_size) {
5a04cfa9
BP
1851 printk(KERN_ERR "ide-tape: merge_stage_size should be"
1852 " 0 now\n");
1da177e4
LT
1853 tape->merge_stage_size = 0;
1854 }
41aa1706 1855 tape->merge_stage = ide_tape_kmalloc_buffer(tape, 0, 0);
5a04cfa9 1856 if (!tape->merge_stage)
1da177e4 1857 return -ENOMEM;
54abf37e 1858 tape->chrdev_dir = IDETAPE_DIR_READ;
1da177e4
LT
1859
1860 /*
3c98bf34
BP
1861 * Issue a read 0 command to ensure that DSC handshake is
1862 * switched from completion mode to buffer available mode.
1863 * No point in issuing this if DSC overlap isn't supported, some
1864 * drives (Seagate STT3401A) will return an error.
1da177e4
LT
1865 */
1866 if (drive->dsc_overlap) {
5a04cfa9
BP
1867 bytes_read = idetape_queue_rw_tail(drive,
1868 REQ_IDETAPE_READ, 0,
1869 tape->merge_stage->bh);
1da177e4 1870 if (bytes_read < 0) {
d01dbc3b 1871 ide_tape_kfree_buffer(tape->merge_stage);
1da177e4 1872 tape->merge_stage = NULL;
54abf37e 1873 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4
LT
1874 return bytes_read;
1875 }
1876 }
1877 }
5e69bd95 1878
1da177e4
LT
1879 return 0;
1880}
1881
5bd50dc6 1882/* called from idetape_chrdev_read() to service a chrdev read request. */
5a04cfa9 1883static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
1da177e4
LT
1884{
1885 idetape_tape_t *tape = drive->driver_data;
1da177e4 1886
8004a8c9 1887 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
1da177e4 1888
3c98bf34 1889 /* If we are at a filemark, return a read length of 0 */
346331f8 1890 if (test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
1da177e4
LT
1891 return 0;
1892
83042b24 1893 idetape_init_read(drive);
5e69bd95 1894
5e69bd95
BP
1895 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
1896 tape->merge_stage->bh);
1da177e4
LT
1897}
1898
5a04cfa9 1899static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
1da177e4
LT
1900{
1901 idetape_tape_t *tape = drive->driver_data;
1902 struct idetape_bh *bh;
1903 int blocks;
3c98bf34 1904
1da177e4
LT
1905 while (bcount) {
1906 unsigned int count;
1907
1908 bh = tape->merge_stage->bh;
f73850a3 1909 count = min(tape->buffer_size, bcount);
1da177e4 1910 bcount -= count;
54bb2074 1911 blocks = count / tape->blk_size;
1da177e4 1912 while (count) {
5a04cfa9
BP
1913 atomic_set(&bh->b_count,
1914 min(count, (unsigned int)bh->b_size));
1da177e4
LT
1915 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1916 count -= atomic_read(&bh->b_count);
1917 bh = bh->b_reqnext;
1918 }
5a04cfa9
BP
1919 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
1920 tape->merge_stage->bh);
1da177e4
LT
1921 }
1922}
1923
1da177e4 1924/*
3c98bf34
BP
1925 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1926 * currently support only one partition.
1927 */
5a04cfa9 1928static int idetape_rewind_tape(ide_drive_t *drive)
1da177e4
LT
1929{
1930 int retval;
d236d74c 1931 struct ide_atapi_pc pc;
8004a8c9
BP
1932 idetape_tape_t *tape;
1933 tape = drive->driver_data;
1934
1935 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1936
1da177e4
LT
1937 idetape_create_rewind_cmd(drive, &pc);
1938 retval = idetape_queue_pc_tail(drive, &pc);
1939 if (retval)
1940 return retval;
1941
1942 idetape_create_read_position_cmd(&pc);
1943 retval = idetape_queue_pc_tail(drive, &pc);
1944 if (retval)
1945 return retval;
1946 return 0;
1947}
1948
3c98bf34 1949/* mtio.h compatible commands should be issued to the chrdev interface. */
5a04cfa9
BP
1950static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1951 unsigned long arg)
1da177e4
LT
1952{
1953 idetape_tape_t *tape = drive->driver_data;
1da177e4
LT
1954 void __user *argp = (void __user *)arg;
1955
d59823fa
BP
1956 struct idetape_config {
1957 int dsc_rw_frequency;
1958 int dsc_media_access_frequency;
1959 int nr_stages;
1960 } config;
1961
8004a8c9
BP
1962 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1963
1da177e4 1964 switch (cmd) {
5a04cfa9
BP
1965 case 0x0340:
1966 if (copy_from_user(&config, argp, sizeof(config)))
1967 return -EFAULT;
1968 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
5a04cfa9
BP
1969 break;
1970 case 0x0350:
1971 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
83042b24 1972 config.nr_stages = 1;
5a04cfa9
BP
1973 if (copy_to_user(argp, &config, sizeof(config)))
1974 return -EFAULT;
1975 break;
1976 default:
1977 return -EIO;
1da177e4
LT
1978 }
1979 return 0;
1980}
1981
5a04cfa9
BP
1982static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1983 int mt_count)
1da177e4
LT
1984{
1985 idetape_tape_t *tape = drive->driver_data;
d236d74c 1986 struct ide_atapi_pc pc;
5a04cfa9 1987 int retval, count = 0;
b6422013 1988 int sprev = !!(tape->caps[4] & 0x20);
1da177e4
LT
1989
1990 if (mt_count == 0)
1991 return 0;
1992 if (MTBSF == mt_op || MTBSFM == mt_op) {
b6422013 1993 if (!sprev)
1da177e4 1994 return -EIO;
5a04cfa9 1995 mt_count = -mt_count;
1da177e4
LT
1996 }
1997
54abf37e 1998 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
1da177e4 1999 tape->merge_stage_size = 0;
346331f8 2000 if (test_and_clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
1da177e4 2001 ++count;
1da177e4
LT
2002 idetape_discard_read_pipeline(drive, 0);
2003 }
2004
2005 /*
3c98bf34
BP
2006 * The filemark was not found in our internal pipeline; now we can issue
2007 * the space command.
1da177e4
LT
2008 */
2009 switch (mt_op) {
5a04cfa9
BP
2010 case MTFSF:
2011 case MTBSF:
2012 idetape_create_space_cmd(&pc, mt_count - count,
2013 IDETAPE_SPACE_OVER_FILEMARK);
2014 return idetape_queue_pc_tail(drive, &pc);
2015 case MTFSFM:
2016 case MTBSFM:
2017 if (!sprev)
2018 return -EIO;
2019 retval = idetape_space_over_filemarks(drive, MTFSF,
2020 mt_count - count);
2021 if (retval)
2022 return retval;
2023 count = (MTBSFM == mt_op ? 1 : -1);
2024 return idetape_space_over_filemarks(drive, MTFSF, count);
2025 default:
2026 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
2027 mt_op);
2028 return -EIO;
1da177e4
LT
2029 }
2030}
2031
1da177e4 2032/*
3c98bf34 2033 * Our character device read / write functions.
1da177e4 2034 *
3c98bf34
BP
2035 * The tape is optimized to maximize throughput when it is transferring an
2036 * integral number of the "continuous transfer limit", which is a parameter of
2037 * the specific tape (26kB on my particular tape, 32kB for Onstream).
1da177e4 2038 *
3c98bf34
BP
2039 * As of version 1.3 of the driver, the character device provides an abstract
2040 * continuous view of the media - any mix of block sizes (even 1 byte) on the
2041 * same backup/restore procedure is supported. The driver will internally
2042 * convert the requests to the recommended transfer unit, so that an unmatch
2043 * between the user's block size to the recommended size will only result in a
2044 * (slightly) increased driver overhead, but will no longer hit performance.
2045 * This is not applicable to Onstream.
1da177e4 2046 */
5a04cfa9
BP
2047static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
2048 size_t count, loff_t *ppos)
1da177e4
LT
2049{
2050 struct ide_tape_obj *tape = ide_tape_f(file);
2051 ide_drive_t *drive = tape->drive;
5a04cfa9 2052 ssize_t bytes_read, temp, actually_read = 0, rc;
dcd96379 2053 ssize_t ret = 0;
b6422013 2054 u16 ctl = *(u16 *)&tape->caps[12];
1da177e4 2055
8004a8c9 2056 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1da177e4 2057
54abf37e 2058 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
346331f8 2059 if (test_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags))
54bb2074
BP
2060 if (count > tape->blk_size &&
2061 (count % tape->blk_size) == 0)
2062 tape->user_bs_factor = count / tape->blk_size;
1da177e4 2063 }
83042b24 2064 rc = idetape_init_read(drive);
8d06bfad 2065 if (rc < 0)
1da177e4
LT
2066 return rc;
2067 if (count == 0)
2068 return (0);
2069 if (tape->merge_stage_size) {
5a04cfa9
BP
2070 actually_read = min((unsigned int)(tape->merge_stage_size),
2071 (unsigned int)count);
99d74e61 2072 if (idetape_copy_stage_to_user(tape, buf, actually_read))
dcd96379 2073 ret = -EFAULT;
1da177e4
LT
2074 buf += actually_read;
2075 tape->merge_stage_size -= actually_read;
2076 count -= actually_read;
2077 }
f73850a3 2078 while (count >= tape->buffer_size) {
b6422013 2079 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
1da177e4
LT
2080 if (bytes_read <= 0)
2081 goto finish;
99d74e61 2082 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
dcd96379 2083 ret = -EFAULT;
1da177e4
LT
2084 buf += bytes_read;
2085 count -= bytes_read;
2086 actually_read += bytes_read;
2087 }
2088 if (count) {
b6422013 2089 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
1da177e4
LT
2090 if (bytes_read <= 0)
2091 goto finish;
2092 temp = min((unsigned long)count, (unsigned long)bytes_read);
99d74e61 2093 if (idetape_copy_stage_to_user(tape, buf, temp))
dcd96379 2094 ret = -EFAULT;
1da177e4
LT
2095 actually_read += temp;
2096 tape->merge_stage_size = bytes_read-temp;
2097 }
2098finish:
346331f8 2099 if (!actually_read && test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags)) {
8004a8c9
BP
2100 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
2101
1da177e4
LT
2102 idetape_space_over_filemarks(drive, MTFSF, 1);
2103 return 0;
2104 }
dcd96379 2105
5a04cfa9 2106 return ret ? ret : actually_read;
1da177e4
LT
2107}
2108
5a04cfa9 2109static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
1da177e4
LT
2110 size_t count, loff_t *ppos)
2111{
2112 struct ide_tape_obj *tape = ide_tape_f(file);
2113 ide_drive_t *drive = tape->drive;
dcd96379
DW
2114 ssize_t actually_written = 0;
2115 ssize_t ret = 0;
b6422013 2116 u16 ctl = *(u16 *)&tape->caps[12];
1da177e4
LT
2117
2118 /* The drive is write protected. */
2119 if (tape->write_prot)
2120 return -EACCES;
2121
8004a8c9 2122 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1da177e4
LT
2123
2124 /* Initialize write operation */
54abf37e
BP
2125 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
2126 if (tape->chrdev_dir == IDETAPE_DIR_READ)
1da177e4 2127 idetape_discard_read_pipeline(drive, 1);
1da177e4
LT
2128 if (tape->merge_stage || tape->merge_stage_size) {
2129 printk(KERN_ERR "ide-tape: merge_stage_size "
2130 "should be 0 now\n");
2131 tape->merge_stage_size = 0;
2132 }
41aa1706 2133 tape->merge_stage = ide_tape_kmalloc_buffer(tape, 0, 0);
5a04cfa9 2134 if (!tape->merge_stage)
1da177e4 2135 return -ENOMEM;
54abf37e 2136 tape->chrdev_dir = IDETAPE_DIR_WRITE;
1da177e4
LT
2137 idetape_init_merge_stage(tape);
2138
2139 /*
3c98bf34
BP
2140 * Issue a write 0 command to ensure that DSC handshake is
2141 * switched from completion mode to buffer available mode. No
2142 * point in issuing this if DSC overlap isn't supported, some
2143 * drives (Seagate STT3401A) will return an error.
1da177e4
LT
2144 */
2145 if (drive->dsc_overlap) {
5a04cfa9
BP
2146 ssize_t retval = idetape_queue_rw_tail(drive,
2147 REQ_IDETAPE_WRITE, 0,
2148 tape->merge_stage->bh);
1da177e4 2149 if (retval < 0) {
d01dbc3b 2150 ide_tape_kfree_buffer(tape->merge_stage);
1da177e4 2151 tape->merge_stage = NULL;
54abf37e 2152 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4
LT
2153 return retval;
2154 }
2155 }
2156 }
2157 if (count == 0)
2158 return (0);
1da177e4 2159 if (tape->merge_stage_size) {
f73850a3 2160 if (tape->merge_stage_size >= tape->buffer_size) {
5a04cfa9 2161 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
1da177e4
LT
2162 tape->merge_stage_size = 0;
2163 }
5a04cfa9 2164 actually_written = min((unsigned int)
f73850a3 2165 (tape->buffer_size - tape->merge_stage_size),
5a04cfa9 2166 (unsigned int)count);
8646c88f 2167 if (idetape_copy_stage_from_user(tape, buf, actually_written))
dcd96379 2168 ret = -EFAULT;
1da177e4
LT
2169 buf += actually_written;
2170 tape->merge_stage_size += actually_written;
2171 count -= actually_written;
2172
f73850a3 2173 if (tape->merge_stage_size == tape->buffer_size) {
dcd96379 2174 ssize_t retval;
1da177e4 2175 tape->merge_stage_size = 0;
b6422013 2176 retval = idetape_add_chrdev_write_request(drive, ctl);
1da177e4
LT
2177 if (retval <= 0)
2178 return (retval);
2179 }
2180 }
f73850a3 2181 while (count >= tape->buffer_size) {
dcd96379 2182 ssize_t retval;
f73850a3 2183 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
dcd96379 2184 ret = -EFAULT;
f73850a3
BP
2185 buf += tape->buffer_size;
2186 count -= tape->buffer_size;
b6422013 2187 retval = idetape_add_chrdev_write_request(drive, ctl);
f73850a3 2188 actually_written += tape->buffer_size;
1da177e4
LT
2189 if (retval <= 0)
2190 return (retval);
2191 }
2192 if (count) {
2193 actually_written += count;
8646c88f 2194 if (idetape_copy_stage_from_user(tape, buf, count))
dcd96379 2195 ret = -EFAULT;
1da177e4
LT
2196 tape->merge_stage_size += count;
2197 }
5a04cfa9 2198 return ret ? ret : actually_written;
1da177e4
LT
2199}
2200
5a04cfa9 2201static int idetape_write_filemark(ide_drive_t *drive)
1da177e4 2202{
d236d74c 2203 struct ide_atapi_pc pc;
1da177e4
LT
2204
2205 /* Write a filemark */
2206 idetape_create_write_filemark_cmd(drive, &pc, 1);
2207 if (idetape_queue_pc_tail(drive, &pc)) {
2208 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
2209 return -EIO;
2210 }
2211 return 0;
2212}
2213
2214/*
d99c9da2
BP
2215 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
2216 * requested.
1da177e4 2217 *
d99c9da2
BP
2218 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
2219 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
5bd50dc6 2220 * usually not supported.
1da177e4 2221 *
d99c9da2 2222 * The following commands are currently not supported:
1da177e4 2223 *
d99c9da2
BP
2224 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
2225 * MT_ST_WRITE_THRESHOLD.
1da177e4 2226 */
d99c9da2 2227static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
1da177e4
LT
2228{
2229 idetape_tape_t *tape = drive->driver_data;
d236d74c 2230 struct ide_atapi_pc pc;
5a04cfa9 2231 int i, retval;
1da177e4 2232
8004a8c9
BP
2233 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
2234 mt_op, mt_count);
5a04cfa9 2235
1da177e4 2236 switch (mt_op) {
5a04cfa9
BP
2237 case MTFSF:
2238 case MTFSFM:
2239 case MTBSF:
2240 case MTBSFM:
2241 if (!mt_count)
2242 return 0;
2243 return idetape_space_over_filemarks(drive, mt_op, mt_count);
2244 default:
2245 break;
1da177e4 2246 }
5a04cfa9 2247
1da177e4 2248 switch (mt_op) {
5a04cfa9
BP
2249 case MTWEOF:
2250 if (tape->write_prot)
2251 return -EACCES;
2252 idetape_discard_read_pipeline(drive, 1);
2253 for (i = 0; i < mt_count; i++) {
2254 retval = idetape_write_filemark(drive);
2255 if (retval)
2256 return retval;
2257 }
2258 return 0;
2259 case MTREW:
2260 idetape_discard_read_pipeline(drive, 0);
2261 if (idetape_rewind_tape(drive))
2262 return -EIO;
2263 return 0;
2264 case MTLOAD:
2265 idetape_discard_read_pipeline(drive, 0);
2266 idetape_create_load_unload_cmd(drive, &pc,
2267 IDETAPE_LU_LOAD_MASK);
2268 return idetape_queue_pc_tail(drive, &pc);
2269 case MTUNLOAD:
2270 case MTOFFL:
2271 /*
2272 * If door is locked, attempt to unlock before
2273 * attempting to eject.
2274 */
2275 if (tape->door_locked) {
2276 if (idetape_create_prevent_cmd(drive, &pc, 0))
2277 if (!idetape_queue_pc_tail(drive, &pc))
2278 tape->door_locked = DOOR_UNLOCKED;
2279 }
2280 idetape_discard_read_pipeline(drive, 0);
2281 idetape_create_load_unload_cmd(drive, &pc,
2282 !IDETAPE_LU_LOAD_MASK);
2283 retval = idetape_queue_pc_tail(drive, &pc);
2284 if (!retval)
346331f8 2285 clear_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
5a04cfa9
BP
2286 return retval;
2287 case MTNOP:
2288 idetape_discard_read_pipeline(drive, 0);
2289 return idetape_flush_tape_buffers(drive);
2290 case MTRETEN:
2291 idetape_discard_read_pipeline(drive, 0);
2292 idetape_create_load_unload_cmd(drive, &pc,
2293 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
2294 return idetape_queue_pc_tail(drive, &pc);
2295 case MTEOM:
2296 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
2297 return idetape_queue_pc_tail(drive, &pc);
2298 case MTERASE:
2299 (void)idetape_rewind_tape(drive);
2300 idetape_create_erase_cmd(&pc);
2301 return idetape_queue_pc_tail(drive, &pc);
2302 case MTSETBLK:
2303 if (mt_count) {
2304 if (mt_count < tape->blk_size ||
2305 mt_count % tape->blk_size)
1da177e4 2306 return -EIO;
5a04cfa9 2307 tape->user_bs_factor = mt_count / tape->blk_size;
346331f8 2308 clear_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
5a04cfa9 2309 } else
346331f8 2310 set_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
5a04cfa9
BP
2311 return 0;
2312 case MTSEEK:
2313 idetape_discard_read_pipeline(drive, 0);
2314 return idetape_position_tape(drive,
2315 mt_count * tape->user_bs_factor, tape->partition, 0);
2316 case MTSETPART:
2317 idetape_discard_read_pipeline(drive, 0);
2318 return idetape_position_tape(drive, 0, mt_count, 0);
2319 case MTFSR:
2320 case MTBSR:
2321 case MTLOCK:
2322 if (!idetape_create_prevent_cmd(drive, &pc, 1))
1da177e4 2323 return 0;
5a04cfa9
BP
2324 retval = idetape_queue_pc_tail(drive, &pc);
2325 if (retval)
1da177e4 2326 return retval;
5a04cfa9
BP
2327 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
2328 return 0;
2329 case MTUNLOCK:
2330 if (!idetape_create_prevent_cmd(drive, &pc, 0))
1da177e4 2331 return 0;
5a04cfa9
BP
2332 retval = idetape_queue_pc_tail(drive, &pc);
2333 if (retval)
2334 return retval;
2335 tape->door_locked = DOOR_UNLOCKED;
2336 return 0;
2337 default:
2338 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
2339 mt_op);
2340 return -EIO;
1da177e4
LT
2341 }
2342}
2343
2344/*
d99c9da2
BP
2345 * Our character device ioctls. General mtio.h magnetic io commands are
2346 * supported here, and not in the corresponding block interface. Our own
2347 * ide-tape ioctls are supported on both interfaces.
1da177e4 2348 */
d99c9da2
BP
2349static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
2350 unsigned int cmd, unsigned long arg)
1da177e4
LT
2351{
2352 struct ide_tape_obj *tape = ide_tape_f(file);
2353 ide_drive_t *drive = tape->drive;
2354 struct mtop mtop;
2355 struct mtget mtget;
2356 struct mtpos mtpos;
54bb2074 2357 int block_offset = 0, position = tape->first_frame;
1da177e4
LT
2358 void __user *argp = (void __user *)arg;
2359
8004a8c9 2360 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
1da177e4 2361
54abf37e 2362 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
1da177e4
LT
2363 idetape_empty_write_pipeline(drive);
2364 idetape_flush_tape_buffers(drive);
2365 }
2366 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
b361acb1 2367 block_offset = tape->merge_stage_size /
54bb2074 2368 (tape->blk_size * tape->user_bs_factor);
5a04cfa9
BP
2369 position = idetape_read_position(drive);
2370 if (position < 0)
1da177e4
LT
2371 return -EIO;
2372 }
2373 switch (cmd) {
5a04cfa9
BP
2374 case MTIOCTOP:
2375 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
2376 return -EFAULT;
2377 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
2378 case MTIOCGET:
2379 memset(&mtget, 0, sizeof(struct mtget));
2380 mtget.mt_type = MT_ISSCSI2;
2381 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
2382 mtget.mt_dsreg =
2383 ((tape->blk_size * tape->user_bs_factor)
2384 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
2385
2386 if (tape->drv_write_prot)
2387 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
2388
2389 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
2390 return -EFAULT;
2391 return 0;
2392 case MTIOCPOS:
2393 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
2394 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
2395 return -EFAULT;
2396 return 0;
2397 default:
2398 if (tape->chrdev_dir == IDETAPE_DIR_READ)
2399 idetape_discard_read_pipeline(drive, 1);
2400 return idetape_blkdev_ioctl(drive, cmd, arg);
1da177e4
LT
2401 }
2402}
2403
3cffb9ce
BP
2404/*
2405 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
2406 * block size with the reported value.
2407 */
2408static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
2409{
2410 idetape_tape_t *tape = drive->driver_data;
d236d74c 2411 struct ide_atapi_pc pc;
3cffb9ce
BP
2412
2413 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
2414 if (idetape_queue_pc_tail(drive, &pc)) {
2415 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
54bb2074 2416 if (tape->blk_size == 0) {
3cffb9ce
BP
2417 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
2418 "block size, assuming 32k\n");
54bb2074 2419 tape->blk_size = 32768;
3cffb9ce
BP
2420 }
2421 return;
2422 }
d236d74c
BP
2423 tape->blk_size = (pc.buf[4 + 5] << 16) +
2424 (pc.buf[4 + 6] << 8) +
2425 pc.buf[4 + 7];
2426 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
3cffb9ce 2427}
1da177e4 2428
5a04cfa9 2429static int idetape_chrdev_open(struct inode *inode, struct file *filp)
1da177e4
LT
2430{
2431 unsigned int minor = iminor(inode), i = minor & ~0xc0;
2432 ide_drive_t *drive;
2433 idetape_tape_t *tape;
d236d74c 2434 struct ide_atapi_pc pc;
1da177e4
LT
2435 int retval;
2436
8004a8c9
BP
2437 if (i >= MAX_HWIFS * MAX_DRIVES)
2438 return -ENXIO;
2439
2440 tape = ide_tape_chrdev_get(i);
2441 if (!tape)
2442 return -ENXIO;
2443
2444 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2445
1da177e4
LT
2446 /*
2447 * We really want to do nonseekable_open(inode, filp); here, but some
2448 * versions of tar incorrectly call lseek on tapes and bail out if that
2449 * fails. So we disallow pread() and pwrite(), but permit lseeks.
2450 */
2451 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
2452
1da177e4
LT
2453 drive = tape->drive;
2454
2455 filp->private_data = tape;
2456
346331f8 2457 if (test_and_set_bit(IDETAPE_FLAG_BUSY, &tape->flags)) {
1da177e4
LT
2458 retval = -EBUSY;
2459 goto out_put_tape;
2460 }
2461
2462 retval = idetape_wait_ready(drive, 60 * HZ);
2463 if (retval) {
346331f8 2464 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
1da177e4
LT
2465 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2466 goto out_put_tape;
2467 }
2468
2469 idetape_read_position(drive);
346331f8 2470 if (!test_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags))
1da177e4
LT
2471 (void)idetape_rewind_tape(drive);
2472
1da177e4 2473 /* Read block size and write protect status from drive. */
3cffb9ce 2474 ide_tape_get_bsize_from_bdesc(drive);
1da177e4
LT
2475
2476 /* Set write protect flag if device is opened as read-only. */
2477 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2478 tape->write_prot = 1;
2479 else
2480 tape->write_prot = tape->drv_write_prot;
2481
2482 /* Make sure drive isn't write protected if user wants to write. */
2483 if (tape->write_prot) {
2484 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2485 (filp->f_flags & O_ACCMODE) == O_RDWR) {
346331f8 2486 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
1da177e4
LT
2487 retval = -EROFS;
2488 goto out_put_tape;
2489 }
2490 }
2491
3c98bf34 2492 /* Lock the tape drive door so user can't eject. */
54abf37e 2493 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
1da177e4
LT
2494 if (idetape_create_prevent_cmd(drive, &pc, 1)) {
2495 if (!idetape_queue_pc_tail(drive, &pc)) {
2496 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2497 tape->door_locked = DOOR_LOCKED;
2498 }
2499 }
2500 }
1da177e4
LT
2501 return 0;
2502
2503out_put_tape:
2504 ide_tape_put(tape);
2505 return retval;
2506}
2507
5a04cfa9 2508static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
1da177e4
LT
2509{
2510 idetape_tape_t *tape = drive->driver_data;
2511
2512 idetape_empty_write_pipeline(drive);
41aa1706 2513 tape->merge_stage = ide_tape_kmalloc_buffer(tape, 1, 0);
1da177e4 2514 if (tape->merge_stage != NULL) {
54bb2074
BP
2515 idetape_pad_zeros(drive, tape->blk_size *
2516 (tape->user_bs_factor - 1));
d01dbc3b 2517 ide_tape_kfree_buffer(tape->merge_stage);
1da177e4
LT
2518 tape->merge_stage = NULL;
2519 }
2520 idetape_write_filemark(drive);
2521 idetape_flush_tape_buffers(drive);
2522 idetape_flush_tape_buffers(drive);
2523}
2524
5a04cfa9 2525static int idetape_chrdev_release(struct inode *inode, struct file *filp)
1da177e4
LT
2526{
2527 struct ide_tape_obj *tape = ide_tape_f(filp);
2528 ide_drive_t *drive = tape->drive;
d236d74c 2529 struct ide_atapi_pc pc;
1da177e4
LT
2530 unsigned int minor = iminor(inode);
2531
2532 lock_kernel();
2533 tape = drive->driver_data;
8004a8c9
BP
2534
2535 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1da177e4 2536
54abf37e 2537 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
1da177e4 2538 idetape_write_release(drive, minor);
54abf37e 2539 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
1da177e4
LT
2540 if (minor < 128)
2541 idetape_discard_read_pipeline(drive, 1);
1da177e4 2542 }
f64eee7b 2543
346331f8 2544 if (minor < 128 && test_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags))
1da177e4 2545 (void) idetape_rewind_tape(drive);
54abf37e 2546 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
1da177e4
LT
2547 if (tape->door_locked == DOOR_LOCKED) {
2548 if (idetape_create_prevent_cmd(drive, &pc, 0)) {
2549 if (!idetape_queue_pc_tail(drive, &pc))
2550 tape->door_locked = DOOR_UNLOCKED;
2551 }
2552 }
2553 }
346331f8 2554 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
1da177e4
LT
2555 ide_tape_put(tape);
2556 unlock_kernel();
2557 return 0;
2558}
2559
2560/*
71071b8e 2561 * check the contents of the ATAPI IDENTIFY command results. We return:
1da177e4 2562 *
71071b8e
BP
2563 * 1 - If the tape can be supported by us, based on the information we have so
2564 * far.
1da177e4 2565 *
71071b8e 2566 * 0 - If this tape driver is not currently supported by us.
1da177e4 2567 */
71071b8e 2568static int idetape_identify_device(ide_drive_t *drive)
1da177e4 2569{
71071b8e 2570 u8 gcw[2], protocol, device_type, removable, packet_size;
1da177e4
LT
2571
2572 if (drive->id_read == 0)
2573 return 1;
2574
71071b8e 2575 *((unsigned short *) &gcw) = drive->id->config;
1da177e4 2576
71071b8e
BP
2577 protocol = (gcw[1] & 0xC0) >> 6;
2578 device_type = gcw[1] & 0x1F;
2579 removable = !!(gcw[0] & 0x80);
2580 packet_size = gcw[0] & 0x3;
1da177e4 2581
71071b8e
BP
2582 /* Check that we can support this device */
2583 if (protocol != 2)
16422de3 2584 printk(KERN_ERR "ide-tape: Protocol (0x%02x) is not ATAPI\n",
71071b8e
BP
2585 protocol);
2586 else if (device_type != 1)
16422de3 2587 printk(KERN_ERR "ide-tape: Device type (0x%02x) is not set "
71071b8e
BP
2588 "to tape\n", device_type);
2589 else if (!removable)
1da177e4 2590 printk(KERN_ERR "ide-tape: The removable flag is not set\n");
71071b8e 2591 else if (packet_size != 0) {
24d57f8b
BP
2592 printk(KERN_ERR "ide-tape: Packet size (0x%02x) is not 12"
2593 " bytes\n", packet_size);
1da177e4
LT
2594 } else
2595 return 1;
2596 return 0;
2597}
2598
6d29c8f0 2599static void idetape_get_inquiry_results(ide_drive_t *drive)
1da177e4 2600{
1da177e4 2601 idetape_tape_t *tape = drive->driver_data;
d236d74c 2602 struct ide_atapi_pc pc;
41f81d54 2603 char fw_rev[6], vendor_id[10], product_id[18];
6d29c8f0 2604
1da177e4
LT
2605 idetape_create_inquiry_cmd(&pc);
2606 if (idetape_queue_pc_tail(drive, &pc)) {
6d29c8f0
BP
2607 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2608 tape->name);
1da177e4
LT
2609 return;
2610 }
d236d74c
BP
2611 memcpy(vendor_id, &pc.buf[8], 8);
2612 memcpy(product_id, &pc.buf[16], 16);
2613 memcpy(fw_rev, &pc.buf[32], 4);
41f81d54
BP
2614
2615 ide_fixstring(vendor_id, 10, 0);
2616 ide_fixstring(product_id, 18, 0);
2617 ide_fixstring(fw_rev, 6, 0);
2618
6d29c8f0 2619 printk(KERN_INFO "ide-tape: %s <-> %s: %s %s rev %s\n",
41f81d54 2620 drive->name, tape->name, vendor_id, product_id, fw_rev);
1da177e4
LT
2621}
2622
2623/*
b6422013
BP
2624 * Ask the tape about its various parameters. In particular, we will adjust our
2625 * data transfer buffer size to the recommended value as returned by the tape.
1da177e4 2626 */
5a04cfa9 2627static void idetape_get_mode_sense_results(ide_drive_t *drive)
1da177e4
LT
2628{
2629 idetape_tape_t *tape = drive->driver_data;
d236d74c 2630 struct ide_atapi_pc pc;
b6422013
BP
2631 u8 *caps;
2632 u8 speed, max_speed;
47314fa4 2633
1da177e4
LT
2634 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
2635 if (idetape_queue_pc_tail(drive, &pc)) {
b6422013
BP
2636 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2637 " some default values\n");
54bb2074 2638 tape->blk_size = 512;
b6422013
BP
2639 put_unaligned(52, (u16 *)&tape->caps[12]);
2640 put_unaligned(540, (u16 *)&tape->caps[14]);
2641 put_unaligned(6*52, (u16 *)&tape->caps[16]);
1da177e4
LT
2642 return;
2643 }
d236d74c 2644 caps = pc.buf + 4 + pc.buf[3];
b6422013
BP
2645
2646 /* convert to host order and save for later use */
2647 speed = be16_to_cpu(*(u16 *)&caps[14]);
2648 max_speed = be16_to_cpu(*(u16 *)&caps[8]);
1da177e4 2649
b6422013
BP
2650 put_unaligned(max_speed, (u16 *)&caps[8]);
2651 put_unaligned(be16_to_cpu(*(u16 *)&caps[12]), (u16 *)&caps[12]);
2652 put_unaligned(speed, (u16 *)&caps[14]);
2653 put_unaligned(be16_to_cpu(*(u16 *)&caps[16]), (u16 *)&caps[16]);
1da177e4 2654
b6422013
BP
2655 if (!speed) {
2656 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2657 "(assuming 650KB/sec)\n", drive->name);
2658 put_unaligned(650, (u16 *)&caps[14]);
1da177e4 2659 }
b6422013
BP
2660 if (!max_speed) {
2661 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2662 "(assuming 650KB/sec)\n", drive->name);
2663 put_unaligned(650, (u16 *)&caps[8]);
1da177e4
LT
2664 }
2665
b6422013
BP
2666 memcpy(&tape->caps, caps, 20);
2667 if (caps[7] & 0x02)
54bb2074 2668 tape->blk_size = 512;
b6422013 2669 else if (caps[7] & 0x04)
54bb2074 2670 tape->blk_size = 1024;
1da177e4
LT
2671}
2672
7662d046 2673#ifdef CONFIG_IDE_PROC_FS
5a04cfa9 2674static void idetape_add_settings(ide_drive_t *drive)
1da177e4
LT
2675{
2676 idetape_tape_t *tape = drive->driver_data;
2677
b6422013
BP
2678 ide_add_setting(drive, "buffer", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2679 1, 2, (u16 *)&tape->caps[16], NULL);
b6422013
BP
2680 ide_add_setting(drive, "speed", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2681 1, 1, (u16 *)&tape->caps[14], NULL);
f73850a3
BP
2682 ide_add_setting(drive, "buffer_size", SETTING_READ, TYPE_INT, 0, 0xffff,
2683 1, 1024, &tape->buffer_size, NULL);
54bb2074
BP
2684 ide_add_setting(drive, "tdsc", SETTING_RW, TYPE_INT, IDETAPE_DSC_RW_MIN,
2685 IDETAPE_DSC_RW_MAX, 1000, HZ, &tape->best_dsc_rw_freq,
2686 NULL);
5a04cfa9
BP
2687 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1,
2688 1, &drive->dsc_overlap, NULL);
5a04cfa9
BP
2689 ide_add_setting(drive, "avg_speed", SETTING_READ, TYPE_INT, 0, 0xffff,
2690 1, 1, &tape->avg_speed, NULL);
8004a8c9
BP
2691 ide_add_setting(drive, "debug_mask", SETTING_RW, TYPE_INT, 0, 0xffff, 1,
2692 1, &tape->debug_mask, NULL);
1da177e4 2693}
7662d046
BZ
2694#else
2695static inline void idetape_add_settings(ide_drive_t *drive) { ; }
2696#endif
1da177e4
LT
2697
2698/*
3c98bf34 2699 * The function below is called to:
1da177e4 2700 *
3c98bf34
BP
2701 * 1. Initialize our various state variables.
2702 * 2. Ask the tape for its capabilities.
2703 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2704 * is chosen based on the recommendation which we received in step 2.
1da177e4 2705 *
3c98bf34
BP
2706 * Note that at this point ide.c already assigned us an irq, so that we can
2707 * queue requests here and wait for their completion.
1da177e4 2708 */
5a04cfa9 2709static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
1da177e4 2710{
83042b24 2711 unsigned long t;
1da177e4 2712 int speed;
f73850a3 2713 int buffer_size;
71071b8e 2714 u8 gcw[2];
b6422013 2715 u16 *ctl = (u16 *)&tape->caps[12];
1da177e4 2716
54bb2074 2717 spin_lock_init(&tape->lock);
1da177e4 2718 drive->dsc_overlap = 1;
4166c199
BZ
2719 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2720 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2721 tape->name);
2722 drive->dsc_overlap = 0;
1da177e4 2723 }
1da177e4
LT
2724 /* Seagate Travan drives do not support DSC overlap. */
2725 if (strstr(drive->id->model, "Seagate STT3401"))
2726 drive->dsc_overlap = 0;
2727 tape->minor = minor;
2728 tape->name[0] = 'h';
2729 tape->name[1] = 't';
2730 tape->name[2] = '0' + minor;
54abf37e 2731 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4 2732 tape->pc = tape->pc_stack;
1da177e4 2733 *((unsigned short *) &gcw) = drive->id->config;
71071b8e
BP
2734
2735 /* Command packet DRQ type */
2736 if (((gcw[0] & 0x60) >> 5) == 1)
346331f8 2737 set_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags);
1da177e4 2738
1da177e4
LT
2739 idetape_get_inquiry_results(drive);
2740 idetape_get_mode_sense_results(drive);
3cffb9ce 2741 ide_tape_get_bsize_from_bdesc(drive);
1da177e4 2742 tape->user_bs_factor = 1;
f73850a3
BP
2743 tape->buffer_size = *ctl * tape->blk_size;
2744 while (tape->buffer_size > 0xffff) {
1da177e4 2745 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
b6422013 2746 *ctl /= 2;
f73850a3 2747 tape->buffer_size = *ctl * tape->blk_size;
1da177e4 2748 }
f73850a3 2749 buffer_size = tape->buffer_size;
a997a435 2750 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
f73850a3 2751 if (buffer_size % PAGE_SIZE) {
a997a435 2752 tape->pages_per_buffer++;
f73850a3 2753 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
1da177e4
LT
2754 }
2755
83042b24 2756 /* select the "best" DSC read/write polling freq */
b6422013 2757 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
1da177e4 2758
f73850a3 2759 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
1da177e4
LT
2760
2761 /*
3c98bf34
BP
2762 * Ensure that the number we got makes sense; limit it within
2763 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
1da177e4 2764 */
54bb2074
BP
2765 tape->best_dsc_rw_freq = max_t(unsigned long,
2766 min_t(unsigned long, t, IDETAPE_DSC_RW_MAX),
2767 IDETAPE_DSC_RW_MIN);
1da177e4 2768 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
83042b24 2769 "%lums tDSC%s\n",
b6422013 2770 drive->name, tape->name, *(u16 *)&tape->caps[14],
f73850a3
BP
2771 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2772 tape->buffer_size / 1024,
54bb2074 2773 tape->best_dsc_rw_freq * 1000 / HZ,
1da177e4
LT
2774 drive->using_dma ? ", DMA":"");
2775
2776 idetape_add_settings(drive);
2777}
2778
4031bbe4 2779static void ide_tape_remove(ide_drive_t *drive)
1da177e4
LT
2780{
2781 idetape_tape_t *tape = drive->driver_data;
1da177e4 2782
7662d046 2783 ide_proc_unregister_driver(drive, tape->driver);
1da177e4
LT
2784
2785 ide_unregister_region(tape->disk);
2786
2787 ide_tape_put(tape);
1da177e4
LT
2788}
2789
2790static void ide_tape_release(struct kref *kref)
2791{
2792 struct ide_tape_obj *tape = to_ide_tape(kref);
2793 ide_drive_t *drive = tape->drive;
2794 struct gendisk *g = tape->disk;
2795
83042b24 2796 BUG_ON(tape->merge_stage_size);
8604affd 2797
1da177e4
LT
2798 drive->dsc_overlap = 0;
2799 drive->driver_data = NULL;
dbc1272e 2800 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
5a04cfa9
BP
2801 device_destroy(idetape_sysfs_class,
2802 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
1da177e4
LT
2803 idetape_devs[tape->minor] = NULL;
2804 g->private_data = NULL;
2805 put_disk(g);
2806 kfree(tape);
2807}
2808
ecfd80e4 2809#ifdef CONFIG_IDE_PROC_FS
1da177e4
LT
2810static int proc_idetape_read_name
2811 (char *page, char **start, off_t off, int count, int *eof, void *data)
2812{
2813 ide_drive_t *drive = (ide_drive_t *) data;
2814 idetape_tape_t *tape = drive->driver_data;
2815 char *out = page;
2816 int len;
2817
2818 len = sprintf(out, "%s\n", tape->name);
2819 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2820}
2821
2822static ide_proc_entry_t idetape_proc[] = {
2823 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2824 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2825 { NULL, 0, NULL, NULL }
2826};
1da177e4
LT
2827#endif
2828
4031bbe4 2829static int ide_tape_probe(ide_drive_t *);
1da177e4 2830
1da177e4 2831static ide_driver_t idetape_driver = {
8604affd 2832 .gen_driver = {
4ef3b8f4 2833 .owner = THIS_MODULE,
8604affd
BZ
2834 .name = "ide-tape",
2835 .bus = &ide_bus_type,
8604affd 2836 },
4031bbe4
RK
2837 .probe = ide_tape_probe,
2838 .remove = ide_tape_remove,
1da177e4
LT
2839 .version = IDETAPE_VERSION,
2840 .media = ide_tape,
1da177e4 2841 .supports_dsc_overlap = 1,
1da177e4
LT
2842 .do_request = idetape_do_request,
2843 .end_request = idetape_end_request,
2844 .error = __ide_error,
2845 .abort = __ide_abort,
7662d046 2846#ifdef CONFIG_IDE_PROC_FS
1da177e4 2847 .proc = idetape_proc,
7662d046 2848#endif
1da177e4
LT
2849};
2850
3c98bf34 2851/* Our character device supporting functions, passed to register_chrdev. */
2b8693c0 2852static const struct file_operations idetape_fops = {
1da177e4
LT
2853 .owner = THIS_MODULE,
2854 .read = idetape_chrdev_read,
2855 .write = idetape_chrdev_write,
2856 .ioctl = idetape_chrdev_ioctl,
2857 .open = idetape_chrdev_open,
2858 .release = idetape_chrdev_release,
2859};
2860
2861static int idetape_open(struct inode *inode, struct file *filp)
2862{
2863 struct gendisk *disk = inode->i_bdev->bd_disk;
2864 struct ide_tape_obj *tape;
1da177e4 2865
5a04cfa9
BP
2866 tape = ide_tape_get(disk);
2867 if (!tape)
1da177e4
LT
2868 return -ENXIO;
2869
1da177e4
LT
2870 return 0;
2871}
2872
2873static int idetape_release(struct inode *inode, struct file *filp)
2874{
2875 struct gendisk *disk = inode->i_bdev->bd_disk;
2876 struct ide_tape_obj *tape = ide_tape_g(disk);
1da177e4
LT
2877
2878 ide_tape_put(tape);
2879
2880 return 0;
2881}
2882
2883static int idetape_ioctl(struct inode *inode, struct file *file,
2884 unsigned int cmd, unsigned long arg)
2885{
2886 struct block_device *bdev = inode->i_bdev;
2887 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2888 ide_drive_t *drive = tape->drive;
2889 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2890 if (err == -EINVAL)
2891 err = idetape_blkdev_ioctl(drive, cmd, arg);
2892 return err;
2893}
2894
2895static struct block_device_operations idetape_block_ops = {
2896 .owner = THIS_MODULE,
2897 .open = idetape_open,
2898 .release = idetape_release,
2899 .ioctl = idetape_ioctl,
2900};
2901
4031bbe4 2902static int ide_tape_probe(ide_drive_t *drive)
1da177e4
LT
2903{
2904 idetape_tape_t *tape;
2905 struct gendisk *g;
2906 int minor;
2907
2908 if (!strstr("ide-tape", drive->driver_req))
2909 goto failed;
2910 if (!drive->present)
2911 goto failed;
2912 if (drive->media != ide_tape)
2913 goto failed;
5a04cfa9
BP
2914 if (!idetape_identify_device(drive)) {
2915 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2916 " the driver\n", drive->name);
1da177e4
LT
2917 goto failed;
2918 }
2919 if (drive->scsi) {
5a04cfa9
BP
2920 printk(KERN_INFO "ide-tape: passing drive %s to ide-scsi"
2921 " emulation.\n", drive->name);
1da177e4
LT
2922 goto failed;
2923 }
5a04cfa9 2924 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
1da177e4 2925 if (tape == NULL) {
5a04cfa9
BP
2926 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2927 drive->name);
1da177e4
LT
2928 goto failed;
2929 }
2930
2931 g = alloc_disk(1 << PARTN_BITS);
2932 if (!g)
2933 goto out_free_tape;
2934
2935 ide_init_disk(g, drive);
2936
7662d046 2937 ide_proc_register_driver(drive, &idetape_driver);
1da177e4 2938
1da177e4
LT
2939 kref_init(&tape->kref);
2940
2941 tape->drive = drive;
2942 tape->driver = &idetape_driver;
2943 tape->disk = g;
2944
2945 g->private_data = &tape->driver;
2946
2947 drive->driver_data = tape;
2948
cf8b8975 2949 mutex_lock(&idetape_ref_mutex);
1da177e4
LT
2950 for (minor = 0; idetape_devs[minor]; minor++)
2951 ;
2952 idetape_devs[minor] = tape;
cf8b8975 2953 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
2954
2955 idetape_setup(drive, tape, minor);
2956
dbc1272e
TJ
2957 device_create(idetape_sysfs_class, &drive->gendev,
2958 MKDEV(IDETAPE_MAJOR, minor), "%s", tape->name);
2959 device_create(idetape_sysfs_class, &drive->gendev,
2960 MKDEV(IDETAPE_MAJOR, minor + 128), "n%s", tape->name);
d5dee80a 2961
1da177e4
LT
2962 g->fops = &idetape_block_ops;
2963 ide_register_region(g);
2964
2965 return 0;
8604affd 2966
1da177e4
LT
2967out_free_tape:
2968 kfree(tape);
2969failed:
8604affd 2970 return -ENODEV;
1da177e4
LT
2971}
2972
5a04cfa9 2973static void __exit idetape_exit(void)
1da177e4 2974{
8604affd 2975 driver_unregister(&idetape_driver.gen_driver);
d5dee80a 2976 class_destroy(idetape_sysfs_class);
1da177e4
LT
2977 unregister_chrdev(IDETAPE_MAJOR, "ht");
2978}
2979
17514e8a 2980static int __init idetape_init(void)
1da177e4 2981{
d5dee80a
WD
2982 int error = 1;
2983 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2984 if (IS_ERR(idetape_sysfs_class)) {
2985 idetape_sysfs_class = NULL;
2986 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2987 error = -EBUSY;
2988 goto out;
2989 }
2990
1da177e4 2991 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
5a04cfa9
BP
2992 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2993 " interface\n");
d5dee80a
WD
2994 error = -EBUSY;
2995 goto out_free_class;
1da177e4 2996 }
d5dee80a
WD
2997
2998 error = driver_register(&idetape_driver.gen_driver);
2999 if (error)
3000 goto out_free_driver;
3001
3002 return 0;
3003
3004out_free_driver:
3005 driver_unregister(&idetape_driver.gen_driver);
3006out_free_class:
3007 class_destroy(idetape_sysfs_class);
3008out:
3009 return error;
1da177e4
LT
3010}
3011
263756ec 3012MODULE_ALIAS("ide:*m-tape*");
1da177e4
LT
3013module_init(idetape_init);
3014module_exit(idetape_exit);
3015MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
9c145768
BP
3016MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
3017MODULE_LICENSE("GPL");