blob: 72caca3cb7aab2328323020a4ec34f4bb8324e82 [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 Petkova1efc852008-02-06 02:57:52 +0100622 * This is the usual interrupt handler which will be called during a packet
623 * command. We will transfer some of the data (as requested by the drive) and
624 * will re-point interrupt handler to us. When data transfer is finished, we
625 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100626 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100628static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Bartlomiej Zolnierkiewicz844b9462008-10-13 21:39:31 +0200630 return ide_pc_intr(drive, idetape_pc_intr, idetape_update_buffers,
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200631 ide_tape_io_buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100635 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200637 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100638 * until we finish handling it. Each packet command is associated with a
639 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100641 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100643 * 1. idetape_issue_pc will send the packet command to the drive, and will set
644 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100646 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
647 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100649 * 3. ATAPI Tape media access commands have immediate status with a delayed
650 * process. In case of a successful initiation of a media access packet command,
651 * the DSC bit will be set when the actual execution of the command is finished.
652 * Since the tape drive will not issue an interrupt, we have to poll for this
653 * event. In this case, we define the request as "low priority request" by
654 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
655 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100657 * ide.c will then give higher priority to requests which originate from the
658 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100660 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100662 * 5. In case an error was found, we queue a request sense packet command in
663 * front of the request queue and retry the operation up to
664 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100666 * 6. In case no error was found, or we decided to give up and not to retry
667 * again, the callback function will be called and then we will handle the next
668 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 */
670static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
671{
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200672 return ide_transfer_pc(drive, idetape_pc_intr, WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Borislav Petkovd236d742008-04-18 00:46:27 +0200675static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
676 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200680 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100681 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
683 "Two request sense in serial were issued\n");
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Borislav Petkov90699ce2008-02-02 19:56:50 +0100686 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 tape->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200690 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200693 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100695 * We will "abort" retrying a packet command in case legitimate
696 * error code was received (crossing a filemark, or end of the
697 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200699 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100700 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 tape->sense_key == 2 && tape->asc == 4 &&
702 (tape->ascq == 1 || tape->ascq == 8))) {
703 printk(KERN_ERR "ide-tape: %s: I/O error, "
704 "pc = %2x, key = %2x, "
705 "asc = %2x, ascq = %2x\n",
706 tape->name, pc->c[0],
707 tape->sense_key, tape->asc,
708 tape->ascq);
709 }
710 /* Giving up */
711 pc->error = IDETAPE_ERROR_GENERAL;
712 }
713 tape->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200714 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200715 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100717 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200721 return ide_issue_pc(drive, idetape_transfer_pc, WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100724/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200725static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200727 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100728 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100730 /* DBD = 1 - Don't return block descriptors */
731 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 pc->c[2] = page_code;
733 /*
734 * Changed pc->c[3] to 0 (255 will at best return unused info).
735 *
736 * For SCSI this byte is defined as subpage instead of high byte
737 * of length and some IDE drives seem to interpret it this way
738 * and return an error when 255 is used.
739 */
740 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100741 /* We will just discard data in that case */
742 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200744 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200746 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200748 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100751static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200753 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200755 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100756 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200758 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100759
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200760 if (stat & ATA_DSC) {
761 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100763 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 printk(KERN_ERR "ide-tape: %s: I/O error, ",
765 tape->name);
766 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200767 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200768 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 } else {
772 pc->error = IDETAPE_ERROR_GENERAL;
773 tape->failed_pc = NULL;
774 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200775 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return ide_stopped;
777}
778
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200779static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200780 struct ide_atapi_pc *pc, struct request *rq,
781 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Borislav Petkov0014c752008-07-23 19:56:00 +0200783 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
784 unsigned int length = rq->current_nr_sectors;
785
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200786 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100787 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200790 pc->buf = NULL;
791 pc->buf_size = length * tape->blk_size;
792 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200793 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200794 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200796 if (opcode == READ_6) {
797 pc->c[0] = READ_6;
798 atomic_set(&bh->b_count, 0);
799 } else if (opcode == WRITE_6) {
800 pc->c[0] = WRITE_6;
801 pc->flags |= PC_FLAG_WRITING;
802 pc->b_data = bh->b_data;
803 pc->b_count = atomic_read(&bh->b_count);
804 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200805
806 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809static ide_startstop_t idetape_do_request(ide_drive_t *drive,
810 struct request *rq, sector_t block)
811{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200812 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200814 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100816 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Mark de Wever730616b2008-10-10 22:39:17 +0200818 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
819 " current_nr_sectors: %u\n",
820 (unsigned long long)rq->sector, rq->nr_sectors,
821 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Jens Axboe4aff5e22006-08-10 08:44:47 +0200823 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100824 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200826 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 ide_end_request(drive, 0, 0);
828 return ide_stopped;
829 }
830
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100831 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200832 if (tape->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200833 pc = tape->failed_pc;
834 goto out;
835 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (postponed_rq != NULL)
838 if (rq != postponed_rq) {
839 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
840 "Two DSC requests were queued\n");
841 idetape_end_request(drive, 0, 0);
842 return ide_stopped;
843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 tape->postponed_rq = NULL;
846
847 /*
848 * If the tape is still busy, postpone our request and service
849 * the other device meanwhile.
850 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200851 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Borislav Petkov83dd5732008-07-23 19:56:00 +0200853 if (!drive->dsc_overlap && !(rq->cmd[13] & REQ_IDETAPE_PC2))
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200854 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 if (drive->post_reset == 1) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200857 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 drive->post_reset = 0;
859 }
860
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200861 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200862 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (postponed_rq == NULL) {
864 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100865 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
867 } else if (time_after(jiffies, tape->dsc_timeout)) {
868 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
869 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200870 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 idetape_media_access_finished(drive);
872 return ide_stopped;
873 } else {
874 return ide_do_reset(drive);
875 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100876 } else if (time_after(jiffies,
877 tape->dsc_polling_start +
878 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100879 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 idetape_postpone_request(drive);
881 return ide_stopped;
882 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200883 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200884 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200885 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto out;
887 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200888 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200889 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200890 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 goto out;
892 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200893 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200894 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200895 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
896 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 goto out;
898 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200899 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 idetape_media_access_finished(drive);
901 return ide_stopped;
902 }
903 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200904
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200905out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100906 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200910 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200911 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100912 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200914 * It returns a pointer to the newly allocated buffer, or NULL in case of
915 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200917static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
918 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200920 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200921 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200922 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 char *b_data = NULL;
924
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200925 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
926 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (bh == NULL)
928 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200929
930 order = fls(pages) - 1;
931 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100932 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200934 b_allocd = (1 << order) * PAGE_SIZE;
935 pages &= (order-1);
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200938 memset(bh->b_data, 0, b_allocd);
939 bh->b_reqnext = NULL;
940 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 atomic_set(&bh->b_count, full ? bh->b_size : 0);
942
Borislav Petkov41aa1702008-04-27 15:38:32 +0200943 while (pages) {
944 order = fls(pages) - 1;
945 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100946 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200948 b_allocd = (1 << order) * PAGE_SIZE;
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200951 memset(b_data, 0, b_allocd);
952
953 /* newly allocated page frames below buffer header or ...*/
954 if (bh->b_data == b_data + b_allocd) {
955 bh->b_size += b_allocd;
956 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200958 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 continue;
960 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200961 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200963 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200965 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 continue;
967 }
968 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100969 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
970 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200971 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 goto abort;
973 }
974 bh->b_reqnext = NULL;
975 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200976 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 atomic_set(&bh->b_count, full ? bh->b_size : 0);
978 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200979
980 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 bh->b_size -= tape->excess_bh_size;
984 if (full)
985 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200986 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200988 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return NULL;
990}
991
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100992static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200993 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
995 struct idetape_bh *bh = tape->bh;
996 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700997 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001001 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1002 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001003 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001005 count = min((unsigned int)
1006 (bh->b_size - atomic_read(&bh->b_count)),
1007 (unsigned int)n);
1008 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1009 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001010 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 n -= count;
1012 atomic_add(count, &bh->b_count);
1013 buf += count;
1014 if (atomic_read(&bh->b_count) == bh->b_size) {
1015 bh = bh->b_reqnext;
1016 if (bh)
1017 atomic_set(&bh->b_count, 0);
1018 }
1019 }
1020 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001021 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001024static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001025 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct idetape_bh *bh = tape->bh;
1028 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001029 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001033 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1034 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001035 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001038 if (copy_to_user(buf, tape->b_data, count))
1039 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 n -= count;
1041 tape->b_data += count;
1042 tape->b_count -= count;
1043 buf += count;
1044 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001045 bh = bh->b_reqnext;
1046 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (bh) {
1048 tape->b_data = bh->b_data;
1049 tape->b_count = atomic_read(&bh->b_count);
1050 }
1051 }
1052 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001053 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001056static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001058 struct idetape_bh *bh = tape->merge_bh;
1059 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001060
Borislav Petkov54abf372008-02-06 02:57:52 +01001061 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 atomic_set(&bh->b_count, 0);
1063 else {
1064 tape->b_data = bh->b_data;
1065 tape->b_count = atomic_read(&bh->b_count);
1066 }
1067}
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001070 * Write a filemark if write_filemark=1. Flush the device buffers without
1071 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001073static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001074 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001076 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001077 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001079 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1083{
1084 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001085 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 int load_attempted = 0;
1087
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001088 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001089 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 timeout += jiffies;
1091 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001092 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return 0;
1094 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001095 || (tape->asc == 0x3A)) {
1096 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (load_attempted)
1098 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001099 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 load_attempted = 1;
1101 /* not about to be ready */
1102 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1103 (tape->ascq == 1 || tape->ascq == 8)))
1104 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001105 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107 return -EIO;
1108}
1109
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001110static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001112 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001113 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 int rc;
1115
1116 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001117 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001118 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return rc;
1120 idetape_wait_ready(drive, 60 * 5 * HZ);
1121 return 0;
1122}
1123
Borislav Petkovd236d742008-04-18 00:46:27 +02001124static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001126 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001127 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001128 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001131static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001134 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 int position;
1136
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001137 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001140 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001142 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return position;
1144}
1145
Borislav Petkovd236d742008-04-18 00:46:27 +02001146static void idetape_create_locate_cmd(ide_drive_t *drive,
1147 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001148 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001150 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001151 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001153 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001155 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001158static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Borislav Petkov54abf372008-02-06 02:57:52 +01001162 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001163 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001165 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001166 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001167 if (tape->merge_bh != NULL) {
1168 ide_tape_kfree_buffer(tape);
1169 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
1171
Borislav Petkov54abf372008-02-06 02:57:52 +01001172 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
1175/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001176 * Position the tape to the requested block using the LOCATE packet command.
1177 * A READ POSITION command is then issued to check where we are positioned. Like
1178 * all higher level operations, we queue the commands at the tail of the request
1179 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001181static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1182 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001185 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001187 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Borislav Petkov54abf372008-02-06 02:57:52 +01001189 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001190 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 idetape_wait_ready(drive, 60 * 5 * HZ);
1192 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001193 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (retval)
1195 return (retval);
1196
1197 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001198 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001201static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001202 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
1204 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 int seek, position;
1206
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001207 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (restore_position) {
1209 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001210 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001212 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001213 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return;
1215 }
1216 }
1217}
1218
1219/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001220 * Generate a read/write request for the block device interface and wait for it
1221 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001223static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1224 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001227 struct request *rq;
1228 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001230 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1231
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001232 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1233 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001234 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001235 rq->rq_disk = tape->disk;
1236 rq->special = (void *)bh;
1237 rq->sector = tape->first_frame;
1238 rq->nr_sectors = blocks;
1239 rq->current_nr_sectors = blocks;
1240 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1241
1242 errors = rq->errors;
1243 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1244 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1247 return 0;
1248
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001249 if (tape->merge_bh)
1250 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001251 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Borislav Petkovd236d742008-04-18 00:46:27 +02001256static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001258 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001259 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001260 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001261 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Borislav Petkovd236d742008-04-18 00:46:27 +02001264static void idetape_create_rewind_cmd(ide_drive_t *drive,
1265 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001267 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001268 pc->c[0] = REZERO_UNIT;
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 Petkovd236d742008-04-18 00:46:27 +02001272static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001274 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001275 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001277 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Borislav Petkovd236d742008-04-18 00:46:27 +02001280static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001282 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001283 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001284 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001286 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
Borislav Petkov97c566c2008-04-27 15:38:25 +02001289/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001290static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001294 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001296 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001297 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
Borislav Petkovd9df9372008-04-27 15:38:34 +02001300static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
1302 idetape_tape_t *tape = drive->driver_data;
1303 int blocks, min;
1304 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001305
Borislav Petkov54abf372008-02-06 02:57:52 +01001306 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001307 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001308 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return;
1310 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001311 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001313 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001315 if (tape->merge_bh_size) {
1316 blocks = tape->merge_bh_size / tape->blk_size;
1317 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 unsigned int i;
1319
1320 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001321 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001322 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 bh = tape->bh->b_reqnext;
1324 while (bh) {
1325 atomic_set(&bh->b_count, 0);
1326 bh = bh->b_reqnext;
1327 }
1328 bh = tape->bh;
1329 while (i) {
1330 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001331 printk(KERN_INFO "ide-tape: bug,"
1332 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 break;
1334 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001335 min = min(i, (unsigned int)(bh->b_size -
1336 atomic_read(&bh->b_count)));
1337 memset(bh->b_data + atomic_read(&bh->b_count),
1338 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 atomic_add(min, &bh->b_count);
1340 i -= min;
1341 bh = bh->b_reqnext;
1342 }
1343 }
1344 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001345 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001347 if (tape->merge_bh != NULL) {
1348 ide_tape_kfree_buffer(tape);
1349 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001351 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
Borislav Petkov83042b22008-04-27 15:38:27 +02001354static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001360 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1361 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001362 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 idetape_flush_tape_buffers(drive);
1364 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001365 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001366 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001367 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001368 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001370 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1371 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001373 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001376 * Issue a read 0 command to ensure that DSC handshake is
1377 * switched from completion mode to buffer available mode.
1378 * No point in issuing this if DSC overlap isn't supported, some
1379 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 */
1381 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001382 bytes_read = idetape_queue_rw_tail(drive,
1383 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001384 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001386 ide_tape_kfree_buffer(tape);
1387 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001388 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return bytes_read;
1390 }
1391 }
1392 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return 0;
1395}
1396
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001397/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001398static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001402 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001404 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001405 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return 0;
1407
Borislav Petkov83042b22008-04-27 15:38:27 +02001408 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001410 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001411 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001414static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 idetape_tape_t *tape = drive->driver_data;
1417 struct idetape_bh *bh;
1418 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 while (bcount) {
1421 unsigned int count;
1422
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001423 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001424 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001426 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001428 atomic_set(&bh->b_count,
1429 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1431 count -= atomic_read(&bh->b_count);
1432 bh = bh->b_reqnext;
1433 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001434 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001435 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437}
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001440 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1441 * currently support only one partition.
1442 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001443static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001445 struct ide_tape_obj *tape = drive->driver_data;
1446 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001448 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001449
1450 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001453 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (retval)
1455 return retval;
1456
1457 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001458 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (retval)
1460 return retval;
1461 return 0;
1462}
1463
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001464/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001465static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1466 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 void __user *argp = (void __user *)arg;
1470
Borislav Petkovd59823f2008-02-02 19:56:51 +01001471 struct idetape_config {
1472 int dsc_rw_frequency;
1473 int dsc_media_access_frequency;
1474 int nr_stages;
1475 } config;
1476
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001477 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001480 case 0x0340:
1481 if (copy_from_user(&config, argp, sizeof(config)))
1482 return -EFAULT;
1483 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001484 break;
1485 case 0x0350:
1486 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001487 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001488 if (copy_to_user(argp, &config, sizeof(config)))
1489 return -EFAULT;
1490 break;
1491 default:
1492 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494 return 0;
1495}
1496
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001497static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1498 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001501 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001502 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001503 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001504 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 if (mt_count == 0)
1507 return 0;
1508 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001509 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001511 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
1513
Borislav Petkov54abf372008-02-06 02:57:52 +01001514 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001515 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001516 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001518 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001522 case MTFSF:
1523 case MTBSF:
1524 idetape_create_space_cmd(&pc, mt_count - count,
1525 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001526 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001527 case MTFSFM:
1528 case MTBSFM:
1529 if (!sprev)
1530 return -EIO;
1531 retval = idetape_space_over_filemarks(drive, MTFSF,
1532 mt_count - count);
1533 if (retval)
1534 return retval;
1535 count = (MTBSFM == mt_op ? 1 : -1);
1536 return idetape_space_over_filemarks(drive, MTFSF, count);
1537 default:
1538 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1539 mt_op);
1540 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542}
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001545 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001547 * The tape is optimized to maximize throughput when it is transferring an
1548 * integral number of the "continuous transfer limit", which is a parameter of
1549 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001551 * As of version 1.3 of the driver, the character device provides an abstract
1552 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1553 * same backup/restore procedure is supported. The driver will internally
1554 * convert the requests to the recommended transfer unit, so that an unmatch
1555 * between the user's block size to the recommended size will only result in a
1556 * (slightly) increased driver overhead, but will no longer hit performance.
1557 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001559static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1560 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
1562 struct ide_tape_obj *tape = ide_tape_f(file);
1563 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001564 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001565 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001566 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001568 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Borislav Petkov54abf372008-02-06 02:57:52 +01001570 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001571 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001572 if (count > tape->blk_size &&
1573 (count % tape->blk_size) == 0)
1574 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001576 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001577 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return rc;
1579 if (count == 0)
1580 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001581 if (tape->merge_bh_size) {
1582 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001583 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001584 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001585 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001587 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 count -= actually_read;
1589 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001590 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001591 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (bytes_read <= 0)
1593 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001594 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001595 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 buf += bytes_read;
1597 count -= bytes_read;
1598 actually_read += bytes_read;
1599 }
1600 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001601 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (bytes_read <= 0)
1603 goto finish;
1604 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001605 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001606 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001608 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
1610finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001611 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001612 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 idetape_space_over_filemarks(drive, MTFSF, 1);
1615 return 0;
1616 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001617
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001618 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001621static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 size_t count, loff_t *ppos)
1623{
1624 struct ide_tape_obj *tape = ide_tape_f(file);
1625 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001626 ssize_t actually_written = 0;
1627 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001628 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 /* The drive is write protected. */
1631 if (tape->write_prot)
1632 return -EACCES;
1633
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001634 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001637 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1638 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001639 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001640 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001641 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001643 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001645 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1646 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001648 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001649 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001652 * Issue a write 0 command to ensure that DSC handshake is
1653 * switched from completion mode to buffer available mode. No
1654 * point in issuing this if DSC overlap isn't supported, some
1655 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 */
1657 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001658 ssize_t retval = idetape_queue_rw_tail(drive,
1659 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001660 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001662 ide_tape_kfree_buffer(tape);
1663 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001664 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return retval;
1666 }
1667 }
1668 }
1669 if (count == 0)
1670 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001671 if (tape->merge_bh_size) {
1672 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001673 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001674 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001676 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001677 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001678 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001679 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001680 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001682 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 count -= actually_written;
1684
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001685 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001686 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001687 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001688 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (retval <= 0)
1690 return (retval);
1691 }
1692 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001693 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001694 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001695 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001696 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001697 buf += tape->buffer_size;
1698 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001699 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001700 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (retval <= 0)
1702 return (retval);
1703 }
1704 if (count) {
1705 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001706 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001707 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001708 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001710 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001713static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001715 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001716 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 /* Write a filemark */
1719 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001720 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1722 return -EIO;
1723 }
1724 return 0;
1725}
1726
1727/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001728 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1729 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001731 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1732 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001733 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001735 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001737 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1738 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001740static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
1742 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001743 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001744 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001745 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001747 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1748 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001751 case MTFSF:
1752 case MTFSFM:
1753 case MTBSF:
1754 case MTBSFM:
1755 if (!mt_count)
1756 return 0;
1757 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1758 default:
1759 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001763 case MTWEOF:
1764 if (tape->write_prot)
1765 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001766 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001767 for (i = 0; i < mt_count; i++) {
1768 retval = idetape_write_filemark(drive);
1769 if (retval)
1770 return retval;
1771 }
1772 return 0;
1773 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001774 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001775 if (idetape_rewind_tape(drive))
1776 return -EIO;
1777 return 0;
1778 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001779 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001780 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001781 case MTUNLOAD:
1782 case MTOFFL:
1783 /*
1784 * If door is locked, attempt to unlock before
1785 * attempting to eject.
1786 */
1787 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001788 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001789 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001790 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001791 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001792 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001793 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001794 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001795 return retval;
1796 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001797 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001798 return idetape_flush_tape_buffers(drive);
1799 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001800 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001801 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001802 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001803 case MTEOM:
1804 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001805 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001806 case MTERASE:
1807 (void)idetape_rewind_tape(drive);
1808 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001809 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001810 case MTSETBLK:
1811 if (mt_count) {
1812 if (mt_count < tape->blk_size ||
1813 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001815 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001816 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001817 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001818 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001819 return 0;
1820 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001821 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001822 return idetape_position_tape(drive,
1823 mt_count * tape->user_bs_factor, tape->partition, 0);
1824 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001825 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001826 return idetape_position_tape(drive, 0, mt_count, 0);
1827 case MTFSR:
1828 case MTBSR:
1829 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001830 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001831 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001833 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1834 return 0;
1835 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001836 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001837 if (retval)
1838 return retval;
1839 tape->door_locked = DOOR_UNLOCKED;
1840 return 0;
1841 default:
1842 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1843 mt_op);
1844 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
1846}
1847
1848/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001849 * Our character device ioctls. General mtio.h magnetic io commands are
1850 * supported here, and not in the corresponding block interface. Our own
1851 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001853static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1854 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
1856 struct ide_tape_obj *tape = ide_tape_f(file);
1857 ide_drive_t *drive = tape->drive;
1858 struct mtop mtop;
1859 struct mtget mtget;
1860 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001861 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 void __user *argp = (void __user *)arg;
1863
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001864 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Borislav Petkov54abf372008-02-06 02:57:52 +01001866 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001867 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 idetape_flush_tape_buffers(drive);
1869 }
1870 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001871 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001872 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001873 position = idetape_read_position(drive);
1874 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return -EIO;
1876 }
1877 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001878 case MTIOCTOP:
1879 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1880 return -EFAULT;
1881 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1882 case MTIOCGET:
1883 memset(&mtget, 0, sizeof(struct mtget));
1884 mtget.mt_type = MT_ISSCSI2;
1885 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1886 mtget.mt_dsreg =
1887 ((tape->blk_size * tape->user_bs_factor)
1888 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001889
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001890 if (tape->drv_write_prot)
1891 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1892
1893 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1894 return -EFAULT;
1895 return 0;
1896 case MTIOCPOS:
1897 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1898 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1899 return -EFAULT;
1900 return 0;
1901 default:
1902 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001903 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001904 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906}
1907
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001908/*
1909 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1910 * block size with the reported value.
1911 */
1912static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1913{
1914 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001915 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001916
1917 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001918 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001919 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001920 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001921 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1922 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001923 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001924 }
1925 return;
1926 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001927 tape->blk_size = (pc.buf[4 + 5] << 16) +
1928 (pc.buf[4 + 6] << 8) +
1929 pc.buf[4 + 7];
1930 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001931}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001933static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
1935 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1936 ide_drive_t *drive;
1937 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 int retval;
1939
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001940 if (i >= MAX_HWIFS * MAX_DRIVES)
1941 return -ENXIO;
1942
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001943 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001944 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001945 if (!tape) {
1946 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001947 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001948 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001949
1950 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 /*
1953 * We really want to do nonseekable_open(inode, filp); here, but some
1954 * versions of tar incorrectly call lseek on tapes and bail out if that
1955 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1956 */
1957 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 drive = tape->drive;
1960
1961 filp->private_data = tape;
1962
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001963 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 retval = -EBUSY;
1965 goto out_put_tape;
1966 }
1967
1968 retval = idetape_wait_ready(drive, 60 * HZ);
1969 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001970 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1972 goto out_put_tape;
1973 }
1974
1975 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001976 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 (void)idetape_rewind_tape(drive);
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001980 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 /* Set write protect flag if device is opened as read-only. */
1983 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1984 tape->write_prot = 1;
1985 else
1986 tape->write_prot = tape->drv_write_prot;
1987
1988 /* Make sure drive isn't write protected if user wants to write. */
1989 if (tape->write_prot) {
1990 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1991 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001992 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 retval = -EROFS;
1994 goto out_put_tape;
1995 }
1996 }
1997
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001998 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001999 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002000 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002001 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2002 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002005 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 return 0;
2007
2008out_put_tape:
2009 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002010 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return retval;
2012}
2013
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002014static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 idetape_tape_t *tape = drive->driver_data;
2017
Borislav Petkovd9df9372008-04-27 15:38:34 +02002018 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002019 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2020 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002021 idetape_pad_zeros(drive, tape->blk_size *
2022 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002023 ide_tape_kfree_buffer(tape);
2024 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026 idetape_write_filemark(drive);
2027 idetape_flush_tape_buffers(drive);
2028 idetape_flush_tape_buffers(drive);
2029}
2030
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002031static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
2033 struct ide_tape_obj *tape = ide_tape_f(filp);
2034 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 unsigned int minor = iminor(inode);
2036
2037 lock_kernel();
2038 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002039
2040 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Borislav Petkov54abf372008-02-06 02:57:52 +01002042 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002044 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002046 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002048
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002049 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002051 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002053 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002054 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 }
2056 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002057 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 ide_tape_put(tape);
2059 unlock_kernel();
2060 return 0;
2061}
2062
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002063static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002066 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002067 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002070 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002071 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2072 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return;
2074 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002075 memcpy(vendor_id, &pc.buf[8], 8);
2076 memcpy(product_id, &pc.buf[16], 16);
2077 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002078
Borislav Petkov801bd322008-09-27 19:32:17 +02002079 ide_fixstring(vendor_id, 8, 0);
2080 ide_fixstring(product_id, 16, 0);
2081 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002082
Borislav Petkov801bd322008-09-27 19:32:17 +02002083 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002084 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085}
2086
2087/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002088 * Ask the tape about its various parameters. In particular, we will adjust our
2089 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002091static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
2093 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002094 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002095 u8 *caps;
2096 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002099 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002100 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2101 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002102 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002103 put_unaligned(52, (u16 *)&tape->caps[12]);
2104 put_unaligned(540, (u16 *)&tape->caps[14]);
2105 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 return;
2107 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002108 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Borislav Petkovb6422012008-02-02 19:56:49 +01002110 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002111 speed = be16_to_cpup((__be16 *)&caps[14]);
2112 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002114 *(u16 *)&caps[8] = max_speed;
2115 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2116 *(u16 *)&caps[14] = speed;
2117 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002118
2119 if (!speed) {
2120 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2121 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002122 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002124 if (!max_speed) {
2125 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2126 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002127 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129
Borislav Petkovb6422012008-02-02 19:56:49 +01002130 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002131
2132 /* device lacks locking support according to capabilities page */
2133 if ((caps[6] & 1) == 0)
2134 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
2135
Borislav Petkovb6422012008-02-02 19:56:49 +01002136 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002137 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002138 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002139 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
2141
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002142#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002143#define ide_tape_devset_get(name, field) \
2144static int get_##name(ide_drive_t *drive) \
2145{ \
2146 idetape_tape_t *tape = drive->driver_data; \
2147 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002149
2150#define ide_tape_devset_set(name, field) \
2151static int set_##name(ide_drive_t *drive, int arg) \
2152{ \
2153 idetape_tape_t *tape = drive->driver_data; \
2154 tape->field = arg; \
2155 return 0; \
2156}
2157
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002158#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002159ide_tape_devset_get(_name, _field) \
2160ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002161IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002162
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002163#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002164ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002165IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002166
2167static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2168static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2169static int divf_buffer(ide_drive_t *drive) { return 2; }
2170static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2171
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002172ide_devset_rw_field(dsc_overlap, dsc_overlap);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002173
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002174ide_tape_devset_rw_field(debug_mask, debug_mask);
2175ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002176
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002177ide_tape_devset_r_field(avg_speed, avg_speed);
2178ide_tape_devset_r_field(speed, caps[14]);
2179ide_tape_devset_r_field(buffer, caps[16]);
2180ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002181
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002182static const struct ide_proc_devset idetape_settings[] = {
2183 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2184 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2185 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2186 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2187 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2188 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2189 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2190 mulf_tdsc, divf_tdsc),
2191 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002192};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002193#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002196 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002198 * 1. Initialize our various state variables.
2199 * 2. Ask the tape for its capabilities.
2200 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2201 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002203 * Note that at this point ide.c already assigned us an irq, so that we can
2204 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002206static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
Borislav Petkov83042b22008-04-27 15:38:27 +02002208 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002210 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002211 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002212 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Borislav Petkov776bb022008-07-23 19:55:59 +02002214 drive->pc_callback = ide_tape_callback;
2215
Borislav Petkov54bb2072008-02-06 02:57:52 +01002216 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002218 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2219 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2220 tape->name);
2221 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002224 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 drive->dsc_overlap = 0;
2226 tape->minor = minor;
2227 tape->name[0] = 'h';
2228 tape->name[1] = 't';
2229 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002230 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002231
2232 *((u16 *)&gcw) = drive->id[ATA_ID_CONFIG];
Borislav Petkov71071b82008-02-06 02:57:53 +01002233
2234 /* Command packet DRQ type */
2235 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002236 set_bit(IDE_AFLAG_DRQ_INTERRUPT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 idetape_get_inquiry_results(drive);
2239 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002240 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002242 tape->buffer_size = *ctl * tape->blk_size;
2243 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002245 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002246 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002248 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002249 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002250 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002251 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002252 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 }
2254
Borislav Petkov83042b22008-04-27 15:38:27 +02002255 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002256 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Borislav Petkovf73850a2008-04-27 15:38:33 +02002258 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002261 * Ensure that the number we got makes sense; limit it within
2262 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002264 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2265 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002267 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002268 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002269 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2270 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002271 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 drive->using_dma ? ", DMA":"");
2273
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002274 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275}
2276
Russell King4031bbe2006-01-06 11:41:00 +00002277static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002281 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 ide_unregister_region(tape->disk);
2284
2285 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286}
2287
2288static void ide_tape_release(struct kref *kref)
2289{
2290 struct ide_tape_obj *tape = to_ide_tape(kref);
2291 ide_drive_t *drive = tape->drive;
2292 struct gendisk *g = tape->disk;
2293
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002294 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 drive->dsc_overlap = 0;
2297 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002298 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002299 device_destroy(idetape_sysfs_class,
2300 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 idetape_devs[tape->minor] = NULL;
2302 g->private_data = NULL;
2303 put_disk(g);
2304 kfree(tape);
2305}
2306
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002307#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308static int proc_idetape_read_name
2309 (char *page, char **start, off_t off, int count, int *eof, void *data)
2310{
2311 ide_drive_t *drive = (ide_drive_t *) data;
2312 idetape_tape_t *tape = drive->driver_data;
2313 char *out = page;
2314 int len;
2315
2316 len = sprintf(out, "%s\n", tape->name);
2317 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2318}
2319
2320static ide_proc_entry_t idetape_proc[] = {
2321 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2322 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2323 { NULL, 0, NULL, NULL }
2324};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325#endif
2326
Russell King4031bbe2006-01-06 11:41:00 +00002327static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002330 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002331 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002332 .name = "ide-tape",
2333 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002334 },
Russell King4031bbe2006-01-06 11:41:00 +00002335 .probe = ide_tape_probe,
2336 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 .version = IDETAPE_VERSION,
2338 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 .do_request = idetape_do_request,
2340 .end_request = idetape_end_request,
2341 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002342#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002344 .settings = idetape_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002345#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346};
2347
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002348/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002349static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 .owner = THIS_MODULE,
2351 .read = idetape_chrdev_read,
2352 .write = idetape_chrdev_write,
2353 .ioctl = idetape_chrdev_ioctl,
2354 .open = idetape_chrdev_open,
2355 .release = idetape_chrdev_release,
2356};
2357
2358static int idetape_open(struct inode *inode, struct file *filp)
2359{
2360 struct gendisk *disk = inode->i_bdev->bd_disk;
2361 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002363 tape = ide_tape_get(disk);
2364 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 return -ENXIO;
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 return 0;
2368}
2369
2370static int idetape_release(struct inode *inode, struct file *filp)
2371{
2372 struct gendisk *disk = inode->i_bdev->bd_disk;
2373 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 ide_tape_put(tape);
2376
2377 return 0;
2378}
2379
2380static int idetape_ioctl(struct inode *inode, struct file *file,
2381 unsigned int cmd, unsigned long arg)
2382{
2383 struct block_device *bdev = inode->i_bdev;
2384 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2385 ide_drive_t *drive = tape->drive;
2386 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2387 if (err == -EINVAL)
2388 err = idetape_blkdev_ioctl(drive, cmd, arg);
2389 return err;
2390}
2391
2392static struct block_device_operations idetape_block_ops = {
2393 .owner = THIS_MODULE,
2394 .open = idetape_open,
2395 .release = idetape_release,
2396 .ioctl = idetape_ioctl,
2397};
2398
Russell King4031bbe2006-01-06 11:41:00 +00002399static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
2401 idetape_tape_t *tape;
2402 struct gendisk *g;
2403 int minor;
2404
2405 if (!strstr("ide-tape", drive->driver_req))
2406 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (drive->media != ide_tape)
2409 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002410
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +02002411 if (drive->id_read == 1 && !ide_check_atapi_device(drive, DRV_NAME)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002412 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2413 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 goto failed;
2415 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002416 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002418 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2419 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 goto failed;
2421 }
2422
2423 g = alloc_disk(1 << PARTN_BITS);
2424 if (!g)
2425 goto out_free_tape;
2426
2427 ide_init_disk(g, drive);
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 kref_init(&tape->kref);
2430
2431 tape->drive = drive;
2432 tape->driver = &idetape_driver;
2433 tape->disk = g;
2434
2435 g->private_data = &tape->driver;
2436
2437 drive->driver_data = tape;
2438
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002439 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 for (minor = 0; idetape_devs[minor]; minor++)
2441 ;
2442 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002443 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 idetape_setup(drive, tape, minor);
2446
Greg Kroah-Hartman6ecaaf92008-05-21 12:52:33 -07002447 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2448 MKDEV(IDETAPE_MAJOR, minor), NULL,
2449 "%s", tape->name);
2450 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2451 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2452 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 g->fops = &idetape_block_ops;
2455 ide_register_region(g);
2456
2457 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459out_free_tape:
2460 kfree(tape);
2461failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002462 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463}
2464
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002465static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002467 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002468 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 unregister_chrdev(IDETAPE_MAJOR, "ht");
2470}
2471
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002472static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
Will Dysond5dee802005-09-16 02:55:07 -07002474 int error = 1;
2475 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2476 if (IS_ERR(idetape_sysfs_class)) {
2477 idetape_sysfs_class = NULL;
2478 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2479 error = -EBUSY;
2480 goto out;
2481 }
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002484 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2485 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002486 error = -EBUSY;
2487 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
Will Dysond5dee802005-09-16 02:55:07 -07002489
2490 error = driver_register(&idetape_driver.gen_driver);
2491 if (error)
2492 goto out_free_driver;
2493
2494 return 0;
2495
2496out_free_driver:
2497 driver_unregister(&idetape_driver.gen_driver);
2498out_free_class:
2499 class_destroy(idetape_sysfs_class);
2500out:
2501 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502}
2503
Kay Sievers263756e2005-12-12 18:03:44 +01002504MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505module_init(idetape_init);
2506module_exit(idetape_exit);
2507MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002508MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2509MODULE_LICENSE("GPL");