blob: cc70e759fc8e156a264d7a72215a3e786cc9eb04 [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),
59};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * With each packet command, we allocate a buffer of IDETAPE_PC_BUFFER_SIZE
85 * bytes. This is used for several packet commands (Not for READ/WRITE commands)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
87#define IDETAPE_PC_BUFFER_SIZE 256
88
89/*
90 * In various places in the driver, we need to allocate storage
91 * for packet commands and requests, which will remain valid while
92 * we leave the driver to wait for an interrupt or a timeout event.
93 */
94#define IDETAPE_PC_STACK (10 + IDETAPE_MAX_PC_RETRIES)
95
96/*
97 * Some drives (for example, Seagate STT3401A Travan) require a very long
98 * timeout, because they don't return an interrupt or clear their busy bit
99 * until after the command completes (even retension commands).
100 */
101#define IDETAPE_WAIT_CMD (900*HZ)
102
103/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100104 * The following parameter is used to select the point in the internal tape fifo
105 * in which we will start to refill the buffer. Decreasing the following
106 * parameter will improve the system's latency and interactive response, while
107 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100109#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100114 * Polling for DSC (a single bit in the status register) is a very important
115 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100117 * 1. Before a read/write packet command, to ensure that we can transfer data
118 * from/to the tape's data buffers, without causing an actual media access.
119 * In case the tape is not ready yet, we take out our request from the device
120 * request queue, so that ide.c could service requests from the other device
121 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100123 * 2. After the successful initialization of a "media access packet command",
124 * which is a command that can take a long time to complete (the interval can
125 * range from several seconds to even an hour). Again, we postpone our request
126 * in the middle to free the bus for the other device. The polling frequency
127 * here should be lower than the read/write frequency since those media access
128 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
129 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
130 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100132 * We also set a timeout for the timer, in case something goes wrong. The
133 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100135
136/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
138#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
139#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
140#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
141#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
142#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
143#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
144
145/*************************** End of tunable parameters ***********************/
146
Borislav Petkov54abf372008-02-06 02:57:52 +0100147/* tape directions */
148enum {
149 IDETAPE_DIR_NONE = (1 << 0),
150 IDETAPE_DIR_READ = (1 << 1),
151 IDETAPE_DIR_WRITE = (1 << 2),
152};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154struct idetape_bh {
Stephen Rothwellab057962007-08-01 23:46:44 +0200155 u32 b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 atomic_t b_count;
157 struct idetape_bh *b_reqnext;
158 char *b_data;
159};
160
Borislav Petkov03056b92008-04-18 00:46:26 +0200161/* Tape door status */
162#define DOOR_UNLOCKED 0
163#define DOOR_LOCKED 1
164#define DOOR_EXPLICITLY_LOCKED 2
165
166/* Some defines for the SPACE command */
167#define IDETAPE_SPACE_OVER_FILEMARK 1
168#define IDETAPE_SPACE_TO_EOD 3
169
170/* Some defines for the LOAD UNLOAD command */
171#define IDETAPE_LU_LOAD_MASK 1
172#define IDETAPE_LU_RETENSION_MASK 2
173#define IDETAPE_LU_EOT_MASK 4
174
175/*
176 * Special requests for our block device strategy routine.
177 *
178 * In order to service a character device command, we add special requests to
179 * the tail of our block device request queue and wait for their completion.
180 */
181
182enum {
183 REQ_IDETAPE_PC1 = (1 << 0), /* packet command (first stage) */
184 REQ_IDETAPE_PC2 = (1 << 1), /* packet command (second stage) */
185 REQ_IDETAPE_READ = (1 << 2),
186 REQ_IDETAPE_WRITE = (1 << 3),
187};
188
189/* Error codes returned in rq->errors to the higher part of the driver. */
190#define IDETAPE_ERROR_GENERAL 101
191#define IDETAPE_ERROR_FILEMARK 102
192#define IDETAPE_ERROR_EOD 103
193
194/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
195#define IDETAPE_BLOCK_DESCRIPTOR 0
196#define IDETAPE_CAPABILITIES_PAGE 0x2a
197
Borislav Petkov346331f2008-04-18 00:46:26 +0200198/* Tape flag bits values. */
199enum {
200 IDETAPE_FLAG_IGNORE_DSC = (1 << 0),
201 /* 0 When the tape position is unknown */
202 IDETAPE_FLAG_ADDRESS_VALID = (1 << 1),
203 /* Device already opened */
Borislav Petkov42d54682008-04-27 15:38:27 +0200204 IDETAPE_FLAG_BUSY = (1 << 2),
Borislav Petkov346331f2008-04-18 00:46:26 +0200205 /* Attempt to auto-detect the current user block size */
Borislav Petkov42d54682008-04-27 15:38:27 +0200206 IDETAPE_FLAG_DETECT_BS = (1 << 3),
Borislav Petkov346331f2008-04-18 00:46:26 +0200207 /* Currently on a filemark */
Borislav Petkov42d54682008-04-27 15:38:27 +0200208 IDETAPE_FLAG_FILEMARK = (1 << 4),
Borislav Petkov346331f2008-04-18 00:46:26 +0200209 /* DRQ interrupt device */
Borislav Petkov42d54682008-04-27 15:38:27 +0200210 IDETAPE_FLAG_DRQ_INTERRUPT = (1 << 5),
Borislav Petkov346331f2008-04-18 00:46:26 +0200211 /* 0 = no tape is loaded, so we don't rewind after ejecting */
Borislav Petkov42d54682008-04-27 15:38:27 +0200212 IDETAPE_FLAG_MEDIUM_PRESENT = (1 << 6),
Borislav Petkov346331f2008-04-18 00:46:26 +0200213};
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100216 * Most of our global data which we need to save even as we leave the driver due
217 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
219typedef struct ide_tape_obj {
220 ide_drive_t *drive;
221 ide_driver_t *driver;
222 struct gendisk *disk;
223 struct kref kref;
224
225 /*
226 * Since a typical character device operation requires more
227 * than one packet command, we provide here enough memory
228 * for the maximum of interconnected packet commands.
229 * The packet commands are stored in the circular array pc_stack.
230 * pc_stack_index points to the last used entry, and warps around
231 * to the start when we get to the last array entry.
232 *
233 * pc points to the current processed packet command.
234 *
235 * failed_pc points to the last failed packet command, or contains
236 * NULL if we do not need to retry any packet command. This is
237 * required since an additional packet command is needed before the
238 * retry, to get detailed information on what went wrong.
239 */
240 /* Current packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200241 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* Last failed packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200243 struct ide_atapi_pc *failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* Packet command stack */
Borislav Petkovd236d742008-04-18 00:46:27 +0200245 struct ide_atapi_pc pc_stack[IDETAPE_PC_STACK];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* Next free packet command storage space */
247 int pc_stack_index;
248 struct request rq_stack[IDETAPE_PC_STACK];
249 /* We implement a circular array */
250 int rq_stack_index;
251
252 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100253 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100255 * While polling for DSC we use postponed_rq to postpone the current
256 * request so that ide.c will be able to service pending requests on the
257 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200258 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 */
260 struct request *postponed_rq;
261 /* The time in which we started polling for DSC */
262 unsigned long dsc_polling_start;
263 /* Timer used to poll for dsc */
264 struct timer_list dsc_timer;
265 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100266 unsigned long best_dsc_rw_freq;
267 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 unsigned long dsc_timeout;
269
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100270 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 u8 partition;
272 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100273 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100275 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 u8 sense_key, asc, ascq;
277
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100278 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 unsigned int minor;
280 /* device name */
281 char name[4];
282 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100283 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Borislav Petkov54bb2072008-02-06 02:57:52 +0100285 /* tape block size, usually 512 or 1024 bytes */
286 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100290 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100293 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100295 * At most, there is only one ide-tape originated data transfer request
296 * in the device request queue. This allows ide.c to easily service
297 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200299
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100300 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200301 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200302 /* merge buffer */
303 struct idetape_bh *merge_bh;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +0200304 /* size of the merge buffer */
305 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200306 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct idetape_bh *bh;
308 char *b_data;
309 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100310
Borislav Petkova997a432008-04-27 15:38:33 +0200311 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* Wasted space in each stage */
313 int excess_bh_size;
314
315 /* Status/Action flags: long for set_bit */
316 unsigned long flags;
317 /* protects the ide-tape queue */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100318 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100320 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 unsigned long avg_time;
322 int avg_size;
323 int avg_speed;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* the door is currently locked */
326 int door_locked;
327 /* the tape hardware is write protected */
328 char drv_write_prot;
329 /* the tape is write protected (hardware or opened as read-only) */
330 char write_prot;
331
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100332 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333} idetape_tape_t;
334
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800335static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Will Dysond5dee802005-09-16 02:55:07 -0700337static struct class *idetape_sysfs_class;
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
340
341#define ide_tape_g(disk) \
342 container_of((disk)->private_data, struct ide_tape_obj, driver)
343
344static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
345{
346 struct ide_tape_obj *tape = NULL;
347
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800348 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 tape = ide_tape_g(disk);
350 if (tape)
351 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800352 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return tape;
354}
355
356static void ide_tape_release(struct kref *);
357
358static void ide_tape_put(struct ide_tape_obj *tape)
359{
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800360 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 kref_put(&tape->kref, ide_tape_release);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800362 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100366 * The variables below are used for the character device interface. Additional
367 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100369static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371#define ide_tape_f(file) ((file)->private_data)
372
373static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
374{
375 struct ide_tape_obj *tape = NULL;
376
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800377 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 tape = idetape_devs[i];
379 if (tape)
380 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800381 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return tape;
383}
384
Borislav Petkovd236d742008-04-18 00:46:27 +0200385static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100386 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 struct idetape_bh *bh = pc->bh;
389 int count;
390
391 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (bh == NULL) {
393 printk(KERN_ERR "ide-tape: bh == NULL in "
394 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200395 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return;
397 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100398 count = min(
399 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
400 bcount);
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200401 drive->hwif->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100402 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 bcount -= count;
404 atomic_add(count, &bh->b_count);
405 if (atomic_read(&bh->b_count) == bh->b_size) {
406 bh = bh->b_reqnext;
407 if (bh)
408 atomic_set(&bh->b_count, 0);
409 }
410 }
411 pc->bh = bh;
412}
413
Borislav Petkovd236d742008-04-18 00:46:27 +0200414static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100415 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 struct idetape_bh *bh = pc->bh;
418 int count;
419
420 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100422 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
423 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return;
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200427 drive->hwif->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 bcount -= count;
429 pc->b_data += count;
430 pc->b_count -= count;
431 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100432 bh = bh->b_reqnext;
433 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (bh) {
435 pc->b_data = bh->b_data;
436 pc->b_count = atomic_read(&bh->b_count);
437 }
438 }
439 }
440}
441
Borislav Petkovd236d742008-04-18 00:46:27 +0200442static void idetape_update_buffers(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 struct idetape_bh *bh = pc->bh;
445 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200446 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Borislav Petkov346331f2008-04-18 00:46:26 +0200448 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return;
450 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100452 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
453 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return;
455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
457 atomic_set(&bh->b_count, count);
458 if (atomic_read(&bh->b_count) == bh->b_size)
459 bh = bh->b_reqnext;
460 bcount -= count;
461 }
462 pc->bh = bh;
463}
464
465/*
466 * idetape_next_pc_storage returns a pointer to a place in which we can
467 * safely store a packet command, even though we intend to leave the
468 * driver. A storage space for a maximum of IDETAPE_PC_STACK packet
469 * commands is allocated at initialization time.
470 */
Borislav Petkovd236d742008-04-18 00:46:27 +0200471static struct ide_atapi_pc *idetape_next_pc_storage(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 idetape_tape_t *tape = drive->driver_data;
474
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100475 debug_log(DBG_PCRQ_STACK, "pc_stack_index=%d\n", tape->pc_stack_index);
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (tape->pc_stack_index == IDETAPE_PC_STACK)
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100478 tape->pc_stack_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return (&tape->pc_stack[tape->pc_stack_index++]);
480}
481
482/*
483 * idetape_next_rq_storage is used along with idetape_next_pc_storage.
484 * Since we queue packet commands in the request queue, we need to
485 * allocate a request, along with the allocation of a packet command.
486 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/**************************************************************
489 * *
490 * This should get fixed to use kmalloc(.., GFP_ATOMIC) *
491 * followed later on by kfree(). -ml *
492 * *
493 **************************************************************/
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100494
495static struct request *idetape_next_rq_storage(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 idetape_tape_t *tape = drive->driver_data;
498
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100499 debug_log(DBG_PCRQ_STACK, "rq_stack_index=%d\n", tape->rq_stack_index);
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (tape->rq_stack_index == IDETAPE_PC_STACK)
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100502 tape->rq_stack_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return (&tape->rq_stack[tape->rq_stack_index++]);
504}
505
Borislav Petkovd236d742008-04-18 00:46:27 +0200506static void idetape_init_pc(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 memset(pc->c, 0, 12);
509 pc->retries = 0;
510 pc->flags = 0;
Borislav Petkovd236d742008-04-18 00:46:27 +0200511 pc->req_xfer = 0;
512 pc->buf = pc->pc_buf;
513 pc->buf_size = IDETAPE_PC_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 pc->bh = NULL;
515 pc->b_data = NULL;
516}
517
518/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100519 * called on each failed packet command retry to analyze the request sense. We
520 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100522static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200525 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Borislav Petkov1b5db432008-02-02 19:56:48 +0100527 tape->sense_key = sense[2] & 0xF;
528 tape->asc = sense[12];
529 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100530
531 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
532 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Borislav Petkovd236d742008-04-18 00:46:27 +0200534 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200535 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200536 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100537 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200538 get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 idetape_update_buffers(pc);
540 }
541
542 /*
543 * If error was the result of a zero-length read or write command,
544 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
545 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
546 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100547 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100548 /* length == 0 */
549 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
550 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* don't report an error, everything's ok */
552 pc->error = 0;
553 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200554 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100557 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200559 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100561 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100562 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
563 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200565 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100568 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100569 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200571 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200573 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200574 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
576 }
577}
578
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200579/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200580static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200582 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200584 while (bh) {
585 u32 size = bh->b_size;
586
587 while (size) {
588 unsigned int order = fls(size >> PAGE_SHIFT)-1;
589
590 if (bh->b_data)
591 free_pages((unsigned long)bh->b_data, order);
592
593 size &= (order-1);
594 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596 prev_bh = bh;
597 bh = bh->b_reqnext;
598 kfree(prev_bh);
599 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200600 kfree(tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
604{
605 struct request *rq = HWGROUP(drive)->rq;
606 idetape_tape_t *tape = drive->driver_data;
607 unsigned long flags;
608 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100610 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100613 case 0: error = IDETAPE_ERROR_GENERAL; break;
614 case 1: error = 0; break;
615 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 rq->errors = error;
618 if (error)
619 tape->failed_pc = NULL;
620
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100621 if (!blk_special_request(rq)) {
622 ide_end_request(drive, uptodate, nr_sects);
623 return 0;
624 }
625
Borislav Petkov54bb2072008-02-06 02:57:52 +0100626 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Borislav Petkov54bb2072008-02-06 02:57:52 +0100630 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return 0;
632}
633
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100634static ide_startstop_t idetape_request_sense_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 idetape_tape_t *tape = drive->driver_data;
637
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100638 debug_log(DBG_PROCS, "Enter %s\n", __func__);
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (!tape->pc->error) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200641 idetape_analyze_error(drive, tape->pc->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 idetape_end_request(drive, 1, 0);
643 } else {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100644 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE itself - "
645 "Aborting request!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 idetape_end_request(drive, 0, 0);
647 }
648 return ide_stopped;
649}
650
Borislav Petkovd236d742008-04-18 00:46:27 +0200651static void idetape_create_request_sense_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100653 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100654 pc->c[0] = REQUEST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 pc->c[4] = 20;
Borislav Petkovd236d742008-04-18 00:46:27 +0200656 pc->req_xfer = 20;
657 pc->idetape_callback = &idetape_request_sense_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660static void idetape_init_rq(struct request *rq, u8 cmd)
661{
FUJITA Tomonorie7b241a2008-04-29 09:54:38 +0200662 blk_rq_init(NULL, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200663 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 rq->cmd[0] = cmd;
665}
666
667/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100668 * Generate a new packet command request in front of the request queue, before
669 * the current request, so that it will be processed immediately, on the next
670 * pass through the driver. The function below is called from the request
671 * handling part of the driver (the "bottom" part). Safe storage for the request
672 * should be allocated with ide_tape_next_{pc,rq}_storage() prior to that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100674 * Memory for those requests is pre-allocated at initialization time, and is
675 * limited to IDETAPE_PC_STACK requests. We assume that we have enough space for
676 * the maximum possible number of inter-dependent packet commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100678 * The higher level of the driver - The ioctl handler and the character device
679 * handling functions should queue request to the lower level part and wait for
680 * their completion using idetape_queue_pc_tail or idetape_queue_rw_tail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
Borislav Petkovd236d742008-04-18 00:46:27 +0200682static void idetape_queue_pc_head(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100683 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 struct ide_tape_obj *tape = drive->driver_data;
686
687 idetape_init_rq(rq, REQ_IDETAPE_PC1);
Bartlomiej Zolnierkiewicze8a96aa2008-07-15 21:21:41 +0200688 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 rq->buffer = (char *) pc;
690 rq->rq_disk = tape->disk;
FUJITA Tomonori63f5abb2008-07-15 21:21:51 +0200691 ide_do_drive_cmd(drive, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694/*
695 * idetape_retry_pc is called when an error was detected during the
696 * last packet command. We queue a request sense packet command in
697 * the head of the request list.
698 */
699static ide_startstop_t idetape_retry_pc (ide_drive_t *drive)
700{
701 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200702 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100705 (void)ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 pc = idetape_next_pc_storage(drive);
707 rq = idetape_next_rq_storage(drive);
708 idetape_create_request_sense_cmd(pc);
Borislav Petkov346331f2008-04-18 00:46:26 +0200709 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 idetape_queue_pc_head(drive, pc, rq);
711 return ide_stopped;
712}
713
714/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100715 * Postpone the current request so that ide.c will be able to service requests
716 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100718static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 idetape_tape_t *tape = drive->driver_data;
721
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100722 debug_log(DBG_PROCS, "Enter %s\n", __func__);
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100725 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Borislav Petkovd236d742008-04-18 00:46:27 +0200728typedef void idetape_io_buf(ide_drive_t *, struct ide_atapi_pc *, unsigned int);
Borislav Petkova1efc852008-02-06 02:57:52 +0100729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/*
Borislav Petkova1efc852008-02-06 02:57:52 +0100731 * This is the usual interrupt handler which will be called during a packet
732 * command. We will transfer some of the data (as requested by the drive) and
733 * will re-point interrupt handler to us. When data transfer is finished, we
734 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100735 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100737static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 ide_hwif_t *hwif = drive->hwif;
740 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200741 struct ide_atapi_pc *pc = tape->pc;
Borislav Petkova1efc852008-02-06 02:57:52 +0100742 xfer_func_t *xferfunc;
743 idetape_io_buf *iobuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 unsigned int temp;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100745 u16 bcount;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100746 u8 stat, ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100748 debug_log(DBG_PROCS, "Enter %s - interrupt handler\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 /* Clear the interrupt */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100751 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Borislav Petkov346331f2008-04-18 00:46:26 +0200753 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200754 if (hwif->dma_ops->dma_end(drive) || (stat & ERR_STAT)) {
Borislav Petkov346331f2008-04-18 00:46:26 +0200755 pc->flags |= PC_FLAG_DMA_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 } else {
Borislav Petkovd236d742008-04-18 00:46:27 +0200757 pc->xferred = pc->req_xfer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 idetape_update_buffers(pc);
759 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100760 debug_log(DBG_PROCS, "DMA finished\n");
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763
764 /* No more interrupts */
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100765 if ((stat & DRQ_STAT) == 0) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100766 debug_log(DBG_SENSE, "Packet command completed, %d bytes"
Borislav Petkovd236d742008-04-18 00:46:27 +0200767 " transferred\n", pc->xferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Borislav Petkov346331f2008-04-18 00:46:26 +0200769 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Bartlomiej Zolnierkiewicz87429bd2008-07-15 21:21:53 +0200770 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Borislav Petkov90699ce2008-02-02 19:56:50 +0100772 if ((stat & ERR_STAT) && pc->c[0] == REQUEST_SENSE)
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100773 stat &= ~ERR_STAT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200774 if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR)) {
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100775 /* Error detected */
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100776 debug_log(DBG_ERR, "%s: I/O error\n", tape->name);
777
Borislav Petkov90699ce2008-02-02 19:56:50 +0100778 if (pc->c[0] == REQUEST_SENSE) {
Borislav Petkova1efc852008-02-06 02:57:52 +0100779 printk(KERN_ERR "ide-tape: I/O error in request"
780 " sense command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return ide_do_reset(drive);
782 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100783 debug_log(DBG_ERR, "[cmd %x]: check condition\n",
784 pc->c[0]);
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* Retry operation */
787 return idetape_retry_pc(drive);
788 }
789 pc->error = 0;
Borislav Petkov346331f2008-04-18 00:46:26 +0200790 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) &&
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100791 (stat & SEEK_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* Media access command */
793 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100794 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
796 /* Allow ide.c to handle other requests */
797 idetape_postpone_request(drive);
798 return ide_stopped;
799 }
800 if (tape->failed_pc == pc)
801 tape->failed_pc = NULL;
802 /* Command finished - Call the callback function */
Borislav Petkovd236d742008-04-18 00:46:27 +0200803 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200805
806 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
807 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 printk(KERN_ERR "ide-tape: The tape wants to issue more "
809 "interrupts in DMA mode\n");
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100810 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return ide_do_reset(drive);
812 }
813 /* Get the number of bytes to transfer on this interrupt. */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200814 bcount = (hwif->INB(hwif->io_ports.lbah_addr) << 8) |
815 hwif->INB(hwif->io_ports.lbam_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200817 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100819 if (ireason & CD) {
Borislav Petkova1efc852008-02-06 02:57:52 +0100820 printk(KERN_ERR "ide-tape: CoD != 0 in %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return ide_do_reset(drive);
822 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200823 if (((ireason & IO) == IO) == !!(pc->flags & PC_FLAG_WRITING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /* Hopefully, we will never get here */
825 printk(KERN_ERR "ide-tape: We wanted to %s, ",
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100826 (ireason & IO) ? "Write" : "Read");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 printk(KERN_ERR "ide-tape: but the tape wants us to %s !\n",
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100828 (ireason & IO) ? "Read" : "Write");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return ide_do_reset(drive);
830 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200831 if (!(pc->flags & PC_FLAG_WRITING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /* Reading - Check that we have enough space */
Borislav Petkovd236d742008-04-18 00:46:27 +0200833 temp = pc->xferred + bcount;
834 if (temp > pc->req_xfer) {
835 if (temp > pc->buf_size) {
Borislav Petkova1efc852008-02-06 02:57:52 +0100836 printk(KERN_ERR "ide-tape: The tape wants to "
837 "send us more data than expected "
838 "- discarding data\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200839 ide_pad_transfer(drive, 0, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100840 ide_set_handler(drive, &idetape_pc_intr,
841 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return ide_started;
843 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100844 debug_log(DBG_SENSE, "The tape wants to send us more "
845 "data than expected - allowing transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Borislav Petkova1efc852008-02-06 02:57:52 +0100847 iobuf = &idetape_input_buffers;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200848 xferfunc = hwif->input_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 } else {
Borislav Petkova1efc852008-02-06 02:57:52 +0100850 iobuf = &idetape_output_buffers;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200851 xferfunc = hwif->output_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
Borislav Petkova1efc852008-02-06 02:57:52 +0100853
854 if (pc->bh)
855 iobuf(drive, pc, bcount);
856 else
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200857 xferfunc(drive, NULL, pc->cur_pos, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /* Update the current position */
Borislav Petkovd236d742008-04-18 00:46:27 +0200860 pc->xferred += bcount;
861 pc->cur_pos += bcount;
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100862
863 debug_log(DBG_SENSE, "[cmd %x] transferred %d bytes on that intr.\n",
864 pc->c[0], bcount);
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* And set the interrupt handler again */
867 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
868 return ide_started;
869}
870
871/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100872 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100874 * The current Packet Command is available in tape->pc, and will not change
875 * until we finish handling it. Each packet command is associated with a
876 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100878 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100880 * 1. idetape_issue_pc will send the packet command to the drive, and will set
881 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100883 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
884 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100886 * 3. ATAPI Tape media access commands have immediate status with a delayed
887 * process. In case of a successful initiation of a media access packet command,
888 * the DSC bit will be set when the actual execution of the command is finished.
889 * Since the tape drive will not issue an interrupt, we have to poll for this
890 * event. In this case, we define the request as "low priority request" by
891 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
892 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100894 * ide.c will then give higher priority to requests which originate from the
895 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100897 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100899 * 5. In case an error was found, we queue a request sense packet command in
900 * front of the request queue and retry the operation up to
901 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100903 * 6. In case no error was found, or we decided to give up and not to retry
904 * again, the callback function will be called and then we will handle the next
905 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 */
907static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
908{
909 ide_hwif_t *hwif = drive->hwif;
910 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200911 struct ide_atapi_pc *pc = tape->pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 int retries = 100;
913 ide_startstop_t startstop;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100914 u8 ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100916 if (ide_wait_stat(&startstop, drive, DRQ_STAT, BUSY_STAT, WAIT_READY)) {
917 printk(KERN_ERR "ide-tape: Strange, packet command initiated "
918 "yet DRQ isn't asserted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return startstop;
920 }
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200921 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100922 while (retries-- && ((ireason & CD) == 0 || (ireason & IO))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while issuing "
924 "a packet command, retrying\n");
925 udelay(100);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200926 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (retries == 0) {
928 printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while "
929 "issuing a packet command, ignoring\n");
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100930 ireason |= CD;
931 ireason &= ~IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933 }
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100934 if ((ireason & CD) == 0 || (ireason & IO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 printk(KERN_ERR "ide-tape: (IO,CoD) != (0,1) while issuing "
936 "a packet command\n");
937 return ide_do_reset(drive);
938 }
939 /* Set the interrupt routine */
940 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
Bartlomiej Zolnierkiewicz91395a12008-07-15 21:21:54 +0200941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* Begin DMA, if necessary */
Borislav Petkov346331f2008-04-18 00:46:26 +0200943 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200944 hwif->dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz91395a12008-07-15 21:21:54 +0200945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /* Send the actual packet */
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200947 hwif->output_data(drive, NULL, pc->c, 12);
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return ide_started;
950}
951
Borislav Petkovd236d742008-04-18 00:46:27 +0200952static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
953 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 ide_hwif_t *hwif = drive->hwif;
956 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 int dma_ok = 0;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100958 u16 bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Borislav Petkov90699ce2008-02-02 19:56:50 +0100960 if (tape->pc->c[0] == REQUEST_SENSE &&
961 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
963 "Two request sense in serial were issued\n");
964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Borislav Petkov90699ce2008-02-02 19:56:50 +0100966 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 tape->failed_pc = pc;
968 /* Set the current packet command */
969 tape->pc = pc;
970
971 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200972 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100974 * We will "abort" retrying a packet command in case legitimate
975 * error code was received (crossing a filemark, or end of the
976 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200978 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100979 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 tape->sense_key == 2 && tape->asc == 4 &&
981 (tape->ascq == 1 || tape->ascq == 8))) {
982 printk(KERN_ERR "ide-tape: %s: I/O error, "
983 "pc = %2x, key = %2x, "
984 "asc = %2x, ascq = %2x\n",
985 tape->name, pc->c[0],
986 tape->sense_key, tape->asc,
987 tape->ascq);
988 }
989 /* Giving up */
990 pc->error = IDETAPE_ERROR_GENERAL;
991 }
992 tape->failed_pc = NULL;
Borislav Petkovd236d742008-04-18 00:46:27 +0200993 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100995 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 pc->retries++;
998 /* We haven't transferred any data yet */
Borislav Petkovd236d742008-04-18 00:46:27 +0200999 pc->xferred = 0;
1000 pc->cur_pos = pc->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* Request to transfer the entire buffer at once */
Borislav Petkovd236d742008-04-18 00:46:27 +02001002 bcount = pc->req_xfer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Borislav Petkov346331f2008-04-18 00:46:26 +02001004 if (pc->flags & PC_FLAG_DMA_ERROR) {
1005 pc->flags &= ~PC_FLAG_DMA_ERROR;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001006 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Borislav Petkov346331f2008-04-18 00:46:26 +02001008 if ((pc->flags & PC_FLAG_DMA_RECOMMENDED) && drive->using_dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001009 dma_ok = !hwif->dma_ops->dma_setup(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Bartlomiej Zolnierkiewicz9a410e72008-07-15 21:21:48 +02001011 ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_DEVICE, bcount, dma_ok);
Bartlomiej Zolnierkiewicz2fc57382008-01-25 22:17:13 +01001012
Borislav Petkov346331f2008-04-18 00:46:26 +02001013 if (dma_ok)
1014 /* Will begin DMA later */
1015 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
1016 if (test_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags)) {
Bartlomiej Zolnierkiewiczc1c9dbc2008-02-02 19:56:44 +01001017 ide_execute_command(drive, WIN_PACKETCMD, &idetape_transfer_pc,
1018 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return ide_started;
1020 } else {
Bartlomiej Zolnierkiewicz1fc14252008-04-28 23:44:39 +02001021 ide_execute_pkt_cmd(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return idetape_transfer_pc(drive);
1023 }
1024}
1025
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001026static ide_startstop_t idetape_pc_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
1028 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001029
1030 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 idetape_end_request(drive, tape->pc->error ? 0 : 1, 0);
1033 return ide_stopped;
1034}
1035
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001036/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +02001037static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
1039 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001040 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001042 /* DBD = 1 - Don't return block descriptors */
1043 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 pc->c[2] = page_code;
1045 /*
1046 * Changed pc->c[3] to 0 (255 will at best return unused info).
1047 *
1048 * For SCSI this byte is defined as subpage instead of high byte
1049 * of length and some IDE drives seem to interpret it this way
1050 * and return an error when 255 is used.
1051 */
1052 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001053 /* We will just discard data in that case */
1054 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +02001056 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +02001058 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 else
Borislav Petkovd236d742008-04-18 00:46:27 +02001060 pc->req_xfer = 50;
1061 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001064static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001067 struct ide_atapi_pc *pc = tape->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001068 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001070 stat = ide_read_status(drive);
1071
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001072 if (stat & SEEK_STAT) {
1073 if (stat & ERR_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +01001075 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 printk(KERN_ERR "ide-tape: %s: I/O error, ",
1077 tape->name);
1078 /* Retry operation */
1079 return idetape_retry_pc(drive);
1080 }
1081 pc->error = 0;
1082 if (tape->failed_pc == pc)
1083 tape->failed_pc = NULL;
1084 } else {
1085 pc->error = IDETAPE_ERROR_GENERAL;
1086 tape->failed_pc = NULL;
1087 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001088 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001091static ide_startstop_t idetape_rw_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 idetape_tape_t *tape = drive->driver_data;
1094 struct request *rq = HWGROUP(drive)->rq;
Borislav Petkovd236d742008-04-18 00:46:27 +02001095 int blocks = tape->pc->xferred / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Borislav Petkov54bb2072008-02-06 02:57:52 +01001097 tape->avg_size += blocks * tape->blk_size;
Borislav Petkov83042b22008-04-27 15:38:27 +02001098
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -08001099 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001100 tape->avg_speed = tape->avg_size * HZ /
1101 (jiffies - tape->avg_time) / 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 tape->avg_size = 0;
1103 tape->avg_time = jiffies;
1104 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001105 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Borislav Petkov54bb2072008-02-06 02:57:52 +01001107 tape->first_frame += blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 rq->current_nr_sectors -= blocks;
1109
1110 if (!tape->pc->error)
1111 idetape_end_request(drive, 1, 0);
1112 else
1113 idetape_end_request(drive, tape->pc->error, 0);
1114 return ide_stopped;
1115}
1116
Borislav Petkovd236d742008-04-18 00:46:27 +02001117static void idetape_create_read_cmd(idetape_tape_t *tape,
1118 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001119 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
1121 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001122 pc->c[0] = READ_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001123 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +02001125 pc->idetape_callback = &idetape_rw_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 pc->bh = bh;
1127 atomic_set(&bh->b_count, 0);
Borislav Petkovd236d742008-04-18 00:46:27 +02001128 pc->buf = NULL;
1129 pc->buf_size = length * tape->blk_size;
1130 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001131 if (pc->req_xfer == tape->buffer_size)
Borislav Petkov346331f2008-04-18 00:46:26 +02001132 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
Borislav Petkovd236d742008-04-18 00:46:27 +02001135static void idetape_create_write_cmd(idetape_tape_t *tape,
1136 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001137 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
1139 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001140 pc->c[0] = WRITE_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001141 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +02001143 pc->idetape_callback = &idetape_rw_callback;
Borislav Petkov346331f2008-04-18 00:46:26 +02001144 pc->flags |= PC_FLAG_WRITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 pc->bh = bh;
1146 pc->b_data = bh->b_data;
1147 pc->b_count = atomic_read(&bh->b_count);
Borislav Petkovd236d742008-04-18 00:46:27 +02001148 pc->buf = NULL;
1149 pc->buf_size = length * tape->blk_size;
1150 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001151 if (pc->req_xfer == tape->buffer_size)
Borislav Petkov346331f2008-04-18 00:46:26 +02001152 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155static ide_startstop_t idetape_do_request(ide_drive_t *drive,
1156 struct request *rq, sector_t block)
1157{
1158 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001159 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001161 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001163 debug_log(DBG_SENSE, "sector: %ld, nr_sectors: %ld,"
1164 " current_nr_sectors: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 rq->sector, rq->nr_sectors, rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Jens Axboe4aff5e22006-08-10 08:44:47 +02001167 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001168 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +02001170 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 ide_end_request(drive, 0, 0);
1172 return ide_stopped;
1173 }
1174
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001175 /* Retry a failed packet command */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001176 if (tape->failed_pc && tape->pc->c[0] == REQUEST_SENSE)
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001177 return idetape_issue_pc(drive, tape->failed_pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (postponed_rq != NULL)
1180 if (rq != postponed_rq) {
1181 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
1182 "Two DSC requests were queued\n");
1183 idetape_end_request(drive, 0, 0);
1184 return ide_stopped;
1185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 tape->postponed_rq = NULL;
1188
1189 /*
1190 * If the tape is still busy, postpone our request and service
1191 * the other device meanwhile.
1192 */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001193 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 if (!drive->dsc_overlap && !(rq->cmd[0] & REQ_IDETAPE_PC2))
Borislav Petkov346331f2008-04-18 00:46:26 +02001196 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 if (drive->post_reset == 1) {
Borislav Petkov346331f2008-04-18 00:46:26 +02001199 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 drive->post_reset = 0;
1201 }
1202
Borislav Petkov346331f2008-04-18 00:46:26 +02001203 if (!test_and_clear_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags) &&
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001204 (stat & SEEK_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (postponed_rq == NULL) {
1206 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001207 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
1209 } else if (time_after(jiffies, tape->dsc_timeout)) {
1210 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
1211 tape->name);
1212 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1213 idetape_media_access_finished(drive);
1214 return ide_stopped;
1215 } else {
1216 return ide_do_reset(drive);
1217 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001218 } else if (time_after(jiffies,
1219 tape->dsc_polling_start +
1220 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001221 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 idetape_postpone_request(drive);
1223 return ide_stopped;
1224 }
1225 if (rq->cmd[0] & REQ_IDETAPE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001227 idetape_create_read_cmd(tape, pc, rq->current_nr_sectors,
1228 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 goto out;
1230 }
1231 if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001233 idetape_create_write_cmd(tape, pc, rq->current_nr_sectors,
1234 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 goto out;
1236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (rq->cmd[0] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +02001238 pc = (struct ide_atapi_pc *) rq->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 rq->cmd[0] &= ~(REQ_IDETAPE_PC1);
1240 rq->cmd[0] |= REQ_IDETAPE_PC2;
1241 goto out;
1242 }
1243 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1244 idetape_media_access_finished(drive);
1245 return ide_stopped;
1246 }
1247 BUG();
1248out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001249 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252/*
Borislav Petkov41aa1702008-04-27 15:38:32 +02001253 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +02001254 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001255 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 *
Borislav Petkov41aa1702008-04-27 15:38:32 +02001257 * It returns a pointer to the newly allocated buffer, or NULL in case of
1258 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001260static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
1261 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001263 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +02001264 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001265 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 char *b_data = NULL;
1267
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001268 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1269 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (bh == NULL)
1271 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001272
1273 order = fls(pages) - 1;
1274 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001275 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001277 b_allocd = (1 << order) * PAGE_SIZE;
1278 pages &= (order-1);
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001281 memset(bh->b_data, 0, b_allocd);
1282 bh->b_reqnext = NULL;
1283 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1285
Borislav Petkov41aa1702008-04-27 15:38:32 +02001286 while (pages) {
1287 order = fls(pages) - 1;
1288 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001289 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001291 b_allocd = (1 << order) * PAGE_SIZE;
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001294 memset(b_data, 0, b_allocd);
1295
1296 /* newly allocated page frames below buffer header or ...*/
1297 if (bh->b_data == b_data + b_allocd) {
1298 bh->b_size += b_allocd;
1299 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001301 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 continue;
1303 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001304 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001306 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001308 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 continue;
1310 }
1311 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001312 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1313 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001314 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 goto abort;
1316 }
1317 bh->b_reqnext = NULL;
1318 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001319 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1321 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001322
1323 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 bh->b_size -= tape->excess_bh_size;
1327 if (full)
1328 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001329 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001331 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return NULL;
1333}
1334
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001335static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +02001336 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 struct idetape_bh *bh = tape->bh;
1339 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001340 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001344 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1345 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001346 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001348 count = min((unsigned int)
1349 (bh->b_size - atomic_read(&bh->b_count)),
1350 (unsigned int)n);
1351 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1352 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001353 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 n -= count;
1355 atomic_add(count, &bh->b_count);
1356 buf += count;
1357 if (atomic_read(&bh->b_count) == bh->b_size) {
1358 bh = bh->b_reqnext;
1359 if (bh)
1360 atomic_set(&bh->b_count, 0);
1361 }
1362 }
1363 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001364 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001367static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001368 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 struct idetape_bh *bh = tape->bh;
1371 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001372 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001376 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1377 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001378 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001381 if (copy_to_user(buf, tape->b_data, count))
1382 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 n -= count;
1384 tape->b_data += count;
1385 tape->b_count -= count;
1386 buf += count;
1387 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001388 bh = bh->b_reqnext;
1389 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (bh) {
1391 tape->b_data = bh->b_data;
1392 tape->b_count = atomic_read(&bh->b_count);
1393 }
1394 }
1395 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001396 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001399static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001401 struct idetape_bh *bh = tape->merge_bh;
1402 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001403
Borislav Petkov54abf372008-02-06 02:57:52 +01001404 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 atomic_set(&bh->b_count, 0);
1406 else {
1407 tape->b_data = bh->b_data;
1408 tape->b_count = atomic_read(&bh->b_count);
1409 }
1410}
1411
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001412static ide_startstop_t idetape_read_position_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001415 u8 *readpos = tape->pc->buf;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001416
1417 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 if (!tape->pc->error) {
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001420 debug_log(DBG_SENSE, "BOP - %s\n",
1421 (readpos[0] & 0x80) ? "Yes" : "No");
1422 debug_log(DBG_SENSE, "EOP - %s\n",
1423 (readpos[0] & 0x40) ? "Yes" : "No");
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001424
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001425 if (readpos[0] & 0x4) {
1426 printk(KERN_INFO "ide-tape: Block location is unknown"
1427 "to the tape\n");
Borislav Petkov346331f2008-04-18 00:46:26 +02001428 clear_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 idetape_end_request(drive, 0, 0);
1430 } else {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001431 debug_log(DBG_SENSE, "Block Location - %u\n",
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001432 be32_to_cpu(*(u32 *)&readpos[4]));
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001433
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001434 tape->partition = readpos[1];
Borislav Petkov54bb2072008-02-06 02:57:52 +01001435 tape->first_frame =
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001436 be32_to_cpu(*(u32 *)&readpos[4]);
Borislav Petkov346331f2008-04-18 00:46:26 +02001437 set_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 idetape_end_request(drive, 1, 0);
1439 }
1440 } else {
1441 idetape_end_request(drive, 0, 0);
1442 }
1443 return ide_stopped;
1444}
1445
1446/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001447 * Write a filemark if write_filemark=1. Flush the device buffers without
1448 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001450static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001451 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
1453 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001454 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001456 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001457 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
Borislav Petkovd236d742008-04-18 00:46:27 +02001460static void idetape_create_test_unit_ready_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001463 pc->c[0] = TEST_UNIT_READY;
Borislav Petkovd236d742008-04-18 00:46:27 +02001464 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
1467/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001468 * We add a special packet command request to the tail of the request queue, and
1469 * wait for it to be serviced. This is not to be called from within the request
1470 * handling part of the driver! We allocate here data on the stack and it is
1471 * valid until the request is finished. This is not the case for the bottom part
1472 * of the driver, where we are always leaving the functions to wait for an
1473 * interrupt or a timer event.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001475 * From the bottom part of the driver, we should allocate safe memory using
1476 * idetape_next_pc_storage() and ide_tape_next_rq_storage(), and add the request
1477 * to the request list without waiting for it to be serviced! In that case, we
1478 * usually use idetape_queue_pc_head().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 */
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001480static int idetape_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 struct ide_tape_obj *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001483 struct request *rq;
1484 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001486 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1487 rq->cmd_type = REQ_TYPE_SPECIAL;
1488 rq->cmd[0] = REQ_IDETAPE_PC1;
1489 rq->buffer = (char *)pc;
1490 error = blk_execute_rq(drive->queue, tape->disk, rq, 0);
1491 blk_put_request(rq);
1492 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Borislav Petkovd236d742008-04-18 00:46:27 +02001495static void idetape_create_load_unload_cmd(ide_drive_t *drive,
1496 struct ide_atapi_pc *pc, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001499 pc->c[0] = START_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 pc->c[4] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001501 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001502 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
1505static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1506{
1507 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001508 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 int load_attempted = 0;
1510
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001511 /* Wait for the tape to become ready */
Borislav Petkov346331f2008-04-18 00:46:26 +02001512 set_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 timeout += jiffies;
1514 while (time_before(jiffies, timeout)) {
1515 idetape_create_test_unit_ready_cmd(&pc);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001516 if (!idetape_queue_pc_tail(drive, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return 0;
1518 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001519 || (tape->asc == 0x3A)) {
1520 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (load_attempted)
1522 return -ENOMEDIUM;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001523 idetape_create_load_unload_cmd(drive, &pc,
1524 IDETAPE_LU_LOAD_MASK);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001525 idetape_queue_pc_tail(drive, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 load_attempted = 1;
1527 /* not about to be ready */
1528 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1529 (tape->ascq == 1 || tape->ascq == 8)))
1530 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001531 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533 return -EIO;
1534}
1535
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001536static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Borislav Petkovd236d742008-04-18 00:46:27 +02001538 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 int rc;
1540
1541 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001542 rc = idetape_queue_pc_tail(drive, &pc);
1543 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return rc;
1545 idetape_wait_ready(drive, 60 * 5 * HZ);
1546 return 0;
1547}
1548
Borislav Petkovd236d742008-04-18 00:46:27 +02001549static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
1551 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001552 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001553 pc->req_xfer = 20;
1554 pc->idetape_callback = &idetape_read_position_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001557static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001560 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 int position;
1562
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001563 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 idetape_create_read_position_cmd(&pc);
1566 if (idetape_queue_pc_tail(drive, &pc))
1567 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001568 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 return position;
1570}
1571
Borislav Petkovd236d742008-04-18 00:46:27 +02001572static void idetape_create_locate_cmd(ide_drive_t *drive,
1573 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001574 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001577 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001579 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001581 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001582 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
Borislav Petkovd236d742008-04-18 00:46:27 +02001585static int idetape_create_prevent_cmd(ide_drive_t *drive,
1586 struct ide_atapi_pc *pc, int prevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 idetape_tape_t *tape = drive->driver_data;
1589
Borislav Petkovb6422012008-02-02 19:56:49 +01001590 /* device supports locking according to capabilities page */
1591 if (!(tape->caps[6] & 0x01))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return 0;
1593
1594 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001595 pc->c[0] = ALLOW_MEDIUM_REMOVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 pc->c[4] = prevent;
Borislav Petkovd236d742008-04-18 00:46:27 +02001597 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return 1;
1599}
1600
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001601static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Borislav Petkov54abf372008-02-06 02:57:52 +01001605 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001606 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Borislav Petkov83042b22008-04-27 15:38:27 +02001608 clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001609 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001610 if (tape->merge_bh != NULL) {
1611 ide_tape_kfree_buffer(tape);
1612 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 }
1614
Borislav Petkov54abf372008-02-06 02:57:52 +01001615 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616}
1617
1618/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001619 * Position the tape to the requested block using the LOCATE packet command.
1620 * A READ POSITION command is then issued to check where we are positioned. Like
1621 * all higher level operations, we queue the commands at the tail of the request
1622 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001624static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1625 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
1627 idetape_tape_t *tape = drive->driver_data;
1628 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001629 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Borislav Petkov54abf372008-02-06 02:57:52 +01001631 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001632 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 idetape_wait_ready(drive, 60 * 5 * HZ);
1634 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
1635 retval = idetape_queue_pc_tail(drive, &pc);
1636 if (retval)
1637 return (retval);
1638
1639 idetape_create_read_position_cmd(&pc);
1640 return (idetape_queue_pc_tail(drive, &pc));
1641}
1642
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001643static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001644 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 int seek, position;
1648
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001649 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (restore_position) {
1651 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001652 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001654 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001655 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return;
1657 }
1658 }
1659}
1660
1661/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001662 * Generate a read/write request for the block device interface and wait for it
1663 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001665static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1666 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001669 struct request *rq;
1670 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001672 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1673
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001674 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1675 rq->cmd_type = REQ_TYPE_SPECIAL;
1676 rq->cmd[0] = cmd;
1677 rq->rq_disk = tape->disk;
1678 rq->special = (void *)bh;
1679 rq->sector = tape->first_frame;
1680 rq->nr_sectors = blocks;
1681 rq->current_nr_sectors = blocks;
1682 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1683
1684 errors = rq->errors;
1685 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1686 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1689 return 0;
1690
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001691 if (tape->merge_bh)
1692 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001693 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001695 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
Borislav Petkovd236d742008-04-18 00:46:27 +02001698static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001701 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001702 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001703 pc->req_xfer = 254;
1704 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
Borislav Petkovd236d742008-04-18 00:46:27 +02001707static void idetape_create_rewind_cmd(ide_drive_t *drive,
1708 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
1710 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001711 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001712 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001713 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
Borislav Petkovd236d742008-04-18 00:46:27 +02001716static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001719 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001721 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001722 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724
Borislav Petkovd236d742008-04-18 00:46:27 +02001725static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
1727 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001728 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001729 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001731 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001732 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
Borislav Petkov97c566c2008-04-27 15:38:25 +02001735/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001736static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001740 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001742 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001743 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
Borislav Petkovd9df9372008-04-27 15:38:34 +02001746static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
1748 idetape_tape_t *tape = drive->driver_data;
1749 int blocks, min;
1750 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001751
Borislav Petkov54abf372008-02-06 02:57:52 +01001752 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001753 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001754 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return;
1756 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001757 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001759 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001761 if (tape->merge_bh_size) {
1762 blocks = tape->merge_bh_size / tape->blk_size;
1763 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 unsigned int i;
1765
1766 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001767 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001768 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 bh = tape->bh->b_reqnext;
1770 while (bh) {
1771 atomic_set(&bh->b_count, 0);
1772 bh = bh->b_reqnext;
1773 }
1774 bh = tape->bh;
1775 while (i) {
1776 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001777 printk(KERN_INFO "ide-tape: bug,"
1778 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 break;
1780 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001781 min = min(i, (unsigned int)(bh->b_size -
1782 atomic_read(&bh->b_count)));
1783 memset(bh->b_data + atomic_read(&bh->b_count),
1784 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 atomic_add(min, &bh->b_count);
1786 i -= min;
1787 bh = bh->b_reqnext;
1788 }
1789 }
1790 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001791 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001793 if (tape->merge_bh != NULL) {
1794 ide_tape_kfree_buffer(tape);
1795 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001797 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
Borislav Petkov83042b22008-04-27 15:38:27 +02001800static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
1802 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001806 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1807 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001808 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 idetape_flush_tape_buffers(drive);
1810 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001811 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001812 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001813 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001814 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001816 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1817 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001819 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001822 * Issue a read 0 command to ensure that DSC handshake is
1823 * switched from completion mode to buffer available mode.
1824 * No point in issuing this if DSC overlap isn't supported, some
1825 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 */
1827 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001828 bytes_read = idetape_queue_rw_tail(drive,
1829 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001830 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001832 ide_tape_kfree_buffer(tape);
1833 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001834 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return bytes_read;
1836 }
1837 }
1838 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return 0;
1841}
1842
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001843/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001844static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
1846 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001848 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001850 /* If we are at a filemark, return a read length of 0 */
Borislav Petkov346331f2008-04-18 00:46:26 +02001851 if (test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 return 0;
1853
Borislav Petkov83042b22008-04-27 15:38:27 +02001854 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001856 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001857 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001860static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 idetape_tape_t *tape = drive->driver_data;
1863 struct idetape_bh *bh;
1864 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 while (bcount) {
1867 unsigned int count;
1868
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001869 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001870 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001872 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001874 atomic_set(&bh->b_count,
1875 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1877 count -= atomic_read(&bh->b_count);
1878 bh = bh->b_reqnext;
1879 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001880 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001881 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
1883}
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001886 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1887 * currently support only one partition.
1888 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001889static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
1891 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001892 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001893 idetape_tape_t *tape;
1894 tape = drive->driver_data;
1895
1896 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 idetape_create_rewind_cmd(drive, &pc);
1899 retval = idetape_queue_pc_tail(drive, &pc);
1900 if (retval)
1901 return retval;
1902
1903 idetape_create_read_position_cmd(&pc);
1904 retval = idetape_queue_pc_tail(drive, &pc);
1905 if (retval)
1906 return retval;
1907 return 0;
1908}
1909
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001910/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001911static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1912 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
1914 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 void __user *argp = (void __user *)arg;
1916
Borislav Petkovd59823f2008-02-02 19:56:51 +01001917 struct idetape_config {
1918 int dsc_rw_frequency;
1919 int dsc_media_access_frequency;
1920 int nr_stages;
1921 } config;
1922
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001923 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001926 case 0x0340:
1927 if (copy_from_user(&config, argp, sizeof(config)))
1928 return -EFAULT;
1929 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001930 break;
1931 case 0x0350:
1932 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001933 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001934 if (copy_to_user(argp, &config, sizeof(config)))
1935 return -EFAULT;
1936 break;
1937 default:
1938 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 }
1940 return 0;
1941}
1942
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001943static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1944 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
1946 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001947 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001948 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001949 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 if (mt_count == 0)
1952 return 0;
1953 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001954 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001956 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
1958
Borislav Petkov54abf372008-02-06 02:57:52 +01001959 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001960 tape->merge_bh_size = 0;
Borislav Petkov346331f2008-04-18 00:46:26 +02001961 if (test_and_clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001963 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001967 case MTFSF:
1968 case MTBSF:
1969 idetape_create_space_cmd(&pc, mt_count - count,
1970 IDETAPE_SPACE_OVER_FILEMARK);
1971 return idetape_queue_pc_tail(drive, &pc);
1972 case MTFSFM:
1973 case MTBSFM:
1974 if (!sprev)
1975 return -EIO;
1976 retval = idetape_space_over_filemarks(drive, MTFSF,
1977 mt_count - count);
1978 if (retval)
1979 return retval;
1980 count = (MTBSFM == mt_op ? 1 : -1);
1981 return idetape_space_over_filemarks(drive, MTFSF, count);
1982 default:
1983 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1984 mt_op);
1985 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001990 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001992 * The tape is optimized to maximize throughput when it is transferring an
1993 * integral number of the "continuous transfer limit", which is a parameter of
1994 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001996 * As of version 1.3 of the driver, the character device provides an abstract
1997 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1998 * same backup/restore procedure is supported. The driver will internally
1999 * convert the requests to the recommended transfer unit, so that an unmatch
2000 * between the user's block size to the recommended size will only result in a
2001 * (slightly) increased driver overhead, but will no longer hit performance.
2002 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002004static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
2005 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
2007 struct ide_tape_obj *tape = ide_tape_f(file);
2008 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002009 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07002010 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002011 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002013 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Borislav Petkov54abf372008-02-06 02:57:52 +01002015 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002016 if (test_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01002017 if (count > tape->blk_size &&
2018 (count % tape->blk_size) == 0)
2019 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
Borislav Petkov83042b22008-04-27 15:38:27 +02002021 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01002022 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return rc;
2024 if (count == 0)
2025 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002026 if (tape->merge_bh_size) {
2027 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002028 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02002029 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002030 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002032 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 count -= actually_read;
2034 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002035 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002036 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (bytes_read <= 0)
2038 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02002039 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002040 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 buf += bytes_read;
2042 count -= bytes_read;
2043 actually_read += bytes_read;
2044 }
2045 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002046 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 if (bytes_read <= 0)
2048 goto finish;
2049 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02002050 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002051 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002053 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
2055finish:
Borislav Petkov346331f2008-04-18 00:46:26 +02002056 if (!actually_read && test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002057 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 idetape_space_over_filemarks(drive, MTFSF, 1);
2060 return 0;
2061 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07002062
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002063 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002066static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 size_t count, loff_t *ppos)
2068{
2069 struct ide_tape_obj *tape = ide_tape_f(file);
2070 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07002071 ssize_t actually_written = 0;
2072 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002073 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 /* The drive is write protected. */
2076 if (tape->write_prot)
2077 return -EACCES;
2078
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002079 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01002082 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
2083 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002084 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002085 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002086 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002088 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002090 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
2091 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01002093 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002094 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002097 * Issue a write 0 command to ensure that DSC handshake is
2098 * switched from completion mode to buffer available mode. No
2099 * point in issuing this if DSC overlap isn't supported, some
2100 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 */
2102 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002103 ssize_t retval = idetape_queue_rw_tail(drive,
2104 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002105 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002107 ide_tape_kfree_buffer(tape);
2108 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01002109 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 return retval;
2111 }
2112 }
2113 }
2114 if (count == 0)
2115 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002116 if (tape->merge_bh_size) {
2117 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002118 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002119 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002121 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002122 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002123 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02002124 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002125 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002127 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 count -= actually_written;
2129
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002130 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002131 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002132 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002133 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (retval <= 0)
2135 return (retval);
2136 }
2137 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002138 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002139 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002140 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002141 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002142 buf += tape->buffer_size;
2143 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002144 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002145 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (retval <= 0)
2147 return (retval);
2148 }
2149 if (count) {
2150 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02002151 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002152 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002153 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002155 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002158static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Borislav Petkovd236d742008-04-18 00:46:27 +02002160 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 /* Write a filemark */
2163 idetape_create_write_filemark_cmd(drive, &pc, 1);
2164 if (idetape_queue_pc_tail(drive, &pc)) {
2165 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
2166 return -EIO;
2167 }
2168 return 0;
2169}
2170
2171/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002172 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
2173 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002175 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
2176 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02002177 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002179 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002181 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
2182 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002184static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
2186 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002187 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002188 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002190 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
2191 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002194 case MTFSF:
2195 case MTFSFM:
2196 case MTBSF:
2197 case MTBSFM:
2198 if (!mt_count)
2199 return 0;
2200 return idetape_space_over_filemarks(drive, mt_op, mt_count);
2201 default:
2202 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002206 case MTWEOF:
2207 if (tape->write_prot)
2208 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002209 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002210 for (i = 0; i < mt_count; i++) {
2211 retval = idetape_write_filemark(drive);
2212 if (retval)
2213 return retval;
2214 }
2215 return 0;
2216 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002217 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002218 if (idetape_rewind_tape(drive))
2219 return -EIO;
2220 return 0;
2221 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002222 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002223 idetape_create_load_unload_cmd(drive, &pc,
2224 IDETAPE_LU_LOAD_MASK);
2225 return idetape_queue_pc_tail(drive, &pc);
2226 case MTUNLOAD:
2227 case MTOFFL:
2228 /*
2229 * If door is locked, attempt to unlock before
2230 * attempting to eject.
2231 */
2232 if (tape->door_locked) {
2233 if (idetape_create_prevent_cmd(drive, &pc, 0))
2234 if (!idetape_queue_pc_tail(drive, &pc))
2235 tape->door_locked = DOOR_UNLOCKED;
2236 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002237 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002238 idetape_create_load_unload_cmd(drive, &pc,
2239 !IDETAPE_LU_LOAD_MASK);
2240 retval = idetape_queue_pc_tail(drive, &pc);
2241 if (!retval)
Borislav Petkov346331f2008-04-18 00:46:26 +02002242 clear_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002243 return retval;
2244 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002245 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002246 return idetape_flush_tape_buffers(drive);
2247 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002248 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002249 idetape_create_load_unload_cmd(drive, &pc,
2250 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
2251 return idetape_queue_pc_tail(drive, &pc);
2252 case MTEOM:
2253 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
2254 return idetape_queue_pc_tail(drive, &pc);
2255 case MTERASE:
2256 (void)idetape_rewind_tape(drive);
2257 idetape_create_erase_cmd(&pc);
2258 return idetape_queue_pc_tail(drive, &pc);
2259 case MTSETBLK:
2260 if (mt_count) {
2261 if (mt_count < tape->blk_size ||
2262 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002264 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkov346331f2008-04-18 00:46:26 +02002265 clear_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002266 } else
Borislav Petkov346331f2008-04-18 00:46:26 +02002267 set_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002268 return 0;
2269 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002270 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002271 return idetape_position_tape(drive,
2272 mt_count * tape->user_bs_factor, tape->partition, 0);
2273 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002274 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002275 return idetape_position_tape(drive, 0, mt_count, 0);
2276 case MTFSR:
2277 case MTBSR:
2278 case MTLOCK:
2279 if (!idetape_create_prevent_cmd(drive, &pc, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002281 retval = idetape_queue_pc_tail(drive, &pc);
2282 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002284 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
2285 return 0;
2286 case MTUNLOCK:
2287 if (!idetape_create_prevent_cmd(drive, &pc, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002289 retval = idetape_queue_pc_tail(drive, &pc);
2290 if (retval)
2291 return retval;
2292 tape->door_locked = DOOR_UNLOCKED;
2293 return 0;
2294 default:
2295 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
2296 mt_op);
2297 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
2299}
2300
2301/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002302 * Our character device ioctls. General mtio.h magnetic io commands are
2303 * supported here, and not in the corresponding block interface. Our own
2304 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002306static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
2307 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 struct ide_tape_obj *tape = ide_tape_f(file);
2310 ide_drive_t *drive = tape->drive;
2311 struct mtop mtop;
2312 struct mtget mtget;
2313 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002314 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 void __user *argp = (void __user *)arg;
2316
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002317 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Borislav Petkov54abf372008-02-06 02:57:52 +01002319 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02002320 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 idetape_flush_tape_buffers(drive);
2322 }
2323 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002324 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01002325 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002326 position = idetape_read_position(drive);
2327 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 return -EIO;
2329 }
2330 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002331 case MTIOCTOP:
2332 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
2333 return -EFAULT;
2334 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
2335 case MTIOCGET:
2336 memset(&mtget, 0, sizeof(struct mtget));
2337 mtget.mt_type = MT_ISSCSI2;
2338 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
2339 mtget.mt_dsreg =
2340 ((tape->blk_size * tape->user_bs_factor)
2341 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002342
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002343 if (tape->drv_write_prot)
2344 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
2345
2346 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
2347 return -EFAULT;
2348 return 0;
2349 case MTIOCPOS:
2350 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
2351 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
2352 return -EFAULT;
2353 return 0;
2354 default:
2355 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002356 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002357 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359}
2360
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002361/*
2362 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
2363 * block size with the reported value.
2364 */
2365static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
2366{
2367 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002368 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002369
2370 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
2371 if (idetape_queue_pc_tail(drive, &pc)) {
2372 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002373 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002374 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
2375 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002376 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002377 }
2378 return;
2379 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002380 tape->blk_size = (pc.buf[4 + 5] << 16) +
2381 (pc.buf[4 + 6] << 8) +
2382 pc.buf[4 + 7];
2383 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002384}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002386static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
2388 unsigned int minor = iminor(inode), i = minor & ~0xc0;
2389 ide_drive_t *drive;
2390 idetape_tape_t *tape;
Borislav Petkovd236d742008-04-18 00:46:27 +02002391 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 int retval;
2393
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002394 if (i >= MAX_HWIFS * MAX_DRIVES)
2395 return -ENXIO;
2396
2397 tape = ide_tape_chrdev_get(i);
2398 if (!tape)
2399 return -ENXIO;
2400
2401 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 /*
2404 * We really want to do nonseekable_open(inode, filp); here, but some
2405 * versions of tar incorrectly call lseek on tapes and bail out if that
2406 * fails. So we disallow pread() and pwrite(), but permit lseeks.
2407 */
2408 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 drive = tape->drive;
2411
2412 filp->private_data = tape;
2413
Borislav Petkov346331f2008-04-18 00:46:26 +02002414 if (test_and_set_bit(IDETAPE_FLAG_BUSY, &tape->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 retval = -EBUSY;
2416 goto out_put_tape;
2417 }
2418
2419 retval = idetape_wait_ready(drive, 60 * HZ);
2420 if (retval) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002421 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2423 goto out_put_tape;
2424 }
2425
2426 idetape_read_position(drive);
Borislav Petkov346331f2008-04-18 00:46:26 +02002427 if (!test_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 (void)idetape_rewind_tape(drive);
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002431 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433 /* Set write protect flag if device is opened as read-only. */
2434 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2435 tape->write_prot = 1;
2436 else
2437 tape->write_prot = tape->drv_write_prot;
2438
2439 /* Make sure drive isn't write protected if user wants to write. */
2440 if (tape->write_prot) {
2441 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2442 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002443 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 retval = -EROFS;
2445 goto out_put_tape;
2446 }
2447 }
2448
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002449 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01002450 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 if (idetape_create_prevent_cmd(drive, &pc, 1)) {
2452 if (!idetape_queue_pc_tail(drive, &pc)) {
2453 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2454 tape->door_locked = DOOR_LOCKED;
2455 }
2456 }
2457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 return 0;
2459
2460out_put_tape:
2461 ide_tape_put(tape);
2462 return retval;
2463}
2464
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002465static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
2467 idetape_tape_t *tape = drive->driver_data;
2468
Borislav Petkovd9df9372008-04-27 15:38:34 +02002469 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002470 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2471 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002472 idetape_pad_zeros(drive, tape->blk_size *
2473 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002474 ide_tape_kfree_buffer(tape);
2475 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 }
2477 idetape_write_filemark(drive);
2478 idetape_flush_tape_buffers(drive);
2479 idetape_flush_tape_buffers(drive);
2480}
2481
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002482static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483{
2484 struct ide_tape_obj *tape = ide_tape_f(filp);
2485 ide_drive_t *drive = tape->drive;
Borislav Petkovd236d742008-04-18 00:46:27 +02002486 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 unsigned int minor = iminor(inode);
2488
2489 lock_kernel();
2490 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002491
2492 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Borislav Petkov54abf372008-02-06 02:57:52 +01002494 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002496 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002498 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002500
Borislav Petkov346331f2008-04-18 00:46:26 +02002501 if (minor < 128 && test_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002503 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 if (tape->door_locked == DOOR_LOCKED) {
2505 if (idetape_create_prevent_cmd(drive, &pc, 0)) {
2506 if (!idetape_queue_pc_tail(drive, &pc))
2507 tape->door_locked = DOOR_UNLOCKED;
2508 }
2509 }
2510 }
Borislav Petkov346331f2008-04-18 00:46:26 +02002511 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 ide_tape_put(tape);
2513 unlock_kernel();
2514 return 0;
2515}
2516
2517/*
Borislav Petkov71071b82008-02-06 02:57:53 +01002518 * check the contents of the ATAPI IDENTIFY command results. We return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002520 * 1 - If the tape can be supported by us, based on the information we have so
2521 * far.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002523 * 0 - If this tape driver is not currently supported by us.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 */
Borislav Petkov71071b82008-02-06 02:57:53 +01002525static int idetape_identify_device(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
Borislav Petkov71071b82008-02-06 02:57:53 +01002527 u8 gcw[2], protocol, device_type, removable, packet_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 if (drive->id_read == 0)
2530 return 1;
2531
Borislav Petkov71071b82008-02-06 02:57:53 +01002532 *((unsigned short *) &gcw) = drive->id->config;
2533
2534 protocol = (gcw[1] & 0xC0) >> 6;
2535 device_type = gcw[1] & 0x1F;
2536 removable = !!(gcw[0] & 0x80);
2537 packet_size = gcw[0] & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 /* Check that we can support this device */
Borislav Petkov71071b82008-02-06 02:57:53 +01002540 if (protocol != 2)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002541 printk(KERN_ERR "ide-tape: Protocol (0x%02x) is not ATAPI\n",
Borislav Petkov71071b82008-02-06 02:57:53 +01002542 protocol);
2543 else if (device_type != 1)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002544 printk(KERN_ERR "ide-tape: Device type (0x%02x) is not set "
Borislav Petkov71071b82008-02-06 02:57:53 +01002545 "to tape\n", device_type);
2546 else if (!removable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 printk(KERN_ERR "ide-tape: The removable flag is not set\n");
Borislav Petkov71071b82008-02-06 02:57:53 +01002548 else if (packet_size != 0) {
Borislav Petkov24d57f82008-02-06 02:57:54 +01002549 printk(KERN_ERR "ide-tape: Packet size (0x%02x) is not 12"
2550 " bytes\n", packet_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 } else
2552 return 1;
2553 return 0;
2554}
2555
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002556static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002559 struct ide_atapi_pc pc;
Borislav Petkov41f81d542008-02-06 02:57:52 +01002560 char fw_rev[6], vendor_id[10], product_id[18];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 idetape_create_inquiry_cmd(&pc);
2563 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002564 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2565 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 return;
2567 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002568 memcpy(vendor_id, &pc.buf[8], 8);
2569 memcpy(product_id, &pc.buf[16], 16);
2570 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002571
Borislav Petkov41f81d542008-02-06 02:57:52 +01002572 ide_fixstring(vendor_id, 10, 0);
2573 ide_fixstring(product_id, 18, 0);
2574 ide_fixstring(fw_rev, 6, 0);
2575
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002576 printk(KERN_INFO "ide-tape: %s <-> %s: %s %s rev %s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002577 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578}
2579
2580/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002581 * Ask the tape about its various parameters. In particular, we will adjust our
2582 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002584static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
2586 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002587 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002588 u8 *caps;
2589 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
2592 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002593 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2594 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002595 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002596 put_unaligned(52, (u16 *)&tape->caps[12]);
2597 put_unaligned(540, (u16 *)&tape->caps[14]);
2598 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return;
2600 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002601 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Borislav Petkovb6422012008-02-02 19:56:49 +01002603 /* convert to host order and save for later use */
2604 speed = be16_to_cpu(*(u16 *)&caps[14]);
2605 max_speed = be16_to_cpu(*(u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Borislav Petkovb6422012008-02-02 19:56:49 +01002607 put_unaligned(max_speed, (u16 *)&caps[8]);
2608 put_unaligned(be16_to_cpu(*(u16 *)&caps[12]), (u16 *)&caps[12]);
2609 put_unaligned(speed, (u16 *)&caps[14]);
2610 put_unaligned(be16_to_cpu(*(u16 *)&caps[16]), (u16 *)&caps[16]);
2611
2612 if (!speed) {
2613 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2614 "(assuming 650KB/sec)\n", drive->name);
2615 put_unaligned(650, (u16 *)&caps[14]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002617 if (!max_speed) {
2618 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2619 "(assuming 650KB/sec)\n", drive->name);
2620 put_unaligned(650, (u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
2622
Borislav Petkovb6422012008-02-02 19:56:49 +01002623 memcpy(&tape->caps, caps, 20);
2624 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002625 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002626 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002627 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628}
2629
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002630#ifdef CONFIG_IDE_PROC_FS
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002631static void idetape_add_settings(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
2633 idetape_tape_t *tape = drive->driver_data;
2634
Borislav Petkovb6422012008-02-02 19:56:49 +01002635 ide_add_setting(drive, "buffer", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2636 1, 2, (u16 *)&tape->caps[16], NULL);
Borislav Petkovb6422012008-02-02 19:56:49 +01002637 ide_add_setting(drive, "speed", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2638 1, 1, (u16 *)&tape->caps[14], NULL);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002639 ide_add_setting(drive, "buffer_size", SETTING_READ, TYPE_INT, 0, 0xffff,
2640 1, 1024, &tape->buffer_size, NULL);
Borislav Petkov54bb2072008-02-06 02:57:52 +01002641 ide_add_setting(drive, "tdsc", SETTING_RW, TYPE_INT, IDETAPE_DSC_RW_MIN,
2642 IDETAPE_DSC_RW_MAX, 1000, HZ, &tape->best_dsc_rw_freq,
2643 NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002644 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1,
2645 1, &drive->dsc_overlap, NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002646 ide_add_setting(drive, "avg_speed", SETTING_READ, TYPE_INT, 0, 0xffff,
2647 1, 1, &tape->avg_speed, NULL);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002648 ide_add_setting(drive, "debug_mask", SETTING_RW, TYPE_INT, 0, 0xffff, 1,
2649 1, &tape->debug_mask, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002651#else
2652static inline void idetape_add_settings(ide_drive_t *drive) { ; }
2653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
2655/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002656 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002658 * 1. Initialize our various state variables.
2659 * 2. Ask the tape for its capabilities.
2660 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2661 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002663 * Note that at this point ide.c already assigned us an irq, so that we can
2664 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002666static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Borislav Petkov83042b22008-04-27 15:38:27 +02002668 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002670 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002671 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002672 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Borislav Petkov54bb2072008-02-06 02:57:52 +01002674 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002676 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2677 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2678 tape->name);
2679 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 /* Seagate Travan drives do not support DSC overlap. */
2682 if (strstr(drive->id->model, "Seagate STT3401"))
2683 drive->dsc_overlap = 0;
2684 tape->minor = minor;
2685 tape->name[0] = 'h';
2686 tape->name[1] = 't';
2687 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002688 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 tape->pc = tape->pc_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 *((unsigned short *) &gcw) = drive->id->config;
Borislav Petkov71071b82008-02-06 02:57:53 +01002691
2692 /* Command packet DRQ type */
2693 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkov346331f2008-04-18 00:46:26 +02002694 set_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 idetape_get_inquiry_results(drive);
2697 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002698 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002700 tape->buffer_size = *ctl * tape->blk_size;
2701 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002703 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002704 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002706 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002707 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002708 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002709 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002710 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 }
2712
Borislav Petkov83042b22008-04-27 15:38:27 +02002713 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002714 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Borislav Petkovf73850a2008-04-27 15:38:33 +02002716 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002719 * Ensure that the number we got makes sense; limit it within
2720 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002722 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2723 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002725 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002726 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002727 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2728 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002729 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 drive->using_dma ? ", DMA":"");
2731
2732 idetape_add_settings(drive);
2733}
2734
Russell King4031bbe2006-01-06 11:41:00 +00002735static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
2737 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002739 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
2741 ide_unregister_region(tape->disk);
2742
2743 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744}
2745
2746static void ide_tape_release(struct kref *kref)
2747{
2748 struct ide_tape_obj *tape = to_ide_tape(kref);
2749 ide_drive_t *drive = tape->drive;
2750 struct gendisk *g = tape->disk;
2751
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002752 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 drive->dsc_overlap = 0;
2755 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002756 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002757 device_destroy(idetape_sysfs_class,
2758 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 idetape_devs[tape->minor] = NULL;
2760 g->private_data = NULL;
2761 put_disk(g);
2762 kfree(tape);
2763}
2764
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002765#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766static int proc_idetape_read_name
2767 (char *page, char **start, off_t off, int count, int *eof, void *data)
2768{
2769 ide_drive_t *drive = (ide_drive_t *) data;
2770 idetape_tape_t *tape = drive->driver_data;
2771 char *out = page;
2772 int len;
2773
2774 len = sprintf(out, "%s\n", tape->name);
2775 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2776}
2777
2778static ide_proc_entry_t idetape_proc[] = {
2779 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2780 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2781 { NULL, 0, NULL, NULL }
2782};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783#endif
2784
Russell King4031bbe2006-01-06 11:41:00 +00002785static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002788 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002789 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002790 .name = "ide-tape",
2791 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002792 },
Russell King4031bbe2006-01-06 11:41:00 +00002793 .probe = ide_tape_probe,
2794 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 .version = IDETAPE_VERSION,
2796 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 .supports_dsc_overlap = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 .do_request = idetape_do_request,
2799 .end_request = idetape_end_request,
2800 .error = __ide_error,
2801 .abort = __ide_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002802#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002804#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805};
2806
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002807/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002808static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 .owner = THIS_MODULE,
2810 .read = idetape_chrdev_read,
2811 .write = idetape_chrdev_write,
2812 .ioctl = idetape_chrdev_ioctl,
2813 .open = idetape_chrdev_open,
2814 .release = idetape_chrdev_release,
2815};
2816
2817static int idetape_open(struct inode *inode, struct file *filp)
2818{
2819 struct gendisk *disk = inode->i_bdev->bd_disk;
2820 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002822 tape = ide_tape_get(disk);
2823 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 return -ENXIO;
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return 0;
2827}
2828
2829static int idetape_release(struct inode *inode, struct file *filp)
2830{
2831 struct gendisk *disk = inode->i_bdev->bd_disk;
2832 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
2834 ide_tape_put(tape);
2835
2836 return 0;
2837}
2838
2839static int idetape_ioctl(struct inode *inode, struct file *file,
2840 unsigned int cmd, unsigned long arg)
2841{
2842 struct block_device *bdev = inode->i_bdev;
2843 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2844 ide_drive_t *drive = tape->drive;
2845 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2846 if (err == -EINVAL)
2847 err = idetape_blkdev_ioctl(drive, cmd, arg);
2848 return err;
2849}
2850
2851static struct block_device_operations idetape_block_ops = {
2852 .owner = THIS_MODULE,
2853 .open = idetape_open,
2854 .release = idetape_release,
2855 .ioctl = idetape_ioctl,
2856};
2857
Russell King4031bbe2006-01-06 11:41:00 +00002858static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
2860 idetape_tape_t *tape;
2861 struct gendisk *g;
2862 int minor;
2863
2864 if (!strstr("ide-tape", drive->driver_req))
2865 goto failed;
2866 if (!drive->present)
2867 goto failed;
2868 if (drive->media != ide_tape)
2869 goto failed;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002870 if (!idetape_identify_device(drive)) {
2871 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2872 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 goto failed;
2874 }
2875 if (drive->scsi) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002876 printk(KERN_INFO "ide-tape: passing drive %s to ide-scsi"
2877 " emulation.\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 goto failed;
2879 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002880 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002882 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2883 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 goto failed;
2885 }
2886
2887 g = alloc_disk(1 << PARTN_BITS);
2888 if (!g)
2889 goto out_free_tape;
2890
2891 ide_init_disk(g, drive);
2892
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002893 ide_proc_register_driver(drive, &idetape_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 kref_init(&tape->kref);
2896
2897 tape->drive = drive;
2898 tape->driver = &idetape_driver;
2899 tape->disk = g;
2900
2901 g->private_data = &tape->driver;
2902
2903 drive->driver_data = tape;
2904
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002905 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 for (minor = 0; idetape_devs[minor]; minor++)
2907 ;
2908 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002909 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911 idetape_setup(drive, tape, minor);
2912
Tony Jonesdbc12722007-09-25 02:03:03 +02002913 device_create(idetape_sysfs_class, &drive->gendev,
2914 MKDEV(IDETAPE_MAJOR, minor), "%s", tape->name);
2915 device_create(idetape_sysfs_class, &drive->gendev,
2916 MKDEV(IDETAPE_MAJOR, minor + 128), "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002917
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 g->fops = &idetape_block_ops;
2919 ide_register_region(g);
2920
2921 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923out_free_tape:
2924 kfree(tape);
2925failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002926 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927}
2928
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002929static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002931 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002932 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 unregister_chrdev(IDETAPE_MAJOR, "ht");
2934}
2935
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002936static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
Will Dysond5dee802005-09-16 02:55:07 -07002938 int error = 1;
2939 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2940 if (IS_ERR(idetape_sysfs_class)) {
2941 idetape_sysfs_class = NULL;
2942 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2943 error = -EBUSY;
2944 goto out;
2945 }
2946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002948 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2949 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002950 error = -EBUSY;
2951 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 }
Will Dysond5dee802005-09-16 02:55:07 -07002953
2954 error = driver_register(&idetape_driver.gen_driver);
2955 if (error)
2956 goto out_free_driver;
2957
2958 return 0;
2959
2960out_free_driver:
2961 driver_unregister(&idetape_driver.gen_driver);
2962out_free_class:
2963 class_destroy(idetape_sysfs_class);
2964out:
2965 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966}
2967
Kay Sievers263756e2005-12-12 18:03:44 +01002968MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969module_init(idetape_init);
2970module_exit(idetape_exit);
2971MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002972MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2973MODULE_LICENSE("GPL");