ide-atapi: add a buffer-arg to ide_queue_pc_tail
[deliverable/linux.git] / drivers / ide / ide-tape.c
CommitLineData
1da177e4 1/*
5ce78af4
BP
2 * IDE ATAPI streaming tape driver.
3 *
59bca8cc
BZ
4 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
1da177e4 6 *
1da177e4
LT
7 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
1da177e4 13 *
5ce78af4
BP
14 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
1da177e4
LT
16 */
17
51509eec
BZ
18#define DRV_NAME "ide-tape"
19
dfe79936 20#define IDETAPE_VERSION "1.20"
1da177e4 21
1da177e4
LT
22#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
9bae1ff3 30#include <linux/jiffies.h>
1da177e4 31#include <linux/major.h>
1da177e4
LT
32#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
cf8b8975 40#include <linux/mutex.h>
90699ce2 41#include <scsi/scsi.h>
1da177e4
LT
42
43#include <asm/byteorder.h>
c837cfa5
BP
44#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
1da177e4 47#include <asm/unaligned.h>
1da177e4
LT
48#include <linux/mtio.h>
49
8004a8c9
BP
50enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
8004a8c9
BP
59};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
1da177e4 74/**************************** Tunable parameters *****************************/
1da177e4 75/*
3c98bf34
BP
76 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
1da177e4 78 *
3c98bf34 79 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
1da177e4
LT
80 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
1da177e4 83/*
3c98bf34
BP
84 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
1da177e4 88 */
3c98bf34 89#define IDETAPE_FIFO_THRESHOLD 2
1da177e4
LT
90
91/*
3c98bf34 92 * DSC polling parameters.
1da177e4 93 *
3c98bf34
BP
94 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
1da177e4 96 *
3c98bf34
BP
97 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
1da177e4 102 *
3c98bf34
BP
103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
1da177e4 111 *
3c98bf34
BP
112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
1da177e4 114 */
3c98bf34
BP
115
116/* DSC timings. */
1da177e4
LT
117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
54abf37e
BP
127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
1da177e4 133
03056b90
BP
134/* Tape door status */
135#define DOOR_UNLOCKED 0
136#define DOOR_LOCKED 1
137#define DOOR_EXPLICITLY_LOCKED 2
138
139/* Some defines for the SPACE command */
140#define IDETAPE_SPACE_OVER_FILEMARK 1
141#define IDETAPE_SPACE_TO_EOD 3
142
143/* Some defines for the LOAD UNLOAD command */
144#define IDETAPE_LU_LOAD_MASK 1
145#define IDETAPE_LU_RETENSION_MASK 2
146#define IDETAPE_LU_EOT_MASK 4
147
03056b90
BP
148/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
149#define IDETAPE_BLOCK_DESCRIPTOR 0
150#define IDETAPE_CAPABILITIES_PAGE 0x2a
151
1da177e4 152/*
3c98bf34
BP
153 * Most of our global data which we need to save even as we leave the driver due
154 * to an interrupt or a timer event is stored in the struct defined below.
1da177e4
LT
155 */
156typedef struct ide_tape_obj {
7f3c868b
BZ
157 ide_drive_t *drive;
158 struct ide_driver *driver;
159 struct gendisk *disk;
8fed4368 160 struct device dev;
1da177e4 161
2e8a6f89
BZ
162 /* used by REQ_IDETAPE_{READ,WRITE} requests */
163 struct ide_atapi_pc queued_pc;
394a4c21 164
1da177e4 165 /*
3c98bf34 166 * DSC polling variables.
1da177e4 167 *
3c98bf34
BP
168 * While polling for DSC we use postponed_rq to postpone the current
169 * request so that ide.c will be able to service pending requests on the
170 * other device. Note that at most we will have only one DSC (usually
5bd50dc6 171 * data transfer) request in the device request queue.
1da177e4
LT
172 */
173 struct request *postponed_rq;
174 /* The time in which we started polling for DSC */
175 unsigned long dsc_polling_start;
176 /* Timer used to poll for dsc */
177 struct timer_list dsc_timer;
178 /* Read/Write dsc polling frequency */
54bb2074
BP
179 unsigned long best_dsc_rw_freq;
180 unsigned long dsc_poll_freq;
1da177e4
LT
181 unsigned long dsc_timeout;
182
3c98bf34 183 /* Read position information */
1da177e4
LT
184 u8 partition;
185 /* Current block */
54bb2074 186 unsigned int first_frame;
1da177e4 187
3c98bf34 188 /* Last error information */
1da177e4
LT
189 u8 sense_key, asc, ascq;
190
3c98bf34 191 /* Character device operation */
1da177e4
LT
192 unsigned int minor;
193 /* device name */
194 char name[4];
195 /* Current character device data transfer direction */
54abf37e 196 u8 chrdev_dir;
1da177e4 197
54bb2074
BP
198 /* tape block size, usually 512 or 1024 bytes */
199 unsigned short blk_size;
1da177e4 200 int user_bs_factor;
b6422013 201
1da177e4 202 /* Copy of the tape's Capabilities and Mechanical Page */
b6422013 203 u8 caps[20];
1da177e4
LT
204
205 /*
3c98bf34 206 * Active data transfer request parameters.
1da177e4 207 *
3c98bf34
BP
208 * At most, there is only one ide-tape originated data transfer request
209 * in the device request queue. This allows ide.c to easily service
210 * requests from the other device when we postpone our active request.
1da177e4 211 */
83042b24 212
3c98bf34 213 /* Data buffer size chosen based on the tape's recommendation */
f73850a3 214 int buffer_size;
6cf3d545
TH
215 /* Staging buffer of buffer_size bytes */
216 void *buf;
217 /* The read/write cursor */
218 void *cur;
219 /* The number of valid bytes in buf */
220 size_t valid;
3c98bf34 221
3c98bf34 222 /* Measures average tape speed */
1da177e4
LT
223 unsigned long avg_time;
224 int avg_size;
225 int avg_speed;
226
1da177e4
LT
227 /* the door is currently locked */
228 int door_locked;
229 /* the tape hardware is write protected */
230 char drv_write_prot;
231 /* the tape is write protected (hardware or opened as read-only) */
232 char write_prot;
233
8004a8c9 234 u32 debug_mask;
1da177e4
LT
235} idetape_tape_t;
236
cf8b8975 237static DEFINE_MUTEX(idetape_ref_mutex);
1da177e4 238
d5dee80a
WD
239static struct class *idetape_sysfs_class;
240
8fed4368 241static void ide_tape_release(struct device *);
08da591e 242
1da177e4
LT
243static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
244{
245 struct ide_tape_obj *tape = NULL;
246
cf8b8975 247 mutex_lock(&idetape_ref_mutex);
5aeddf90 248 tape = ide_drv_g(disk, ide_tape_obj);
08da591e 249 if (tape) {
d3e33ff5 250 if (ide_device_get(tape->drive))
08da591e 251 tape = NULL;
d3e33ff5 252 else
8fed4368 253 get_device(&tape->dev);
08da591e 254 }
cf8b8975 255 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
256 return tape;
257}
258
1da177e4
LT
259static void ide_tape_put(struct ide_tape_obj *tape)
260{
d3e33ff5
BZ
261 ide_drive_t *drive = tape->drive;
262
cf8b8975 263 mutex_lock(&idetape_ref_mutex);
8fed4368 264 put_device(&tape->dev);
d3e33ff5 265 ide_device_put(drive);
cf8b8975 266 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
267}
268
1da177e4 269/*
3c98bf34
BP
270 * The variables below are used for the character device interface. Additional
271 * state variables are defined in our ide_drive_t structure.
1da177e4 272 */
5a04cfa9 273static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
1da177e4 274
1da177e4
LT
275static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
276{
277 struct ide_tape_obj *tape = NULL;
278
cf8b8975 279 mutex_lock(&idetape_ref_mutex);
1da177e4
LT
280 tape = idetape_devs[i];
281 if (tape)
8fed4368 282 get_device(&tape->dev);
cf8b8975 283 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
284 return tape;
285}
286
1da177e4 287/*
1b5db434
BP
288 * called on each failed packet command retry to analyze the request sense. We
289 * currently do not utilize this information.
1da177e4 290 */
1b5db434 291static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
1da177e4
LT
292{
293 idetape_tape_t *tape = drive->driver_data;
5e2040fd 294 struct ide_atapi_pc *pc = drive->failed_pc;
dfb7e621 295 struct request *rq = drive->hwif->rq;
1da177e4 296
1b5db434
BP
297 tape->sense_key = sense[2] & 0xF;
298 tape->asc = sense[12];
299 tape->ascq = sense[13];
8004a8c9
BP
300
301 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
302 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
1da177e4 303
077e6dba 304 /* correct remaining bytes to transfer */
e998f30b 305 if (pc->flags & PC_FLAG_DMA_ERROR)
077e6dba 306 rq->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
1da177e4
LT
307
308 /*
309 * If error was the result of a zero-length read or write command,
310 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
311 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
312 */
90699ce2 313 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
1b5db434
BP
314 /* length == 0 */
315 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
316 if (tape->sense_key == 5) {
1da177e4
LT
317 /* don't report an error, everything's ok */
318 pc->error = 0;
319 /* don't retry read/write */
346331f8 320 pc->flags |= PC_FLAG_ABORT;
1da177e4
LT
321 }
322 }
90699ce2 323 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
c152cc1a 324 pc->error = IDE_DRV_ERROR_FILEMARK;
346331f8 325 pc->flags |= PC_FLAG_ABORT;
1da177e4 326 }
90699ce2 327 if (pc->c[0] == WRITE_6) {
1b5db434
BP
328 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
329 && tape->asc == 0x0 && tape->ascq == 0x2)) {
c152cc1a 330 pc->error = IDE_DRV_ERROR_EOD;
346331f8 331 pc->flags |= PC_FLAG_ABORT;
1da177e4
LT
332 }
333 }
90699ce2 334 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
1b5db434 335 if (tape->sense_key == 8) {
c152cc1a 336 pc->error = IDE_DRV_ERROR_EOD;
346331f8 337 pc->flags |= PC_FLAG_ABORT;
1da177e4 338 }
346331f8 339 if (!(pc->flags & PC_FLAG_ABORT) &&
077e6dba 340 (blk_rq_bytes(rq) - rq->resid_len))
1da177e4
LT
341 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
342 }
343}
344
b14c7212
BZ
345static void ide_tape_handle_dsc(ide_drive_t *);
346
03a2faae 347static int ide_tape_callback(ide_drive_t *drive, int dsc)
1da177e4
LT
348{
349 idetape_tape_t *tape = drive->driver_data;
2b9efba4 350 struct ide_atapi_pc *pc = drive->pc;
313afea7 351 struct request *rq = drive->hwif->rq;
5985e6ab 352 int uptodate = pc->error ? 0 : 1;
313afea7 353 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
1da177e4 354
8004a8c9
BP
355 debug_log(DBG_PROCS, "Enter %s\n", __func__);
356
b14c7212
BZ
357 if (dsc)
358 ide_tape_handle_dsc(drive);
359
5e2040fd
BZ
360 if (drive->failed_pc == pc)
361 drive->failed_pc = NULL;
dd2e9a03 362
5985e6ab
BZ
363 if (pc->c[0] == REQUEST_SENSE) {
364 if (uptodate)
365 idetape_analyze_error(drive, pc->buf);
366 else
367 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
368 "itself - Aborting request!\n");
369 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
077e6dba
BP
370 unsigned int blocks =
371 (blk_rq_bytes(rq) - rq->resid_len) / tape->blk_size;
5985e6ab
BZ
372
373 tape->avg_size += blocks * tape->blk_size;
374
375 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
376 tape->avg_speed = tape->avg_size * HZ /
377 (jiffies - tape->avg_time) / 1024;
378 tape->avg_size = 0;
379 tape->avg_time = jiffies;
380 }
381
382 tape->first_frame += blocks;
5985e6ab 383
313afea7
BZ
384 if (pc->error) {
385 uptodate = 0;
386 err = pc->error;
387 }
5985e6ab 388 } else if (pc->c[0] == READ_POSITION && uptodate) {
2b9efba4 389 u8 *readpos = pc->buf;
5985e6ab
BZ
390
391 debug_log(DBG_SENSE, "BOP - %s\n",
392 (readpos[0] & 0x80) ? "Yes" : "No");
393 debug_log(DBG_SENSE, "EOP - %s\n",
394 (readpos[0] & 0x40) ? "Yes" : "No");
395
396 if (readpos[0] & 0x4) {
397 printk(KERN_INFO "ide-tape: Block location is unknown"
398 "to the tape\n");
f2e3ab52 399 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
5985e6ab 400 uptodate = 0;
313afea7 401 err = IDE_DRV_ERROR_GENERAL;
5985e6ab
BZ
402 } else {
403 debug_log(DBG_SENSE, "Block Location - %u\n",
cd740ab0 404 be32_to_cpup((__be32 *)&readpos[4]));
5985e6ab
BZ
405
406 tape->partition = readpos[1];
cd740ab0 407 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
f2e3ab52 408 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
5985e6ab 409 }
1da177e4 410 }
5985e6ab 411
313afea7
BZ
412 rq->errors = err;
413
03a2faae 414 return uptodate;
1da177e4
LT
415}
416
1da177e4 417/*
3c98bf34 418 * Postpone the current request so that ide.c will be able to service requests
b65fac32 419 * from another device on the same port while we are polling for DSC.
1da177e4 420 */
5a04cfa9 421static void idetape_postpone_request(ide_drive_t *drive)
1da177e4
LT
422{
423 idetape_tape_t *tape = drive->driver_data;
424
8004a8c9
BP
425 debug_log(DBG_PROCS, "Enter %s\n", __func__);
426
b65fac32
BZ
427 tape->postponed_rq = drive->hwif->rq;
428
54bb2074 429 ide_stall_queue(drive, tape->dsc_poll_freq);
1da177e4
LT
430}
431
74e63e74
BZ
432static void ide_tape_handle_dsc(ide_drive_t *drive)
433{
434 idetape_tape_t *tape = drive->driver_data;
435
436 /* Media access command */
437 tape->dsc_polling_start = jiffies;
438 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
439 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
440 /* Allow ide.c to handle other requests */
441 idetape_postpone_request(drive);
442}
443
1da177e4 444/*
3c98bf34 445 * Packet Command Interface
1da177e4 446 *
2b9efba4 447 * The current Packet Command is available in drive->pc, and will not change
3c98bf34
BP
448 * until we finish handling it. Each packet command is associated with a
449 * callback function that will be called when the command is finished.
1da177e4 450 *
3c98bf34 451 * The handling will be done in three stages:
1da177e4 452 *
b788ee9c 453 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
aa5d2de7 454 * the interrupt handler to ide_pc_intr.
1da177e4 455 *
aa5d2de7 456 * 2. On each interrupt, ide_pc_intr will be called. This step will be
3c98bf34 457 * repeated until the device signals us that no more interrupts will be issued.
1da177e4 458 *
3c98bf34
BP
459 * 3. ATAPI Tape media access commands have immediate status with a delayed
460 * process. In case of a successful initiation of a media access packet command,
461 * the DSC bit will be set when the actual execution of the command is finished.
462 * Since the tape drive will not issue an interrupt, we have to poll for this
463 * event. In this case, we define the request as "low priority request" by
464 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
465 * exit the driver.
1da177e4 466 *
3c98bf34
BP
467 * ide.c will then give higher priority to requests which originate from the
468 * other device, until will change rq_status to RQ_ACTIVE.
1da177e4 469 *
3c98bf34 470 * 4. When the packet command is finished, it will be checked for errors.
1da177e4 471 *
3c98bf34
BP
472 * 5. In case an error was found, we queue a request sense packet command in
473 * front of the request queue and retry the operation up to
474 * IDETAPE_MAX_PC_RETRIES times.
1da177e4 475 *
3c98bf34
BP
476 * 6. In case no error was found, or we decided to give up and not to retry
477 * again, the callback function will be called and then we will handle the next
478 * request.
1da177e4 479 */
1da177e4 480
b788ee9c
BZ
481static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
482 struct ide_cmd *cmd,
483 struct ide_atapi_pc *pc)
1da177e4 484{
1da177e4 485 idetape_tape_t *tape = drive->driver_data;
dfb7e621 486 struct request *rq = drive->hwif->rq;
1da177e4 487
5e2040fd
BZ
488 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
489 drive->failed_pc = pc;
2b9efba4 490
1da177e4 491 /* Set the current packet command */
2b9efba4 492 drive->pc = pc;
1da177e4
LT
493
494 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
346331f8 495 (pc->flags & PC_FLAG_ABORT)) {
eb6a61bb 496
1da177e4 497 /*
3c98bf34
BP
498 * We will "abort" retrying a packet command in case legitimate
499 * error code was received (crossing a filemark, or end of the
500 * media, for example).
1da177e4 501 */
346331f8 502 if (!(pc->flags & PC_FLAG_ABORT)) {
90699ce2 503 if (!(pc->c[0] == TEST_UNIT_READY &&
1da177e4
LT
504 tape->sense_key == 2 && tape->asc == 4 &&
505 (tape->ascq == 1 || tape->ascq == 8))) {
506 printk(KERN_ERR "ide-tape: %s: I/O error, "
507 "pc = %2x, key = %2x, "
508 "asc = %2x, ascq = %2x\n",
509 tape->name, pc->c[0],
510 tape->sense_key, tape->asc,
511 tape->ascq);
512 }
513 /* Giving up */
c152cc1a 514 pc->error = IDE_DRV_ERROR_GENERAL;
1da177e4 515 }
eb6a61bb 516
5e2040fd 517 drive->failed_pc = NULL;
b14c7212 518 drive->pc_callback(drive, 0);
dfb7e621 519 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
92f5daff 520 return ide_stopped;
1da177e4 521 }
8004a8c9 522 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
1da177e4
LT
523
524 pc->retries++;
1da177e4 525
b788ee9c 526 return ide_issue_pc(drive, cmd);
1da177e4
LT
527}
528
3c98bf34 529/* A mode sense command is used to "sense" tape parameters. */
d236d74c 530static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
1da177e4 531{
7bf7420a 532 ide_init_pc(pc);
90699ce2 533 pc->c[0] = MODE_SENSE;
1da177e4 534 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
3c98bf34
BP
535 /* DBD = 1 - Don't return block descriptors */
536 pc->c[1] = 8;
1da177e4
LT
537 pc->c[2] = page_code;
538 /*
539 * Changed pc->c[3] to 0 (255 will at best return unused info).
540 *
541 * For SCSI this byte is defined as subpage instead of high byte
542 * of length and some IDE drives seem to interpret it this way
543 * and return an error when 255 is used.
544 */
545 pc->c[3] = 0;
3c98bf34
BP
546 /* We will just discard data in that case */
547 pc->c[4] = 255;
1da177e4 548 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
d236d74c 549 pc->req_xfer = 12;
1da177e4 550 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
d236d74c 551 pc->req_xfer = 24;
1da177e4 552 else
d236d74c 553 pc->req_xfer = 50;
1da177e4
LT
554}
555
5a04cfa9 556static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
1da177e4 557{
b73c7ee2 558 ide_hwif_t *hwif = drive->hwif;
1da177e4 559 idetape_tape_t *tape = drive->driver_data;
2b9efba4 560 struct ide_atapi_pc *pc = drive->pc;
22c525b9 561 u8 stat;
1da177e4 562
374e042c 563 stat = hwif->tp_ops->read_status(hwif);
c47137a9 564
3a7d2484
BZ
565 if (stat & ATA_DSC) {
566 if (stat & ATA_ERR) {
1da177e4 567 /* Error detected */
90699ce2 568 if (pc->c[0] != TEST_UNIT_READY)
1da177e4
LT
569 printk(KERN_ERR "ide-tape: %s: I/O error, ",
570 tape->name);
571 /* Retry operation */
06875320 572 ide_retry_pc(drive);
258ec411 573 return ide_stopped;
1da177e4
LT
574 }
575 pc->error = 0;
1da177e4 576 } else {
c152cc1a 577 pc->error = IDE_DRV_ERROR_GENERAL;
5e2040fd 578 drive->failed_pc = NULL;
1da177e4 579 }
b14c7212 580 drive->pc_callback(drive, 0);
1da177e4
LT
581 return ide_stopped;
582}
583
cd2abbfe 584static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
0014c75b
BP
585 struct ide_atapi_pc *pc, struct request *rq,
586 u8 opcode)
1da177e4 587{
10c0b343 588 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
0014c75b 589
7bf7420a 590 ide_init_pc(pc);
860ff5ec 591 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
1da177e4 592 pc->c[1] = 1;
d236d74c 593 pc->buf = NULL;
dfb7e621
BP
594 pc->buf_size = blk_rq_bytes(rq);
595 if (pc->buf_size == tape->buffer_size)
5e331095 596 pc->flags |= PC_FLAG_DMA_OK;
1da177e4 597
6cf3d545 598 if (opcode == READ_6)
cd2abbfe 599 pc->c[0] = READ_6;
6cf3d545 600 else if (opcode == WRITE_6) {
cd2abbfe
BP
601 pc->c[0] = WRITE_6;
602 pc->flags |= PC_FLAG_WRITING;
cd2abbfe 603 }
0014c75b
BP
604
605 memcpy(rq->cmd, pc->c, 12);
1da177e4
LT
606}
607
1da177e4
LT
608static ide_startstop_t idetape_do_request(ide_drive_t *drive,
609 struct request *rq, sector_t block)
610{
b73c7ee2 611 ide_hwif_t *hwif = drive->hwif;
1da177e4 612 idetape_tape_t *tape = drive->driver_data;
d236d74c 613 struct ide_atapi_pc *pc = NULL;
1da177e4 614 struct request *postponed_rq = tape->postponed_rq;
b788ee9c 615 struct ide_cmd cmd;
22c525b9 616 u8 stat;
1da177e4 617
9780e2dd
TH
618 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %u\n"
619 (unsigned long long)blk_rq_pos(rq), blk_rq_sectors(rq));
1da177e4 620
06875320 621 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
3c98bf34 622 /* We do not support buffer cache originated requests. */
1da177e4 623 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
4aff5e23 624 "request queue (%d)\n", drive->name, rq->cmd_type);
89f78b32
BZ
625 if (blk_fs_request(rq) == 0 && rq->errors == 0)
626 rq->errors = -EIO;
130e8867 627 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
1da177e4
LT
628 return ide_stopped;
629 }
630
3c98bf34 631 /* Retry a failed packet command */
5e2040fd
BZ
632 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
633 pc = drive->failed_pc;
28c7214b
BZ
634 goto out;
635 }
5a04cfa9 636
1da177e4
LT
637 if (postponed_rq != NULL)
638 if (rq != postponed_rq) {
639 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
640 "Two DSC requests were queued\n");
313afea7 641 drive->failed_pc = NULL;
6902a533 642 rq->errors = 0;
f974b196 643 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
1da177e4
LT
644 return ide_stopped;
645 }
1da177e4
LT
646
647 tape->postponed_rq = NULL;
648
649 /*
650 * If the tape is still busy, postpone our request and service
651 * the other device meanwhile.
652 */
374e042c 653 stat = hwif->tp_ops->read_status(hwif);
1da177e4 654
97100fc8
BZ
655 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
656 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
f2e3ab52 657 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
1da177e4 658
97100fc8 659 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
f2e3ab52 660 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
97100fc8 661 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
1da177e4
LT
662 }
663
f2e3ab52 664 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
3a7d2484 665 (stat & ATA_DSC) == 0) {
1da177e4
LT
666 if (postponed_rq == NULL) {
667 tape->dsc_polling_start = jiffies;
54bb2074 668 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
1da177e4
LT
669 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
670 } else if (time_after(jiffies, tape->dsc_timeout)) {
671 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
672 tape->name);
83dd5735 673 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
1da177e4
LT
674 idetape_media_access_finished(drive);
675 return ide_stopped;
676 } else {
677 return ide_do_reset(drive);
678 }
5a04cfa9
BP
679 } else if (time_after(jiffies,
680 tape->dsc_polling_start +
681 IDETAPE_DSC_MA_THRESHOLD))
54bb2074 682 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
1da177e4
LT
683 idetape_postpone_request(drive);
684 return ide_stopped;
685 }
83dd5735 686 if (rq->cmd[13] & REQ_IDETAPE_READ) {
2e8a6f89 687 pc = &tape->queued_pc;
0014c75b 688 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
1da177e4
LT
689 goto out;
690 }
83dd5735 691 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
2e8a6f89 692 pc = &tape->queued_pc;
0014c75b 693 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
1da177e4
LT
694 goto out;
695 }
83dd5735 696 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
ac0b0113 697 pc = (struct ide_atapi_pc *)rq->special;
83dd5735
BP
698 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
699 rq->cmd[13] |= REQ_IDETAPE_PC2;
1da177e4
LT
700 goto out;
701 }
83dd5735 702 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
1da177e4
LT
703 idetape_media_access_finished(drive);
704 return ide_stopped;
705 }
706 BUG();
28c7214b 707
f2e3ab52 708out:
06875320
BP
709 /* prepare sense request for this command */
710 ide_prep_sense(drive, rq);
711
b788ee9c
BZ
712 memset(&cmd, 0, sizeof(cmd));
713
714 if (rq_data_dir(rq))
715 cmd.tf_flags |= IDE_TFLAG_WRITE;
716
717 cmd.rq = rq;
718
dfb7e621 719 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
02e7cf8f
TH
720 ide_map_sg(drive, &cmd);
721
b788ee9c 722 return ide_tape_issue_pc(drive, &cmd, pc);
1da177e4
LT
723}
724
1da177e4 725/*
3c98bf34
BP
726 * Write a filemark if write_filemark=1. Flush the device buffers without
727 * writing a filemark otherwise.
1da177e4 728 */
5a04cfa9 729static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
d236d74c 730 struct ide_atapi_pc *pc, int write_filemark)
1da177e4 731{
7bf7420a 732 ide_init_pc(pc);
90699ce2 733 pc->c[0] = WRITE_FILEMARKS;
1da177e4 734 pc->c[4] = write_filemark;
346331f8 735 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
736}
737
1da177e4
LT
738static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
739{
740 idetape_tape_t *tape = drive->driver_data;
2ac07d92 741 struct gendisk *disk = tape->disk;
1da177e4
LT
742 int load_attempted = 0;
743
3c98bf34 744 /* Wait for the tape to become ready */
f2e3ab52 745 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
1da177e4
LT
746 timeout += jiffies;
747 while (time_before(jiffies, timeout)) {
de699ad5 748 if (ide_do_test_unit_ready(drive, disk) == 0)
1da177e4
LT
749 return 0;
750 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
3c98bf34
BP
751 || (tape->asc == 0x3A)) {
752 /* no media */
1da177e4
LT
753 if (load_attempted)
754 return -ENOMEDIUM;
0c8a6c7a 755 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
1da177e4
LT
756 load_attempted = 1;
757 /* not about to be ready */
758 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
759 (tape->ascq == 1 || tape->ascq == 8)))
760 return -EIO;
80ce45fd 761 msleep(100);
1da177e4
LT
762 }
763 return -EIO;
764}
765
5a04cfa9 766static int idetape_flush_tape_buffers(ide_drive_t *drive)
1da177e4 767{
2ac07d92 768 struct ide_tape_obj *tape = drive->driver_data;
d236d74c 769 struct ide_atapi_pc pc;
1da177e4
LT
770 int rc;
771
772 idetape_create_write_filemark_cmd(drive, &pc, 0);
b13345f3 773 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
5a04cfa9 774 if (rc)
1da177e4
LT
775 return rc;
776 idetape_wait_ready(drive, 60 * 5 * HZ);
777 return 0;
778}
779
d236d74c 780static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
1da177e4 781{
7bf7420a 782 ide_init_pc(pc);
90699ce2 783 pc->c[0] = READ_POSITION;
d236d74c 784 pc->req_xfer = 20;
1da177e4
LT
785}
786
5a04cfa9 787static int idetape_read_position(ide_drive_t *drive)
1da177e4
LT
788{
789 idetape_tape_t *tape = drive->driver_data;
d236d74c 790 struct ide_atapi_pc pc;
1da177e4
LT
791 int position;
792
8004a8c9 793 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1da177e4
LT
794
795 idetape_create_read_position_cmd(&pc);
b13345f3 796 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc.buf, pc.req_xfer))
1da177e4 797 return -1;
54bb2074 798 position = tape->first_frame;
1da177e4
LT
799 return position;
800}
801
d236d74c
BP
802static void idetape_create_locate_cmd(ide_drive_t *drive,
803 struct ide_atapi_pc *pc,
5a04cfa9 804 unsigned int block, u8 partition, int skip)
1da177e4 805{
7bf7420a 806 ide_init_pc(pc);
90699ce2 807 pc->c[0] = POSITION_TO_ELEMENT;
1da177e4 808 pc->c[1] = 2;
860ff5ec 809 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
1da177e4 810 pc->c[8] = partition;
346331f8 811 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
812}
813
ec0fdb01 814static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
1da177e4
LT
815{
816 idetape_tape_t *tape = drive->driver_data;
1da177e4 817
54abf37e 818 if (tape->chrdev_dir != IDETAPE_DIR_READ)
9798630a 819 return;
1da177e4 820
f2e3ab52 821 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
6cf3d545
TH
822 tape->valid = 0;
823 if (tape->buf != NULL) {
824 kfree(tape->buf);
825 tape->buf = NULL;
1da177e4
LT
826 }
827
54abf37e 828 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4
LT
829}
830
831/*
3c98bf34
BP
832 * Position the tape to the requested block using the LOCATE packet command.
833 * A READ POSITION command is then issued to check where we are positioned. Like
834 * all higher level operations, we queue the commands at the tail of the request
835 * queue and wait for their completion.
1da177e4 836 */
5a04cfa9
BP
837static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
838 u8 partition, int skip)
1da177e4
LT
839{
840 idetape_tape_t *tape = drive->driver_data;
2ac07d92 841 struct gendisk *disk = tape->disk;
1da177e4 842 int retval;
d236d74c 843 struct ide_atapi_pc pc;
1da177e4 844
54abf37e 845 if (tape->chrdev_dir == IDETAPE_DIR_READ)
ec0fdb01 846 __ide_tape_discard_merge_buffer(drive);
1da177e4
LT
847 idetape_wait_ready(drive, 60 * 5 * HZ);
848 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
b13345f3 849 retval = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1da177e4
LT
850 if (retval)
851 return (retval);
852
853 idetape_create_read_position_cmd(&pc);
b13345f3 854 return ide_queue_pc_tail(drive, disk, &pc, pc.buf, pc.req_xfer);
1da177e4
LT
855}
856
ec0fdb01 857static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
5a04cfa9 858 int restore_position)
1da177e4
LT
859{
860 idetape_tape_t *tape = drive->driver_data;
1da177e4
LT
861 int seek, position;
862
ec0fdb01 863 __ide_tape_discard_merge_buffer(drive);
1da177e4
LT
864 if (restore_position) {
865 position = idetape_read_position(drive);
9798630a 866 seek = position > 0 ? position : 0;
1da177e4 867 if (idetape_position_tape(drive, seek, 0, 0)) {
5a04cfa9 868 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
ec0fdb01 869 " %s\n", tape->name, __func__);
1da177e4
LT
870 return;
871 }
872 }
873}
874
875/*
3c98bf34
BP
876 * Generate a read/write request for the block device interface and wait for it
877 * to be serviced.
1da177e4 878 */
71294cf9 879static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
1da177e4
LT
880{
881 idetape_tape_t *tape = drive->driver_data;
64ea1b4a 882 struct request *rq;
e998f30b 883 int ret;
1da177e4 884
8004a8c9 885 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
e998f30b 886 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
71294cf9 887 BUG_ON(size < 0 || size % tape->blk_size);
8004a8c9 888
64ea1b4a
FT
889 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
890 rq->cmd_type = REQ_TYPE_SPECIAL;
83dd5735 891 rq->cmd[13] = cmd;
64ea1b4a 892 rq->rq_disk = tape->disk;
e998f30b
TH
893
894 if (size) {
6cf3d545 895 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
e998f30b
TH
896 __GFP_WAIT);
897 if (ret)
898 goto out_put;
899 }
900
64ea1b4a
FT
901 blk_execute_rq(drive->queue, tape->disk, rq, 0);
902
6cf3d545 903 /* calculate the number of transferred bytes and update buffer state */
c3a4d78c 904 size -= rq->resid_len;
6cf3d545 905 tape->cur = tape->buf;
e998f30b 906 if (cmd == REQ_IDETAPE_READ)
6cf3d545
TH
907 tape->valid = size;
908 else
909 tape->valid = 0;
1da177e4 910
e998f30b
TH
911 ret = size;
912 if (rq->errors == IDE_DRV_ERROR_GENERAL)
913 ret = -EIO;
e998f30b
TH
914out_put:
915 blk_put_request(rq);
64ea1b4a 916 return ret;
1da177e4
LT
917}
918
d236d74c 919static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
1da177e4 920{
7bf7420a 921 ide_init_pc(pc);
90699ce2 922 pc->c[0] = INQUIRY;
5a04cfa9 923 pc->c[4] = 254;
d236d74c 924 pc->req_xfer = 254;
1da177e4
LT
925}
926
d236d74c
BP
927static void idetape_create_rewind_cmd(ide_drive_t *drive,
928 struct ide_atapi_pc *pc)
1da177e4 929{
7bf7420a 930 ide_init_pc(pc);
90699ce2 931 pc->c[0] = REZERO_UNIT;
346331f8 932 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
933}
934
d236d74c 935static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
1da177e4 936{
7bf7420a 937 ide_init_pc(pc);
90699ce2 938 pc->c[0] = ERASE;
1da177e4 939 pc->c[1] = 1;
346331f8 940 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
941}
942
d236d74c 943static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
1da177e4 944{
7bf7420a 945 ide_init_pc(pc);
90699ce2 946 pc->c[0] = SPACE;
860ff5ec 947 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
1da177e4 948 pc->c[1] = cmd;
346331f8 949 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
1da177e4
LT
950}
951
d9df937a 952static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
1da177e4
LT
953{
954 idetape_tape_t *tape = drive->driver_data;
55a5d291 955
54abf37e 956 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
077e3bdb 957 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
5a04cfa9 958 " but we are not writing.\n");
1da177e4
LT
959 return;
960 }
6cf3d545 961 if (tape->buf) {
71294cf9
TH
962 size_t aligned = roundup(tape->valid, tape->blk_size);
963
964 memset(tape->cur, 0, aligned - tape->valid);
4344d07f 965 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
6cf3d545
TH
966 kfree(tape->buf);
967 tape->buf = NULL;
1da177e4 968 }
54abf37e 969 tape->chrdev_dir = IDETAPE_DIR_NONE;
1da177e4
LT
970}
971
3596b664 972static int idetape_init_rw(ide_drive_t *drive, int dir)
1da177e4
LT
973{
974 idetape_tape_t *tape = drive->driver_data;
3596b664 975 int rc;
1da177e4 976
3596b664 977 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
1da177e4 978
3596b664
TH
979 if (tape->chrdev_dir == dir)
980 return 0;
981
982 if (tape->chrdev_dir == IDETAPE_DIR_READ)
983 ide_tape_discard_merge_buffer(drive, 1);
984 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
985 ide_tape_flush_merge_buffer(drive);
986 idetape_flush_tape_buffers(drive);
987 }
988
989 if (tape->buf || tape->valid) {
990 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
991 tape->valid = 0;
992 }
993
994 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
995 if (!tape->buf)
996 return -ENOMEM;
997 tape->chrdev_dir = dir;
998 tape->cur = tape->buf;
999
1000 /*
1001 * Issue a 0 rw command to ensure that DSC handshake is
1002 * switched from completion mode to buffer available mode. No
1003 * point in issuing this if DSC overlap isn't supported, some
1004 * drives (Seagate STT3401A) will return an error.
1005 */
1006 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1007 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
1008 : REQ_IDETAPE_WRITE;
1009
1010 rc = idetape_queue_rw_tail(drive, cmd, 0);
1011 if (rc < 0) {
1012 kfree(tape->buf);
1013 tape->buf = NULL;
1014 tape->chrdev_dir = IDETAPE_DIR_NONE;
1015 return rc;
1da177e4
LT
1016 }
1017 }
5e69bd95 1018
1da177e4
LT
1019 return 0;
1020}
1021
5a04cfa9 1022static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
1da177e4
LT
1023{
1024 idetape_tape_t *tape = drive->driver_data;
6cf3d545
TH
1025
1026 memset(tape->buf, 0, tape->buffer_size);
3c98bf34 1027
1da177e4 1028 while (bcount) {
6cf3d545 1029 unsigned int count = min(tape->buffer_size, bcount);
1da177e4 1030
71294cf9 1031 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
1da177e4 1032 bcount -= count;
1da177e4
LT
1033 }
1034}
1035
1da177e4 1036/*
3c98bf34
BP
1037 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1038 * currently support only one partition.
1039 */
5a04cfa9 1040static int idetape_rewind_tape(ide_drive_t *drive)
1da177e4 1041{
2ac07d92
BZ
1042 struct ide_tape_obj *tape = drive->driver_data;
1043 struct gendisk *disk = tape->disk;
1da177e4 1044 int retval;
d236d74c 1045 struct ide_atapi_pc pc;
8004a8c9
BP
1046
1047 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1048
1da177e4 1049 idetape_create_rewind_cmd(drive, &pc);
b13345f3 1050 retval = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1da177e4
LT
1051 if (retval)
1052 return retval;
1053
1054 idetape_create_read_position_cmd(&pc);
b13345f3 1055 retval = ide_queue_pc_tail(drive, disk, &pc, pc.buf, pc.req_xfer);
1da177e4
LT
1056 if (retval)
1057 return retval;
1058 return 0;
1059}
1060
3c98bf34 1061/* mtio.h compatible commands should be issued to the chrdev interface. */
5a04cfa9
BP
1062static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1063 unsigned long arg)
1da177e4
LT
1064{
1065 idetape_tape_t *tape = drive->driver_data;
1da177e4
LT
1066 void __user *argp = (void __user *)arg;
1067
d59823fa
BP
1068 struct idetape_config {
1069 int dsc_rw_frequency;
1070 int dsc_media_access_frequency;
1071 int nr_stages;
1072 } config;
1073
8004a8c9
BP
1074 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1075
1da177e4 1076 switch (cmd) {
5a04cfa9
BP
1077 case 0x0340:
1078 if (copy_from_user(&config, argp, sizeof(config)))
1079 return -EFAULT;
1080 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
5a04cfa9
BP
1081 break;
1082 case 0x0350:
1083 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
83042b24 1084 config.nr_stages = 1;
5a04cfa9
BP
1085 if (copy_to_user(argp, &config, sizeof(config)))
1086 return -EFAULT;
1087 break;
1088 default:
1089 return -EIO;
1da177e4
LT
1090 }
1091 return 0;
1092}
1093
5a04cfa9
BP
1094static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1095 int mt_count)
1da177e4
LT
1096{
1097 idetape_tape_t *tape = drive->driver_data;
2ac07d92 1098 struct gendisk *disk = tape->disk;
d236d74c 1099 struct ide_atapi_pc pc;
5a04cfa9 1100 int retval, count = 0;
b6422013 1101 int sprev = !!(tape->caps[4] & 0x20);
1da177e4
LT
1102
1103 if (mt_count == 0)
1104 return 0;
1105 if (MTBSF == mt_op || MTBSFM == mt_op) {
b6422013 1106 if (!sprev)
1da177e4 1107 return -EIO;
5a04cfa9 1108 mt_count = -mt_count;
1da177e4
LT
1109 }
1110
54abf37e 1111 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
6cf3d545 1112 tape->valid = 0;
f2e3ab52 1113 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1da177e4 1114 ++count;
ec0fdb01 1115 ide_tape_discard_merge_buffer(drive, 0);
1da177e4
LT
1116 }
1117
1da177e4 1118 switch (mt_op) {
5a04cfa9
BP
1119 case MTFSF:
1120 case MTBSF:
1121 idetape_create_space_cmd(&pc, mt_count - count,
1122 IDETAPE_SPACE_OVER_FILEMARK);
b13345f3 1123 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
5a04cfa9
BP
1124 case MTFSFM:
1125 case MTBSFM:
1126 if (!sprev)
1127 return -EIO;
1128 retval = idetape_space_over_filemarks(drive, MTFSF,
1129 mt_count - count);
1130 if (retval)
1131 return retval;
1132 count = (MTBSFM == mt_op ? 1 : -1);
1133 return idetape_space_over_filemarks(drive, MTFSF, count);
1134 default:
1135 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1136 mt_op);
1137 return -EIO;
1da177e4
LT
1138 }
1139}
1140
1da177e4 1141/*
3c98bf34 1142 * Our character device read / write functions.
1da177e4 1143 *
3c98bf34
BP
1144 * The tape is optimized to maximize throughput when it is transferring an
1145 * integral number of the "continuous transfer limit", which is a parameter of
1146 * the specific tape (26kB on my particular tape, 32kB for Onstream).
1da177e4 1147 *
3c98bf34
BP
1148 * As of version 1.3 of the driver, the character device provides an abstract
1149 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1150 * same backup/restore procedure is supported. The driver will internally
1151 * convert the requests to the recommended transfer unit, so that an unmatch
1152 * between the user's block size to the recommended size will only result in a
1153 * (slightly) increased driver overhead, but will no longer hit performance.
1154 * This is not applicable to Onstream.
1da177e4 1155 */
5a04cfa9
BP
1156static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1157 size_t count, loff_t *ppos)
1da177e4 1158{
5aeddf90 1159 struct ide_tape_obj *tape = file->private_data;
1da177e4 1160 ide_drive_t *drive = tape->drive;
4344d07f 1161 size_t done = 0;
dcd96379 1162 ssize_t ret = 0;
4344d07f 1163 int rc;
1da177e4 1164
8004a8c9 1165 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1da177e4 1166
54abf37e 1167 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
f2e3ab52 1168 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
54bb2074
BP
1169 if (count > tape->blk_size &&
1170 (count % tape->blk_size) == 0)
1171 tape->user_bs_factor = count / tape->blk_size;
1da177e4 1172 }
4344d07f 1173
3596b664 1174 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
8d06bfad 1175 if (rc < 0)
1da177e4 1176 return rc;
4344d07f
TH
1177
1178 while (done < count) {
1179 size_t todo;
1180
1181 /* refill if staging buffer is empty */
1182 if (!tape->valid) {
1183 /* If we are at a filemark, nothing more to read */
1184 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1185 break;
1186 /* read */
1187 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1188 tape->buffer_size) <= 0)
1189 break;
1190 }
1191
1192 /* copy out */
1193 todo = min_t(size_t, count - done, tape->valid);
1194 if (copy_to_user(buf + done, tape->cur, todo))
dcd96379 1195 ret = -EFAULT;
4344d07f
TH
1196
1197 tape->cur += todo;
1198 tape->valid -= todo;
1199 done += todo;
1da177e4 1200 }
4344d07f
TH
1201
1202 if (!done && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
8004a8c9
BP
1203 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1204
1da177e4
LT
1205 idetape_space_over_filemarks(drive, MTFSF, 1);
1206 return 0;
1207 }
dcd96379 1208
4344d07f 1209 return ret ? ret : done;
1da177e4
LT
1210}
1211
5a04cfa9 1212static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
1da177e4
LT
1213 size_t count, loff_t *ppos)
1214{
5aeddf90 1215 struct ide_tape_obj *tape = file->private_data;
1da177e4 1216 ide_drive_t *drive = tape->drive;
4344d07f 1217 size_t done = 0;
dcd96379 1218 ssize_t ret = 0;
3596b664 1219 int rc;
1da177e4
LT
1220
1221 /* The drive is write protected. */
1222 if (tape->write_prot)
1223 return -EACCES;
1224
8004a8c9 1225 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
1da177e4
LT
1226
1227 /* Initialize write operation */
3596b664
TH
1228 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1229 if (rc < 0)
1230 return rc;
4344d07f
TH
1231
1232 while (done < count) {
1233 size_t todo;
1234
1235 /* flush if staging buffer is full */
1236 if (tape->valid == tape->buffer_size &&
1237 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1238 tape->buffer_size) <= 0)
1239 return rc;
1240
1241 /* copy in */
1242 todo = min_t(size_t, count - done,
1243 tape->buffer_size - tape->valid);
1244 if (copy_from_user(tape->cur, buf + done, todo))
dcd96379 1245 ret = -EFAULT;
4344d07f
TH
1246
1247 tape->cur += todo;
1248 tape->valid += todo;
1249 done += todo;
1da177e4 1250 }
4344d07f
TH
1251
1252 return ret ? ret : done;
1da177e4
LT
1253}
1254
5a04cfa9 1255static int idetape_write_filemark(ide_drive_t *drive)
1da177e4 1256{
2ac07d92 1257 struct ide_tape_obj *tape = drive->driver_data;
d236d74c 1258 struct ide_atapi_pc pc;
1da177e4
LT
1259
1260 /* Write a filemark */
1261 idetape_create_write_filemark_cmd(drive, &pc, 1);
b13345f3 1262 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
1da177e4
LT
1263 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1264 return -EIO;
1265 }
1266 return 0;
1267}
1268
1269/*
d99c9da2
BP
1270 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1271 * requested.
1da177e4 1272 *
d99c9da2
BP
1273 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1274 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
5bd50dc6 1275 * usually not supported.
1da177e4 1276 *
d99c9da2 1277 * The following commands are currently not supported:
1da177e4 1278 *
d99c9da2
BP
1279 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1280 * MT_ST_WRITE_THRESHOLD.
1da177e4 1281 */
d99c9da2 1282static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
1da177e4
LT
1283{
1284 idetape_tape_t *tape = drive->driver_data;
2ac07d92 1285 struct gendisk *disk = tape->disk;
d236d74c 1286 struct ide_atapi_pc pc;
5a04cfa9 1287 int i, retval;
1da177e4 1288
8004a8c9
BP
1289 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1290 mt_op, mt_count);
5a04cfa9 1291
1da177e4 1292 switch (mt_op) {
5a04cfa9
BP
1293 case MTFSF:
1294 case MTFSFM:
1295 case MTBSF:
1296 case MTBSFM:
1297 if (!mt_count)
1298 return 0;
1299 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1300 default:
1301 break;
1da177e4 1302 }
5a04cfa9 1303
1da177e4 1304 switch (mt_op) {
5a04cfa9
BP
1305 case MTWEOF:
1306 if (tape->write_prot)
1307 return -EACCES;
ec0fdb01 1308 ide_tape_discard_merge_buffer(drive, 1);
5a04cfa9
BP
1309 for (i = 0; i < mt_count; i++) {
1310 retval = idetape_write_filemark(drive);
1311 if (retval)
1312 return retval;
1313 }
1314 return 0;
1315 case MTREW:
ec0fdb01 1316 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1317 if (idetape_rewind_tape(drive))
1318 return -EIO;
1319 return 0;
1320 case MTLOAD:
ec0fdb01 1321 ide_tape_discard_merge_buffer(drive, 0);
0c8a6c7a 1322 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
5a04cfa9
BP
1323 case MTUNLOAD:
1324 case MTOFFL:
1325 /*
1326 * If door is locked, attempt to unlock before
1327 * attempting to eject.
1328 */
1329 if (tape->door_locked) {
0578042d 1330 if (!ide_set_media_lock(drive, disk, 0))
385a4b87 1331 tape->door_locked = DOOR_UNLOCKED;
5a04cfa9 1332 }
ec0fdb01 1333 ide_tape_discard_merge_buffer(drive, 0);
0c8a6c7a 1334 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
5a04cfa9 1335 if (!retval)
f2e3ab52 1336 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
5a04cfa9
BP
1337 return retval;
1338 case MTNOP:
ec0fdb01 1339 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1340 return idetape_flush_tape_buffers(drive);
1341 case MTRETEN:
ec0fdb01 1342 ide_tape_discard_merge_buffer(drive, 0);
0c8a6c7a 1343 return ide_do_start_stop(drive, disk,
5a04cfa9 1344 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
5a04cfa9
BP
1345 case MTEOM:
1346 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
b13345f3 1347 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
5a04cfa9
BP
1348 case MTERASE:
1349 (void)idetape_rewind_tape(drive);
1350 idetape_create_erase_cmd(&pc);
b13345f3 1351 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
5a04cfa9
BP
1352 case MTSETBLK:
1353 if (mt_count) {
1354 if (mt_count < tape->blk_size ||
1355 mt_count % tape->blk_size)
1da177e4 1356 return -EIO;
5a04cfa9 1357 tape->user_bs_factor = mt_count / tape->blk_size;
f2e3ab52 1358 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
5a04cfa9 1359 } else
f2e3ab52 1360 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
5a04cfa9
BP
1361 return 0;
1362 case MTSEEK:
ec0fdb01 1363 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1364 return idetape_position_tape(drive,
1365 mt_count * tape->user_bs_factor, tape->partition, 0);
1366 case MTSETPART:
ec0fdb01 1367 ide_tape_discard_merge_buffer(drive, 0);
5a04cfa9
BP
1368 return idetape_position_tape(drive, 0, mt_count, 0);
1369 case MTFSR:
1370 case MTBSR:
1371 case MTLOCK:
0578042d 1372 retval = ide_set_media_lock(drive, disk, 1);
5a04cfa9 1373 if (retval)
1da177e4 1374 return retval;
5a04cfa9
BP
1375 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1376 return 0;
1377 case MTUNLOCK:
0578042d 1378 retval = ide_set_media_lock(drive, disk, 0);
5a04cfa9
BP
1379 if (retval)
1380 return retval;
1381 tape->door_locked = DOOR_UNLOCKED;
1382 return 0;
1383 default:
1384 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1385 mt_op);
1386 return -EIO;
1da177e4
LT
1387 }
1388}
1389
1390/*
d99c9da2
BP
1391 * Our character device ioctls. General mtio.h magnetic io commands are
1392 * supported here, and not in the corresponding block interface. Our own
1393 * ide-tape ioctls are supported on both interfaces.
1da177e4 1394 */
d99c9da2
BP
1395static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1396 unsigned int cmd, unsigned long arg)
1da177e4 1397{
5aeddf90 1398 struct ide_tape_obj *tape = file->private_data;
1da177e4
LT
1399 ide_drive_t *drive = tape->drive;
1400 struct mtop mtop;
1401 struct mtget mtget;
1402 struct mtpos mtpos;
54bb2074 1403 int block_offset = 0, position = tape->first_frame;
1da177e4
LT
1404 void __user *argp = (void __user *)arg;
1405
8004a8c9 1406 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
1da177e4 1407
54abf37e 1408 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
d9df937a 1409 ide_tape_flush_merge_buffer(drive);
1da177e4
LT
1410 idetape_flush_tape_buffers(drive);
1411 }
1412 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
6cf3d545 1413 block_offset = tape->valid /
54bb2074 1414 (tape->blk_size * tape->user_bs_factor);
5a04cfa9
BP
1415 position = idetape_read_position(drive);
1416 if (position < 0)
1da177e4
LT
1417 return -EIO;
1418 }
1419 switch (cmd) {
5a04cfa9
BP
1420 case MTIOCTOP:
1421 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1422 return -EFAULT;
1423 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1424 case MTIOCGET:
1425 memset(&mtget, 0, sizeof(struct mtget));
1426 mtget.mt_type = MT_ISSCSI2;
1427 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1428 mtget.mt_dsreg =
1429 ((tape->blk_size * tape->user_bs_factor)
1430 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
1431
1432 if (tape->drv_write_prot)
1433 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1434
1435 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1436 return -EFAULT;
1437 return 0;
1438 case MTIOCPOS:
1439 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1440 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1441 return -EFAULT;
1442 return 0;
1443 default:
1444 if (tape->chrdev_dir == IDETAPE_DIR_READ)
ec0fdb01 1445 ide_tape_discard_merge_buffer(drive, 1);
5a04cfa9 1446 return idetape_blkdev_ioctl(drive, cmd, arg);
1da177e4
LT
1447 }
1448}
1449
3cffb9ce
BP
1450/*
1451 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1452 * block size with the reported value.
1453 */
1454static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1455{
1456 idetape_tape_t *tape = drive->driver_data;
d236d74c 1457 struct ide_atapi_pc pc;
3cffb9ce
BP
1458
1459 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
b13345f3 1460 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc.buf, pc.req_xfer)) {
3cffb9ce 1461 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
54bb2074 1462 if (tape->blk_size == 0) {
3cffb9ce
BP
1463 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1464 "block size, assuming 32k\n");
54bb2074 1465 tape->blk_size = 32768;
3cffb9ce
BP
1466 }
1467 return;
1468 }
d236d74c
BP
1469 tape->blk_size = (pc.buf[4 + 5] << 16) +
1470 (pc.buf[4 + 6] << 8) +
1471 pc.buf[4 + 7];
1472 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
3cffb9ce 1473}
1da177e4 1474
5a04cfa9 1475static int idetape_chrdev_open(struct inode *inode, struct file *filp)
1da177e4
LT
1476{
1477 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1478 ide_drive_t *drive;
1479 idetape_tape_t *tape;
1da177e4
LT
1480 int retval;
1481
8004a8c9
BP
1482 if (i >= MAX_HWIFS * MAX_DRIVES)
1483 return -ENXIO;
1484
04f4ac9d 1485 lock_kernel();
8004a8c9 1486 tape = ide_tape_chrdev_get(i);
04f4ac9d
JC
1487 if (!tape) {
1488 unlock_kernel();
8004a8c9 1489 return -ENXIO;
04f4ac9d 1490 }
8004a8c9
BP
1491
1492 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1493
1da177e4
LT
1494 /*
1495 * We really want to do nonseekable_open(inode, filp); here, but some
1496 * versions of tar incorrectly call lseek on tapes and bail out if that
1497 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1498 */
1499 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1500
1da177e4
LT
1501 drive = tape->drive;
1502
1503 filp->private_data = tape;
1504
f2e3ab52 1505 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
1da177e4
LT
1506 retval = -EBUSY;
1507 goto out_put_tape;
1508 }
1509
1510 retval = idetape_wait_ready(drive, 60 * HZ);
1511 if (retval) {
f2e3ab52 1512 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
1da177e4
LT
1513 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1514 goto out_put_tape;
1515 }
1516
1517 idetape_read_position(drive);
f2e3ab52 1518 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
1da177e4
LT
1519 (void)idetape_rewind_tape(drive);
1520
1da177e4 1521 /* Read block size and write protect status from drive. */
3cffb9ce 1522 ide_tape_get_bsize_from_bdesc(drive);
1da177e4
LT
1523
1524 /* Set write protect flag if device is opened as read-only. */
1525 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1526 tape->write_prot = 1;
1527 else
1528 tape->write_prot = tape->drv_write_prot;
1529
1530 /* Make sure drive isn't write protected if user wants to write. */
1531 if (tape->write_prot) {
1532 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1533 (filp->f_flags & O_ACCMODE) == O_RDWR) {
f2e3ab52 1534 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
1da177e4
LT
1535 retval = -EROFS;
1536 goto out_put_tape;
1537 }
1538 }
1539
3c98bf34 1540 /* Lock the tape drive door so user can't eject. */
54abf37e 1541 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
0578042d 1542 if (!ide_set_media_lock(drive, tape->disk, 1)) {
385a4b87
BZ
1543 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1544 tape->door_locked = DOOR_LOCKED;
1da177e4
LT
1545 }
1546 }
04f4ac9d 1547 unlock_kernel();
1da177e4
LT
1548 return 0;
1549
1550out_put_tape:
1551 ide_tape_put(tape);
04f4ac9d 1552 unlock_kernel();
1da177e4
LT
1553 return retval;
1554}
1555
5a04cfa9 1556static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
1da177e4
LT
1557{
1558 idetape_tape_t *tape = drive->driver_data;
1559
d9df937a 1560 ide_tape_flush_merge_buffer(drive);
6cf3d545
TH
1561 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1562 if (tape->buf != NULL) {
54bb2074
BP
1563 idetape_pad_zeros(drive, tape->blk_size *
1564 (tape->user_bs_factor - 1));
6cf3d545
TH
1565 kfree(tape->buf);
1566 tape->buf = NULL;
1da177e4
LT
1567 }
1568 idetape_write_filemark(drive);
1569 idetape_flush_tape_buffers(drive);
1570 idetape_flush_tape_buffers(drive);
1571}
1572
5a04cfa9 1573static int idetape_chrdev_release(struct inode *inode, struct file *filp)
1da177e4 1574{
5aeddf90 1575 struct ide_tape_obj *tape = filp->private_data;
1da177e4 1576 ide_drive_t *drive = tape->drive;
1da177e4
LT
1577 unsigned int minor = iminor(inode);
1578
1579 lock_kernel();
1580 tape = drive->driver_data;
8004a8c9
BP
1581
1582 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1da177e4 1583
54abf37e 1584 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
1da177e4 1585 idetape_write_release(drive, minor);
54abf37e 1586 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
1da177e4 1587 if (minor < 128)
ec0fdb01 1588 ide_tape_discard_merge_buffer(drive, 1);
1da177e4 1589 }
f64eee7b 1590
f2e3ab52 1591 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
1da177e4 1592 (void) idetape_rewind_tape(drive);
54abf37e 1593 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
1da177e4 1594 if (tape->door_locked == DOOR_LOCKED) {
0578042d 1595 if (!ide_set_media_lock(drive, tape->disk, 0))
385a4b87 1596 tape->door_locked = DOOR_UNLOCKED;
1da177e4
LT
1597 }
1598 }
f2e3ab52 1599 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
1da177e4
LT
1600 ide_tape_put(tape);
1601 unlock_kernel();
1602 return 0;
1603}
1604
6d29c8f0 1605static void idetape_get_inquiry_results(ide_drive_t *drive)
1da177e4 1606{
1da177e4 1607 idetape_tape_t *tape = drive->driver_data;
d236d74c 1608 struct ide_atapi_pc pc;
41fa9f86 1609 u8 pc_buf[256];
801bd32e 1610 char fw_rev[4], vendor_id[8], product_id[16];
6d29c8f0 1611
1da177e4 1612 idetape_create_inquiry_cmd(&pc);
41fa9f86
BZ
1613 pc.buf_size = sizeof(pc_buf);
1614
b13345f3 1615 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
6d29c8f0
BP
1616 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1617 tape->name);
1da177e4
LT
1618 return;
1619 }
b13345f3
BP
1620 memcpy(vendor_id, &pc_buf[8], 8);
1621 memcpy(product_id, &pc_buf[16], 16);
1622 memcpy(fw_rev, &pc_buf[32], 4);
41f81d54 1623
801bd32e
BP
1624 ide_fixstring(vendor_id, 8, 0);
1625 ide_fixstring(product_id, 16, 0);
1626 ide_fixstring(fw_rev, 4, 0);
41f81d54 1627
801bd32e 1628 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
41f81d54 1629 drive->name, tape->name, vendor_id, product_id, fw_rev);
1da177e4
LT
1630}
1631
1632/*
b6422013
BP
1633 * Ask the tape about its various parameters. In particular, we will adjust our
1634 * data transfer buffer size to the recommended value as returned by the tape.
1da177e4 1635 */
5a04cfa9 1636static void idetape_get_mode_sense_results(ide_drive_t *drive)
1da177e4
LT
1637{
1638 idetape_tape_t *tape = drive->driver_data;
d236d74c 1639 struct ide_atapi_pc pc;
b13345f3 1640 u8 buf[24], *caps;
b6422013 1641 u8 speed, max_speed;
47314fa4 1642
1da177e4 1643 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
b13345f3 1644 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
b6422013
BP
1645 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1646 " some default values\n");
54bb2074 1647 tape->blk_size = 512;
b6422013
BP
1648 put_unaligned(52, (u16 *)&tape->caps[12]);
1649 put_unaligned(540, (u16 *)&tape->caps[14]);
1650 put_unaligned(6*52, (u16 *)&tape->caps[16]);
1da177e4
LT
1651 return;
1652 }
b13345f3 1653 caps = buf + 4 + buf[3];
b6422013
BP
1654
1655 /* convert to host order and save for later use */
cd740ab0
HH
1656 speed = be16_to_cpup((__be16 *)&caps[14]);
1657 max_speed = be16_to_cpup((__be16 *)&caps[8]);
1da177e4 1658
cd740ab0
HH
1659 *(u16 *)&caps[8] = max_speed;
1660 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1661 *(u16 *)&caps[14] = speed;
1662 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
1da177e4 1663
b6422013
BP
1664 if (!speed) {
1665 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1666 "(assuming 650KB/sec)\n", drive->name);
cd740ab0 1667 *(u16 *)&caps[14] = 650;
1da177e4 1668 }
b6422013
BP
1669 if (!max_speed) {
1670 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1671 "(assuming 650KB/sec)\n", drive->name);
cd740ab0 1672 *(u16 *)&caps[8] = 650;
1da177e4
LT
1673 }
1674
b6422013 1675 memcpy(&tape->caps, caps, 20);
0578042d
BZ
1676
1677 /* device lacks locking support according to capabilities page */
1678 if ((caps[6] & 1) == 0)
42619d35 1679 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
0578042d 1680
b6422013 1681 if (caps[7] & 0x02)
54bb2074 1682 tape->blk_size = 512;
b6422013 1683 else if (caps[7] & 0x04)
54bb2074 1684 tape->blk_size = 1024;
1da177e4
LT
1685}
1686
7662d046 1687#ifdef CONFIG_IDE_PROC_FS
8185d5aa
BZ
1688#define ide_tape_devset_get(name, field) \
1689static int get_##name(ide_drive_t *drive) \
1690{ \
1691 idetape_tape_t *tape = drive->driver_data; \
1692 return tape->field; \
1693}
1694
1695#define ide_tape_devset_set(name, field) \
1696static int set_##name(ide_drive_t *drive, int arg) \
1697{ \
1698 idetape_tape_t *tape = drive->driver_data; \
1699 tape->field = arg; \
1700 return 0; \
1701}
1702
92f1f8fd 1703#define ide_tape_devset_rw_field(_name, _field) \
8185d5aa
BZ
1704ide_tape_devset_get(_name, _field) \
1705ide_tape_devset_set(_name, _field) \
92f1f8fd 1706IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
8185d5aa 1707
92f1f8fd 1708#define ide_tape_devset_r_field(_name, _field) \
8185d5aa 1709ide_tape_devset_get(_name, _field) \
92f1f8fd 1710IDE_DEVSET(_name, 0, get_##_name, NULL)
8185d5aa
BZ
1711
1712static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1713static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1714static int divf_buffer(ide_drive_t *drive) { return 2; }
1715static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1716
97100fc8 1717ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
92f1f8fd
EO
1718
1719ide_tape_devset_rw_field(debug_mask, debug_mask);
1720ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
1721
1722ide_tape_devset_r_field(avg_speed, avg_speed);
1723ide_tape_devset_r_field(speed, caps[14]);
1724ide_tape_devset_r_field(buffer, caps[16]);
1725ide_tape_devset_r_field(buffer_size, buffer_size);
1726
1727static const struct ide_proc_devset idetape_settings[] = {
1728 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1729 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1730 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1731 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1732 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1733 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1734 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1735 mulf_tdsc, divf_tdsc),
71bfc7a7 1736 { NULL },
8185d5aa 1737};
7662d046 1738#endif
1da177e4
LT
1739
1740/*
3c98bf34 1741 * The function below is called to:
1da177e4 1742 *
3c98bf34
BP
1743 * 1. Initialize our various state variables.
1744 * 2. Ask the tape for its capabilities.
1745 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1746 * is chosen based on the recommendation which we received in step 2.
1da177e4 1747 *
3c98bf34
BP
1748 * Note that at this point ide.c already assigned us an irq, so that we can
1749 * queue requests here and wait for their completion.
1da177e4 1750 */
5a04cfa9 1751static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
1da177e4 1752{
83042b24 1753 unsigned long t;
1da177e4 1754 int speed;
f73850a3 1755 int buffer_size;
b6422013 1756 u16 *ctl = (u16 *)&tape->caps[12];
1da177e4 1757
85e39035 1758 drive->pc_callback = ide_tape_callback;
776bb027 1759
97100fc8
BZ
1760 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1761
4166c199
BZ
1762 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1763 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1764 tape->name);
97100fc8 1765 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1da177e4 1766 }
97100fc8 1767
1da177e4 1768 /* Seagate Travan drives do not support DSC overlap. */
4dde4492 1769 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
97100fc8
BZ
1770 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1771
1da177e4
LT
1772 tape->minor = minor;
1773 tape->name[0] = 'h';
1774 tape->name[1] = 't';
1775 tape->name[2] = '0' + minor;
54abf37e 1776 tape->chrdev_dir = IDETAPE_DIR_NONE;
4dde4492 1777
1da177e4
LT
1778 idetape_get_inquiry_results(drive);
1779 idetape_get_mode_sense_results(drive);
3cffb9ce 1780 ide_tape_get_bsize_from_bdesc(drive);
1da177e4 1781 tape->user_bs_factor = 1;
f73850a3
BP
1782 tape->buffer_size = *ctl * tape->blk_size;
1783 while (tape->buffer_size > 0xffff) {
1da177e4 1784 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
b6422013 1785 *ctl /= 2;
f73850a3 1786 tape->buffer_size = *ctl * tape->blk_size;
1da177e4 1787 }
f73850a3 1788 buffer_size = tape->buffer_size;
1da177e4 1789
83042b24 1790 /* select the "best" DSC read/write polling freq */
b6422013 1791 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
1da177e4 1792
f73850a3 1793 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
1da177e4
LT
1794
1795 /*
3c98bf34
BP
1796 * Ensure that the number we got makes sense; limit it within
1797 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
1da177e4 1798 */
a792bd5a
HH
1799 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1800 IDETAPE_DSC_RW_MAX);
1da177e4 1801 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
83042b24 1802 "%lums tDSC%s\n",
b6422013 1803 drive->name, tape->name, *(u16 *)&tape->caps[14],
f73850a3
BP
1804 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1805 tape->buffer_size / 1024,
54bb2074 1806 tape->best_dsc_rw_freq * 1000 / HZ,
97100fc8 1807 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
1da177e4 1808
1e874f44 1809 ide_proc_register_driver(drive, tape->driver);
1da177e4
LT
1810}
1811
4031bbe4 1812static void ide_tape_remove(ide_drive_t *drive)
1da177e4
LT
1813{
1814 idetape_tape_t *tape = drive->driver_data;
1da177e4 1815
7662d046 1816 ide_proc_unregister_driver(drive, tape->driver);
8fed4368 1817 device_del(&tape->dev);
1da177e4
LT
1818 ide_unregister_region(tape->disk);
1819
8fed4368
BZ
1820 mutex_lock(&idetape_ref_mutex);
1821 put_device(&tape->dev);
1822 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
1823}
1824
8fed4368 1825static void ide_tape_release(struct device *dev)
1da177e4 1826{
8fed4368 1827 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
1da177e4
LT
1828 ide_drive_t *drive = tape->drive;
1829 struct gendisk *g = tape->disk;
1830
6cf3d545 1831 BUG_ON(tape->valid);
8604affd 1832
97100fc8 1833 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1da177e4 1834 drive->driver_data = NULL;
dbc1272e 1835 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
5a04cfa9
BP
1836 device_destroy(idetape_sysfs_class,
1837 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
1da177e4
LT
1838 idetape_devs[tape->minor] = NULL;
1839 g->private_data = NULL;
1840 put_disk(g);
1841 kfree(tape);
1842}
1843
ecfd80e4 1844#ifdef CONFIG_IDE_PROC_FS
1da177e4
LT
1845static int proc_idetape_read_name
1846 (char *page, char **start, off_t off, int count, int *eof, void *data)
1847{
1848 ide_drive_t *drive = (ide_drive_t *) data;
1849 idetape_tape_t *tape = drive->driver_data;
1850 char *out = page;
1851 int len;
1852
1853 len = sprintf(out, "%s\n", tape->name);
1854 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1855}
1856
1857static ide_proc_entry_t idetape_proc[] = {
1858 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1859 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1860 { NULL, 0, NULL, NULL }
1861};
79cb3803
BZ
1862
1863static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1864{
1865 return idetape_proc;
1866}
1867
1868static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1869{
1870 return idetape_settings;
1871}
1da177e4
LT
1872#endif
1873
4031bbe4 1874static int ide_tape_probe(ide_drive_t *);
1da177e4 1875
7f3c868b 1876static struct ide_driver idetape_driver = {
8604affd 1877 .gen_driver = {
4ef3b8f4 1878 .owner = THIS_MODULE,
8604affd
BZ
1879 .name = "ide-tape",
1880 .bus = &ide_bus_type,
8604affd 1881 },
4031bbe4
RK
1882 .probe = ide_tape_probe,
1883 .remove = ide_tape_remove,
1da177e4 1884 .version = IDETAPE_VERSION,
1da177e4 1885 .do_request = idetape_do_request,
7662d046 1886#ifdef CONFIG_IDE_PROC_FS
79cb3803
BZ
1887 .proc_entries = ide_tape_proc_entries,
1888 .proc_devsets = ide_tape_proc_devsets,
7662d046 1889#endif
1da177e4
LT
1890};
1891
3c98bf34 1892/* Our character device supporting functions, passed to register_chrdev. */
2b8693c0 1893static const struct file_operations idetape_fops = {
1da177e4
LT
1894 .owner = THIS_MODULE,
1895 .read = idetape_chrdev_read,
1896 .write = idetape_chrdev_write,
1897 .ioctl = idetape_chrdev_ioctl,
1898 .open = idetape_chrdev_open,
1899 .release = idetape_chrdev_release,
1900};
1901
a4600f81 1902static int idetape_open(struct block_device *bdev, fmode_t mode)
1da177e4 1903{
a4600f81 1904 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
1da177e4 1905
5a04cfa9 1906 if (!tape)
1da177e4
LT
1907 return -ENXIO;
1908
1da177e4
LT
1909 return 0;
1910}
1911
a4600f81 1912static int idetape_release(struct gendisk *disk, fmode_t mode)
1da177e4 1913{
5aeddf90 1914 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
1da177e4
LT
1915
1916 ide_tape_put(tape);
1da177e4
LT
1917 return 0;
1918}
1919
a4600f81 1920static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
1da177e4
LT
1921 unsigned int cmd, unsigned long arg)
1922{
5aeddf90 1923 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
1da177e4 1924 ide_drive_t *drive = tape->drive;
1bddd9e6 1925 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
1da177e4
LT
1926 if (err == -EINVAL)
1927 err = idetape_blkdev_ioctl(drive, cmd, arg);
1928 return err;
1929}
1930
1931static struct block_device_operations idetape_block_ops = {
1932 .owner = THIS_MODULE,
a4600f81
AV
1933 .open = idetape_open,
1934 .release = idetape_release,
1935 .locked_ioctl = idetape_ioctl,
1da177e4
LT
1936};
1937
4031bbe4 1938static int ide_tape_probe(ide_drive_t *drive)
1da177e4
LT
1939{
1940 idetape_tape_t *tape;
1941 struct gendisk *g;
1942 int minor;
1943
1944 if (!strstr("ide-tape", drive->driver_req))
1945 goto failed;
2a924662 1946
1da177e4
LT
1947 if (drive->media != ide_tape)
1948 goto failed;
2a924662 1949
97100fc8
BZ
1950 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1951 ide_check_atapi_device(drive, DRV_NAME) == 0) {
5a04cfa9
BP
1952 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1953 " the driver\n", drive->name);
1da177e4
LT
1954 goto failed;
1955 }
5a04cfa9 1956 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
1da177e4 1957 if (tape == NULL) {
5a04cfa9
BP
1958 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1959 drive->name);
1da177e4
LT
1960 goto failed;
1961 }
1962
1963 g = alloc_disk(1 << PARTN_BITS);
1964 if (!g)
1965 goto out_free_tape;
1966
1967 ide_init_disk(g, drive);
1968
8fed4368
BZ
1969 tape->dev.parent = &drive->gendev;
1970 tape->dev.release = ide_tape_release;
1971 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1972
1973 if (device_register(&tape->dev))
1974 goto out_free_disk;
1da177e4
LT
1975
1976 tape->drive = drive;
1977 tape->driver = &idetape_driver;
1978 tape->disk = g;
1979
1980 g->private_data = &tape->driver;
1981
1982 drive->driver_data = tape;
1983
cf8b8975 1984 mutex_lock(&idetape_ref_mutex);
1da177e4
LT
1985 for (minor = 0; idetape_devs[minor]; minor++)
1986 ;
1987 idetape_devs[minor] = tape;
cf8b8975 1988 mutex_unlock(&idetape_ref_mutex);
1da177e4
LT
1989
1990 idetape_setup(drive, tape, minor);
1991
3ee074bf
GKH
1992 device_create(idetape_sysfs_class, &drive->gendev,
1993 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1994 device_create(idetape_sysfs_class, &drive->gendev,
1995 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
1996 "n%s", tape->name);
d5dee80a 1997
1da177e4
LT
1998 g->fops = &idetape_block_ops;
1999 ide_register_region(g);
2000
2001 return 0;
8604affd 2002
8fed4368
BZ
2003out_free_disk:
2004 put_disk(g);
1da177e4
LT
2005out_free_tape:
2006 kfree(tape);
2007failed:
8604affd 2008 return -ENODEV;
1da177e4
LT
2009}
2010
5a04cfa9 2011static void __exit idetape_exit(void)
1da177e4 2012{
8604affd 2013 driver_unregister(&idetape_driver.gen_driver);
d5dee80a 2014 class_destroy(idetape_sysfs_class);
1da177e4
LT
2015 unregister_chrdev(IDETAPE_MAJOR, "ht");
2016}
2017
17514e8a 2018static int __init idetape_init(void)
1da177e4 2019{
d5dee80a
WD
2020 int error = 1;
2021 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2022 if (IS_ERR(idetape_sysfs_class)) {
2023 idetape_sysfs_class = NULL;
2024 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2025 error = -EBUSY;
2026 goto out;
2027 }
2028
1da177e4 2029 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
5a04cfa9
BP
2030 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2031 " interface\n");
d5dee80a
WD
2032 error = -EBUSY;
2033 goto out_free_class;
1da177e4 2034 }
d5dee80a
WD
2035
2036 error = driver_register(&idetape_driver.gen_driver);
2037 if (error)
2038 goto out_free_driver;
2039
2040 return 0;
2041
2042out_free_driver:
2043 driver_unregister(&idetape_driver.gen_driver);
2044out_free_class:
2045 class_destroy(idetape_sysfs_class);
2046out:
2047 return error;
1da177e4
LT
2048}
2049
263756ec 2050MODULE_ALIAS("ide:*m-tape*");
1da177e4
LT
2051module_init(idetape_init);
2052module_exit(idetape_exit);
2053MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
9c145768
BP
2054MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2055MODULE_LICENSE("GPL");
This page took 0.650184 seconds and 5 git commands to generate.