blob: b2b2e5e8d38ebf499ec78ffd48df02d2b88496f9 [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
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200270static void ide_tape_release(struct kref *);
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
273{
274 struct ide_tape_obj *tape = NULL;
275
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800276 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200277 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200278 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200279 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200280 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200281 else
282 kref_get(&tape->kref);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200283 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800284 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return tape;
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static void ide_tape_put(struct ide_tape_obj *tape)
289{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200290 ide_drive_t *drive = tape->drive;
291
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800292 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 kref_put(&tape->kref, ide_tape_release);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200294 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800295 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100299 * The variables below are used for the character device interface. Additional
300 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100302static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
305{
306 struct ide_tape_obj *tape = NULL;
307
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800308 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 tape = idetape_devs[i];
310 if (tape)
311 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800312 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return tape;
314}
315
Borislav Petkovd236d742008-04-18 00:46:27 +0200316static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100317 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 struct idetape_bh *bh = pc->bh;
320 int count;
321
322 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (bh == NULL) {
324 printk(KERN_ERR "ide-tape: bh == NULL in "
325 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200326 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return;
328 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100329 count = min(
330 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
331 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200332 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100333 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 bcount -= count;
335 atomic_add(count, &bh->b_count);
336 if (atomic_read(&bh->b_count) == bh->b_size) {
337 bh = bh->b_reqnext;
338 if (bh)
339 atomic_set(&bh->b_count, 0);
340 }
341 }
342 pc->bh = bh;
343}
344
Borislav Petkovd236d742008-04-18 00:46:27 +0200345static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100346 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct idetape_bh *bh = pc->bh;
349 int count;
350
351 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100353 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
354 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return;
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200358 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 bcount -= count;
360 pc->b_data += count;
361 pc->b_count -= count;
362 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100363 bh = bh->b_reqnext;
364 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (bh) {
366 pc->b_data = bh->b_data;
367 pc->b_count = atomic_read(&bh->b_count);
368 }
369 }
370 }
371}
372
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200373static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 struct idetape_bh *bh = pc->bh;
376 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200377 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Borislav Petkov346331f2008-04-18 00:46:26 +0200379 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return;
381 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100383 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
384 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return;
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
388 atomic_set(&bh->b_count, count);
389 if (atomic_read(&bh->b_count) == bh->b_size)
390 bh = bh->b_reqnext;
391 bcount -= count;
392 }
393 pc->bh = bh;
394}
395
396/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100397 * called on each failed packet command retry to analyze the request sense. We
398 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100400static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200403 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Borislav Petkov1b5db432008-02-02 19:56:48 +0100405 tape->sense_key = sense[2] & 0xF;
406 tape->asc = sense[12];
407 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100408
409 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
410 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Borislav Petkovd236d742008-04-18 00:46:27 +0200412 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200413 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200414 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100415 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200416 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200417 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
420 /*
421 * If error was the result of a zero-length read or write command,
422 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
423 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
424 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100425 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100426 /* length == 0 */
427 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
428 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* don't report an error, everything's ok */
430 pc->error = 0;
431 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200432 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100435 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200437 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100439 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100440 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
441 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200443 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100446 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100447 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200449 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200451 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200452 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
454 }
455}
456
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200457/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200458static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200460 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200462 while (bh) {
463 u32 size = bh->b_size;
464
465 while (size) {
466 unsigned int order = fls(size >> PAGE_SHIFT)-1;
467
468 if (bh->b_data)
469 free_pages((unsigned long)bh->b_data, order);
470
471 size &= (order-1);
472 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474 prev_bh = bh;
475 bh = bh->b_reqnext;
476 kfree(prev_bh);
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
481{
482 struct request *rq = HWGROUP(drive)->rq;
483 idetape_tape_t *tape = drive->driver_data;
484 unsigned long flags;
485 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100487 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100490 case 0: error = IDETAPE_ERROR_GENERAL; break;
491 case 1: error = 0; break;
492 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494 rq->errors = error;
495 if (error)
496 tape->failed_pc = NULL;
497
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100498 if (!blk_special_request(rq)) {
499 ide_end_request(drive, uptodate, nr_sects);
500 return 0;
501 }
502
Borislav Petkov54bb2072008-02-06 02:57:52 +0100503 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Borislav Petkov54bb2072008-02-06 02:57:52 +0100507 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return 0;
509}
510
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200511static void ide_tape_handle_dsc(ide_drive_t *);
512
513static void ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200516 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200517 int uptodate = pc->error ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100519 debug_log(DBG_PROCS, "Enter %s\n", __func__);
520
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200521 if (dsc)
522 ide_tape_handle_dsc(drive);
523
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200524 if (tape->failed_pc == pc)
525 tape->failed_pc = NULL;
526
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200527 if (pc->c[0] == REQUEST_SENSE) {
528 if (uptodate)
529 idetape_analyze_error(drive, pc->buf);
530 else
531 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
532 "itself - Aborting request!\n");
533 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
534 struct request *rq = drive->hwif->hwgroup->rq;
535 int blocks = pc->xferred / tape->blk_size;
536
537 tape->avg_size += blocks * tape->blk_size;
538
539 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
540 tape->avg_speed = tape->avg_size * HZ /
541 (jiffies - tape->avg_time) / 1024;
542 tape->avg_size = 0;
543 tape->avg_time = jiffies;
544 }
545
546 tape->first_frame += blocks;
547 rq->current_nr_sectors -= blocks;
548
549 if (pc->error)
550 uptodate = pc->error;
551 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200552 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200553
554 debug_log(DBG_SENSE, "BOP - %s\n",
555 (readpos[0] & 0x80) ? "Yes" : "No");
556 debug_log(DBG_SENSE, "EOP - %s\n",
557 (readpos[0] & 0x40) ? "Yes" : "No");
558
559 if (readpos[0] & 0x4) {
560 printk(KERN_INFO "ide-tape: Block location is unknown"
561 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200562 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200563 uptodate = 0;
564 } else {
565 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200566 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200567
568 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200569 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200570 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200573
574 idetape_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100578 * Postpone the current request so that ide.c will be able to service requests
579 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100581static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
583 idetape_tape_t *tape = drive->driver_data;
584
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100585 debug_log(DBG_PROCS, "Enter %s\n", __func__);
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100588 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200591static void ide_tape_handle_dsc(ide_drive_t *drive)
592{
593 idetape_tape_t *tape = drive->driver_data;
594
595 /* Media access command */
596 tape->dsc_polling_start = jiffies;
597 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
598 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
599 /* Allow ide.c to handle other requests */
600 idetape_postpone_request(drive);
601}
602
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200603static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200604 unsigned int bcount, int write)
605{
606 if (write)
607 idetape_output_buffers(drive, pc, bcount);
608 else
609 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200610
611 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200612}
Borislav Petkova1efc852008-02-06 02:57:52 +0100613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100615 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200617 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100618 * until we finish handling it. Each packet command is associated with a
619 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100621 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100623 * 1. idetape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200624 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200626 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100627 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100629 * 3. ATAPI Tape media access commands have immediate status with a delayed
630 * process. In case of a successful initiation of a media access packet command,
631 * the DSC bit will be set when the actual execution of the command is finished.
632 * Since the tape drive will not issue an interrupt, we have to poll for this
633 * event. In this case, we define the request as "low priority request" by
634 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
635 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100637 * ide.c will then give higher priority to requests which originate from the
638 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100640 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100642 * 5. In case an error was found, we queue a request sense packet command in
643 * front of the request queue and retry the operation up to
644 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100646 * 6. In case no error was found, or we decided to give up and not to retry
647 * again, the callback function will be called and then we will handle the next
648 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Borislav Petkovd236d742008-04-18 00:46:27 +0200651static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
652 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200656 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100657 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
659 "Two request sense in serial were issued\n");
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Borislav Petkov90699ce2008-02-02 19:56:50 +0100662 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 tape->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200666 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200669 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100671 * We will "abort" retrying a packet command in case legitimate
672 * error code was received (crossing a filemark, or end of the
673 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200675 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100676 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 tape->sense_key == 2 && tape->asc == 4 &&
678 (tape->ascq == 1 || tape->ascq == 8))) {
679 printk(KERN_ERR "ide-tape: %s: I/O error, "
680 "pc = %2x, key = %2x, "
681 "asc = %2x, ascq = %2x\n",
682 tape->name, pc->c[0],
683 tape->sense_key, tape->asc,
684 tape->ascq);
685 }
686 /* Giving up */
687 pc->error = IDETAPE_ERROR_GENERAL;
688 }
689 tape->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200690 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200691 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100693 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200697 return ide_issue_pc(drive, WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100700/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200701static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200703 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100704 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100706 /* DBD = 1 - Don't return block descriptors */
707 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 pc->c[2] = page_code;
709 /*
710 * Changed pc->c[3] to 0 (255 will at best return unused info).
711 *
712 * For SCSI this byte is defined as subpage instead of high byte
713 * of length and some IDE drives seem to interpret it this way
714 * and return an error when 255 is used.
715 */
716 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100717 /* We will just discard data in that case */
718 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200720 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200722 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200724 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100727static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200729 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200731 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100732 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200734 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100735
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200736 if (stat & ATA_DSC) {
737 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100739 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 printk(KERN_ERR "ide-tape: %s: I/O error, ",
741 tape->name);
742 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200743 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200744 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 } else {
748 pc->error = IDETAPE_ERROR_GENERAL;
749 tape->failed_pc = NULL;
750 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200751 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return ide_stopped;
753}
754
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200755static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200756 struct ide_atapi_pc *pc, struct request *rq,
757 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Borislav Petkov0014c752008-07-23 19:56:00 +0200759 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
760 unsigned int length = rq->current_nr_sectors;
761
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200762 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100763 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200766 pc->buf = NULL;
767 pc->buf_size = length * tape->blk_size;
768 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200769 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200770 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200772 if (opcode == READ_6) {
773 pc->c[0] = READ_6;
774 atomic_set(&bh->b_count, 0);
775 } else if (opcode == WRITE_6) {
776 pc->c[0] = WRITE_6;
777 pc->flags |= PC_FLAG_WRITING;
778 pc->b_data = bh->b_data;
779 pc->b_count = atomic_read(&bh->b_count);
780 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200781
782 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785static ide_startstop_t idetape_do_request(ide_drive_t *drive,
786 struct request *rq, sector_t block)
787{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200788 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200790 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100792 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Mark de Wever730616b2008-10-10 22:39:17 +0200794 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
795 " current_nr_sectors: %u\n",
796 (unsigned long long)rq->sector, rq->nr_sectors,
797 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Jens Axboe4aff5e22006-08-10 08:44:47 +0200799 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100800 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200802 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 ide_end_request(drive, 0, 0);
804 return ide_stopped;
805 }
806
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100807 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200808 if (tape->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200809 pc = tape->failed_pc;
810 goto out;
811 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (postponed_rq != NULL)
814 if (rq != postponed_rq) {
815 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
816 "Two DSC requests were queued\n");
817 idetape_end_request(drive, 0, 0);
818 return ide_stopped;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 tape->postponed_rq = NULL;
822
823 /*
824 * If the tape is still busy, postpone our request and service
825 * the other device meanwhile.
826 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200827 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200829 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
830 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200831 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200833 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200834 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200835 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200838 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200839 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (postponed_rq == NULL) {
841 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100842 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
844 } else if (time_after(jiffies, tape->dsc_timeout)) {
845 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
846 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200847 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 idetape_media_access_finished(drive);
849 return ide_stopped;
850 } else {
851 return ide_do_reset(drive);
852 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100853 } else if (time_after(jiffies,
854 tape->dsc_polling_start +
855 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100856 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 idetape_postpone_request(drive);
858 return ide_stopped;
859 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200860 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200861 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200862 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto out;
864 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200865 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200866 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200867 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 goto out;
869 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200870 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200871 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200872 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
873 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 goto out;
875 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200876 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 idetape_media_access_finished(drive);
878 return ide_stopped;
879 }
880 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200881
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200882out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100883 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200887 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200888 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100889 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200891 * It returns a pointer to the newly allocated buffer, or NULL in case of
892 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200894static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
895 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200897 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200898 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200899 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 char *b_data = NULL;
901
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200902 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
903 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (bh == NULL)
905 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200906
907 order = fls(pages) - 1;
908 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100909 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200911 b_allocd = (1 << order) * PAGE_SIZE;
912 pages &= (order-1);
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200915 memset(bh->b_data, 0, b_allocd);
916 bh->b_reqnext = NULL;
917 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 atomic_set(&bh->b_count, full ? bh->b_size : 0);
919
Borislav Petkov41aa1702008-04-27 15:38:32 +0200920 while (pages) {
921 order = fls(pages) - 1;
922 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100923 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200925 b_allocd = (1 << order) * PAGE_SIZE;
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200928 memset(b_data, 0, b_allocd);
929
930 /* newly allocated page frames below buffer header or ...*/
931 if (bh->b_data == b_data + b_allocd) {
932 bh->b_size += b_allocd;
933 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200935 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 continue;
937 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200938 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200940 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200942 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 continue;
944 }
945 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100946 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
947 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200948 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 goto abort;
950 }
951 bh->b_reqnext = NULL;
952 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200953 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 atomic_set(&bh->b_count, full ? bh->b_size : 0);
955 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200956
957 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 bh->b_size -= tape->excess_bh_size;
961 if (full)
962 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200963 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200965 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 return NULL;
967}
968
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100969static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200970 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 struct idetape_bh *bh = tape->bh;
973 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700974 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100978 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
979 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700980 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100982 count = min((unsigned int)
983 (bh->b_size - atomic_read(&bh->b_count)),
984 (unsigned int)n);
985 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
986 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700987 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 n -= count;
989 atomic_add(count, &bh->b_count);
990 buf += count;
991 if (atomic_read(&bh->b_count) == bh->b_size) {
992 bh = bh->b_reqnext;
993 if (bh)
994 atomic_set(&bh->b_count, 0);
995 }
996 }
997 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700998 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001001static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001002 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 struct idetape_bh *bh = tape->bh;
1005 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001006 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001010 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1011 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001012 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001015 if (copy_to_user(buf, tape->b_data, count))
1016 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 n -= count;
1018 tape->b_data += count;
1019 tape->b_count -= count;
1020 buf += count;
1021 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001022 bh = bh->b_reqnext;
1023 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (bh) {
1025 tape->b_data = bh->b_data;
1026 tape->b_count = atomic_read(&bh->b_count);
1027 }
1028 }
1029 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001030 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001033static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001035 struct idetape_bh *bh = tape->merge_bh;
1036 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001037
Borislav Petkov54abf372008-02-06 02:57:52 +01001038 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 atomic_set(&bh->b_count, 0);
1040 else {
1041 tape->b_data = bh->b_data;
1042 tape->b_count = atomic_read(&bh->b_count);
1043 }
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001047 * Write a filemark if write_filemark=1. Flush the device buffers without
1048 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001050static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001051 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001053 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001054 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001056 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1060{
1061 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001062 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int load_attempted = 0;
1064
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001065 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001066 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 timeout += jiffies;
1068 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001069 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return 0;
1071 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001072 || (tape->asc == 0x3A)) {
1073 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (load_attempted)
1075 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001076 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 load_attempted = 1;
1078 /* not about to be ready */
1079 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1080 (tape->ascq == 1 || tape->ascq == 8)))
1081 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001082 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084 return -EIO;
1085}
1086
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001087static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001089 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001090 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 int rc;
1092
1093 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001094 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001095 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return rc;
1097 idetape_wait_ready(drive, 60 * 5 * HZ);
1098 return 0;
1099}
1100
Borislav Petkovd236d742008-04-18 00:46:27 +02001101static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001103 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001104 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001105 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001108static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001111 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 int position;
1113
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001114 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001117 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001119 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return position;
1121}
1122
Borislav Petkovd236d742008-04-18 00:46:27 +02001123static void idetape_create_locate_cmd(ide_drive_t *drive,
1124 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001125 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001127 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001128 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001130 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001132 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001135static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Borislav Petkov54abf372008-02-06 02:57:52 +01001139 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001140 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001142 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001143 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001144 if (tape->merge_bh != NULL) {
1145 ide_tape_kfree_buffer(tape);
1146 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
Borislav Petkov54abf372008-02-06 02:57:52 +01001149 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
1152/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001153 * Position the tape to the requested block using the LOCATE packet command.
1154 * A READ POSITION command is then issued to check where we are positioned. Like
1155 * all higher level operations, we queue the commands at the tail of the request
1156 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001158static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1159 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001162 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001164 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Borislav Petkov54abf372008-02-06 02:57:52 +01001166 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001167 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 idetape_wait_ready(drive, 60 * 5 * HZ);
1169 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001170 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (retval)
1172 return (retval);
1173
1174 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001175 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001178static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001179 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
1181 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 int seek, position;
1183
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001184 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (restore_position) {
1186 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001187 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001189 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001190 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return;
1192 }
1193 }
1194}
1195
1196/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001197 * Generate a read/write request for the block device interface and wait for it
1198 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001200static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1201 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
1203 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001204 struct request *rq;
1205 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001207 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1208
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001209 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1210 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001211 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001212 rq->rq_disk = tape->disk;
1213 rq->special = (void *)bh;
1214 rq->sector = tape->first_frame;
1215 rq->nr_sectors = blocks;
1216 rq->current_nr_sectors = blocks;
1217 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1218
1219 errors = rq->errors;
1220 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1221 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1224 return 0;
1225
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001226 if (tape->merge_bh)
1227 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001228 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001230 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Borislav Petkovd236d742008-04-18 00:46:27 +02001233static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001235 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001236 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001237 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001238 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Borislav Petkovd236d742008-04-18 00:46:27 +02001241static void idetape_create_rewind_cmd(ide_drive_t *drive,
1242 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001244 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001245 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001246 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Borislav Petkovd236d742008-04-18 00:46:27 +02001249static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001251 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001252 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001254 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
Borislav Petkovd236d742008-04-18 00:46:27 +02001257static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001259 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001260 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001261 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001263 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
1265
Borislav Petkov97c566c2008-04-27 15:38:25 +02001266/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001267static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
1269 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001271 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001273 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001274 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
Borislav Petkovd9df9372008-04-27 15:38:34 +02001277static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 idetape_tape_t *tape = drive->driver_data;
1280 int blocks, min;
1281 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001282
Borislav Petkov54abf372008-02-06 02:57:52 +01001283 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001284 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001285 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return;
1287 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001288 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001290 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001292 if (tape->merge_bh_size) {
1293 blocks = tape->merge_bh_size / tape->blk_size;
1294 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 unsigned int i;
1296
1297 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001298 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001299 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 bh = tape->bh->b_reqnext;
1301 while (bh) {
1302 atomic_set(&bh->b_count, 0);
1303 bh = bh->b_reqnext;
1304 }
1305 bh = tape->bh;
1306 while (i) {
1307 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001308 printk(KERN_INFO "ide-tape: bug,"
1309 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 break;
1311 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001312 min = min(i, (unsigned int)(bh->b_size -
1313 atomic_read(&bh->b_count)));
1314 memset(bh->b_data + atomic_read(&bh->b_count),
1315 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 atomic_add(min, &bh->b_count);
1317 i -= min;
1318 bh = bh->b_reqnext;
1319 }
1320 }
1321 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001322 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001324 if (tape->merge_bh != NULL) {
1325 ide_tape_kfree_buffer(tape);
1326 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001328 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Borislav Petkov83042b22008-04-27 15:38:27 +02001331static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
1333 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001337 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1338 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001339 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 idetape_flush_tape_buffers(drive);
1341 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001342 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001343 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001344 " 0 now\n");
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 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1348 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001350 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001353 * Issue a read 0 command to ensure that DSC handshake is
1354 * switched from completion mode to buffer available mode.
1355 * No point in issuing this if DSC overlap isn't supported, some
1356 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001358 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001359 bytes_read = idetape_queue_rw_tail(drive,
1360 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001361 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001363 ide_tape_kfree_buffer(tape);
1364 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001365 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return bytes_read;
1367 }
1368 }
1369 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return 0;
1372}
1373
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001374/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001375static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001379 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001381 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001382 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return 0;
1384
Borislav Petkov83042b22008-04-27 15:38:27 +02001385 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001387 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001388 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001391static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 idetape_tape_t *tape = drive->driver_data;
1394 struct idetape_bh *bh;
1395 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 while (bcount) {
1398 unsigned int count;
1399
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001400 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001401 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001403 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001405 atomic_set(&bh->b_count,
1406 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1408 count -= atomic_read(&bh->b_count);
1409 bh = bh->b_reqnext;
1410 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001411 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001412 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001417 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1418 * currently support only one partition.
1419 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001420static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001422 struct ide_tape_obj *tape = drive->driver_data;
1423 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001425 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001426
1427 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001430 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (retval)
1432 return retval;
1433
1434 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001435 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (retval)
1437 return retval;
1438 return 0;
1439}
1440
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001441/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001442static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1443 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 void __user *argp = (void __user *)arg;
1447
Borislav Petkovd59823f2008-02-02 19:56:51 +01001448 struct idetape_config {
1449 int dsc_rw_frequency;
1450 int dsc_media_access_frequency;
1451 int nr_stages;
1452 } config;
1453
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001454 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001457 case 0x0340:
1458 if (copy_from_user(&config, argp, sizeof(config)))
1459 return -EFAULT;
1460 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001461 break;
1462 case 0x0350:
1463 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001464 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001465 if (copy_to_user(argp, &config, sizeof(config)))
1466 return -EFAULT;
1467 break;
1468 default:
1469 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471 return 0;
1472}
1473
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001474static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1475 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001478 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001479 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001480 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001481 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 if (mt_count == 0)
1484 return 0;
1485 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001486 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001488 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490
Borislav Petkov54abf372008-02-06 02:57:52 +01001491 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001492 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001493 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001495 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001499 case MTFSF:
1500 case MTBSF:
1501 idetape_create_space_cmd(&pc, mt_count - count,
1502 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001503 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001504 case MTFSFM:
1505 case MTBSFM:
1506 if (!sprev)
1507 return -EIO;
1508 retval = idetape_space_over_filemarks(drive, MTFSF,
1509 mt_count - count);
1510 if (retval)
1511 return retval;
1512 count = (MTBSFM == mt_op ? 1 : -1);
1513 return idetape_space_over_filemarks(drive, MTFSF, count);
1514 default:
1515 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1516 mt_op);
1517 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519}
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001522 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001524 * The tape is optimized to maximize throughput when it is transferring an
1525 * integral number of the "continuous transfer limit", which is a parameter of
1526 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001528 * As of version 1.3 of the driver, the character device provides an abstract
1529 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1530 * same backup/restore procedure is supported. The driver will internally
1531 * convert the requests to the recommended transfer unit, so that an unmatch
1532 * between the user's block size to the recommended size will only result in a
1533 * (slightly) increased driver overhead, but will no longer hit performance.
1534 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001536static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1537 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001539 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001541 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001542 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001543 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001545 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Borislav Petkov54abf372008-02-06 02:57:52 +01001547 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001548 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001549 if (count > tape->blk_size &&
1550 (count % tape->blk_size) == 0)
1551 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001553 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001554 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return rc;
1556 if (count == 0)
1557 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001558 if (tape->merge_bh_size) {
1559 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001560 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001561 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001562 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001564 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 count -= actually_read;
1566 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001567 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001568 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (bytes_read <= 0)
1570 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001571 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001572 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 buf += bytes_read;
1574 count -= bytes_read;
1575 actually_read += bytes_read;
1576 }
1577 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001578 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (bytes_read <= 0)
1580 goto finish;
1581 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001582 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001583 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001585 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001588 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001589 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 idetape_space_over_filemarks(drive, MTFSF, 1);
1592 return 0;
1593 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001594
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001595 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001598static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 size_t count, loff_t *ppos)
1600{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001601 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001603 ssize_t actually_written = 0;
1604 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001605 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 /* The drive is write protected. */
1608 if (tape->write_prot)
1609 return -EACCES;
1610
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001611 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001614 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1615 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001616 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001617 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001618 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001620 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001622 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1623 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001625 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001626 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001629 * Issue a write 0 command to ensure that DSC handshake is
1630 * switched from completion mode to buffer available mode. No
1631 * point in issuing this if DSC overlap isn't supported, some
1632 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001634 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001635 ssize_t retval = idetape_queue_rw_tail(drive,
1636 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001637 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001639 ide_tape_kfree_buffer(tape);
1640 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001641 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return retval;
1643 }
1644 }
1645 }
1646 if (count == 0)
1647 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001648 if (tape->merge_bh_size) {
1649 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001650 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001651 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001653 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001654 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001655 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001656 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001657 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001659 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 count -= actually_written;
1661
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001662 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001663 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001664 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001665 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (retval <= 0)
1667 return (retval);
1668 }
1669 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001670 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001671 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001672 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001673 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001674 buf += tape->buffer_size;
1675 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001676 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001677 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 if (retval <= 0)
1679 return (retval);
1680 }
1681 if (count) {
1682 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001683 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001684 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001685 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001687 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688}
1689
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001690static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001692 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001693 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 /* Write a filemark */
1696 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001697 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1699 return -EIO;
1700 }
1701 return 0;
1702}
1703
1704/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001705 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1706 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001708 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1709 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001710 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001712 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001714 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1715 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001717static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001720 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001721 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001722 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001724 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1725 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001728 case MTFSF:
1729 case MTFSFM:
1730 case MTBSF:
1731 case MTBSFM:
1732 if (!mt_count)
1733 return 0;
1734 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1735 default:
1736 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001740 case MTWEOF:
1741 if (tape->write_prot)
1742 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001743 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001744 for (i = 0; i < mt_count; i++) {
1745 retval = idetape_write_filemark(drive);
1746 if (retval)
1747 return retval;
1748 }
1749 return 0;
1750 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001751 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001752 if (idetape_rewind_tape(drive))
1753 return -EIO;
1754 return 0;
1755 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001756 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001757 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001758 case MTUNLOAD:
1759 case MTOFFL:
1760 /*
1761 * If door is locked, attempt to unlock before
1762 * attempting to eject.
1763 */
1764 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001765 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001766 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001767 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001768 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001769 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001770 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001771 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001772 return retval;
1773 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001774 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001775 return idetape_flush_tape_buffers(drive);
1776 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001777 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001778 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001779 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001780 case MTEOM:
1781 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001782 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001783 case MTERASE:
1784 (void)idetape_rewind_tape(drive);
1785 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001786 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001787 case MTSETBLK:
1788 if (mt_count) {
1789 if (mt_count < tape->blk_size ||
1790 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001792 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001793 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001794 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001795 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001796 return 0;
1797 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001798 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001799 return idetape_position_tape(drive,
1800 mt_count * tape->user_bs_factor, tape->partition, 0);
1801 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001802 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001803 return idetape_position_tape(drive, 0, mt_count, 0);
1804 case MTFSR:
1805 case MTBSR:
1806 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001807 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001808 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001810 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1811 return 0;
1812 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001813 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001814 if (retval)
1815 return retval;
1816 tape->door_locked = DOOR_UNLOCKED;
1817 return 0;
1818 default:
1819 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1820 mt_op);
1821 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823}
1824
1825/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001826 * Our character device ioctls. General mtio.h magnetic io commands are
1827 * supported here, and not in the corresponding block interface. Our own
1828 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001830static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1831 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001833 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 ide_drive_t *drive = tape->drive;
1835 struct mtop mtop;
1836 struct mtget mtget;
1837 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001838 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 void __user *argp = (void __user *)arg;
1840
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001841 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Borislav Petkov54abf372008-02-06 02:57:52 +01001843 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001844 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 idetape_flush_tape_buffers(drive);
1846 }
1847 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001848 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001849 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001850 position = idetape_read_position(drive);
1851 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 return -EIO;
1853 }
1854 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001855 case MTIOCTOP:
1856 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1857 return -EFAULT;
1858 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1859 case MTIOCGET:
1860 memset(&mtget, 0, sizeof(struct mtget));
1861 mtget.mt_type = MT_ISSCSI2;
1862 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1863 mtget.mt_dsreg =
1864 ((tape->blk_size * tape->user_bs_factor)
1865 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001866
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001867 if (tape->drv_write_prot)
1868 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1869
1870 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1871 return -EFAULT;
1872 return 0;
1873 case MTIOCPOS:
1874 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1875 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1876 return -EFAULT;
1877 return 0;
1878 default:
1879 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001880 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001881 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
1883}
1884
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001885/*
1886 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1887 * block size with the reported value.
1888 */
1889static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1890{
1891 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001892 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001893
1894 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001895 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001896 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001897 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001898 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1899 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001900 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001901 }
1902 return;
1903 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001904 tape->blk_size = (pc.buf[4 + 5] << 16) +
1905 (pc.buf[4 + 6] << 8) +
1906 pc.buf[4 + 7];
1907 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001908}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001910static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
1912 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1913 ide_drive_t *drive;
1914 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 int retval;
1916
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001917 if (i >= MAX_HWIFS * MAX_DRIVES)
1918 return -ENXIO;
1919
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001920 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001921 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001922 if (!tape) {
1923 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001924 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001925 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001926
1927 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 /*
1930 * We really want to do nonseekable_open(inode, filp); here, but some
1931 * versions of tar incorrectly call lseek on tapes and bail out if that
1932 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1933 */
1934 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 drive = tape->drive;
1937
1938 filp->private_data = tape;
1939
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001940 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 retval = -EBUSY;
1942 goto out_put_tape;
1943 }
1944
1945 retval = idetape_wait_ready(drive, 60 * HZ);
1946 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001947 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1949 goto out_put_tape;
1950 }
1951
1952 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001953 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 (void)idetape_rewind_tape(drive);
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001957 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 /* Set write protect flag if device is opened as read-only. */
1960 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1961 tape->write_prot = 1;
1962 else
1963 tape->write_prot = tape->drv_write_prot;
1964
1965 /* Make sure drive isn't write protected if user wants to write. */
1966 if (tape->write_prot) {
1967 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1968 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001969 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 retval = -EROFS;
1971 goto out_put_tape;
1972 }
1973 }
1974
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001975 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001976 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001977 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001978 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1979 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001982 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return 0;
1984
1985out_put_tape:
1986 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001987 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 return retval;
1989}
1990
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001991static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
1993 idetape_tape_t *tape = drive->driver_data;
1994
Borislav Petkovd9df9372008-04-27 15:38:34 +02001995 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001996 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1997 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001998 idetape_pad_zeros(drive, tape->blk_size *
1999 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002000 ide_tape_kfree_buffer(tape);
2001 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
2003 idetape_write_filemark(drive);
2004 idetape_flush_tape_buffers(drive);
2005 idetape_flush_tape_buffers(drive);
2006}
2007
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002008static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002010 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 unsigned int minor = iminor(inode);
2013
2014 lock_kernel();
2015 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002016
2017 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Borislav Petkov54abf372008-02-06 02:57:52 +01002019 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002021 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002023 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002025
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002026 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002028 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002030 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002031 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
2033 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002034 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 ide_tape_put(tape);
2036 unlock_kernel();
2037 return 0;
2038}
2039
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002040static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002043 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002044 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002047 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002048 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2049 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return;
2051 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002052 memcpy(vendor_id, &pc.buf[8], 8);
2053 memcpy(product_id, &pc.buf[16], 16);
2054 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002055
Borislav Petkov801bd322008-09-27 19:32:17 +02002056 ide_fixstring(vendor_id, 8, 0);
2057 ide_fixstring(product_id, 16, 0);
2058 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002059
Borislav Petkov801bd322008-09-27 19:32:17 +02002060 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002061 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
2064/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002065 * Ask the tape about its various parameters. In particular, we will adjust our
2066 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002068static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069{
2070 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002071 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002072 u8 *caps;
2073 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002076 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002077 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2078 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002079 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002080 put_unaligned(52, (u16 *)&tape->caps[12]);
2081 put_unaligned(540, (u16 *)&tape->caps[14]);
2082 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return;
2084 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002085 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Borislav Petkovb6422012008-02-02 19:56:49 +01002087 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002088 speed = be16_to_cpup((__be16 *)&caps[14]);
2089 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002091 *(u16 *)&caps[8] = max_speed;
2092 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2093 *(u16 *)&caps[14] = speed;
2094 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002095
2096 if (!speed) {
2097 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2098 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002099 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002101 if (!max_speed) {
2102 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2103 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002104 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106
Borislav Petkovb6422012008-02-02 19:56:49 +01002107 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002108
2109 /* device lacks locking support according to capabilities page */
2110 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02002111 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002112
Borislav Petkovb6422012008-02-02 19:56:49 +01002113 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002114 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002115 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002116 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002119#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002120#define ide_tape_devset_get(name, field) \
2121static int get_##name(ide_drive_t *drive) \
2122{ \
2123 idetape_tape_t *tape = drive->driver_data; \
2124 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002126
2127#define ide_tape_devset_set(name, field) \
2128static int set_##name(ide_drive_t *drive, int arg) \
2129{ \
2130 idetape_tape_t *tape = drive->driver_data; \
2131 tape->field = arg; \
2132 return 0; \
2133}
2134
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002135#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002136ide_tape_devset_get(_name, _field) \
2137ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002138IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002139
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002140#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002141ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002142IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002143
2144static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2145static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2146static int divf_buffer(ide_drive_t *drive) { return 2; }
2147static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2148
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002149ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002150
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002151ide_tape_devset_rw_field(debug_mask, debug_mask);
2152ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002153
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002154ide_tape_devset_r_field(avg_speed, avg_speed);
2155ide_tape_devset_r_field(speed, caps[14]);
2156ide_tape_devset_r_field(buffer, caps[16]);
2157ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002158
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002159static const struct ide_proc_devset idetape_settings[] = {
2160 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2161 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2162 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2163 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2164 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2165 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2166 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2167 mulf_tdsc, divf_tdsc),
2168 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002169};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002170#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002173 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002175 * 1. Initialize our various state variables.
2176 * 2. Ask the tape for its capabilities.
2177 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2178 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002180 * Note that at this point ide.c already assigned us an irq, so that we can
2181 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002183static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Borislav Petkov83042b22008-04-27 15:38:27 +02002185 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002187 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002188 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002190 drive->pc_callback = ide_tape_callback;
2191 drive->pc_update_buffers = idetape_update_buffers;
2192 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002193
Borislav Petkov54bb2072008-02-06 02:57:52 +01002194 spin_lock_init(&tape->lock);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002195
2196 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2197
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002198 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2199 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2200 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002201 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002205 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002206 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 tape->minor = minor;
2209 tape->name[0] = 'h';
2210 tape->name[1] = 't';
2211 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002212 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 idetape_get_inquiry_results(drive);
2215 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002216 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002218 tape->buffer_size = *ctl * tape->blk_size;
2219 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002221 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002222 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002224 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002225 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002226 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002227 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002228 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 }
2230
Borislav Petkov83042b22008-04-27 15:38:27 +02002231 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002232 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Borislav Petkovf73850a2008-04-27 15:38:33 +02002234 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002237 * Ensure that the number we got makes sense; limit it within
2238 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002240 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2241 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002243 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002244 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002245 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2246 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002247 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002248 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002250 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
Russell King4031bbe2006-01-06 11:41:00 +00002253static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
2255 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002257 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 ide_unregister_region(tape->disk);
2260
2261 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262}
2263
2264static void ide_tape_release(struct kref *kref)
2265{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002266 struct ide_tape_obj *tape = to_ide_drv(kref, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 ide_drive_t *drive = tape->drive;
2268 struct gendisk *g = tape->disk;
2269
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002270 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002271
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002272 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002274 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002275 device_destroy(idetape_sysfs_class,
2276 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 idetape_devs[tape->minor] = NULL;
2278 g->private_data = NULL;
2279 put_disk(g);
2280 kfree(tape);
2281}
2282
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002283#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284static int proc_idetape_read_name
2285 (char *page, char **start, off_t off, int count, int *eof, void *data)
2286{
2287 ide_drive_t *drive = (ide_drive_t *) data;
2288 idetape_tape_t *tape = drive->driver_data;
2289 char *out = page;
2290 int len;
2291
2292 len = sprintf(out, "%s\n", tape->name);
2293 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2294}
2295
2296static ide_proc_entry_t idetape_proc[] = {
2297 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2298 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2299 { NULL, 0, NULL, NULL }
2300};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002301
2302static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2303{
2304 return idetape_proc;
2305}
2306
2307static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2308{
2309 return idetape_settings;
2310}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311#endif
2312
Russell King4031bbe2006-01-06 11:41:00 +00002313static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002316 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002317 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002318 .name = "ide-tape",
2319 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002320 },
Russell King4031bbe2006-01-06 11:41:00 +00002321 .probe = ide_tape_probe,
2322 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 .do_request = idetape_do_request,
2325 .end_request = idetape_end_request,
2326 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002327#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002328 .proc_entries = ide_tape_proc_entries,
2329 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331};
2332
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002333/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002334static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 .owner = THIS_MODULE,
2336 .read = idetape_chrdev_read,
2337 .write = idetape_chrdev_write,
2338 .ioctl = idetape_chrdev_ioctl,
2339 .open = idetape_chrdev_open,
2340 .release = idetape_chrdev_release,
2341};
2342
2343static int idetape_open(struct inode *inode, struct file *filp)
2344{
2345 struct gendisk *disk = inode->i_bdev->bd_disk;
2346 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002348 tape = ide_tape_get(disk);
2349 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 return -ENXIO;
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return 0;
2353}
2354
2355static int idetape_release(struct inode *inode, struct file *filp)
2356{
2357 struct gendisk *disk = inode->i_bdev->bd_disk;
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002358 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 ide_tape_put(tape);
2361
2362 return 0;
2363}
2364
2365static int idetape_ioctl(struct inode *inode, struct file *file,
2366 unsigned int cmd, unsigned long arg)
2367{
2368 struct block_device *bdev = inode->i_bdev;
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002369 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 ide_drive_t *drive = tape->drive;
2371 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2372 if (err == -EINVAL)
2373 err = idetape_blkdev_ioctl(drive, cmd, arg);
2374 return err;
2375}
2376
2377static struct block_device_operations idetape_block_ops = {
2378 .owner = THIS_MODULE,
2379 .open = idetape_open,
2380 .release = idetape_release,
2381 .ioctl = idetape_ioctl,
2382};
2383
Russell King4031bbe2006-01-06 11:41:00 +00002384static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
2386 idetape_tape_t *tape;
2387 struct gendisk *g;
2388 int minor;
2389
2390 if (!strstr("ide-tape", drive->driver_req))
2391 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 if (drive->media != ide_tape)
2394 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002395
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002396 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2397 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002398 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2399 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 goto failed;
2401 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002402 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002404 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2405 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 goto failed;
2407 }
2408
2409 g = alloc_disk(1 << PARTN_BITS);
2410 if (!g)
2411 goto out_free_tape;
2412
2413 ide_init_disk(g, drive);
2414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 kref_init(&tape->kref);
2416
2417 tape->drive = drive;
2418 tape->driver = &idetape_driver;
2419 tape->disk = g;
2420
2421 g->private_data = &tape->driver;
2422
2423 drive->driver_data = tape;
2424
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002425 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 for (minor = 0; idetape_devs[minor]; minor++)
2427 ;
2428 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002429 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 idetape_setup(drive, tape, minor);
2432
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002433 device_create(idetape_sysfs_class, &drive->gendev,
2434 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2435 device_create(idetape_sysfs_class, &drive->gendev,
2436 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2437 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 g->fops = &idetape_block_ops;
2440 ide_register_region(g);
2441
2442 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444out_free_tape:
2445 kfree(tape);
2446failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002447 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
2449
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002450static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002452 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002453 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 unregister_chrdev(IDETAPE_MAJOR, "ht");
2455}
2456
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002457static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Will Dysond5dee802005-09-16 02:55:07 -07002459 int error = 1;
2460 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2461 if (IS_ERR(idetape_sysfs_class)) {
2462 idetape_sysfs_class = NULL;
2463 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2464 error = -EBUSY;
2465 goto out;
2466 }
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002469 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2470 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002471 error = -EBUSY;
2472 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 }
Will Dysond5dee802005-09-16 02:55:07 -07002474
2475 error = driver_register(&idetape_driver.gen_driver);
2476 if (error)
2477 goto out_free_driver;
2478
2479 return 0;
2480
2481out_free_driver:
2482 driver_unregister(&idetape_driver.gen_driver);
2483out_free_class:
2484 class_destroy(idetape_sysfs_class);
2485out:
2486 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
Kay Sievers263756e2005-12-12 18:03:44 +01002489MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490module_init(idetape_init);
2491module_exit(idetape_exit);
2492MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002493MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2494MODULE_LICENSE("GPL");