blob: 10f2d3336286a6ec47c629a128c5a11ba7dd3cf6 [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
Borislav Petkovdfe79932008-02-06 02:57:55 +010018#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/string.h>
23#include <linux/kernel.h>
24#include <linux/delay.h>
25#include <linux/timer.h>
26#include <linux/mm.h>
27#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080028#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
31#include <linux/genhd.h>
32#include <linux/slab.h>
33#include <linux/pci.h>
34#include <linux/ide.h>
35#include <linux/smp_lock.h>
36#include <linux/completion.h>
37#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080038#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010039#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010042#include <linux/irq.h>
43#include <linux/uaccess.h>
44#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/mtio.h>
47
Borislav Petkov8004a8c2008-02-06 02:57:51 +010048enum {
49 /* output errors only */
50 DBG_ERR = (1 << 0),
51 /* output all sense key/asc */
52 DBG_SENSE = (1 << 1),
53 /* info regarding all chrdev-related procedures */
54 DBG_CHRDEV = (1 << 2),
55 /* all remaining procedures */
56 DBG_PROCS = (1 << 3),
57 /* buffer alloc info (pc_stack & rq_stack) */
58 DBG_PCRQ_STACK = (1 << 4),
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +020059 /* IRQ handler (always log debug info if debugging is on) */
60 DBG_PC_INTR = (1 << 5),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010061};
62
63/* define to see debug info */
64#define IDETAPE_DEBUG_LOG 0
65
66#if IDETAPE_DEBUG_LOG
67#define debug_log(lvl, fmt, args...) \
68{ \
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +020069 if ((lvl & DBG_PC_INTR) || (tape->debug_mask & lvl)) \
Borislav Petkov8004a8c2008-02-06 02:57:51 +010070 printk(KERN_INFO "ide-tape: " fmt, ## args); \
71}
72#else
73#define debug_log(lvl, fmt, args...) do {} while (0)
74#endif
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010078 * After each failed packet command we issue a request sense command and retry
79 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010081 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
83#define IDETAPE_MAX_PC_RETRIES 3
84
85/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010086 * With each packet command, we allocate a buffer of IDETAPE_PC_BUFFER_SIZE
87 * bytes. This is used for several packet commands (Not for READ/WRITE commands)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
89#define IDETAPE_PC_BUFFER_SIZE 256
90
91/*
92 * In various places in the driver, we need to allocate storage
93 * for packet commands and requests, which will remain valid while
94 * we leave the driver to wait for an interrupt or a timeout event.
95 */
96#define IDETAPE_PC_STACK (10 + IDETAPE_MAX_PC_RETRIES)
97
98/*
99 * Some drives (for example, Seagate STT3401A Travan) require a very long
100 * timeout, because they don't return an interrupt or clear their busy bit
101 * until after the command completes (even retension commands).
102 */
103#define IDETAPE_WAIT_CMD (900*HZ)
104
105/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100106 * The following parameter is used to select the point in the internal tape fifo
107 * in which we will start to refill the buffer. Decreasing the following
108 * parameter will improve the system's latency and interactive response, while
109 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100111#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100114 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100116 * Polling for DSC (a single bit in the status register) is a very important
117 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100119 * 1. Before a read/write packet command, to ensure that we can transfer data
120 * from/to the tape's data buffers, without causing an actual media access.
121 * In case the tape is not ready yet, we take out our request from the device
122 * request queue, so that ide.c could service requests from the other device
123 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100125 * 2. After the successful initialization of a "media access packet command",
126 * which is a command that can take a long time to complete (the interval can
127 * range from several seconds to even an hour). Again, we postpone our request
128 * in the middle to free the bus for the other device. The polling frequency
129 * here should be lower than the read/write frequency since those media access
130 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
131 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
132 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100134 * We also set a timeout for the timer, in case something goes wrong. The
135 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100137
138/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
140#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
141#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
142#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
143#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
144#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
145#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
146
147/*************************** End of tunable parameters ***********************/
148
Borislav Petkov54abf372008-02-06 02:57:52 +0100149/* tape directions */
150enum {
151 IDETAPE_DIR_NONE = (1 << 0),
152 IDETAPE_DIR_READ = (1 << 1),
153 IDETAPE_DIR_WRITE = (1 << 2),
154};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156struct idetape_bh {
Stephen Rothwellab057962007-08-01 23:46:44 +0200157 u32 b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 atomic_t b_count;
159 struct idetape_bh *b_reqnext;
160 char *b_data;
161};
162
Borislav Petkov03056b92008-04-18 00:46:26 +0200163/* Tape door status */
164#define DOOR_UNLOCKED 0
165#define DOOR_LOCKED 1
166#define DOOR_EXPLICITLY_LOCKED 2
167
168/* Some defines for the SPACE command */
169#define IDETAPE_SPACE_OVER_FILEMARK 1
170#define IDETAPE_SPACE_TO_EOD 3
171
172/* Some defines for the LOAD UNLOAD command */
173#define IDETAPE_LU_LOAD_MASK 1
174#define IDETAPE_LU_RETENSION_MASK 2
175#define IDETAPE_LU_EOT_MASK 4
176
177/*
178 * Special requests for our block device strategy routine.
179 *
180 * In order to service a character device command, we add special requests to
181 * the tail of our block device request queue and wait for their completion.
182 */
183
184enum {
185 REQ_IDETAPE_PC1 = (1 << 0), /* packet command (first stage) */
186 REQ_IDETAPE_PC2 = (1 << 1), /* packet command (second stage) */
187 REQ_IDETAPE_READ = (1 << 2),
188 REQ_IDETAPE_WRITE = (1 << 3),
189};
190
191/* Error codes returned in rq->errors to the higher part of the driver. */
192#define IDETAPE_ERROR_GENERAL 101
193#define IDETAPE_ERROR_FILEMARK 102
194#define IDETAPE_ERROR_EOD 103
195
196/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
197#define IDETAPE_BLOCK_DESCRIPTOR 0
198#define IDETAPE_CAPABILITIES_PAGE 0x2a
199
Borislav Petkov346331f2008-04-18 00:46:26 +0200200/* Tape flag bits values. */
201enum {
202 IDETAPE_FLAG_IGNORE_DSC = (1 << 0),
203 /* 0 When the tape position is unknown */
204 IDETAPE_FLAG_ADDRESS_VALID = (1 << 1),
205 /* Device already opened */
Borislav Petkov42d54682008-04-27 15:38:27 +0200206 IDETAPE_FLAG_BUSY = (1 << 2),
Borislav Petkov346331f2008-04-18 00:46:26 +0200207 /* Attempt to auto-detect the current user block size */
Borislav Petkov42d54682008-04-27 15:38:27 +0200208 IDETAPE_FLAG_DETECT_BS = (1 << 3),
Borislav Petkov346331f2008-04-18 00:46:26 +0200209 /* Currently on a filemark */
Borislav Petkov42d54682008-04-27 15:38:27 +0200210 IDETAPE_FLAG_FILEMARK = (1 << 4),
Borislav Petkov346331f2008-04-18 00:46:26 +0200211 /* DRQ interrupt device */
Borislav Petkov42d54682008-04-27 15:38:27 +0200212 IDETAPE_FLAG_DRQ_INTERRUPT = (1 << 5),
Borislav Petkov346331f2008-04-18 00:46:26 +0200213 /* 0 = no tape is loaded, so we don't rewind after ejecting */
Borislav Petkov42d54682008-04-27 15:38:27 +0200214 IDETAPE_FLAG_MEDIUM_PRESENT = (1 << 6),
Borislav Petkov346331f2008-04-18 00:46:26 +0200215};
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100218 * Most of our global data which we need to save even as we leave the driver due
219 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
221typedef struct ide_tape_obj {
222 ide_drive_t *drive;
223 ide_driver_t *driver;
224 struct gendisk *disk;
225 struct kref kref;
226
227 /*
228 * Since a typical character device operation requires more
229 * than one packet command, we provide here enough memory
230 * for the maximum of interconnected packet commands.
231 * The packet commands are stored in the circular array pc_stack.
232 * pc_stack_index points to the last used entry, and warps around
233 * to the start when we get to the last array entry.
234 *
235 * pc points to the current processed packet command.
236 *
237 * failed_pc points to the last failed packet command, or contains
238 * NULL if we do not need to retry any packet command. This is
239 * required since an additional packet command is needed before the
240 * retry, to get detailed information on what went wrong.
241 */
242 /* Current packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200243 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* Last failed packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200245 struct ide_atapi_pc *failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* Packet command stack */
Borislav Petkovd236d742008-04-18 00:46:27 +0200247 struct ide_atapi_pc pc_stack[IDETAPE_PC_STACK];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* Next free packet command storage space */
249 int pc_stack_index;
250 struct request rq_stack[IDETAPE_PC_STACK];
251 /* We implement a circular array */
252 int rq_stack_index;
253
254 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100255 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100257 * While polling for DSC we use postponed_rq to postpone the current
258 * request so that ide.c will be able to service pending requests on the
259 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200260 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 */
262 struct request *postponed_rq;
263 /* The time in which we started polling for DSC */
264 unsigned long dsc_polling_start;
265 /* Timer used to poll for dsc */
266 struct timer_list dsc_timer;
267 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100268 unsigned long best_dsc_rw_freq;
269 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 unsigned long dsc_timeout;
271
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100272 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 u8 partition;
274 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100275 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100277 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 u8 sense_key, asc, ascq;
279
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100280 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 unsigned int minor;
282 /* device name */
283 char name[4];
284 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100285 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Borislav Petkov54bb2072008-02-06 02:57:52 +0100287 /* tape block size, usually 512 or 1024 bytes */
288 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100292 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100295 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100297 * At most, there is only one ide-tape originated data transfer request
298 * in the device request queue. This allows ide.c to easily service
299 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200301
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100302 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200303 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200304 /* merge buffer */
305 struct idetape_bh *merge_bh;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +0200306 /* size of the merge buffer */
307 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200308 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 struct idetape_bh *bh;
310 char *b_data;
311 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100312
Borislav Petkova997a432008-04-27 15:38:33 +0200313 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* Wasted space in each stage */
315 int excess_bh_size;
316
317 /* Status/Action flags: long for set_bit */
318 unsigned long flags;
319 /* protects the ide-tape queue */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100320 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100322 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 unsigned long avg_time;
324 int avg_size;
325 int avg_speed;
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* the door is currently locked */
328 int door_locked;
329 /* the tape hardware is write protected */
330 char drv_write_prot;
331 /* the tape is write protected (hardware or opened as read-only) */
332 char write_prot;
333
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100334 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335} idetape_tape_t;
336
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800337static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Will Dysond5dee802005-09-16 02:55:07 -0700339static struct class *idetape_sysfs_class;
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
342
343#define ide_tape_g(disk) \
344 container_of((disk)->private_data, struct ide_tape_obj, driver)
345
346static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
347{
348 struct ide_tape_obj *tape = NULL;
349
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800350 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 tape = ide_tape_g(disk);
352 if (tape)
353 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800354 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return tape;
356}
357
358static void ide_tape_release(struct kref *);
359
360static void ide_tape_put(struct ide_tape_obj *tape)
361{
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800362 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 kref_put(&tape->kref, ide_tape_release);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800364 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100368 * The variables below are used for the character device interface. Additional
369 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100371static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373#define ide_tape_f(file) ((file)->private_data)
374
375static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
376{
377 struct ide_tape_obj *tape = NULL;
378
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800379 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 tape = idetape_devs[i];
381 if (tape)
382 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800383 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return tape;
385}
386
Borislav Petkovd236d742008-04-18 00:46:27 +0200387static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100388 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 struct idetape_bh *bh = pc->bh;
391 int count;
392
393 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (bh == NULL) {
395 printk(KERN_ERR "ide-tape: bh == NULL in "
396 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200397 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return;
399 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100400 count = min(
401 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
402 bcount);
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200403 drive->hwif->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100404 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 bcount -= count;
406 atomic_add(count, &bh->b_count);
407 if (atomic_read(&bh->b_count) == bh->b_size) {
408 bh = bh->b_reqnext;
409 if (bh)
410 atomic_set(&bh->b_count, 0);
411 }
412 }
413 pc->bh = bh;
414}
415
Borislav Petkovd236d742008-04-18 00:46:27 +0200416static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100417 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 struct idetape_bh *bh = pc->bh;
420 int count;
421
422 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100424 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
425 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return;
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200429 drive->hwif->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 bcount -= count;
431 pc->b_data += count;
432 pc->b_count -= count;
433 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100434 bh = bh->b_reqnext;
435 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (bh) {
437 pc->b_data = bh->b_data;
438 pc->b_count = atomic_read(&bh->b_count);
439 }
440 }
441 }
442}
443
Borislav Petkovd236d742008-04-18 00:46:27 +0200444static void idetape_update_buffers(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct idetape_bh *bh = pc->bh;
447 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200448 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Borislav Petkov346331f2008-04-18 00:46:26 +0200450 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return;
452 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100454 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
455 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return;
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
459 atomic_set(&bh->b_count, count);
460 if (atomic_read(&bh->b_count) == bh->b_size)
461 bh = bh->b_reqnext;
462 bcount -= count;
463 }
464 pc->bh = bh;
465}
466
467/*
468 * idetape_next_pc_storage returns a pointer to a place in which we can
469 * safely store a packet command, even though we intend to leave the
470 * driver. A storage space for a maximum of IDETAPE_PC_STACK packet
471 * commands is allocated at initialization time.
472 */
Borislav Petkovd236d742008-04-18 00:46:27 +0200473static struct ide_atapi_pc *idetape_next_pc_storage(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 idetape_tape_t *tape = drive->driver_data;
476
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100477 debug_log(DBG_PCRQ_STACK, "pc_stack_index=%d\n", tape->pc_stack_index);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (tape->pc_stack_index == IDETAPE_PC_STACK)
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100480 tape->pc_stack_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return (&tape->pc_stack[tape->pc_stack_index++]);
482}
483
484/*
485 * idetape_next_rq_storage is used along with idetape_next_pc_storage.
486 * Since we queue packet commands in the request queue, we need to
487 * allocate a request, along with the allocation of a packet command.
488 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490/**************************************************************
491 * *
492 * This should get fixed to use kmalloc(.., GFP_ATOMIC) *
493 * followed later on by kfree(). -ml *
494 * *
495 **************************************************************/
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100496
497static struct request *idetape_next_rq_storage(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 idetape_tape_t *tape = drive->driver_data;
500
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100501 debug_log(DBG_PCRQ_STACK, "rq_stack_index=%d\n", tape->rq_stack_index);
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (tape->rq_stack_index == IDETAPE_PC_STACK)
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100504 tape->rq_stack_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return (&tape->rq_stack[tape->rq_stack_index++]);
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100509 * called on each failed packet command retry to analyze the request sense. We
510 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100512static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200515 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Borislav Petkov1b5db432008-02-02 19:56:48 +0100517 tape->sense_key = sense[2] & 0xF;
518 tape->asc = sense[12];
519 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100520
521 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
522 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Borislav Petkovd236d742008-04-18 00:46:27 +0200524 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200525 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200526 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100527 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200528 get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 idetape_update_buffers(pc);
530 }
531
532 /*
533 * If error was the result of a zero-length read or write command,
534 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
535 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
536 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100537 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100538 /* length == 0 */
539 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
540 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* don't report an error, everything's ok */
542 pc->error = 0;
543 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200544 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100547 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200549 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100551 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100552 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
553 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200555 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100558 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100559 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200561 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200563 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200564 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
566 }
567}
568
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200569/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200570static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200572 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200574 while (bh) {
575 u32 size = bh->b_size;
576
577 while (size) {
578 unsigned int order = fls(size >> PAGE_SHIFT)-1;
579
580 if (bh->b_data)
581 free_pages((unsigned long)bh->b_data, order);
582
583 size &= (order-1);
584 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586 prev_bh = bh;
587 bh = bh->b_reqnext;
588 kfree(prev_bh);
589 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200590 kfree(tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
594{
595 struct request *rq = HWGROUP(drive)->rq;
596 idetape_tape_t *tape = drive->driver_data;
597 unsigned long flags;
598 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100600 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100603 case 0: error = IDETAPE_ERROR_GENERAL; break;
604 case 1: error = 0; break;
605 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607 rq->errors = error;
608 if (error)
609 tape->failed_pc = NULL;
610
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100611 if (!blk_special_request(rq)) {
612 ide_end_request(drive, uptodate, nr_sects);
613 return 0;
614 }
615
Borislav Petkov54bb2072008-02-06 02:57:52 +0100616 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Borislav Petkov54bb2072008-02-06 02:57:52 +0100620 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return 0;
622}
623
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200624static void ide_tape_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
626 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200627 struct ide_atapi_pc *pc = tape->pc;
628 int uptodate = pc->error ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100630 debug_log(DBG_PROCS, "Enter %s\n", __func__);
631
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200632 if (tape->failed_pc == pc)
633 tape->failed_pc = NULL;
634
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200635 if (pc->c[0] == REQUEST_SENSE) {
636 if (uptodate)
637 idetape_analyze_error(drive, pc->buf);
638 else
639 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
640 "itself - Aborting request!\n");
641 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
642 struct request *rq = drive->hwif->hwgroup->rq;
643 int blocks = pc->xferred / tape->blk_size;
644
645 tape->avg_size += blocks * tape->blk_size;
646
647 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
648 tape->avg_speed = tape->avg_size * HZ /
649 (jiffies - tape->avg_time) / 1024;
650 tape->avg_size = 0;
651 tape->avg_time = jiffies;
652 }
653
654 tape->first_frame += blocks;
655 rq->current_nr_sectors -= blocks;
656
657 if (pc->error)
658 uptodate = pc->error;
659 } else if (pc->c[0] == READ_POSITION && uptodate) {
660 u8 *readpos = tape->pc->buf;
661
662 debug_log(DBG_SENSE, "BOP - %s\n",
663 (readpos[0] & 0x80) ? "Yes" : "No");
664 debug_log(DBG_SENSE, "EOP - %s\n",
665 (readpos[0] & 0x40) ? "Yes" : "No");
666
667 if (readpos[0] & 0x4) {
668 printk(KERN_INFO "ide-tape: Block location is unknown"
669 "to the tape\n");
670 clear_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
671 uptodate = 0;
672 } else {
673 debug_log(DBG_SENSE, "Block Location - %u\n",
674 be32_to_cpu(*(u32 *)&readpos[4]));
675
676 tape->partition = readpos[1];
677 tape->first_frame = be32_to_cpu(*(u32 *)&readpos[4]);
678 set_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200681
682 idetape_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200685static void idetape_init_pc(struct ide_atapi_pc *pc)
686{
687 memset(pc->c, 0, 12);
688 pc->retries = 0;
689 pc->flags = 0;
690 pc->req_xfer = 0;
691 pc->buf = pc->pc_buf;
692 pc->buf_size = IDETAPE_PC_BUFFER_SIZE;
693 pc->bh = NULL;
694 pc->b_data = NULL;
Bartlomiej Zolnierkiewicz1b06e922008-07-15 21:21:56 +0200695 pc->callback = ide_tape_callback;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200696}
697
Borislav Petkovd236d742008-04-18 00:46:27 +0200698static void idetape_create_request_sense_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100700 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100701 pc->c[0] = REQUEST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 pc->c[4] = 20;
Borislav Petkovd236d742008-04-18 00:46:27 +0200703 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
706static void idetape_init_rq(struct request *rq, u8 cmd)
707{
FUJITA Tomonorie7b241a2008-04-29 09:54:38 +0200708 blk_rq_init(NULL, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200709 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 rq->cmd[0] = cmd;
711}
712
713/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100714 * Generate a new packet command request in front of the request queue, before
715 * the current request, so that it will be processed immediately, on the next
716 * pass through the driver. The function below is called from the request
717 * handling part of the driver (the "bottom" part). Safe storage for the request
718 * should be allocated with ide_tape_next_{pc,rq}_storage() prior to that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100720 * Memory for those requests is pre-allocated at initialization time, and is
721 * limited to IDETAPE_PC_STACK requests. We assume that we have enough space for
722 * the maximum possible number of inter-dependent packet commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100724 * The higher level of the driver - The ioctl handler and the character device
725 * handling functions should queue request to the lower level part and wait for
726 * their completion using idetape_queue_pc_tail or idetape_queue_rw_tail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 */
Borislav Petkovd236d742008-04-18 00:46:27 +0200728static void idetape_queue_pc_head(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100729 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 struct ide_tape_obj *tape = drive->driver_data;
732
733 idetape_init_rq(rq, REQ_IDETAPE_PC1);
Bartlomiej Zolnierkiewicze8a96aa2008-07-15 21:21:41 +0200734 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 rq->buffer = (char *) pc;
736 rq->rq_disk = tape->disk;
FUJITA Tomonori63f5abb2008-07-15 21:21:51 +0200737 ide_do_drive_cmd(drive, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
740/*
741 * idetape_retry_pc is called when an error was detected during the
742 * last packet command. We queue a request sense packet command in
743 * the head of the request list.
744 */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200745static void idetape_retry_pc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200748 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100751 (void)ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 pc = idetape_next_pc_storage(drive);
753 rq = idetape_next_rq_storage(drive);
754 idetape_create_request_sense_cmd(pc);
Borislav Petkov346331f2008-04-18 00:46:26 +0200755 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 idetape_queue_pc_head(drive, pc, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100760 * Postpone the current request so that ide.c will be able to service requests
761 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100763static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
765 idetape_tape_t *tape = drive->driver_data;
766
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100767 debug_log(DBG_PROCS, "Enter %s\n", __func__);
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100770 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200773static void ide_tape_handle_dsc(ide_drive_t *drive)
774{
775 idetape_tape_t *tape = drive->driver_data;
776
777 /* Media access command */
778 tape->dsc_polling_start = jiffies;
779 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
780 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
781 /* Allow ide.c to handle other requests */
782 idetape_postpone_request(drive);
783}
784
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200785static void ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
786 unsigned int bcount, int write)
787{
788 if (write)
789 idetape_output_buffers(drive, pc, bcount);
790 else
791 idetape_input_buffers(drive, pc, bcount);
792}
Borislav Petkova1efc852008-02-06 02:57:52 +0100793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794/*
Borislav Petkova1efc852008-02-06 02:57:52 +0100795 * This is the usual interrupt handler which will be called during a packet
796 * command. We will transfer some of the data (as requested by the drive) and
797 * will re-point interrupt handler to us. When data transfer is finished, we
798 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100799 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100801static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 ide_hwif_t *hwif = drive->hwif;
804 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200805 struct ide_atapi_pc *pc = tape->pc;
Borislav Petkova1efc852008-02-06 02:57:52 +0100806 xfer_func_t *xferfunc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 unsigned int temp;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100808 u16 bcount;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100809 u8 stat, ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +0200811 debug_log(DBG_PC_INTR, "Enter %s - interrupt handler\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 /* Clear the interrupt */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100814 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Borislav Petkov346331f2008-04-18 00:46:26 +0200816 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200817 if (hwif->dma_ops->dma_end(drive) || (stat & ERR_STAT)) {
Borislav Petkov346331f2008-04-18 00:46:26 +0200818 pc->flags |= PC_FLAG_DMA_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 } else {
Borislav Petkovd236d742008-04-18 00:46:27 +0200820 pc->xferred = pc->req_xfer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 idetape_update_buffers(pc);
822 }
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +0200823 debug_log(DBG_PC_INTR, "%s: DMA finished\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825
826 /* No more interrupts */
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100827 if ((stat & DRQ_STAT) == 0) {
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +0200828 debug_log(DBG_PC_INTR, "Packet command completed, %d bytes"
Borislav Petkovd236d742008-04-18 00:46:27 +0200829 " transferred\n", pc->xferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Borislav Petkov346331f2008-04-18 00:46:26 +0200831 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Bartlomiej Zolnierkiewicz87429bd2008-07-15 21:21:53 +0200832 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Borislav Petkov90699ce2008-02-02 19:56:50 +0100834 if ((stat & ERR_STAT) && pc->c[0] == REQUEST_SENSE)
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100835 stat &= ~ERR_STAT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200836 if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR)) {
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100837 /* Error detected */
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +0200838 debug_log(DBG_PC_INTR, "%s: I/O error\n", drive->name);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100839
Borislav Petkov90699ce2008-02-02 19:56:50 +0100840 if (pc->c[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz568ca9272008-07-15 21:21:54 +0200841 printk(KERN_ERR "%s: I/O error in request sense"
842 " command\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return ide_do_reset(drive);
844 }
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +0200845 debug_log(DBG_PC_INTR, "[cmd %x]: check condition\n",
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100846 pc->c[0]);
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /* Retry operation */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200849 idetape_retry_pc(drive);
850 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 pc->error = 0;
Borislav Petkov346331f2008-04-18 00:46:26 +0200853 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) &&
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100854 (stat & SEEK_STAT) == 0) {
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200855 ide_tape_handle_dsc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return ide_stopped;
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /* Command finished - Call the callback function */
Bartlomiej Zolnierkiewicz1b06e922008-07-15 21:21:56 +0200859 pc->callback(drive);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200860 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200862
863 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
864 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Bartlomiej Zolnierkiewicz568ca9272008-07-15 21:21:54 +0200865 printk(KERN_ERR "%s: The device wants to issue more interrupts "
866 "in DMA mode\n", drive->name);
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100867 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return ide_do_reset(drive);
869 }
870 /* Get the number of bytes to transfer on this interrupt. */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200871 bcount = (hwif->INB(hwif->io_ports.lbah_addr) << 8) |
872 hwif->INB(hwif->io_ports.lbam_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200874 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100876 if (ireason & CD) {
Bartlomiej Zolnierkiewicz568ca9272008-07-15 21:21:54 +0200877 printk(KERN_ERR "%s: CoD != 0 in %s\n", drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return ide_do_reset(drive);
879 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200880 if (((ireason & IO) == IO) == !!(pc->flags & PC_FLAG_WRITING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* Hopefully, we will never get here */
Bartlomiej Zolnierkiewicz568ca9272008-07-15 21:21:54 +0200882 printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
883 "to %s!\n", drive->name,
884 (ireason & IO) ? "Write" : "Read",
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100885 (ireason & IO) ? "Read" : "Write");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return ide_do_reset(drive);
887 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200888 if (!(pc->flags & PC_FLAG_WRITING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /* Reading - Check that we have enough space */
Borislav Petkovd236d742008-04-18 00:46:27 +0200890 temp = pc->xferred + bcount;
891 if (temp > pc->req_xfer) {
892 if (temp > pc->buf_size) {
Bartlomiej Zolnierkiewicz568ca9272008-07-15 21:21:54 +0200893 printk(KERN_ERR "%s: The device wants to send "
894 "us more data than expected - "
895 "discarding data\n",
896 drive->name);
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200897 ide_pad_transfer(drive, 0, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100898 ide_set_handler(drive, &idetape_pc_intr,
899 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return ide_started;
901 }
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +0200902 debug_log(DBG_PC_INTR, "The device wants to send us more "
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100903 "data than expected - allowing transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200905 xferfunc = hwif->input_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 } else {
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200907 xferfunc = hwif->output_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
Borislav Petkova1efc852008-02-06 02:57:52 +0100909
910 if (pc->bh)
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200911 ide_tape_io_buffers(drive, pc, bcount,
912 !!(pc->flags & PC_FLAG_WRITING));
Borislav Petkova1efc852008-02-06 02:57:52 +0100913 else
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200914 xferfunc(drive, NULL, pc->cur_pos, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* Update the current position */
Borislav Petkovd236d742008-04-18 00:46:27 +0200917 pc->xferred += bcount;
918 pc->cur_pos += bcount;
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100919
Bartlomiej Zolnierkiewicz3e421d32008-07-15 21:22:01 +0200920 debug_log(DBG_PC_INTR, "[cmd %x] transferred %d bytes on that intr.\n",
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100921 pc->c[0], bcount);
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 /* And set the interrupt handler again */
924 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
925 return ide_started;
926}
927
928/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100929 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100931 * The current Packet Command is available in tape->pc, and will not change
932 * until we finish handling it. Each packet command is associated with a
933 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100935 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100937 * 1. idetape_issue_pc will send the packet command to the drive, and will set
938 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100940 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
941 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100943 * 3. ATAPI Tape media access commands have immediate status with a delayed
944 * process. In case of a successful initiation of a media access packet command,
945 * the DSC bit will be set when the actual execution of the command is finished.
946 * Since the tape drive will not issue an interrupt, we have to poll for this
947 * event. In this case, we define the request as "low priority request" by
948 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
949 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100951 * ide.c will then give higher priority to requests which originate from the
952 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100954 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100956 * 5. In case an error was found, we queue a request sense packet command in
957 * front of the request queue and retry the operation up to
958 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100960 * 6. In case no error was found, or we decided to give up and not to retry
961 * again, the callback function will be called and then we will handle the next
962 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
Bartlomiej Zolnierkiewicz5a7b75a2008-07-15 21:21:57 +0200964static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
965{
Bartlomiej Zolnierkiewicz5a7b75a2008-07-15 21:21:57 +0200966 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5a7b75a2008-07-15 21:21:57 +0200967
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200968 return ide_transfer_pc(drive, tape->pc, idetape_pc_intr,
969 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Borislav Petkovd236d742008-04-18 00:46:27 +0200972static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
973 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Borislav Petkov90699ce2008-02-02 19:56:50 +0100977 if (tape->pc->c[0] == REQUEST_SENSE &&
978 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
980 "Two request sense in serial were issued\n");
981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Borislav Petkov90699ce2008-02-02 19:56:50 +0100983 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 tape->failed_pc = pc;
985 /* Set the current packet command */
986 tape->pc = pc;
987
988 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200989 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100991 * We will "abort" retrying a packet command in case legitimate
992 * error code was received (crossing a filemark, or end of the
993 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200995 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100996 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 tape->sense_key == 2 && tape->asc == 4 &&
998 (tape->ascq == 1 || tape->ascq == 8))) {
999 printk(KERN_ERR "ide-tape: %s: I/O error, "
1000 "pc = %2x, key = %2x, "
1001 "asc = %2x, ascq = %2x\n",
1002 tape->name, pc->c[0],
1003 tape->sense_key, tape->asc,
1004 tape->ascq);
1005 }
1006 /* Giving up */
1007 pc->error = IDETAPE_ERROR_GENERAL;
1008 }
1009 tape->failed_pc = NULL;
Bartlomiej Zolnierkiewicz1b06e922008-07-15 21:21:56 +02001010 pc->callback(drive);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +02001011 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001013 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +02001017 return ide_issue_pc(drive, pc, idetape_transfer_pc,
1018 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001021/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +02001022static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
1024 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001025 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001027 /* DBD = 1 - Don't return block descriptors */
1028 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 pc->c[2] = page_code;
1030 /*
1031 * Changed pc->c[3] to 0 (255 will at best return unused info).
1032 *
1033 * For SCSI this byte is defined as subpage instead of high byte
1034 * of length and some IDE drives seem to interpret it this way
1035 * and return an error when 255 is used.
1036 */
1037 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001038 /* We will just discard data in that case */
1039 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +02001041 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +02001043 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 else
Borislav Petkovd236d742008-04-18 00:46:27 +02001045 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001048static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001051 struct ide_atapi_pc *pc = tape->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001052 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001054 stat = ide_read_status(drive);
1055
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001056 if (stat & SEEK_STAT) {
1057 if (stat & ERR_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +01001059 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 printk(KERN_ERR "ide-tape: %s: I/O error, ",
1061 tape->name);
1062 /* Retry operation */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +02001063 idetape_retry_pc(drive);
1064 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 } else {
1068 pc->error = IDETAPE_ERROR_GENERAL;
1069 tape->failed_pc = NULL;
1070 }
Bartlomiej Zolnierkiewicz1b06e922008-07-15 21:21:56 +02001071 pc->callback(drive);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +02001072 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Borislav Petkovd236d742008-04-18 00:46:27 +02001075static void idetape_create_read_cmd(idetape_tape_t *tape,
1076 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001077 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001080 pc->c[0] = READ_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001081 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 pc->bh = bh;
1084 atomic_set(&bh->b_count, 0);
Borislav Petkovd236d742008-04-18 00:46:27 +02001085 pc->buf = NULL;
1086 pc->buf_size = length * tape->blk_size;
1087 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001088 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +02001089 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
Borislav Petkovd236d742008-04-18 00:46:27 +02001092static void idetape_create_write_cmd(idetape_tape_t *tape,
1093 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001094 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001097 pc->c[0] = WRITE_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001098 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001100 pc->flags |= PC_FLAG_WRITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 pc->bh = bh;
1102 pc->b_data = bh->b_data;
1103 pc->b_count = atomic_read(&bh->b_count);
Borislav Petkovd236d742008-04-18 00:46:27 +02001104 pc->buf = NULL;
1105 pc->buf_size = length * tape->blk_size;
1106 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001107 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +02001108 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111static ide_startstop_t idetape_do_request(ide_drive_t *drive,
1112 struct request *rq, sector_t block)
1113{
1114 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001115 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001117 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001119 debug_log(DBG_SENSE, "sector: %ld, nr_sectors: %ld,"
1120 " current_nr_sectors: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 rq->sector, rq->nr_sectors, rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Jens Axboe4aff5e22006-08-10 08:44:47 +02001123 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001124 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +02001126 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 ide_end_request(drive, 0, 0);
1128 return ide_stopped;
1129 }
1130
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001131 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +02001132 if (tape->failed_pc && tape->pc->c[0] == REQUEST_SENSE) {
1133 pc = tape->failed_pc;
1134 goto out;
1135 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (postponed_rq != NULL)
1138 if (rq != postponed_rq) {
1139 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
1140 "Two DSC requests were queued\n");
1141 idetape_end_request(drive, 0, 0);
1142 return ide_stopped;
1143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 tape->postponed_rq = NULL;
1146
1147 /*
1148 * If the tape is still busy, postpone our request and service
1149 * the other device meanwhile.
1150 */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001151 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 if (!drive->dsc_overlap && !(rq->cmd[0] & REQ_IDETAPE_PC2))
Borislav Petkov346331f2008-04-18 00:46:26 +02001154 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 if (drive->post_reset == 1) {
Borislav Petkov346331f2008-04-18 00:46:26 +02001157 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 drive->post_reset = 0;
1159 }
1160
Borislav Petkov346331f2008-04-18 00:46:26 +02001161 if (!test_and_clear_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags) &&
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001162 (stat & SEEK_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (postponed_rq == NULL) {
1164 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001165 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
1167 } else if (time_after(jiffies, tape->dsc_timeout)) {
1168 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
1169 tape->name);
1170 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1171 idetape_media_access_finished(drive);
1172 return ide_stopped;
1173 } else {
1174 return ide_do_reset(drive);
1175 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001176 } else if (time_after(jiffies,
1177 tape->dsc_polling_start +
1178 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001179 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 idetape_postpone_request(drive);
1181 return ide_stopped;
1182 }
1183 if (rq->cmd[0] & REQ_IDETAPE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001185 idetape_create_read_cmd(tape, pc, rq->current_nr_sectors,
1186 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 goto out;
1188 }
1189 if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001191 idetape_create_write_cmd(tape, pc, rq->current_nr_sectors,
1192 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 goto out;
1194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (rq->cmd[0] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +02001196 pc = (struct ide_atapi_pc *) rq->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 rq->cmd[0] &= ~(REQ_IDETAPE_PC1);
1198 rq->cmd[0] |= REQ_IDETAPE_PC2;
1199 goto out;
1200 }
1201 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1202 idetape_media_access_finished(drive);
1203 return ide_stopped;
1204 }
1205 BUG();
1206out:
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +02001207 if (test_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags))
1208 pc->flags |= PC_FLAG_DRQ_INTERRUPT;
1209
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001210 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213/*
Borislav Petkov41aa1702008-04-27 15:38:32 +02001214 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +02001215 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001216 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 *
Borislav Petkov41aa1702008-04-27 15:38:32 +02001218 * It returns a pointer to the newly allocated buffer, or NULL in case of
1219 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001221static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
1222 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001224 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +02001225 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001226 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 char *b_data = NULL;
1228
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001229 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1230 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (bh == NULL)
1232 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001233
1234 order = fls(pages) - 1;
1235 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001236 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001238 b_allocd = (1 << order) * PAGE_SIZE;
1239 pages &= (order-1);
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001242 memset(bh->b_data, 0, b_allocd);
1243 bh->b_reqnext = NULL;
1244 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1246
Borislav Petkov41aa1702008-04-27 15:38:32 +02001247 while (pages) {
1248 order = fls(pages) - 1;
1249 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001250 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001252 b_allocd = (1 << order) * PAGE_SIZE;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001255 memset(b_data, 0, b_allocd);
1256
1257 /* newly allocated page frames below buffer header or ...*/
1258 if (bh->b_data == b_data + b_allocd) {
1259 bh->b_size += b_allocd;
1260 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001262 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 continue;
1264 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001265 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001267 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001269 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 continue;
1271 }
1272 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001273 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1274 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001275 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 goto abort;
1277 }
1278 bh->b_reqnext = NULL;
1279 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001280 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1282 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001283
1284 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 bh->b_size -= tape->excess_bh_size;
1288 if (full)
1289 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001290 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001292 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return NULL;
1294}
1295
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001296static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +02001297 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 struct idetape_bh *bh = tape->bh;
1300 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001301 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001305 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1306 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001307 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001309 count = min((unsigned int)
1310 (bh->b_size - atomic_read(&bh->b_count)),
1311 (unsigned int)n);
1312 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1313 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001314 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 n -= count;
1316 atomic_add(count, &bh->b_count);
1317 buf += count;
1318 if (atomic_read(&bh->b_count) == bh->b_size) {
1319 bh = bh->b_reqnext;
1320 if (bh)
1321 atomic_set(&bh->b_count, 0);
1322 }
1323 }
1324 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001325 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001328static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001329 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 struct idetape_bh *bh = tape->bh;
1332 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001333 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001337 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1338 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001339 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001342 if (copy_to_user(buf, tape->b_data, count))
1343 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 n -= count;
1345 tape->b_data += count;
1346 tape->b_count -= count;
1347 buf += count;
1348 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001349 bh = bh->b_reqnext;
1350 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (bh) {
1352 tape->b_data = bh->b_data;
1353 tape->b_count = atomic_read(&bh->b_count);
1354 }
1355 }
1356 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001357 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001360static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001362 struct idetape_bh *bh = tape->merge_bh;
1363 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001364
Borislav Petkov54abf372008-02-06 02:57:52 +01001365 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 atomic_set(&bh->b_count, 0);
1367 else {
1368 tape->b_data = bh->b_data;
1369 tape->b_count = atomic_read(&bh->b_count);
1370 }
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001374 * Write a filemark if write_filemark=1. Flush the device buffers without
1375 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001377static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001378 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001381 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001383 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
Borislav Petkovd236d742008-04-18 00:46:27 +02001386static void idetape_create_test_unit_ready_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001389 pc->c[0] = TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
1392/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001393 * We add a special packet command request to the tail of the request queue, and
1394 * wait for it to be serviced. This is not to be called from within the request
1395 * handling part of the driver! We allocate here data on the stack and it is
1396 * valid until the request is finished. This is not the case for the bottom part
1397 * of the driver, where we are always leaving the functions to wait for an
1398 * interrupt or a timer event.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001400 * From the bottom part of the driver, we should allocate safe memory using
1401 * idetape_next_pc_storage() and ide_tape_next_rq_storage(), and add the request
1402 * to the request list without waiting for it to be serviced! In that case, we
1403 * usually use idetape_queue_pc_head().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 */
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001405static int idetape_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407 struct ide_tape_obj *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001408 struct request *rq;
1409 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001411 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1412 rq->cmd_type = REQ_TYPE_SPECIAL;
1413 rq->cmd[0] = REQ_IDETAPE_PC1;
1414 rq->buffer = (char *)pc;
1415 error = blk_execute_rq(drive->queue, tape->disk, rq, 0);
1416 blk_put_request(rq);
1417 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Borislav Petkovd236d742008-04-18 00:46:27 +02001420static void idetape_create_load_unload_cmd(ide_drive_t *drive,
1421 struct ide_atapi_pc *pc, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
1423 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001424 pc->c[0] = START_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 pc->c[4] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001426 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
1429static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1430{
1431 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001432 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 int load_attempted = 0;
1434
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001435 /* Wait for the tape to become ready */
Borislav Petkov346331f2008-04-18 00:46:26 +02001436 set_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 timeout += jiffies;
1438 while (time_before(jiffies, timeout)) {
1439 idetape_create_test_unit_ready_cmd(&pc);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001440 if (!idetape_queue_pc_tail(drive, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return 0;
1442 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001443 || (tape->asc == 0x3A)) {
1444 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 if (load_attempted)
1446 return -ENOMEDIUM;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001447 idetape_create_load_unload_cmd(drive, &pc,
1448 IDETAPE_LU_LOAD_MASK);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001449 idetape_queue_pc_tail(drive, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 load_attempted = 1;
1451 /* not about to be ready */
1452 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1453 (tape->ascq == 1 || tape->ascq == 8)))
1454 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001455 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457 return -EIO;
1458}
1459
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001460static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Borislav Petkovd236d742008-04-18 00:46:27 +02001462 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 int rc;
1464
1465 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001466 rc = idetape_queue_pc_tail(drive, &pc);
1467 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return rc;
1469 idetape_wait_ready(drive, 60 * 5 * HZ);
1470 return 0;
1471}
1472
Borislav Petkovd236d742008-04-18 00:46:27 +02001473static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001476 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001477 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001480static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001483 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 int position;
1485
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001486 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 idetape_create_read_position_cmd(&pc);
1489 if (idetape_queue_pc_tail(drive, &pc))
1490 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001491 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return position;
1493}
1494
Borislav Petkovd236d742008-04-18 00:46:27 +02001495static void idetape_create_locate_cmd(ide_drive_t *drive,
1496 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001497 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001500 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001502 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001504 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Borislav Petkovd236d742008-04-18 00:46:27 +02001507static int idetape_create_prevent_cmd(ide_drive_t *drive,
1508 struct ide_atapi_pc *pc, int prevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
1510 idetape_tape_t *tape = drive->driver_data;
1511
Borislav Petkovb6422012008-02-02 19:56:49 +01001512 /* device supports locking according to capabilities page */
1513 if (!(tape->caps[6] & 0x01))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return 0;
1515
1516 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001517 pc->c[0] = ALLOW_MEDIUM_REMOVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 pc->c[4] = prevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return 1;
1520}
1521
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001522static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
1524 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Borislav Petkov54abf372008-02-06 02:57:52 +01001526 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001527 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Borislav Petkov83042b22008-04-27 15:38:27 +02001529 clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001530 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001531 if (tape->merge_bh != NULL) {
1532 ide_tape_kfree_buffer(tape);
1533 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
1535
Borislav Petkov54abf372008-02-06 02:57:52 +01001536 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001540 * Position the tape to the requested block using the LOCATE packet command.
1541 * A READ POSITION command is then issued to check where we are positioned. Like
1542 * all higher level operations, we queue the commands at the tail of the request
1543 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001545static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1546 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 idetape_tape_t *tape = drive->driver_data;
1549 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001550 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Borislav Petkov54abf372008-02-06 02:57:52 +01001552 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001553 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 idetape_wait_ready(drive, 60 * 5 * HZ);
1555 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
1556 retval = idetape_queue_pc_tail(drive, &pc);
1557 if (retval)
1558 return (retval);
1559
1560 idetape_create_read_position_cmd(&pc);
1561 return (idetape_queue_pc_tail(drive, &pc));
1562}
1563
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001564static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001565 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
1567 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 int seek, position;
1569
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001570 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (restore_position) {
1572 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001573 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001575 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001576 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 return;
1578 }
1579 }
1580}
1581
1582/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001583 * Generate a read/write request for the block device interface and wait for it
1584 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001586static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1587 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001590 struct request *rq;
1591 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001593 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1594
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001595 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1596 rq->cmd_type = REQ_TYPE_SPECIAL;
1597 rq->cmd[0] = cmd;
1598 rq->rq_disk = tape->disk;
1599 rq->special = (void *)bh;
1600 rq->sector = tape->first_frame;
1601 rq->nr_sectors = blocks;
1602 rq->current_nr_sectors = blocks;
1603 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1604
1605 errors = rq->errors;
1606 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1607 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1610 return 0;
1611
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001612 if (tape->merge_bh)
1613 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001614 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001616 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Borislav Petkovd236d742008-04-18 00:46:27 +02001619static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
1621 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001622 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001623 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001624 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
Borislav Petkovd236d742008-04-18 00:46:27 +02001627static void idetape_create_rewind_cmd(ide_drive_t *drive,
1628 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001631 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001632 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Borislav Petkovd236d742008-04-18 00:46:27 +02001635static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
1637 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001638 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001640 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Borislav Petkovd236d742008-04-18 00:46:27 +02001643static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
1645 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001646 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001647 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001649 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Borislav Petkov97c566c2008-04-27 15:38:25 +02001652/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001653static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
1655 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001657 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001659 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001660 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
Borislav Petkovd9df9372008-04-27 15:38:34 +02001663static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
1665 idetape_tape_t *tape = drive->driver_data;
1666 int blocks, min;
1667 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001668
Borislav Petkov54abf372008-02-06 02:57:52 +01001669 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001670 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001671 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return;
1673 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001674 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001676 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001678 if (tape->merge_bh_size) {
1679 blocks = tape->merge_bh_size / tape->blk_size;
1680 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 unsigned int i;
1682
1683 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001684 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001685 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 bh = tape->bh->b_reqnext;
1687 while (bh) {
1688 atomic_set(&bh->b_count, 0);
1689 bh = bh->b_reqnext;
1690 }
1691 bh = tape->bh;
1692 while (i) {
1693 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001694 printk(KERN_INFO "ide-tape: bug,"
1695 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 break;
1697 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001698 min = min(i, (unsigned int)(bh->b_size -
1699 atomic_read(&bh->b_count)));
1700 memset(bh->b_data + atomic_read(&bh->b_count),
1701 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 atomic_add(min, &bh->b_count);
1703 i -= min;
1704 bh = bh->b_reqnext;
1705 }
1706 }
1707 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001708 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001710 if (tape->merge_bh != NULL) {
1711 ide_tape_kfree_buffer(tape);
1712 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001714 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
Borislav Petkov83042b22008-04-27 15:38:27 +02001717static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001723 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1724 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001725 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 idetape_flush_tape_buffers(drive);
1727 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001728 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001729 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001730 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001731 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001733 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1734 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001736 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001739 * Issue a read 0 command to ensure that DSC handshake is
1740 * switched from completion mode to buffer available mode.
1741 * No point in issuing this if DSC overlap isn't supported, some
1742 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 */
1744 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001745 bytes_read = idetape_queue_rw_tail(drive,
1746 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001747 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001749 ide_tape_kfree_buffer(tape);
1750 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001751 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return bytes_read;
1753 }
1754 }
1755 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return 0;
1758}
1759
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001760/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001761static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
1763 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001765 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001767 /* If we are at a filemark, return a read length of 0 */
Borislav Petkov346331f2008-04-18 00:46:26 +02001768 if (test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return 0;
1770
Borislav Petkov83042b22008-04-27 15:38:27 +02001771 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001773 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001774 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
1776
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001777static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 idetape_tape_t *tape = drive->driver_data;
1780 struct idetape_bh *bh;
1781 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 while (bcount) {
1784 unsigned int count;
1785
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001786 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001787 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001789 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001791 atomic_set(&bh->b_count,
1792 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1794 count -= atomic_read(&bh->b_count);
1795 bh = bh->b_reqnext;
1796 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001797 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001798 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
1800}
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001803 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1804 * currently support only one partition.
1805 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001806static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001809 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001810 idetape_tape_t *tape;
1811 tape = drive->driver_data;
1812
1813 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 idetape_create_rewind_cmd(drive, &pc);
1816 retval = idetape_queue_pc_tail(drive, &pc);
1817 if (retval)
1818 return retval;
1819
1820 idetape_create_read_position_cmd(&pc);
1821 retval = idetape_queue_pc_tail(drive, &pc);
1822 if (retval)
1823 return retval;
1824 return 0;
1825}
1826
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001827/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001828static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1829 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
1831 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 void __user *argp = (void __user *)arg;
1833
Borislav Petkovd59823f2008-02-02 19:56:51 +01001834 struct idetape_config {
1835 int dsc_rw_frequency;
1836 int dsc_media_access_frequency;
1837 int nr_stages;
1838 } config;
1839
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001840 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001843 case 0x0340:
1844 if (copy_from_user(&config, argp, sizeof(config)))
1845 return -EFAULT;
1846 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001847 break;
1848 case 0x0350:
1849 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001850 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001851 if (copy_to_user(argp, &config, sizeof(config)))
1852 return -EFAULT;
1853 break;
1854 default:
1855 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
1857 return 0;
1858}
1859
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001860static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1861 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
1863 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001864 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001865 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001866 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 if (mt_count == 0)
1869 return 0;
1870 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001871 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001873 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875
Borislav Petkov54abf372008-02-06 02:57:52 +01001876 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001877 tape->merge_bh_size = 0;
Borislav Petkov346331f2008-04-18 00:46:26 +02001878 if (test_and_clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001880 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001884 case MTFSF:
1885 case MTBSF:
1886 idetape_create_space_cmd(&pc, mt_count - count,
1887 IDETAPE_SPACE_OVER_FILEMARK);
1888 return idetape_queue_pc_tail(drive, &pc);
1889 case MTFSFM:
1890 case MTBSFM:
1891 if (!sprev)
1892 return -EIO;
1893 retval = idetape_space_over_filemarks(drive, MTFSF,
1894 mt_count - count);
1895 if (retval)
1896 return retval;
1897 count = (MTBSFM == mt_op ? 1 : -1);
1898 return idetape_space_over_filemarks(drive, MTFSF, count);
1899 default:
1900 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1901 mt_op);
1902 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904}
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001907 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001909 * The tape is optimized to maximize throughput when it is transferring an
1910 * integral number of the "continuous transfer limit", which is a parameter of
1911 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001913 * As of version 1.3 of the driver, the character device provides an abstract
1914 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1915 * same backup/restore procedure is supported. The driver will internally
1916 * convert the requests to the recommended transfer unit, so that an unmatch
1917 * between the user's block size to the recommended size will only result in a
1918 * (slightly) increased driver overhead, but will no longer hit performance.
1919 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001921static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1922 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
1924 struct ide_tape_obj *tape = ide_tape_f(file);
1925 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001926 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001927 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001928 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001930 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Borislav Petkov54abf372008-02-06 02:57:52 +01001932 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkov346331f2008-04-18 00:46:26 +02001933 if (test_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001934 if (count > tape->blk_size &&
1935 (count % tape->blk_size) == 0)
1936 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001938 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001939 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return rc;
1941 if (count == 0)
1942 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001943 if (tape->merge_bh_size) {
1944 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001945 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001946 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001947 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001949 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 count -= actually_read;
1951 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001952 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001953 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (bytes_read <= 0)
1955 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001956 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001957 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 buf += bytes_read;
1959 count -= bytes_read;
1960 actually_read += bytes_read;
1961 }
1962 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001963 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if (bytes_read <= 0)
1965 goto finish;
1966 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001967 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001968 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001970 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 }
1972finish:
Borislav Petkov346331f2008-04-18 00:46:26 +02001973 if (!actually_read && test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001974 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 idetape_space_over_filemarks(drive, MTFSF, 1);
1977 return 0;
1978 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001979
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001980 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001983static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 size_t count, loff_t *ppos)
1985{
1986 struct ide_tape_obj *tape = ide_tape_f(file);
1987 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001988 ssize_t actually_written = 0;
1989 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001990 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 /* The drive is write protected. */
1993 if (tape->write_prot)
1994 return -EACCES;
1995
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001996 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001999 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
2000 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002001 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002002 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002003 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002005 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002007 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
2008 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01002010 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002011 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002014 * Issue a write 0 command to ensure that DSC handshake is
2015 * switched from completion mode to buffer available mode. No
2016 * point in issuing this if DSC overlap isn't supported, some
2017 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 */
2019 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002020 ssize_t retval = idetape_queue_rw_tail(drive,
2021 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002022 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002024 ide_tape_kfree_buffer(tape);
2025 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01002026 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return retval;
2028 }
2029 }
2030 }
2031 if (count == 0)
2032 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002033 if (tape->merge_bh_size) {
2034 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002035 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002036 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002038 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002039 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002040 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02002041 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002042 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002044 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 count -= actually_written;
2046
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002047 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002048 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002049 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002050 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (retval <= 0)
2052 return (retval);
2053 }
2054 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002055 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002056 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002057 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002058 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002059 buf += tape->buffer_size;
2060 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002061 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002062 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (retval <= 0)
2064 return (retval);
2065 }
2066 if (count) {
2067 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02002068 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002069 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002070 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002072 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002075static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Borislav Petkovd236d742008-04-18 00:46:27 +02002077 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 /* Write a filemark */
2080 idetape_create_write_filemark_cmd(drive, &pc, 1);
2081 if (idetape_queue_pc_tail(drive, &pc)) {
2082 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
2083 return -EIO;
2084 }
2085 return 0;
2086}
2087
2088/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002089 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
2090 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002092 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
2093 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02002094 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002096 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002098 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
2099 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002101static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002104 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002105 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002107 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
2108 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002111 case MTFSF:
2112 case MTFSFM:
2113 case MTBSF:
2114 case MTBSFM:
2115 if (!mt_count)
2116 return 0;
2117 return idetape_space_over_filemarks(drive, mt_op, mt_count);
2118 default:
2119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002123 case MTWEOF:
2124 if (tape->write_prot)
2125 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002126 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002127 for (i = 0; i < mt_count; i++) {
2128 retval = idetape_write_filemark(drive);
2129 if (retval)
2130 return retval;
2131 }
2132 return 0;
2133 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002134 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002135 if (idetape_rewind_tape(drive))
2136 return -EIO;
2137 return 0;
2138 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002139 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002140 idetape_create_load_unload_cmd(drive, &pc,
2141 IDETAPE_LU_LOAD_MASK);
2142 return idetape_queue_pc_tail(drive, &pc);
2143 case MTUNLOAD:
2144 case MTOFFL:
2145 /*
2146 * If door is locked, attempt to unlock before
2147 * attempting to eject.
2148 */
2149 if (tape->door_locked) {
2150 if (idetape_create_prevent_cmd(drive, &pc, 0))
2151 if (!idetape_queue_pc_tail(drive, &pc))
2152 tape->door_locked = DOOR_UNLOCKED;
2153 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002154 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002155 idetape_create_load_unload_cmd(drive, &pc,
2156 !IDETAPE_LU_LOAD_MASK);
2157 retval = idetape_queue_pc_tail(drive, &pc);
2158 if (!retval)
Borislav Petkov346331f2008-04-18 00:46:26 +02002159 clear_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002160 return retval;
2161 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002162 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002163 return idetape_flush_tape_buffers(drive);
2164 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002165 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002166 idetape_create_load_unload_cmd(drive, &pc,
2167 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
2168 return idetape_queue_pc_tail(drive, &pc);
2169 case MTEOM:
2170 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
2171 return idetape_queue_pc_tail(drive, &pc);
2172 case MTERASE:
2173 (void)idetape_rewind_tape(drive);
2174 idetape_create_erase_cmd(&pc);
2175 return idetape_queue_pc_tail(drive, &pc);
2176 case MTSETBLK:
2177 if (mt_count) {
2178 if (mt_count < tape->blk_size ||
2179 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002181 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkov346331f2008-04-18 00:46:26 +02002182 clear_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002183 } else
Borislav Petkov346331f2008-04-18 00:46:26 +02002184 set_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002185 return 0;
2186 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002187 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002188 return idetape_position_tape(drive,
2189 mt_count * tape->user_bs_factor, tape->partition, 0);
2190 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002191 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002192 return idetape_position_tape(drive, 0, mt_count, 0);
2193 case MTFSR:
2194 case MTBSR:
2195 case MTLOCK:
2196 if (!idetape_create_prevent_cmd(drive, &pc, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002198 retval = idetape_queue_pc_tail(drive, &pc);
2199 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002201 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
2202 return 0;
2203 case MTUNLOCK:
2204 if (!idetape_create_prevent_cmd(drive, &pc, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002206 retval = idetape_queue_pc_tail(drive, &pc);
2207 if (retval)
2208 return retval;
2209 tape->door_locked = DOOR_UNLOCKED;
2210 return 0;
2211 default:
2212 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
2213 mt_op);
2214 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 }
2216}
2217
2218/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002219 * Our character device ioctls. General mtio.h magnetic io commands are
2220 * supported here, and not in the corresponding block interface. Our own
2221 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002223static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
2224 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
2226 struct ide_tape_obj *tape = ide_tape_f(file);
2227 ide_drive_t *drive = tape->drive;
2228 struct mtop mtop;
2229 struct mtget mtget;
2230 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002231 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 void __user *argp = (void __user *)arg;
2233
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002234 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Borislav Petkov54abf372008-02-06 02:57:52 +01002236 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02002237 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 idetape_flush_tape_buffers(drive);
2239 }
2240 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002241 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01002242 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002243 position = idetape_read_position(drive);
2244 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 return -EIO;
2246 }
2247 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002248 case MTIOCTOP:
2249 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
2250 return -EFAULT;
2251 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
2252 case MTIOCGET:
2253 memset(&mtget, 0, sizeof(struct mtget));
2254 mtget.mt_type = MT_ISSCSI2;
2255 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
2256 mtget.mt_dsreg =
2257 ((tape->blk_size * tape->user_bs_factor)
2258 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002259
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002260 if (tape->drv_write_prot)
2261 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
2262
2263 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
2264 return -EFAULT;
2265 return 0;
2266 case MTIOCPOS:
2267 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
2268 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
2269 return -EFAULT;
2270 return 0;
2271 default:
2272 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002273 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002274 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
2276}
2277
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002278/*
2279 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
2280 * block size with the reported value.
2281 */
2282static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
2283{
2284 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002285 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002286
2287 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
2288 if (idetape_queue_pc_tail(drive, &pc)) {
2289 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002290 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002291 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
2292 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002293 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002294 }
2295 return;
2296 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002297 tape->blk_size = (pc.buf[4 + 5] << 16) +
2298 (pc.buf[4 + 6] << 8) +
2299 pc.buf[4 + 7];
2300 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002303static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
2305 unsigned int minor = iminor(inode), i = minor & ~0xc0;
2306 ide_drive_t *drive;
2307 idetape_tape_t *tape;
Borislav Petkovd236d742008-04-18 00:46:27 +02002308 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 int retval;
2310
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002311 if (i >= MAX_HWIFS * MAX_DRIVES)
2312 return -ENXIO;
2313
2314 tape = ide_tape_chrdev_get(i);
2315 if (!tape)
2316 return -ENXIO;
2317
2318 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 /*
2321 * We really want to do nonseekable_open(inode, filp); here, but some
2322 * versions of tar incorrectly call lseek on tapes and bail out if that
2323 * fails. So we disallow pread() and pwrite(), but permit lseeks.
2324 */
2325 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
2326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 drive = tape->drive;
2328
2329 filp->private_data = tape;
2330
Borislav Petkov346331f2008-04-18 00:46:26 +02002331 if (test_and_set_bit(IDETAPE_FLAG_BUSY, &tape->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 retval = -EBUSY;
2333 goto out_put_tape;
2334 }
2335
2336 retval = idetape_wait_ready(drive, 60 * HZ);
2337 if (retval) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002338 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2340 goto out_put_tape;
2341 }
2342
2343 idetape_read_position(drive);
Borislav Petkov346331f2008-04-18 00:46:26 +02002344 if (!test_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 (void)idetape_rewind_tape(drive);
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002348 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 /* Set write protect flag if device is opened as read-only. */
2351 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2352 tape->write_prot = 1;
2353 else
2354 tape->write_prot = tape->drv_write_prot;
2355
2356 /* Make sure drive isn't write protected if user wants to write. */
2357 if (tape->write_prot) {
2358 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2359 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002360 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 retval = -EROFS;
2362 goto out_put_tape;
2363 }
2364 }
2365
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002366 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01002367 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (idetape_create_prevent_cmd(drive, &pc, 1)) {
2369 if (!idetape_queue_pc_tail(drive, &pc)) {
2370 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2371 tape->door_locked = DOOR_LOCKED;
2372 }
2373 }
2374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return 0;
2376
2377out_put_tape:
2378 ide_tape_put(tape);
2379 return retval;
2380}
2381
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002382static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383{
2384 idetape_tape_t *tape = drive->driver_data;
2385
Borislav Petkovd9df9372008-04-27 15:38:34 +02002386 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002387 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2388 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002389 idetape_pad_zeros(drive, tape->blk_size *
2390 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002391 ide_tape_kfree_buffer(tape);
2392 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394 idetape_write_filemark(drive);
2395 idetape_flush_tape_buffers(drive);
2396 idetape_flush_tape_buffers(drive);
2397}
2398
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002399static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
2401 struct ide_tape_obj *tape = ide_tape_f(filp);
2402 ide_drive_t *drive = tape->drive;
Borislav Petkovd236d742008-04-18 00:46:27 +02002403 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 unsigned int minor = iminor(inode);
2405
2406 lock_kernel();
2407 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002408
2409 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Borislav Petkov54abf372008-02-06 02:57:52 +01002411 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002413 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002415 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002417
Borislav Petkov346331f2008-04-18 00:46:26 +02002418 if (minor < 128 && test_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002420 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 if (tape->door_locked == DOOR_LOCKED) {
2422 if (idetape_create_prevent_cmd(drive, &pc, 0)) {
2423 if (!idetape_queue_pc_tail(drive, &pc))
2424 tape->door_locked = DOOR_UNLOCKED;
2425 }
2426 }
2427 }
Borislav Petkov346331f2008-04-18 00:46:26 +02002428 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 ide_tape_put(tape);
2430 unlock_kernel();
2431 return 0;
2432}
2433
2434/*
Borislav Petkov71071b82008-02-06 02:57:53 +01002435 * check the contents of the ATAPI IDENTIFY command results. We return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002437 * 1 - If the tape can be supported by us, based on the information we have so
2438 * far.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002440 * 0 - If this tape driver is not currently supported by us.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 */
Borislav Petkov71071b82008-02-06 02:57:53 +01002442static int idetape_identify_device(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Borislav Petkov71071b82008-02-06 02:57:53 +01002444 u8 gcw[2], protocol, device_type, removable, packet_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 if (drive->id_read == 0)
2447 return 1;
2448
Borislav Petkov71071b82008-02-06 02:57:53 +01002449 *((unsigned short *) &gcw) = drive->id->config;
2450
2451 protocol = (gcw[1] & 0xC0) >> 6;
2452 device_type = gcw[1] & 0x1F;
2453 removable = !!(gcw[0] & 0x80);
2454 packet_size = gcw[0] & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 /* Check that we can support this device */
Borislav Petkov71071b82008-02-06 02:57:53 +01002457 if (protocol != 2)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002458 printk(KERN_ERR "ide-tape: Protocol (0x%02x) is not ATAPI\n",
Borislav Petkov71071b82008-02-06 02:57:53 +01002459 protocol);
2460 else if (device_type != 1)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002461 printk(KERN_ERR "ide-tape: Device type (0x%02x) is not set "
Borislav Petkov71071b82008-02-06 02:57:53 +01002462 "to tape\n", device_type);
2463 else if (!removable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 printk(KERN_ERR "ide-tape: The removable flag is not set\n");
Borislav Petkov71071b82008-02-06 02:57:53 +01002465 else if (packet_size != 0) {
Borislav Petkov24d57f82008-02-06 02:57:54 +01002466 printk(KERN_ERR "ide-tape: Packet size (0x%02x) is not 12"
2467 " bytes\n", packet_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 } else
2469 return 1;
2470 return 0;
2471}
2472
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002473static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002476 struct ide_atapi_pc pc;
Borislav Petkov41f81d542008-02-06 02:57:52 +01002477 char fw_rev[6], vendor_id[10], product_id[18];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 idetape_create_inquiry_cmd(&pc);
2480 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002481 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2482 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 return;
2484 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002485 memcpy(vendor_id, &pc.buf[8], 8);
2486 memcpy(product_id, &pc.buf[16], 16);
2487 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002488
Borislav Petkov41f81d542008-02-06 02:57:52 +01002489 ide_fixstring(vendor_id, 10, 0);
2490 ide_fixstring(product_id, 18, 0);
2491 ide_fixstring(fw_rev, 6, 0);
2492
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002493 printk(KERN_INFO "ide-tape: %s <-> %s: %s %s rev %s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002494 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495}
2496
2497/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002498 * Ask the tape about its various parameters. In particular, we will adjust our
2499 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002501static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
2503 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002504 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002505 u8 *caps;
2506 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
2509 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002510 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2511 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002512 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002513 put_unaligned(52, (u16 *)&tape->caps[12]);
2514 put_unaligned(540, (u16 *)&tape->caps[14]);
2515 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 return;
2517 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002518 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Borislav Petkovb6422012008-02-02 19:56:49 +01002520 /* convert to host order and save for later use */
2521 speed = be16_to_cpu(*(u16 *)&caps[14]);
2522 max_speed = be16_to_cpu(*(u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Borislav Petkovb6422012008-02-02 19:56:49 +01002524 put_unaligned(max_speed, (u16 *)&caps[8]);
2525 put_unaligned(be16_to_cpu(*(u16 *)&caps[12]), (u16 *)&caps[12]);
2526 put_unaligned(speed, (u16 *)&caps[14]);
2527 put_unaligned(be16_to_cpu(*(u16 *)&caps[16]), (u16 *)&caps[16]);
2528
2529 if (!speed) {
2530 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2531 "(assuming 650KB/sec)\n", drive->name);
2532 put_unaligned(650, (u16 *)&caps[14]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002534 if (!max_speed) {
2535 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2536 "(assuming 650KB/sec)\n", drive->name);
2537 put_unaligned(650, (u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 }
2539
Borislav Petkovb6422012008-02-02 19:56:49 +01002540 memcpy(&tape->caps, caps, 20);
2541 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002542 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002543 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002544 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
2546
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002547#ifdef CONFIG_IDE_PROC_FS
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002548static void idetape_add_settings(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
2550 idetape_tape_t *tape = drive->driver_data;
2551
Borislav Petkovb6422012008-02-02 19:56:49 +01002552 ide_add_setting(drive, "buffer", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2553 1, 2, (u16 *)&tape->caps[16], NULL);
Borislav Petkovb6422012008-02-02 19:56:49 +01002554 ide_add_setting(drive, "speed", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2555 1, 1, (u16 *)&tape->caps[14], NULL);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002556 ide_add_setting(drive, "buffer_size", SETTING_READ, TYPE_INT, 0, 0xffff,
2557 1, 1024, &tape->buffer_size, NULL);
Borislav Petkov54bb2072008-02-06 02:57:52 +01002558 ide_add_setting(drive, "tdsc", SETTING_RW, TYPE_INT, IDETAPE_DSC_RW_MIN,
2559 IDETAPE_DSC_RW_MAX, 1000, HZ, &tape->best_dsc_rw_freq,
2560 NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002561 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1,
2562 1, &drive->dsc_overlap, NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002563 ide_add_setting(drive, "avg_speed", SETTING_READ, TYPE_INT, 0, 0xffff,
2564 1, 1, &tape->avg_speed, NULL);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002565 ide_add_setting(drive, "debug_mask", SETTING_RW, TYPE_INT, 0, 0xffff, 1,
2566 1, &tape->debug_mask, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002568#else
2569static inline void idetape_add_settings(ide_drive_t *drive) { ; }
2570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
2572/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002573 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002575 * 1. Initialize our various state variables.
2576 * 2. Ask the tape for its capabilities.
2577 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2578 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002580 * Note that at this point ide.c already assigned us an irq, so that we can
2581 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002583static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Borislav Petkov83042b22008-04-27 15:38:27 +02002585 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002587 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002588 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002589 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Borislav Petkov54bb2072008-02-06 02:57:52 +01002591 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002593 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2594 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2595 tape->name);
2596 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 /* Seagate Travan drives do not support DSC overlap. */
2599 if (strstr(drive->id->model, "Seagate STT3401"))
2600 drive->dsc_overlap = 0;
2601 tape->minor = minor;
2602 tape->name[0] = 'h';
2603 tape->name[1] = 't';
2604 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002605 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 tape->pc = tape->pc_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 *((unsigned short *) &gcw) = drive->id->config;
Borislav Petkov71071b82008-02-06 02:57:53 +01002608
2609 /* Command packet DRQ type */
2610 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkov346331f2008-04-18 00:46:26 +02002611 set_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 idetape_get_inquiry_results(drive);
2614 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002615 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002617 tape->buffer_size = *ctl * tape->blk_size;
2618 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002620 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002621 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002623 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002624 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002625 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002626 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002627 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 }
2629
Borislav Petkov83042b22008-04-27 15:38:27 +02002630 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002631 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Borislav Petkovf73850a2008-04-27 15:38:33 +02002633 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002636 * Ensure that the number we got makes sense; limit it within
2637 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002639 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2640 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002642 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002643 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002644 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2645 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002646 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 drive->using_dma ? ", DMA":"");
2648
2649 idetape_add_settings(drive);
2650}
2651
Russell King4031bbe2006-01-06 11:41:00 +00002652static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
2654 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002656 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
2658 ide_unregister_region(tape->disk);
2659
2660 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661}
2662
2663static void ide_tape_release(struct kref *kref)
2664{
2665 struct ide_tape_obj *tape = to_ide_tape(kref);
2666 ide_drive_t *drive = tape->drive;
2667 struct gendisk *g = tape->disk;
2668
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002669 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 drive->dsc_overlap = 0;
2672 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002673 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002674 device_destroy(idetape_sysfs_class,
2675 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 idetape_devs[tape->minor] = NULL;
2677 g->private_data = NULL;
2678 put_disk(g);
2679 kfree(tape);
2680}
2681
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002682#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683static int proc_idetape_read_name
2684 (char *page, char **start, off_t off, int count, int *eof, void *data)
2685{
2686 ide_drive_t *drive = (ide_drive_t *) data;
2687 idetape_tape_t *tape = drive->driver_data;
2688 char *out = page;
2689 int len;
2690
2691 len = sprintf(out, "%s\n", tape->name);
2692 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2693}
2694
2695static ide_proc_entry_t idetape_proc[] = {
2696 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2697 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2698 { NULL, 0, NULL, NULL }
2699};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700#endif
2701
Russell King4031bbe2006-01-06 11:41:00 +00002702static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002705 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002706 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002707 .name = "ide-tape",
2708 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002709 },
Russell King4031bbe2006-01-06 11:41:00 +00002710 .probe = ide_tape_probe,
2711 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 .version = IDETAPE_VERSION,
2713 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 .supports_dsc_overlap = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 .do_request = idetape_do_request,
2716 .end_request = idetape_end_request,
2717 .error = __ide_error,
2718 .abort = __ide_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002719#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002721#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722};
2723
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002724/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002725static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 .owner = THIS_MODULE,
2727 .read = idetape_chrdev_read,
2728 .write = idetape_chrdev_write,
2729 .ioctl = idetape_chrdev_ioctl,
2730 .open = idetape_chrdev_open,
2731 .release = idetape_chrdev_release,
2732};
2733
2734static int idetape_open(struct inode *inode, struct file *filp)
2735{
2736 struct gendisk *disk = inode->i_bdev->bd_disk;
2737 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002739 tape = ide_tape_get(disk);
2740 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 return -ENXIO;
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return 0;
2744}
2745
2746static int idetape_release(struct inode *inode, struct file *filp)
2747{
2748 struct gendisk *disk = inode->i_bdev->bd_disk;
2749 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
2751 ide_tape_put(tape);
2752
2753 return 0;
2754}
2755
2756static int idetape_ioctl(struct inode *inode, struct file *file,
2757 unsigned int cmd, unsigned long arg)
2758{
2759 struct block_device *bdev = inode->i_bdev;
2760 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2761 ide_drive_t *drive = tape->drive;
2762 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2763 if (err == -EINVAL)
2764 err = idetape_blkdev_ioctl(drive, cmd, arg);
2765 return err;
2766}
2767
2768static struct block_device_operations idetape_block_ops = {
2769 .owner = THIS_MODULE,
2770 .open = idetape_open,
2771 .release = idetape_release,
2772 .ioctl = idetape_ioctl,
2773};
2774
Russell King4031bbe2006-01-06 11:41:00 +00002775static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
2777 idetape_tape_t *tape;
2778 struct gendisk *g;
2779 int minor;
2780
2781 if (!strstr("ide-tape", drive->driver_req))
2782 goto failed;
2783 if (!drive->present)
2784 goto failed;
2785 if (drive->media != ide_tape)
2786 goto failed;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002787 if (!idetape_identify_device(drive)) {
2788 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2789 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 goto failed;
2791 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002792 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002794 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2795 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 goto failed;
2797 }
2798
2799 g = alloc_disk(1 << PARTN_BITS);
2800 if (!g)
2801 goto out_free_tape;
2802
2803 ide_init_disk(g, drive);
2804
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002805 ide_proc_register_driver(drive, &idetape_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 kref_init(&tape->kref);
2808
2809 tape->drive = drive;
2810 tape->driver = &idetape_driver;
2811 tape->disk = g;
2812
2813 g->private_data = &tape->driver;
2814
2815 drive->driver_data = tape;
2816
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002817 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 for (minor = 0; idetape_devs[minor]; minor++)
2819 ;
2820 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002821 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 idetape_setup(drive, tape, minor);
2824
Tony Jonesdbc12722007-09-25 02:03:03 +02002825 device_create(idetape_sysfs_class, &drive->gendev,
2826 MKDEV(IDETAPE_MAJOR, minor), "%s", tape->name);
2827 device_create(idetape_sysfs_class, &drive->gendev,
2828 MKDEV(IDETAPE_MAJOR, minor + 128), "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 g->fops = &idetape_block_ops;
2831 ide_register_region(g);
2832
2833 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835out_free_tape:
2836 kfree(tape);
2837failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002838 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839}
2840
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002841static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002843 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002844 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 unregister_chrdev(IDETAPE_MAJOR, "ht");
2846}
2847
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002848static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849{
Will Dysond5dee802005-09-16 02:55:07 -07002850 int error = 1;
2851 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2852 if (IS_ERR(idetape_sysfs_class)) {
2853 idetape_sysfs_class = NULL;
2854 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2855 error = -EBUSY;
2856 goto out;
2857 }
2858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002860 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2861 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002862 error = -EBUSY;
2863 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 }
Will Dysond5dee802005-09-16 02:55:07 -07002865
2866 error = driver_register(&idetape_driver.gen_driver);
2867 if (error)
2868 goto out_free_driver;
2869
2870 return 0;
2871
2872out_free_driver:
2873 driver_unregister(&idetape_driver.gen_driver);
2874out_free_class:
2875 class_destroy(idetape_sysfs_class);
2876out:
2877 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878}
2879
Kay Sievers263756e2005-12-12 18:03:44 +01002880MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881module_init(idetape_init);
2882module_exit(idetape_exit);
2883MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002884MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2885MODULE_LICENSE("GPL");