blob: 48fccf154f68c15be8e9309faf05076efbec2341 [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 */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200699static void idetape_retry_pc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100714 * Postpone the current request so that ide.c will be able to service requests
715 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100717static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 idetape_tape_t *tape = drive->driver_data;
720
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100721 debug_log(DBG_PROCS, "Enter %s\n", __func__);
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100724 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Borislav Petkovd236d742008-04-18 00:46:27 +0200727typedef void idetape_io_buf(ide_drive_t *, struct ide_atapi_pc *, unsigned int);
Borislav Petkova1efc852008-02-06 02:57:52 +0100728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/*
Borislav Petkova1efc852008-02-06 02:57:52 +0100730 * This is the usual interrupt handler which will be called during a packet
731 * command. We will transfer some of the data (as requested by the drive) and
732 * will re-point interrupt handler to us. When data transfer is finished, we
733 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100734 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100736static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 ide_hwif_t *hwif = drive->hwif;
739 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200740 struct ide_atapi_pc *pc = tape->pc;
Borislav Petkova1efc852008-02-06 02:57:52 +0100741 xfer_func_t *xferfunc;
742 idetape_io_buf *iobuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 unsigned int temp;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100744 u16 bcount;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100745 u8 stat, ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100747 debug_log(DBG_PROCS, "Enter %s - interrupt handler\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 /* Clear the interrupt */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100750 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Borislav Petkov346331f2008-04-18 00:46:26 +0200752 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200753 if (hwif->dma_ops->dma_end(drive) || (stat & ERR_STAT)) {
Borislav Petkov346331f2008-04-18 00:46:26 +0200754 pc->flags |= PC_FLAG_DMA_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 } else {
Borislav Petkovd236d742008-04-18 00:46:27 +0200756 pc->xferred = pc->req_xfer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 idetape_update_buffers(pc);
758 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100759 debug_log(DBG_PROCS, "DMA finished\n");
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
763 /* No more interrupts */
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100764 if ((stat & DRQ_STAT) == 0) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100765 debug_log(DBG_SENSE, "Packet command completed, %d bytes"
Borislav Petkovd236d742008-04-18 00:46:27 +0200766 " transferred\n", pc->xferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Borislav Petkov346331f2008-04-18 00:46:26 +0200768 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Bartlomiej Zolnierkiewicz87429bd2008-07-15 21:21:53 +0200769 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Borislav Petkov90699ce2008-02-02 19:56:50 +0100771 if ((stat & ERR_STAT) && pc->c[0] == REQUEST_SENSE)
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100772 stat &= ~ERR_STAT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200773 if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR)) {
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100774 /* Error detected */
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100775 debug_log(DBG_ERR, "%s: I/O error\n", tape->name);
776
Borislav Petkov90699ce2008-02-02 19:56:50 +0100777 if (pc->c[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200778 printk(KERN_ERR "%s: I/O error in request sense"
779 " command\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return ide_do_reset(drive);
781 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100782 debug_log(DBG_ERR, "[cmd %x]: check condition\n",
783 pc->c[0]);
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* Retry operation */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200786 idetape_retry_pc(drive);
787 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
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;
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200808 printk(KERN_ERR "%s: The device wants to issue more interrupts "
809 "in DMA mode\n", drive->name);
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) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200820 printk(KERN_ERR "%s: CoD != 0 in %s\n", drive->name, __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 */
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200825 printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
826 "to %s!\n", drive->name,
827 (ireason & IO) ? "Write" : "Read",
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) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200836 printk(KERN_ERR "%s: The device wants to send "
837 "us more data than expected - "
838 "discarding data\n",
839 drive->name);
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200840 ide_pad_transfer(drive, 0, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100841 ide_set_handler(drive, &idetape_pc_intr,
842 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return ide_started;
844 }
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200845 debug_log(DBG_SENSE, "The device wants to send us more "
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100846 "data than expected - allowing transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Borislav Petkova1efc852008-02-06 02:57:52 +0100848 iobuf = &idetape_input_buffers;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200849 xferfunc = hwif->input_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 } else {
Borislav Petkova1efc852008-02-06 02:57:52 +0100851 iobuf = &idetape_output_buffers;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200852 xferfunc = hwif->output_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
Borislav Petkova1efc852008-02-06 02:57:52 +0100854
855 if (pc->bh)
856 iobuf(drive, pc, bcount);
857 else
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200858 xferfunc(drive, NULL, pc->cur_pos, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /* Update the current position */
Borislav Petkovd236d742008-04-18 00:46:27 +0200861 pc->xferred += bcount;
862 pc->cur_pos += bcount;
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100863
864 debug_log(DBG_SENSE, "[cmd %x] transferred %d bytes on that intr.\n",
865 pc->c[0], bcount);
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* And set the interrupt handler again */
868 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
869 return ide_started;
870}
871
872/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100873 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100875 * The current Packet Command is available in tape->pc, and will not change
876 * until we finish handling it. Each packet command is associated with a
877 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100879 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100881 * 1. idetape_issue_pc will send the packet command to the drive, and will set
882 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100884 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
885 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100887 * 3. ATAPI Tape media access commands have immediate status with a delayed
888 * process. In case of a successful initiation of a media access packet command,
889 * the DSC bit will be set when the actual execution of the command is finished.
890 * Since the tape drive will not issue an interrupt, we have to poll for this
891 * event. In this case, we define the request as "low priority request" by
892 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
893 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100895 * ide.c will then give higher priority to requests which originate from the
896 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100898 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100900 * 5. In case an error was found, we queue a request sense packet command in
901 * front of the request queue and retry the operation up to
902 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100904 * 6. In case no error was found, or we decided to give up and not to retry
905 * again, the callback function will be called and then we will handle the next
906 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
908static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
909{
910 ide_hwif_t *hwif = drive->hwif;
911 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200912 struct ide_atapi_pc *pc = tape->pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 int retries = 100;
914 ide_startstop_t startstop;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100915 u8 ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100917 if (ide_wait_stat(&startstop, drive, DRQ_STAT, BUSY_STAT, WAIT_READY)) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200918 printk(KERN_ERR "%s: Strange, packet command initiated yet "
919 "DRQ isn't asserted\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return startstop;
921 }
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200922 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100923 while (retries-- && ((ireason & CD) == 0 || (ireason & IO))) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200924 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
925 "a packet command, retrying\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 udelay(100);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200927 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (retries == 0) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200929 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
930 "a packet command, ignoring\n",
931 drive->name);
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100932 ireason |= CD;
933 ireason &= ~IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935 }
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100936 if ((ireason & CD) == 0 || (ireason & IO)) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200937 printk(KERN_ERR "%s: (IO,CoD) != (0,1) while issuing "
938 "a packet command\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return ide_do_reset(drive);
940 }
941 /* Set the interrupt routine */
942 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
Bartlomiej Zolnierkiewicz91395a12008-07-15 21:21:54 +0200943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 /* Begin DMA, if necessary */
Borislav Petkov346331f2008-04-18 00:46:26 +0200945 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200946 hwif->dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz91395a12008-07-15 21:21:54 +0200947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* Send the actual packet */
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200949 hwif->output_data(drive, NULL, pc->c, 12);
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return ide_started;
952}
953
Borislav Petkovd236d742008-04-18 00:46:27 +0200954static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
955 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 ide_hwif_t *hwif = drive->hwif;
958 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 int dma_ok = 0;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100960 u16 bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Borislav Petkov90699ce2008-02-02 19:56:50 +0100962 if (tape->pc->c[0] == REQUEST_SENSE &&
963 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
965 "Two request sense in serial were issued\n");
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Borislav Petkov90699ce2008-02-02 19:56:50 +0100968 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 tape->failed_pc = pc;
970 /* Set the current packet command */
971 tape->pc = pc;
972
973 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200974 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100976 * We will "abort" retrying a packet command in case legitimate
977 * error code was received (crossing a filemark, or end of the
978 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200980 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100981 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 tape->sense_key == 2 && tape->asc == 4 &&
983 (tape->ascq == 1 || tape->ascq == 8))) {
984 printk(KERN_ERR "ide-tape: %s: I/O error, "
985 "pc = %2x, key = %2x, "
986 "asc = %2x, ascq = %2x\n",
987 tape->name, pc->c[0],
988 tape->sense_key, tape->asc,
989 tape->ascq);
990 }
991 /* Giving up */
992 pc->error = IDETAPE_ERROR_GENERAL;
993 }
994 tape->failed_pc = NULL;
Borislav Petkovd236d742008-04-18 00:46:27 +0200995 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100997 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 pc->retries++;
1000 /* We haven't transferred any data yet */
Borislav Petkovd236d742008-04-18 00:46:27 +02001001 pc->xferred = 0;
1002 pc->cur_pos = pc->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /* Request to transfer the entire buffer at once */
Borislav Petkovd236d742008-04-18 00:46:27 +02001004 bcount = pc->req_xfer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Borislav Petkov346331f2008-04-18 00:46:26 +02001006 if (pc->flags & PC_FLAG_DMA_ERROR) {
1007 pc->flags &= ~PC_FLAG_DMA_ERROR;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001008 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
Borislav Petkov346331f2008-04-18 00:46:26 +02001010 if ((pc->flags & PC_FLAG_DMA_RECOMMENDED) && drive->using_dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001011 dma_ok = !hwif->dma_ops->dma_setup(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Bartlomiej Zolnierkiewicz9a410e72008-07-15 21:21:48 +02001013 ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_DEVICE, bcount, dma_ok);
Bartlomiej Zolnierkiewicz2fc57382008-01-25 22:17:13 +01001014
Borislav Petkov346331f2008-04-18 00:46:26 +02001015 if (dma_ok)
1016 /* Will begin DMA later */
1017 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
1018 if (test_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags)) {
Bartlomiej Zolnierkiewiczc1c9dbc2008-02-02 19:56:44 +01001019 ide_execute_command(drive, WIN_PACKETCMD, &idetape_transfer_pc,
1020 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return ide_started;
1022 } else {
Bartlomiej Zolnierkiewicz1fc14252008-04-28 23:44:39 +02001023 ide_execute_pkt_cmd(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return idetape_transfer_pc(drive);
1025 }
1026}
1027
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001028static ide_startstop_t idetape_pc_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001031
1032 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 idetape_end_request(drive, tape->pc->error ? 0 : 1, 0);
1035 return ide_stopped;
1036}
1037
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001038/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +02001039static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001042 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001044 /* DBD = 1 - Don't return block descriptors */
1045 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 pc->c[2] = page_code;
1047 /*
1048 * Changed pc->c[3] to 0 (255 will at best return unused info).
1049 *
1050 * For SCSI this byte is defined as subpage instead of high byte
1051 * of length and some IDE drives seem to interpret it this way
1052 * and return an error when 255 is used.
1053 */
1054 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001055 /* We will just discard data in that case */
1056 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +02001058 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +02001060 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 else
Borislav Petkovd236d742008-04-18 00:46:27 +02001062 pc->req_xfer = 50;
1063 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001066static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001069 struct ide_atapi_pc *pc = tape->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001070 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001072 stat = ide_read_status(drive);
1073
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001074 if (stat & SEEK_STAT) {
1075 if (stat & ERR_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +01001077 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 printk(KERN_ERR "ide-tape: %s: I/O error, ",
1079 tape->name);
1080 /* Retry operation */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +02001081 idetape_retry_pc(drive);
1082 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084 pc->error = 0;
1085 if (tape->failed_pc == pc)
1086 tape->failed_pc = NULL;
1087 } else {
1088 pc->error = IDETAPE_ERROR_GENERAL;
1089 tape->failed_pc = NULL;
1090 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001091 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001094static ide_startstop_t idetape_rw_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 idetape_tape_t *tape = drive->driver_data;
1097 struct request *rq = HWGROUP(drive)->rq;
Borislav Petkovd236d742008-04-18 00:46:27 +02001098 int blocks = tape->pc->xferred / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Borislav Petkov54bb2072008-02-06 02:57:52 +01001100 tape->avg_size += blocks * tape->blk_size;
Borislav Petkov83042b22008-04-27 15:38:27 +02001101
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -08001102 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001103 tape->avg_speed = tape->avg_size * HZ /
1104 (jiffies - tape->avg_time) / 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 tape->avg_size = 0;
1106 tape->avg_time = jiffies;
1107 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001108 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Borislav Petkov54bb2072008-02-06 02:57:52 +01001110 tape->first_frame += blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 rq->current_nr_sectors -= blocks;
1112
1113 if (!tape->pc->error)
1114 idetape_end_request(drive, 1, 0);
1115 else
1116 idetape_end_request(drive, tape->pc->error, 0);
1117 return ide_stopped;
1118}
1119
Borislav Petkovd236d742008-04-18 00:46:27 +02001120static void idetape_create_read_cmd(idetape_tape_t *tape,
1121 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001122 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
1124 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001125 pc->c[0] = READ_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001126 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +02001128 pc->idetape_callback = &idetape_rw_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 pc->bh = bh;
1130 atomic_set(&bh->b_count, 0);
Borislav Petkovd236d742008-04-18 00:46:27 +02001131 pc->buf = NULL;
1132 pc->buf_size = length * tape->blk_size;
1133 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001134 if (pc->req_xfer == tape->buffer_size)
Borislav Petkov346331f2008-04-18 00:46:26 +02001135 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
Borislav Petkovd236d742008-04-18 00:46:27 +02001138static void idetape_create_write_cmd(idetape_tape_t *tape,
1139 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001140 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
1142 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001143 pc->c[0] = WRITE_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001144 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +02001146 pc->idetape_callback = &idetape_rw_callback;
Borislav Petkov346331f2008-04-18 00:46:26 +02001147 pc->flags |= PC_FLAG_WRITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 pc->bh = bh;
1149 pc->b_data = bh->b_data;
1150 pc->b_count = atomic_read(&bh->b_count);
Borislav Petkovd236d742008-04-18 00:46:27 +02001151 pc->buf = NULL;
1152 pc->buf_size = length * tape->blk_size;
1153 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001154 if (pc->req_xfer == tape->buffer_size)
Borislav Petkov346331f2008-04-18 00:46:26 +02001155 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158static ide_startstop_t idetape_do_request(ide_drive_t *drive,
1159 struct request *rq, sector_t block)
1160{
1161 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001162 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001164 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001166 debug_log(DBG_SENSE, "sector: %ld, nr_sectors: %ld,"
1167 " current_nr_sectors: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 rq->sector, rq->nr_sectors, rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Jens Axboe4aff5e22006-08-10 08:44:47 +02001170 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001171 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +02001173 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 ide_end_request(drive, 0, 0);
1175 return ide_stopped;
1176 }
1177
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001178 /* Retry a failed packet command */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001179 if (tape->failed_pc && tape->pc->c[0] == REQUEST_SENSE)
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001180 return idetape_issue_pc(drive, tape->failed_pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (postponed_rq != NULL)
1183 if (rq != postponed_rq) {
1184 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
1185 "Two DSC requests were queued\n");
1186 idetape_end_request(drive, 0, 0);
1187 return ide_stopped;
1188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 tape->postponed_rq = NULL;
1191
1192 /*
1193 * If the tape is still busy, postpone our request and service
1194 * the other device meanwhile.
1195 */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001196 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 if (!drive->dsc_overlap && !(rq->cmd[0] & REQ_IDETAPE_PC2))
Borislav Petkov346331f2008-04-18 00:46:26 +02001199 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (drive->post_reset == 1) {
Borislav Petkov346331f2008-04-18 00:46:26 +02001202 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 drive->post_reset = 0;
1204 }
1205
Borislav Petkov346331f2008-04-18 00:46:26 +02001206 if (!test_and_clear_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags) &&
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001207 (stat & SEEK_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (postponed_rq == NULL) {
1209 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001210 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
1212 } else if (time_after(jiffies, tape->dsc_timeout)) {
1213 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
1214 tape->name);
1215 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1216 idetape_media_access_finished(drive);
1217 return ide_stopped;
1218 } else {
1219 return ide_do_reset(drive);
1220 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001221 } else if (time_after(jiffies,
1222 tape->dsc_polling_start +
1223 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001224 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 idetape_postpone_request(drive);
1226 return ide_stopped;
1227 }
1228 if (rq->cmd[0] & REQ_IDETAPE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001230 idetape_create_read_cmd(tape, pc, rq->current_nr_sectors,
1231 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 goto out;
1233 }
1234 if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001236 idetape_create_write_cmd(tape, pc, rq->current_nr_sectors,
1237 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 goto out;
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (rq->cmd[0] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +02001241 pc = (struct ide_atapi_pc *) rq->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 rq->cmd[0] &= ~(REQ_IDETAPE_PC1);
1243 rq->cmd[0] |= REQ_IDETAPE_PC2;
1244 goto out;
1245 }
1246 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1247 idetape_media_access_finished(drive);
1248 return ide_stopped;
1249 }
1250 BUG();
1251out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001252 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255/*
Borislav Petkov41aa1702008-04-27 15:38:32 +02001256 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +02001257 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001258 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 *
Borislav Petkov41aa1702008-04-27 15:38:32 +02001260 * It returns a pointer to the newly allocated buffer, or NULL in case of
1261 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001263static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
1264 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001266 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +02001267 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001268 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 char *b_data = NULL;
1270
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001271 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1272 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (bh == NULL)
1274 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001275
1276 order = fls(pages) - 1;
1277 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001278 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001280 b_allocd = (1 << order) * PAGE_SIZE;
1281 pages &= (order-1);
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001284 memset(bh->b_data, 0, b_allocd);
1285 bh->b_reqnext = NULL;
1286 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1288
Borislav Petkov41aa1702008-04-27 15:38:32 +02001289 while (pages) {
1290 order = fls(pages) - 1;
1291 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001292 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001294 b_allocd = (1 << order) * PAGE_SIZE;
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001297 memset(b_data, 0, b_allocd);
1298
1299 /* newly allocated page frames below buffer header or ...*/
1300 if (bh->b_data == b_data + b_allocd) {
1301 bh->b_size += b_allocd;
1302 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001304 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 continue;
1306 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001307 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001309 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001311 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 continue;
1313 }
1314 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001315 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1316 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001317 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 goto abort;
1319 }
1320 bh->b_reqnext = NULL;
1321 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001322 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1324 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001325
1326 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 bh->b_size -= tape->excess_bh_size;
1330 if (full)
1331 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001332 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001334 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return NULL;
1336}
1337
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001338static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +02001339 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 struct idetape_bh *bh = tape->bh;
1342 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001343 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001347 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1348 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001349 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001351 count = min((unsigned int)
1352 (bh->b_size - atomic_read(&bh->b_count)),
1353 (unsigned int)n);
1354 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1355 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001356 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 n -= count;
1358 atomic_add(count, &bh->b_count);
1359 buf += count;
1360 if (atomic_read(&bh->b_count) == bh->b_size) {
1361 bh = bh->b_reqnext;
1362 if (bh)
1363 atomic_set(&bh->b_count, 0);
1364 }
1365 }
1366 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001367 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001370static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001371 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 struct idetape_bh *bh = tape->bh;
1374 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001375 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001379 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1380 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001381 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001384 if (copy_to_user(buf, tape->b_data, count))
1385 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 n -= count;
1387 tape->b_data += count;
1388 tape->b_count -= count;
1389 buf += count;
1390 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001391 bh = bh->b_reqnext;
1392 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 if (bh) {
1394 tape->b_data = bh->b_data;
1395 tape->b_count = atomic_read(&bh->b_count);
1396 }
1397 }
1398 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001399 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001402static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001404 struct idetape_bh *bh = tape->merge_bh;
1405 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001406
Borislav Petkov54abf372008-02-06 02:57:52 +01001407 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 atomic_set(&bh->b_count, 0);
1409 else {
1410 tape->b_data = bh->b_data;
1411 tape->b_count = atomic_read(&bh->b_count);
1412 }
1413}
1414
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001415static ide_startstop_t idetape_read_position_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
1417 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001418 u8 *readpos = tape->pc->buf;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001419
1420 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 if (!tape->pc->error) {
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001423 debug_log(DBG_SENSE, "BOP - %s\n",
1424 (readpos[0] & 0x80) ? "Yes" : "No");
1425 debug_log(DBG_SENSE, "EOP - %s\n",
1426 (readpos[0] & 0x40) ? "Yes" : "No");
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001427
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001428 if (readpos[0] & 0x4) {
1429 printk(KERN_INFO "ide-tape: Block location is unknown"
1430 "to the tape\n");
Borislav Petkov346331f2008-04-18 00:46:26 +02001431 clear_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 idetape_end_request(drive, 0, 0);
1433 } else {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001434 debug_log(DBG_SENSE, "Block Location - %u\n",
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001435 be32_to_cpu(*(u32 *)&readpos[4]));
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001436
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001437 tape->partition = readpos[1];
Borislav Petkov54bb2072008-02-06 02:57:52 +01001438 tape->first_frame =
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001439 be32_to_cpu(*(u32 *)&readpos[4]);
Borislav Petkov346331f2008-04-18 00:46:26 +02001440 set_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 idetape_end_request(drive, 1, 0);
1442 }
1443 } else {
1444 idetape_end_request(drive, 0, 0);
1445 }
1446 return ide_stopped;
1447}
1448
1449/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001450 * Write a filemark if write_filemark=1. Flush the device buffers without
1451 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001453static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001454 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
1456 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001457 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001459 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001460 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Borislav Petkovd236d742008-04-18 00:46:27 +02001463static void idetape_create_test_unit_ready_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
1465 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001466 pc->c[0] = TEST_UNIT_READY;
Borislav Petkovd236d742008-04-18 00:46:27 +02001467 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
1470/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001471 * We add a special packet command request to the tail of the request queue, and
1472 * wait for it to be serviced. This is not to be called from within the request
1473 * handling part of the driver! We allocate here data on the stack and it is
1474 * valid until the request is finished. This is not the case for the bottom part
1475 * of the driver, where we are always leaving the functions to wait for an
1476 * interrupt or a timer event.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001478 * From the bottom part of the driver, we should allocate safe memory using
1479 * idetape_next_pc_storage() and ide_tape_next_rq_storage(), and add the request
1480 * to the request list without waiting for it to be serviced! In that case, we
1481 * usually use idetape_queue_pc_head().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 */
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001483static int idetape_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
1485 struct ide_tape_obj *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001486 struct request *rq;
1487 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001489 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1490 rq->cmd_type = REQ_TYPE_SPECIAL;
1491 rq->cmd[0] = REQ_IDETAPE_PC1;
1492 rq->buffer = (char *)pc;
1493 error = blk_execute_rq(drive->queue, tape->disk, rq, 0);
1494 blk_put_request(rq);
1495 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Borislav Petkovd236d742008-04-18 00:46:27 +02001498static void idetape_create_load_unload_cmd(ide_drive_t *drive,
1499 struct ide_atapi_pc *pc, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
1501 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001502 pc->c[0] = START_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 pc->c[4] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001504 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001505 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
1508static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1509{
1510 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001511 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 int load_attempted = 0;
1513
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001514 /* Wait for the tape to become ready */
Borislav Petkov346331f2008-04-18 00:46:26 +02001515 set_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 timeout += jiffies;
1517 while (time_before(jiffies, timeout)) {
1518 idetape_create_test_unit_ready_cmd(&pc);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001519 if (!idetape_queue_pc_tail(drive, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return 0;
1521 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001522 || (tape->asc == 0x3A)) {
1523 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (load_attempted)
1525 return -ENOMEDIUM;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001526 idetape_create_load_unload_cmd(drive, &pc,
1527 IDETAPE_LU_LOAD_MASK);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001528 idetape_queue_pc_tail(drive, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 load_attempted = 1;
1530 /* not about to be ready */
1531 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1532 (tape->ascq == 1 || tape->ascq == 8)))
1533 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001534 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
1536 return -EIO;
1537}
1538
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001539static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Borislav Petkovd236d742008-04-18 00:46:27 +02001541 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 int rc;
1543
1544 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001545 rc = idetape_queue_pc_tail(drive, &pc);
1546 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return rc;
1548 idetape_wait_ready(drive, 60 * 5 * HZ);
1549 return 0;
1550}
1551
Borislav Petkovd236d742008-04-18 00:46:27 +02001552static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001555 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001556 pc->req_xfer = 20;
1557 pc->idetape_callback = &idetape_read_position_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001560static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
1562 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001563 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 int position;
1565
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001566 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 idetape_create_read_position_cmd(&pc);
1569 if (idetape_queue_pc_tail(drive, &pc))
1570 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001571 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 return position;
1573}
1574
Borislav Petkovd236d742008-04-18 00:46:27 +02001575static void idetape_create_locate_cmd(ide_drive_t *drive,
1576 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001577 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001580 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001582 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001584 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001585 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Borislav Petkovd236d742008-04-18 00:46:27 +02001588static int idetape_create_prevent_cmd(ide_drive_t *drive,
1589 struct ide_atapi_pc *pc, int prevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 idetape_tape_t *tape = drive->driver_data;
1592
Borislav Petkovb6422012008-02-02 19:56:49 +01001593 /* device supports locking according to capabilities page */
1594 if (!(tape->caps[6] & 0x01))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return 0;
1596
1597 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001598 pc->c[0] = ALLOW_MEDIUM_REMOVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 pc->c[4] = prevent;
Borislav Petkovd236d742008-04-18 00:46:27 +02001600 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 return 1;
1602}
1603
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001604static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Borislav Petkov54abf372008-02-06 02:57:52 +01001608 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001609 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Borislav Petkov83042b22008-04-27 15:38:27 +02001611 clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001612 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001613 if (tape->merge_bh != NULL) {
1614 ide_tape_kfree_buffer(tape);
1615 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617
Borislav Petkov54abf372008-02-06 02:57:52 +01001618 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
1621/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001622 * Position the tape to the requested block using the LOCATE packet command.
1623 * A READ POSITION command is then issued to check where we are positioned. Like
1624 * all higher level operations, we queue the commands at the tail of the request
1625 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001627static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1628 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 idetape_tape_t *tape = drive->driver_data;
1631 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001632 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Borislav Petkov54abf372008-02-06 02:57:52 +01001634 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001635 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 idetape_wait_ready(drive, 60 * 5 * HZ);
1637 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
1638 retval = idetape_queue_pc_tail(drive, &pc);
1639 if (retval)
1640 return (retval);
1641
1642 idetape_create_read_position_cmd(&pc);
1643 return (idetape_queue_pc_tail(drive, &pc));
1644}
1645
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001646static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001647 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
1649 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 int seek, position;
1651
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001652 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (restore_position) {
1654 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001655 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001657 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001658 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return;
1660 }
1661 }
1662}
1663
1664/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001665 * Generate a read/write request for the block device interface and wait for it
1666 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001668static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1669 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001672 struct request *rq;
1673 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001675 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1676
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001677 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1678 rq->cmd_type = REQ_TYPE_SPECIAL;
1679 rq->cmd[0] = cmd;
1680 rq->rq_disk = tape->disk;
1681 rq->special = (void *)bh;
1682 rq->sector = tape->first_frame;
1683 rq->nr_sectors = blocks;
1684 rq->current_nr_sectors = blocks;
1685 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1686
1687 errors = rq->errors;
1688 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1689 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1692 return 0;
1693
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001694 if (tape->merge_bh)
1695 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001696 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001698 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Borislav Petkovd236d742008-04-18 00:46:27 +02001701static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001704 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001705 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001706 pc->req_xfer = 254;
1707 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
Borislav Petkovd236d742008-04-18 00:46:27 +02001710static void idetape_create_rewind_cmd(ide_drive_t *drive,
1711 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
1713 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001714 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001715 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001716 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Borislav Petkovd236d742008-04-18 00:46:27 +02001719static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
1721 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001722 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001724 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001725 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726}
1727
Borislav Petkovd236d742008-04-18 00:46:27 +02001728static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
1730 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001731 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001732 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001734 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001735 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
Borislav Petkov97c566c2008-04-27 15:38:25 +02001738/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001739static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
1741 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001743 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001745 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001746 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
Borislav Petkovd9df9372008-04-27 15:38:34 +02001749static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
1751 idetape_tape_t *tape = drive->driver_data;
1752 int blocks, min;
1753 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001754
Borislav Petkov54abf372008-02-06 02:57:52 +01001755 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001756 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001757 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return;
1759 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001760 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001762 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001764 if (tape->merge_bh_size) {
1765 blocks = tape->merge_bh_size / tape->blk_size;
1766 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 unsigned int i;
1768
1769 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001770 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001771 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 bh = tape->bh->b_reqnext;
1773 while (bh) {
1774 atomic_set(&bh->b_count, 0);
1775 bh = bh->b_reqnext;
1776 }
1777 bh = tape->bh;
1778 while (i) {
1779 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001780 printk(KERN_INFO "ide-tape: bug,"
1781 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 break;
1783 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001784 min = min(i, (unsigned int)(bh->b_size -
1785 atomic_read(&bh->b_count)));
1786 memset(bh->b_data + atomic_read(&bh->b_count),
1787 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 atomic_add(min, &bh->b_count);
1789 i -= min;
1790 bh = bh->b_reqnext;
1791 }
1792 }
1793 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001794 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001796 if (tape->merge_bh != NULL) {
1797 ide_tape_kfree_buffer(tape);
1798 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001800 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
Borislav Petkov83042b22008-04-27 15:38:27 +02001803static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001809 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1810 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001811 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 idetape_flush_tape_buffers(drive);
1813 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001814 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001815 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001816 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001817 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001819 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1820 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001822 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001825 * Issue a read 0 command to ensure that DSC handshake is
1826 * switched from completion mode to buffer available mode.
1827 * No point in issuing this if DSC overlap isn't supported, some
1828 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 */
1830 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001831 bytes_read = idetape_queue_rw_tail(drive,
1832 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001833 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001835 ide_tape_kfree_buffer(tape);
1836 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001837 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return bytes_read;
1839 }
1840 }
1841 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return 0;
1844}
1845
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001846/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001847static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001851 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001853 /* If we are at a filemark, return a read length of 0 */
Borislav Petkov346331f2008-04-18 00:46:26 +02001854 if (test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return 0;
1856
Borislav Petkov83042b22008-04-27 15:38:27 +02001857 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001859 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001860 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001863static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 idetape_tape_t *tape = drive->driver_data;
1866 struct idetape_bh *bh;
1867 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 while (bcount) {
1870 unsigned int count;
1871
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001872 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001873 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001875 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001877 atomic_set(&bh->b_count,
1878 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1880 count -= atomic_read(&bh->b_count);
1881 bh = bh->b_reqnext;
1882 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001883 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001884 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
1886}
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001889 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1890 * currently support only one partition.
1891 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001892static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
1894 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001895 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001896 idetape_tape_t *tape;
1897 tape = drive->driver_data;
1898
1899 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 idetape_create_rewind_cmd(drive, &pc);
1902 retval = idetape_queue_pc_tail(drive, &pc);
1903 if (retval)
1904 return retval;
1905
1906 idetape_create_read_position_cmd(&pc);
1907 retval = idetape_queue_pc_tail(drive, &pc);
1908 if (retval)
1909 return retval;
1910 return 0;
1911}
1912
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001913/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001914static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1915 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 void __user *argp = (void __user *)arg;
1919
Borislav Petkovd59823f2008-02-02 19:56:51 +01001920 struct idetape_config {
1921 int dsc_rw_frequency;
1922 int dsc_media_access_frequency;
1923 int nr_stages;
1924 } config;
1925
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001926 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001929 case 0x0340:
1930 if (copy_from_user(&config, argp, sizeof(config)))
1931 return -EFAULT;
1932 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001933 break;
1934 case 0x0350:
1935 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001936 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001937 if (copy_to_user(argp, &config, sizeof(config)))
1938 return -EFAULT;
1939 break;
1940 default:
1941 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943 return 0;
1944}
1945
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001946static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1947 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
1949 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001950 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001951 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001952 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 if (mt_count == 0)
1955 return 0;
1956 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001957 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001959 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961
Borislav Petkov54abf372008-02-06 02:57:52 +01001962 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001963 tape->merge_bh_size = 0;
Borislav Petkov346331f2008-04-18 00:46:26 +02001964 if (test_and_clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001966 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001970 case MTFSF:
1971 case MTBSF:
1972 idetape_create_space_cmd(&pc, mt_count - count,
1973 IDETAPE_SPACE_OVER_FILEMARK);
1974 return idetape_queue_pc_tail(drive, &pc);
1975 case MTFSFM:
1976 case MTBSFM:
1977 if (!sprev)
1978 return -EIO;
1979 retval = idetape_space_over_filemarks(drive, MTFSF,
1980 mt_count - count);
1981 if (retval)
1982 return retval;
1983 count = (MTBSFM == mt_op ? 1 : -1);
1984 return idetape_space_over_filemarks(drive, MTFSF, count);
1985 default:
1986 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1987 mt_op);
1988 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990}
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001993 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001995 * The tape is optimized to maximize throughput when it is transferring an
1996 * integral number of the "continuous transfer limit", which is a parameter of
1997 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001999 * As of version 1.3 of the driver, the character device provides an abstract
2000 * continuous view of the media - any mix of block sizes (even 1 byte) on the
2001 * same backup/restore procedure is supported. The driver will internally
2002 * convert the requests to the recommended transfer unit, so that an unmatch
2003 * between the user's block size to the recommended size will only result in a
2004 * (slightly) increased driver overhead, but will no longer hit performance.
2005 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002007static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
2008 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
2010 struct ide_tape_obj *tape = ide_tape_f(file);
2011 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002012 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07002013 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002014 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002016 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Borislav Petkov54abf372008-02-06 02:57:52 +01002018 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002019 if (test_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01002020 if (count > tape->blk_size &&
2021 (count % tape->blk_size) == 0)
2022 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 }
Borislav Petkov83042b22008-04-27 15:38:27 +02002024 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01002025 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return rc;
2027 if (count == 0)
2028 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002029 if (tape->merge_bh_size) {
2030 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002031 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02002032 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002033 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002035 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 count -= actually_read;
2037 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002038 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002039 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (bytes_read <= 0)
2041 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02002042 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002043 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 buf += bytes_read;
2045 count -= bytes_read;
2046 actually_read += bytes_read;
2047 }
2048 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002049 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (bytes_read <= 0)
2051 goto finish;
2052 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02002053 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002054 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002056 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058finish:
Borislav Petkov346331f2008-04-18 00:46:26 +02002059 if (!actually_read && test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002060 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 idetape_space_over_filemarks(drive, MTFSF, 1);
2063 return 0;
2064 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07002065
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002066 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002069static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 size_t count, loff_t *ppos)
2071{
2072 struct ide_tape_obj *tape = ide_tape_f(file);
2073 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07002074 ssize_t actually_written = 0;
2075 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002076 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 /* The drive is write protected. */
2079 if (tape->write_prot)
2080 return -EACCES;
2081
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002082 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01002085 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
2086 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002087 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002088 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002089 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002091 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002093 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
2094 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01002096 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002097 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002100 * Issue a write 0 command to ensure that DSC handshake is
2101 * switched from completion mode to buffer available mode. No
2102 * point in issuing this if DSC overlap isn't supported, some
2103 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 */
2105 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002106 ssize_t retval = idetape_queue_rw_tail(drive,
2107 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002108 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002110 ide_tape_kfree_buffer(tape);
2111 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01002112 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return retval;
2114 }
2115 }
2116 }
2117 if (count == 0)
2118 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002119 if (tape->merge_bh_size) {
2120 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002121 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002122 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002124 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002125 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002126 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02002127 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002128 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002130 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 count -= actually_written;
2132
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002133 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002134 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002135 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002136 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (retval <= 0)
2138 return (retval);
2139 }
2140 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002141 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002142 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002143 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002144 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002145 buf += tape->buffer_size;
2146 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002147 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002148 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (retval <= 0)
2150 return (retval);
2151 }
2152 if (count) {
2153 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02002154 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002155 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002156 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002158 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159}
2160
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002161static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
Borislav Petkovd236d742008-04-18 00:46:27 +02002163 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 /* Write a filemark */
2166 idetape_create_write_filemark_cmd(drive, &pc, 1);
2167 if (idetape_queue_pc_tail(drive, &pc)) {
2168 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
2169 return -EIO;
2170 }
2171 return 0;
2172}
2173
2174/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002175 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
2176 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002178 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
2179 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02002180 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002182 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002184 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
2185 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002187static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002190 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002191 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002193 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
2194 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002197 case MTFSF:
2198 case MTFSFM:
2199 case MTBSF:
2200 case MTBSFM:
2201 if (!mt_count)
2202 return 0;
2203 return idetape_space_over_filemarks(drive, mt_op, mt_count);
2204 default:
2205 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002209 case MTWEOF:
2210 if (tape->write_prot)
2211 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002212 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002213 for (i = 0; i < mt_count; i++) {
2214 retval = idetape_write_filemark(drive);
2215 if (retval)
2216 return retval;
2217 }
2218 return 0;
2219 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002220 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002221 if (idetape_rewind_tape(drive))
2222 return -EIO;
2223 return 0;
2224 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002225 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002226 idetape_create_load_unload_cmd(drive, &pc,
2227 IDETAPE_LU_LOAD_MASK);
2228 return idetape_queue_pc_tail(drive, &pc);
2229 case MTUNLOAD:
2230 case MTOFFL:
2231 /*
2232 * If door is locked, attempt to unlock before
2233 * attempting to eject.
2234 */
2235 if (tape->door_locked) {
2236 if (idetape_create_prevent_cmd(drive, &pc, 0))
2237 if (!idetape_queue_pc_tail(drive, &pc))
2238 tape->door_locked = DOOR_UNLOCKED;
2239 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002240 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002241 idetape_create_load_unload_cmd(drive, &pc,
2242 !IDETAPE_LU_LOAD_MASK);
2243 retval = idetape_queue_pc_tail(drive, &pc);
2244 if (!retval)
Borislav Petkov346331f2008-04-18 00:46:26 +02002245 clear_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002246 return retval;
2247 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002248 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002249 return idetape_flush_tape_buffers(drive);
2250 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002251 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002252 idetape_create_load_unload_cmd(drive, &pc,
2253 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
2254 return idetape_queue_pc_tail(drive, &pc);
2255 case MTEOM:
2256 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
2257 return idetape_queue_pc_tail(drive, &pc);
2258 case MTERASE:
2259 (void)idetape_rewind_tape(drive);
2260 idetape_create_erase_cmd(&pc);
2261 return idetape_queue_pc_tail(drive, &pc);
2262 case MTSETBLK:
2263 if (mt_count) {
2264 if (mt_count < tape->blk_size ||
2265 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002267 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkov346331f2008-04-18 00:46:26 +02002268 clear_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002269 } else
Borislav Petkov346331f2008-04-18 00:46:26 +02002270 set_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002271 return 0;
2272 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002273 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002274 return idetape_position_tape(drive,
2275 mt_count * tape->user_bs_factor, tape->partition, 0);
2276 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002277 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002278 return idetape_position_tape(drive, 0, mt_count, 0);
2279 case MTFSR:
2280 case MTBSR:
2281 case MTLOCK:
2282 if (!idetape_create_prevent_cmd(drive, &pc, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002284 retval = idetape_queue_pc_tail(drive, &pc);
2285 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002287 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
2288 return 0;
2289 case MTUNLOCK:
2290 if (!idetape_create_prevent_cmd(drive, &pc, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002292 retval = idetape_queue_pc_tail(drive, &pc);
2293 if (retval)
2294 return retval;
2295 tape->door_locked = DOOR_UNLOCKED;
2296 return 0;
2297 default:
2298 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
2299 mt_op);
2300 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 }
2302}
2303
2304/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002305 * Our character device ioctls. General mtio.h magnetic io commands are
2306 * supported here, and not in the corresponding block interface. Our own
2307 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002309static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
2310 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
2312 struct ide_tape_obj *tape = ide_tape_f(file);
2313 ide_drive_t *drive = tape->drive;
2314 struct mtop mtop;
2315 struct mtget mtget;
2316 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002317 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 void __user *argp = (void __user *)arg;
2319
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002320 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Borislav Petkov54abf372008-02-06 02:57:52 +01002322 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02002323 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 idetape_flush_tape_buffers(drive);
2325 }
2326 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002327 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01002328 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002329 position = idetape_read_position(drive);
2330 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return -EIO;
2332 }
2333 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002334 case MTIOCTOP:
2335 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
2336 return -EFAULT;
2337 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
2338 case MTIOCGET:
2339 memset(&mtget, 0, sizeof(struct mtget));
2340 mtget.mt_type = MT_ISSCSI2;
2341 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
2342 mtget.mt_dsreg =
2343 ((tape->blk_size * tape->user_bs_factor)
2344 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002345
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002346 if (tape->drv_write_prot)
2347 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
2348
2349 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
2350 return -EFAULT;
2351 return 0;
2352 case MTIOCPOS:
2353 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
2354 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
2355 return -EFAULT;
2356 return 0;
2357 default:
2358 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002359 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002360 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 }
2362}
2363
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002364/*
2365 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
2366 * block size with the reported value.
2367 */
2368static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
2369{
2370 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002371 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002372
2373 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
2374 if (idetape_queue_pc_tail(drive, &pc)) {
2375 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002376 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002377 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
2378 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002379 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002380 }
2381 return;
2382 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002383 tape->blk_size = (pc.buf[4 + 5] << 16) +
2384 (pc.buf[4 + 6] << 8) +
2385 pc.buf[4 + 7];
2386 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002387}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002389static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
2391 unsigned int minor = iminor(inode), i = minor & ~0xc0;
2392 ide_drive_t *drive;
2393 idetape_tape_t *tape;
Borislav Petkovd236d742008-04-18 00:46:27 +02002394 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 int retval;
2396
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002397 if (i >= MAX_HWIFS * MAX_DRIVES)
2398 return -ENXIO;
2399
2400 tape = ide_tape_chrdev_get(i);
2401 if (!tape)
2402 return -ENXIO;
2403
2404 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2405
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 /*
2407 * We really want to do nonseekable_open(inode, filp); here, but some
2408 * versions of tar incorrectly call lseek on tapes and bail out if that
2409 * fails. So we disallow pread() and pwrite(), but permit lseeks.
2410 */
2411 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 drive = tape->drive;
2414
2415 filp->private_data = tape;
2416
Borislav Petkov346331f2008-04-18 00:46:26 +02002417 if (test_and_set_bit(IDETAPE_FLAG_BUSY, &tape->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 retval = -EBUSY;
2419 goto out_put_tape;
2420 }
2421
2422 retval = idetape_wait_ready(drive, 60 * HZ);
2423 if (retval) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002424 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2426 goto out_put_tape;
2427 }
2428
2429 idetape_read_position(drive);
Borislav Petkov346331f2008-04-18 00:46:26 +02002430 if (!test_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 (void)idetape_rewind_tape(drive);
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002434 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 /* Set write protect flag if device is opened as read-only. */
2437 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2438 tape->write_prot = 1;
2439 else
2440 tape->write_prot = tape->drv_write_prot;
2441
2442 /* Make sure drive isn't write protected if user wants to write. */
2443 if (tape->write_prot) {
2444 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2445 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002446 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 retval = -EROFS;
2448 goto out_put_tape;
2449 }
2450 }
2451
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002452 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01002453 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if (idetape_create_prevent_cmd(drive, &pc, 1)) {
2455 if (!idetape_queue_pc_tail(drive, &pc)) {
2456 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2457 tape->door_locked = DOOR_LOCKED;
2458 }
2459 }
2460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return 0;
2462
2463out_put_tape:
2464 ide_tape_put(tape);
2465 return retval;
2466}
2467
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002468static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
2470 idetape_tape_t *tape = drive->driver_data;
2471
Borislav Petkovd9df9372008-04-27 15:38:34 +02002472 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002473 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2474 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002475 idetape_pad_zeros(drive, tape->blk_size *
2476 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002477 ide_tape_kfree_buffer(tape);
2478 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 }
2480 idetape_write_filemark(drive);
2481 idetape_flush_tape_buffers(drive);
2482 idetape_flush_tape_buffers(drive);
2483}
2484
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002485static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
2487 struct ide_tape_obj *tape = ide_tape_f(filp);
2488 ide_drive_t *drive = tape->drive;
Borislav Petkovd236d742008-04-18 00:46:27 +02002489 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 unsigned int minor = iminor(inode);
2491
2492 lock_kernel();
2493 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002494
2495 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Borislav Petkov54abf372008-02-06 02:57:52 +01002497 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002499 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002501 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002503
Borislav Petkov346331f2008-04-18 00:46:26 +02002504 if (minor < 128 && test_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002506 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (tape->door_locked == DOOR_LOCKED) {
2508 if (idetape_create_prevent_cmd(drive, &pc, 0)) {
2509 if (!idetape_queue_pc_tail(drive, &pc))
2510 tape->door_locked = DOOR_UNLOCKED;
2511 }
2512 }
2513 }
Borislav Petkov346331f2008-04-18 00:46:26 +02002514 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 ide_tape_put(tape);
2516 unlock_kernel();
2517 return 0;
2518}
2519
2520/*
Borislav Petkov71071b82008-02-06 02:57:53 +01002521 * check the contents of the ATAPI IDENTIFY command results. We return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002523 * 1 - If the tape can be supported by us, based on the information we have so
2524 * far.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002526 * 0 - If this tape driver is not currently supported by us.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 */
Borislav Petkov71071b82008-02-06 02:57:53 +01002528static int idetape_identify_device(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
Borislav Petkov71071b82008-02-06 02:57:53 +01002530 u8 gcw[2], protocol, device_type, removable, packet_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 if (drive->id_read == 0)
2533 return 1;
2534
Borislav Petkov71071b82008-02-06 02:57:53 +01002535 *((unsigned short *) &gcw) = drive->id->config;
2536
2537 protocol = (gcw[1] & 0xC0) >> 6;
2538 device_type = gcw[1] & 0x1F;
2539 removable = !!(gcw[0] & 0x80);
2540 packet_size = gcw[0] & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 /* Check that we can support this device */
Borislav Petkov71071b82008-02-06 02:57:53 +01002543 if (protocol != 2)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002544 printk(KERN_ERR "ide-tape: Protocol (0x%02x) is not ATAPI\n",
Borislav Petkov71071b82008-02-06 02:57:53 +01002545 protocol);
2546 else if (device_type != 1)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002547 printk(KERN_ERR "ide-tape: Device type (0x%02x) is not set "
Borislav Petkov71071b82008-02-06 02:57:53 +01002548 "to tape\n", device_type);
2549 else if (!removable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 printk(KERN_ERR "ide-tape: The removable flag is not set\n");
Borislav Petkov71071b82008-02-06 02:57:53 +01002551 else if (packet_size != 0) {
Borislav Petkov24d57f82008-02-06 02:57:54 +01002552 printk(KERN_ERR "ide-tape: Packet size (0x%02x) is not 12"
2553 " bytes\n", packet_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 } else
2555 return 1;
2556 return 0;
2557}
2558
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002559static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002562 struct ide_atapi_pc pc;
Borislav Petkov41f81d542008-02-06 02:57:52 +01002563 char fw_rev[6], vendor_id[10], product_id[18];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 idetape_create_inquiry_cmd(&pc);
2566 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002567 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2568 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 return;
2570 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002571 memcpy(vendor_id, &pc.buf[8], 8);
2572 memcpy(product_id, &pc.buf[16], 16);
2573 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002574
Borislav Petkov41f81d542008-02-06 02:57:52 +01002575 ide_fixstring(vendor_id, 10, 0);
2576 ide_fixstring(product_id, 18, 0);
2577 ide_fixstring(fw_rev, 6, 0);
2578
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002579 printk(KERN_INFO "ide-tape: %s <-> %s: %s %s rev %s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002580 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
2583/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002584 * Ask the tape about its various parameters. In particular, we will adjust our
2585 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002587static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
2589 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002590 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002591 u8 *caps;
2592 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
2595 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002596 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2597 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002598 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002599 put_unaligned(52, (u16 *)&tape->caps[12]);
2600 put_unaligned(540, (u16 *)&tape->caps[14]);
2601 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 return;
2603 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002604 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Borislav Petkovb6422012008-02-02 19:56:49 +01002606 /* convert to host order and save for later use */
2607 speed = be16_to_cpu(*(u16 *)&caps[14]);
2608 max_speed = be16_to_cpu(*(u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Borislav Petkovb6422012008-02-02 19:56:49 +01002610 put_unaligned(max_speed, (u16 *)&caps[8]);
2611 put_unaligned(be16_to_cpu(*(u16 *)&caps[12]), (u16 *)&caps[12]);
2612 put_unaligned(speed, (u16 *)&caps[14]);
2613 put_unaligned(be16_to_cpu(*(u16 *)&caps[16]), (u16 *)&caps[16]);
2614
2615 if (!speed) {
2616 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2617 "(assuming 650KB/sec)\n", drive->name);
2618 put_unaligned(650, (u16 *)&caps[14]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002620 if (!max_speed) {
2621 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2622 "(assuming 650KB/sec)\n", drive->name);
2623 put_unaligned(650, (u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 }
2625
Borislav Petkovb6422012008-02-02 19:56:49 +01002626 memcpy(&tape->caps, caps, 20);
2627 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002628 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002629 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002630 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631}
2632
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002633#ifdef CONFIG_IDE_PROC_FS
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002634static void idetape_add_settings(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
2636 idetape_tape_t *tape = drive->driver_data;
2637
Borislav Petkovb6422012008-02-02 19:56:49 +01002638 ide_add_setting(drive, "buffer", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2639 1, 2, (u16 *)&tape->caps[16], NULL);
Borislav Petkovb6422012008-02-02 19:56:49 +01002640 ide_add_setting(drive, "speed", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2641 1, 1, (u16 *)&tape->caps[14], NULL);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002642 ide_add_setting(drive, "buffer_size", SETTING_READ, TYPE_INT, 0, 0xffff,
2643 1, 1024, &tape->buffer_size, NULL);
Borislav Petkov54bb2072008-02-06 02:57:52 +01002644 ide_add_setting(drive, "tdsc", SETTING_RW, TYPE_INT, IDETAPE_DSC_RW_MIN,
2645 IDETAPE_DSC_RW_MAX, 1000, HZ, &tape->best_dsc_rw_freq,
2646 NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002647 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1,
2648 1, &drive->dsc_overlap, NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002649 ide_add_setting(drive, "avg_speed", SETTING_READ, TYPE_INT, 0, 0xffff,
2650 1, 1, &tape->avg_speed, NULL);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002651 ide_add_setting(drive, "debug_mask", SETTING_RW, TYPE_INT, 0, 0xffff, 1,
2652 1, &tape->debug_mask, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002654#else
2655static inline void idetape_add_settings(ide_drive_t *drive) { ; }
2656#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
2658/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002659 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002661 * 1. Initialize our various state variables.
2662 * 2. Ask the tape for its capabilities.
2663 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2664 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002666 * Note that at this point ide.c already assigned us an irq, so that we can
2667 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002669static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Borislav Petkov83042b22008-04-27 15:38:27 +02002671 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002673 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002674 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002675 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Borislav Petkov54bb2072008-02-06 02:57:52 +01002677 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002679 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2680 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2681 tape->name);
2682 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 /* Seagate Travan drives do not support DSC overlap. */
2685 if (strstr(drive->id->model, "Seagate STT3401"))
2686 drive->dsc_overlap = 0;
2687 tape->minor = minor;
2688 tape->name[0] = 'h';
2689 tape->name[1] = 't';
2690 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002691 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 tape->pc = tape->pc_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 *((unsigned short *) &gcw) = drive->id->config;
Borislav Petkov71071b82008-02-06 02:57:53 +01002694
2695 /* Command packet DRQ type */
2696 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkov346331f2008-04-18 00:46:26 +02002697 set_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 idetape_get_inquiry_results(drive);
2700 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002701 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002703 tape->buffer_size = *ctl * tape->blk_size;
2704 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002706 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002707 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002709 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002710 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002711 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002712 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002713 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 }
2715
Borislav Petkov83042b22008-04-27 15:38:27 +02002716 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002717 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
Borislav Petkovf73850a2008-04-27 15:38:33 +02002719 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
2721 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002722 * Ensure that the number we got makes sense; limit it within
2723 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002725 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2726 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002728 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002729 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002730 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2731 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002732 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 drive->using_dma ? ", DMA":"");
2734
2735 idetape_add_settings(drive);
2736}
2737
Russell King4031bbe2006-01-06 11:41:00 +00002738static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739{
2740 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002742 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
2744 ide_unregister_region(tape->disk);
2745
2746 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
2748
2749static void ide_tape_release(struct kref *kref)
2750{
2751 struct ide_tape_obj *tape = to_ide_tape(kref);
2752 ide_drive_t *drive = tape->drive;
2753 struct gendisk *g = tape->disk;
2754
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002755 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 drive->dsc_overlap = 0;
2758 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002759 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002760 device_destroy(idetape_sysfs_class,
2761 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 idetape_devs[tape->minor] = NULL;
2763 g->private_data = NULL;
2764 put_disk(g);
2765 kfree(tape);
2766}
2767
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002768#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769static int proc_idetape_read_name
2770 (char *page, char **start, off_t off, int count, int *eof, void *data)
2771{
2772 ide_drive_t *drive = (ide_drive_t *) data;
2773 idetape_tape_t *tape = drive->driver_data;
2774 char *out = page;
2775 int len;
2776
2777 len = sprintf(out, "%s\n", tape->name);
2778 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2779}
2780
2781static ide_proc_entry_t idetape_proc[] = {
2782 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2783 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2784 { NULL, 0, NULL, NULL }
2785};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786#endif
2787
Russell King4031bbe2006-01-06 11:41:00 +00002788static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002791 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002792 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002793 .name = "ide-tape",
2794 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002795 },
Russell King4031bbe2006-01-06 11:41:00 +00002796 .probe = ide_tape_probe,
2797 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 .version = IDETAPE_VERSION,
2799 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 .supports_dsc_overlap = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 .do_request = idetape_do_request,
2802 .end_request = idetape_end_request,
2803 .error = __ide_error,
2804 .abort = __ide_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002805#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002807#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808};
2809
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002810/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002811static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 .owner = THIS_MODULE,
2813 .read = idetape_chrdev_read,
2814 .write = idetape_chrdev_write,
2815 .ioctl = idetape_chrdev_ioctl,
2816 .open = idetape_chrdev_open,
2817 .release = idetape_chrdev_release,
2818};
2819
2820static int idetape_open(struct inode *inode, struct file *filp)
2821{
2822 struct gendisk *disk = inode->i_bdev->bd_disk;
2823 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002825 tape = ide_tape_get(disk);
2826 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 return -ENXIO;
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 return 0;
2830}
2831
2832static int idetape_release(struct inode *inode, struct file *filp)
2833{
2834 struct gendisk *disk = inode->i_bdev->bd_disk;
2835 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
2837 ide_tape_put(tape);
2838
2839 return 0;
2840}
2841
2842static int idetape_ioctl(struct inode *inode, struct file *file,
2843 unsigned int cmd, unsigned long arg)
2844{
2845 struct block_device *bdev = inode->i_bdev;
2846 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2847 ide_drive_t *drive = tape->drive;
2848 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2849 if (err == -EINVAL)
2850 err = idetape_blkdev_ioctl(drive, cmd, arg);
2851 return err;
2852}
2853
2854static struct block_device_operations idetape_block_ops = {
2855 .owner = THIS_MODULE,
2856 .open = idetape_open,
2857 .release = idetape_release,
2858 .ioctl = idetape_ioctl,
2859};
2860
Russell King4031bbe2006-01-06 11:41:00 +00002861static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862{
2863 idetape_tape_t *tape;
2864 struct gendisk *g;
2865 int minor;
2866
2867 if (!strstr("ide-tape", drive->driver_req))
2868 goto failed;
2869 if (!drive->present)
2870 goto failed;
2871 if (drive->media != ide_tape)
2872 goto failed;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002873 if (!idetape_identify_device(drive)) {
2874 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2875 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 goto failed;
2877 }
2878 if (drive->scsi) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002879 printk(KERN_INFO "ide-tape: passing drive %s to ide-scsi"
2880 " emulation.\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 goto failed;
2882 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002883 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002885 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2886 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 goto failed;
2888 }
2889
2890 g = alloc_disk(1 << PARTN_BITS);
2891 if (!g)
2892 goto out_free_tape;
2893
2894 ide_init_disk(g, drive);
2895
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002896 ide_proc_register_driver(drive, &idetape_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 kref_init(&tape->kref);
2899
2900 tape->drive = drive;
2901 tape->driver = &idetape_driver;
2902 tape->disk = g;
2903
2904 g->private_data = &tape->driver;
2905
2906 drive->driver_data = tape;
2907
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002908 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 for (minor = 0; idetape_devs[minor]; minor++)
2910 ;
2911 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002912 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914 idetape_setup(drive, tape, minor);
2915
Tony Jonesdbc12722007-09-25 02:03:03 +02002916 device_create(idetape_sysfs_class, &drive->gendev,
2917 MKDEV(IDETAPE_MAJOR, minor), "%s", tape->name);
2918 device_create(idetape_sysfs_class, &drive->gendev,
2919 MKDEV(IDETAPE_MAJOR, minor + 128), "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 g->fops = &idetape_block_ops;
2922 ide_register_region(g);
2923
2924 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926out_free_tape:
2927 kfree(tape);
2928failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002929 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930}
2931
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002932static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002934 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002935 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 unregister_chrdev(IDETAPE_MAJOR, "ht");
2937}
2938
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002939static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Will Dysond5dee802005-09-16 02:55:07 -07002941 int error = 1;
2942 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2943 if (IS_ERR(idetape_sysfs_class)) {
2944 idetape_sysfs_class = NULL;
2945 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2946 error = -EBUSY;
2947 goto out;
2948 }
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002951 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2952 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002953 error = -EBUSY;
2954 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
Will Dysond5dee802005-09-16 02:55:07 -07002956
2957 error = driver_register(&idetape_driver.gen_driver);
2958 if (error)
2959 goto out_free_driver;
2960
2961 return 0;
2962
2963out_free_driver:
2964 driver_unregister(&idetape_driver.gen_driver);
2965out_free_class:
2966 class_destroy(idetape_sysfs_class);
2967out:
2968 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969}
2970
Kay Sievers263756e2005-12-12 18:03:44 +01002971MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972module_init(idetape_init);
2973module_exit(idetape_exit);
2974MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002975MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2976MODULE_LICENSE("GPL");