blob: 2c235401aad1606b8399518da2ec888cf83c472d [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
Borislav Petkov83dd5732008-07-23 19:56:00 +0200829 if (!drive->dsc_overlap && !(rq->cmd[13] & REQ_IDETAPE_PC2))
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200830 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (drive->post_reset == 1) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200833 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 drive->post_reset = 0;
835 }
836
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200837 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200838 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (postponed_rq == NULL) {
840 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100841 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
843 } else if (time_after(jiffies, tape->dsc_timeout)) {
844 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
845 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200846 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 idetape_media_access_finished(drive);
848 return ide_stopped;
849 } else {
850 return ide_do_reset(drive);
851 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100852 } else if (time_after(jiffies,
853 tape->dsc_polling_start +
854 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100855 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 idetape_postpone_request(drive);
857 return ide_stopped;
858 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200859 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200860 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200861 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 goto out;
863 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200864 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200865 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200866 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 goto out;
868 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200869 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200870 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200871 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
872 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 goto out;
874 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200875 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 idetape_media_access_finished(drive);
877 return ide_stopped;
878 }
879 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200880
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200881out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100882 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200886 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200887 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100888 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200890 * It returns a pointer to the newly allocated buffer, or NULL in case of
891 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200893static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
894 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200896 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200897 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200898 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 char *b_data = NULL;
900
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200901 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
902 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (bh == NULL)
904 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200905
906 order = fls(pages) - 1;
907 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100908 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200910 b_allocd = (1 << order) * PAGE_SIZE;
911 pages &= (order-1);
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200914 memset(bh->b_data, 0, b_allocd);
915 bh->b_reqnext = NULL;
916 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 atomic_set(&bh->b_count, full ? bh->b_size : 0);
918
Borislav Petkov41aa1702008-04-27 15:38:32 +0200919 while (pages) {
920 order = fls(pages) - 1;
921 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100922 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200924 b_allocd = (1 << order) * PAGE_SIZE;
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200927 memset(b_data, 0, b_allocd);
928
929 /* newly allocated page frames below buffer header or ...*/
930 if (bh->b_data == b_data + b_allocd) {
931 bh->b_size += b_allocd;
932 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200934 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 continue;
936 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200937 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200939 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200941 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 continue;
943 }
944 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100945 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
946 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200947 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 goto abort;
949 }
950 bh->b_reqnext = NULL;
951 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200952 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 atomic_set(&bh->b_count, full ? bh->b_size : 0);
954 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200955
956 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 bh->b_size -= tape->excess_bh_size;
960 if (full)
961 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200962 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200964 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return NULL;
966}
967
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100968static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200969 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 struct idetape_bh *bh = tape->bh;
972 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700973 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100977 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
978 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700979 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100981 count = min((unsigned int)
982 (bh->b_size - atomic_read(&bh->b_count)),
983 (unsigned int)n);
984 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
985 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700986 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 n -= count;
988 atomic_add(count, &bh->b_count);
989 buf += count;
990 if (atomic_read(&bh->b_count) == bh->b_size) {
991 bh = bh->b_reqnext;
992 if (bh)
993 atomic_set(&bh->b_count, 0);
994 }
995 }
996 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700997 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001000static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001001 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 struct idetape_bh *bh = tape->bh;
1004 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001005 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001009 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1010 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001011 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001014 if (copy_to_user(buf, tape->b_data, count))
1015 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 n -= count;
1017 tape->b_data += count;
1018 tape->b_count -= count;
1019 buf += count;
1020 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001021 bh = bh->b_reqnext;
1022 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (bh) {
1024 tape->b_data = bh->b_data;
1025 tape->b_count = atomic_read(&bh->b_count);
1026 }
1027 }
1028 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001029 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001032static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001034 struct idetape_bh *bh = tape->merge_bh;
1035 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001036
Borislav Petkov54abf372008-02-06 02:57:52 +01001037 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 atomic_set(&bh->b_count, 0);
1039 else {
1040 tape->b_data = bh->b_data;
1041 tape->b_count = atomic_read(&bh->b_count);
1042 }
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001046 * Write a filemark if write_filemark=1. Flush the device buffers without
1047 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001049static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001050 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001052 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001053 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001055 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1059{
1060 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001061 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 int load_attempted = 0;
1063
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001064 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001065 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 timeout += jiffies;
1067 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001068 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return 0;
1070 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001071 || (tape->asc == 0x3A)) {
1072 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (load_attempted)
1074 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001075 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 load_attempted = 1;
1077 /* not about to be ready */
1078 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1079 (tape->ascq == 1 || tape->ascq == 8)))
1080 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001081 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083 return -EIO;
1084}
1085
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001086static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001088 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001089 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 int rc;
1091
1092 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001093 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001094 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return rc;
1096 idetape_wait_ready(drive, 60 * 5 * HZ);
1097 return 0;
1098}
1099
Borislav Petkovd236d742008-04-18 00:46:27 +02001100static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001102 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001103 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001104 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001107static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
1109 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001110 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 int position;
1112
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001113 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001116 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001118 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return position;
1120}
1121
Borislav Petkovd236d742008-04-18 00:46:27 +02001122static void idetape_create_locate_cmd(ide_drive_t *drive,
1123 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001124 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001126 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001127 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001129 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001131 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001134static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Borislav Petkov54abf372008-02-06 02:57:52 +01001138 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001139 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001141 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001142 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001143 if (tape->merge_bh != NULL) {
1144 ide_tape_kfree_buffer(tape);
1145 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147
Borislav Petkov54abf372008-02-06 02:57:52 +01001148 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
1151/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001152 * Position the tape to the requested block using the LOCATE packet command.
1153 * A READ POSITION command is then issued to check where we are positioned. Like
1154 * all higher level operations, we queue the commands at the tail of the request
1155 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001157static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1158 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001161 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001163 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Borislav Petkov54abf372008-02-06 02:57:52 +01001165 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001166 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 idetape_wait_ready(drive, 60 * 5 * HZ);
1168 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001169 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (retval)
1171 return (retval);
1172
1173 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001174 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001177static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001178 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
1180 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 int seek, position;
1182
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001183 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (restore_position) {
1185 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001186 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001188 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001189 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return;
1191 }
1192 }
1193}
1194
1195/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001196 * Generate a read/write request for the block device interface and wait for it
1197 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001199static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1200 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001203 struct request *rq;
1204 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001206 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1207
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001208 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1209 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001210 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001211 rq->rq_disk = tape->disk;
1212 rq->special = (void *)bh;
1213 rq->sector = tape->first_frame;
1214 rq->nr_sectors = blocks;
1215 rq->current_nr_sectors = blocks;
1216 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1217
1218 errors = rq->errors;
1219 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1220 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1223 return 0;
1224
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001225 if (tape->merge_bh)
1226 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001227 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001229 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Borislav Petkovd236d742008-04-18 00:46:27 +02001232static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001234 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001235 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001236 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001237 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
Borislav Petkovd236d742008-04-18 00:46:27 +02001240static void idetape_create_rewind_cmd(ide_drive_t *drive,
1241 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001243 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001244 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001245 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
Borislav Petkovd236d742008-04-18 00:46:27 +02001248static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001250 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001251 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001253 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Borislav Petkovd236d742008-04-18 00:46:27 +02001256static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001258 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001259 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001260 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001262 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
Borislav Petkov97c566c2008-04-27 15:38:25 +02001265/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001266static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
1268 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001270 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001272 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001273 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Borislav Petkovd9df9372008-04-27 15:38:34 +02001276static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 idetape_tape_t *tape = drive->driver_data;
1279 int blocks, min;
1280 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001281
Borislav Petkov54abf372008-02-06 02:57:52 +01001282 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001283 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001284 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return;
1286 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001287 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001289 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001291 if (tape->merge_bh_size) {
1292 blocks = tape->merge_bh_size / tape->blk_size;
1293 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 unsigned int i;
1295
1296 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001297 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001298 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 bh = tape->bh->b_reqnext;
1300 while (bh) {
1301 atomic_set(&bh->b_count, 0);
1302 bh = bh->b_reqnext;
1303 }
1304 bh = tape->bh;
1305 while (i) {
1306 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001307 printk(KERN_INFO "ide-tape: bug,"
1308 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 break;
1310 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001311 min = min(i, (unsigned int)(bh->b_size -
1312 atomic_read(&bh->b_count)));
1313 memset(bh->b_data + atomic_read(&bh->b_count),
1314 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 atomic_add(min, &bh->b_count);
1316 i -= min;
1317 bh = bh->b_reqnext;
1318 }
1319 }
1320 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001321 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001323 if (tape->merge_bh != NULL) {
1324 ide_tape_kfree_buffer(tape);
1325 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001327 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Borislav Petkov83042b22008-04-27 15:38:27 +02001330static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
1332 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001336 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1337 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001338 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 idetape_flush_tape_buffers(drive);
1340 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001341 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001342 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001343 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001344 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001346 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1347 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001349 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001352 * Issue a read 0 command to ensure that DSC handshake is
1353 * switched from completion mode to buffer available mode.
1354 * No point in issuing this if DSC overlap isn't supported, some
1355 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 */
1357 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001358 bytes_read = idetape_queue_rw_tail(drive,
1359 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001360 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001362 ide_tape_kfree_buffer(tape);
1363 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001364 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return bytes_read;
1366 }
1367 }
1368 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return 0;
1371}
1372
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001373/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001374static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001378 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001380 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001381 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return 0;
1383
Borislav Petkov83042b22008-04-27 15:38:27 +02001384 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001386 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001387 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001390static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 idetape_tape_t *tape = drive->driver_data;
1393 struct idetape_bh *bh;
1394 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 while (bcount) {
1397 unsigned int count;
1398
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001399 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001400 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001402 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001404 atomic_set(&bh->b_count,
1405 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1407 count -= atomic_read(&bh->b_count);
1408 bh = bh->b_reqnext;
1409 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001410 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001411 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413}
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001416 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1417 * currently support only one partition.
1418 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001419static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001421 struct ide_tape_obj *tape = drive->driver_data;
1422 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001424 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001425
1426 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001429 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (retval)
1431 return retval;
1432
1433 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001434 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (retval)
1436 return retval;
1437 return 0;
1438}
1439
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001440/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001441static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1442 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
1444 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 void __user *argp = (void __user *)arg;
1446
Borislav Petkovd59823f2008-02-02 19:56:51 +01001447 struct idetape_config {
1448 int dsc_rw_frequency;
1449 int dsc_media_access_frequency;
1450 int nr_stages;
1451 } config;
1452
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001453 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001456 case 0x0340:
1457 if (copy_from_user(&config, argp, sizeof(config)))
1458 return -EFAULT;
1459 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001460 break;
1461 case 0x0350:
1462 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001463 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001464 if (copy_to_user(argp, &config, sizeof(config)))
1465 return -EFAULT;
1466 break;
1467 default:
1468 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470 return 0;
1471}
1472
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001473static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1474 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001477 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001478 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001479 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001480 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 if (mt_count == 0)
1483 return 0;
1484 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001485 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001487 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489
Borislav Petkov54abf372008-02-06 02:57:52 +01001490 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001491 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001492 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001494 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001498 case MTFSF:
1499 case MTBSF:
1500 idetape_create_space_cmd(&pc, mt_count - count,
1501 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001502 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001503 case MTFSFM:
1504 case MTBSFM:
1505 if (!sprev)
1506 return -EIO;
1507 retval = idetape_space_over_filemarks(drive, MTFSF,
1508 mt_count - count);
1509 if (retval)
1510 return retval;
1511 count = (MTBSFM == mt_op ? 1 : -1);
1512 return idetape_space_over_filemarks(drive, MTFSF, count);
1513 default:
1514 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1515 mt_op);
1516 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 }
1518}
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001521 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001523 * The tape is optimized to maximize throughput when it is transferring an
1524 * integral number of the "continuous transfer limit", which is a parameter of
1525 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001527 * As of version 1.3 of the driver, the character device provides an abstract
1528 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1529 * same backup/restore procedure is supported. The driver will internally
1530 * convert the requests to the recommended transfer unit, so that an unmatch
1531 * between the user's block size to the recommended size will only result in a
1532 * (slightly) increased driver overhead, but will no longer hit performance.
1533 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001535static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1536 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001538 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001540 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001541 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001542 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001544 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Borislav Petkov54abf372008-02-06 02:57:52 +01001546 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001547 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001548 if (count > tape->blk_size &&
1549 (count % tape->blk_size) == 0)
1550 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001552 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001553 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return rc;
1555 if (count == 0)
1556 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001557 if (tape->merge_bh_size) {
1558 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001559 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001560 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001561 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001563 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 count -= actually_read;
1565 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001566 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001567 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (bytes_read <= 0)
1569 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001570 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001571 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 buf += bytes_read;
1573 count -= bytes_read;
1574 actually_read += bytes_read;
1575 }
1576 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001577 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (bytes_read <= 0)
1579 goto finish;
1580 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001581 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001582 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001584 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001587 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001588 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 idetape_space_over_filemarks(drive, MTFSF, 1);
1591 return 0;
1592 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001593
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001594 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001597static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 size_t count, loff_t *ppos)
1599{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001600 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001602 ssize_t actually_written = 0;
1603 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001604 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 /* The drive is write protected. */
1607 if (tape->write_prot)
1608 return -EACCES;
1609
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001610 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001613 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1614 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001615 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001616 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001617 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001619 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001621 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1622 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001624 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001625 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001628 * Issue a write 0 command to ensure that DSC handshake is
1629 * switched from completion mode to buffer available mode. No
1630 * point in issuing this if DSC overlap isn't supported, some
1631 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 */
1633 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001634 ssize_t retval = idetape_queue_rw_tail(drive,
1635 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001636 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001638 ide_tape_kfree_buffer(tape);
1639 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001640 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return retval;
1642 }
1643 }
1644 }
1645 if (count == 0)
1646 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001647 if (tape->merge_bh_size) {
1648 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001649 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001650 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001652 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001653 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001654 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001655 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001656 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001658 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 count -= actually_written;
1660
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001661 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001662 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001663 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001664 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (retval <= 0)
1666 return (retval);
1667 }
1668 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001669 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001670 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001671 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001672 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001673 buf += tape->buffer_size;
1674 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001675 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001676 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (retval <= 0)
1678 return (retval);
1679 }
1680 if (count) {
1681 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001682 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001683 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001684 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001686 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001689static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001691 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001692 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 /* Write a filemark */
1695 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001696 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1698 return -EIO;
1699 }
1700 return 0;
1701}
1702
1703/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001704 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1705 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001707 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1708 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001709 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001711 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001713 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1714 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001716static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001719 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001720 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001721 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001723 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1724 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001727 case MTFSF:
1728 case MTFSFM:
1729 case MTBSF:
1730 case MTBSFM:
1731 if (!mt_count)
1732 return 0;
1733 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1734 default:
1735 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001739 case MTWEOF:
1740 if (tape->write_prot)
1741 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001742 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001743 for (i = 0; i < mt_count; i++) {
1744 retval = idetape_write_filemark(drive);
1745 if (retval)
1746 return retval;
1747 }
1748 return 0;
1749 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001750 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001751 if (idetape_rewind_tape(drive))
1752 return -EIO;
1753 return 0;
1754 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001755 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001756 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001757 case MTUNLOAD:
1758 case MTOFFL:
1759 /*
1760 * If door is locked, attempt to unlock before
1761 * attempting to eject.
1762 */
1763 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001764 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001765 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001766 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001767 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001768 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001769 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001770 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001771 return retval;
1772 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001773 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001774 return idetape_flush_tape_buffers(drive);
1775 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001776 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001777 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001778 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001779 case MTEOM:
1780 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001781 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001782 case MTERASE:
1783 (void)idetape_rewind_tape(drive);
1784 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001785 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001786 case MTSETBLK:
1787 if (mt_count) {
1788 if (mt_count < tape->blk_size ||
1789 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001791 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001792 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001793 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001794 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001795 return 0;
1796 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001797 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001798 return idetape_position_tape(drive,
1799 mt_count * tape->user_bs_factor, tape->partition, 0);
1800 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001801 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001802 return idetape_position_tape(drive, 0, mt_count, 0);
1803 case MTFSR:
1804 case MTBSR:
1805 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001806 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001807 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001809 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1810 return 0;
1811 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001812 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001813 if (retval)
1814 return retval;
1815 tape->door_locked = DOOR_UNLOCKED;
1816 return 0;
1817 default:
1818 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1819 mt_op);
1820 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
1822}
1823
1824/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001825 * Our character device ioctls. General mtio.h magnetic io commands are
1826 * supported here, and not in the corresponding block interface. Our own
1827 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001829static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1830 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001832 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 ide_drive_t *drive = tape->drive;
1834 struct mtop mtop;
1835 struct mtget mtget;
1836 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001837 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 void __user *argp = (void __user *)arg;
1839
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001840 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Borislav Petkov54abf372008-02-06 02:57:52 +01001842 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001843 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 idetape_flush_tape_buffers(drive);
1845 }
1846 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001847 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001848 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001849 position = idetape_read_position(drive);
1850 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return -EIO;
1852 }
1853 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001854 case MTIOCTOP:
1855 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1856 return -EFAULT;
1857 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1858 case MTIOCGET:
1859 memset(&mtget, 0, sizeof(struct mtget));
1860 mtget.mt_type = MT_ISSCSI2;
1861 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1862 mtget.mt_dsreg =
1863 ((tape->blk_size * tape->user_bs_factor)
1864 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001865
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001866 if (tape->drv_write_prot)
1867 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1868
1869 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1870 return -EFAULT;
1871 return 0;
1872 case MTIOCPOS:
1873 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1874 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1875 return -EFAULT;
1876 return 0;
1877 default:
1878 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001879 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001880 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882}
1883
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001884/*
1885 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1886 * block size with the reported value.
1887 */
1888static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1889{
1890 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001891 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001892
1893 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001894 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001895 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001896 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001897 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1898 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001899 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001900 }
1901 return;
1902 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001903 tape->blk_size = (pc.buf[4 + 5] << 16) +
1904 (pc.buf[4 + 6] << 8) +
1905 pc.buf[4 + 7];
1906 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001907}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001909static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
1911 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1912 ide_drive_t *drive;
1913 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 int retval;
1915
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001916 if (i >= MAX_HWIFS * MAX_DRIVES)
1917 return -ENXIO;
1918
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001919 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001920 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001921 if (!tape) {
1922 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001923 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001924 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001925
1926 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 /*
1929 * We really want to do nonseekable_open(inode, filp); here, but some
1930 * versions of tar incorrectly call lseek on tapes and bail out if that
1931 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1932 */
1933 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 drive = tape->drive;
1936
1937 filp->private_data = tape;
1938
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001939 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 retval = -EBUSY;
1941 goto out_put_tape;
1942 }
1943
1944 retval = idetape_wait_ready(drive, 60 * HZ);
1945 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001946 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1948 goto out_put_tape;
1949 }
1950
1951 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001952 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 (void)idetape_rewind_tape(drive);
1954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001956 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 /* Set write protect flag if device is opened as read-only. */
1959 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1960 tape->write_prot = 1;
1961 else
1962 tape->write_prot = tape->drv_write_prot;
1963
1964 /* Make sure drive isn't write protected if user wants to write. */
1965 if (tape->write_prot) {
1966 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1967 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001968 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 retval = -EROFS;
1970 goto out_put_tape;
1971 }
1972 }
1973
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001974 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001975 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001976 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001977 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1978 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001981 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return 0;
1983
1984out_put_tape:
1985 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001986 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return retval;
1988}
1989
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001990static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
1992 idetape_tape_t *tape = drive->driver_data;
1993
Borislav Petkovd9df9372008-04-27 15:38:34 +02001994 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001995 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1996 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001997 idetape_pad_zeros(drive, tape->blk_size *
1998 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001999 ide_tape_kfree_buffer(tape);
2000 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002 idetape_write_filemark(drive);
2003 idetape_flush_tape_buffers(drive);
2004 idetape_flush_tape_buffers(drive);
2005}
2006
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002007static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002009 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 unsigned int minor = iminor(inode);
2012
2013 lock_kernel();
2014 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002015
2016 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Borislav Petkov54abf372008-02-06 02:57:52 +01002018 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002020 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002022 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002024
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002025 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002027 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002029 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002030 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
2032 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002033 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 ide_tape_put(tape);
2035 unlock_kernel();
2036 return 0;
2037}
2038
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002039static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002042 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002043 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002046 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002047 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2048 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 return;
2050 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002051 memcpy(vendor_id, &pc.buf[8], 8);
2052 memcpy(product_id, &pc.buf[16], 16);
2053 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002054
Borislav Petkov801bd322008-09-27 19:32:17 +02002055 ide_fixstring(vendor_id, 8, 0);
2056 ide_fixstring(product_id, 16, 0);
2057 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002058
Borislav Petkov801bd322008-09-27 19:32:17 +02002059 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002060 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
2063/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002064 * Ask the tape about its various parameters. In particular, we will adjust our
2065 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002067static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
2069 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002070 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002071 u8 *caps;
2072 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002075 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002076 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2077 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002078 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002079 put_unaligned(52, (u16 *)&tape->caps[12]);
2080 put_unaligned(540, (u16 *)&tape->caps[14]);
2081 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return;
2083 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002084 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Borislav Petkovb6422012008-02-02 19:56:49 +01002086 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002087 speed = be16_to_cpup((__be16 *)&caps[14]);
2088 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002090 *(u16 *)&caps[8] = max_speed;
2091 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2092 *(u16 *)&caps[14] = speed;
2093 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002094
2095 if (!speed) {
2096 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2097 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002098 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002100 if (!max_speed) {
2101 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2102 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002103 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
2105
Borislav Petkovb6422012008-02-02 19:56:49 +01002106 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002107
2108 /* device lacks locking support according to capabilities page */
2109 if ((caps[6] & 1) == 0)
2110 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
2111
Borislav Petkovb6422012008-02-02 19:56:49 +01002112 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002113 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002114 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002115 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002118#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002119#define ide_tape_devset_get(name, field) \
2120static int get_##name(ide_drive_t *drive) \
2121{ \
2122 idetape_tape_t *tape = drive->driver_data; \
2123 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002125
2126#define ide_tape_devset_set(name, field) \
2127static int set_##name(ide_drive_t *drive, int arg) \
2128{ \
2129 idetape_tape_t *tape = drive->driver_data; \
2130 tape->field = arg; \
2131 return 0; \
2132}
2133
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002134#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002135ide_tape_devset_get(_name, _field) \
2136ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002137IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002138
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002139#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002140ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002141IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002142
2143static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2144static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2145static int divf_buffer(ide_drive_t *drive) { return 2; }
2146static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2147
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002148ide_devset_rw_field(dsc_overlap, dsc_overlap);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002149
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002150ide_tape_devset_rw_field(debug_mask, debug_mask);
2151ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002152
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002153ide_tape_devset_r_field(avg_speed, avg_speed);
2154ide_tape_devset_r_field(speed, caps[14]);
2155ide_tape_devset_r_field(buffer, caps[16]);
2156ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002157
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002158static const struct ide_proc_devset idetape_settings[] = {
2159 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2160 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2161 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2162 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2163 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2164 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2165 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2166 mulf_tdsc, divf_tdsc),
2167 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002168};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002169#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002172 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002174 * 1. Initialize our various state variables.
2175 * 2. Ask the tape for its capabilities.
2176 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2177 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002179 * Note that at this point ide.c already assigned us an irq, so that we can
2180 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002182static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
Borislav Petkov83042b22008-04-27 15:38:27 +02002184 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002186 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002187 u8 gcw[2];
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002196 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2197 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2198 tape->name);
2199 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002202 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 drive->dsc_overlap = 0;
2204 tape->minor = minor;
2205 tape->name[0] = 'h';
2206 tape->name[1] = 't';
2207 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002208 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002209
2210 *((u16 *)&gcw) = drive->id[ATA_ID_CONFIG];
Borislav Petkov71071b82008-02-06 02:57:53 +01002211
2212 /* Command packet DRQ type */
2213 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002214 set_bit(IDE_AFLAG_DRQ_INTERRUPT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 idetape_get_inquiry_results(drive);
2217 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002218 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002220 tape->buffer_size = *ctl * tape->blk_size;
2221 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002223 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002224 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002226 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002227 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002228 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002229 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002230 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 }
2232
Borislav Petkov83042b22008-04-27 15:38:27 +02002233 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002234 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Borislav Petkovf73850a2008-04-27 15:38:33 +02002236 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002239 * Ensure that the number we got makes sense; limit it within
2240 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002242 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2243 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002245 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002246 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002247 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2248 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002249 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 drive->using_dma ? ", DMA":"");
2251
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002252 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
Russell King4031bbe2006-01-06 11:41:00 +00002255static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002259 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 ide_unregister_region(tape->disk);
2262
2263 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
2266static void ide_tape_release(struct kref *kref)
2267{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002268 struct ide_tape_obj *tape = to_ide_drv(kref, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 ide_drive_t *drive = tape->drive;
2270 struct gendisk *g = tape->disk;
2271
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002272 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 drive->dsc_overlap = 0;
2275 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002276 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002277 device_destroy(idetape_sysfs_class,
2278 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 idetape_devs[tape->minor] = NULL;
2280 g->private_data = NULL;
2281 put_disk(g);
2282 kfree(tape);
2283}
2284
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002285#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286static int proc_idetape_read_name
2287 (char *page, char **start, off_t off, int count, int *eof, void *data)
2288{
2289 ide_drive_t *drive = (ide_drive_t *) data;
2290 idetape_tape_t *tape = drive->driver_data;
2291 char *out = page;
2292 int len;
2293
2294 len = sprintf(out, "%s\n", tape->name);
2295 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2296}
2297
2298static ide_proc_entry_t idetape_proc[] = {
2299 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2300 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2301 { NULL, 0, NULL, NULL }
2302};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303#endif
2304
Russell King4031bbe2006-01-06 11:41:00 +00002305static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002308 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002309 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002310 .name = "ide-tape",
2311 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002312 },
Russell King4031bbe2006-01-06 11:41:00 +00002313 .probe = ide_tape_probe,
2314 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 .version = IDETAPE_VERSION,
2316 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 .do_request = idetape_do_request,
2318 .end_request = idetape_end_request,
2319 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002320#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002322 .settings = idetape_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324};
2325
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002326/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002327static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 .owner = THIS_MODULE,
2329 .read = idetape_chrdev_read,
2330 .write = idetape_chrdev_write,
2331 .ioctl = idetape_chrdev_ioctl,
2332 .open = idetape_chrdev_open,
2333 .release = idetape_chrdev_release,
2334};
2335
2336static int idetape_open(struct inode *inode, struct file *filp)
2337{
2338 struct gendisk *disk = inode->i_bdev->bd_disk;
2339 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002341 tape = ide_tape_get(disk);
2342 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return -ENXIO;
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 return 0;
2346}
2347
2348static int idetape_release(struct inode *inode, struct file *filp)
2349{
2350 struct gendisk *disk = inode->i_bdev->bd_disk;
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002351 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 ide_tape_put(tape);
2354
2355 return 0;
2356}
2357
2358static int idetape_ioctl(struct inode *inode, struct file *file,
2359 unsigned int cmd, unsigned long arg)
2360{
2361 struct block_device *bdev = inode->i_bdev;
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002362 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 ide_drive_t *drive = tape->drive;
2364 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2365 if (err == -EINVAL)
2366 err = idetape_blkdev_ioctl(drive, cmd, arg);
2367 return err;
2368}
2369
2370static struct block_device_operations idetape_block_ops = {
2371 .owner = THIS_MODULE,
2372 .open = idetape_open,
2373 .release = idetape_release,
2374 .ioctl = idetape_ioctl,
2375};
2376
Russell King4031bbe2006-01-06 11:41:00 +00002377static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378{
2379 idetape_tape_t *tape;
2380 struct gendisk *g;
2381 int minor;
2382
2383 if (!strstr("ide-tape", drive->driver_req))
2384 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (drive->media != ide_tape)
2387 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002388
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +02002389 if (drive->id_read == 1 && !ide_check_atapi_device(drive, DRV_NAME)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002390 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2391 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 goto failed;
2393 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002394 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002396 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2397 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 goto failed;
2399 }
2400
2401 g = alloc_disk(1 << PARTN_BITS);
2402 if (!g)
2403 goto out_free_tape;
2404
2405 ide_init_disk(g, drive);
2406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 kref_init(&tape->kref);
2408
2409 tape->drive = drive;
2410 tape->driver = &idetape_driver;
2411 tape->disk = g;
2412
2413 g->private_data = &tape->driver;
2414
2415 drive->driver_data = tape;
2416
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002417 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 for (minor = 0; idetape_devs[minor]; minor++)
2419 ;
2420 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002421 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 idetape_setup(drive, tape, minor);
2424
Greg Kroah-Hartman6ecaaf92008-05-21 12:52:33 -07002425 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2426 MKDEV(IDETAPE_MAJOR, minor), NULL,
2427 "%s", tape->name);
2428 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2429 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2430 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 g->fops = &idetape_block_ops;
2433 ide_register_region(g);
2434
2435 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437out_free_tape:
2438 kfree(tape);
2439failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002440 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002443static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002445 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002446 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 unregister_chrdev(IDETAPE_MAJOR, "ht");
2448}
2449
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002450static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Will Dysond5dee802005-09-16 02:55:07 -07002452 int error = 1;
2453 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2454 if (IS_ERR(idetape_sysfs_class)) {
2455 idetape_sysfs_class = NULL;
2456 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2457 error = -EBUSY;
2458 goto out;
2459 }
2460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002462 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2463 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002464 error = -EBUSY;
2465 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
Will Dysond5dee802005-09-16 02:55:07 -07002467
2468 error = driver_register(&idetape_driver.gen_driver);
2469 if (error)
2470 goto out_free_driver;
2471
2472 return 0;
2473
2474out_free_driver:
2475 driver_unregister(&idetape_driver.gen_driver);
2476out_free_class:
2477 class_destroy(idetape_sysfs_class);
2478out:
2479 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
Kay Sievers263756e2005-12-12 18:03:44 +01002482MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483module_init(idetape_init);
2484module_exit(idetape_exit);
2485MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002486MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2487MODULE_LICENSE("GPL");