blob: b7f3eebc0d15766917f5455ecc4c35760975ad2b [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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * Some drives (for example, Seagate STT3401A Travan) require a very long
85 * timeout, because they don't return an interrupt or clear their busy bit
86 * until after the command completes (even retension commands).
87 */
88#define IDETAPE_WAIT_CMD (900*HZ)
89
90/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010091 * The following parameter is used to select the point in the internal tape fifo
92 * in which we will start to refill the buffer. Decreasing the following
93 * parameter will improve the system's latency and interactive response, while
94 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010096#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010099 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100101 * Polling for DSC (a single bit in the status register) is a very important
102 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100104 * 1. Before a read/write packet command, to ensure that we can transfer data
105 * from/to the tape's data buffers, without causing an actual media access.
106 * In case the tape is not ready yet, we take out our request from the device
107 * request queue, so that ide.c could service requests from the other device
108 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100110 * 2. After the successful initialization of a "media access packet command",
111 * which is a command that can take a long time to complete (the interval can
112 * range from several seconds to even an hour). Again, we postpone our request
113 * in the middle to free the bus for the other device. The polling frequency
114 * here should be lower than the read/write frequency since those media access
115 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
116 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
117 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100119 * We also set a timeout for the timer, in case something goes wrong. The
120 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100122
123/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
125#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
126#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
127#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
128#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
129#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
130#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
131
132/*************************** End of tunable parameters ***********************/
133
Borislav Petkov54abf372008-02-06 02:57:52 +0100134/* tape directions */
135enum {
136 IDETAPE_DIR_NONE = (1 << 0),
137 IDETAPE_DIR_READ = (1 << 1),
138 IDETAPE_DIR_WRITE = (1 << 2),
139};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141struct idetape_bh {
Stephen Rothwellab057962007-08-01 23:46:44 +0200142 u32 b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 atomic_t b_count;
144 struct idetape_bh *b_reqnext;
145 char *b_data;
146};
147
Borislav Petkov03056b92008-04-18 00:46:26 +0200148/* Tape door status */
149#define DOOR_UNLOCKED 0
150#define DOOR_LOCKED 1
151#define DOOR_EXPLICITLY_LOCKED 2
152
153/* Some defines for the SPACE command */
154#define IDETAPE_SPACE_OVER_FILEMARK 1
155#define IDETAPE_SPACE_TO_EOD 3
156
157/* Some defines for the LOAD UNLOAD command */
158#define IDETAPE_LU_LOAD_MASK 1
159#define IDETAPE_LU_RETENSION_MASK 2
160#define IDETAPE_LU_EOT_MASK 4
161
Borislav Petkov03056b92008-04-18 00:46:26 +0200162/* Error codes returned in rq->errors to the higher part of the driver. */
163#define IDETAPE_ERROR_GENERAL 101
164#define IDETAPE_ERROR_FILEMARK 102
165#define IDETAPE_ERROR_EOD 103
166
167/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
168#define IDETAPE_BLOCK_DESCRIPTOR 0
169#define IDETAPE_CAPABILITIES_PAGE 0x2a
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100172 * Most of our global data which we need to save even as we leave the driver due
173 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 */
175typedef struct ide_tape_obj {
176 ide_drive_t *drive;
177 ide_driver_t *driver;
178 struct gendisk *disk;
179 struct kref kref;
180
181 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * pc points to the current processed packet command.
183 *
184 * failed_pc points to the last failed packet command, or contains
185 * NULL if we do not need to retry any packet command. This is
186 * required since an additional packet command is needed before the
187 * retry, to get detailed information on what went wrong.
188 */
189 /* Current packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200190 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /* Last failed packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200192 struct ide_atapi_pc *failed_pc;
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200193 /* used by REQ_IDETAPE_{READ,WRITE} requests */
194 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200195
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200196 struct ide_atapi_pc request_sense_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200197 struct request request_sense_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100200 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100202 * While polling for DSC we use postponed_rq to postpone the current
203 * request so that ide.c will be able to service pending requests on the
204 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200205 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
207 struct request *postponed_rq;
208 /* The time in which we started polling for DSC */
209 unsigned long dsc_polling_start;
210 /* Timer used to poll for dsc */
211 struct timer_list dsc_timer;
212 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100213 unsigned long best_dsc_rw_freq;
214 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 unsigned long dsc_timeout;
216
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100217 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 u8 partition;
219 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100220 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100222 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 u8 sense_key, asc, ascq;
224
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100225 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 unsigned int minor;
227 /* device name */
228 char name[4];
229 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100230 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Borislav Petkov54bb2072008-02-06 02:57:52 +0100232 /* tape block size, usually 512 or 1024 bytes */
233 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100237 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100240 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100242 * At most, there is only one ide-tape originated data transfer request
243 * in the device request queue. This allows ide.c to easily service
244 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200246
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100247 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200248 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200249 /* merge buffer */
250 struct idetape_bh *merge_bh;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +0200251 /* size of the merge buffer */
252 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200253 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct idetape_bh *bh;
255 char *b_data;
256 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100257
Borislav Petkova997a432008-04-27 15:38:33 +0200258 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* Wasted space in each stage */
260 int excess_bh_size;
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* protects the ide-tape queue */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100263 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100265 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 unsigned long avg_time;
267 int avg_size;
268 int avg_speed;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* the door is currently locked */
271 int door_locked;
272 /* the tape hardware is write protected */
273 char drv_write_prot;
274 /* the tape is write protected (hardware or opened as read-only) */
275 char write_prot;
276
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100277 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278} idetape_tape_t;
279
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800280static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Will Dysond5dee802005-09-16 02:55:07 -0700282static struct class *idetape_sysfs_class;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
285
286#define ide_tape_g(disk) \
287 container_of((disk)->private_data, struct ide_tape_obj, driver)
288
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200289static void ide_tape_release(struct kref *);
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
292{
293 struct ide_tape_obj *tape = NULL;
294
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800295 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 tape = ide_tape_g(disk);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200297 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200298 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200299 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200300 else
301 kref_get(&tape->kref);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200302 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800303 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return tape;
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307static void ide_tape_put(struct ide_tape_obj *tape)
308{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200309 ide_drive_t *drive = tape->drive;
310
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800311 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 kref_put(&tape->kref, ide_tape_release);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200313 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800314 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100318 * The variables below are used for the character device interface. Additional
319 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100321static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323#define ide_tape_f(file) ((file)->private_data)
324
325static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
326{
327 struct ide_tape_obj *tape = NULL;
328
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800329 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 tape = idetape_devs[i];
331 if (tape)
332 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800333 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return tape;
335}
336
Borislav Petkovd236d742008-04-18 00:46:27 +0200337static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100338 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 struct idetape_bh *bh = pc->bh;
341 int count;
342
343 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (bh == NULL) {
345 printk(KERN_ERR "ide-tape: bh == NULL in "
346 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200347 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return;
349 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100350 count = min(
351 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
352 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200353 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100354 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 bcount -= count;
356 atomic_add(count, &bh->b_count);
357 if (atomic_read(&bh->b_count) == bh->b_size) {
358 bh = bh->b_reqnext;
359 if (bh)
360 atomic_set(&bh->b_count, 0);
361 }
362 }
363 pc->bh = bh;
364}
365
Borislav Petkovd236d742008-04-18 00:46:27 +0200366static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100367 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 struct idetape_bh *bh = pc->bh;
370 int count;
371
372 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100374 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
375 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200379 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 bcount -= count;
381 pc->b_data += count;
382 pc->b_count -= count;
383 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100384 bh = bh->b_reqnext;
385 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (bh) {
387 pc->b_data = bh->b_data;
388 pc->b_count = atomic_read(&bh->b_count);
389 }
390 }
391 }
392}
393
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200394static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 struct idetape_bh *bh = pc->bh;
397 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200398 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Borislav Petkov346331f2008-04-18 00:46:26 +0200400 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return;
402 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100404 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
405 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return;
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
409 atomic_set(&bh->b_count, count);
410 if (atomic_read(&bh->b_count) == bh->b_size)
411 bh = bh->b_reqnext;
412 bcount -= count;
413 }
414 pc->bh = bh;
415}
416
417/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100418 * called on each failed packet command retry to analyze the request sense. We
419 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100421static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200424 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Borislav Petkov1b5db432008-02-02 19:56:48 +0100426 tape->sense_key = sense[2] & 0xF;
427 tape->asc = sense[12];
428 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100429
430 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
431 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Borislav Petkovd236d742008-04-18 00:46:27 +0200433 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200434 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200435 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100436 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200437 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200438 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
441 /*
442 * If error was the result of a zero-length read or write command,
443 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
444 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
445 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100446 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100447 /* length == 0 */
448 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
449 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* don't report an error, everything's ok */
451 pc->error = 0;
452 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200453 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100456 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200458 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100460 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100461 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
462 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200464 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100467 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100468 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200470 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200472 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200473 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
475 }
476}
477
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200478/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200479static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200481 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200483 while (bh) {
484 u32 size = bh->b_size;
485
486 while (size) {
487 unsigned int order = fls(size >> PAGE_SHIFT)-1;
488
489 if (bh->b_data)
490 free_pages((unsigned long)bh->b_data, order);
491
492 size &= (order-1);
493 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 prev_bh = bh;
496 bh = bh->b_reqnext;
497 kfree(prev_bh);
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
502{
503 struct request *rq = HWGROUP(drive)->rq;
504 idetape_tape_t *tape = drive->driver_data;
505 unsigned long flags;
506 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100508 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100511 case 0: error = IDETAPE_ERROR_GENERAL; break;
512 case 1: error = 0; break;
513 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515 rq->errors = error;
516 if (error)
517 tape->failed_pc = NULL;
518
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100519 if (!blk_special_request(rq)) {
520 ide_end_request(drive, uptodate, nr_sects);
521 return 0;
522 }
523
Borislav Petkov54bb2072008-02-06 02:57:52 +0100524 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Borislav Petkov54bb2072008-02-06 02:57:52 +0100528 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
530}
531
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200532static void ide_tape_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200535 struct ide_atapi_pc *pc = tape->pc;
536 int uptodate = pc->error ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100538 debug_log(DBG_PROCS, "Enter %s\n", __func__);
539
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200540 if (tape->failed_pc == pc)
541 tape->failed_pc = NULL;
542
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200543 if (pc->c[0] == REQUEST_SENSE) {
544 if (uptodate)
545 idetape_analyze_error(drive, pc->buf);
546 else
547 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
548 "itself - Aborting request!\n");
549 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
550 struct request *rq = drive->hwif->hwgroup->rq;
551 int blocks = pc->xferred / tape->blk_size;
552
553 tape->avg_size += blocks * tape->blk_size;
554
555 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
556 tape->avg_speed = tape->avg_size * HZ /
557 (jiffies - tape->avg_time) / 1024;
558 tape->avg_size = 0;
559 tape->avg_time = jiffies;
560 }
561
562 tape->first_frame += blocks;
563 rq->current_nr_sectors -= blocks;
564
565 if (pc->error)
566 uptodate = pc->error;
567 } else if (pc->c[0] == READ_POSITION && uptodate) {
568 u8 *readpos = tape->pc->buf;
569
570 debug_log(DBG_SENSE, "BOP - %s\n",
571 (readpos[0] & 0x80) ? "Yes" : "No");
572 debug_log(DBG_SENSE, "EOP - %s\n",
573 (readpos[0] & 0x40) ? "Yes" : "No");
574
575 if (readpos[0] & 0x4) {
576 printk(KERN_INFO "ide-tape: Block location is unknown"
577 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200578 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200579 uptodate = 0;
580 } else {
581 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200582 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200583
584 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200585 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200586 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200589
590 idetape_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Borislav Petkovd236d742008-04-18 00:46:27 +0200593static void idetape_create_request_sense_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200595 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100596 pc->c[0] = REQUEST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 pc->c[4] = 20;
Borislav Petkovd236d742008-04-18 00:46:27 +0200598 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * idetape_retry_pc is called when an error was detected during the
603 * last packet command. We queue a request sense packet command in
604 * the head of the request list.
605 */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200606static void idetape_retry_pc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200608 struct ide_tape_obj *tape = drive->driver_data;
609 struct request *rq = &tape->request_sense_rq;
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200610 struct ide_atapi_pc *pc = &tape->request_sense_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100612 (void)ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 idetape_create_request_sense_cmd(pc);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200614 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200615 ide_queue_pc_head(drive, tape->disk, pc, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100619 * Postpone the current request so that ide.c will be able to service requests
620 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100622static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
624 idetape_tape_t *tape = drive->driver_data;
625
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100626 debug_log(DBG_PROCS, "Enter %s\n", __func__);
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100629 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200632static void ide_tape_handle_dsc(ide_drive_t *drive)
633{
634 idetape_tape_t *tape = drive->driver_data;
635
636 /* Media access command */
637 tape->dsc_polling_start = jiffies;
638 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
639 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
640 /* Allow ide.c to handle other requests */
641 idetape_postpone_request(drive);
642}
643
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200644static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200645 unsigned int bcount, int write)
646{
647 if (write)
648 idetape_output_buffers(drive, pc, bcount);
649 else
650 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200651
652 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200653}
Borislav Petkova1efc852008-02-06 02:57:52 +0100654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655/*
Borislav Petkova1efc852008-02-06 02:57:52 +0100656 * This is the usual interrupt handler which will be called during a packet
657 * command. We will transfer some of the data (as requested by the drive) and
658 * will re-point interrupt handler to us. When data transfer is finished, we
659 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100660 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100662static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200666 return ide_pc_intr(drive, tape->pc, idetape_pc_intr, IDETAPE_WAIT_CMD,
667 NULL, idetape_update_buffers, idetape_retry_pc,
668 ide_tape_handle_dsc, ide_tape_io_buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100672 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100674 * The current Packet Command is available in tape->pc, and will not change
675 * until we finish handling it. Each packet command is associated with a
676 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100678 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100680 * 1. idetape_issue_pc will send the packet command to the drive, and will set
681 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100683 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
684 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100686 * 3. ATAPI Tape media access commands have immediate status with a delayed
687 * process. In case of a successful initiation of a media access packet command,
688 * the DSC bit will be set when the actual execution of the command is finished.
689 * Since the tape drive will not issue an interrupt, we have to poll for this
690 * event. In this case, we define the request as "low priority request" by
691 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
692 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100694 * ide.c will then give higher priority to requests which originate from the
695 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100697 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100699 * 5. In case an error was found, we queue a request sense packet command in
700 * front of the request queue and retry the operation up to
701 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100703 * 6. In case no error was found, or we decided to give up and not to retry
704 * again, the callback function will be called and then we will handle the next
705 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 */
707static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
708{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200711 return ide_transfer_pc(drive, tape->pc, idetape_pc_intr,
712 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Borislav Petkovd236d742008-04-18 00:46:27 +0200715static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
716 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Borislav Petkov90699ce2008-02-02 19:56:50 +0100720 if (tape->pc->c[0] == REQUEST_SENSE &&
721 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
723 "Two request sense in serial were issued\n");
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Borislav Petkov90699ce2008-02-02 19:56:50 +0100726 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 tape->failed_pc = pc;
728 /* Set the current packet command */
729 tape->pc = pc;
730
731 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200732 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100734 * We will "abort" retrying a packet command in case legitimate
735 * error code was received (crossing a filemark, or end of the
736 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200738 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100739 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 tape->sense_key == 2 && tape->asc == 4 &&
741 (tape->ascq == 1 || tape->ascq == 8))) {
742 printk(KERN_ERR "ide-tape: %s: I/O error, "
743 "pc = %2x, key = %2x, "
744 "asc = %2x, ascq = %2x\n",
745 tape->name, pc->c[0],
746 tape->sense_key, tape->asc,
747 tape->ascq);
748 }
749 /* Giving up */
750 pc->error = IDETAPE_ERROR_GENERAL;
751 }
752 tape->failed_pc = NULL;
Borislav Petkov776bb022008-07-23 19:55:59 +0200753 drive->pc_callback(drive);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200754 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100756 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200760 return ide_issue_pc(drive, pc, idetape_transfer_pc,
761 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100764/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200765static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200767 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100768 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100770 /* DBD = 1 - Don't return block descriptors */
771 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 pc->c[2] = page_code;
773 /*
774 * Changed pc->c[3] to 0 (255 will at best return unused info).
775 *
776 * For SCSI this byte is defined as subpage instead of high byte
777 * of length and some IDE drives seem to interpret it this way
778 * and return an error when 255 is used.
779 */
780 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100781 /* We will just discard data in that case */
782 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200784 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200786 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200788 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100791static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200793 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200795 struct ide_atapi_pc *pc = tape->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100796 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200798 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100799
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200800 if (stat & ATA_DSC) {
801 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100803 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 printk(KERN_ERR "ide-tape: %s: I/O error, ",
805 tape->name);
806 /* Retry operation */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200807 idetape_retry_pc(drive);
808 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 } else {
812 pc->error = IDETAPE_ERROR_GENERAL;
813 tape->failed_pc = NULL;
814 }
Borislav Petkov776bb022008-07-23 19:55:59 +0200815 drive->pc_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return ide_stopped;
817}
818
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200819static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200820 struct ide_atapi_pc *pc, struct request *rq,
821 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Borislav Petkov0014c752008-07-23 19:56:00 +0200823 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
824 unsigned int length = rq->current_nr_sectors;
825
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200826 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100827 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200830 pc->buf = NULL;
831 pc->buf_size = length * tape->blk_size;
832 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200833 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200834 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200836 if (opcode == READ_6) {
837 pc->c[0] = READ_6;
838 atomic_set(&bh->b_count, 0);
839 } else if (opcode == WRITE_6) {
840 pc->c[0] = WRITE_6;
841 pc->flags |= PC_FLAG_WRITING;
842 pc->b_data = bh->b_data;
843 pc->b_count = atomic_read(&bh->b_count);
844 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200845
846 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849static ide_startstop_t idetape_do_request(ide_drive_t *drive,
850 struct request *rq, sector_t block)
851{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200852 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200854 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100856 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Mark de Wever730616b2008-10-10 22:39:17 +0200858 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
859 " current_nr_sectors: %u\n",
860 (unsigned long long)rq->sector, rq->nr_sectors,
861 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Jens Axboe4aff5e22006-08-10 08:44:47 +0200863 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100864 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200866 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 ide_end_request(drive, 0, 0);
868 return ide_stopped;
869 }
870
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100871 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200872 if (tape->failed_pc && tape->pc->c[0] == REQUEST_SENSE) {
873 pc = tape->failed_pc;
874 goto out;
875 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (postponed_rq != NULL)
878 if (rq != postponed_rq) {
879 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
880 "Two DSC requests were queued\n");
881 idetape_end_request(drive, 0, 0);
882 return ide_stopped;
883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 tape->postponed_rq = NULL;
886
887 /*
888 * If the tape is still busy, postpone our request and service
889 * the other device meanwhile.
890 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200891 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Borislav Petkov83dd5732008-07-23 19:56:00 +0200893 if (!drive->dsc_overlap && !(rq->cmd[13] & REQ_IDETAPE_PC2))
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200894 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 if (drive->post_reset == 1) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200897 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 drive->post_reset = 0;
899 }
900
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200901 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200902 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (postponed_rq == NULL) {
904 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100905 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
907 } else if (time_after(jiffies, tape->dsc_timeout)) {
908 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
909 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200910 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 idetape_media_access_finished(drive);
912 return ide_stopped;
913 } else {
914 return ide_do_reset(drive);
915 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100916 } else if (time_after(jiffies,
917 tape->dsc_polling_start +
918 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100919 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 idetape_postpone_request(drive);
921 return ide_stopped;
922 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200923 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200924 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200925 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 goto out;
927 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200928 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200929 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200930 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 goto out;
932 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200933 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200934 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200935 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
936 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto out;
938 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200939 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 idetape_media_access_finished(drive);
941 return ide_stopped;
942 }
943 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200944
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200945out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100946 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200950 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200951 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100952 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200954 * It returns a pointer to the newly allocated buffer, or NULL in case of
955 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200957static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
958 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200960 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200961 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200962 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 char *b_data = NULL;
964
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200965 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
966 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (bh == NULL)
968 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200969
970 order = fls(pages) - 1;
971 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100972 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200974 b_allocd = (1 << order) * PAGE_SIZE;
975 pages &= (order-1);
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200978 memset(bh->b_data, 0, b_allocd);
979 bh->b_reqnext = NULL;
980 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 atomic_set(&bh->b_count, full ? bh->b_size : 0);
982
Borislav Petkov41aa1702008-04-27 15:38:32 +0200983 while (pages) {
984 order = fls(pages) - 1;
985 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100986 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200988 b_allocd = (1 << order) * PAGE_SIZE;
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200991 memset(b_data, 0, b_allocd);
992
993 /* newly allocated page frames below buffer header or ...*/
994 if (bh->b_data == b_data + b_allocd) {
995 bh->b_size += b_allocd;
996 bh->b_data -= b_allocd;
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 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001001 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001003 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001005 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 continue;
1007 }
1008 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001009 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1010 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001011 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 goto abort;
1013 }
1014 bh->b_reqnext = NULL;
1015 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001016 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1018 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001019
1020 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 bh->b_size -= tape->excess_bh_size;
1024 if (full)
1025 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001026 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001028 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return NULL;
1030}
1031
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001032static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +02001033 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 struct idetape_bh *bh = tape->bh;
1036 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001037 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001041 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1042 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001043 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001045 count = min((unsigned int)
1046 (bh->b_size - atomic_read(&bh->b_count)),
1047 (unsigned int)n);
1048 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1049 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001050 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 n -= count;
1052 atomic_add(count, &bh->b_count);
1053 buf += count;
1054 if (atomic_read(&bh->b_count) == bh->b_size) {
1055 bh = bh->b_reqnext;
1056 if (bh)
1057 atomic_set(&bh->b_count, 0);
1058 }
1059 }
1060 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001061 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001064static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001065 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 struct idetape_bh *bh = tape->bh;
1068 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001069 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001073 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1074 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001075 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001078 if (copy_to_user(buf, tape->b_data, count))
1079 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 n -= count;
1081 tape->b_data += count;
1082 tape->b_count -= count;
1083 buf += count;
1084 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001085 bh = bh->b_reqnext;
1086 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (bh) {
1088 tape->b_data = bh->b_data;
1089 tape->b_count = atomic_read(&bh->b_count);
1090 }
1091 }
1092 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001093 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001096static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001098 struct idetape_bh *bh = tape->merge_bh;
1099 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001100
Borislav Petkov54abf372008-02-06 02:57:52 +01001101 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 atomic_set(&bh->b_count, 0);
1103 else {
1104 tape->b_data = bh->b_data;
1105 tape->b_count = atomic_read(&bh->b_count);
1106 }
1107}
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001110 * Write a filemark if write_filemark=1. Flush the device buffers without
1111 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001113static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001114 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001116 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001117 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001119 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
Borislav Petkovd236d742008-04-18 00:46:27 +02001122static void idetape_create_test_unit_ready_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001124 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001125 pc->c[0] = TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Borislav Petkovd236d742008-04-18 00:46:27 +02001128static void idetape_create_load_unload_cmd(ide_drive_t *drive,
1129 struct ide_atapi_pc *pc, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001131 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001132 pc->c[0] = START_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 pc->c[4] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001134 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
1137static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1138{
1139 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001140 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001141 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 int load_attempted = 0;
1143
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001144 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001145 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 timeout += jiffies;
1147 while (time_before(jiffies, timeout)) {
1148 idetape_create_test_unit_ready_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001149 if (!ide_queue_pc_tail(drive, disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return 0;
1151 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001152 || (tape->asc == 0x3A)) {
1153 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (load_attempted)
1155 return -ENOMEDIUM;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001156 idetape_create_load_unload_cmd(drive, &pc,
1157 IDETAPE_LU_LOAD_MASK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001158 ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 load_attempted = 1;
1160 /* not about to be ready */
1161 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1162 (tape->ascq == 1 || tape->ascq == 8)))
1163 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001164 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166 return -EIO;
1167}
1168
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001169static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001171 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001172 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 int rc;
1174
1175 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001176 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001177 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return rc;
1179 idetape_wait_ready(drive, 60 * 5 * HZ);
1180 return 0;
1181}
1182
Borislav Petkovd236d742008-04-18 00:46:27 +02001183static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001185 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001186 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001187 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001190static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
1192 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001193 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 int position;
1195
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001196 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001199 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001201 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return position;
1203}
1204
Borislav Petkovd236d742008-04-18 00:46:27 +02001205static void idetape_create_locate_cmd(ide_drive_t *drive,
1206 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001207 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001209 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001210 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001212 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001214 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001217static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
1219 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Borislav Petkov54abf372008-02-06 02:57:52 +01001221 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001222 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001224 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001225 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001226 if (tape->merge_bh != NULL) {
1227 ide_tape_kfree_buffer(tape);
1228 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
Borislav Petkov54abf372008-02-06 02:57:52 +01001231 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
1234/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001235 * Position the tape to the requested block using the LOCATE packet command.
1236 * A READ POSITION command is then issued to check where we are positioned. Like
1237 * all higher level operations, we queue the commands at the tail of the request
1238 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001240static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1241 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001244 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001246 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Borislav Petkov54abf372008-02-06 02:57:52 +01001248 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001249 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 idetape_wait_ready(drive, 60 * 5 * HZ);
1251 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001252 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (retval)
1254 return (retval);
1255
1256 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001257 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001260static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001261 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
1263 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 int seek, position;
1265
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001266 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (restore_position) {
1268 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001269 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001271 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001272 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 return;
1274 }
1275 }
1276}
1277
1278/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001279 * Generate a read/write request for the block device interface and wait for it
1280 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001282static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1283 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
1285 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001286 struct request *rq;
1287 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001289 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1290
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001291 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1292 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001293 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001294 rq->rq_disk = tape->disk;
1295 rq->special = (void *)bh;
1296 rq->sector = tape->first_frame;
1297 rq->nr_sectors = blocks;
1298 rq->current_nr_sectors = blocks;
1299 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1300
1301 errors = rq->errors;
1302 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1303 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1306 return 0;
1307
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001308 if (tape->merge_bh)
1309 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001310 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001312 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
Borislav Petkovd236d742008-04-18 00:46:27 +02001315static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001317 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001318 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001319 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001320 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
Borislav Petkovd236d742008-04-18 00:46:27 +02001323static void idetape_create_rewind_cmd(ide_drive_t *drive,
1324 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001326 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001327 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001328 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Borislav Petkovd236d742008-04-18 00:46:27 +02001331static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001333 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001334 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001336 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
Borislav Petkovd236d742008-04-18 00:46:27 +02001339static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001341 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001342 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001343 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001345 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Borislav Petkov97c566c2008-04-27 15:38:25 +02001348/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001349static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
1351 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001353 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001355 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001356 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Borislav Petkovd9df9372008-04-27 15:38:34 +02001359static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
1361 idetape_tape_t *tape = drive->driver_data;
1362 int blocks, min;
1363 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001364
Borislav Petkov54abf372008-02-06 02:57:52 +01001365 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001366 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001367 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return;
1369 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001370 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001372 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001374 if (tape->merge_bh_size) {
1375 blocks = tape->merge_bh_size / tape->blk_size;
1376 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 unsigned int i;
1378
1379 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001380 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001381 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 bh = tape->bh->b_reqnext;
1383 while (bh) {
1384 atomic_set(&bh->b_count, 0);
1385 bh = bh->b_reqnext;
1386 }
1387 bh = tape->bh;
1388 while (i) {
1389 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001390 printk(KERN_INFO "ide-tape: bug,"
1391 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 break;
1393 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001394 min = min(i, (unsigned int)(bh->b_size -
1395 atomic_read(&bh->b_count)));
1396 memset(bh->b_data + atomic_read(&bh->b_count),
1397 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 atomic_add(min, &bh->b_count);
1399 i -= min;
1400 bh = bh->b_reqnext;
1401 }
1402 }
1403 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001404 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001406 if (tape->merge_bh != NULL) {
1407 ide_tape_kfree_buffer(tape);
1408 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001410 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Borislav Petkov83042b22008-04-27 15:38:27 +02001413static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001419 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1420 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001421 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 idetape_flush_tape_buffers(drive);
1423 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001424 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001425 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001426 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001427 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001429 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1430 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001432 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001435 * Issue a read 0 command to ensure that DSC handshake is
1436 * switched from completion mode to buffer available mode.
1437 * No point in issuing this if DSC overlap isn't supported, some
1438 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 */
1440 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001441 bytes_read = idetape_queue_rw_tail(drive,
1442 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001443 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001445 ide_tape_kfree_buffer(tape);
1446 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001447 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 return bytes_read;
1449 }
1450 }
1451 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return 0;
1454}
1455
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001456/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001457static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001461 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001463 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001464 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return 0;
1466
Borislav Petkov83042b22008-04-27 15:38:27 +02001467 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001469 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001470 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471}
1472
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001473static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 idetape_tape_t *tape = drive->driver_data;
1476 struct idetape_bh *bh;
1477 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 while (bcount) {
1480 unsigned int count;
1481
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001482 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001483 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001485 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001487 atomic_set(&bh->b_count,
1488 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1490 count -= atomic_read(&bh->b_count);
1491 bh = bh->b_reqnext;
1492 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001493 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001494 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496}
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001499 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1500 * currently support only one partition.
1501 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001502static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001504 struct ide_tape_obj *tape = drive->driver_data;
1505 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001507 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001508
1509 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001512 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (retval)
1514 return retval;
1515
1516 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001517 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (retval)
1519 return retval;
1520 return 0;
1521}
1522
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001523/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001524static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1525 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
1527 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 void __user *argp = (void __user *)arg;
1529
Borislav Petkovd59823f2008-02-02 19:56:51 +01001530 struct idetape_config {
1531 int dsc_rw_frequency;
1532 int dsc_media_access_frequency;
1533 int nr_stages;
1534 } config;
1535
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001536 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001539 case 0x0340:
1540 if (copy_from_user(&config, argp, sizeof(config)))
1541 return -EFAULT;
1542 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001543 break;
1544 case 0x0350:
1545 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001546 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001547 if (copy_to_user(argp, &config, sizeof(config)))
1548 return -EFAULT;
1549 break;
1550 default:
1551 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553 return 0;
1554}
1555
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001556static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1557 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001560 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001561 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001562 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001563 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 if (mt_count == 0)
1566 return 0;
1567 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001568 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001570 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
1572
Borislav Petkov54abf372008-02-06 02:57:52 +01001573 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001574 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001575 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001577 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001581 case MTFSF:
1582 case MTBSF:
1583 idetape_create_space_cmd(&pc, mt_count - count,
1584 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001585 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001586 case MTFSFM:
1587 case MTBSFM:
1588 if (!sprev)
1589 return -EIO;
1590 retval = idetape_space_over_filemarks(drive, MTFSF,
1591 mt_count - count);
1592 if (retval)
1593 return retval;
1594 count = (MTBSFM == mt_op ? 1 : -1);
1595 return idetape_space_over_filemarks(drive, MTFSF, count);
1596 default:
1597 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1598 mt_op);
1599 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
1601}
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001604 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001606 * The tape is optimized to maximize throughput when it is transferring an
1607 * integral number of the "continuous transfer limit", which is a parameter of
1608 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001610 * As of version 1.3 of the driver, the character device provides an abstract
1611 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1612 * same backup/restore procedure is supported. The driver will internally
1613 * convert the requests to the recommended transfer unit, so that an unmatch
1614 * between the user's block size to the recommended size will only result in a
1615 * (slightly) increased driver overhead, but will no longer hit performance.
1616 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001618static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1619 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
1621 struct ide_tape_obj *tape = ide_tape_f(file);
1622 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001623 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001624 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001625 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001627 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Borislav Petkov54abf372008-02-06 02:57:52 +01001629 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001630 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001631 if (count > tape->blk_size &&
1632 (count % tape->blk_size) == 0)
1633 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001635 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001636 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return rc;
1638 if (count == 0)
1639 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001640 if (tape->merge_bh_size) {
1641 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001642 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001643 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001644 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001646 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 count -= actually_read;
1648 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001649 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001650 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 if (bytes_read <= 0)
1652 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001653 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001654 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 buf += bytes_read;
1656 count -= bytes_read;
1657 actually_read += bytes_read;
1658 }
1659 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001660 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (bytes_read <= 0)
1662 goto finish;
1663 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001664 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001665 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001667 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001670 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001671 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 idetape_space_over_filemarks(drive, MTFSF, 1);
1674 return 0;
1675 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001676
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001677 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001680static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 size_t count, loff_t *ppos)
1682{
1683 struct ide_tape_obj *tape = ide_tape_f(file);
1684 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001685 ssize_t actually_written = 0;
1686 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001687 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 /* The drive is write protected. */
1690 if (tape->write_prot)
1691 return -EACCES;
1692
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001693 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001696 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1697 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001698 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001699 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001700 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001702 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001704 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1705 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001707 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001708 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001711 * Issue a write 0 command to ensure that DSC handshake is
1712 * switched from completion mode to buffer available mode. No
1713 * point in issuing this if DSC overlap isn't supported, some
1714 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 */
1716 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001717 ssize_t retval = idetape_queue_rw_tail(drive,
1718 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001719 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001721 ide_tape_kfree_buffer(tape);
1722 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001723 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return retval;
1725 }
1726 }
1727 }
1728 if (count == 0)
1729 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001730 if (tape->merge_bh_size) {
1731 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001732 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001733 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001735 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001736 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001737 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001738 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001739 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001741 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 count -= actually_written;
1743
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001744 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001745 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001746 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001747 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (retval <= 0)
1749 return (retval);
1750 }
1751 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001752 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001753 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001754 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001755 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001756 buf += tape->buffer_size;
1757 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001758 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001759 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (retval <= 0)
1761 return (retval);
1762 }
1763 if (count) {
1764 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001765 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001766 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001767 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001769 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001772static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001774 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001775 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 /* Write a filemark */
1778 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001779 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1781 return -EIO;
1782 }
1783 return 0;
1784}
1785
1786/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001787 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1788 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001790 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1791 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001792 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001794 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001796 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1797 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001799static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
1801 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001802 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001803 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001804 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001806 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1807 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001810 case MTFSF:
1811 case MTFSFM:
1812 case MTBSF:
1813 case MTBSFM:
1814 if (!mt_count)
1815 return 0;
1816 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1817 default:
1818 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001822 case MTWEOF:
1823 if (tape->write_prot)
1824 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001825 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001826 for (i = 0; i < mt_count; i++) {
1827 retval = idetape_write_filemark(drive);
1828 if (retval)
1829 return retval;
1830 }
1831 return 0;
1832 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001833 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001834 if (idetape_rewind_tape(drive))
1835 return -EIO;
1836 return 0;
1837 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001838 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001839 idetape_create_load_unload_cmd(drive, &pc,
1840 IDETAPE_LU_LOAD_MASK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001841 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001842 case MTUNLOAD:
1843 case MTOFFL:
1844 /*
1845 * If door is locked, attempt to unlock before
1846 * attempting to eject.
1847 */
1848 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001849 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001850 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001851 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001852 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001853 idetape_create_load_unload_cmd(drive, &pc,
1854 !IDETAPE_LU_LOAD_MASK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001855 retval = ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001856 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001857 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001858 return retval;
1859 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001860 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001861 return idetape_flush_tape_buffers(drive);
1862 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001863 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001864 idetape_create_load_unload_cmd(drive, &pc,
1865 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001866 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001867 case MTEOM:
1868 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001869 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001870 case MTERASE:
1871 (void)idetape_rewind_tape(drive);
1872 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001873 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001874 case MTSETBLK:
1875 if (mt_count) {
1876 if (mt_count < tape->blk_size ||
1877 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001879 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001880 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001881 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001882 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001883 return 0;
1884 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001885 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001886 return idetape_position_tape(drive,
1887 mt_count * tape->user_bs_factor, tape->partition, 0);
1888 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001889 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001890 return idetape_position_tape(drive, 0, mt_count, 0);
1891 case MTFSR:
1892 case MTBSR:
1893 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001894 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001895 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001897 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1898 return 0;
1899 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001900 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001901 if (retval)
1902 return retval;
1903 tape->door_locked = DOOR_UNLOCKED;
1904 return 0;
1905 default:
1906 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1907 mt_op);
1908 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
1910}
1911
1912/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001913 * Our character device ioctls. General mtio.h magnetic io commands are
1914 * supported here, and not in the corresponding block interface. Our own
1915 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001917static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1918 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
1920 struct ide_tape_obj *tape = ide_tape_f(file);
1921 ide_drive_t *drive = tape->drive;
1922 struct mtop mtop;
1923 struct mtget mtget;
1924 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001925 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 void __user *argp = (void __user *)arg;
1927
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001928 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Borislav Petkov54abf372008-02-06 02:57:52 +01001930 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001931 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 idetape_flush_tape_buffers(drive);
1933 }
1934 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001935 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001936 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001937 position = idetape_read_position(drive);
1938 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return -EIO;
1940 }
1941 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001942 case MTIOCTOP:
1943 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1944 return -EFAULT;
1945 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1946 case MTIOCGET:
1947 memset(&mtget, 0, sizeof(struct mtget));
1948 mtget.mt_type = MT_ISSCSI2;
1949 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1950 mtget.mt_dsreg =
1951 ((tape->blk_size * tape->user_bs_factor)
1952 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001953
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001954 if (tape->drv_write_prot)
1955 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1956
1957 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1958 return -EFAULT;
1959 return 0;
1960 case MTIOCPOS:
1961 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1962 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1963 return -EFAULT;
1964 return 0;
1965 default:
1966 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001967 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001968 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
1970}
1971
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001972/*
1973 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1974 * block size with the reported value.
1975 */
1976static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1977{
1978 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001979 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001980
1981 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001982 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001983 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001984 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001985 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1986 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001987 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001988 }
1989 return;
1990 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001991 tape->blk_size = (pc.buf[4 + 5] << 16) +
1992 (pc.buf[4 + 6] << 8) +
1993 pc.buf[4 + 7];
1994 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001995}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001997static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
1999 unsigned int minor = iminor(inode), i = minor & ~0xc0;
2000 ide_drive_t *drive;
2001 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 int retval;
2003
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002004 if (i >= MAX_HWIFS * MAX_DRIVES)
2005 return -ENXIO;
2006
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002007 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002008 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002009 if (!tape) {
2010 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002011 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002012 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002013
2014 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /*
2017 * We really want to do nonseekable_open(inode, filp); here, but some
2018 * versions of tar incorrectly call lseek on tapes and bail out if that
2019 * fails. So we disallow pread() and pwrite(), but permit lseeks.
2020 */
2021 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 drive = tape->drive;
2024
2025 filp->private_data = tape;
2026
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002027 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 retval = -EBUSY;
2029 goto out_put_tape;
2030 }
2031
2032 retval = idetape_wait_ready(drive, 60 * HZ);
2033 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002034 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2036 goto out_put_tape;
2037 }
2038
2039 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002040 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 (void)idetape_rewind_tape(drive);
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002044 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 /* Set write protect flag if device is opened as read-only. */
2047 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2048 tape->write_prot = 1;
2049 else
2050 tape->write_prot = tape->drv_write_prot;
2051
2052 /* Make sure drive isn't write protected if user wants to write. */
2053 if (tape->write_prot) {
2054 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2055 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002056 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 retval = -EROFS;
2058 goto out_put_tape;
2059 }
2060 }
2061
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002062 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01002063 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002064 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002065 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2066 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002069 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return 0;
2071
2072out_put_tape:
2073 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002074 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return retval;
2076}
2077
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002078static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
2080 idetape_tape_t *tape = drive->driver_data;
2081
Borislav Petkovd9df9372008-04-27 15:38:34 +02002082 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002083 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2084 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002085 idetape_pad_zeros(drive, tape->blk_size *
2086 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002087 ide_tape_kfree_buffer(tape);
2088 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090 idetape_write_filemark(drive);
2091 idetape_flush_tape_buffers(drive);
2092 idetape_flush_tape_buffers(drive);
2093}
2094
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002095static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
2097 struct ide_tape_obj *tape = ide_tape_f(filp);
2098 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 unsigned int minor = iminor(inode);
2100
2101 lock_kernel();
2102 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002103
2104 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Borislav Petkov54abf372008-02-06 02:57:52 +01002106 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002108 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002110 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002112
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002113 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002115 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002117 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002118 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
2120 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002121 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 ide_tape_put(tape);
2123 unlock_kernel();
2124 return 0;
2125}
2126
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002127static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002130 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002131 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002134 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002135 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2136 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 return;
2138 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002139 memcpy(vendor_id, &pc.buf[8], 8);
2140 memcpy(product_id, &pc.buf[16], 16);
2141 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002142
Borislav Petkov801bd322008-09-27 19:32:17 +02002143 ide_fixstring(vendor_id, 8, 0);
2144 ide_fixstring(product_id, 16, 0);
2145 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002146
Borislav Petkov801bd322008-09-27 19:32:17 +02002147 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002148 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
2151/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002152 * Ask the tape about its various parameters. In particular, we will adjust our
2153 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002155static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002158 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002159 u8 *caps;
2160 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002163 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002164 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2165 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002166 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002167 put_unaligned(52, (u16 *)&tape->caps[12]);
2168 put_unaligned(540, (u16 *)&tape->caps[14]);
2169 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return;
2171 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002172 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Borislav Petkovb6422012008-02-02 19:56:49 +01002174 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002175 speed = be16_to_cpup((__be16 *)&caps[14]);
2176 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002178 *(u16 *)&caps[8] = max_speed;
2179 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2180 *(u16 *)&caps[14] = speed;
2181 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002182
2183 if (!speed) {
2184 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2185 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002186 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002188 if (!max_speed) {
2189 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2190 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002191 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193
Borislav Petkovb6422012008-02-02 19:56:49 +01002194 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002195
2196 /* device lacks locking support according to capabilities page */
2197 if ((caps[6] & 1) == 0)
2198 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
2199
Borislav Petkovb6422012008-02-02 19:56:49 +01002200 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002201 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002202 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002203 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002206#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002207#define ide_tape_devset_get(name, field) \
2208static int get_##name(ide_drive_t *drive) \
2209{ \
2210 idetape_tape_t *tape = drive->driver_data; \
2211 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002213
2214#define ide_tape_devset_set(name, field) \
2215static int set_##name(ide_drive_t *drive, int arg) \
2216{ \
2217 idetape_tape_t *tape = drive->driver_data; \
2218 tape->field = arg; \
2219 return 0; \
2220}
2221
2222#define ide_tape_devset_rw(_name, _min, _max, _field, _mulf, _divf) \
2223ide_tape_devset_get(_name, _field) \
2224ide_tape_devset_set(_name, _field) \
2225__IDE_DEVSET(_name, S_RW, _min, _max, get_##_name, set_##_name, _mulf, _divf)
2226
2227#define ide_tape_devset_r(_name, _min, _max, _field, _mulf, _divf) \
2228ide_tape_devset_get(_name, _field) \
2229__IDE_DEVSET(_name, S_READ, _min, _max, get_##_name, NULL, _mulf, _divf)
2230
2231static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2232static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2233static int divf_buffer(ide_drive_t *drive) { return 2; }
2234static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2235
2236ide_devset_rw(dsc_overlap, 0, 1, dsc_overlap);
2237
2238ide_tape_devset_rw(debug_mask, 0, 0xffff, debug_mask, NULL, NULL);
2239ide_tape_devset_rw(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2240 best_dsc_rw_freq, mulf_tdsc, divf_tdsc);
2241
2242ide_tape_devset_r(avg_speed, 0, 0xffff, avg_speed, NULL, NULL);
2243ide_tape_devset_r(speed, 0, 0xffff, caps[14], NULL, NULL);
2244ide_tape_devset_r(buffer, 0, 0xffff, caps[16], NULL, divf_buffer);
2245ide_tape_devset_r(buffer_size, 0, 0xffff, buffer_size, NULL, divf_buffer_size);
2246
2247static const struct ide_devset *idetape_settings[] = {
2248 &ide_devset_avg_speed,
2249 &ide_devset_buffer,
2250 &ide_devset_buffer_size,
2251 &ide_devset_debug_mask,
2252 &ide_devset_dsc_overlap,
2253 &ide_devset_speed,
2254 &ide_devset_tdsc,
2255 NULL
2256};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002257#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002260 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002262 * 1. Initialize our various state variables.
2263 * 2. Ask the tape for its capabilities.
2264 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2265 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002267 * Note that at this point ide.c already assigned us an irq, so that we can
2268 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002270static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Borislav Petkov83042b22008-04-27 15:38:27 +02002272 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002274 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002275 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002276 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Borislav Petkov776bb022008-07-23 19:55:59 +02002278 drive->pc_callback = ide_tape_callback;
2279
Borislav Petkov54bb2072008-02-06 02:57:52 +01002280 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002282 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2283 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2284 tape->name);
2285 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002288 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 drive->dsc_overlap = 0;
2290 tape->minor = minor;
2291 tape->name[0] = 'h';
2292 tape->name[1] = 't';
2293 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002294 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002295
2296 *((u16 *)&gcw) = drive->id[ATA_ID_CONFIG];
Borislav Petkov71071b82008-02-06 02:57:53 +01002297
2298 /* Command packet DRQ type */
2299 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002300 set_bit(IDE_AFLAG_DRQ_INTERRUPT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 idetape_get_inquiry_results(drive);
2303 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002304 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002306 tape->buffer_size = *ctl * tape->blk_size;
2307 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002309 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002310 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002312 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002313 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002314 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002315 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002316 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
2318
Borislav Petkov83042b22008-04-27 15:38:27 +02002319 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002320 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Borislav Petkovf73850a2008-04-27 15:38:33 +02002322 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002325 * Ensure that the number we got makes sense; limit it within
2326 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002328 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2329 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002331 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002332 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002333 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2334 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002335 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 drive->using_dma ? ", DMA":"");
2337
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002338 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339}
2340
Russell King4031bbe2006-01-06 11:41:00 +00002341static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
2343 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002345 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
2347 ide_unregister_region(tape->disk);
2348
2349 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
2352static void ide_tape_release(struct kref *kref)
2353{
2354 struct ide_tape_obj *tape = to_ide_tape(kref);
2355 ide_drive_t *drive = tape->drive;
2356 struct gendisk *g = tape->disk;
2357
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002358 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 drive->dsc_overlap = 0;
2361 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002362 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002363 device_destroy(idetape_sysfs_class,
2364 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 idetape_devs[tape->minor] = NULL;
2366 g->private_data = NULL;
2367 put_disk(g);
2368 kfree(tape);
2369}
2370
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002371#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372static int proc_idetape_read_name
2373 (char *page, char **start, off_t off, int count, int *eof, void *data)
2374{
2375 ide_drive_t *drive = (ide_drive_t *) data;
2376 idetape_tape_t *tape = drive->driver_data;
2377 char *out = page;
2378 int len;
2379
2380 len = sprintf(out, "%s\n", tape->name);
2381 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2382}
2383
2384static ide_proc_entry_t idetape_proc[] = {
2385 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2386 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2387 { NULL, 0, NULL, NULL }
2388};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389#endif
2390
Russell King4031bbe2006-01-06 11:41:00 +00002391static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002394 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002395 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002396 .name = "ide-tape",
2397 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002398 },
Russell King4031bbe2006-01-06 11:41:00 +00002399 .probe = ide_tape_probe,
2400 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 .version = IDETAPE_VERSION,
2402 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 .do_request = idetape_do_request,
2404 .end_request = idetape_end_request,
2405 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002406#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002408 .settings = idetape_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002409#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410};
2411
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002412/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002413static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 .owner = THIS_MODULE,
2415 .read = idetape_chrdev_read,
2416 .write = idetape_chrdev_write,
2417 .ioctl = idetape_chrdev_ioctl,
2418 .open = idetape_chrdev_open,
2419 .release = idetape_chrdev_release,
2420};
2421
2422static int idetape_open(struct inode *inode, struct file *filp)
2423{
2424 struct gendisk *disk = inode->i_bdev->bd_disk;
2425 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002427 tape = ide_tape_get(disk);
2428 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 return -ENXIO;
2430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return 0;
2432}
2433
2434static int idetape_release(struct inode *inode, struct file *filp)
2435{
2436 struct gendisk *disk = inode->i_bdev->bd_disk;
2437 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 ide_tape_put(tape);
2440
2441 return 0;
2442}
2443
2444static int idetape_ioctl(struct inode *inode, struct file *file,
2445 unsigned int cmd, unsigned long arg)
2446{
2447 struct block_device *bdev = inode->i_bdev;
2448 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2449 ide_drive_t *drive = tape->drive;
2450 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2451 if (err == -EINVAL)
2452 err = idetape_blkdev_ioctl(drive, cmd, arg);
2453 return err;
2454}
2455
2456static struct block_device_operations idetape_block_ops = {
2457 .owner = THIS_MODULE,
2458 .open = idetape_open,
2459 .release = idetape_release,
2460 .ioctl = idetape_ioctl,
2461};
2462
Russell King4031bbe2006-01-06 11:41:00 +00002463static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
2465 idetape_tape_t *tape;
2466 struct gendisk *g;
2467 int minor;
2468
2469 if (!strstr("ide-tape", drive->driver_req))
2470 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002471
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 if (drive->media != ide_tape)
2473 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002474
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +02002475 if (drive->id_read == 1 && !ide_check_atapi_device(drive, DRV_NAME)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002476 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2477 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 goto failed;
2479 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002480 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002482 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2483 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 goto failed;
2485 }
2486
2487 g = alloc_disk(1 << PARTN_BITS);
2488 if (!g)
2489 goto out_free_tape;
2490
2491 ide_init_disk(g, drive);
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 kref_init(&tape->kref);
2494
2495 tape->drive = drive;
2496 tape->driver = &idetape_driver;
2497 tape->disk = g;
2498
2499 g->private_data = &tape->driver;
2500
2501 drive->driver_data = tape;
2502
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002503 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 for (minor = 0; idetape_devs[minor]; minor++)
2505 ;
2506 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002507 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 idetape_setup(drive, tape, minor);
2510
Greg Kroah-Hartman6ecaaf92008-05-21 12:52:33 -07002511 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2512 MKDEV(IDETAPE_MAJOR, minor), NULL,
2513 "%s", tape->name);
2514 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2515 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2516 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 g->fops = &idetape_block_ops;
2519 ide_register_region(g);
2520
2521 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523out_free_tape:
2524 kfree(tape);
2525failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002526 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002529static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002531 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002532 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 unregister_chrdev(IDETAPE_MAJOR, "ht");
2534}
2535
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002536static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Will Dysond5dee802005-09-16 02:55:07 -07002538 int error = 1;
2539 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2540 if (IS_ERR(idetape_sysfs_class)) {
2541 idetape_sysfs_class = NULL;
2542 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2543 error = -EBUSY;
2544 goto out;
2545 }
2546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002548 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2549 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002550 error = -EBUSY;
2551 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 }
Will Dysond5dee802005-09-16 02:55:07 -07002553
2554 error = driver_register(&idetape_driver.gen_driver);
2555 if (error)
2556 goto out_free_driver;
2557
2558 return 0;
2559
2560out_free_driver:
2561 driver_unregister(&idetape_driver.gen_driver);
2562out_free_class:
2563 class_destroy(idetape_sysfs_class);
2564out:
2565 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
Kay Sievers263756e2005-12-12 18:03:44 +01002568MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569module_init(idetape_init);
2570module_exit(idetape_exit);
2571MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002572MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2573MODULE_LICENSE("GPL");