blob: f8c84df4a0bcf5e743cc2b341973488786602f29 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010041#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010044#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtio.h>
49
Borislav Petkov8004a8c2008-02-06 02:57:51 +010050enum {
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),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010059};
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010092 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010094 * 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:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010097 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100103 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100115
116/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#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
Borislav Petkov54abf372008-02-06 02:57:52 +0100127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134struct idetape_bh {
Stephen Rothwellab057962007-08-01 23:46:44 +0200135 u32 b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 atomic_t b_count;
137 struct idetape_bh *b_reqnext;
138 char *b_data;
139};
140
Borislav Petkov03056b92008-04-18 00:46:26 +0200141/* Tape door status */
142#define DOOR_UNLOCKED 0
143#define DOOR_LOCKED 1
144#define DOOR_EXPLICITLY_LOCKED 2
145
146/* Some defines for the SPACE command */
147#define IDETAPE_SPACE_OVER_FILEMARK 1
148#define IDETAPE_SPACE_TO_EOD 3
149
150/* Some defines for the LOAD UNLOAD command */
151#define IDETAPE_LU_LOAD_MASK 1
152#define IDETAPE_LU_RETENSION_MASK 2
153#define IDETAPE_LU_EOT_MASK 4
154
Borislav Petkov03056b92008-04-18 00:46:26 +0200155/* Error codes returned in rq->errors to the higher part of the driver. */
156#define IDETAPE_ERROR_GENERAL 101
157#define IDETAPE_ERROR_FILEMARK 102
158#define IDETAPE_ERROR_EOD 103
159
160/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
161#define IDETAPE_BLOCK_DESCRIPTOR 0
162#define IDETAPE_CAPABILITIES_PAGE 0x2a
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100165 * Most of our global data which we need to save even as we leave the driver due
166 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168typedef struct ide_tape_obj {
169 ide_drive_t *drive;
170 ide_driver_t *driver;
171 struct gendisk *disk;
172 struct kref kref;
173
174 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * pc points to the current processed packet command.
176 *
177 * failed_pc points to the last failed packet command, or contains
178 * NULL if we do not need to retry any packet command. This is
179 * required since an additional packet command is needed before the
180 * retry, to get detailed information on what went wrong.
181 */
182 /* Current packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200183 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /* Last failed packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200185 struct ide_atapi_pc *failed_pc;
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200186 /* used by REQ_IDETAPE_{READ,WRITE} requests */
187 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200188
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200189 struct ide_atapi_pc request_sense_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200190 struct request request_sense_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100193 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100195 * While polling for DSC we use postponed_rq to postpone the current
196 * request so that ide.c will be able to service pending requests on the
197 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200198 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 */
200 struct request *postponed_rq;
201 /* The time in which we started polling for DSC */
202 unsigned long dsc_polling_start;
203 /* Timer used to poll for dsc */
204 struct timer_list dsc_timer;
205 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100206 unsigned long best_dsc_rw_freq;
207 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned long dsc_timeout;
209
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100210 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 u8 partition;
212 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100213 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100215 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 u8 sense_key, asc, ascq;
217
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100218 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 unsigned int minor;
220 /* device name */
221 char name[4];
222 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100223 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Borislav Petkov54bb2072008-02-06 02:57:52 +0100225 /* tape block size, usually 512 or 1024 bytes */
226 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100230 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100233 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100235 * At most, there is only one ide-tape originated data transfer request
236 * in the device request queue. This allows ide.c to easily service
237 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200239
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100240 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200241 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200242 /* merge buffer */
243 struct idetape_bh *merge_bh;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +0200244 /* size of the merge buffer */
245 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200246 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct idetape_bh *bh;
248 char *b_data;
249 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100250
Borislav Petkova997a432008-04-27 15:38:33 +0200251 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* Wasted space in each stage */
253 int excess_bh_size;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /* protects the ide-tape queue */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100256 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100258 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 unsigned long avg_time;
260 int avg_size;
261 int avg_speed;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* the door is currently locked */
264 int door_locked;
265 /* the tape hardware is write protected */
266 char drv_write_prot;
267 /* the tape is write protected (hardware or opened as read-only) */
268 char write_prot;
269
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100270 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271} idetape_tape_t;
272
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800273static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Will Dysond5dee802005-09-16 02:55:07 -0700275static struct class *idetape_sysfs_class;
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
278
279#define ide_tape_g(disk) \
280 container_of((disk)->private_data, struct ide_tape_obj, driver)
281
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200282static void ide_tape_release(struct kref *);
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
285{
286 struct ide_tape_obj *tape = NULL;
287
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800288 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 tape = ide_tape_g(disk);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200290 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200291 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200292 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200293 else
294 kref_get(&tape->kref);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200295 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800296 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return tape;
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300static void ide_tape_put(struct ide_tape_obj *tape)
301{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200302 ide_drive_t *drive = tape->drive;
303
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800304 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 kref_put(&tape->kref, ide_tape_release);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200306 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800307 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100311 * The variables below are used for the character device interface. Additional
312 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100314static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316#define ide_tape_f(file) ((file)->private_data)
317
318static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
319{
320 struct ide_tape_obj *tape = NULL;
321
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800322 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 tape = idetape_devs[i];
324 if (tape)
325 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800326 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return tape;
328}
329
Borislav Petkovd236d742008-04-18 00:46:27 +0200330static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100331 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 struct idetape_bh *bh = pc->bh;
334 int count;
335
336 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (bh == NULL) {
338 printk(KERN_ERR "ide-tape: bh == NULL in "
339 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200340 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return;
342 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100343 count = min(
344 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
345 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200346 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100347 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 bcount -= count;
349 atomic_add(count, &bh->b_count);
350 if (atomic_read(&bh->b_count) == bh->b_size) {
351 bh = bh->b_reqnext;
352 if (bh)
353 atomic_set(&bh->b_count, 0);
354 }
355 }
356 pc->bh = bh;
357}
358
Borislav Petkovd236d742008-04-18 00:46:27 +0200359static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100360 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct idetape_bh *bh = pc->bh;
363 int count;
364
365 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100367 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
368 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return;
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200372 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 bcount -= count;
374 pc->b_data += count;
375 pc->b_count -= count;
376 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100377 bh = bh->b_reqnext;
378 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (bh) {
380 pc->b_data = bh->b_data;
381 pc->b_count = atomic_read(&bh->b_count);
382 }
383 }
384 }
385}
386
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200387static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 struct idetape_bh *bh = pc->bh;
390 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200391 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Borislav Petkov346331f2008-04-18 00:46:26 +0200393 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return;
395 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100397 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
398 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return;
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
402 atomic_set(&bh->b_count, count);
403 if (atomic_read(&bh->b_count) == bh->b_size)
404 bh = bh->b_reqnext;
405 bcount -= count;
406 }
407 pc->bh = bh;
408}
409
410/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100411 * called on each failed packet command retry to analyze the request sense. We
412 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100414static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200417 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Borislav Petkov1b5db432008-02-02 19:56:48 +0100419 tape->sense_key = sense[2] & 0xF;
420 tape->asc = sense[12];
421 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100422
423 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
424 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Borislav Petkovd236d742008-04-18 00:46:27 +0200426 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200427 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200428 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100429 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200430 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200431 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
434 /*
435 * If error was the result of a zero-length read or write command,
436 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
437 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
438 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100439 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100440 /* length == 0 */
441 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
442 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* don't report an error, everything's ok */
444 pc->error = 0;
445 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200446 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100449 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200451 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100453 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100454 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
455 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200457 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100460 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100461 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200463 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200465 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200466 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
468 }
469}
470
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200471/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200472static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200474 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200476 while (bh) {
477 u32 size = bh->b_size;
478
479 while (size) {
480 unsigned int order = fls(size >> PAGE_SHIFT)-1;
481
482 if (bh->b_data)
483 free_pages((unsigned long)bh->b_data, order);
484
485 size &= (order-1);
486 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488 prev_bh = bh;
489 bh = bh->b_reqnext;
490 kfree(prev_bh);
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
495{
496 struct request *rq = HWGROUP(drive)->rq;
497 idetape_tape_t *tape = drive->driver_data;
498 unsigned long flags;
499 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100501 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100504 case 0: error = IDETAPE_ERROR_GENERAL; break;
505 case 1: error = 0; break;
506 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 rq->errors = error;
509 if (error)
510 tape->failed_pc = NULL;
511
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100512 if (!blk_special_request(rq)) {
513 ide_end_request(drive, uptodate, nr_sects);
514 return 0;
515 }
516
Borislav Petkov54bb2072008-02-06 02:57:52 +0100517 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Borislav Petkov54bb2072008-02-06 02:57:52 +0100521 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return 0;
523}
524
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200525static void ide_tape_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200528 struct ide_atapi_pc *pc = tape->pc;
529 int uptodate = pc->error ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100531 debug_log(DBG_PROCS, "Enter %s\n", __func__);
532
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200533 if (tape->failed_pc == pc)
534 tape->failed_pc = NULL;
535
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200536 if (pc->c[0] == REQUEST_SENSE) {
537 if (uptodate)
538 idetape_analyze_error(drive, pc->buf);
539 else
540 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
541 "itself - Aborting request!\n");
542 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
543 struct request *rq = drive->hwif->hwgroup->rq;
544 int blocks = pc->xferred / tape->blk_size;
545
546 tape->avg_size += blocks * tape->blk_size;
547
548 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
549 tape->avg_speed = tape->avg_size * HZ /
550 (jiffies - tape->avg_time) / 1024;
551 tape->avg_size = 0;
552 tape->avg_time = jiffies;
553 }
554
555 tape->first_frame += blocks;
556 rq->current_nr_sectors -= blocks;
557
558 if (pc->error)
559 uptodate = pc->error;
560 } else if (pc->c[0] == READ_POSITION && uptodate) {
561 u8 *readpos = tape->pc->buf;
562
563 debug_log(DBG_SENSE, "BOP - %s\n",
564 (readpos[0] & 0x80) ? "Yes" : "No");
565 debug_log(DBG_SENSE, "EOP - %s\n",
566 (readpos[0] & 0x40) ? "Yes" : "No");
567
568 if (readpos[0] & 0x4) {
569 printk(KERN_INFO "ide-tape: Block location is unknown"
570 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200571 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200572 uptodate = 0;
573 } else {
574 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200575 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200576
577 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200578 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200579 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200582
583 idetape_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Borislav Petkovd236d742008-04-18 00:46:27 +0200586static void idetape_create_request_sense_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200588 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100589 pc->c[0] = REQUEST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 pc->c[4] = 20;
Borislav Petkovd236d742008-04-18 00:46:27 +0200591 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * idetape_retry_pc is called when an error was detected during the
596 * last packet command. We queue a request sense packet command in
597 * the head of the request list.
598 */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200599static void idetape_retry_pc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200601 struct ide_tape_obj *tape = drive->driver_data;
602 struct request *rq = &tape->request_sense_rq;
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200603 struct ide_atapi_pc *pc = &tape->request_sense_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100605 (void)ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 idetape_create_request_sense_cmd(pc);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200607 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200608 ide_queue_pc_head(drive, tape->disk, pc, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100612 * Postpone the current request so that ide.c will be able to service requests
613 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100615static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 idetape_tape_t *tape = drive->driver_data;
618
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100619 debug_log(DBG_PROCS, "Enter %s\n", __func__);
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100622 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200625static void ide_tape_handle_dsc(ide_drive_t *drive)
626{
627 idetape_tape_t *tape = drive->driver_data;
628
629 /* Media access command */
630 tape->dsc_polling_start = jiffies;
631 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
632 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
633 /* Allow ide.c to handle other requests */
634 idetape_postpone_request(drive);
635}
636
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200637static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200638 unsigned int bcount, int write)
639{
640 if (write)
641 idetape_output_buffers(drive, pc, bcount);
642 else
643 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200644
645 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200646}
Borislav Petkova1efc852008-02-06 02:57:52 +0100647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648/*
Borislav Petkova1efc852008-02-06 02:57:52 +0100649 * This is the usual interrupt handler which will be called during a packet
650 * command. We will transfer some of the data (as requested by the drive) and
651 * will re-point interrupt handler to us. When data transfer is finished, we
652 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100653 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100655static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Bartlomiej Zolnierkiewiczd6e29552008-10-10 22:39:39 +0200659 return ide_pc_intr(drive, tape->pc, idetape_pc_intr, WAIT_TAPE_CMD,
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200660 NULL, idetape_update_buffers, idetape_retry_pc,
661 ide_tape_handle_dsc, ide_tape_io_buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100665 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100667 * The current Packet Command is available in tape->pc, and will not change
668 * until we finish handling it. Each packet command is associated with a
669 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100671 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100673 * 1. idetape_issue_pc will send the packet command to the drive, and will set
674 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100676 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
677 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100679 * 3. ATAPI Tape media access commands have immediate status with a delayed
680 * process. In case of a successful initiation of a media access packet command,
681 * the DSC bit will be set when the actual execution of the command is finished.
682 * Since the tape drive will not issue an interrupt, we have to poll for this
683 * event. In this case, we define the request as "low priority request" by
684 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
685 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100687 * ide.c will then give higher priority to requests which originate from the
688 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100690 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100692 * 5. In case an error was found, we queue a request sense packet command in
693 * front of the request queue and retry the operation up to
694 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100696 * 6. In case no error was found, or we decided to give up and not to retry
697 * again, the callback function will be called and then we will handle the next
698 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 */
700static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
701{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200704 return ide_transfer_pc(drive, tape->pc, idetape_pc_intr,
Bartlomiej Zolnierkiewiczd6e29552008-10-10 22:39:39 +0200705 WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Borislav Petkovd236d742008-04-18 00:46:27 +0200708static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
709 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Borislav Petkov90699ce2008-02-02 19:56:50 +0100713 if (tape->pc->c[0] == REQUEST_SENSE &&
714 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
716 "Two request sense in serial were issued\n");
717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Borislav Petkov90699ce2008-02-02 19:56:50 +0100719 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 tape->failed_pc = pc;
721 /* Set the current packet command */
722 tape->pc = pc;
723
724 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200725 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100727 * We will "abort" retrying a packet command in case legitimate
728 * error code was received (crossing a filemark, or end of the
729 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200731 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100732 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 tape->sense_key == 2 && tape->asc == 4 &&
734 (tape->ascq == 1 || tape->ascq == 8))) {
735 printk(KERN_ERR "ide-tape: %s: I/O error, "
736 "pc = %2x, key = %2x, "
737 "asc = %2x, ascq = %2x\n",
738 tape->name, pc->c[0],
739 tape->sense_key, tape->asc,
740 tape->ascq);
741 }
742 /* Giving up */
743 pc->error = IDETAPE_ERROR_GENERAL;
744 }
745 tape->failed_pc = NULL;
Borislav Petkov776bb022008-07-23 19:55:59 +0200746 drive->pc_callback(drive);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200747 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100749 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200753 return ide_issue_pc(drive, pc, idetape_transfer_pc,
Bartlomiej Zolnierkiewiczd6e29552008-10-10 22:39:39 +0200754 WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100757/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200758static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200760 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100761 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100763 /* DBD = 1 - Don't return block descriptors */
764 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 pc->c[2] = page_code;
766 /*
767 * Changed pc->c[3] to 0 (255 will at best return unused info).
768 *
769 * For SCSI this byte is defined as subpage instead of high byte
770 * of length and some IDE drives seem to interpret it this way
771 * and return an error when 255 is used.
772 */
773 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100774 /* We will just discard data in that case */
775 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200777 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200779 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200781 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100784static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200786 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200788 struct ide_atapi_pc *pc = tape->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100789 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200791 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100792
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200793 if (stat & ATA_DSC) {
794 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100796 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 printk(KERN_ERR "ide-tape: %s: I/O error, ",
798 tape->name);
799 /* Retry operation */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200800 idetape_retry_pc(drive);
801 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 } else {
805 pc->error = IDETAPE_ERROR_GENERAL;
806 tape->failed_pc = NULL;
807 }
Borislav Petkov776bb022008-07-23 19:55:59 +0200808 drive->pc_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return ide_stopped;
810}
811
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200812static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200813 struct ide_atapi_pc *pc, struct request *rq,
814 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Borislav Petkov0014c752008-07-23 19:56:00 +0200816 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
817 unsigned int length = rq->current_nr_sectors;
818
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200819 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100820 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200823 pc->buf = NULL;
824 pc->buf_size = length * tape->blk_size;
825 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200826 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200827 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200829 if (opcode == READ_6) {
830 pc->c[0] = READ_6;
831 atomic_set(&bh->b_count, 0);
832 } else if (opcode == WRITE_6) {
833 pc->c[0] = WRITE_6;
834 pc->flags |= PC_FLAG_WRITING;
835 pc->b_data = bh->b_data;
836 pc->b_count = atomic_read(&bh->b_count);
837 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200838
839 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842static ide_startstop_t idetape_do_request(ide_drive_t *drive,
843 struct request *rq, sector_t block)
844{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200845 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200847 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100849 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Mark de Wever730616b2008-10-10 22:39:17 +0200851 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
852 " current_nr_sectors: %u\n",
853 (unsigned long long)rq->sector, rq->nr_sectors,
854 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Jens Axboe4aff5e22006-08-10 08:44:47 +0200856 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100857 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200859 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 ide_end_request(drive, 0, 0);
861 return ide_stopped;
862 }
863
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100864 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200865 if (tape->failed_pc && tape->pc->c[0] == REQUEST_SENSE) {
866 pc = tape->failed_pc;
867 goto out;
868 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (postponed_rq != NULL)
871 if (rq != postponed_rq) {
872 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
873 "Two DSC requests were queued\n");
874 idetape_end_request(drive, 0, 0);
875 return ide_stopped;
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 tape->postponed_rq = NULL;
879
880 /*
881 * If the tape is still busy, postpone our request and service
882 * the other device meanwhile.
883 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200884 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Borislav Petkov83dd5732008-07-23 19:56:00 +0200886 if (!drive->dsc_overlap && !(rq->cmd[13] & REQ_IDETAPE_PC2))
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200887 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if (drive->post_reset == 1) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200890 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 drive->post_reset = 0;
892 }
893
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200894 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200895 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (postponed_rq == NULL) {
897 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100898 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
900 } else if (time_after(jiffies, tape->dsc_timeout)) {
901 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
902 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200903 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 idetape_media_access_finished(drive);
905 return ide_stopped;
906 } else {
907 return ide_do_reset(drive);
908 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100909 } else if (time_after(jiffies,
910 tape->dsc_polling_start +
911 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100912 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 idetape_postpone_request(drive);
914 return ide_stopped;
915 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200916 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200917 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200918 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto out;
920 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200921 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200922 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200923 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 goto out;
925 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200926 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200927 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200928 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
929 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 goto out;
931 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200932 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 idetape_media_access_finished(drive);
934 return ide_stopped;
935 }
936 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200937
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200938out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100939 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200943 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200944 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100945 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200947 * It returns a pointer to the newly allocated buffer, or NULL in case of
948 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200950static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
951 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200953 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200954 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200955 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 char *b_data = NULL;
957
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200958 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
959 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (bh == NULL)
961 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200962
963 order = fls(pages) - 1;
964 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100965 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200967 b_allocd = (1 << order) * PAGE_SIZE;
968 pages &= (order-1);
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200971 memset(bh->b_data, 0, b_allocd);
972 bh->b_reqnext = NULL;
973 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 atomic_set(&bh->b_count, full ? bh->b_size : 0);
975
Borislav Petkov41aa1702008-04-27 15:38:32 +0200976 while (pages) {
977 order = fls(pages) - 1;
978 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100979 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200981 b_allocd = (1 << order) * PAGE_SIZE;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200984 memset(b_data, 0, b_allocd);
985
986 /* newly allocated page frames below buffer header or ...*/
987 if (bh->b_data == b_data + b_allocd) {
988 bh->b_size += b_allocd;
989 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200991 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 continue;
993 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200994 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200996 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200998 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 continue;
1000 }
1001 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001002 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1003 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001004 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 goto abort;
1006 }
1007 bh->b_reqnext = NULL;
1008 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001009 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1011 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001012
1013 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 bh->b_size -= tape->excess_bh_size;
1017 if (full)
1018 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001019 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001021 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return NULL;
1023}
1024
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001025static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +02001026 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
1028 struct idetape_bh *bh = tape->bh;
1029 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001030 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001034 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1035 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001036 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001038 count = min((unsigned int)
1039 (bh->b_size - atomic_read(&bh->b_count)),
1040 (unsigned int)n);
1041 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1042 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001043 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 n -= count;
1045 atomic_add(count, &bh->b_count);
1046 buf += count;
1047 if (atomic_read(&bh->b_count) == bh->b_size) {
1048 bh = bh->b_reqnext;
1049 if (bh)
1050 atomic_set(&bh->b_count, 0);
1051 }
1052 }
1053 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001054 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001057static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001058 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 struct idetape_bh *bh = tape->bh;
1061 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001062 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001066 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1067 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001068 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001071 if (copy_to_user(buf, tape->b_data, count))
1072 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 n -= count;
1074 tape->b_data += count;
1075 tape->b_count -= count;
1076 buf += count;
1077 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001078 bh = bh->b_reqnext;
1079 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (bh) {
1081 tape->b_data = bh->b_data;
1082 tape->b_count = atomic_read(&bh->b_count);
1083 }
1084 }
1085 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001086 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001089static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001091 struct idetape_bh *bh = tape->merge_bh;
1092 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001093
Borislav Petkov54abf372008-02-06 02:57:52 +01001094 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 atomic_set(&bh->b_count, 0);
1096 else {
1097 tape->b_data = bh->b_data;
1098 tape->b_count = atomic_read(&bh->b_count);
1099 }
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001103 * Write a filemark if write_filemark=1. Flush the device buffers without
1104 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001106static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001107 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001109 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001110 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001112 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1116{
1117 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001118 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 int load_attempted = 0;
1120
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001121 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001122 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 timeout += jiffies;
1124 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001125 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return 0;
1127 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001128 || (tape->asc == 0x3A)) {
1129 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (load_attempted)
1131 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001132 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 load_attempted = 1;
1134 /* not about to be ready */
1135 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1136 (tape->ascq == 1 || tape->ascq == 8)))
1137 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001138 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140 return -EIO;
1141}
1142
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001143static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001145 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001146 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 int rc;
1148
1149 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001150 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001151 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return rc;
1153 idetape_wait_ready(drive, 60 * 5 * HZ);
1154 return 0;
1155}
1156
Borislav Petkovd236d742008-04-18 00:46:27 +02001157static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001159 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001160 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001161 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001164static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001167 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 int position;
1169
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001170 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001173 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001175 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return position;
1177}
1178
Borislav Petkovd236d742008-04-18 00:46:27 +02001179static void idetape_create_locate_cmd(ide_drive_t *drive,
1180 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001181 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001183 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001184 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001186 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001188 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001191static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Borislav Petkov54abf372008-02-06 02:57:52 +01001195 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001196 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001198 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001199 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001200 if (tape->merge_bh != NULL) {
1201 ide_tape_kfree_buffer(tape);
1202 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204
Borislav Petkov54abf372008-02-06 02:57:52 +01001205 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001209 * Position the tape to the requested block using the LOCATE packet command.
1210 * A READ POSITION command is then issued to check where we are positioned. Like
1211 * all higher level operations, we queue the commands at the tail of the request
1212 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001214static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1215 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001218 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001220 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Borislav Petkov54abf372008-02-06 02:57:52 +01001222 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001223 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 idetape_wait_ready(drive, 60 * 5 * HZ);
1225 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001226 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (retval)
1228 return (retval);
1229
1230 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001231 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001234static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001235 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
1237 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int seek, position;
1239
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001240 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 if (restore_position) {
1242 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001243 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001245 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001246 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return;
1248 }
1249 }
1250}
1251
1252/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001253 * Generate a read/write request for the block device interface and wait for it
1254 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001256static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1257 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
1259 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001260 struct request *rq;
1261 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001263 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1264
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001265 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1266 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001267 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001268 rq->rq_disk = tape->disk;
1269 rq->special = (void *)bh;
1270 rq->sector = tape->first_frame;
1271 rq->nr_sectors = blocks;
1272 rq->current_nr_sectors = blocks;
1273 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1274
1275 errors = rq->errors;
1276 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1277 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1280 return 0;
1281
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001282 if (tape->merge_bh)
1283 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001284 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001286 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
Borislav Petkovd236d742008-04-18 00:46:27 +02001289static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001291 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001292 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001293 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001294 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
Borislav Petkovd236d742008-04-18 00:46:27 +02001297static void idetape_create_rewind_cmd(ide_drive_t *drive,
1298 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001300 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001301 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001302 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
Borislav Petkovd236d742008-04-18 00:46:27 +02001305static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001307 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001308 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001310 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
Borislav Petkovd236d742008-04-18 00:46:27 +02001313static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001315 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001316 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001317 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001319 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Borislav Petkov97c566c2008-04-27 15:38:25 +02001322/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001323static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
1325 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001327 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001329 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001330 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Borislav Petkovd9df9372008-04-27 15:38:34 +02001333static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 idetape_tape_t *tape = drive->driver_data;
1336 int blocks, min;
1337 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001338
Borislav Petkov54abf372008-02-06 02:57:52 +01001339 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001340 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001341 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return;
1343 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001344 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001346 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001348 if (tape->merge_bh_size) {
1349 blocks = tape->merge_bh_size / tape->blk_size;
1350 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 unsigned int i;
1352
1353 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001354 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001355 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 bh = tape->bh->b_reqnext;
1357 while (bh) {
1358 atomic_set(&bh->b_count, 0);
1359 bh = bh->b_reqnext;
1360 }
1361 bh = tape->bh;
1362 while (i) {
1363 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001364 printk(KERN_INFO "ide-tape: bug,"
1365 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 break;
1367 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001368 min = min(i, (unsigned int)(bh->b_size -
1369 atomic_read(&bh->b_count)));
1370 memset(bh->b_data + atomic_read(&bh->b_count),
1371 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 atomic_add(min, &bh->b_count);
1373 i -= min;
1374 bh = bh->b_reqnext;
1375 }
1376 }
1377 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001378 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001380 if (tape->merge_bh != NULL) {
1381 ide_tape_kfree_buffer(tape);
1382 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001384 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
Borislav Petkov83042b22008-04-27 15:38:27 +02001387static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
1389 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001393 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1394 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001395 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 idetape_flush_tape_buffers(drive);
1397 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001398 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001399 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001400 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001401 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001403 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1404 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001406 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001409 * Issue a read 0 command to ensure that DSC handshake is
1410 * switched from completion mode to buffer available mode.
1411 * No point in issuing this if DSC overlap isn't supported, some
1412 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 */
1414 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001415 bytes_read = idetape_queue_rw_tail(drive,
1416 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001417 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001419 ide_tape_kfree_buffer(tape);
1420 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001421 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return bytes_read;
1423 }
1424 }
1425 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return 0;
1428}
1429
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001430/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001431static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
1433 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001435 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001437 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001438 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return 0;
1440
Borislav Petkov83042b22008-04-27 15:38:27 +02001441 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001443 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001444 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001447static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 idetape_tape_t *tape = drive->driver_data;
1450 struct idetape_bh *bh;
1451 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 while (bcount) {
1454 unsigned int count;
1455
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001456 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001457 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001459 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001461 atomic_set(&bh->b_count,
1462 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1464 count -= atomic_read(&bh->b_count);
1465 bh = bh->b_reqnext;
1466 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001467 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001468 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470}
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001473 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1474 * currently support only one partition.
1475 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001476static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001478 struct ide_tape_obj *tape = drive->driver_data;
1479 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001481 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001482
1483 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001486 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (retval)
1488 return retval;
1489
1490 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001491 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (retval)
1493 return retval;
1494 return 0;
1495}
1496
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001497/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001498static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1499 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
1501 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 void __user *argp = (void __user *)arg;
1503
Borislav Petkovd59823f2008-02-02 19:56:51 +01001504 struct idetape_config {
1505 int dsc_rw_frequency;
1506 int dsc_media_access_frequency;
1507 int nr_stages;
1508 } config;
1509
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001510 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001513 case 0x0340:
1514 if (copy_from_user(&config, argp, sizeof(config)))
1515 return -EFAULT;
1516 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001517 break;
1518 case 0x0350:
1519 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001520 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001521 if (copy_to_user(argp, &config, sizeof(config)))
1522 return -EFAULT;
1523 break;
1524 default:
1525 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527 return 0;
1528}
1529
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001530static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1531 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
1533 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001534 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001535 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001536 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001537 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 if (mt_count == 0)
1540 return 0;
1541 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001542 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001544 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546
Borislav Petkov54abf372008-02-06 02:57:52 +01001547 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001548 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001549 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001551 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001555 case MTFSF:
1556 case MTBSF:
1557 idetape_create_space_cmd(&pc, mt_count - count,
1558 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001559 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001560 case MTFSFM:
1561 case MTBSFM:
1562 if (!sprev)
1563 return -EIO;
1564 retval = idetape_space_over_filemarks(drive, MTFSF,
1565 mt_count - count);
1566 if (retval)
1567 return retval;
1568 count = (MTBSFM == mt_op ? 1 : -1);
1569 return idetape_space_over_filemarks(drive, MTFSF, count);
1570 default:
1571 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1572 mt_op);
1573 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575}
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001578 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001580 * The tape is optimized to maximize throughput when it is transferring an
1581 * integral number of the "continuous transfer limit", which is a parameter of
1582 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001584 * As of version 1.3 of the driver, the character device provides an abstract
1585 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1586 * same backup/restore procedure is supported. The driver will internally
1587 * convert the requests to the recommended transfer unit, so that an unmatch
1588 * between the user's block size to the recommended size will only result in a
1589 * (slightly) increased driver overhead, but will no longer hit performance.
1590 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001592static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1593 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
1595 struct ide_tape_obj *tape = ide_tape_f(file);
1596 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001597 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001598 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001599 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001601 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Borislav Petkov54abf372008-02-06 02:57:52 +01001603 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001604 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001605 if (count > tape->blk_size &&
1606 (count % tape->blk_size) == 0)
1607 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001609 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001610 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return rc;
1612 if (count == 0)
1613 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001614 if (tape->merge_bh_size) {
1615 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001616 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001617 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001618 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001620 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 count -= actually_read;
1622 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001623 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001624 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 if (bytes_read <= 0)
1626 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001627 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001628 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 buf += bytes_read;
1630 count -= bytes_read;
1631 actually_read += bytes_read;
1632 }
1633 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001634 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (bytes_read <= 0)
1636 goto finish;
1637 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001638 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001639 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001641 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001644 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001645 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 idetape_space_over_filemarks(drive, MTFSF, 1);
1648 return 0;
1649 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001650
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001651 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001654static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 size_t count, loff_t *ppos)
1656{
1657 struct ide_tape_obj *tape = ide_tape_f(file);
1658 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001659 ssize_t actually_written = 0;
1660 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001661 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 /* The drive is write protected. */
1664 if (tape->write_prot)
1665 return -EACCES;
1666
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001667 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001670 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1671 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001672 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001673 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001674 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001676 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001678 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1679 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001681 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001682 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001685 * Issue a write 0 command to ensure that DSC handshake is
1686 * switched from completion mode to buffer available mode. No
1687 * point in issuing this if DSC overlap isn't supported, some
1688 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 */
1690 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001691 ssize_t retval = idetape_queue_rw_tail(drive,
1692 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001693 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001695 ide_tape_kfree_buffer(tape);
1696 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001697 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return retval;
1699 }
1700 }
1701 }
1702 if (count == 0)
1703 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001704 if (tape->merge_bh_size) {
1705 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001706 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001707 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001709 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001710 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001711 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001712 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001713 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001715 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 count -= actually_written;
1717
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001718 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001719 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001720 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001721 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (retval <= 0)
1723 return (retval);
1724 }
1725 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001726 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001727 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001728 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001729 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001730 buf += tape->buffer_size;
1731 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001732 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001733 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (retval <= 0)
1735 return (retval);
1736 }
1737 if (count) {
1738 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001739 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001740 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001741 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001743 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001746static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001748 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001749 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 /* Write a filemark */
1752 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001753 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1755 return -EIO;
1756 }
1757 return 0;
1758}
1759
1760/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001761 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1762 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001764 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1765 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001766 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001768 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001770 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1771 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001773static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001776 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001777 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001778 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001780 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1781 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001784 case MTFSF:
1785 case MTFSFM:
1786 case MTBSF:
1787 case MTBSFM:
1788 if (!mt_count)
1789 return 0;
1790 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1791 default:
1792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001796 case MTWEOF:
1797 if (tape->write_prot)
1798 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001799 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001800 for (i = 0; i < mt_count; i++) {
1801 retval = idetape_write_filemark(drive);
1802 if (retval)
1803 return retval;
1804 }
1805 return 0;
1806 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001807 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001808 if (idetape_rewind_tape(drive))
1809 return -EIO;
1810 return 0;
1811 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001812 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001813 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001814 case MTUNLOAD:
1815 case MTOFFL:
1816 /*
1817 * If door is locked, attempt to unlock before
1818 * attempting to eject.
1819 */
1820 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001821 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001822 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001823 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001824 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001825 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001826 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001827 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001828 return retval;
1829 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001830 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001831 return idetape_flush_tape_buffers(drive);
1832 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001833 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001834 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001835 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001836 case MTEOM:
1837 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001838 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001839 case MTERASE:
1840 (void)idetape_rewind_tape(drive);
1841 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001842 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001843 case MTSETBLK:
1844 if (mt_count) {
1845 if (mt_count < tape->blk_size ||
1846 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001848 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001849 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001850 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001851 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001852 return 0;
1853 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001854 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001855 return idetape_position_tape(drive,
1856 mt_count * tape->user_bs_factor, tape->partition, 0);
1857 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001858 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001859 return idetape_position_tape(drive, 0, mt_count, 0);
1860 case MTFSR:
1861 case MTBSR:
1862 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001863 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001864 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001866 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1867 return 0;
1868 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001869 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001870 if (retval)
1871 return retval;
1872 tape->door_locked = DOOR_UNLOCKED;
1873 return 0;
1874 default:
1875 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1876 mt_op);
1877 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
1879}
1880
1881/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001882 * Our character device ioctls. General mtio.h magnetic io commands are
1883 * supported here, and not in the corresponding block interface. Our own
1884 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001886static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1887 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 struct ide_tape_obj *tape = ide_tape_f(file);
1890 ide_drive_t *drive = tape->drive;
1891 struct mtop mtop;
1892 struct mtget mtget;
1893 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001894 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 void __user *argp = (void __user *)arg;
1896
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001897 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Borislav Petkov54abf372008-02-06 02:57:52 +01001899 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001900 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 idetape_flush_tape_buffers(drive);
1902 }
1903 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001904 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001905 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001906 position = idetape_read_position(drive);
1907 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return -EIO;
1909 }
1910 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001911 case MTIOCTOP:
1912 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1913 return -EFAULT;
1914 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1915 case MTIOCGET:
1916 memset(&mtget, 0, sizeof(struct mtget));
1917 mtget.mt_type = MT_ISSCSI2;
1918 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1919 mtget.mt_dsreg =
1920 ((tape->blk_size * tape->user_bs_factor)
1921 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001922
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001923 if (tape->drv_write_prot)
1924 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1925
1926 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1927 return -EFAULT;
1928 return 0;
1929 case MTIOCPOS:
1930 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1931 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1932 return -EFAULT;
1933 return 0;
1934 default:
1935 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001936 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001937 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939}
1940
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001941/*
1942 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1943 * block size with the reported value.
1944 */
1945static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1946{
1947 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001948 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001949
1950 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001951 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001952 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001953 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001954 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1955 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001956 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001957 }
1958 return;
1959 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001960 tape->blk_size = (pc.buf[4 + 5] << 16) +
1961 (pc.buf[4 + 6] << 8) +
1962 pc.buf[4 + 7];
1963 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001964}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001966static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
1968 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1969 ide_drive_t *drive;
1970 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 int retval;
1972
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001973 if (i >= MAX_HWIFS * MAX_DRIVES)
1974 return -ENXIO;
1975
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001976 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001977 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001978 if (!tape) {
1979 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001980 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001981 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001982
1983 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /*
1986 * We really want to do nonseekable_open(inode, filp); here, but some
1987 * versions of tar incorrectly call lseek on tapes and bail out if that
1988 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1989 */
1990 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 drive = tape->drive;
1993
1994 filp->private_data = tape;
1995
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001996 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 retval = -EBUSY;
1998 goto out_put_tape;
1999 }
2000
2001 retval = idetape_wait_ready(drive, 60 * HZ);
2002 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002003 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2005 goto out_put_tape;
2006 }
2007
2008 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002009 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 (void)idetape_rewind_tape(drive);
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002013 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 /* Set write protect flag if device is opened as read-only. */
2016 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2017 tape->write_prot = 1;
2018 else
2019 tape->write_prot = tape->drv_write_prot;
2020
2021 /* Make sure drive isn't write protected if user wants to write. */
2022 if (tape->write_prot) {
2023 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2024 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002025 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 retval = -EROFS;
2027 goto out_put_tape;
2028 }
2029 }
2030
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002031 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01002032 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002033 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002034 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2035 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
2037 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002038 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return 0;
2040
2041out_put_tape:
2042 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002043 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return retval;
2045}
2046
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002047static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 idetape_tape_t *tape = drive->driver_data;
2050
Borislav Petkovd9df9372008-04-27 15:38:34 +02002051 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002052 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2053 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002054 idetape_pad_zeros(drive, tape->blk_size *
2055 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002056 ide_tape_kfree_buffer(tape);
2057 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
2059 idetape_write_filemark(drive);
2060 idetape_flush_tape_buffers(drive);
2061 idetape_flush_tape_buffers(drive);
2062}
2063
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002064static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
2066 struct ide_tape_obj *tape = ide_tape_f(filp);
2067 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 unsigned int minor = iminor(inode);
2069
2070 lock_kernel();
2071 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002072
2073 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Borislav Petkov54abf372008-02-06 02:57:52 +01002075 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002077 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002079 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002081
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002082 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002084 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002086 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002087 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
2089 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002090 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 ide_tape_put(tape);
2092 unlock_kernel();
2093 return 0;
2094}
2095
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002096static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002099 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002100 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002103 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002104 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2105 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 return;
2107 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002108 memcpy(vendor_id, &pc.buf[8], 8);
2109 memcpy(product_id, &pc.buf[16], 16);
2110 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002111
Borislav Petkov801bd322008-09-27 19:32:17 +02002112 ide_fixstring(vendor_id, 8, 0);
2113 ide_fixstring(product_id, 16, 0);
2114 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002115
Borislav Petkov801bd322008-09-27 19:32:17 +02002116 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002117 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
2120/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002121 * Ask the tape about its various parameters. In particular, we will adjust our
2122 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002124static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
2126 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002127 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002128 u8 *caps;
2129 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002132 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002133 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2134 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002135 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002136 put_unaligned(52, (u16 *)&tape->caps[12]);
2137 put_unaligned(540, (u16 *)&tape->caps[14]);
2138 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 return;
2140 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002141 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Borislav Petkovb6422012008-02-02 19:56:49 +01002143 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002144 speed = be16_to_cpup((__be16 *)&caps[14]);
2145 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002147 *(u16 *)&caps[8] = max_speed;
2148 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2149 *(u16 *)&caps[14] = speed;
2150 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002151
2152 if (!speed) {
2153 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2154 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002155 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002157 if (!max_speed) {
2158 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2159 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002160 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162
Borislav Petkovb6422012008-02-02 19:56:49 +01002163 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002164
2165 /* device lacks locking support according to capabilities page */
2166 if ((caps[6] & 1) == 0)
2167 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
2168
Borislav Petkovb6422012008-02-02 19:56:49 +01002169 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002170 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002171 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002172 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173}
2174
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002175#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002176#define ide_tape_devset_get(name, field) \
2177static int get_##name(ide_drive_t *drive) \
2178{ \
2179 idetape_tape_t *tape = drive->driver_data; \
2180 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002182
2183#define ide_tape_devset_set(name, field) \
2184static int set_##name(ide_drive_t *drive, int arg) \
2185{ \
2186 idetape_tape_t *tape = drive->driver_data; \
2187 tape->field = arg; \
2188 return 0; \
2189}
2190
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002191#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002192ide_tape_devset_get(_name, _field) \
2193ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002194IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002195
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002196#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002197ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002198IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002199
2200static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2201static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2202static int divf_buffer(ide_drive_t *drive) { return 2; }
2203static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2204
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002205ide_devset_rw_field(dsc_overlap, dsc_overlap);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002206
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002207ide_tape_devset_rw_field(debug_mask, debug_mask);
2208ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002209
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002210ide_tape_devset_r_field(avg_speed, avg_speed);
2211ide_tape_devset_r_field(speed, caps[14]);
2212ide_tape_devset_r_field(buffer, caps[16]);
2213ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002214
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002215static const struct ide_proc_devset idetape_settings[] = {
2216 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2217 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2218 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2219 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2220 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2221 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2222 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2223 mulf_tdsc, divf_tdsc),
2224 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002225};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002226#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002229 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002231 * 1. Initialize our various state variables.
2232 * 2. Ask the tape for its capabilities.
2233 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2234 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002236 * Note that at this point ide.c already assigned us an irq, so that we can
2237 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002239static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Borislav Petkov83042b22008-04-27 15:38:27 +02002241 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002243 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002244 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002245 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Borislav Petkov776bb022008-07-23 19:55:59 +02002247 drive->pc_callback = ide_tape_callback;
2248
Borislav Petkov54bb2072008-02-06 02:57:52 +01002249 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002251 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2252 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2253 tape->name);
2254 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002257 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 drive->dsc_overlap = 0;
2259 tape->minor = minor;
2260 tape->name[0] = 'h';
2261 tape->name[1] = 't';
2262 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002263 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002264
2265 *((u16 *)&gcw) = drive->id[ATA_ID_CONFIG];
Borislav Petkov71071b82008-02-06 02:57:53 +01002266
2267 /* Command packet DRQ type */
2268 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002269 set_bit(IDE_AFLAG_DRQ_INTERRUPT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 idetape_get_inquiry_results(drive);
2272 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002273 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002275 tape->buffer_size = *ctl * tape->blk_size;
2276 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002278 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002279 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002281 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002282 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002283 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002284 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002285 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
2287
Borislav Petkov83042b22008-04-27 15:38:27 +02002288 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002289 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Borislav Petkovf73850a2008-04-27 15:38:33 +02002291 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002294 * Ensure that the number we got makes sense; limit it within
2295 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002297 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2298 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002300 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002301 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002302 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2303 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002304 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 drive->using_dma ? ", DMA":"");
2306
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002307 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308}
2309
Russell King4031bbe2006-01-06 11:41:00 +00002310static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
2312 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002314 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 ide_unregister_region(tape->disk);
2317
2318 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319}
2320
2321static void ide_tape_release(struct kref *kref)
2322{
2323 struct ide_tape_obj *tape = to_ide_tape(kref);
2324 ide_drive_t *drive = tape->drive;
2325 struct gendisk *g = tape->disk;
2326
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002327 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 drive->dsc_overlap = 0;
2330 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002331 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002332 device_destroy(idetape_sysfs_class,
2333 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 idetape_devs[tape->minor] = NULL;
2335 g->private_data = NULL;
2336 put_disk(g);
2337 kfree(tape);
2338}
2339
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002340#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341static int proc_idetape_read_name
2342 (char *page, char **start, off_t off, int count, int *eof, void *data)
2343{
2344 ide_drive_t *drive = (ide_drive_t *) data;
2345 idetape_tape_t *tape = drive->driver_data;
2346 char *out = page;
2347 int len;
2348
2349 len = sprintf(out, "%s\n", tape->name);
2350 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2351}
2352
2353static ide_proc_entry_t idetape_proc[] = {
2354 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2355 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2356 { NULL, 0, NULL, NULL }
2357};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358#endif
2359
Russell King4031bbe2006-01-06 11:41:00 +00002360static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002363 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002364 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002365 .name = "ide-tape",
2366 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002367 },
Russell King4031bbe2006-01-06 11:41:00 +00002368 .probe = ide_tape_probe,
2369 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 .version = IDETAPE_VERSION,
2371 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 .do_request = idetape_do_request,
2373 .end_request = idetape_end_request,
2374 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002375#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002377 .settings = idetape_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002378#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379};
2380
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002381/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002382static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 .owner = THIS_MODULE,
2384 .read = idetape_chrdev_read,
2385 .write = idetape_chrdev_write,
2386 .ioctl = idetape_chrdev_ioctl,
2387 .open = idetape_chrdev_open,
2388 .release = idetape_chrdev_release,
2389};
2390
2391static int idetape_open(struct inode *inode, struct file *filp)
2392{
2393 struct gendisk *disk = inode->i_bdev->bd_disk;
2394 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002396 tape = ide_tape_get(disk);
2397 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return -ENXIO;
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return 0;
2401}
2402
2403static int idetape_release(struct inode *inode, struct file *filp)
2404{
2405 struct gendisk *disk = inode->i_bdev->bd_disk;
2406 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 ide_tape_put(tape);
2409
2410 return 0;
2411}
2412
2413static int idetape_ioctl(struct inode *inode, struct file *file,
2414 unsigned int cmd, unsigned long arg)
2415{
2416 struct block_device *bdev = inode->i_bdev;
2417 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2418 ide_drive_t *drive = tape->drive;
2419 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2420 if (err == -EINVAL)
2421 err = idetape_blkdev_ioctl(drive, cmd, arg);
2422 return err;
2423}
2424
2425static struct block_device_operations idetape_block_ops = {
2426 .owner = THIS_MODULE,
2427 .open = idetape_open,
2428 .release = idetape_release,
2429 .ioctl = idetape_ioctl,
2430};
2431
Russell King4031bbe2006-01-06 11:41:00 +00002432static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
2434 idetape_tape_t *tape;
2435 struct gendisk *g;
2436 int minor;
2437
2438 if (!strstr("ide-tape", drive->driver_req))
2439 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (drive->media != ide_tape)
2442 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002443
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +02002444 if (drive->id_read == 1 && !ide_check_atapi_device(drive, DRV_NAME)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002445 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2446 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 goto failed;
2448 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002449 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002451 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2452 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 goto failed;
2454 }
2455
2456 g = alloc_disk(1 << PARTN_BITS);
2457 if (!g)
2458 goto out_free_tape;
2459
2460 ide_init_disk(g, drive);
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 kref_init(&tape->kref);
2463
2464 tape->drive = drive;
2465 tape->driver = &idetape_driver;
2466 tape->disk = g;
2467
2468 g->private_data = &tape->driver;
2469
2470 drive->driver_data = tape;
2471
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002472 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 for (minor = 0; idetape_devs[minor]; minor++)
2474 ;
2475 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002476 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478 idetape_setup(drive, tape, minor);
2479
Greg Kroah-Hartman6ecaaf92008-05-21 12:52:33 -07002480 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2481 MKDEV(IDETAPE_MAJOR, minor), NULL,
2482 "%s", tape->name);
2483 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2484 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2485 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 g->fops = &idetape_block_ops;
2488 ide_register_region(g);
2489
2490 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492out_free_tape:
2493 kfree(tape);
2494failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002495 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002498static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002500 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002501 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 unregister_chrdev(IDETAPE_MAJOR, "ht");
2503}
2504
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002505static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Will Dysond5dee802005-09-16 02:55:07 -07002507 int error = 1;
2508 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2509 if (IS_ERR(idetape_sysfs_class)) {
2510 idetape_sysfs_class = NULL;
2511 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2512 error = -EBUSY;
2513 goto out;
2514 }
2515
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002517 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2518 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002519 error = -EBUSY;
2520 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 }
Will Dysond5dee802005-09-16 02:55:07 -07002522
2523 error = driver_register(&idetape_driver.gen_driver);
2524 if (error)
2525 goto out_free_driver;
2526
2527 return 0;
2528
2529out_free_driver:
2530 driver_unregister(&idetape_driver.gen_driver);
2531out_free_class:
2532 class_destroy(idetape_sysfs_class);
2533out:
2534 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535}
2536
Kay Sievers263756e2005-12-12 18:03:44 +01002537MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538module_init(idetape_init);
2539module_exit(idetape_exit);
2540MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002541MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2542MODULE_LICENSE("GPL");