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