blob: 622d5fed2dc57aca60e4b001752bcb7b2714c53c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010041#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010044#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtio.h>
49
Borislav Petkov8004a8c2008-02-06 02:57:51 +010050enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010059};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010092 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010094 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010097 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100115
116/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
Borislav Petkov54abf372008-02-06 02:57:52 +0100127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134struct idetape_bh {
Stephen Rothwellab057962007-08-01 23:46:44 +0200135 u32 b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 atomic_t b_count;
137 struct idetape_bh *b_reqnext;
138 char *b_data;
139};
140
Borislav Petkov03056b92008-04-18 00:46:26 +0200141/* Tape door status */
142#define DOOR_UNLOCKED 0
143#define DOOR_LOCKED 1
144#define DOOR_EXPLICITLY_LOCKED 2
145
146/* Some defines for the SPACE command */
147#define IDETAPE_SPACE_OVER_FILEMARK 1
148#define IDETAPE_SPACE_TO_EOD 3
149
150/* Some defines for the LOAD UNLOAD command */
151#define IDETAPE_LU_LOAD_MASK 1
152#define IDETAPE_LU_RETENSION_MASK 2
153#define IDETAPE_LU_EOT_MASK 4
154
Borislav Petkov03056b92008-04-18 00:46:26 +0200155/* Error codes returned in rq->errors to the higher part of the driver. */
156#define IDETAPE_ERROR_GENERAL 101
157#define IDETAPE_ERROR_FILEMARK 102
158#define IDETAPE_ERROR_EOD 103
159
160/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
161#define IDETAPE_BLOCK_DESCRIPTOR 0
162#define IDETAPE_CAPABILITIES_PAGE 0x2a
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100165 * Most of our global data which we need to save even as we leave the driver due
166 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168typedef struct ide_tape_obj {
169 ide_drive_t *drive;
170 ide_driver_t *driver;
171 struct gendisk *disk;
172 struct kref kref;
173
174 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * failed_pc points to the last failed packet command, or contains
176 * NULL if we do not need to retry any packet command. This is
177 * required since an additional packet command is needed before the
178 * retry, to get detailed information on what went wrong.
179 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* Last failed packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200181 struct ide_atapi_pc *failed_pc;
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200182 /* used by REQ_IDETAPE_{READ,WRITE} requests */
183 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100186 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100188 * While polling for DSC we use postponed_rq to postpone the current
189 * request so that ide.c will be able to service pending requests on the
190 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200191 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 */
193 struct request *postponed_rq;
194 /* The time in which we started polling for DSC */
195 unsigned long dsc_polling_start;
196 /* Timer used to poll for dsc */
197 struct timer_list dsc_timer;
198 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100199 unsigned long best_dsc_rw_freq;
200 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 unsigned long dsc_timeout;
202
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100203 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 u8 partition;
205 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100206 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100208 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 u8 sense_key, asc, ascq;
210
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100211 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 unsigned int minor;
213 /* device name */
214 char name[4];
215 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100216 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Borislav Petkov54bb2072008-02-06 02:57:52 +0100218 /* tape block size, usually 512 or 1024 bytes */
219 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100223 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100226 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100228 * At most, there is only one ide-tape originated data transfer request
229 * in the device request queue. This allows ide.c to easily service
230 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200232
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100233 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200234 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200235 /* merge buffer */
236 struct idetape_bh *merge_bh;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +0200237 /* size of the merge buffer */
238 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200239 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 struct idetape_bh *bh;
241 char *b_data;
242 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100243
Borislav Petkova997a432008-04-27 15:38:33 +0200244 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* Wasted space in each stage */
246 int excess_bh_size;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* protects the ide-tape queue */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100249 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100251 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 unsigned long avg_time;
253 int avg_size;
254 int avg_speed;
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* the door is currently locked */
257 int door_locked;
258 /* the tape hardware is write protected */
259 char drv_write_prot;
260 /* the tape is write protected (hardware or opened as read-only) */
261 char write_prot;
262
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100263 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264} idetape_tape_t;
265
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800266static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Will Dysond5dee802005-09-16 02:55:07 -0700268static struct class *idetape_sysfs_class;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
271
272#define ide_tape_g(disk) \
273 container_of((disk)->private_data, struct ide_tape_obj, driver)
274
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200275static void ide_tape_release(struct kref *);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
278{
279 struct ide_tape_obj *tape = NULL;
280
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800281 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 tape = ide_tape_g(disk);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200283 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200284 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200285 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200286 else
287 kref_get(&tape->kref);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200288 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800289 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return tape;
291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293static void ide_tape_put(struct ide_tape_obj *tape)
294{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200295 ide_drive_t *drive = tape->drive;
296
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800297 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 kref_put(&tape->kref, ide_tape_release);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200299 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800300 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100304 * The variables below are used for the character device interface. Additional
305 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100307static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309#define ide_tape_f(file) ((file)->private_data)
310
311static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
312{
313 struct ide_tape_obj *tape = NULL;
314
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800315 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 tape = idetape_devs[i];
317 if (tape)
318 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800319 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return tape;
321}
322
Borislav Petkovd236d742008-04-18 00:46:27 +0200323static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100324 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 struct idetape_bh *bh = pc->bh;
327 int count;
328
329 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (bh == NULL) {
331 printk(KERN_ERR "ide-tape: bh == NULL in "
332 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200333 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return;
335 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100336 count = min(
337 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
338 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200339 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100340 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 bcount -= count;
342 atomic_add(count, &bh->b_count);
343 if (atomic_read(&bh->b_count) == bh->b_size) {
344 bh = bh->b_reqnext;
345 if (bh)
346 atomic_set(&bh->b_count, 0);
347 }
348 }
349 pc->bh = bh;
350}
351
Borislav Petkovd236d742008-04-18 00:46:27 +0200352static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100353 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct idetape_bh *bh = pc->bh;
356 int count;
357
358 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100360 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
361 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return;
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200365 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 bcount -= count;
367 pc->b_data += count;
368 pc->b_count -= count;
369 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100370 bh = bh->b_reqnext;
371 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (bh) {
373 pc->b_data = bh->b_data;
374 pc->b_count = atomic_read(&bh->b_count);
375 }
376 }
377 }
378}
379
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200380static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 struct idetape_bh *bh = pc->bh;
383 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200384 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Borislav Petkov346331f2008-04-18 00:46:26 +0200386 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return;
388 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100390 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
391 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return;
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
395 atomic_set(&bh->b_count, count);
396 if (atomic_read(&bh->b_count) == bh->b_size)
397 bh = bh->b_reqnext;
398 bcount -= count;
399 }
400 pc->bh = bh;
401}
402
403/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100404 * called on each failed packet command retry to analyze the request sense. We
405 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100407static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200410 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Borislav Petkov1b5db432008-02-02 19:56:48 +0100412 tape->sense_key = sense[2] & 0xF;
413 tape->asc = sense[12];
414 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100415
416 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
417 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Borislav Petkovd236d742008-04-18 00:46:27 +0200419 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200420 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200421 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100422 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200423 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200424 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
427 /*
428 * If error was the result of a zero-length read or write command,
429 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
430 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
431 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100432 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100433 /* length == 0 */
434 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
435 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* don't report an error, everything's ok */
437 pc->error = 0;
438 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200439 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100442 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200444 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100446 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100447 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
448 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200450 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100453 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100454 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200456 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200458 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200459 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
461 }
462}
463
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200464/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200465static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200467 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200469 while (bh) {
470 u32 size = bh->b_size;
471
472 while (size) {
473 unsigned int order = fls(size >> PAGE_SHIFT)-1;
474
475 if (bh->b_data)
476 free_pages((unsigned long)bh->b_data, order);
477
478 size &= (order-1);
479 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 prev_bh = bh;
482 bh = bh->b_reqnext;
483 kfree(prev_bh);
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
488{
489 struct request *rq = HWGROUP(drive)->rq;
490 idetape_tape_t *tape = drive->driver_data;
491 unsigned long flags;
492 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100494 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100497 case 0: error = IDETAPE_ERROR_GENERAL; break;
498 case 1: error = 0; break;
499 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501 rq->errors = error;
502 if (error)
503 tape->failed_pc = NULL;
504
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100505 if (!blk_special_request(rq)) {
506 ide_end_request(drive, uptodate, nr_sects);
507 return 0;
508 }
509
Borislav Petkov54bb2072008-02-06 02:57:52 +0100510 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Borislav Petkov54bb2072008-02-06 02:57:52 +0100514 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 0;
516}
517
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200518static void ide_tape_handle_dsc(ide_drive_t *);
519
520static void ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200523 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200524 int uptodate = pc->error ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100526 debug_log(DBG_PROCS, "Enter %s\n", __func__);
527
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200528 if (dsc)
529 ide_tape_handle_dsc(drive);
530
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200531 if (tape->failed_pc == pc)
532 tape->failed_pc = NULL;
533
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200534 if (pc->c[0] == REQUEST_SENSE) {
535 if (uptodate)
536 idetape_analyze_error(drive, pc->buf);
537 else
538 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
539 "itself - Aborting request!\n");
540 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
541 struct request *rq = drive->hwif->hwgroup->rq;
542 int blocks = pc->xferred / tape->blk_size;
543
544 tape->avg_size += blocks * tape->blk_size;
545
546 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
547 tape->avg_speed = tape->avg_size * HZ /
548 (jiffies - tape->avg_time) / 1024;
549 tape->avg_size = 0;
550 tape->avg_time = jiffies;
551 }
552
553 tape->first_frame += blocks;
554 rq->current_nr_sectors -= blocks;
555
556 if (pc->error)
557 uptodate = pc->error;
558 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200559 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200560
561 debug_log(DBG_SENSE, "BOP - %s\n",
562 (readpos[0] & 0x80) ? "Yes" : "No");
563 debug_log(DBG_SENSE, "EOP - %s\n",
564 (readpos[0] & 0x40) ? "Yes" : "No");
565
566 if (readpos[0] & 0x4) {
567 printk(KERN_INFO "ide-tape: Block location is unknown"
568 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200569 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200570 uptodate = 0;
571 } else {
572 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200573 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200574
575 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200576 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200577 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200580
581 idetape_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100585 * Postpone the current request so that ide.c will be able to service requests
586 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100588static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 idetape_tape_t *tape = drive->driver_data;
591
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100592 debug_log(DBG_PROCS, "Enter %s\n", __func__);
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100595 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200598static void ide_tape_handle_dsc(ide_drive_t *drive)
599{
600 idetape_tape_t *tape = drive->driver_data;
601
602 /* Media access command */
603 tape->dsc_polling_start = jiffies;
604 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
605 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
606 /* Allow ide.c to handle other requests */
607 idetape_postpone_request(drive);
608}
609
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200610static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200611 unsigned int bcount, int write)
612{
613 if (write)
614 idetape_output_buffers(drive, pc, bcount);
615 else
616 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200617
618 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200619}
Borislav Petkova1efc852008-02-06 02:57:52 +0100620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100622 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200624 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100625 * until we finish handling it. Each packet command is associated with a
626 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100628 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100630 * 1. idetape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200631 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200633 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100634 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100636 * 3. ATAPI Tape media access commands have immediate status with a delayed
637 * process. In case of a successful initiation of a media access packet command,
638 * the DSC bit will be set when the actual execution of the command is finished.
639 * Since the tape drive will not issue an interrupt, we have to poll for this
640 * event. In this case, we define the request as "low priority request" by
641 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
642 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100644 * ide.c will then give higher priority to requests which originate from the
645 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100647 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100649 * 5. In case an error was found, we queue a request sense packet command in
650 * front of the request queue and retry the operation up to
651 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100653 * 6. In case no error was found, or we decided to give up and not to retry
654 * again, the callback function will be called and then we will handle the next
655 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Borislav Petkovd236d742008-04-18 00:46:27 +0200658static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
659 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200663 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100664 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
666 "Two request sense in serial were issued\n");
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Borislav Petkov90699ce2008-02-02 19:56:50 +0100669 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 tape->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200673 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200676 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100678 * We will "abort" retrying a packet command in case legitimate
679 * error code was received (crossing a filemark, or end of the
680 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200682 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100683 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 tape->sense_key == 2 && tape->asc == 4 &&
685 (tape->ascq == 1 || tape->ascq == 8))) {
686 printk(KERN_ERR "ide-tape: %s: I/O error, "
687 "pc = %2x, key = %2x, "
688 "asc = %2x, ascq = %2x\n",
689 tape->name, pc->c[0],
690 tape->sense_key, tape->asc,
691 tape->ascq);
692 }
693 /* Giving up */
694 pc->error = IDETAPE_ERROR_GENERAL;
695 }
696 tape->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200697 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200698 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100700 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200704 return ide_issue_pc(drive, WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100707/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200708static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200710 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100711 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100713 /* DBD = 1 - Don't return block descriptors */
714 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 pc->c[2] = page_code;
716 /*
717 * Changed pc->c[3] to 0 (255 will at best return unused info).
718 *
719 * For SCSI this byte is defined as subpage instead of high byte
720 * of length and some IDE drives seem to interpret it this way
721 * and return an error when 255 is used.
722 */
723 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100724 /* We will just discard data in that case */
725 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200727 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200729 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200731 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100734static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200736 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200738 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100739 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200741 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100742
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200743 if (stat & ATA_DSC) {
744 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100746 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 printk(KERN_ERR "ide-tape: %s: I/O error, ",
748 tape->name);
749 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200750 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200751 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 } else {
755 pc->error = IDETAPE_ERROR_GENERAL;
756 tape->failed_pc = NULL;
757 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200758 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return ide_stopped;
760}
761
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200762static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200763 struct ide_atapi_pc *pc, struct request *rq,
764 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Borislav Petkov0014c752008-07-23 19:56:00 +0200766 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
767 unsigned int length = rq->current_nr_sectors;
768
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200769 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100770 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200773 pc->buf = NULL;
774 pc->buf_size = length * tape->blk_size;
775 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200776 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200777 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200779 if (opcode == READ_6) {
780 pc->c[0] = READ_6;
781 atomic_set(&bh->b_count, 0);
782 } else if (opcode == WRITE_6) {
783 pc->c[0] = WRITE_6;
784 pc->flags |= PC_FLAG_WRITING;
785 pc->b_data = bh->b_data;
786 pc->b_count = atomic_read(&bh->b_count);
787 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200788
789 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792static ide_startstop_t idetape_do_request(ide_drive_t *drive,
793 struct request *rq, sector_t block)
794{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200795 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200797 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100799 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Mark de Wever730616b2008-10-10 22:39:17 +0200801 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
802 " current_nr_sectors: %u\n",
803 (unsigned long long)rq->sector, rq->nr_sectors,
804 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Jens Axboe4aff5e22006-08-10 08:44:47 +0200806 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100807 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200809 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 ide_end_request(drive, 0, 0);
811 return ide_stopped;
812 }
813
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100814 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200815 if (tape->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200816 pc = tape->failed_pc;
817 goto out;
818 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (postponed_rq != NULL)
821 if (rq != postponed_rq) {
822 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
823 "Two DSC requests were queued\n");
824 idetape_end_request(drive, 0, 0);
825 return ide_stopped;
826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 tape->postponed_rq = NULL;
829
830 /*
831 * If the tape is still busy, postpone our request and service
832 * the other device meanwhile.
833 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200834 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Borislav Petkov83dd5732008-07-23 19:56:00 +0200836 if (!drive->dsc_overlap && !(rq->cmd[13] & REQ_IDETAPE_PC2))
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200837 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if (drive->post_reset == 1) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200840 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 drive->post_reset = 0;
842 }
843
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200844 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200845 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (postponed_rq == NULL) {
847 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100848 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
850 } else if (time_after(jiffies, tape->dsc_timeout)) {
851 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
852 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200853 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 idetape_media_access_finished(drive);
855 return ide_stopped;
856 } else {
857 return ide_do_reset(drive);
858 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100859 } else if (time_after(jiffies,
860 tape->dsc_polling_start +
861 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100862 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 idetape_postpone_request(drive);
864 return ide_stopped;
865 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200866 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200867 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200868 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto out;
870 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200871 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200872 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200873 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 goto out;
875 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200876 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200877 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200878 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
879 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 goto out;
881 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200882 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 idetape_media_access_finished(drive);
884 return ide_stopped;
885 }
886 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200887
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200888out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100889 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200893 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200894 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100895 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200897 * It returns a pointer to the newly allocated buffer, or NULL in case of
898 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200900static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
901 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200903 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200904 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200905 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 char *b_data = NULL;
907
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200908 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
909 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (bh == NULL)
911 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200912
913 order = fls(pages) - 1;
914 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100915 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200917 b_allocd = (1 << order) * PAGE_SIZE;
918 pages &= (order-1);
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200921 memset(bh->b_data, 0, b_allocd);
922 bh->b_reqnext = NULL;
923 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 atomic_set(&bh->b_count, full ? bh->b_size : 0);
925
Borislav Petkov41aa1702008-04-27 15:38:32 +0200926 while (pages) {
927 order = fls(pages) - 1;
928 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100929 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200931 b_allocd = (1 << order) * PAGE_SIZE;
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200934 memset(b_data, 0, b_allocd);
935
936 /* newly allocated page frames below buffer header or ...*/
937 if (bh->b_data == b_data + b_allocd) {
938 bh->b_size += b_allocd;
939 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200941 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 continue;
943 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200944 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200946 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200948 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 continue;
950 }
951 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100952 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
953 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200954 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 goto abort;
956 }
957 bh->b_reqnext = NULL;
958 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200959 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 atomic_set(&bh->b_count, full ? bh->b_size : 0);
961 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200962
963 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 bh->b_size -= tape->excess_bh_size;
967 if (full)
968 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200969 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200971 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return NULL;
973}
974
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100975static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200976 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 struct idetape_bh *bh = tape->bh;
979 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700980 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100984 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
985 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700986 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100988 count = min((unsigned int)
989 (bh->b_size - atomic_read(&bh->b_count)),
990 (unsigned int)n);
991 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
992 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700993 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 n -= count;
995 atomic_add(count, &bh->b_count);
996 buf += count;
997 if (atomic_read(&bh->b_count) == bh->b_size) {
998 bh = bh->b_reqnext;
999 if (bh)
1000 atomic_set(&bh->b_count, 0);
1001 }
1002 }
1003 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001004 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001007static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001008 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 struct idetape_bh *bh = tape->bh;
1011 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001012 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001016 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1017 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001018 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001021 if (copy_to_user(buf, tape->b_data, count))
1022 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 n -= count;
1024 tape->b_data += count;
1025 tape->b_count -= count;
1026 buf += count;
1027 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001028 bh = bh->b_reqnext;
1029 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (bh) {
1031 tape->b_data = bh->b_data;
1032 tape->b_count = atomic_read(&bh->b_count);
1033 }
1034 }
1035 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001036 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001039static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001041 struct idetape_bh *bh = tape->merge_bh;
1042 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001043
Borislav Petkov54abf372008-02-06 02:57:52 +01001044 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 atomic_set(&bh->b_count, 0);
1046 else {
1047 tape->b_data = bh->b_data;
1048 tape->b_count = atomic_read(&bh->b_count);
1049 }
1050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001053 * Write a filemark if write_filemark=1. Flush the device buffers without
1054 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001056static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001057 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001059 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001060 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001062 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1066{
1067 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001068 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int load_attempted = 0;
1070
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001071 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001072 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 timeout += jiffies;
1074 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001075 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return 0;
1077 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001078 || (tape->asc == 0x3A)) {
1079 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (load_attempted)
1081 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001082 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 load_attempted = 1;
1084 /* not about to be ready */
1085 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1086 (tape->ascq == 1 || tape->ascq == 8)))
1087 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001088 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090 return -EIO;
1091}
1092
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001093static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001095 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001096 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 int rc;
1098
1099 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001100 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001101 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return rc;
1103 idetape_wait_ready(drive, 60 * 5 * HZ);
1104 return 0;
1105}
1106
Borislav Petkovd236d742008-04-18 00:46:27 +02001107static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001109 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001110 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001111 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001114static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
1116 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001117 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 int position;
1119
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001120 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001123 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001125 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return position;
1127}
1128
Borislav Petkovd236d742008-04-18 00:46:27 +02001129static void idetape_create_locate_cmd(ide_drive_t *drive,
1130 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001131 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001133 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001134 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001136 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001138 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001141static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Borislav Petkov54abf372008-02-06 02:57:52 +01001145 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001146 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001148 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001149 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001150 if (tape->merge_bh != NULL) {
1151 ide_tape_kfree_buffer(tape);
1152 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154
Borislav Petkov54abf372008-02-06 02:57:52 +01001155 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
1158/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001159 * Position the tape to the requested block using the LOCATE packet command.
1160 * A READ POSITION command is then issued to check where we are positioned. Like
1161 * all higher level operations, we queue the commands at the tail of the request
1162 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001164static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1165 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
1167 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001168 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001170 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Borislav Petkov54abf372008-02-06 02:57:52 +01001172 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001173 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 idetape_wait_ready(drive, 60 * 5 * HZ);
1175 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001176 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (retval)
1178 return (retval);
1179
1180 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001181 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001184static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001185 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
1187 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 int seek, position;
1189
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001190 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (restore_position) {
1192 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001193 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001195 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001196 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return;
1198 }
1199 }
1200}
1201
1202/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001203 * Generate a read/write request for the block device interface and wait for it
1204 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001206static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1207 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001210 struct request *rq;
1211 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001213 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1214
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001215 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1216 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001217 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001218 rq->rq_disk = tape->disk;
1219 rq->special = (void *)bh;
1220 rq->sector = tape->first_frame;
1221 rq->nr_sectors = blocks;
1222 rq->current_nr_sectors = blocks;
1223 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1224
1225 errors = rq->errors;
1226 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1227 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1230 return 0;
1231
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001232 if (tape->merge_bh)
1233 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001234 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001236 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
Borislav Petkovd236d742008-04-18 00:46:27 +02001239static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001241 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001242 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001243 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001244 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Borislav Petkovd236d742008-04-18 00:46:27 +02001247static void idetape_create_rewind_cmd(ide_drive_t *drive,
1248 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001250 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001251 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001252 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
Borislav Petkovd236d742008-04-18 00:46:27 +02001255static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001257 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001258 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001260 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
Borislav Petkovd236d742008-04-18 00:46:27 +02001263static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001265 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001266 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001267 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001269 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Borislav Petkov97c566c2008-04-27 15:38:25 +02001272/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001273static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001277 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001279 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001280 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
Borislav Petkovd9df9372008-04-27 15:38:34 +02001283static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
1285 idetape_tape_t *tape = drive->driver_data;
1286 int blocks, min;
1287 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001288
Borislav Petkov54abf372008-02-06 02:57:52 +01001289 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001290 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001291 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return;
1293 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001294 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001296 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001298 if (tape->merge_bh_size) {
1299 blocks = tape->merge_bh_size / tape->blk_size;
1300 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 unsigned int i;
1302
1303 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001304 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001305 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 bh = tape->bh->b_reqnext;
1307 while (bh) {
1308 atomic_set(&bh->b_count, 0);
1309 bh = bh->b_reqnext;
1310 }
1311 bh = tape->bh;
1312 while (i) {
1313 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001314 printk(KERN_INFO "ide-tape: bug,"
1315 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 break;
1317 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001318 min = min(i, (unsigned int)(bh->b_size -
1319 atomic_read(&bh->b_count)));
1320 memset(bh->b_data + atomic_read(&bh->b_count),
1321 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 atomic_add(min, &bh->b_count);
1323 i -= min;
1324 bh = bh->b_reqnext;
1325 }
1326 }
1327 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001328 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001330 if (tape->merge_bh != NULL) {
1331 ide_tape_kfree_buffer(tape);
1332 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001334 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Borislav Petkov83042b22008-04-27 15:38:27 +02001337static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001343 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1344 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001345 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 idetape_flush_tape_buffers(drive);
1347 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001348 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001349 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001350 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001351 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001353 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1354 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001356 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001359 * Issue a read 0 command to ensure that DSC handshake is
1360 * switched from completion mode to buffer available mode.
1361 * No point in issuing this if DSC overlap isn't supported, some
1362 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 */
1364 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001365 bytes_read = idetape_queue_rw_tail(drive,
1366 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001367 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001369 ide_tape_kfree_buffer(tape);
1370 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001371 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return bytes_read;
1373 }
1374 }
1375 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return 0;
1378}
1379
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001380/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001381static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
1383 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001385 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001387 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001388 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return 0;
1390
Borislav Petkov83042b22008-04-27 15:38:27 +02001391 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001393 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001394 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001397static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 idetape_tape_t *tape = drive->driver_data;
1400 struct idetape_bh *bh;
1401 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 while (bcount) {
1404 unsigned int count;
1405
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001406 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001407 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001409 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001411 atomic_set(&bh->b_count,
1412 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1414 count -= atomic_read(&bh->b_count);
1415 bh = bh->b_reqnext;
1416 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001417 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001418 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420}
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001423 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1424 * currently support only one partition.
1425 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001426static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001428 struct ide_tape_obj *tape = drive->driver_data;
1429 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001431 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001432
1433 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001436 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (retval)
1438 return retval;
1439
1440 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001441 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (retval)
1443 return retval;
1444 return 0;
1445}
1446
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001447/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001448static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1449 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
1451 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 void __user *argp = (void __user *)arg;
1453
Borislav Petkovd59823f2008-02-02 19:56:51 +01001454 struct idetape_config {
1455 int dsc_rw_frequency;
1456 int dsc_media_access_frequency;
1457 int nr_stages;
1458 } config;
1459
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001460 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001463 case 0x0340:
1464 if (copy_from_user(&config, argp, sizeof(config)))
1465 return -EFAULT;
1466 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001467 break;
1468 case 0x0350:
1469 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001470 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001471 if (copy_to_user(argp, &config, sizeof(config)))
1472 return -EFAULT;
1473 break;
1474 default:
1475 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
1477 return 0;
1478}
1479
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001480static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1481 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
1483 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001484 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001485 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001486 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001487 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 if (mt_count == 0)
1490 return 0;
1491 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001492 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001494 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496
Borislav Petkov54abf372008-02-06 02:57:52 +01001497 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001498 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001499 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001501 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001505 case MTFSF:
1506 case MTBSF:
1507 idetape_create_space_cmd(&pc, mt_count - count,
1508 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001509 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001510 case MTFSFM:
1511 case MTBSFM:
1512 if (!sprev)
1513 return -EIO;
1514 retval = idetape_space_over_filemarks(drive, MTFSF,
1515 mt_count - count);
1516 if (retval)
1517 return retval;
1518 count = (MTBSFM == mt_op ? 1 : -1);
1519 return idetape_space_over_filemarks(drive, MTFSF, count);
1520 default:
1521 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1522 mt_op);
1523 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
1525}
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001528 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001530 * The tape is optimized to maximize throughput when it is transferring an
1531 * integral number of the "continuous transfer limit", which is a parameter of
1532 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001534 * As of version 1.3 of the driver, the character device provides an abstract
1535 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1536 * same backup/restore procedure is supported. The driver will internally
1537 * convert the requests to the recommended transfer unit, so that an unmatch
1538 * between the user's block size to the recommended size will only result in a
1539 * (slightly) increased driver overhead, but will no longer hit performance.
1540 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001542static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1543 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
1545 struct ide_tape_obj *tape = ide_tape_f(file);
1546 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001547 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001548 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001549 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001551 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Borislav Petkov54abf372008-02-06 02:57:52 +01001553 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001554 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001555 if (count > tape->blk_size &&
1556 (count % tape->blk_size) == 0)
1557 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001559 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001560 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return rc;
1562 if (count == 0)
1563 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001564 if (tape->merge_bh_size) {
1565 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001566 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001567 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001568 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001570 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 count -= actually_read;
1572 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001573 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001574 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (bytes_read <= 0)
1576 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001577 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001578 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 buf += bytes_read;
1580 count -= bytes_read;
1581 actually_read += bytes_read;
1582 }
1583 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001584 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (bytes_read <= 0)
1586 goto finish;
1587 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001588 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001589 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001591 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
1593finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001594 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001595 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 idetape_space_over_filemarks(drive, MTFSF, 1);
1598 return 0;
1599 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001600
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001601 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001604static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 size_t count, loff_t *ppos)
1606{
1607 struct ide_tape_obj *tape = ide_tape_f(file);
1608 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001609 ssize_t actually_written = 0;
1610 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001611 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 /* The drive is write protected. */
1614 if (tape->write_prot)
1615 return -EACCES;
1616
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001617 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001620 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1621 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001622 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001623 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001624 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001626 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001628 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1629 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001631 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001632 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001635 * Issue a write 0 command to ensure that DSC handshake is
1636 * switched from completion mode to buffer available mode. No
1637 * point in issuing this if DSC overlap isn't supported, some
1638 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
1640 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001641 ssize_t retval = idetape_queue_rw_tail(drive,
1642 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001643 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001645 ide_tape_kfree_buffer(tape);
1646 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001647 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return retval;
1649 }
1650 }
1651 }
1652 if (count == 0)
1653 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001654 if (tape->merge_bh_size) {
1655 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001656 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001657 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001659 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001660 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001661 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001662 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001663 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001665 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 count -= actually_written;
1667
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001668 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001669 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001670 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001671 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (retval <= 0)
1673 return (retval);
1674 }
1675 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001676 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001677 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001678 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001679 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001680 buf += tape->buffer_size;
1681 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001682 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001683 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (retval <= 0)
1685 return (retval);
1686 }
1687 if (count) {
1688 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001689 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001690 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001691 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001693 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001696static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001698 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001699 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 /* Write a filemark */
1702 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001703 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1705 return -EIO;
1706 }
1707 return 0;
1708}
1709
1710/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001711 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1712 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001714 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1715 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001716 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001718 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001720 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1721 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001723static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
1725 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001726 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001727 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001728 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001730 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1731 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001734 case MTFSF:
1735 case MTFSFM:
1736 case MTBSF:
1737 case MTBSFM:
1738 if (!mt_count)
1739 return 0;
1740 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1741 default:
1742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001746 case MTWEOF:
1747 if (tape->write_prot)
1748 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001749 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001750 for (i = 0; i < mt_count; i++) {
1751 retval = idetape_write_filemark(drive);
1752 if (retval)
1753 return retval;
1754 }
1755 return 0;
1756 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001757 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001758 if (idetape_rewind_tape(drive))
1759 return -EIO;
1760 return 0;
1761 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001762 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001763 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001764 case MTUNLOAD:
1765 case MTOFFL:
1766 /*
1767 * If door is locked, attempt to unlock before
1768 * attempting to eject.
1769 */
1770 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001771 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001772 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001773 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001774 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001775 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001776 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001777 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001778 return retval;
1779 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001780 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001781 return idetape_flush_tape_buffers(drive);
1782 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001783 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001784 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001785 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001786 case MTEOM:
1787 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001788 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001789 case MTERASE:
1790 (void)idetape_rewind_tape(drive);
1791 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001792 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001793 case MTSETBLK:
1794 if (mt_count) {
1795 if (mt_count < tape->blk_size ||
1796 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001798 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001799 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001800 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001801 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001802 return 0;
1803 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001804 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001805 return idetape_position_tape(drive,
1806 mt_count * tape->user_bs_factor, tape->partition, 0);
1807 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001808 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001809 return idetape_position_tape(drive, 0, mt_count, 0);
1810 case MTFSR:
1811 case MTBSR:
1812 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001813 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001814 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001816 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1817 return 0;
1818 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001819 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001820 if (retval)
1821 return retval;
1822 tape->door_locked = DOOR_UNLOCKED;
1823 return 0;
1824 default:
1825 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1826 mt_op);
1827 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829}
1830
1831/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001832 * Our character device ioctls. General mtio.h magnetic io commands are
1833 * supported here, and not in the corresponding block interface. Our own
1834 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001836static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1837 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
1839 struct ide_tape_obj *tape = ide_tape_f(file);
1840 ide_drive_t *drive = tape->drive;
1841 struct mtop mtop;
1842 struct mtget mtget;
1843 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001844 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 void __user *argp = (void __user *)arg;
1846
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001847 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Borislav Petkov54abf372008-02-06 02:57:52 +01001849 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001850 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 idetape_flush_tape_buffers(drive);
1852 }
1853 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001854 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001855 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001856 position = idetape_read_position(drive);
1857 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return -EIO;
1859 }
1860 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001861 case MTIOCTOP:
1862 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1863 return -EFAULT;
1864 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1865 case MTIOCGET:
1866 memset(&mtget, 0, sizeof(struct mtget));
1867 mtget.mt_type = MT_ISSCSI2;
1868 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1869 mtget.mt_dsreg =
1870 ((tape->blk_size * tape->user_bs_factor)
1871 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001872
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001873 if (tape->drv_write_prot)
1874 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1875
1876 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1877 return -EFAULT;
1878 return 0;
1879 case MTIOCPOS:
1880 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1881 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1882 return -EFAULT;
1883 return 0;
1884 default:
1885 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001886 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001887 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889}
1890
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001891/*
1892 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1893 * block size with the reported value.
1894 */
1895static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1896{
1897 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001898 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001899
1900 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001901 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001902 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001903 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001904 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1905 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001906 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001907 }
1908 return;
1909 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001910 tape->blk_size = (pc.buf[4 + 5] << 16) +
1911 (pc.buf[4 + 6] << 8) +
1912 pc.buf[4 + 7];
1913 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001914}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001916static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
1918 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1919 ide_drive_t *drive;
1920 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 int retval;
1922
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001923 if (i >= MAX_HWIFS * MAX_DRIVES)
1924 return -ENXIO;
1925
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001926 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001927 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001928 if (!tape) {
1929 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001930 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001931 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001932
1933 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 /*
1936 * We really want to do nonseekable_open(inode, filp); here, but some
1937 * versions of tar incorrectly call lseek on tapes and bail out if that
1938 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1939 */
1940 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 drive = tape->drive;
1943
1944 filp->private_data = tape;
1945
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001946 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 retval = -EBUSY;
1948 goto out_put_tape;
1949 }
1950
1951 retval = idetape_wait_ready(drive, 60 * HZ);
1952 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001953 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1955 goto out_put_tape;
1956 }
1957
1958 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001959 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 (void)idetape_rewind_tape(drive);
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001963 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 /* Set write protect flag if device is opened as read-only. */
1966 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1967 tape->write_prot = 1;
1968 else
1969 tape->write_prot = tape->drv_write_prot;
1970
1971 /* Make sure drive isn't write protected if user wants to write. */
1972 if (tape->write_prot) {
1973 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1974 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001975 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 retval = -EROFS;
1977 goto out_put_tape;
1978 }
1979 }
1980
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001981 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001982 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001983 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001984 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1985 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001988 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 return 0;
1990
1991out_put_tape:
1992 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001993 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return retval;
1995}
1996
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001997static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
1999 idetape_tape_t *tape = drive->driver_data;
2000
Borislav Petkovd9df9372008-04-27 15:38:34 +02002001 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002002 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2003 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002004 idetape_pad_zeros(drive, tape->blk_size *
2005 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002006 ide_tape_kfree_buffer(tape);
2007 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
2009 idetape_write_filemark(drive);
2010 idetape_flush_tape_buffers(drive);
2011 idetape_flush_tape_buffers(drive);
2012}
2013
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002014static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 struct ide_tape_obj *tape = ide_tape_f(filp);
2017 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 unsigned int minor = iminor(inode);
2019
2020 lock_kernel();
2021 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002022
2023 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Borislav Petkov54abf372008-02-06 02:57:52 +01002025 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002027 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002029 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002031
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002032 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002034 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002036 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002037 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
2039 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002040 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 ide_tape_put(tape);
2042 unlock_kernel();
2043 return 0;
2044}
2045
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002046static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002049 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002050 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002053 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002054 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2055 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return;
2057 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002058 memcpy(vendor_id, &pc.buf[8], 8);
2059 memcpy(product_id, &pc.buf[16], 16);
2060 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002061
Borislav Petkov801bd322008-09-27 19:32:17 +02002062 ide_fixstring(vendor_id, 8, 0);
2063 ide_fixstring(product_id, 16, 0);
2064 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002065
Borislav Petkov801bd322008-09-27 19:32:17 +02002066 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002067 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
2070/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002071 * Ask the tape about its various parameters. In particular, we will adjust our
2072 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002074static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002077 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002078 u8 *caps;
2079 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002082 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002083 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2084 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002085 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002086 put_unaligned(52, (u16 *)&tape->caps[12]);
2087 put_unaligned(540, (u16 *)&tape->caps[14]);
2088 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return;
2090 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002091 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Borislav Petkovb6422012008-02-02 19:56:49 +01002093 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002094 speed = be16_to_cpup((__be16 *)&caps[14]);
2095 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002097 *(u16 *)&caps[8] = max_speed;
2098 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2099 *(u16 *)&caps[14] = speed;
2100 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002101
2102 if (!speed) {
2103 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2104 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002105 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002107 if (!max_speed) {
2108 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2109 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002110 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
2112
Borislav Petkovb6422012008-02-02 19:56:49 +01002113 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002114
2115 /* device lacks locking support according to capabilities page */
2116 if ((caps[6] & 1) == 0)
2117 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
2118
Borislav Petkovb6422012008-02-02 19:56:49 +01002119 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002120 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002121 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002122 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002125#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002126#define ide_tape_devset_get(name, field) \
2127static int get_##name(ide_drive_t *drive) \
2128{ \
2129 idetape_tape_t *tape = drive->driver_data; \
2130 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002132
2133#define ide_tape_devset_set(name, field) \
2134static int set_##name(ide_drive_t *drive, int arg) \
2135{ \
2136 idetape_tape_t *tape = drive->driver_data; \
2137 tape->field = arg; \
2138 return 0; \
2139}
2140
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002141#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002142ide_tape_devset_get(_name, _field) \
2143ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002144IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002145
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002146#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002147ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002148IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002149
2150static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2151static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2152static int divf_buffer(ide_drive_t *drive) { return 2; }
2153static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2154
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002155ide_devset_rw_field(dsc_overlap, dsc_overlap);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002156
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002157ide_tape_devset_rw_field(debug_mask, debug_mask);
2158ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002159
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002160ide_tape_devset_r_field(avg_speed, avg_speed);
2161ide_tape_devset_r_field(speed, caps[14]);
2162ide_tape_devset_r_field(buffer, caps[16]);
2163ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002164
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002165static const struct ide_proc_devset idetape_settings[] = {
2166 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2167 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2168 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2169 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2170 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2171 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2172 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2173 mulf_tdsc, divf_tdsc),
2174 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002175};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002176#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
2178/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002179 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002181 * 1. Initialize our various state variables.
2182 * 2. Ask the tape for its capabilities.
2183 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2184 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002186 * Note that at this point ide.c already assigned us an irq, so that we can
2187 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002189static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
Borislav Petkov83042b22008-04-27 15:38:27 +02002191 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002193 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002194 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002195 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002197 drive->pc_callback = ide_tape_callback;
2198 drive->pc_update_buffers = idetape_update_buffers;
2199 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002200
Borislav Petkov54bb2072008-02-06 02:57:52 +01002201 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002203 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2204 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2205 tape->name);
2206 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002209 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 drive->dsc_overlap = 0;
2211 tape->minor = minor;
2212 tape->name[0] = 'h';
2213 tape->name[1] = 't';
2214 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002215 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002216
2217 *((u16 *)&gcw) = drive->id[ATA_ID_CONFIG];
Borislav Petkov71071b82008-02-06 02:57:53 +01002218
2219 /* Command packet DRQ type */
2220 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002221 set_bit(IDE_AFLAG_DRQ_INTERRUPT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 idetape_get_inquiry_results(drive);
2224 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002225 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002227 tape->buffer_size = *ctl * tape->blk_size;
2228 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002230 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002231 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002233 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002234 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002235 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002236 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002237 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 }
2239
Borislav Petkov83042b22008-04-27 15:38:27 +02002240 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002241 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Borislav Petkovf73850a2008-04-27 15:38:33 +02002243 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002246 * Ensure that the number we got makes sense; limit it within
2247 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002249 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2250 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002252 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002253 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002254 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2255 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002256 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 drive->using_dma ? ", DMA":"");
2258
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002259 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
2261
Russell King4031bbe2006-01-06 11:41:00 +00002262static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
2264 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002266 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 ide_unregister_region(tape->disk);
2269
2270 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
2272
2273static void ide_tape_release(struct kref *kref)
2274{
2275 struct ide_tape_obj *tape = to_ide_tape(kref);
2276 ide_drive_t *drive = tape->drive;
2277 struct gendisk *g = tape->disk;
2278
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002279 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 drive->dsc_overlap = 0;
2282 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002283 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002284 device_destroy(idetape_sysfs_class,
2285 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 idetape_devs[tape->minor] = NULL;
2287 g->private_data = NULL;
2288 put_disk(g);
2289 kfree(tape);
2290}
2291
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002292#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293static int proc_idetape_read_name
2294 (char *page, char **start, off_t off, int count, int *eof, void *data)
2295{
2296 ide_drive_t *drive = (ide_drive_t *) data;
2297 idetape_tape_t *tape = drive->driver_data;
2298 char *out = page;
2299 int len;
2300
2301 len = sprintf(out, "%s\n", tape->name);
2302 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2303}
2304
2305static ide_proc_entry_t idetape_proc[] = {
2306 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2307 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2308 { NULL, 0, NULL, NULL }
2309};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310#endif
2311
Russell King4031bbe2006-01-06 11:41:00 +00002312static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002315 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002316 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002317 .name = "ide-tape",
2318 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002319 },
Russell King4031bbe2006-01-06 11:41:00 +00002320 .probe = ide_tape_probe,
2321 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 .version = IDETAPE_VERSION,
2323 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 .do_request = idetape_do_request,
2325 .end_request = idetape_end_request,
2326 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002327#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002329 .settings = idetape_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331};
2332
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002333/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002334static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 .owner = THIS_MODULE,
2336 .read = idetape_chrdev_read,
2337 .write = idetape_chrdev_write,
2338 .ioctl = idetape_chrdev_ioctl,
2339 .open = idetape_chrdev_open,
2340 .release = idetape_chrdev_release,
2341};
2342
2343static int idetape_open(struct inode *inode, struct file *filp)
2344{
2345 struct gendisk *disk = inode->i_bdev->bd_disk;
2346 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002348 tape = ide_tape_get(disk);
2349 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 return -ENXIO;
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return 0;
2353}
2354
2355static int idetape_release(struct inode *inode, struct file *filp)
2356{
2357 struct gendisk *disk = inode->i_bdev->bd_disk;
2358 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 ide_tape_put(tape);
2361
2362 return 0;
2363}
2364
2365static int idetape_ioctl(struct inode *inode, struct file *file,
2366 unsigned int cmd, unsigned long arg)
2367{
2368 struct block_device *bdev = inode->i_bdev;
2369 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2370 ide_drive_t *drive = tape->drive;
2371 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2372 if (err == -EINVAL)
2373 err = idetape_blkdev_ioctl(drive, cmd, arg);
2374 return err;
2375}
2376
2377static struct block_device_operations idetape_block_ops = {
2378 .owner = THIS_MODULE,
2379 .open = idetape_open,
2380 .release = idetape_release,
2381 .ioctl = idetape_ioctl,
2382};
2383
Russell King4031bbe2006-01-06 11:41:00 +00002384static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
2386 idetape_tape_t *tape;
2387 struct gendisk *g;
2388 int minor;
2389
2390 if (!strstr("ide-tape", drive->driver_req))
2391 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 if (drive->media != ide_tape)
2394 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002395
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +02002396 if (drive->id_read == 1 && !ide_check_atapi_device(drive, DRV_NAME)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002397 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2398 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 goto failed;
2400 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002401 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002403 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2404 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 goto failed;
2406 }
2407
2408 g = alloc_disk(1 << PARTN_BITS);
2409 if (!g)
2410 goto out_free_tape;
2411
2412 ide_init_disk(g, drive);
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 kref_init(&tape->kref);
2415
2416 tape->drive = drive;
2417 tape->driver = &idetape_driver;
2418 tape->disk = g;
2419
2420 g->private_data = &tape->driver;
2421
2422 drive->driver_data = tape;
2423
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002424 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 for (minor = 0; idetape_devs[minor]; minor++)
2426 ;
2427 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002428 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 idetape_setup(drive, tape, minor);
2431
Greg Kroah-Hartman6ecaaf92008-05-21 12:52:33 -07002432 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2433 MKDEV(IDETAPE_MAJOR, minor), NULL,
2434 "%s", tape->name);
2435 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2436 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2437 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 g->fops = &idetape_block_ops;
2440 ide_register_region(g);
2441
2442 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444out_free_tape:
2445 kfree(tape);
2446failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002447 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
2449
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002450static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002452 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002453 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 unregister_chrdev(IDETAPE_MAJOR, "ht");
2455}
2456
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002457static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Will Dysond5dee802005-09-16 02:55:07 -07002459 int error = 1;
2460 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2461 if (IS_ERR(idetape_sysfs_class)) {
2462 idetape_sysfs_class = NULL;
2463 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2464 error = -EBUSY;
2465 goto out;
2466 }
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002469 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2470 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002471 error = -EBUSY;
2472 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 }
Will Dysond5dee802005-09-16 02:55:07 -07002474
2475 error = driver_register(&idetape_driver.gen_driver);
2476 if (error)
2477 goto out_free_driver;
2478
2479 return 0;
2480
2481out_free_driver:
2482 driver_unregister(&idetape_driver.gen_driver);
2483out_free_class:
2484 class_destroy(idetape_sysfs_class);
2485out:
2486 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
Kay Sievers263756e2005-12-12 18:03:44 +01002489MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490module_init(idetape_init);
2491module_exit(idetape_exit);
2492MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002493MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2494MODULE_LICENSE("GPL");