blob: 4e93a82f57eddea5355be0501001962698de4a34 [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 Petkov3c98bf32008-02-06 02:57:53 +0100147/* Read/Write error simulation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#define SIMULATE_ERRORS 0
149
Borislav Petkov54abf372008-02-06 02:57:52 +0100150/* tape directions */
151enum {
152 IDETAPE_DIR_NONE = (1 << 0),
153 IDETAPE_DIR_READ = (1 << 1),
154 IDETAPE_DIR_WRITE = (1 << 2),
155};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157struct idetape_bh {
Stephen Rothwellab057962007-08-01 23:46:44 +0200158 u32 b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 atomic_t b_count;
160 struct idetape_bh *b_reqnext;
161 char *b_data;
162};
163
Borislav Petkov03056b92008-04-18 00:46:26 +0200164/* Tape door status */
165#define DOOR_UNLOCKED 0
166#define DOOR_LOCKED 1
167#define DOOR_EXPLICITLY_LOCKED 2
168
169/* Some defines for the SPACE command */
170#define IDETAPE_SPACE_OVER_FILEMARK 1
171#define IDETAPE_SPACE_TO_EOD 3
172
173/* Some defines for the LOAD UNLOAD command */
174#define IDETAPE_LU_LOAD_MASK 1
175#define IDETAPE_LU_RETENSION_MASK 2
176#define IDETAPE_LU_EOT_MASK 4
177
178/*
179 * Special requests for our block device strategy routine.
180 *
181 * In order to service a character device command, we add special requests to
182 * the tail of our block device request queue and wait for their completion.
183 */
184
185enum {
186 REQ_IDETAPE_PC1 = (1 << 0), /* packet command (first stage) */
187 REQ_IDETAPE_PC2 = (1 << 1), /* packet command (second stage) */
188 REQ_IDETAPE_READ = (1 << 2),
189 REQ_IDETAPE_WRITE = (1 << 3),
190};
191
192/* Error codes returned in rq->errors to the higher part of the driver. */
193#define IDETAPE_ERROR_GENERAL 101
194#define IDETAPE_ERROR_FILEMARK 102
195#define IDETAPE_ERROR_EOD 103
196
197/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
198#define IDETAPE_BLOCK_DESCRIPTOR 0
199#define IDETAPE_CAPABILITIES_PAGE 0x2a
200
Borislav Petkov346331f2008-04-18 00:46:26 +0200201/* Tape flag bits values. */
202enum {
203 IDETAPE_FLAG_IGNORE_DSC = (1 << 0),
204 /* 0 When the tape position is unknown */
205 IDETAPE_FLAG_ADDRESS_VALID = (1 << 1),
206 /* Device already opened */
Borislav Petkov42d54682008-04-27 15:38:27 +0200207 IDETAPE_FLAG_BUSY = (1 << 2),
Borislav Petkov346331f2008-04-18 00:46:26 +0200208 /* Attempt to auto-detect the current user block size */
Borislav Petkov42d54682008-04-27 15:38:27 +0200209 IDETAPE_FLAG_DETECT_BS = (1 << 3),
Borislav Petkov346331f2008-04-18 00:46:26 +0200210 /* Currently on a filemark */
Borislav Petkov42d54682008-04-27 15:38:27 +0200211 IDETAPE_FLAG_FILEMARK = (1 << 4),
Borislav Petkov346331f2008-04-18 00:46:26 +0200212 /* DRQ interrupt device */
Borislav Petkov42d54682008-04-27 15:38:27 +0200213 IDETAPE_FLAG_DRQ_INTERRUPT = (1 << 5),
Borislav Petkov346331f2008-04-18 00:46:26 +0200214 /* 0 = no tape is loaded, so we don't rewind after ejecting */
Borislav Petkov42d54682008-04-27 15:38:27 +0200215 IDETAPE_FLAG_MEDIUM_PRESENT = (1 << 6),
Borislav Petkov346331f2008-04-18 00:46:26 +0200216};
217
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100218/* A pipeline stage. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219typedef struct idetape_stage_s {
220 struct request rq; /* The corresponding request */
221 struct idetape_bh *bh; /* The data buffers */
222 struct idetape_stage_s *next; /* Pointer to the next stage */
223} idetape_stage_t;
224
225/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100226 * Most of our global data which we need to save even as we leave the driver due
227 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
229typedef struct ide_tape_obj {
230 ide_drive_t *drive;
231 ide_driver_t *driver;
232 struct gendisk *disk;
233 struct kref kref;
234
235 /*
236 * Since a typical character device operation requires more
237 * than one packet command, we provide here enough memory
238 * for the maximum of interconnected packet commands.
239 * The packet commands are stored in the circular array pc_stack.
240 * pc_stack_index points to the last used entry, and warps around
241 * to the start when we get to the last array entry.
242 *
243 * pc points to the current processed packet command.
244 *
245 * failed_pc points to the last failed packet command, or contains
246 * NULL if we do not need to retry any packet command. This is
247 * required since an additional packet command is needed before the
248 * retry, to get detailed information on what went wrong.
249 */
250 /* Current packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200251 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* Last failed packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200253 struct ide_atapi_pc *failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* Packet command stack */
Borislav Petkovd236d742008-04-18 00:46:27 +0200255 struct ide_atapi_pc pc_stack[IDETAPE_PC_STACK];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* Next free packet command storage space */
257 int pc_stack_index;
258 struct request rq_stack[IDETAPE_PC_STACK];
259 /* We implement a circular array */
260 int rq_stack_index;
261
262 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100263 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100265 * While polling for DSC we use postponed_rq to postpone the current
266 * request so that ide.c will be able to service pending requests on the
267 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200268 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
270 struct request *postponed_rq;
271 /* The time in which we started polling for DSC */
272 unsigned long dsc_polling_start;
273 /* Timer used to poll for dsc */
274 struct timer_list dsc_timer;
275 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100276 unsigned long best_dsc_rw_freq;
277 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 unsigned long dsc_timeout;
279
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100280 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 u8 partition;
282 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100283 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100285 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 u8 sense_key, asc, ascq;
287
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100288 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 unsigned int minor;
290 /* device name */
291 char name[4];
292 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100293 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Borislav Petkov54bb2072008-02-06 02:57:52 +0100295 /* tape block size, usually 512 or 1024 bytes */
296 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100300 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100303 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100305 * At most, there is only one ide-tape originated data transfer request
306 * in the device request queue. This allows ide.c to easily service
307 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200309
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100310 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200311 int buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 idetape_stage_t *merge_stage;
313 int merge_stage_size;
314 struct idetape_bh *bh;
315 char *b_data;
316 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100317
Borislav Petkova997a432008-04-27 15:38:33 +0200318 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* Wasted space in each stage */
320 int excess_bh_size;
321
322 /* Status/Action flags: long for set_bit */
323 unsigned long flags;
324 /* protects the ide-tape queue */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100325 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100327 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 unsigned long avg_time;
329 int avg_size;
330 int avg_speed;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* the door is currently locked */
333 int door_locked;
334 /* the tape hardware is write protected */
335 char drv_write_prot;
336 /* the tape is write protected (hardware or opened as read-only) */
337 char write_prot;
338
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100339 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340} idetape_tape_t;
341
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800342static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Will Dysond5dee802005-09-16 02:55:07 -0700344static struct class *idetape_sysfs_class;
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
347
348#define ide_tape_g(disk) \
349 container_of((disk)->private_data, struct ide_tape_obj, driver)
350
351static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
352{
353 struct ide_tape_obj *tape = NULL;
354
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800355 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 tape = ide_tape_g(disk);
357 if (tape)
358 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800359 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return tape;
361}
362
363static void ide_tape_release(struct kref *);
364
365static void ide_tape_put(struct ide_tape_obj *tape)
366{
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800367 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 kref_put(&tape->kref, ide_tape_release);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800369 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100373 * The variables below are used for the character device interface. Additional
374 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100376static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378#define ide_tape_f(file) ((file)->private_data)
379
380static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
381{
382 struct ide_tape_obj *tape = NULL;
383
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800384 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 tape = idetape_devs[i];
386 if (tape)
387 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800388 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return tape;
390}
391
Borislav Petkovd236d742008-04-18 00:46:27 +0200392static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100393 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 struct idetape_bh *bh = pc->bh;
396 int count;
397
398 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (bh == NULL) {
400 printk(KERN_ERR "ide-tape: bh == NULL in "
401 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz7616c0a2008-04-18 00:46:26 +0200402 ide_atapi_discard_data(drive, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return;
404 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100405 count = min(
406 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
407 bcount);
408 HWIF(drive)->atapi_input_bytes(drive, bh->b_data +
409 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 bcount -= count;
411 atomic_add(count, &bh->b_count);
412 if (atomic_read(&bh->b_count) == bh->b_size) {
413 bh = bh->b_reqnext;
414 if (bh)
415 atomic_set(&bh->b_count, 0);
416 }
417 }
418 pc->bh = bh;
419}
420
Borislav Petkovd236d742008-04-18 00:46:27 +0200421static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100422 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 struct idetape_bh *bh = pc->bh;
425 int count;
426
427 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100429 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
430 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return;
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
434 HWIF(drive)->atapi_output_bytes(drive, pc->b_data, count);
435 bcount -= count;
436 pc->b_data += count;
437 pc->b_count -= count;
438 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100439 bh = bh->b_reqnext;
440 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (bh) {
442 pc->b_data = bh->b_data;
443 pc->b_count = atomic_read(&bh->b_count);
444 }
445 }
446 }
447}
448
Borislav Petkovd236d742008-04-18 00:46:27 +0200449static void idetape_update_buffers(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct idetape_bh *bh = pc->bh;
452 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200453 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Borislav Petkov346331f2008-04-18 00:46:26 +0200455 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return;
457 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100459 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
460 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return;
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
464 atomic_set(&bh->b_count, count);
465 if (atomic_read(&bh->b_count) == bh->b_size)
466 bh = bh->b_reqnext;
467 bcount -= count;
468 }
469 pc->bh = bh;
470}
471
472/*
473 * idetape_next_pc_storage returns a pointer to a place in which we can
474 * safely store a packet command, even though we intend to leave the
475 * driver. A storage space for a maximum of IDETAPE_PC_STACK packet
476 * commands is allocated at initialization time.
477 */
Borislav Petkovd236d742008-04-18 00:46:27 +0200478static struct ide_atapi_pc *idetape_next_pc_storage(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 idetape_tape_t *tape = drive->driver_data;
481
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100482 debug_log(DBG_PCRQ_STACK, "pc_stack_index=%d\n", tape->pc_stack_index);
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (tape->pc_stack_index == IDETAPE_PC_STACK)
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100485 tape->pc_stack_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return (&tape->pc_stack[tape->pc_stack_index++]);
487}
488
489/*
490 * idetape_next_rq_storage is used along with idetape_next_pc_storage.
491 * Since we queue packet commands in the request queue, we need to
492 * allocate a request, along with the allocation of a packet command.
493 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/**************************************************************
496 * *
497 * This should get fixed to use kmalloc(.., GFP_ATOMIC) *
498 * followed later on by kfree(). -ml *
499 * *
500 **************************************************************/
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100501
502static struct request *idetape_next_rq_storage(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 idetape_tape_t *tape = drive->driver_data;
505
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100506 debug_log(DBG_PCRQ_STACK, "rq_stack_index=%d\n", tape->rq_stack_index);
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (tape->rq_stack_index == IDETAPE_PC_STACK)
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100509 tape->rq_stack_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return (&tape->rq_stack[tape->rq_stack_index++]);
511}
512
Borislav Petkovd236d742008-04-18 00:46:27 +0200513static void idetape_init_pc(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 memset(pc->c, 0, 12);
516 pc->retries = 0;
517 pc->flags = 0;
Borislav Petkovd236d742008-04-18 00:46:27 +0200518 pc->req_xfer = 0;
519 pc->buf = pc->pc_buf;
520 pc->buf_size = IDETAPE_PC_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 pc->bh = NULL;
522 pc->b_data = NULL;
523}
524
525/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100526 * called on each failed packet command retry to analyze the request sense. We
527 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100529static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200532 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Borislav Petkov1b5db432008-02-02 19:56:48 +0100534 tape->sense_key = sense[2] & 0xF;
535 tape->asc = sense[12];
536 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100537
538 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
539 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Borislav Petkovd236d742008-04-18 00:46:27 +0200541 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200542 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200543 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100544 tape->blk_size *
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100545 be32_to_cpu(get_unaligned((u32 *)&sense[3]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 idetape_update_buffers(pc);
547 }
548
549 /*
550 * If error was the result of a zero-length read or write command,
551 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
552 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
553 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100554 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100555 /* length == 0 */
556 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
557 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* don't report an error, everything's ok */
559 pc->error = 0;
560 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200561 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100564 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200566 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100568 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100569 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
570 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200572 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100575 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100576 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200578 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200580 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200581 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
583 }
584}
585
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200586/* Free data buffers completely. */
587static void ide_tape_kfree_buffer(idetape_stage_t *stage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct idetape_bh *prev_bh, *bh = stage->bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200591 while (bh) {
592 u32 size = bh->b_size;
593
594 while (size) {
595 unsigned int order = fls(size >> PAGE_SHIFT)-1;
596
597 if (bh->b_data)
598 free_pages((unsigned long)bh->b_data, order);
599
600 size &= (order-1);
601 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603 prev_bh = bh;
604 bh = bh->b_reqnext;
605 kfree(prev_bh);
606 }
607 kfree(stage);
608}
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
611{
612 struct request *rq = HWGROUP(drive)->rq;
613 idetape_tape_t *tape = drive->driver_data;
614 unsigned long flags;
615 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100617 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100620 case 0: error = IDETAPE_ERROR_GENERAL; break;
621 case 1: error = 0; break;
622 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624 rq->errors = error;
625 if (error)
626 tape->failed_pc = NULL;
627
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100628 if (!blk_special_request(rq)) {
629 ide_end_request(drive, uptodate, nr_sects);
630 return 0;
631 }
632
Borislav Petkov54bb2072008-02-06 02:57:52 +0100633 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Borislav Petkov54bb2072008-02-06 02:57:52 +0100637 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
639}
640
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100641static ide_startstop_t idetape_request_sense_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 idetape_tape_t *tape = drive->driver_data;
644
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100645 debug_log(DBG_PROCS, "Enter %s\n", __func__);
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (!tape->pc->error) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200648 idetape_analyze_error(drive, tape->pc->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 idetape_end_request(drive, 1, 0);
650 } else {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100651 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE itself - "
652 "Aborting request!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 idetape_end_request(drive, 0, 0);
654 }
655 return ide_stopped;
656}
657
Borislav Petkovd236d742008-04-18 00:46:27 +0200658static void idetape_create_request_sense_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100660 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100661 pc->c[0] = REQUEST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 pc->c[4] = 20;
Borislav Petkovd236d742008-04-18 00:46:27 +0200663 pc->req_xfer = 20;
664 pc->idetape_callback = &idetape_request_sense_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667static void idetape_init_rq(struct request *rq, u8 cmd)
668{
669 memset(rq, 0, sizeof(*rq));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200670 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 rq->cmd[0] = cmd;
672}
673
674/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100675 * Generate a new packet command request in front of the request queue, before
676 * the current request, so that it will be processed immediately, on the next
677 * pass through the driver. The function below is called from the request
678 * handling part of the driver (the "bottom" part). Safe storage for the request
679 * should be allocated with ide_tape_next_{pc,rq}_storage() prior to that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100681 * Memory for those requests is pre-allocated at initialization time, and is
682 * limited to IDETAPE_PC_STACK requests. We assume that we have enough space for
683 * the maximum possible number of inter-dependent packet commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100685 * The higher level of the driver - The ioctl handler and the character device
686 * handling functions should queue request to the lower level part and wait for
687 * their completion using idetape_queue_pc_tail or idetape_queue_rw_tail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 */
Borislav Petkovd236d742008-04-18 00:46:27 +0200689static void idetape_queue_pc_head(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100690 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 struct ide_tape_obj *tape = drive->driver_data;
693
694 idetape_init_rq(rq, REQ_IDETAPE_PC1);
695 rq->buffer = (char *) pc;
696 rq->rq_disk = tape->disk;
697 (void) ide_do_drive_cmd(drive, rq, ide_preempt);
698}
699
700/*
701 * idetape_retry_pc is called when an error was detected during the
702 * last packet command. We queue a request sense packet command in
703 * the head of the request list.
704 */
705static ide_startstop_t idetape_retry_pc (ide_drive_t *drive)
706{
707 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200708 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100711 (void)ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 pc = idetape_next_pc_storage(drive);
713 rq = idetape_next_rq_storage(drive);
714 idetape_create_request_sense_cmd(pc);
Borislav Petkov346331f2008-04-18 00:46:26 +0200715 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 idetape_queue_pc_head(drive, pc, rq);
717 return ide_stopped;
718}
719
720/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100721 * Postpone the current request so that ide.c will be able to service requests
722 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100724static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 idetape_tape_t *tape = drive->driver_data;
727
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100728 debug_log(DBG_PROCS, "Enter %s\n", __func__);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100731 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Borislav Petkovd236d742008-04-18 00:46:27 +0200734typedef void idetape_io_buf(ide_drive_t *, struct ide_atapi_pc *, unsigned int);
Borislav Petkova1efc852008-02-06 02:57:52 +0100735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/*
Borislav Petkova1efc852008-02-06 02:57:52 +0100737 * This is the usual interrupt handler which will be called during a packet
738 * command. We will transfer some of the data (as requested by the drive) and
739 * will re-point interrupt handler to us. When data transfer is finished, we
740 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100741 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100743static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 ide_hwif_t *hwif = drive->hwif;
746 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200747 struct ide_atapi_pc *pc = tape->pc;
Borislav Petkova1efc852008-02-06 02:57:52 +0100748 xfer_func_t *xferfunc;
749 idetape_io_buf *iobuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 unsigned int temp;
751#if SIMULATE_ERRORS
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100752 static int error_sim_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753#endif
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100754 u16 bcount;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100755 u8 stat, ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100757 debug_log(DBG_PROCS, "Enter %s - interrupt handler\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /* Clear the interrupt */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100760 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Borislav Petkov346331f2008-04-18 00:46:26 +0200762 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200763 if (hwif->dma_ops->dma_end(drive) || (stat & ERR_STAT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 /*
765 * A DMA error is sometimes expected. For example,
766 * if the tape is crossing a filemark during a
767 * READ command, it will issue an irq and position
768 * itself before the filemark, so that only a partial
769 * data transfer will occur (which causes the DMA
770 * error). In that case, we will later ask the tape
771 * how much bytes of the original request were
772 * actually transferred (we can't receive that
773 * information from the DMA engine on most chipsets).
774 */
775
776 /*
777 * On the contrary, a DMA error is never expected;
778 * it usually indicates a hardware error or abort.
779 * If the tape crosses a filemark during a READ
780 * command, it will issue an irq and position itself
781 * after the filemark (not before). Only a partial
782 * data transfer will occur, but no DMA error.
783 * (AS, 19 Apr 2001)
784 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200785 pc->flags |= PC_FLAG_DMA_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 } else {
Borislav Petkovd236d742008-04-18 00:46:27 +0200787 pc->xferred = pc->req_xfer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 idetape_update_buffers(pc);
789 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100790 debug_log(DBG_PROCS, "DMA finished\n");
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
794 /* No more interrupts */
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100795 if ((stat & DRQ_STAT) == 0) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100796 debug_log(DBG_SENSE, "Packet command completed, %d bytes"
Borislav Petkovd236d742008-04-18 00:46:27 +0200797 " transferred\n", pc->xferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Borislav Petkov346331f2008-04-18 00:46:26 +0200799 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 local_irq_enable();
801
802#if SIMULATE_ERRORS
Borislav Petkov90699ce2008-02-02 19:56:50 +0100803 if ((pc->c[0] == WRITE_6 || pc->c[0] == READ_6) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 (++error_sim_count % 100) == 0) {
805 printk(KERN_INFO "ide-tape: %s: simulating error\n",
806 tape->name);
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100807 stat |= ERR_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809#endif
Borislav Petkov90699ce2008-02-02 19:56:50 +0100810 if ((stat & ERR_STAT) && pc->c[0] == REQUEST_SENSE)
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100811 stat &= ~ERR_STAT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200812 if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR)) {
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100813 /* Error detected */
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100814 debug_log(DBG_ERR, "%s: I/O error\n", tape->name);
815
Borislav Petkov90699ce2008-02-02 19:56:50 +0100816 if (pc->c[0] == REQUEST_SENSE) {
Borislav Petkova1efc852008-02-06 02:57:52 +0100817 printk(KERN_ERR "ide-tape: I/O error in request"
818 " sense command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return ide_do_reset(drive);
820 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100821 debug_log(DBG_ERR, "[cmd %x]: check condition\n",
822 pc->c[0]);
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /* Retry operation */
825 return idetape_retry_pc(drive);
826 }
827 pc->error = 0;
Borislav Petkov346331f2008-04-18 00:46:26 +0200828 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) &&
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100829 (stat & SEEK_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* Media access command */
831 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100832 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
834 /* Allow ide.c to handle other requests */
835 idetape_postpone_request(drive);
836 return ide_stopped;
837 }
838 if (tape->failed_pc == pc)
839 tape->failed_pc = NULL;
840 /* Command finished - Call the callback function */
Borislav Petkovd236d742008-04-18 00:46:27 +0200841 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200843
844 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
845 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 printk(KERN_ERR "ide-tape: The tape wants to issue more "
847 "interrupts in DMA mode\n");
848 printk(KERN_ERR "ide-tape: DMA disabled, reverting to PIO\n");
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100849 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return ide_do_reset(drive);
851 }
852 /* Get the number of bytes to transfer on this interrupt. */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200853 bcount = (hwif->INB(hwif->io_ports.lbah_addr) << 8) |
854 hwif->INB(hwif->io_ports.lbam_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200856 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100858 if (ireason & CD) {
Borislav Petkova1efc852008-02-06 02:57:52 +0100859 printk(KERN_ERR "ide-tape: CoD != 0 in %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return ide_do_reset(drive);
861 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200862 if (((ireason & IO) == IO) == !!(pc->flags & PC_FLAG_WRITING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /* Hopefully, we will never get here */
864 printk(KERN_ERR "ide-tape: We wanted to %s, ",
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100865 (ireason & IO) ? "Write" : "Read");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 printk(KERN_ERR "ide-tape: but the tape wants us to %s !\n",
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100867 (ireason & IO) ? "Read" : "Write");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return ide_do_reset(drive);
869 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200870 if (!(pc->flags & PC_FLAG_WRITING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /* Reading - Check that we have enough space */
Borislav Petkovd236d742008-04-18 00:46:27 +0200872 temp = pc->xferred + bcount;
873 if (temp > pc->req_xfer) {
874 if (temp > pc->buf_size) {
Borislav Petkova1efc852008-02-06 02:57:52 +0100875 printk(KERN_ERR "ide-tape: The tape wants to "
876 "send us more data than expected "
877 "- discarding data\n");
Bartlomiej Zolnierkiewicz7616c0a2008-04-18 00:46:26 +0200878 ide_atapi_discard_data(drive, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100879 ide_set_handler(drive, &idetape_pc_intr,
880 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return ide_started;
882 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100883 debug_log(DBG_SENSE, "The tape wants to send us more "
884 "data than expected - allowing transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Borislav Petkova1efc852008-02-06 02:57:52 +0100886 iobuf = &idetape_input_buffers;
887 xferfunc = hwif->atapi_input_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 } else {
Borislav Petkova1efc852008-02-06 02:57:52 +0100889 iobuf = &idetape_output_buffers;
890 xferfunc = hwif->atapi_output_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
Borislav Petkova1efc852008-02-06 02:57:52 +0100892
893 if (pc->bh)
894 iobuf(drive, pc, bcount);
895 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200896 xferfunc(drive, pc->cur_pos, bcount);
Borislav Petkova1efc852008-02-06 02:57:52 +0100897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 /* Update the current position */
Borislav Petkovd236d742008-04-18 00:46:27 +0200899 pc->xferred += bcount;
900 pc->cur_pos += bcount;
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100901
902 debug_log(DBG_SENSE, "[cmd %x] transferred %d bytes on that intr.\n",
903 pc->c[0], bcount);
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /* And set the interrupt handler again */
906 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
907 return ide_started;
908}
909
910/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100911 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100913 * The current Packet Command is available in tape->pc, and will not change
914 * until we finish handling it. Each packet command is associated with a
915 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100917 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100919 * 1. idetape_issue_pc will send the packet command to the drive, and will set
920 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100922 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
923 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100925 * 3. ATAPI Tape media access commands have immediate status with a delayed
926 * process. In case of a successful initiation of a media access packet command,
927 * the DSC bit will be set when the actual execution of the command is finished.
928 * Since the tape drive will not issue an interrupt, we have to poll for this
929 * event. In this case, we define the request as "low priority request" by
930 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
931 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100933 * ide.c will then give higher priority to requests which originate from the
934 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100936 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100938 * 5. In case an error was found, we queue a request sense packet command in
939 * front of the request queue and retry the operation up to
940 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100942 * 6. In case no error was found, or we decided to give up and not to retry
943 * again, the callback function will be called and then we will handle the next
944 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 */
946static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
947{
948 ide_hwif_t *hwif = drive->hwif;
949 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200950 struct ide_atapi_pc *pc = tape->pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 int retries = 100;
952 ide_startstop_t startstop;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100953 u8 ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100955 if (ide_wait_stat(&startstop, drive, DRQ_STAT, BUSY_STAT, WAIT_READY)) {
956 printk(KERN_ERR "ide-tape: Strange, packet command initiated "
957 "yet DRQ isn't asserted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return startstop;
959 }
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200960 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100961 while (retries-- && ((ireason & CD) == 0 || (ireason & IO))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while issuing "
963 "a packet command, retrying\n");
964 udelay(100);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200965 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (retries == 0) {
967 printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while "
968 "issuing a packet command, ignoring\n");
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100969 ireason |= CD;
970 ireason &= ~IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
972 }
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100973 if ((ireason & CD) == 0 || (ireason & IO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 printk(KERN_ERR "ide-tape: (IO,CoD) != (0,1) while issuing "
975 "a packet command\n");
976 return ide_do_reset(drive);
977 }
978 /* Set the interrupt routine */
979 ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
980#ifdef CONFIG_BLK_DEV_IDEDMA
981 /* Begin DMA, if necessary */
Borislav Petkov346331f2008-04-18 00:46:26 +0200982 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200983 hwif->dma_ops->dma_start(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984#endif
985 /* Send the actual packet */
986 HWIF(drive)->atapi_output_bytes(drive, pc->c, 12);
987 return ide_started;
988}
989
Borislav Petkovd236d742008-04-18 00:46:27 +0200990static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
991 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 ide_hwif_t *hwif = drive->hwif;
994 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 int dma_ok = 0;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100996 u16 bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Borislav Petkov90699ce2008-02-02 19:56:50 +0100998 if (tape->pc->c[0] == REQUEST_SENSE &&
999 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
1001 "Two request sense in serial were issued\n");
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Borislav Petkov90699ce2008-02-02 19:56:50 +01001004 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 tape->failed_pc = pc;
1006 /* Set the current packet command */
1007 tape->pc = pc;
1008
1009 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +02001010 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001012 * We will "abort" retrying a packet command in case legitimate
1013 * error code was received (crossing a filemark, or end of the
1014 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 */
Borislav Petkov346331f2008-04-18 00:46:26 +02001016 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +01001017 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 tape->sense_key == 2 && tape->asc == 4 &&
1019 (tape->ascq == 1 || tape->ascq == 8))) {
1020 printk(KERN_ERR "ide-tape: %s: I/O error, "
1021 "pc = %2x, key = %2x, "
1022 "asc = %2x, ascq = %2x\n",
1023 tape->name, pc->c[0],
1024 tape->sense_key, tape->asc,
1025 tape->ascq);
1026 }
1027 /* Giving up */
1028 pc->error = IDETAPE_ERROR_GENERAL;
1029 }
1030 tape->failed_pc = NULL;
Borislav Petkovd236d742008-04-18 00:46:27 +02001031 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001033 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 pc->retries++;
1036 /* We haven't transferred any data yet */
Borislav Petkovd236d742008-04-18 00:46:27 +02001037 pc->xferred = 0;
1038 pc->cur_pos = pc->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /* Request to transfer the entire buffer at once */
Borislav Petkovd236d742008-04-18 00:46:27 +02001040 bcount = pc->req_xfer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Borislav Petkov346331f2008-04-18 00:46:26 +02001042 if (pc->flags & PC_FLAG_DMA_ERROR) {
1043 pc->flags &= ~PC_FLAG_DMA_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 printk(KERN_WARNING "ide-tape: DMA disabled, "
1045 "reverting to PIO\n");
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001046 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Borislav Petkov346331f2008-04-18 00:46:26 +02001048 if ((pc->flags & PC_FLAG_DMA_RECOMMENDED) && drive->using_dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001049 dma_ok = !hwif->dma_ops->dma_setup(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Bartlomiej Zolnierkiewicz2fc57382008-01-25 22:17:13 +01001051 ide_pktcmd_tf_load(drive, IDE_TFLAG_NO_SELECT_MASK |
1052 IDE_TFLAG_OUT_DEVICE, bcount, dma_ok);
1053
Borislav Petkov346331f2008-04-18 00:46:26 +02001054 if (dma_ok)
1055 /* Will begin DMA later */
1056 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
1057 if (test_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags)) {
Bartlomiej Zolnierkiewiczc1c9dbc2008-02-02 19:56:44 +01001058 ide_execute_command(drive, WIN_PACKETCMD, &idetape_transfer_pc,
1059 IDETAPE_WAIT_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return ide_started;
1061 } else {
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001062 hwif->OUTB(WIN_PACKETCMD, hwif->io_ports.command_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 return idetape_transfer_pc(drive);
1064 }
1065}
1066
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001067static ide_startstop_t idetape_pc_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001070
1071 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 idetape_end_request(drive, tape->pc->error ? 0 : 1, 0);
1074 return ide_stopped;
1075}
1076
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001077/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +02001078static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001081 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001083 /* DBD = 1 - Don't return block descriptors */
1084 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 pc->c[2] = page_code;
1086 /*
1087 * Changed pc->c[3] to 0 (255 will at best return unused info).
1088 *
1089 * For SCSI this byte is defined as subpage instead of high byte
1090 * of length and some IDE drives seem to interpret it this way
1091 * and return an error when 255 is used.
1092 */
1093 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001094 /* We will just discard data in that case */
1095 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +02001097 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +02001099 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 else
Borislav Petkovd236d742008-04-18 00:46:27 +02001101 pc->req_xfer = 50;
1102 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001105static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001108 struct ide_atapi_pc *pc = tape->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001109 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001111 stat = ide_read_status(drive);
1112
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001113 if (stat & SEEK_STAT) {
1114 if (stat & ERR_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +01001116 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 printk(KERN_ERR "ide-tape: %s: I/O error, ",
1118 tape->name);
1119 /* Retry operation */
1120 return idetape_retry_pc(drive);
1121 }
1122 pc->error = 0;
1123 if (tape->failed_pc == pc)
1124 tape->failed_pc = NULL;
1125 } else {
1126 pc->error = IDETAPE_ERROR_GENERAL;
1127 tape->failed_pc = NULL;
1128 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001129 return pc->idetape_callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001132static ide_startstop_t idetape_rw_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
1134 idetape_tape_t *tape = drive->driver_data;
1135 struct request *rq = HWGROUP(drive)->rq;
Borislav Petkovd236d742008-04-18 00:46:27 +02001136 int blocks = tape->pc->xferred / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Borislav Petkov54bb2072008-02-06 02:57:52 +01001138 tape->avg_size += blocks * tape->blk_size;
Borislav Petkov83042b22008-04-27 15:38:27 +02001139
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -08001140 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001141 tape->avg_speed = tape->avg_size * HZ /
1142 (jiffies - tape->avg_time) / 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 tape->avg_size = 0;
1144 tape->avg_time = jiffies;
1145 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001146 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Borislav Petkov54bb2072008-02-06 02:57:52 +01001148 tape->first_frame += blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 rq->current_nr_sectors -= blocks;
1150
1151 if (!tape->pc->error)
1152 idetape_end_request(drive, 1, 0);
1153 else
1154 idetape_end_request(drive, tape->pc->error, 0);
1155 return ide_stopped;
1156}
1157
Borislav Petkovd236d742008-04-18 00:46:27 +02001158static void idetape_create_read_cmd(idetape_tape_t *tape,
1159 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001160 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001163 pc->c[0] = READ_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001164 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +02001166 pc->idetape_callback = &idetape_rw_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 pc->bh = bh;
1168 atomic_set(&bh->b_count, 0);
Borislav Petkovd236d742008-04-18 00:46:27 +02001169 pc->buf = NULL;
1170 pc->buf_size = length * tape->blk_size;
1171 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001172 if (pc->req_xfer == tape->buffer_size)
Borislav Petkov346331f2008-04-18 00:46:26 +02001173 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Borislav Petkovd236d742008-04-18 00:46:27 +02001176static void idetape_create_write_cmd(idetape_tape_t *tape,
1177 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001178 unsigned int length, struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
1180 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001181 pc->c[0] = WRITE_6;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001182 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +02001184 pc->idetape_callback = &idetape_rw_callback;
Borislav Petkov346331f2008-04-18 00:46:26 +02001185 pc->flags |= PC_FLAG_WRITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 pc->bh = bh;
1187 pc->b_data = bh->b_data;
1188 pc->b_count = atomic_read(&bh->b_count);
Borislav Petkovd236d742008-04-18 00:46:27 +02001189 pc->buf = NULL;
1190 pc->buf_size = length * tape->blk_size;
1191 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001192 if (pc->req_xfer == tape->buffer_size)
Borislav Petkov346331f2008-04-18 00:46:26 +02001193 pc->flags |= PC_FLAG_DMA_RECOMMENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194}
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196static ide_startstop_t idetape_do_request(ide_drive_t *drive,
1197 struct request *rq, sector_t block)
1198{
1199 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001200 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001202 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001204 debug_log(DBG_SENSE, "sector: %ld, nr_sectors: %ld,"
1205 " current_nr_sectors: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 rq->sector, rq->nr_sectors, rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Jens Axboe4aff5e22006-08-10 08:44:47 +02001208 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001209 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +02001211 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 ide_end_request(drive, 0, 0);
1213 return ide_stopped;
1214 }
1215
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001216 /* Retry a failed packet command */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001217 if (tape->failed_pc && tape->pc->c[0] == REQUEST_SENSE)
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001218 return idetape_issue_pc(drive, tape->failed_pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (postponed_rq != NULL)
1221 if (rq != postponed_rq) {
1222 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
1223 "Two DSC requests were queued\n");
1224 idetape_end_request(drive, 0, 0);
1225 return ide_stopped;
1226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 tape->postponed_rq = NULL;
1229
1230 /*
1231 * If the tape is still busy, postpone our request and service
1232 * the other device meanwhile.
1233 */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001234 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 if (!drive->dsc_overlap && !(rq->cmd[0] & REQ_IDETAPE_PC2))
Borislav Petkov346331f2008-04-18 00:46:26 +02001237 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 if (drive->post_reset == 1) {
Borislav Petkov346331f2008-04-18 00:46:26 +02001240 set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 drive->post_reset = 0;
1242 }
1243
Borislav Petkov346331f2008-04-18 00:46:26 +02001244 if (!test_and_clear_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags) &&
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +01001245 (stat & SEEK_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (postponed_rq == NULL) {
1247 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001248 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
1250 } else if (time_after(jiffies, tape->dsc_timeout)) {
1251 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
1252 tape->name);
1253 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1254 idetape_media_access_finished(drive);
1255 return ide_stopped;
1256 } else {
1257 return ide_do_reset(drive);
1258 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001259 } else if (time_after(jiffies,
1260 tape->dsc_polling_start +
1261 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001262 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 idetape_postpone_request(drive);
1264 return ide_stopped;
1265 }
1266 if (rq->cmd[0] & REQ_IDETAPE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001268 idetape_create_read_cmd(tape, pc, rq->current_nr_sectors,
1269 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 goto out;
1271 }
1272 if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 pc = idetape_next_pc_storage(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001274 idetape_create_write_cmd(tape, pc, rq->current_nr_sectors,
1275 (struct idetape_bh *)rq->special);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 goto out;
1277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (rq->cmd[0] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +02001279 pc = (struct ide_atapi_pc *) rq->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 rq->cmd[0] &= ~(REQ_IDETAPE_PC1);
1281 rq->cmd[0] |= REQ_IDETAPE_PC2;
1282 goto out;
1283 }
1284 if (rq->cmd[0] & REQ_IDETAPE_PC2) {
1285 idetape_media_access_finished(drive);
1286 return ide_stopped;
1287 }
1288 BUG();
1289out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001290 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293/*
Borislav Petkov41aa1702008-04-27 15:38:32 +02001294 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +02001295 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001296 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 *
Borislav Petkov41aa1702008-04-27 15:38:32 +02001298 * It returns a pointer to the newly allocated buffer, or NULL in case of
1299 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 */
Borislav Petkov41aa1702008-04-27 15:38:32 +02001301static idetape_stage_t *ide_tape_kmalloc_buffer(idetape_tape_t *tape, int full,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001302 int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 idetape_stage_t *stage;
1305 struct idetape_bh *prev_bh, *bh;
Borislav Petkova997a432008-04-27 15:38:33 +02001306 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001307 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 char *b_data = NULL;
1309
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001310 stage = kmalloc(sizeof(idetape_stage_t), GFP_KERNEL);
1311 if (!stage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return NULL;
1313 stage->next = NULL;
1314
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001315 stage->bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1316 bh = stage->bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (bh == NULL)
1318 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001319
1320 order = fls(pages) - 1;
1321 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001322 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001324 b_allocd = (1 << order) * PAGE_SIZE;
1325 pages &= (order-1);
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001328 memset(bh->b_data, 0, b_allocd);
1329 bh->b_reqnext = NULL;
1330 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1332
Borislav Petkov41aa1702008-04-27 15:38:32 +02001333 while (pages) {
1334 order = fls(pages) - 1;
1335 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001336 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001338 b_allocd = (1 << order) * PAGE_SIZE;
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001341 memset(b_data, 0, b_allocd);
1342
1343 /* newly allocated page frames below buffer header or ...*/
1344 if (bh->b_data == b_data + b_allocd) {
1345 bh->b_size += b_allocd;
1346 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001348 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 continue;
1350 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001351 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001353 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +02001355 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 continue;
1357 }
1358 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001359 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
1360 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +02001361 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 goto abort;
1363 }
1364 bh->b_reqnext = NULL;
1365 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001366 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1368 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001369
1370 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 bh->b_size -= tape->excess_bh_size;
1374 if (full)
1375 atomic_sub(tape->excess_bh_size, &bh->b_count);
1376 return stage;
1377abort:
Borislav Petkovd01dbc32008-04-27 15:38:33 +02001378 ide_tape_kfree_buffer(stage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return NULL;
1380}
1381
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001382static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +02001383 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 struct idetape_bh *bh = tape->bh;
1386 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001387 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001391 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1392 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001393 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001395 count = min((unsigned int)
1396 (bh->b_size - atomic_read(&bh->b_count)),
1397 (unsigned int)n);
1398 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1399 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001400 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 n -= count;
1402 atomic_add(count, &bh->b_count);
1403 buf += count;
1404 if (atomic_read(&bh->b_count) == bh->b_size) {
1405 bh = bh->b_reqnext;
1406 if (bh)
1407 atomic_set(&bh->b_count, 0);
1408 }
1409 }
1410 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001411 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001414static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001415 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
1417 struct idetape_bh *bh = tape->bh;
1418 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001419 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001423 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1424 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001425 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001428 if (copy_to_user(buf, tape->b_data, count))
1429 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 n -= count;
1431 tape->b_data += count;
1432 tape->b_count -= count;
1433 buf += count;
1434 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001435 bh = bh->b_reqnext;
1436 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (bh) {
1438 tape->b_data = bh->b_data;
1439 tape->b_count = atomic_read(&bh->b_count);
1440 }
1441 }
1442 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001443 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444}
1445
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001446static void idetape_init_merge_stage(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
1448 struct idetape_bh *bh = tape->merge_stage->bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 tape->bh = bh;
Borislav Petkov54abf372008-02-06 02:57:52 +01001451 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 atomic_set(&bh->b_count, 0);
1453 else {
1454 tape->b_data = bh->b_data;
1455 tape->b_count = atomic_read(&bh->b_count);
1456 }
1457}
1458
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001459static ide_startstop_t idetape_read_position_callback(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001462 u8 *readpos = tape->pc->buf;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001463
1464 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 if (!tape->pc->error) {
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001467 debug_log(DBG_SENSE, "BOP - %s\n",
1468 (readpos[0] & 0x80) ? "Yes" : "No");
1469 debug_log(DBG_SENSE, "EOP - %s\n",
1470 (readpos[0] & 0x40) ? "Yes" : "No");
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001471
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001472 if (readpos[0] & 0x4) {
1473 printk(KERN_INFO "ide-tape: Block location is unknown"
1474 "to the tape\n");
Borislav Petkov346331f2008-04-18 00:46:26 +02001475 clear_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 idetape_end_request(drive, 0, 0);
1477 } else {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001478 debug_log(DBG_SENSE, "Block Location - %u\n",
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001479 be32_to_cpu(*(u32 *)&readpos[4]));
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001480
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001481 tape->partition = readpos[1];
Borislav Petkov54bb2072008-02-06 02:57:52 +01001482 tape->first_frame =
Borislav Petkova2f5b7f2008-02-06 02:57:51 +01001483 be32_to_cpu(*(u32 *)&readpos[4]);
Borislav Petkov346331f2008-04-18 00:46:26 +02001484 set_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 idetape_end_request(drive, 1, 0);
1486 }
1487 } else {
1488 idetape_end_request(drive, 0, 0);
1489 }
1490 return ide_stopped;
1491}
1492
1493/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001494 * Write a filemark if write_filemark=1. Flush the device buffers without
1495 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001497static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001498 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001501 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001503 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001504 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Borislav Petkovd236d742008-04-18 00:46:27 +02001507static void idetape_create_test_unit_ready_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001510 pc->c[0] = TEST_UNIT_READY;
Borislav Petkovd236d742008-04-18 00:46:27 +02001511 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
1514/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001515 * We add a special packet command request to the tail of the request queue, and
1516 * wait for it to be serviced. This is not to be called from within the request
1517 * handling part of the driver! We allocate here data on the stack and it is
1518 * valid until the request is finished. This is not the case for the bottom part
1519 * of the driver, where we are always leaving the functions to wait for an
1520 * interrupt or a timer event.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001522 * From the bottom part of the driver, we should allocate safe memory using
1523 * idetape_next_pc_storage() and ide_tape_next_rq_storage(), and add the request
1524 * to the request list without waiting for it to be serviced! In that case, we
1525 * usually use idetape_queue_pc_head().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 */
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001527static int idetape_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 struct ide_tape_obj *tape = drive->driver_data;
1530 struct request rq;
1531
1532 idetape_init_rq(&rq, REQ_IDETAPE_PC1);
1533 rq.buffer = (char *) pc;
1534 rq.rq_disk = tape->disk;
1535 return ide_do_drive_cmd(drive, &rq, ide_wait);
1536}
1537
Borislav Petkovd236d742008-04-18 00:46:27 +02001538static void idetape_create_load_unload_cmd(ide_drive_t *drive,
1539 struct ide_atapi_pc *pc, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001542 pc->c[0] = START_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 pc->c[4] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001544 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001545 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
1548static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1549{
1550 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001551 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 int load_attempted = 0;
1553
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001554 /* Wait for the tape to become ready */
Borislav Petkov346331f2008-04-18 00:46:26 +02001555 set_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 timeout += jiffies;
1557 while (time_before(jiffies, timeout)) {
1558 idetape_create_test_unit_ready_cmd(&pc);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001559 if (!idetape_queue_pc_tail(drive, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return 0;
1561 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001562 || (tape->asc == 0x3A)) {
1563 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (load_attempted)
1565 return -ENOMEDIUM;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001566 idetape_create_load_unload_cmd(drive, &pc,
1567 IDETAPE_LU_LOAD_MASK);
Borislav Petkovea1ab3d2008-04-27 15:38:27 +02001568 idetape_queue_pc_tail(drive, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 load_attempted = 1;
1570 /* not about to be ready */
1571 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1572 (tape->ascq == 1 || tape->ascq == 8)))
1573 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001574 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
1576 return -EIO;
1577}
1578
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001579static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Borislav Petkovd236d742008-04-18 00:46:27 +02001581 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 int rc;
1583
1584 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001585 rc = idetape_queue_pc_tail(drive, &pc);
1586 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return rc;
1588 idetape_wait_ready(drive, 60 * 5 * HZ);
1589 return 0;
1590}
1591
Borislav Petkovd236d742008-04-18 00:46:27 +02001592static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001595 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001596 pc->req_xfer = 20;
1597 pc->idetape_callback = &idetape_read_position_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001600static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001603 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int position;
1605
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001606 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 idetape_create_read_position_cmd(&pc);
1609 if (idetape_queue_pc_tail(drive, &pc))
1610 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001611 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return position;
1613}
1614
Borislav Petkovd236d742008-04-18 00:46:27 +02001615static void idetape_create_locate_cmd(ide_drive_t *drive,
1616 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001617 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001620 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001622 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001624 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001625 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
Borislav Petkovd236d742008-04-18 00:46:27 +02001628static int idetape_create_prevent_cmd(ide_drive_t *drive,
1629 struct ide_atapi_pc *pc, int prevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
1631 idetape_tape_t *tape = drive->driver_data;
1632
Borislav Petkovb6422012008-02-02 19:56:49 +01001633 /* device supports locking according to capabilities page */
1634 if (!(tape->caps[6] & 0x01))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return 0;
1636
1637 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001638 pc->c[0] = ALLOW_MEDIUM_REMOVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 pc->c[4] = prevent;
Borislav Petkovd236d742008-04-18 00:46:27 +02001640 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return 1;
1642}
1643
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001644static int __idetape_discard_read_pipeline(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Borislav Petkov54abf372008-02-06 02:57:52 +01001648 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return 0;
1650
Borislav Petkov83042b22008-04-27 15:38:27 +02001651 clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 tape->merge_stage_size = 0;
1653 if (tape->merge_stage != NULL) {
Borislav Petkovd01dbc32008-04-27 15:38:33 +02001654 ide_tape_kfree_buffer(tape->merge_stage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 tape->merge_stage = NULL;
1656 }
1657
Borislav Petkov54abf372008-02-06 02:57:52 +01001658 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Borislav Petkov83042b22008-04-27 15:38:27 +02001660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
1663/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001664 * Position the tape to the requested block using the LOCATE packet command.
1665 * A READ POSITION command is then issued to check where we are positioned. Like
1666 * all higher level operations, we queue the commands at the tail of the request
1667 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001669static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1670 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
1672 idetape_tape_t *tape = drive->driver_data;
1673 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001674 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Borislav Petkov54abf372008-02-06 02:57:52 +01001676 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 __idetape_discard_read_pipeline(drive);
1678 idetape_wait_ready(drive, 60 * 5 * HZ);
1679 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
1680 retval = idetape_queue_pc_tail(drive, &pc);
1681 if (retval)
1682 return (retval);
1683
1684 idetape_create_read_position_cmd(&pc);
1685 return (idetape_queue_pc_tail(drive, &pc));
1686}
1687
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001688static void idetape_discard_read_pipeline(ide_drive_t *drive,
1689 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
1691 idetape_tape_t *tape = drive->driver_data;
1692 int cnt;
1693 int seek, position;
1694
1695 cnt = __idetape_discard_read_pipeline(drive);
1696 if (restore_position) {
1697 position = idetape_read_position(drive);
1698 seek = position > cnt ? position - cnt : 0;
1699 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001700 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
1701 " discard_pipeline()\n", tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return;
1703 }
1704 }
1705}
1706
1707/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001708 * Generate a read/write request for the block device interface and wait for it
1709 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001711static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1712 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 idetape_tape_t *tape = drive->driver_data;
1715 struct request rq;
1716
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001717 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 idetape_init_rq(&rq, cmd);
1720 rq.rq_disk = tape->disk;
1721 rq.special = (void *)bh;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001722 rq.sector = tape->first_frame;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001723 rq.nr_sectors = blocks;
1724 rq.current_nr_sectors = blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 (void) ide_do_drive_cmd(drive, &rq, ide_wait);
1726
1727 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1728 return 0;
1729
1730 if (tape->merge_stage)
1731 idetape_init_merge_stage(tape);
1732 if (rq.errors == IDETAPE_ERROR_GENERAL)
1733 return -EIO;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001734 return (tape->blk_size * (blocks-rq.current_nr_sectors));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
Borislav Petkovd236d742008-04-18 00:46:27 +02001737static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
1739 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001740 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001741 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001742 pc->req_xfer = 254;
1743 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
Borislav Petkovd236d742008-04-18 00:46:27 +02001746static void idetape_create_rewind_cmd(ide_drive_t *drive,
1747 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
1749 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001750 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001751 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001752 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
Borislav Petkovd236d742008-04-18 00:46:27 +02001755static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
1757 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001758 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001760 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001761 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Borislav Petkovd236d742008-04-18 00:46:27 +02001764static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
1766 idetape_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001767 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001768 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001770 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Borislav Petkovd236d742008-04-18 00:46:27 +02001771 pc->idetape_callback = &idetape_pc_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772}
1773
Borislav Petkov97c566c2008-04-27 15:38:25 +02001774/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001775static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
1777 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001779 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001781 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1782 blocks, tape->merge_stage->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
1784
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001785static void idetape_empty_write_pipeline(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
1787 idetape_tape_t *tape = drive->driver_data;
1788 int blocks, min;
1789 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001790
Borislav Petkov54abf372008-02-06 02:57:52 +01001791 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001792 printk(KERN_ERR "ide-tape: bug: Trying to empty write pipeline,"
1793 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return;
1795 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001796 if (tape->merge_stage_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkovf73850a2008-04-27 15:38:33 +02001798 tape->merge_stage_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 if (tape->merge_stage_size) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001801 blocks = tape->merge_stage_size / tape->blk_size;
1802 if (tape->merge_stage_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 unsigned int i;
1804
1805 blocks++;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001806 i = tape->blk_size - tape->merge_stage_size %
1807 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 bh = tape->bh->b_reqnext;
1809 while (bh) {
1810 atomic_set(&bh->b_count, 0);
1811 bh = bh->b_reqnext;
1812 }
1813 bh = tape->bh;
1814 while (i) {
1815 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001816 printk(KERN_INFO "ide-tape: bug,"
1817 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 break;
1819 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001820 min = min(i, (unsigned int)(bh->b_size -
1821 atomic_read(&bh->b_count)));
1822 memset(bh->b_data + atomic_read(&bh->b_count),
1823 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 atomic_add(min, &bh->b_count);
1825 i -= min;
1826 bh = bh->b_reqnext;
1827 }
1828 }
1829 (void) idetape_add_chrdev_write_request(drive, blocks);
1830 tape->merge_stage_size = 0;
1831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (tape->merge_stage != NULL) {
Borislav Petkovd01dbc32008-04-27 15:38:33 +02001833 ide_tape_kfree_buffer(tape->merge_stage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 tape->merge_stage = NULL;
1835 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001836 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
Borislav Petkov83042b22008-04-27 15:38:27 +02001839static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
1841 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001845 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1846 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 idetape_empty_write_pipeline(drive);
1848 idetape_flush_tape_buffers(drive);
1849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 if (tape->merge_stage || tape->merge_stage_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001851 printk(KERN_ERR "ide-tape: merge_stage_size should be"
1852 " 0 now\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 tape->merge_stage_size = 0;
1854 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001855 tape->merge_stage = ide_tape_kmalloc_buffer(tape, 0, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001856 if (!tape->merge_stage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001858 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001861 * Issue a read 0 command to ensure that DSC handshake is
1862 * switched from completion mode to buffer available mode.
1863 * No point in issuing this if DSC overlap isn't supported, some
1864 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 */
1866 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001867 bytes_read = idetape_queue_rw_tail(drive,
1868 REQ_IDETAPE_READ, 0,
1869 tape->merge_stage->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if (bytes_read < 0) {
Borislav Petkovd01dbc32008-04-27 15:38:33 +02001871 ide_tape_kfree_buffer(tape->merge_stage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 tape->merge_stage = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001873 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return bytes_read;
1875 }
1876 }
1877 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return 0;
1880}
1881
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001882/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001883static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001887 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001889 /* If we are at a filemark, return a read length of 0 */
Borislav Petkov346331f2008-04-18 00:46:26 +02001890 if (test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 return 0;
1892
Borislav Petkov83042b22008-04-27 15:38:27 +02001893 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001895 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
1896 tape->merge_stage->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001899static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
1901 idetape_tape_t *tape = drive->driver_data;
1902 struct idetape_bh *bh;
1903 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 while (bcount) {
1906 unsigned int count;
1907
1908 bh = tape->merge_stage->bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001909 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001911 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001913 atomic_set(&bh->b_count,
1914 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1916 count -= atomic_read(&bh->b_count);
1917 bh = bh->b_reqnext;
1918 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001919 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
1920 tape->merge_stage->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
1922}
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001925 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1926 * currently support only one partition.
1927 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001928static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
1930 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001931 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001932 idetape_tape_t *tape;
1933 tape = drive->driver_data;
1934
1935 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 idetape_create_rewind_cmd(drive, &pc);
1938 retval = idetape_queue_pc_tail(drive, &pc);
1939 if (retval)
1940 return retval;
1941
1942 idetape_create_read_position_cmd(&pc);
1943 retval = idetape_queue_pc_tail(drive, &pc);
1944 if (retval)
1945 return retval;
1946 return 0;
1947}
1948
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001949/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001950static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1951 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
1953 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 void __user *argp = (void __user *)arg;
1955
Borislav Petkovd59823f2008-02-02 19:56:51 +01001956 struct idetape_config {
1957 int dsc_rw_frequency;
1958 int dsc_media_access_frequency;
1959 int nr_stages;
1960 } config;
1961
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001962 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001965 case 0x0340:
1966 if (copy_from_user(&config, argp, sizeof(config)))
1967 return -EFAULT;
1968 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001969 break;
1970 case 0x0350:
1971 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001972 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001973 if (copy_to_user(argp, &config, sizeof(config)))
1974 return -EFAULT;
1975 break;
1976 default:
1977 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979 return 0;
1980}
1981
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001982static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1983 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
1985 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001986 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001987 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001988 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 if (mt_count == 0)
1991 return 0;
1992 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001993 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001995 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997
Borislav Petkov54abf372008-02-06 02:57:52 +01001998 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 tape->merge_stage_size = 0;
Borislav Petkov346331f2008-04-18 00:46:26 +02002000 if (test_and_clear_bit(IDETAPE_FLAG_FILEMARK, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 ++count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 idetape_discard_read_pipeline(drive, 0);
2003 }
2004
2005 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002006 * The filemark was not found in our internal pipeline; now we can issue
2007 * the space command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 */
2009 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002010 case MTFSF:
2011 case MTBSF:
2012 idetape_create_space_cmd(&pc, mt_count - count,
2013 IDETAPE_SPACE_OVER_FILEMARK);
2014 return idetape_queue_pc_tail(drive, &pc);
2015 case MTFSFM:
2016 case MTBSFM:
2017 if (!sprev)
2018 return -EIO;
2019 retval = idetape_space_over_filemarks(drive, MTFSF,
2020 mt_count - count);
2021 if (retval)
2022 return retval;
2023 count = (MTBSFM == mt_op ? 1 : -1);
2024 return idetape_space_over_filemarks(drive, MTFSF, count);
2025 default:
2026 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
2027 mt_op);
2028 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030}
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002033 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002035 * The tape is optimized to maximize throughput when it is transferring an
2036 * integral number of the "continuous transfer limit", which is a parameter of
2037 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002039 * As of version 1.3 of the driver, the character device provides an abstract
2040 * continuous view of the media - any mix of block sizes (even 1 byte) on the
2041 * same backup/restore procedure is supported. The driver will internally
2042 * convert the requests to the recommended transfer unit, so that an unmatch
2043 * between the user's block size to the recommended size will only result in a
2044 * (slightly) increased driver overhead, but will no longer hit performance.
2045 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002047static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
2048 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
2050 struct ide_tape_obj *tape = ide_tape_f(file);
2051 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002052 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07002053 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002054 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002056 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Borislav Petkov54abf372008-02-06 02:57:52 +01002058 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002059 if (test_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01002060 if (count > tape->blk_size &&
2061 (count % tape->blk_size) == 0)
2062 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
Borislav Petkov83042b22008-04-27 15:38:27 +02002064 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01002065 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return rc;
2067 if (count == 0)
2068 return (0);
2069 if (tape->merge_stage_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002070 actually_read = min((unsigned int)(tape->merge_stage_size),
2071 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02002072 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002073 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 buf += actually_read;
2075 tape->merge_stage_size -= actually_read;
2076 count -= actually_read;
2077 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002078 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002079 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (bytes_read <= 0)
2081 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02002082 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002083 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 buf += bytes_read;
2085 count -= bytes_read;
2086 actually_read += bytes_read;
2087 }
2088 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002089 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 if (bytes_read <= 0)
2091 goto finish;
2092 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02002093 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002094 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 actually_read += temp;
2096 tape->merge_stage_size = bytes_read-temp;
2097 }
2098finish:
Borislav Petkov346331f2008-04-18 00:46:26 +02002099 if (!actually_read && test_bit(IDETAPE_FLAG_FILEMARK, &tape->flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002100 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 idetape_space_over_filemarks(drive, MTFSF, 1);
2103 return 0;
2104 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07002105
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002106 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002109static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 size_t count, loff_t *ppos)
2111{
2112 struct ide_tape_obj *tape = ide_tape_f(file);
2113 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07002114 ssize_t actually_written = 0;
2115 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002116 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 /* The drive is write protected. */
2119 if (tape->write_prot)
2120 return -EACCES;
2121
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002122 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01002125 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
2126 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 idetape_discard_read_pipeline(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (tape->merge_stage || tape->merge_stage_size) {
2129 printk(KERN_ERR "ide-tape: merge_stage_size "
2130 "should be 0 now\n");
2131 tape->merge_stage_size = 0;
2132 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02002133 tape->merge_stage = ide_tape_kmalloc_buffer(tape, 0, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002134 if (!tape->merge_stage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01002136 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 idetape_init_merge_stage(tape);
2138
2139 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002140 * Issue a write 0 command to ensure that DSC handshake is
2141 * switched from completion mode to buffer available mode. No
2142 * point in issuing this if DSC overlap isn't supported, some
2143 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 */
2145 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002146 ssize_t retval = idetape_queue_rw_tail(drive,
2147 REQ_IDETAPE_WRITE, 0,
2148 tape->merge_stage->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (retval < 0) {
Borislav Petkovd01dbc32008-04-27 15:38:33 +02002150 ide_tape_kfree_buffer(tape->merge_stage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 tape->merge_stage = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01002152 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return retval;
2154 }
2155 }
2156 }
2157 if (count == 0)
2158 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (tape->merge_stage_size) {
Borislav Petkovf73850a2008-04-27 15:38:33 +02002160 if (tape->merge_stage_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002161 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 tape->merge_stage_size = 0;
2163 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002164 actually_written = min((unsigned int)
Borislav Petkovf73850a2008-04-27 15:38:33 +02002165 (tape->buffer_size - tape->merge_stage_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002166 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02002167 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002168 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 buf += actually_written;
2170 tape->merge_stage_size += actually_written;
2171 count -= actually_written;
2172
Borislav Petkovf73850a2008-04-27 15:38:33 +02002173 if (tape->merge_stage_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002174 ssize_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 tape->merge_stage_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01002176 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (retval <= 0)
2178 return (retval);
2179 }
2180 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002181 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07002182 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002183 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002184 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002185 buf += tape->buffer_size;
2186 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002187 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002188 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (retval <= 0)
2190 return (retval);
2191 }
2192 if (count) {
2193 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02002194 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07002195 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 tape->merge_stage_size += count;
2197 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002198 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002201static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Borislav Petkovd236d742008-04-18 00:46:27 +02002203 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
2205 /* Write a filemark */
2206 idetape_create_write_filemark_cmd(drive, &pc, 1);
2207 if (idetape_queue_pc_tail(drive, &pc)) {
2208 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
2209 return -EIO;
2210 }
2211 return 0;
2212}
2213
2214/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002215 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
2216 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002218 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
2219 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02002220 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002222 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002224 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
2225 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002227static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228{
2229 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002230 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002231 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002233 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
2234 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002237 case MTFSF:
2238 case MTFSFM:
2239 case MTBSF:
2240 case MTBSFM:
2241 if (!mt_count)
2242 return 0;
2243 return idetape_space_over_filemarks(drive, mt_op, mt_count);
2244 default:
2245 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002249 case MTWEOF:
2250 if (tape->write_prot)
2251 return -EACCES;
2252 idetape_discard_read_pipeline(drive, 1);
2253 for (i = 0; i < mt_count; i++) {
2254 retval = idetape_write_filemark(drive);
2255 if (retval)
2256 return retval;
2257 }
2258 return 0;
2259 case MTREW:
2260 idetape_discard_read_pipeline(drive, 0);
2261 if (idetape_rewind_tape(drive))
2262 return -EIO;
2263 return 0;
2264 case MTLOAD:
2265 idetape_discard_read_pipeline(drive, 0);
2266 idetape_create_load_unload_cmd(drive, &pc,
2267 IDETAPE_LU_LOAD_MASK);
2268 return idetape_queue_pc_tail(drive, &pc);
2269 case MTUNLOAD:
2270 case MTOFFL:
2271 /*
2272 * If door is locked, attempt to unlock before
2273 * attempting to eject.
2274 */
2275 if (tape->door_locked) {
2276 if (idetape_create_prevent_cmd(drive, &pc, 0))
2277 if (!idetape_queue_pc_tail(drive, &pc))
2278 tape->door_locked = DOOR_UNLOCKED;
2279 }
2280 idetape_discard_read_pipeline(drive, 0);
2281 idetape_create_load_unload_cmd(drive, &pc,
2282 !IDETAPE_LU_LOAD_MASK);
2283 retval = idetape_queue_pc_tail(drive, &pc);
2284 if (!retval)
Borislav Petkov346331f2008-04-18 00:46:26 +02002285 clear_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002286 return retval;
2287 case MTNOP:
2288 idetape_discard_read_pipeline(drive, 0);
2289 return idetape_flush_tape_buffers(drive);
2290 case MTRETEN:
2291 idetape_discard_read_pipeline(drive, 0);
2292 idetape_create_load_unload_cmd(drive, &pc,
2293 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
2294 return idetape_queue_pc_tail(drive, &pc);
2295 case MTEOM:
2296 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
2297 return idetape_queue_pc_tail(drive, &pc);
2298 case MTERASE:
2299 (void)idetape_rewind_tape(drive);
2300 idetape_create_erase_cmd(&pc);
2301 return idetape_queue_pc_tail(drive, &pc);
2302 case MTSETBLK:
2303 if (mt_count) {
2304 if (mt_count < tape->blk_size ||
2305 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002307 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkov346331f2008-04-18 00:46:26 +02002308 clear_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002309 } else
Borislav Petkov346331f2008-04-18 00:46:26 +02002310 set_bit(IDETAPE_FLAG_DETECT_BS, &tape->flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002311 return 0;
2312 case MTSEEK:
2313 idetape_discard_read_pipeline(drive, 0);
2314 return idetape_position_tape(drive,
2315 mt_count * tape->user_bs_factor, tape->partition, 0);
2316 case MTSETPART:
2317 idetape_discard_read_pipeline(drive, 0);
2318 return idetape_position_tape(drive, 0, mt_count, 0);
2319 case MTFSR:
2320 case MTBSR:
2321 case MTLOCK:
2322 if (!idetape_create_prevent_cmd(drive, &pc, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002324 retval = idetape_queue_pc_tail(drive, &pc);
2325 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002327 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
2328 return 0;
2329 case MTUNLOCK:
2330 if (!idetape_create_prevent_cmd(drive, &pc, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return 0;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002332 retval = idetape_queue_pc_tail(drive, &pc);
2333 if (retval)
2334 return retval;
2335 tape->door_locked = DOOR_UNLOCKED;
2336 return 0;
2337 default:
2338 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
2339 mt_op);
2340 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
2342}
2343
2344/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002345 * Our character device ioctls. General mtio.h magnetic io commands are
2346 * supported here, and not in the corresponding block interface. Our own
2347 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01002349static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
2350 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
2352 struct ide_tape_obj *tape = ide_tape_f(file);
2353 ide_drive_t *drive = tape->drive;
2354 struct mtop mtop;
2355 struct mtget mtget;
2356 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002357 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 void __user *argp = (void __user *)arg;
2359
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002360 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Borislav Petkov54abf372008-02-06 02:57:52 +01002362 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 idetape_empty_write_pipeline(drive);
2364 idetape_flush_tape_buffers(drive);
2365 }
2366 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkovb361acb2008-04-27 15:38:26 +02002367 block_offset = tape->merge_stage_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01002368 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002369 position = idetape_read_position(drive);
2370 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 return -EIO;
2372 }
2373 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002374 case MTIOCTOP:
2375 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
2376 return -EFAULT;
2377 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
2378 case MTIOCGET:
2379 memset(&mtget, 0, sizeof(struct mtget));
2380 mtget.mt_type = MT_ISSCSI2;
2381 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
2382 mtget.mt_dsreg =
2383 ((tape->blk_size * tape->user_bs_factor)
2384 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01002385
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002386 if (tape->drv_write_prot)
2387 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
2388
2389 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
2390 return -EFAULT;
2391 return 0;
2392 case MTIOCPOS:
2393 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
2394 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
2395 return -EFAULT;
2396 return 0;
2397 default:
2398 if (tape->chrdev_dir == IDETAPE_DIR_READ)
2399 idetape_discard_read_pipeline(drive, 1);
2400 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 }
2402}
2403
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002404/*
2405 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
2406 * block size with the reported value.
2407 */
2408static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
2409{
2410 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002411 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002412
2413 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
2414 if (idetape_queue_pc_tail(drive, &pc)) {
2415 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002416 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002417 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
2418 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002419 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002420 }
2421 return;
2422 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002423 tape->blk_size = (pc.buf[4 + 5] << 16) +
2424 (pc.buf[4 + 6] << 8) +
2425 pc.buf[4 + 7];
2426 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002427}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002429static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
2431 unsigned int minor = iminor(inode), i = minor & ~0xc0;
2432 ide_drive_t *drive;
2433 idetape_tape_t *tape;
Borislav Petkovd236d742008-04-18 00:46:27 +02002434 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 int retval;
2436
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002437 if (i >= MAX_HWIFS * MAX_DRIVES)
2438 return -ENXIO;
2439
2440 tape = ide_tape_chrdev_get(i);
2441 if (!tape)
2442 return -ENXIO;
2443
2444 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
2445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 /*
2447 * We really want to do nonseekable_open(inode, filp); here, but some
2448 * versions of tar incorrectly call lseek on tapes and bail out if that
2449 * fails. So we disallow pread() and pwrite(), but permit lseeks.
2450 */
2451 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 drive = tape->drive;
2454
2455 filp->private_data = tape;
2456
Borislav Petkov346331f2008-04-18 00:46:26 +02002457 if (test_and_set_bit(IDETAPE_FLAG_BUSY, &tape->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 retval = -EBUSY;
2459 goto out_put_tape;
2460 }
2461
2462 retval = idetape_wait_ready(drive, 60 * HZ);
2463 if (retval) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002464 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2466 goto out_put_tape;
2467 }
2468
2469 idetape_read_position(drive);
Borislav Petkov346331f2008-04-18 00:46:26 +02002470 if (!test_bit(IDETAPE_FLAG_ADDRESS_VALID, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 (void)idetape_rewind_tape(drive);
2472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002474 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
2476 /* Set write protect flag if device is opened as read-only. */
2477 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2478 tape->write_prot = 1;
2479 else
2480 tape->write_prot = tape->drv_write_prot;
2481
2482 /* Make sure drive isn't write protected if user wants to write. */
2483 if (tape->write_prot) {
2484 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2485 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkov346331f2008-04-18 00:46:26 +02002486 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 retval = -EROFS;
2488 goto out_put_tape;
2489 }
2490 }
2491
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002492 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01002493 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 if (idetape_create_prevent_cmd(drive, &pc, 1)) {
2495 if (!idetape_queue_pc_tail(drive, &pc)) {
2496 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2497 tape->door_locked = DOOR_LOCKED;
2498 }
2499 }
2500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 return 0;
2502
2503out_put_tape:
2504 ide_tape_put(tape);
2505 return retval;
2506}
2507
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002508static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
2510 idetape_tape_t *tape = drive->driver_data;
2511
2512 idetape_empty_write_pipeline(drive);
Borislav Petkov41aa1702008-04-27 15:38:32 +02002513 tape->merge_stage = ide_tape_kmalloc_buffer(tape, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 if (tape->merge_stage != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002515 idetape_pad_zeros(drive, tape->blk_size *
2516 (tape->user_bs_factor - 1));
Borislav Petkovd01dbc32008-04-27 15:38:33 +02002517 ide_tape_kfree_buffer(tape->merge_stage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 tape->merge_stage = NULL;
2519 }
2520 idetape_write_filemark(drive);
2521 idetape_flush_tape_buffers(drive);
2522 idetape_flush_tape_buffers(drive);
2523}
2524
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002525static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
2527 struct ide_tape_obj *tape = ide_tape_f(filp);
2528 ide_drive_t *drive = tape->drive;
Borislav Petkovd236d742008-04-18 00:46:27 +02002529 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 unsigned int minor = iminor(inode);
2531
2532 lock_kernel();
2533 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002534
2535 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Borislav Petkov54abf372008-02-06 02:57:52 +01002537 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002539 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if (minor < 128)
2541 idetape_discard_read_pipeline(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002543
Borislav Petkov346331f2008-04-18 00:46:26 +02002544 if (minor < 128 && test_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002546 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 if (tape->door_locked == DOOR_LOCKED) {
2548 if (idetape_create_prevent_cmd(drive, &pc, 0)) {
2549 if (!idetape_queue_pc_tail(drive, &pc))
2550 tape->door_locked = DOOR_UNLOCKED;
2551 }
2552 }
2553 }
Borislav Petkov346331f2008-04-18 00:46:26 +02002554 clear_bit(IDETAPE_FLAG_BUSY, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 ide_tape_put(tape);
2556 unlock_kernel();
2557 return 0;
2558}
2559
2560/*
Borislav Petkov71071b82008-02-06 02:57:53 +01002561 * check the contents of the ATAPI IDENTIFY command results. We return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002563 * 1 - If the tape can be supported by us, based on the information we have so
2564 * far.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 *
Borislav Petkov71071b82008-02-06 02:57:53 +01002566 * 0 - If this tape driver is not currently supported by us.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 */
Borislav Petkov71071b82008-02-06 02:57:53 +01002568static int idetape_identify_device(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
Borislav Petkov71071b82008-02-06 02:57:53 +01002570 u8 gcw[2], protocol, device_type, removable, packet_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
2572 if (drive->id_read == 0)
2573 return 1;
2574
Borislav Petkov71071b82008-02-06 02:57:53 +01002575 *((unsigned short *) &gcw) = drive->id->config;
2576
2577 protocol = (gcw[1] & 0xC0) >> 6;
2578 device_type = gcw[1] & 0x1F;
2579 removable = !!(gcw[0] & 0x80);
2580 packet_size = gcw[0] & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 /* Check that we can support this device */
Borislav Petkov71071b82008-02-06 02:57:53 +01002583 if (protocol != 2)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002584 printk(KERN_ERR "ide-tape: Protocol (0x%02x) is not ATAPI\n",
Borislav Petkov71071b82008-02-06 02:57:53 +01002585 protocol);
2586 else if (device_type != 1)
Bartlomiej Zolnierkiewicz16422de32008-02-02 19:56:48 +01002587 printk(KERN_ERR "ide-tape: Device type (0x%02x) is not set "
Borislav Petkov71071b82008-02-06 02:57:53 +01002588 "to tape\n", device_type);
2589 else if (!removable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 printk(KERN_ERR "ide-tape: The removable flag is not set\n");
Borislav Petkov71071b82008-02-06 02:57:53 +01002591 else if (packet_size != 0) {
Borislav Petkov24d57f82008-02-06 02:57:54 +01002592 printk(KERN_ERR "ide-tape: Packet size (0x%02x) is not 12"
2593 " bytes\n", packet_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 } else
2595 return 1;
2596 return 0;
2597}
2598
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002599static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002602 struct ide_atapi_pc pc;
Borislav Petkov41f81d542008-02-06 02:57:52 +01002603 char fw_rev[6], vendor_id[10], product_id[18];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002604
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 idetape_create_inquiry_cmd(&pc);
2606 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002607 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2608 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 return;
2610 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002611 memcpy(vendor_id, &pc.buf[8], 8);
2612 memcpy(product_id, &pc.buf[16], 16);
2613 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002614
Borislav Petkov41f81d542008-02-06 02:57:52 +01002615 ide_fixstring(vendor_id, 10, 0);
2616 ide_fixstring(product_id, 18, 0);
2617 ide_fixstring(fw_rev, 6, 0);
2618
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002619 printk(KERN_INFO "ide-tape: %s <-> %s: %s %s rev %s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002620 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
2622
2623/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002624 * Ask the tape about its various parameters. In particular, we will adjust our
2625 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002627static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
2629 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002630 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002631 u8 *caps;
2632 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
2635 if (idetape_queue_pc_tail(drive, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002636 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2637 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002638 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002639 put_unaligned(52, (u16 *)&tape->caps[12]);
2640 put_unaligned(540, (u16 *)&tape->caps[14]);
2641 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 return;
2643 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002644 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Borislav Petkovb6422012008-02-02 19:56:49 +01002646 /* convert to host order and save for later use */
2647 speed = be16_to_cpu(*(u16 *)&caps[14]);
2648 max_speed = be16_to_cpu(*(u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Borislav Petkovb6422012008-02-02 19:56:49 +01002650 put_unaligned(max_speed, (u16 *)&caps[8]);
2651 put_unaligned(be16_to_cpu(*(u16 *)&caps[12]), (u16 *)&caps[12]);
2652 put_unaligned(speed, (u16 *)&caps[14]);
2653 put_unaligned(be16_to_cpu(*(u16 *)&caps[16]), (u16 *)&caps[16]);
2654
2655 if (!speed) {
2656 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2657 "(assuming 650KB/sec)\n", drive->name);
2658 put_unaligned(650, (u16 *)&caps[14]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002660 if (!max_speed) {
2661 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2662 "(assuming 650KB/sec)\n", drive->name);
2663 put_unaligned(650, (u16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
2665
Borislav Petkovb6422012008-02-02 19:56:49 +01002666 memcpy(&tape->caps, caps, 20);
2667 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002668 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002669 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002670 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671}
2672
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002673#ifdef CONFIG_IDE_PROC_FS
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002674static void idetape_add_settings(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
2676 idetape_tape_t *tape = drive->driver_data;
2677
Borislav Petkovb6422012008-02-02 19:56:49 +01002678 ide_add_setting(drive, "buffer", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2679 1, 2, (u16 *)&tape->caps[16], NULL);
Borislav Petkovb6422012008-02-02 19:56:49 +01002680 ide_add_setting(drive, "speed", SETTING_READ, TYPE_SHORT, 0, 0xffff,
2681 1, 1, (u16 *)&tape->caps[14], NULL);
Borislav Petkovf73850a2008-04-27 15:38:33 +02002682 ide_add_setting(drive, "buffer_size", SETTING_READ, TYPE_INT, 0, 0xffff,
2683 1, 1024, &tape->buffer_size, NULL);
Borislav Petkov54bb2072008-02-06 02:57:52 +01002684 ide_add_setting(drive, "tdsc", SETTING_RW, TYPE_INT, IDETAPE_DSC_RW_MIN,
2685 IDETAPE_DSC_RW_MAX, 1000, HZ, &tape->best_dsc_rw_freq,
2686 NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002687 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1,
2688 1, &drive->dsc_overlap, NULL);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002689 ide_add_setting(drive, "avg_speed", SETTING_READ, TYPE_INT, 0, 0xffff,
2690 1, 1, &tape->avg_speed, NULL);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002691 ide_add_setting(drive, "debug_mask", SETTING_RW, TYPE_INT, 0, 0xffff, 1,
2692 1, &tape->debug_mask, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002694#else
2695static inline void idetape_add_settings(ide_drive_t *drive) { ; }
2696#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
2698/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002699 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002701 * 1. Initialize our various state variables.
2702 * 2. Ask the tape for its capabilities.
2703 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2704 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002706 * Note that at this point ide.c already assigned us an irq, so that we can
2707 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002709static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710{
Borislav Petkov83042b22008-04-27 15:38:27 +02002711 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002713 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002714 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002715 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Borislav Petkov54bb2072008-02-06 02:57:52 +01002717 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002719 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2720 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2721 tape->name);
2722 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 /* Seagate Travan drives do not support DSC overlap. */
2725 if (strstr(drive->id->model, "Seagate STT3401"))
2726 drive->dsc_overlap = 0;
2727 tape->minor = minor;
2728 tape->name[0] = 'h';
2729 tape->name[1] = 't';
2730 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002731 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 tape->pc = tape->pc_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 *((unsigned short *) &gcw) = drive->id->config;
Borislav Petkov71071b82008-02-06 02:57:53 +01002734
2735 /* Command packet DRQ type */
2736 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkov346331f2008-04-18 00:46:26 +02002737 set_bit(IDETAPE_FLAG_DRQ_INTERRUPT, &tape->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 idetape_get_inquiry_results(drive);
2740 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002741 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002743 tape->buffer_size = *ctl * tape->blk_size;
2744 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002746 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002747 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002749 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002750 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002751 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002752 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002753 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 }
2755
Borislav Petkov83042b22008-04-27 15:38:27 +02002756 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002757 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Borislav Petkovf73850a2008-04-27 15:38:33 +02002759 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002762 * Ensure that the number we got makes sense; limit it within
2763 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 */
Borislav Petkov54bb2072008-02-06 02:57:52 +01002765 tape->best_dsc_rw_freq = max_t(unsigned long,
2766 min_t(unsigned long, t, IDETAPE_DSC_RW_MAX),
2767 IDETAPE_DSC_RW_MIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002769 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002770 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002771 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2772 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002773 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 drive->using_dma ? ", DMA":"");
2775
2776 idetape_add_settings(drive);
2777}
2778
Russell King4031bbe2006-01-06 11:41:00 +00002779static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780{
2781 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002783 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785 ide_unregister_region(tape->disk);
2786
2787 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788}
2789
2790static void ide_tape_release(struct kref *kref)
2791{
2792 struct ide_tape_obj *tape = to_ide_tape(kref);
2793 ide_drive_t *drive = tape->drive;
2794 struct gendisk *g = tape->disk;
2795
Borislav Petkov83042b22008-04-27 15:38:27 +02002796 BUG_ON(tape->merge_stage_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 drive->dsc_overlap = 0;
2799 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002800 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002801 device_destroy(idetape_sysfs_class,
2802 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 idetape_devs[tape->minor] = NULL;
2804 g->private_data = NULL;
2805 put_disk(g);
2806 kfree(tape);
2807}
2808
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002809#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810static int proc_idetape_read_name
2811 (char *page, char **start, off_t off, int count, int *eof, void *data)
2812{
2813 ide_drive_t *drive = (ide_drive_t *) data;
2814 idetape_tape_t *tape = drive->driver_data;
2815 char *out = page;
2816 int len;
2817
2818 len = sprintf(out, "%s\n", tape->name);
2819 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2820}
2821
2822static ide_proc_entry_t idetape_proc[] = {
2823 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2824 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2825 { NULL, 0, NULL, NULL }
2826};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827#endif
2828
Russell King4031bbe2006-01-06 11:41:00 +00002829static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002832 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002833 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002834 .name = "ide-tape",
2835 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002836 },
Russell King4031bbe2006-01-06 11:41:00 +00002837 .probe = ide_tape_probe,
2838 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 .version = IDETAPE_VERSION,
2840 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 .supports_dsc_overlap = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 .do_request = idetape_do_request,
2843 .end_request = idetape_end_request,
2844 .error = __ide_error,
2845 .abort = __ide_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002846#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002848#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849};
2850
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002851/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002852static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 .owner = THIS_MODULE,
2854 .read = idetape_chrdev_read,
2855 .write = idetape_chrdev_write,
2856 .ioctl = idetape_chrdev_ioctl,
2857 .open = idetape_chrdev_open,
2858 .release = idetape_chrdev_release,
2859};
2860
2861static int idetape_open(struct inode *inode, struct file *filp)
2862{
2863 struct gendisk *disk = inode->i_bdev->bd_disk;
2864 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002866 tape = ide_tape_get(disk);
2867 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return -ENXIO;
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return 0;
2871}
2872
2873static int idetape_release(struct inode *inode, struct file *filp)
2874{
2875 struct gendisk *disk = inode->i_bdev->bd_disk;
2876 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
2878 ide_tape_put(tape);
2879
2880 return 0;
2881}
2882
2883static int idetape_ioctl(struct inode *inode, struct file *file,
2884 unsigned int cmd, unsigned long arg)
2885{
2886 struct block_device *bdev = inode->i_bdev;
2887 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2888 ide_drive_t *drive = tape->drive;
2889 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2890 if (err == -EINVAL)
2891 err = idetape_blkdev_ioctl(drive, cmd, arg);
2892 return err;
2893}
2894
2895static struct block_device_operations idetape_block_ops = {
2896 .owner = THIS_MODULE,
2897 .open = idetape_open,
2898 .release = idetape_release,
2899 .ioctl = idetape_ioctl,
2900};
2901
Russell King4031bbe2006-01-06 11:41:00 +00002902static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903{
2904 idetape_tape_t *tape;
2905 struct gendisk *g;
2906 int minor;
2907
2908 if (!strstr("ide-tape", drive->driver_req))
2909 goto failed;
2910 if (!drive->present)
2911 goto failed;
2912 if (drive->media != ide_tape)
2913 goto failed;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002914 if (!idetape_identify_device(drive)) {
2915 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2916 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 goto failed;
2918 }
2919 if (drive->scsi) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002920 printk(KERN_INFO "ide-tape: passing drive %s to ide-scsi"
2921 " emulation.\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 goto failed;
2923 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002924 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002926 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2927 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 goto failed;
2929 }
2930
2931 g = alloc_disk(1 << PARTN_BITS);
2932 if (!g)
2933 goto out_free_tape;
2934
2935 ide_init_disk(g, drive);
2936
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002937 ide_proc_register_driver(drive, &idetape_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 kref_init(&tape->kref);
2940
2941 tape->drive = drive;
2942 tape->driver = &idetape_driver;
2943 tape->disk = g;
2944
2945 g->private_data = &tape->driver;
2946
2947 drive->driver_data = tape;
2948
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002949 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 for (minor = 0; idetape_devs[minor]; minor++)
2951 ;
2952 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002953 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955 idetape_setup(drive, tape, minor);
2956
Tony Jonesdbc12722007-09-25 02:03:03 +02002957 device_create(idetape_sysfs_class, &drive->gendev,
2958 MKDEV(IDETAPE_MAJOR, minor), "%s", tape->name);
2959 device_create(idetape_sysfs_class, &drive->gendev,
2960 MKDEV(IDETAPE_MAJOR, minor + 128), "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 g->fops = &idetape_block_ops;
2963 ide_register_region(g);
2964
2965 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967out_free_tape:
2968 kfree(tape);
2969failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002970 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971}
2972
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002973static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002975 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002976 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 unregister_chrdev(IDETAPE_MAJOR, "ht");
2978}
2979
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002980static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Will Dysond5dee802005-09-16 02:55:07 -07002982 int error = 1;
2983 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2984 if (IS_ERR(idetape_sysfs_class)) {
2985 idetape_sysfs_class = NULL;
2986 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2987 error = -EBUSY;
2988 goto out;
2989 }
2990
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002992 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2993 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002994 error = -EBUSY;
2995 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
Will Dysond5dee802005-09-16 02:55:07 -07002997
2998 error = driver_register(&idetape_driver.gen_driver);
2999 if (error)
3000 goto out_free_driver;
3001
3002 return 0;
3003
3004out_free_driver:
3005 driver_unregister(&idetape_driver.gen_driver);
3006out_free_class:
3007 class_destroy(idetape_sysfs_class);
3008out:
3009 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
Kay Sievers263756e2005-12-12 18:03:44 +01003012MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013module_init(idetape_init);
3014module_exit(idetape_exit);
3015MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01003016MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
3017MODULE_LICENSE("GPL");