blob: e39f2f46d982a536219f32a3c6f1e905ebf2f799 [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{
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100482 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 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) {
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100534 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200535 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
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100579 * from another device on the same port 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
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100587 tape->postponed_rq = drive->hwif->rq;
588
Borislav Petkov54bb2072008-02-06 02:57:52 +0100589 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200592static void ide_tape_handle_dsc(ide_drive_t *drive)
593{
594 idetape_tape_t *tape = drive->driver_data;
595
596 /* Media access command */
597 tape->dsc_polling_start = jiffies;
598 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
599 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
600 /* Allow ide.c to handle other requests */
601 idetape_postpone_request(drive);
602}
603
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200604static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200605 unsigned int bcount, int write)
606{
607 if (write)
608 idetape_output_buffers(drive, pc, bcount);
609 else
610 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200611
612 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200613}
Borislav Petkova1efc852008-02-06 02:57:52 +0100614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100616 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200618 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100619 * until we finish handling it. Each packet command is associated with a
620 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100622 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100624 * 1. idetape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200625 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200627 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100628 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100630 * 3. ATAPI Tape media access commands have immediate status with a delayed
631 * process. In case of a successful initiation of a media access packet command,
632 * the DSC bit will be set when the actual execution of the command is finished.
633 * Since the tape drive will not issue an interrupt, we have to poll for this
634 * event. In this case, we define the request as "low priority request" by
635 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
636 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100638 * ide.c will then give higher priority to requests which originate from the
639 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100641 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100643 * 5. In case an error was found, we queue a request sense packet command in
644 * front of the request queue and retry the operation up to
645 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100647 * 6. In case no error was found, or we decided to give up and not to retry
648 * again, the callback function will be called and then we will handle the next
649 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Borislav Petkovd236d742008-04-18 00:46:27 +0200652static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
653 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200657 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100658 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
660 "Two request sense in serial were issued\n");
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Borislav Petkov90699ce2008-02-02 19:56:50 +0100663 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 tape->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200667 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200670 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100672 * We will "abort" retrying a packet command in case legitimate
673 * error code was received (crossing a filemark, or end of the
674 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200676 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100677 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 tape->sense_key == 2 && tape->asc == 4 &&
679 (tape->ascq == 1 || tape->ascq == 8))) {
680 printk(KERN_ERR "ide-tape: %s: I/O error, "
681 "pc = %2x, key = %2x, "
682 "asc = %2x, ascq = %2x\n",
683 tape->name, pc->c[0],
684 tape->sense_key, tape->asc,
685 tape->ascq);
686 }
687 /* Giving up */
688 pc->error = IDETAPE_ERROR_GENERAL;
689 }
690 tape->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200691 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200692 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100694 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100698 return ide_issue_pc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100701/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200702static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200704 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100705 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100707 /* DBD = 1 - Don't return block descriptors */
708 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 pc->c[2] = page_code;
710 /*
711 * Changed pc->c[3] to 0 (255 will at best return unused info).
712 *
713 * For SCSI this byte is defined as subpage instead of high byte
714 * of length and some IDE drives seem to interpret it this way
715 * and return an error when 255 is used.
716 */
717 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100718 /* We will just discard data in that case */
719 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200721 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200723 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200725 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100728static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200730 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200732 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100733 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200735 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100736
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200737 if (stat & ATA_DSC) {
738 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100740 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 printk(KERN_ERR "ide-tape: %s: I/O error, ",
742 tape->name);
743 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200744 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200745 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
747 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 } else {
749 pc->error = IDETAPE_ERROR_GENERAL;
750 tape->failed_pc = NULL;
751 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200752 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return ide_stopped;
754}
755
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200756static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200757 struct ide_atapi_pc *pc, struct request *rq,
758 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Borislav Petkov0014c752008-07-23 19:56:00 +0200760 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
761 unsigned int length = rq->current_nr_sectors;
762
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200763 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100764 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200767 pc->buf = NULL;
768 pc->buf_size = length * tape->blk_size;
769 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200770 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200771 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200773 if (opcode == READ_6) {
774 pc->c[0] = READ_6;
775 atomic_set(&bh->b_count, 0);
776 } else if (opcode == WRITE_6) {
777 pc->c[0] = WRITE_6;
778 pc->flags |= PC_FLAG_WRITING;
779 pc->b_data = bh->b_data;
780 pc->b_count = atomic_read(&bh->b_count);
781 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200782
783 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786static ide_startstop_t idetape_do_request(ide_drive_t *drive,
787 struct request *rq, sector_t block)
788{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200789 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200791 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100793 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Mark de Wever730616b2008-10-10 22:39:17 +0200795 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
796 " current_nr_sectors: %u\n",
797 (unsigned long long)rq->sector, rq->nr_sectors,
798 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Jens Axboe4aff5e22006-08-10 08:44:47 +0200800 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100801 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200803 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 ide_end_request(drive, 0, 0);
805 return ide_stopped;
806 }
807
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100808 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200809 if (tape->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200810 pc = tape->failed_pc;
811 goto out;
812 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (postponed_rq != NULL)
815 if (rq != postponed_rq) {
816 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
817 "Two DSC requests were queued\n");
818 idetape_end_request(drive, 0, 0);
819 return ide_stopped;
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 tape->postponed_rq = NULL;
823
824 /*
825 * If the tape is still busy, postpone our request and service
826 * the other device meanwhile.
827 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200828 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200830 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
831 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200832 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200834 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200835 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200836 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200839 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200840 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (postponed_rq == NULL) {
842 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100843 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
845 } else if (time_after(jiffies, tape->dsc_timeout)) {
846 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
847 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200848 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 idetape_media_access_finished(drive);
850 return ide_stopped;
851 } else {
852 return ide_do_reset(drive);
853 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100854 } else if (time_after(jiffies,
855 tape->dsc_polling_start +
856 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100857 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 idetape_postpone_request(drive);
859 return ide_stopped;
860 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200861 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200862 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200863 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 goto out;
865 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200866 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200867 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200868 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto out;
870 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200871 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200872 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200873 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
874 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto out;
876 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200877 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 idetape_media_access_finished(drive);
879 return ide_stopped;
880 }
881 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200882
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200883out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100884 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200888 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200889 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100890 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200892 * It returns a pointer to the newly allocated buffer, or NULL in case of
893 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200895static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
896 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200898 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200899 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200900 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 char *b_data = NULL;
902
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200903 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
904 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (bh == NULL)
906 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200907
908 order = fls(pages) - 1;
909 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100910 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200912 b_allocd = (1 << order) * PAGE_SIZE;
913 pages &= (order-1);
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200916 memset(bh->b_data, 0, b_allocd);
917 bh->b_reqnext = NULL;
918 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 atomic_set(&bh->b_count, full ? bh->b_size : 0);
920
Borislav Petkov41aa1702008-04-27 15:38:32 +0200921 while (pages) {
922 order = fls(pages) - 1;
923 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100924 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200926 b_allocd = (1 << order) * PAGE_SIZE;
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200929 memset(b_data, 0, b_allocd);
930
931 /* newly allocated page frames below buffer header or ...*/
932 if (bh->b_data == b_data + b_allocd) {
933 bh->b_size += b_allocd;
934 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200936 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 continue;
938 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200939 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200941 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200943 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 continue;
945 }
946 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100947 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
948 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200949 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 goto abort;
951 }
952 bh->b_reqnext = NULL;
953 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200954 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 atomic_set(&bh->b_count, full ? bh->b_size : 0);
956 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200957
958 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 bh->b_size -= tape->excess_bh_size;
962 if (full)
963 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200964 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200966 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return NULL;
968}
969
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100970static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200971 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 struct idetape_bh *bh = tape->bh;
974 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700975 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100979 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
980 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700981 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100983 count = min((unsigned int)
984 (bh->b_size - atomic_read(&bh->b_count)),
985 (unsigned int)n);
986 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
987 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700988 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 n -= count;
990 atomic_add(count, &bh->b_count);
991 buf += count;
992 if (atomic_read(&bh->b_count) == bh->b_size) {
993 bh = bh->b_reqnext;
994 if (bh)
995 atomic_set(&bh->b_count, 0);
996 }
997 }
998 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700999 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001002static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001003 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 struct idetape_bh *bh = tape->bh;
1006 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001007 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001011 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1012 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001013 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001016 if (copy_to_user(buf, tape->b_data, count))
1017 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 n -= count;
1019 tape->b_data += count;
1020 tape->b_count -= count;
1021 buf += count;
1022 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001023 bh = bh->b_reqnext;
1024 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (bh) {
1026 tape->b_data = bh->b_data;
1027 tape->b_count = atomic_read(&bh->b_count);
1028 }
1029 }
1030 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001031 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001034static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001036 struct idetape_bh *bh = tape->merge_bh;
1037 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001038
Borislav Petkov54abf372008-02-06 02:57:52 +01001039 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 atomic_set(&bh->b_count, 0);
1041 else {
1042 tape->b_data = bh->b_data;
1043 tape->b_count = atomic_read(&bh->b_count);
1044 }
1045}
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001048 * Write a filemark if write_filemark=1. Flush the device buffers without
1049 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001051static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001052 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001054 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001055 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001057 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1061{
1062 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001063 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 int load_attempted = 0;
1065
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001066 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001067 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 timeout += jiffies;
1069 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001070 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return 0;
1072 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001073 || (tape->asc == 0x3A)) {
1074 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (load_attempted)
1076 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001077 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 load_attempted = 1;
1079 /* not about to be ready */
1080 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1081 (tape->ascq == 1 || tape->ascq == 8)))
1082 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001083 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085 return -EIO;
1086}
1087
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001088static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001090 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001091 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 int rc;
1093
1094 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001095 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001096 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return rc;
1098 idetape_wait_ready(drive, 60 * 5 * HZ);
1099 return 0;
1100}
1101
Borislav Petkovd236d742008-04-18 00:46:27 +02001102static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001104 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001105 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001106 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001109static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001112 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 int position;
1114
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001115 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001118 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001120 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return position;
1122}
1123
Borislav Petkovd236d742008-04-18 00:46:27 +02001124static void idetape_create_locate_cmd(ide_drive_t *drive,
1125 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001126 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001128 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001129 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001131 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001133 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001136static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Borislav Petkov54abf372008-02-06 02:57:52 +01001140 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001143 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001144 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001145 if (tape->merge_bh != NULL) {
1146 ide_tape_kfree_buffer(tape);
1147 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
Borislav Petkov54abf372008-02-06 02:57:52 +01001150 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
1153/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001154 * Position the tape to the requested block using the LOCATE packet command.
1155 * A READ POSITION command is then issued to check where we are positioned. Like
1156 * all higher level operations, we queue the commands at the tail of the request
1157 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001159static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1160 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001163 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001165 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Borislav Petkov54abf372008-02-06 02:57:52 +01001167 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001168 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 idetape_wait_ready(drive, 60 * 5 * HZ);
1170 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001171 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (retval)
1173 return (retval);
1174
1175 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001176 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001179static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001180 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
1182 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 int seek, position;
1184
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001185 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (restore_position) {
1187 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001188 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001190 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001191 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return;
1193 }
1194 }
1195}
1196
1197/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001198 * Generate a read/write request for the block device interface and wait for it
1199 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001201static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1202 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
1204 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001205 struct request *rq;
1206 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001208 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1209
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001210 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1211 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001212 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001213 rq->rq_disk = tape->disk;
1214 rq->special = (void *)bh;
1215 rq->sector = tape->first_frame;
1216 rq->nr_sectors = blocks;
1217 rq->current_nr_sectors = blocks;
1218 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1219
1220 errors = rq->errors;
1221 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1222 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1225 return 0;
1226
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001227 if (tape->merge_bh)
1228 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001229 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001231 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
Borislav Petkovd236d742008-04-18 00:46:27 +02001234static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001236 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001237 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001238 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001239 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Borislav Petkovd236d742008-04-18 00:46:27 +02001242static void idetape_create_rewind_cmd(ide_drive_t *drive,
1243 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001245 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001246 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001247 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Borislav Petkovd236d742008-04-18 00:46:27 +02001250static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001252 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001253 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001255 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Borislav Petkovd236d742008-04-18 00:46:27 +02001258static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001260 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001261 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001262 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001264 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Borislav Petkov97c566c2008-04-27 15:38:25 +02001267/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001268static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001272 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001274 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001275 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Borislav Petkovd9df9372008-04-27 15:38:34 +02001278static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 idetape_tape_t *tape = drive->driver_data;
1281 int blocks, min;
1282 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001283
Borislav Petkov54abf372008-02-06 02:57:52 +01001284 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001285 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001286 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return;
1288 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001289 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001291 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001293 if (tape->merge_bh_size) {
1294 blocks = tape->merge_bh_size / tape->blk_size;
1295 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 unsigned int i;
1297
1298 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001299 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001300 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 bh = tape->bh->b_reqnext;
1302 while (bh) {
1303 atomic_set(&bh->b_count, 0);
1304 bh = bh->b_reqnext;
1305 }
1306 bh = tape->bh;
1307 while (i) {
1308 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001309 printk(KERN_INFO "ide-tape: bug,"
1310 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 break;
1312 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001313 min = min(i, (unsigned int)(bh->b_size -
1314 atomic_read(&bh->b_count)));
1315 memset(bh->b_data + atomic_read(&bh->b_count),
1316 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 atomic_add(min, &bh->b_count);
1318 i -= min;
1319 bh = bh->b_reqnext;
1320 }
1321 }
1322 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001323 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001325 if (tape->merge_bh != NULL) {
1326 ide_tape_kfree_buffer(tape);
1327 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001329 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Borislav Petkov83042b22008-04-27 15:38:27 +02001332static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001338 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1339 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001340 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 idetape_flush_tape_buffers(drive);
1342 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001343 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001344 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001345 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001346 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001348 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1349 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001351 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001354 * Issue a read 0 command to ensure that DSC handshake is
1355 * switched from completion mode to buffer available mode.
1356 * No point in issuing this if DSC overlap isn't supported, some
1357 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001359 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001360 bytes_read = idetape_queue_rw_tail(drive,
1361 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001362 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001364 ide_tape_kfree_buffer(tape);
1365 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001366 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return bytes_read;
1368 }
1369 }
1370 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return 0;
1373}
1374
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001375/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001376static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
1378 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001380 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001382 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001383 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return 0;
1385
Borislav Petkov83042b22008-04-27 15:38:27 +02001386 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001388 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001389 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001392static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 idetape_tape_t *tape = drive->driver_data;
1395 struct idetape_bh *bh;
1396 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 while (bcount) {
1399 unsigned int count;
1400
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001401 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001402 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001404 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001406 atomic_set(&bh->b_count,
1407 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1409 count -= atomic_read(&bh->b_count);
1410 bh = bh->b_reqnext;
1411 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001412 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001413 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415}
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001418 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1419 * currently support only one partition.
1420 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001421static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001423 struct ide_tape_obj *tape = drive->driver_data;
1424 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001426 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001427
1428 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001431 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (retval)
1433 return retval;
1434
1435 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001436 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (retval)
1438 return retval;
1439 return 0;
1440}
1441
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001442/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001443static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1444 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
1446 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 void __user *argp = (void __user *)arg;
1448
Borislav Petkovd59823f2008-02-02 19:56:51 +01001449 struct idetape_config {
1450 int dsc_rw_frequency;
1451 int dsc_media_access_frequency;
1452 int nr_stages;
1453 } config;
1454
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001455 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001458 case 0x0340:
1459 if (copy_from_user(&config, argp, sizeof(config)))
1460 return -EFAULT;
1461 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001462 break;
1463 case 0x0350:
1464 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001465 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001466 if (copy_to_user(argp, &config, sizeof(config)))
1467 return -EFAULT;
1468 break;
1469 default:
1470 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
1472 return 0;
1473}
1474
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001475static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1476 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001479 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001480 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001481 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001482 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 if (mt_count == 0)
1485 return 0;
1486 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001487 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001489 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
1491
Borislav Petkov54abf372008-02-06 02:57:52 +01001492 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001493 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001494 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001496 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001500 case MTFSF:
1501 case MTBSF:
1502 idetape_create_space_cmd(&pc, mt_count - count,
1503 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001504 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001505 case MTFSFM:
1506 case MTBSFM:
1507 if (!sprev)
1508 return -EIO;
1509 retval = idetape_space_over_filemarks(drive, MTFSF,
1510 mt_count - count);
1511 if (retval)
1512 return retval;
1513 count = (MTBSFM == mt_op ? 1 : -1);
1514 return idetape_space_over_filemarks(drive, MTFSF, count);
1515 default:
1516 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1517 mt_op);
1518 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
1520}
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001523 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001525 * The tape is optimized to maximize throughput when it is transferring an
1526 * integral number of the "continuous transfer limit", which is a parameter of
1527 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001529 * As of version 1.3 of the driver, the character device provides an abstract
1530 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1531 * same backup/restore procedure is supported. The driver will internally
1532 * convert the requests to the recommended transfer unit, so that an unmatch
1533 * between the user's block size to the recommended size will only result in a
1534 * (slightly) increased driver overhead, but will no longer hit performance.
1535 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001537static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1538 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001540 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001542 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001543 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001544 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001546 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Borislav Petkov54abf372008-02-06 02:57:52 +01001548 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001549 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001550 if (count > tape->blk_size &&
1551 (count % tape->blk_size) == 0)
1552 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001554 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001555 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return rc;
1557 if (count == 0)
1558 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001559 if (tape->merge_bh_size) {
1560 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001561 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001562 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001563 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001565 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 count -= actually_read;
1567 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001568 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001569 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if (bytes_read <= 0)
1571 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001572 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001573 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 buf += bytes_read;
1575 count -= bytes_read;
1576 actually_read += bytes_read;
1577 }
1578 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001579 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (bytes_read <= 0)
1581 goto finish;
1582 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001583 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001584 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001586 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001589 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001590 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 idetape_space_over_filemarks(drive, MTFSF, 1);
1593 return 0;
1594 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001595
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001596 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001599static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 size_t count, loff_t *ppos)
1601{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001602 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001604 ssize_t actually_written = 0;
1605 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001606 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 /* The drive is write protected. */
1609 if (tape->write_prot)
1610 return -EACCES;
1611
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001612 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001615 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1616 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001617 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001618 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001619 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001621 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001623 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1624 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001626 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001627 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001630 * Issue a write 0 command to ensure that DSC handshake is
1631 * switched from completion mode to buffer available mode. No
1632 * point in issuing this if DSC overlap isn't supported, some
1633 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001635 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001636 ssize_t retval = idetape_queue_rw_tail(drive,
1637 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001638 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001640 ide_tape_kfree_buffer(tape);
1641 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001642 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return retval;
1644 }
1645 }
1646 }
1647 if (count == 0)
1648 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001649 if (tape->merge_bh_size) {
1650 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001651 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001652 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001654 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001655 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001656 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001657 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001658 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001660 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 count -= actually_written;
1662
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001663 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001664 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001665 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001666 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (retval <= 0)
1668 return (retval);
1669 }
1670 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001671 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001672 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001673 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001674 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001675 buf += tape->buffer_size;
1676 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001677 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001678 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (retval <= 0)
1680 return (retval);
1681 }
1682 if (count) {
1683 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001684 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001685 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001686 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001688 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
1690
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001691static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001693 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001694 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 /* Write a filemark */
1697 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001698 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1700 return -EIO;
1701 }
1702 return 0;
1703}
1704
1705/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001706 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1707 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001709 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1710 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001711 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001713 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001715 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1716 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001718static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001721 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001722 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001723 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001725 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1726 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001729 case MTFSF:
1730 case MTFSFM:
1731 case MTBSF:
1732 case MTBSFM:
1733 if (!mt_count)
1734 return 0;
1735 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1736 default:
1737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001741 case MTWEOF:
1742 if (tape->write_prot)
1743 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001744 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001745 for (i = 0; i < mt_count; i++) {
1746 retval = idetape_write_filemark(drive);
1747 if (retval)
1748 return retval;
1749 }
1750 return 0;
1751 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001752 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001753 if (idetape_rewind_tape(drive))
1754 return -EIO;
1755 return 0;
1756 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001757 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001758 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001759 case MTUNLOAD:
1760 case MTOFFL:
1761 /*
1762 * If door is locked, attempt to unlock before
1763 * attempting to eject.
1764 */
1765 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001766 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001767 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001768 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001769 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001770 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001771 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001772 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001773 return retval;
1774 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001775 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001776 return idetape_flush_tape_buffers(drive);
1777 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001778 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001779 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001780 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001781 case MTEOM:
1782 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001783 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001784 case MTERASE:
1785 (void)idetape_rewind_tape(drive);
1786 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001787 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001788 case MTSETBLK:
1789 if (mt_count) {
1790 if (mt_count < tape->blk_size ||
1791 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001793 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001794 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001795 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001796 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001797 return 0;
1798 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001799 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001800 return idetape_position_tape(drive,
1801 mt_count * tape->user_bs_factor, tape->partition, 0);
1802 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001803 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001804 return idetape_position_tape(drive, 0, mt_count, 0);
1805 case MTFSR:
1806 case MTBSR:
1807 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001808 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001809 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001811 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1812 return 0;
1813 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001814 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001815 if (retval)
1816 return retval;
1817 tape->door_locked = DOOR_UNLOCKED;
1818 return 0;
1819 default:
1820 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1821 mt_op);
1822 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824}
1825
1826/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001827 * Our character device ioctls. General mtio.h magnetic io commands are
1828 * supported here, and not in the corresponding block interface. Our own
1829 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001831static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1832 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001834 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 ide_drive_t *drive = tape->drive;
1836 struct mtop mtop;
1837 struct mtget mtget;
1838 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001839 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 void __user *argp = (void __user *)arg;
1841
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001842 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Borislav Petkov54abf372008-02-06 02:57:52 +01001844 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001845 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 idetape_flush_tape_buffers(drive);
1847 }
1848 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001849 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001850 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001851 position = idetape_read_position(drive);
1852 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return -EIO;
1854 }
1855 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001856 case MTIOCTOP:
1857 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1858 return -EFAULT;
1859 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1860 case MTIOCGET:
1861 memset(&mtget, 0, sizeof(struct mtget));
1862 mtget.mt_type = MT_ISSCSI2;
1863 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1864 mtget.mt_dsreg =
1865 ((tape->blk_size * tape->user_bs_factor)
1866 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001867
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001868 if (tape->drv_write_prot)
1869 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1870
1871 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1872 return -EFAULT;
1873 return 0;
1874 case MTIOCPOS:
1875 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1876 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1877 return -EFAULT;
1878 return 0;
1879 default:
1880 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001881 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001882 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
1884}
1885
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001886/*
1887 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1888 * block size with the reported value.
1889 */
1890static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1891{
1892 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001893 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001894
1895 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001896 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001897 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001898 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001899 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1900 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001901 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001902 }
1903 return;
1904 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001905 tape->blk_size = (pc.buf[4 + 5] << 16) +
1906 (pc.buf[4 + 6] << 8) +
1907 pc.buf[4 + 7];
1908 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001911static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
1913 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1914 ide_drive_t *drive;
1915 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 int retval;
1917
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001918 if (i >= MAX_HWIFS * MAX_DRIVES)
1919 return -ENXIO;
1920
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001921 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001922 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001923 if (!tape) {
1924 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001925 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001926 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001927
1928 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 /*
1931 * We really want to do nonseekable_open(inode, filp); here, but some
1932 * versions of tar incorrectly call lseek on tapes and bail out if that
1933 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1934 */
1935 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 drive = tape->drive;
1938
1939 filp->private_data = tape;
1940
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001941 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 retval = -EBUSY;
1943 goto out_put_tape;
1944 }
1945
1946 retval = idetape_wait_ready(drive, 60 * HZ);
1947 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001948 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1950 goto out_put_tape;
1951 }
1952
1953 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001954 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 (void)idetape_rewind_tape(drive);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001958 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /* Set write protect flag if device is opened as read-only. */
1961 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1962 tape->write_prot = 1;
1963 else
1964 tape->write_prot = tape->drv_write_prot;
1965
1966 /* Make sure drive isn't write protected if user wants to write. */
1967 if (tape->write_prot) {
1968 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1969 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001970 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 retval = -EROFS;
1972 goto out_put_tape;
1973 }
1974 }
1975
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001976 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001977 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001978 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001979 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1980 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
1982 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001983 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 return 0;
1985
1986out_put_tape:
1987 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001988 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 return retval;
1990}
1991
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001992static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 idetape_tape_t *tape = drive->driver_data;
1995
Borislav Petkovd9df9372008-04-27 15:38:34 +02001996 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001997 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1998 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001999 idetape_pad_zeros(drive, tape->blk_size *
2000 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002001 ide_tape_kfree_buffer(tape);
2002 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004 idetape_write_filemark(drive);
2005 idetape_flush_tape_buffers(drive);
2006 idetape_flush_tape_buffers(drive);
2007}
2008
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002009static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002011 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 unsigned int minor = iminor(inode);
2014
2015 lock_kernel();
2016 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002017
2018 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Borislav Petkov54abf372008-02-06 02:57:52 +01002020 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002022 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002024 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002026
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002027 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002029 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002031 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002032 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 }
2034 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002035 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 ide_tape_put(tape);
2037 unlock_kernel();
2038 return 0;
2039}
2040
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002041static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002044 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002045 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002048 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002049 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2050 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return;
2052 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002053 memcpy(vendor_id, &pc.buf[8], 8);
2054 memcpy(product_id, &pc.buf[16], 16);
2055 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002056
Borislav Petkov801bd322008-09-27 19:32:17 +02002057 ide_fixstring(vendor_id, 8, 0);
2058 ide_fixstring(product_id, 16, 0);
2059 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002060
Borislav Petkov801bd322008-09-27 19:32:17 +02002061 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002062 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
2065/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002066 * Ask the tape about its various parameters. In particular, we will adjust our
2067 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002069static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
2071 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002072 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002073 u8 *caps;
2074 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002077 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002078 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2079 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002080 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002081 put_unaligned(52, (u16 *)&tape->caps[12]);
2082 put_unaligned(540, (u16 *)&tape->caps[14]);
2083 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return;
2085 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002086 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Borislav Petkovb6422012008-02-02 19:56:49 +01002088 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002089 speed = be16_to_cpup((__be16 *)&caps[14]);
2090 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002092 *(u16 *)&caps[8] = max_speed;
2093 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2094 *(u16 *)&caps[14] = speed;
2095 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002096
2097 if (!speed) {
2098 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2099 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002100 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002102 if (!max_speed) {
2103 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2104 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002105 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107
Borislav Petkovb6422012008-02-02 19:56:49 +01002108 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002109
2110 /* device lacks locking support according to capabilities page */
2111 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02002112 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002113
Borislav Petkovb6422012008-02-02 19:56:49 +01002114 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002115 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002116 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002117 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002120#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002121#define ide_tape_devset_get(name, field) \
2122static int get_##name(ide_drive_t *drive) \
2123{ \
2124 idetape_tape_t *tape = drive->driver_data; \
2125 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002127
2128#define ide_tape_devset_set(name, field) \
2129static int set_##name(ide_drive_t *drive, int arg) \
2130{ \
2131 idetape_tape_t *tape = drive->driver_data; \
2132 tape->field = arg; \
2133 return 0; \
2134}
2135
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002136#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002137ide_tape_devset_get(_name, _field) \
2138ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002139IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002140
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002141#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002142ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002143IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002144
2145static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2146static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2147static int divf_buffer(ide_drive_t *drive) { return 2; }
2148static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2149
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002150ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002151
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002152ide_tape_devset_rw_field(debug_mask, debug_mask);
2153ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002154
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002155ide_tape_devset_r_field(avg_speed, avg_speed);
2156ide_tape_devset_r_field(speed, caps[14]);
2157ide_tape_devset_r_field(buffer, caps[16]);
2158ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002159
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002160static const struct ide_proc_devset idetape_settings[] = {
2161 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2162 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2163 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2164 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2165 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2166 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2167 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2168 mulf_tdsc, divf_tdsc),
2169 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002170};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002174 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002176 * 1. Initialize our various state variables.
2177 * 2. Ask the tape for its capabilities.
2178 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2179 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002181 * Note that at this point ide.c already assigned us an irq, so that we can
2182 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002184static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Borislav Petkov83042b22008-04-27 15:38:27 +02002186 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002188 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002189 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002191 drive->pc_callback = ide_tape_callback;
2192 drive->pc_update_buffers = idetape_update_buffers;
2193 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002194
Borislav Petkov54bb2072008-02-06 02:57:52 +01002195 spin_lock_init(&tape->lock);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002196
2197 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2198
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002199 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2200 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2201 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002202 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002206 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002207 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 tape->minor = minor;
2210 tape->name[0] = 'h';
2211 tape->name[1] = 't';
2212 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002213 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 idetape_get_inquiry_results(drive);
2216 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002217 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002219 tape->buffer_size = *ctl * tape->blk_size;
2220 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002222 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002223 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002225 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002226 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002227 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002228 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002229 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 }
2231
Borislav Petkov83042b22008-04-27 15:38:27 +02002232 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002233 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Borislav Petkovf73850a2008-04-27 15:38:33 +02002235 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002238 * Ensure that the number we got makes sense; limit it within
2239 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002241 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2242 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002244 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002245 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002246 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2247 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002248 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002249 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002251 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252}
2253
Russell King4031bbe2006-01-06 11:41:00 +00002254static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
2256 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002258 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 ide_unregister_region(tape->disk);
2261
2262 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263}
2264
2265static void ide_tape_release(struct kref *kref)
2266{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002267 struct ide_tape_obj *tape = to_ide_drv(kref, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 ide_drive_t *drive = tape->drive;
2269 struct gendisk *g = tape->disk;
2270
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002271 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002272
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002273 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002275 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002276 device_destroy(idetape_sysfs_class,
2277 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 idetape_devs[tape->minor] = NULL;
2279 g->private_data = NULL;
2280 put_disk(g);
2281 kfree(tape);
2282}
2283
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002284#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285static int proc_idetape_read_name
2286 (char *page, char **start, off_t off, int count, int *eof, void *data)
2287{
2288 ide_drive_t *drive = (ide_drive_t *) data;
2289 idetape_tape_t *tape = drive->driver_data;
2290 char *out = page;
2291 int len;
2292
2293 len = sprintf(out, "%s\n", tape->name);
2294 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2295}
2296
2297static ide_proc_entry_t idetape_proc[] = {
2298 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2299 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2300 { NULL, 0, NULL, NULL }
2301};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002302
2303static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2304{
2305 return idetape_proc;
2306}
2307
2308static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2309{
2310 return idetape_settings;
2311}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312#endif
2313
Russell King4031bbe2006-01-06 11:41:00 +00002314static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002317 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002318 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002319 .name = "ide-tape",
2320 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002321 },
Russell King4031bbe2006-01-06 11:41:00 +00002322 .probe = ide_tape_probe,
2323 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 .do_request = idetape_do_request,
2326 .end_request = idetape_end_request,
2327 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002328#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002329 .proc_entries = ide_tape_proc_entries,
2330 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002331#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332};
2333
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002334/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002335static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 .owner = THIS_MODULE,
2337 .read = idetape_chrdev_read,
2338 .write = idetape_chrdev_write,
2339 .ioctl = idetape_chrdev_ioctl,
2340 .open = idetape_chrdev_open,
2341 .release = idetape_chrdev_release,
2342};
2343
Al Viroa4600f82008-03-02 10:27:58 -05002344static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345{
Al Viroa4600f82008-03-02 10:27:58 -05002346 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002348 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 return -ENXIO;
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 return 0;
2352}
2353
Al Viroa4600f82008-03-02 10:27:58 -05002354static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002356 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 return 0;
2360}
2361
Al Viroa4600f82008-03-02 10:27:58 -05002362static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 unsigned int cmd, unsigned long arg)
2364{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002365 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04002367 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (err == -EINVAL)
2369 err = idetape_blkdev_ioctl(drive, cmd, arg);
2370 return err;
2371}
2372
2373static struct block_device_operations idetape_block_ops = {
2374 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05002375 .open = idetape_open,
2376 .release = idetape_release,
2377 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378};
2379
Russell King4031bbe2006-01-06 11:41:00 +00002380static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
2382 idetape_tape_t *tape;
2383 struct gendisk *g;
2384 int minor;
2385
2386 if (!strstr("ide-tape", drive->driver_req))
2387 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (drive->media != ide_tape)
2390 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002391
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002392 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2393 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002394 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2395 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 goto failed;
2397 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002398 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002400 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2401 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 goto failed;
2403 }
2404
2405 g = alloc_disk(1 << PARTN_BITS);
2406 if (!g)
2407 goto out_free_tape;
2408
2409 ide_init_disk(g, drive);
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 kref_init(&tape->kref);
2412
2413 tape->drive = drive;
2414 tape->driver = &idetape_driver;
2415 tape->disk = g;
2416
2417 g->private_data = &tape->driver;
2418
2419 drive->driver_data = tape;
2420
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002421 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 for (minor = 0; idetape_devs[minor]; minor++)
2423 ;
2424 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002425 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427 idetape_setup(drive, tape, minor);
2428
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002429 device_create(idetape_sysfs_class, &drive->gendev,
2430 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2431 device_create(idetape_sysfs_class, &drive->gendev,
2432 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2433 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 g->fops = &idetape_block_ops;
2436 ide_register_region(g);
2437
2438 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440out_free_tape:
2441 kfree(tape);
2442failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002443 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002446static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002448 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002449 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 unregister_chrdev(IDETAPE_MAJOR, "ht");
2451}
2452
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002453static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
Will Dysond5dee802005-09-16 02:55:07 -07002455 int error = 1;
2456 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2457 if (IS_ERR(idetape_sysfs_class)) {
2458 idetape_sysfs_class = NULL;
2459 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2460 error = -EBUSY;
2461 goto out;
2462 }
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002465 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2466 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002467 error = -EBUSY;
2468 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
Will Dysond5dee802005-09-16 02:55:07 -07002470
2471 error = driver_register(&idetape_driver.gen_driver);
2472 if (error)
2473 goto out_free_driver;
2474
2475 return 0;
2476
2477out_free_driver:
2478 driver_unregister(&idetape_driver.gen_driver);
2479out_free_class:
2480 class_destroy(idetape_sysfs_class);
2481out:
2482 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
2484
Kay Sievers263756e2005-12-12 18:03:44 +01002485MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486module_init(idetape_init);
2487module_exit(idetape_exit);
2488MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002489MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2490MODULE_LICENSE("GPL");