blob: 35469f3069a2da3d447f37338b9798683e94f4b4 [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/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
156#define IDETAPE_BLOCK_DESCRIPTOR 0
157#define IDETAPE_CAPABILITIES_PAGE 0x2a
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100160 * Most of our global data which we need to save even as we leave the driver due
161 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
163typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100164 ide_drive_t *drive;
165 struct ide_driver *driver;
166 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100167 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200169 /* used by REQ_IDETAPE_{READ,WRITE} requests */
170 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100173 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100175 * While polling for DSC we use postponed_rq to postpone the current
176 * request so that ide.c will be able to service pending requests on the
177 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200178 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
180 struct request *postponed_rq;
181 /* The time in which we started polling for DSC */
182 unsigned long dsc_polling_start;
183 /* Timer used to poll for dsc */
184 struct timer_list dsc_timer;
185 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100186 unsigned long best_dsc_rw_freq;
187 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 unsigned long dsc_timeout;
189
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100190 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 u8 partition;
192 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100193 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100195 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 u8 sense_key, asc, ascq;
197
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100198 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 unsigned int minor;
200 /* device name */
201 char name[4];
202 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100203 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Borislav Petkov54bb2072008-02-06 02:57:52 +0100205 /* tape block size, usually 512 or 1024 bytes */
206 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100210 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100213 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100215 * At most, there is only one ide-tape originated data transfer request
216 * in the device request queue. This allows ide.c to easily service
217 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200219
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100220 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200221 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200222 /* merge buffer */
223 struct idetape_bh *merge_bh;
Borislav Petkov01a63ae2008-04-27 15:38:34 +0200224 /* size of the merge buffer */
225 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200226 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 struct idetape_bh *bh;
228 char *b_data;
229 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100230
Borislav Petkova997a432008-04-27 15:38:33 +0200231 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* Wasted space in each stage */
233 int excess_bh_size;
234
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100235 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unsigned long avg_time;
237 int avg_size;
238 int avg_speed;
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* the door is currently locked */
241 int door_locked;
242 /* the tape hardware is write protected */
243 char drv_write_prot;
244 /* the tape is write protected (hardware or opened as read-only) */
245 char write_prot;
246
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100247 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248} idetape_tape_t;
249
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800250static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Will Dysond5dee802005-09-16 02:55:07 -0700252static struct class *idetape_sysfs_class;
253
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100254static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
257{
258 struct ide_tape_obj *tape = NULL;
259
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800260 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200261 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200262 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200263 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200264 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200265 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100266 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200267 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800268 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return tape;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272static void ide_tape_put(struct ide_tape_obj *tape)
273{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200274 ide_drive_t *drive = tape->drive;
275
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800276 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100277 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200278 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800279 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100283 * The variables below are used for the character device interface. Additional
284 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100286static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
289{
290 struct ide_tape_obj *tape = NULL;
291
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800292 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 tape = idetape_devs[i];
294 if (tape)
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100295 get_device(&tape->dev);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800296 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return tape;
298}
299
Borislav Petkovd236d742008-04-18 00:46:27 +0200300static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100301 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 struct idetape_bh *bh = pc->bh;
304 int count;
305
306 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (bh == NULL) {
308 printk(KERN_ERR "ide-tape: bh == NULL in "
309 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200310 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return;
312 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100313 count = min(
314 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
315 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200316 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100317 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 bcount -= count;
319 atomic_add(count, &bh->b_count);
320 if (atomic_read(&bh->b_count) == bh->b_size) {
321 bh = bh->b_reqnext;
322 if (bh)
323 atomic_set(&bh->b_count, 0);
324 }
325 }
326 pc->bh = bh;
327}
328
Borislav Petkovd236d742008-04-18 00:46:27 +0200329static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100330 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 struct idetape_bh *bh = pc->bh;
333 int count;
334
335 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100337 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
338 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200342 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 bcount -= count;
344 pc->b_data += count;
345 pc->b_count -= count;
346 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100347 bh = bh->b_reqnext;
348 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (bh) {
350 pc->b_data = bh->b_data;
351 pc->b_count = atomic_read(&bh->b_count);
352 }
353 }
354 }
355}
356
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200357static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct idetape_bh *bh = pc->bh;
360 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200361 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Borislav Petkov346331f2008-04-18 00:46:26 +0200363 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return;
365 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100367 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
368 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return;
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
372 atomic_set(&bh->b_count, count);
373 if (atomic_read(&bh->b_count) == bh->b_size)
374 bh = bh->b_reqnext;
375 bcount -= count;
376 }
377 pc->bh = bh;
378}
379
380/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100381 * called on each failed packet command retry to analyze the request sense. We
382 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100384static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100387 struct ide_atapi_pc *pc = drive->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Borislav Petkov1b5db432008-02-02 19:56:48 +0100389 tape->sense_key = sense[2] & 0xF;
390 tape->asc = sense[12];
391 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100392
393 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
394 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Borislav Petkovd236d742008-04-18 00:46:27 +0200396 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200397 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200398 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100399 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200400 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200401 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 /*
405 * If error was the result of a zero-length read or write command,
406 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
407 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
408 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100409 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100410 /* length == 0 */
411 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
412 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* don't report an error, everything's ok */
414 pc->error = 0;
415 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200416 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100419 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100420 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200421 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100423 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100424 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
425 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100426 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200427 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100430 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100431 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100432 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200433 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200435 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200436 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
438 }
439}
440
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200441/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200442static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200444 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200446 while (bh) {
447 u32 size = bh->b_size;
448
449 while (size) {
450 unsigned int order = fls(size >> PAGE_SHIFT)-1;
451
452 if (bh->b_data)
453 free_pages((unsigned long)bh->b_data, order);
454
455 size &= (order-1);
456 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 prev_bh = bh;
459 bh = bh->b_reqnext;
460 kfree(prev_bh);
461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
465{
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100466 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100468 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100470 rq->errors = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100472 if (uptodate == 0)
473 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100474
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100475 ide_complete_rq(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return 0;
478}
479
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200480static void ide_tape_handle_dsc(ide_drive_t *);
481
482static void ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200485 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100486 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200487 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100488 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100490 debug_log(DBG_PROCS, "Enter %s\n", __func__);
491
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200492 if (dsc)
493 ide_tape_handle_dsc(drive);
494
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100495 if (drive->failed_pc == pc)
496 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200497
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200498 if (pc->c[0] == REQUEST_SENSE) {
499 if (uptodate)
500 idetape_analyze_error(drive, pc->buf);
501 else
502 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
503 "itself - Aborting request!\n");
504 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200505 int blocks = pc->xferred / tape->blk_size;
506
507 tape->avg_size += blocks * tape->blk_size;
508
509 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
510 tape->avg_speed = tape->avg_size * HZ /
511 (jiffies - tape->avg_time) / 1024;
512 tape->avg_size = 0;
513 tape->avg_time = jiffies;
514 }
515
516 tape->first_frame += blocks;
517 rq->current_nr_sectors -= blocks;
518
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100519 if (pc->error) {
520 uptodate = 0;
521 err = pc->error;
522 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200523 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200524 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200525
526 debug_log(DBG_SENSE, "BOP - %s\n",
527 (readpos[0] & 0x80) ? "Yes" : "No");
528 debug_log(DBG_SENSE, "EOP - %s\n",
529 (readpos[0] & 0x40) ? "Yes" : "No");
530
531 if (readpos[0] & 0x4) {
532 printk(KERN_INFO "ide-tape: Block location is unknown"
533 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200534 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200535 uptodate = 0;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100536 err = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200537 } else {
538 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200539 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200540
541 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200542 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200543 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200546
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100547 rq->errors = err;
548
549 if (uptodate == 0)
550 drive->failed_pc = NULL;
551
552 if (blk_special_request(rq))
553 ide_complete_rq(drive, 0);
554 else
555 ide_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100559 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100560 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100562static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 idetape_tape_t *tape = drive->driver_data;
565
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100566 debug_log(DBG_PROCS, "Enter %s\n", __func__);
567
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100568 tape->postponed_rq = drive->hwif->rq;
569
Borislav Petkov54bb2072008-02-06 02:57:52 +0100570 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Bartlomiej Zolnierkiewicz74e63e72008-07-15 21:22:01 +0200573static void ide_tape_handle_dsc(ide_drive_t *drive)
574{
575 idetape_tape_t *tape = drive->driver_data;
576
577 /* Media access command */
578 tape->dsc_polling_start = jiffies;
579 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
580 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
581 /* Allow ide.c to handle other requests */
582 idetape_postpone_request(drive);
583}
584
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200585static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200586 unsigned int bcount, int write)
587{
588 if (write)
589 idetape_output_buffers(drive, pc, bcount);
590 else
591 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200592
593 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200594}
Borislav Petkova1efc852008-02-06 02:57:52 +0100595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100597 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200599 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100600 * until we finish handling it. Each packet command is associated with a
601 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100603 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100605 * 1. idetape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de2008-10-13 21:39:32 +0200606 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 *
Bartlomiej Zolnierkiewiczaa5d2de2008-10-13 21:39:32 +0200608 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100609 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100611 * 3. ATAPI Tape media access commands have immediate status with a delayed
612 * process. In case of a successful initiation of a media access packet command,
613 * the DSC bit will be set when the actual execution of the command is finished.
614 * Since the tape drive will not issue an interrupt, we have to poll for this
615 * event. In this case, we define the request as "low priority request" by
616 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
617 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100619 * ide.c will then give higher priority to requests which originate from the
620 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100622 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100624 * 5. In case an error was found, we queue a request sense packet command in
625 * front of the request queue and retry the operation up to
626 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100628 * 6. In case no error was found, or we decided to give up and not to retry
629 * again, the callback function will be called and then we will handle the next
630 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Borislav Petkovd236d742008-04-18 00:46:27 +0200633static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
634 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200638 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100639 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
641 "Two request sense in serial were issued\n");
642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100644 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
645 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200648 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200651 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100653 * We will "abort" retrying a packet command in case legitimate
654 * error code was received (crossing a filemark, or end of the
655 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200657 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100658 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 tape->sense_key == 2 && tape->asc == 4 &&
660 (tape->ascq == 1 || tape->ascq == 8))) {
661 printk(KERN_ERR "ide-tape: %s: I/O error, "
662 "pc = %2x, key = %2x, "
663 "asc = %2x, ascq = %2x\n",
664 tape->name, pc->c[0],
665 tape->sense_key, tape->asc,
666 tape->ascq);
667 }
668 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100669 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100671 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200672 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200673 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100675 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100679 return ide_issue_pc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100682/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200683static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200685 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100686 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100688 /* DBD = 1 - Don't return block descriptors */
689 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 pc->c[2] = page_code;
691 /*
692 * Changed pc->c[3] to 0 (255 will at best return unused info).
693 *
694 * For SCSI this byte is defined as subpage instead of high byte
695 * of length and some IDE drives seem to interpret it this way
696 * and return an error when 255 is used.
697 */
698 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100699 /* We will just discard data in that case */
700 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200702 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200704 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200706 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100709static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200711 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200713 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100714 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200716 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100717
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200718 if (stat & ATA_DSC) {
719 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100721 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 printk(KERN_ERR "ide-tape: %s: I/O error, ",
723 tape->name);
724 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200725 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200726 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100730 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100731 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200733 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return ide_stopped;
735}
736
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200737static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200738 struct ide_atapi_pc *pc, struct request *rq,
739 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Borislav Petkov0014c752008-07-23 19:56:00 +0200741 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
742 unsigned int length = rq->current_nr_sectors;
743
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200744 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100745 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200748 pc->buf = NULL;
749 pc->buf_size = length * tape->blk_size;
750 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200751 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200752 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200754 if (opcode == READ_6) {
755 pc->c[0] = READ_6;
756 atomic_set(&bh->b_count, 0);
757 } else if (opcode == WRITE_6) {
758 pc->c[0] = WRITE_6;
759 pc->flags |= PC_FLAG_WRITING;
760 pc->b_data = bh->b_data;
761 pc->b_count = atomic_read(&bh->b_count);
762 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200763
764 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767static ide_startstop_t idetape_do_request(ide_drive_t *drive,
768 struct request *rq, sector_t block)
769{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200770 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200772 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100774 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Mark de Wever730616b2008-10-10 22:39:17 +0200776 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
777 " current_nr_sectors: %u\n",
778 (unsigned long long)rq->sector, rq->nr_sectors,
779 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Jens Axboe4aff5e22006-08-10 08:44:47 +0200781 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100782 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200784 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 ide_end_request(drive, 0, 0);
786 return ide_stopped;
787 }
788
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100789 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100790 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
791 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200792 goto out;
793 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (postponed_rq != NULL)
796 if (rq != postponed_rq) {
797 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
798 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100799 rq->errors = IDE_DRV_ERROR_GENERAL;
800 drive->failed_pc = NULL;
801 ide_complete_rq(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return ide_stopped;
803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 tape->postponed_rq = NULL;
806
807 /*
808 * If the tape is still busy, postpone our request and service
809 * the other device meanwhile.
810 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200811 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200813 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
814 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200815 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200817 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200818 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200819 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200822 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200823 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (postponed_rq == NULL) {
825 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100826 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
828 } else if (time_after(jiffies, tape->dsc_timeout)) {
829 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
830 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200831 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 idetape_media_access_finished(drive);
833 return ide_stopped;
834 } else {
835 return ide_do_reset(drive);
836 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100837 } else if (time_after(jiffies,
838 tape->dsc_polling_start +
839 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100840 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 idetape_postpone_request(drive);
842 return ide_stopped;
843 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200844 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200845 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200846 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 goto out;
848 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200849 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200850 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200851 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 goto out;
853 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200854 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200855 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200856 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
857 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto out;
859 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200860 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 idetape_media_access_finished(drive);
862 return ide_stopped;
863 }
864 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200865
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200866out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100867 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200871 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200872 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100873 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200875 * It returns a pointer to the newly allocated buffer, or NULL in case of
876 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200878static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
879 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200881 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200882 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200883 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 char *b_data = NULL;
885
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200886 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
887 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (bh == NULL)
889 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200890
891 order = fls(pages) - 1;
892 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100893 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200895 b_allocd = (1 << order) * PAGE_SIZE;
896 pages &= (order-1);
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200899 memset(bh->b_data, 0, b_allocd);
900 bh->b_reqnext = NULL;
901 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 atomic_set(&bh->b_count, full ? bh->b_size : 0);
903
Borislav Petkov41aa1702008-04-27 15:38:32 +0200904 while (pages) {
905 order = fls(pages) - 1;
906 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100907 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200909 b_allocd = (1 << order) * PAGE_SIZE;
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200912 memset(b_data, 0, b_allocd);
913
914 /* newly allocated page frames below buffer header or ...*/
915 if (bh->b_data == b_data + b_allocd) {
916 bh->b_size += b_allocd;
917 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200919 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 continue;
921 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200922 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200924 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200926 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 continue;
928 }
929 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100930 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
931 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200932 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 goto abort;
934 }
935 bh->b_reqnext = NULL;
936 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200937 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 atomic_set(&bh->b_count, full ? bh->b_size : 0);
939 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200940
941 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 bh->b_size -= tape->excess_bh_size;
945 if (full)
946 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200947 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200949 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return NULL;
951}
952
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100953static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200954 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 struct idetape_bh *bh = tape->bh;
957 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700958 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100962 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
963 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700964 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100966 count = min((unsigned int)
967 (bh->b_size - atomic_read(&bh->b_count)),
968 (unsigned int)n);
969 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
970 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700971 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 n -= count;
973 atomic_add(count, &bh->b_count);
974 buf += count;
975 if (atomic_read(&bh->b_count) == bh->b_size) {
976 bh = bh->b_reqnext;
977 if (bh)
978 atomic_set(&bh->b_count, 0);
979 }
980 }
981 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700982 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100985static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +0200986 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct idetape_bh *bh = tape->bh;
989 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700990 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100994 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
995 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700996 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700999 if (copy_to_user(buf, tape->b_data, count))
1000 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 n -= count;
1002 tape->b_data += count;
1003 tape->b_count -= count;
1004 buf += count;
1005 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001006 bh = bh->b_reqnext;
1007 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (bh) {
1009 tape->b_data = bh->b_data;
1010 tape->b_count = atomic_read(&bh->b_count);
1011 }
1012 }
1013 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001014 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001017static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001019 struct idetape_bh *bh = tape->merge_bh;
1020 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001021
Borislav Petkov54abf372008-02-06 02:57:52 +01001022 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 atomic_set(&bh->b_count, 0);
1024 else {
1025 tape->b_data = bh->b_data;
1026 tape->b_count = atomic_read(&bh->b_count);
1027 }
1028}
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001031 * Write a filemark if write_filemark=1. Flush the device buffers without
1032 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001034static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001035 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001037 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001038 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001040 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041}
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1044{
1045 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001046 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int load_attempted = 0;
1048
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001049 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001050 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 timeout += jiffies;
1052 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001053 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return 0;
1055 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001056 || (tape->asc == 0x3A)) {
1057 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (load_attempted)
1059 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001060 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 load_attempted = 1;
1062 /* not about to be ready */
1063 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1064 (tape->ascq == 1 || tape->ascq == 8)))
1065 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001066 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
1068 return -EIO;
1069}
1070
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001071static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001073 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001074 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 int rc;
1076
1077 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001078 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001079 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return rc;
1081 idetape_wait_ready(drive, 60 * 5 * HZ);
1082 return 0;
1083}
1084
Borislav Petkovd236d742008-04-18 00:46:27 +02001085static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001087 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001088 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001089 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001092static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
1094 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001095 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int position;
1097
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001098 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001101 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001103 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return position;
1105}
1106
Borislav Petkovd236d742008-04-18 00:46:27 +02001107static void idetape_create_locate_cmd(ide_drive_t *drive,
1108 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001109 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001111 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001112 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001114 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001116 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001119static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
1121 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Borislav Petkov54abf372008-02-06 02:57:52 +01001123 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001124 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001126 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001127 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001128 if (tape->merge_bh != NULL) {
1129 ide_tape_kfree_buffer(tape);
1130 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132
Borislav Petkov54abf372008-02-06 02:57:52 +01001133 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
1136/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001137 * Position the tape to the requested block using the LOCATE packet command.
1138 * A READ POSITION command is then issued to check where we are positioned. Like
1139 * all higher level operations, we queue the commands at the tail of the request
1140 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001142static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1143 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001146 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001148 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Borislav Petkov54abf372008-02-06 02:57:52 +01001150 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001151 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 idetape_wait_ready(drive, 60 * 5 * HZ);
1153 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001154 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (retval)
1156 return (retval);
1157
1158 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001159 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001162static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001163 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 int seek, position;
1167
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001168 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (restore_position) {
1170 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001171 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001173 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001174 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return;
1176 }
1177 }
1178}
1179
1180/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001181 * Generate a read/write request for the block device interface and wait for it
1182 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001184static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1185 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
1187 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001188 struct request *rq;
1189 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001191 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1192
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001193 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1194 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001195 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001196 rq->rq_disk = tape->disk;
1197 rq->special = (void *)bh;
1198 rq->sector = tape->first_frame;
1199 rq->nr_sectors = blocks;
1200 rq->current_nr_sectors = blocks;
1201 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1202
1203 errors = rq->errors;
1204 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1205 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1208 return 0;
1209
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001210 if (tape->merge_bh)
1211 idetape_init_merge_buffer(tape);
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +01001212 if (errors == IDE_DRV_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001214 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
Borislav Petkovd236d742008-04-18 00:46:27 +02001217static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001219 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001220 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001221 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001222 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
Borislav Petkovd236d742008-04-18 00:46:27 +02001225static void idetape_create_rewind_cmd(ide_drive_t *drive,
1226 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001228 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001229 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001230 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Borislav Petkovd236d742008-04-18 00:46:27 +02001233static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001235 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001236 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001238 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Borislav Petkovd236d742008-04-18 00:46:27 +02001241static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001243 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001244 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001245 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 pc->c[1] = cmd;
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 Petkov97c566c2008-04-27 15:38:25 +02001250/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001251static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
1253 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001255 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001257 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001258 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
Borislav Petkovd9df9372008-04-27 15:38:34 +02001261static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
1263 idetape_tape_t *tape = drive->driver_data;
1264 int blocks, min;
1265 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001266
Borislav Petkov54abf372008-02-06 02:57:52 +01001267 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001268 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001269 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return;
1271 }
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001272 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001274 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001276 if (tape->merge_bh_size) {
1277 blocks = tape->merge_bh_size / tape->blk_size;
1278 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 unsigned int i;
1280
1281 blocks++;
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001282 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001283 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 bh = tape->bh->b_reqnext;
1285 while (bh) {
1286 atomic_set(&bh->b_count, 0);
1287 bh = bh->b_reqnext;
1288 }
1289 bh = tape->bh;
1290 while (i) {
1291 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001292 printk(KERN_INFO "ide-tape: bug,"
1293 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 break;
1295 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001296 min = min(i, (unsigned int)(bh->b_size -
1297 atomic_read(&bh->b_count)));
1298 memset(bh->b_data + atomic_read(&bh->b_count),
1299 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 atomic_add(min, &bh->b_count);
1301 i -= min;
1302 bh = bh->b_reqnext;
1303 }
1304 }
1305 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001306 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001308 if (tape->merge_bh != NULL) {
1309 ide_tape_kfree_buffer(tape);
1310 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001312 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
Borislav Petkov83042b22008-04-27 15:38:27 +02001315static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001321 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1322 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001323 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 idetape_flush_tape_buffers(drive);
1325 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001326 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001327 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001328 " 0 now\n");
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001329 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001331 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1332 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001334 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001337 * Issue a read 0 command to ensure that DSC handshake is
1338 * switched from completion mode to buffer available mode.
1339 * No point in issuing this if DSC overlap isn't supported, some
1340 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001342 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001343 bytes_read = idetape_queue_rw_tail(drive,
1344 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001345 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001347 ide_tape_kfree_buffer(tape);
1348 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001349 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return bytes_read;
1351 }
1352 }
1353 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return 0;
1356}
1357
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001358/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001359static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
1361 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001363 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001365 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001366 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return 0;
1368
Borislav Petkov83042b22008-04-27 15:38:27 +02001369 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001371 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001372 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
1374
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001375static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 idetape_tape_t *tape = drive->driver_data;
1378 struct idetape_bh *bh;
1379 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 while (bcount) {
1382 unsigned int count;
1383
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001384 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001385 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001387 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001389 atomic_set(&bh->b_count,
1390 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1392 count -= atomic_read(&bh->b_count);
1393 bh = bh->b_reqnext;
1394 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001395 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001396 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001401 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1402 * currently support only one partition.
1403 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001404static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001406 struct ide_tape_obj *tape = drive->driver_data;
1407 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001409 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001410
1411 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001414 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (retval)
1416 return retval;
1417
1418 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001419 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (retval)
1421 return retval;
1422 return 0;
1423}
1424
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001425/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001426static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1427 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
1429 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 void __user *argp = (void __user *)arg;
1431
Borislav Petkovd59823f2008-02-02 19:56:51 +01001432 struct idetape_config {
1433 int dsc_rw_frequency;
1434 int dsc_media_access_frequency;
1435 int nr_stages;
1436 } config;
1437
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001438 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001441 case 0x0340:
1442 if (copy_from_user(&config, argp, sizeof(config)))
1443 return -EFAULT;
1444 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001445 break;
1446 case 0x0350:
1447 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001448 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001449 if (copy_to_user(argp, &config, sizeof(config)))
1450 return -EFAULT;
1451 break;
1452 default:
1453 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455 return 0;
1456}
1457
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001458static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1459 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001462 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001463 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001464 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001465 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 if (mt_count == 0)
1468 return 0;
1469 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001470 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001472 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474
Borislav Petkov54abf372008-02-06 02:57:52 +01001475 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001476 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001477 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001479 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001483 case MTFSF:
1484 case MTBSF:
1485 idetape_create_space_cmd(&pc, mt_count - count,
1486 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001487 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001488 case MTFSFM:
1489 case MTBSFM:
1490 if (!sprev)
1491 return -EIO;
1492 retval = idetape_space_over_filemarks(drive, MTFSF,
1493 mt_count - count);
1494 if (retval)
1495 return retval;
1496 count = (MTBSFM == mt_op ? 1 : -1);
1497 return idetape_space_over_filemarks(drive, MTFSF, count);
1498 default:
1499 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1500 mt_op);
1501 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503}
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001506 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001508 * The tape is optimized to maximize throughput when it is transferring an
1509 * integral number of the "continuous transfer limit", which is a parameter of
1510 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001512 * As of version 1.3 of the driver, the character device provides an abstract
1513 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1514 * same backup/restore procedure is supported. The driver will internally
1515 * convert the requests to the recommended transfer unit, so that an unmatch
1516 * between the user's block size to the recommended size will only result in a
1517 * (slightly) increased driver overhead, but will no longer hit performance.
1518 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001520static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1521 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001523 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001525 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001526 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001527 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001529 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Borislav Petkov54abf372008-02-06 02:57:52 +01001531 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001532 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001533 if (count > tape->blk_size &&
1534 (count % tape->blk_size) == 0)
1535 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001537 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001538 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return rc;
1540 if (count == 0)
1541 return (0);
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001542 if (tape->merge_bh_size) {
1543 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001544 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001545 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001546 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 buf += actually_read;
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001548 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 count -= actually_read;
1550 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001551 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001552 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (bytes_read <= 0)
1554 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001555 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001556 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 buf += bytes_read;
1558 count -= bytes_read;
1559 actually_read += bytes_read;
1560 }
1561 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001562 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (bytes_read <= 0)
1564 goto finish;
1565 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001566 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001567 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 actually_read += temp;
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001569 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001572 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001573 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 idetape_space_over_filemarks(drive, MTFSF, 1);
1576 return 0;
1577 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001578
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001579 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001582static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 size_t count, loff_t *ppos)
1584{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001585 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001587 ssize_t actually_written = 0;
1588 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001589 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 /* The drive is write protected. */
1592 if (tape->write_prot)
1593 return -EACCES;
1594
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001595 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001598 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1599 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001600 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001601 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001602 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 "should be 0 now\n");
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001604 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001606 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1607 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001609 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001610 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001613 * Issue a write 0 command to ensure that DSC handshake is
1614 * switched from completion mode to buffer available mode. No
1615 * point in issuing this if DSC overlap isn't supported, some
1616 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001618 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001619 ssize_t retval = idetape_queue_rw_tail(drive,
1620 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001621 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001623 ide_tape_kfree_buffer(tape);
1624 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001625 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 return retval;
1627 }
1628 }
1629 }
1630 if (count == 0)
1631 return (0);
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001632 if (tape->merge_bh_size) {
1633 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001634 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001635 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001637 actually_written = min((unsigned int)
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001638 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001639 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001640 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001641 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 buf += actually_written;
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001643 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 count -= actually_written;
1645
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001646 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001647 ssize_t retval;
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001648 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001649 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (retval <= 0)
1651 return (retval);
1652 }
1653 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001654 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001655 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001656 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001657 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001658 buf += tape->buffer_size;
1659 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001660 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001661 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (retval <= 0)
1663 return (retval);
1664 }
1665 if (count) {
1666 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001667 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001668 ret = -EFAULT;
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001669 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001671 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
1673
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001674static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001676 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001677 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 /* Write a filemark */
1680 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001681 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1683 return -EIO;
1684 }
1685 return 0;
1686}
1687
1688/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001689 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1690 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001692 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1693 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001694 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001696 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001698 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1699 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001701static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001704 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001705 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001706 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001708 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1709 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001712 case MTFSF:
1713 case MTFSFM:
1714 case MTBSF:
1715 case MTBSFM:
1716 if (!mt_count)
1717 return 0;
1718 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1719 default:
1720 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001724 case MTWEOF:
1725 if (tape->write_prot)
1726 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001727 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001728 for (i = 0; i < mt_count; i++) {
1729 retval = idetape_write_filemark(drive);
1730 if (retval)
1731 return retval;
1732 }
1733 return 0;
1734 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001735 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001736 if (idetape_rewind_tape(drive))
1737 return -EIO;
1738 return 0;
1739 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001740 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001741 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001742 case MTUNLOAD:
1743 case MTOFFL:
1744 /*
1745 * If door is locked, attempt to unlock before
1746 * attempting to eject.
1747 */
1748 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001749 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001750 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001751 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001752 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001753 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001754 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001755 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001756 return retval;
1757 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001758 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001759 return idetape_flush_tape_buffers(drive);
1760 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001761 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001762 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001763 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001764 case MTEOM:
1765 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001766 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001767 case MTERASE:
1768 (void)idetape_rewind_tape(drive);
1769 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001770 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001771 case MTSETBLK:
1772 if (mt_count) {
1773 if (mt_count < tape->blk_size ||
1774 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001776 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001777 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001778 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001779 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001780 return 0;
1781 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001782 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001783 return idetape_position_tape(drive,
1784 mt_count * tape->user_bs_factor, tape->partition, 0);
1785 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001786 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001787 return idetape_position_tape(drive, 0, mt_count, 0);
1788 case MTFSR:
1789 case MTBSR:
1790 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001791 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001792 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001794 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1795 return 0;
1796 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001797 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001798 if (retval)
1799 return retval;
1800 tape->door_locked = DOOR_UNLOCKED;
1801 return 0;
1802 default:
1803 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1804 mt_op);
1805 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807}
1808
1809/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001810 * Our character device ioctls. General mtio.h magnetic io commands are
1811 * supported here, and not in the corresponding block interface. Our own
1812 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001814static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1815 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001817 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 ide_drive_t *drive = tape->drive;
1819 struct mtop mtop;
1820 struct mtget mtget;
1821 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001822 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 void __user *argp = (void __user *)arg;
1824
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001825 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Borislav Petkov54abf372008-02-06 02:57:52 +01001827 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001828 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 idetape_flush_tape_buffers(drive);
1830 }
1831 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63ae2008-04-27 15:38:34 +02001832 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001833 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001834 position = idetape_read_position(drive);
1835 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return -EIO;
1837 }
1838 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001839 case MTIOCTOP:
1840 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1841 return -EFAULT;
1842 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1843 case MTIOCGET:
1844 memset(&mtget, 0, sizeof(struct mtget));
1845 mtget.mt_type = MT_ISSCSI2;
1846 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1847 mtget.mt_dsreg =
1848 ((tape->blk_size * tape->user_bs_factor)
1849 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001850
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001851 if (tape->drv_write_prot)
1852 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1853
1854 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1855 return -EFAULT;
1856 return 0;
1857 case MTIOCPOS:
1858 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1859 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1860 return -EFAULT;
1861 return 0;
1862 default:
1863 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001864 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001865 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867}
1868
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001869/*
1870 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1871 * block size with the reported value.
1872 */
1873static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1874{
1875 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001876 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001877
1878 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001879 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001880 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001881 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001882 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1883 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001884 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001885 }
1886 return;
1887 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001888 tape->blk_size = (pc.buf[4 + 5] << 16) +
1889 (pc.buf[4 + 6] << 8) +
1890 pc.buf[4 + 7];
1891 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001892}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001894static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1897 ide_drive_t *drive;
1898 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 int retval;
1900
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001901 if (i >= MAX_HWIFS * MAX_DRIVES)
1902 return -ENXIO;
1903
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001904 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001905 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001906 if (!tape) {
1907 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001908 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001909 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001910
1911 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 /*
1914 * We really want to do nonseekable_open(inode, filp); here, but some
1915 * versions of tar incorrectly call lseek on tapes and bail out if that
1916 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1917 */
1918 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 drive = tape->drive;
1921
1922 filp->private_data = tape;
1923
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001924 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 retval = -EBUSY;
1926 goto out_put_tape;
1927 }
1928
1929 retval = idetape_wait_ready(drive, 60 * HZ);
1930 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001931 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1933 goto out_put_tape;
1934 }
1935
1936 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001937 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 (void)idetape_rewind_tape(drive);
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001941 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 /* Set write protect flag if device is opened as read-only. */
1944 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1945 tape->write_prot = 1;
1946 else
1947 tape->write_prot = tape->drv_write_prot;
1948
1949 /* Make sure drive isn't write protected if user wants to write. */
1950 if (tape->write_prot) {
1951 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1952 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001953 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 retval = -EROFS;
1955 goto out_put_tape;
1956 }
1957 }
1958
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001959 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001960 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001961 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001962 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1963 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001966 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return 0;
1968
1969out_put_tape:
1970 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001971 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return retval;
1973}
1974
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001975static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
1977 idetape_tape_t *tape = drive->driver_data;
1978
Borislav Petkovd9df9372008-04-27 15:38:34 +02001979 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001980 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1981 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001982 idetape_pad_zeros(drive, tape->blk_size *
1983 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001984 ide_tape_kfree_buffer(tape);
1985 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 idetape_write_filemark(drive);
1988 idetape_flush_tape_buffers(drive);
1989 idetape_flush_tape_buffers(drive);
1990}
1991
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001992static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001994 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 unsigned int minor = iminor(inode);
1997
1998 lock_kernel();
1999 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002000
2001 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Borislav Petkov54abf372008-02-06 02:57:52 +01002003 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002005 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002007 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002009
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002010 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002012 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002014 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002015 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
2017 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002018 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 ide_tape_put(tape);
2020 unlock_kernel();
2021 return 0;
2022}
2023
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002024static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002027 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002028 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002031 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002032 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2033 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return;
2035 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002036 memcpy(vendor_id, &pc.buf[8], 8);
2037 memcpy(product_id, &pc.buf[16], 16);
2038 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002039
Borislav Petkov801bd322008-09-27 19:32:17 +02002040 ide_fixstring(vendor_id, 8, 0);
2041 ide_fixstring(product_id, 16, 0);
2042 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d52008-02-06 02:57:52 +01002043
Borislav Petkov801bd322008-09-27 19:32:17 +02002044 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d52008-02-06 02:57:52 +01002045 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
2047
2048/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002049 * Ask the tape about its various parameters. In particular, we will adjust our
2050 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002052static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
2054 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002055 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002056 u8 *caps;
2057 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002060 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002061 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2062 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002063 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002064 put_unaligned(52, (u16 *)&tape->caps[12]);
2065 put_unaligned(540, (u16 *)&tape->caps[14]);
2066 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return;
2068 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002069 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Borislav Petkovb6422012008-02-02 19:56:49 +01002071 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002072 speed = be16_to_cpup((__be16 *)&caps[14]);
2073 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002075 *(u16 *)&caps[8] = max_speed;
2076 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2077 *(u16 *)&caps[14] = speed;
2078 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002079
2080 if (!speed) {
2081 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2082 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002083 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002085 if (!max_speed) {
2086 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2087 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002088 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090
Borislav Petkovb6422012008-02-02 19:56:49 +01002091 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002092
2093 /* device lacks locking support according to capabilities page */
2094 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02002095 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002096
Borislav Petkovb6422012008-02-02 19:56:49 +01002097 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002098 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002099 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002100 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002103#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002104#define ide_tape_devset_get(name, field) \
2105static int get_##name(ide_drive_t *drive) \
2106{ \
2107 idetape_tape_t *tape = drive->driver_data; \
2108 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002110
2111#define ide_tape_devset_set(name, field) \
2112static int set_##name(ide_drive_t *drive, int arg) \
2113{ \
2114 idetape_tape_t *tape = drive->driver_data; \
2115 tape->field = arg; \
2116 return 0; \
2117}
2118
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002119#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002120ide_tape_devset_get(_name, _field) \
2121ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002122IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002123
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002124#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002125ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002126IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002127
2128static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2129static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2130static int divf_buffer(ide_drive_t *drive) { return 2; }
2131static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2132
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002133ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002134
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002135ide_tape_devset_rw_field(debug_mask, debug_mask);
2136ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002137
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002138ide_tape_devset_r_field(avg_speed, avg_speed);
2139ide_tape_devset_r_field(speed, caps[14]);
2140ide_tape_devset_r_field(buffer, caps[16]);
2141ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002142
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002143static const struct ide_proc_devset idetape_settings[] = {
2144 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2145 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2146 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2147 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2148 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2149 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2150 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2151 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01002152 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002153};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002154#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002157 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002159 * 1. Initialize our various state variables.
2160 * 2. Ask the tape for its capabilities.
2161 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2162 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002164 * Note that at this point ide.c already assigned us an irq, so that we can
2165 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002167static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Borislav Petkov83042b22008-04-27 15:38:27 +02002169 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002171 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002172 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002174 drive->pc_callback = ide_tape_callback;
2175 drive->pc_update_buffers = idetape_update_buffers;
2176 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002177
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002178 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2179
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002180 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2181 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2182 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002183 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002187 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002188 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 tape->minor = minor;
2191 tape->name[0] = 'h';
2192 tape->name[1] = 't';
2193 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002194 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 idetape_get_inquiry_results(drive);
2197 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002198 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002200 tape->buffer_size = *ctl * tape->blk_size;
2201 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002203 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002204 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002206 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002207 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002208 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002209 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002210 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
2212
Borislav Petkov83042b22008-04-27 15:38:27 +02002213 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002214 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Borislav Petkovf73850a2008-04-27 15:38:33 +02002216 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002219 * Ensure that the number we got makes sense; limit it within
2220 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002222 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2223 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002225 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002226 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002227 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2228 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002229 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002230 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002232 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233}
2234
Russell King4031bbe2006-01-06 11:41:00 +00002235static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
2237 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002239 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002240 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 ide_unregister_region(tape->disk);
2242
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002243 mutex_lock(&idetape_ref_mutex);
2244 put_device(&tape->dev);
2245 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002248static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002250 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 ide_drive_t *drive = tape->drive;
2252 struct gendisk *g = tape->disk;
2253
Borislav Petkov01a63ae2008-04-27 15:38:34 +02002254 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002255
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002256 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002258 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002259 device_destroy(idetape_sysfs_class,
2260 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 idetape_devs[tape->minor] = NULL;
2262 g->private_data = NULL;
2263 put_disk(g);
2264 kfree(tape);
2265}
2266
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002267#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268static int proc_idetape_read_name
2269 (char *page, char **start, off_t off, int count, int *eof, void *data)
2270{
2271 ide_drive_t *drive = (ide_drive_t *) data;
2272 idetape_tape_t *tape = drive->driver_data;
2273 char *out = page;
2274 int len;
2275
2276 len = sprintf(out, "%s\n", tape->name);
2277 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2278}
2279
2280static ide_proc_entry_t idetape_proc[] = {
2281 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2282 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2283 { NULL, 0, NULL, NULL }
2284};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002285
2286static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2287{
2288 return idetape_proc;
2289}
2290
2291static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2292{
2293 return idetape_settings;
2294}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295#endif
2296
Russell King4031bbe2006-01-06 11:41:00 +00002297static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01002299static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002300 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002301 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002302 .name = "ide-tape",
2303 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002304 },
Russell King4031bbe2006-01-06 11:41:00 +00002305 .probe = ide_tape_probe,
2306 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 .do_request = idetape_do_request,
2309 .end_request = idetape_end_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002310#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002311 .proc_entries = ide_tape_proc_entries,
2312 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002313#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314};
2315
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002316/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002317static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 .owner = THIS_MODULE,
2319 .read = idetape_chrdev_read,
2320 .write = idetape_chrdev_write,
2321 .ioctl = idetape_chrdev_ioctl,
2322 .open = idetape_chrdev_open,
2323 .release = idetape_chrdev_release,
2324};
2325
Al Viroa4600f82008-03-02 10:27:58 -05002326static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Al Viroa4600f82008-03-02 10:27:58 -05002328 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002330 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return -ENXIO;
2332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return 0;
2334}
2335
Al Viroa4600f82008-03-02 10:27:58 -05002336static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002338 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return 0;
2342}
2343
Al Viroa4600f82008-03-02 10:27:58 -05002344static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 unsigned int cmd, unsigned long arg)
2346{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002347 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04002349 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if (err == -EINVAL)
2351 err = idetape_blkdev_ioctl(drive, cmd, arg);
2352 return err;
2353}
2354
2355static struct block_device_operations idetape_block_ops = {
2356 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05002357 .open = idetape_open,
2358 .release = idetape_release,
2359 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360};
2361
Russell King4031bbe2006-01-06 11:41:00 +00002362static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
2364 idetape_tape_t *tape;
2365 struct gendisk *g;
2366 int minor;
2367
2368 if (!strstr("ide-tape", drive->driver_req))
2369 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002370
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 if (drive->media != ide_tape)
2372 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002373
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002374 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2375 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002376 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2377 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 goto failed;
2379 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002380 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002382 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2383 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 goto failed;
2385 }
2386
2387 g = alloc_disk(1 << PARTN_BITS);
2388 if (!g)
2389 goto out_free_tape;
2390
2391 ide_init_disk(g, drive);
2392
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002393 tape->dev.parent = &drive->gendev;
2394 tape->dev.release = ide_tape_release;
2395 dev_set_name(&tape->dev, dev_name(&drive->gendev));
2396
2397 if (device_register(&tape->dev))
2398 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 tape->drive = drive;
2401 tape->driver = &idetape_driver;
2402 tape->disk = g;
2403
2404 g->private_data = &tape->driver;
2405
2406 drive->driver_data = tape;
2407
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002408 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 for (minor = 0; idetape_devs[minor]; minor++)
2410 ;
2411 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002412 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 idetape_setup(drive, tape, minor);
2415
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002416 device_create(idetape_sysfs_class, &drive->gendev,
2417 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2418 device_create(idetape_sysfs_class, &drive->gendev,
2419 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2420 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 g->fops = &idetape_block_ops;
2423 ide_register_region(g);
2424
2425 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002426
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002427out_free_disk:
2428 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429out_free_tape:
2430 kfree(tape);
2431failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002432 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002435static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002437 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002438 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 unregister_chrdev(IDETAPE_MAJOR, "ht");
2440}
2441
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002442static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Will Dysond5dee802005-09-16 02:55:07 -07002444 int error = 1;
2445 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2446 if (IS_ERR(idetape_sysfs_class)) {
2447 idetape_sysfs_class = NULL;
2448 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2449 error = -EBUSY;
2450 goto out;
2451 }
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002454 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2455 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002456 error = -EBUSY;
2457 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 }
Will Dysond5dee802005-09-16 02:55:07 -07002459
2460 error = driver_register(&idetape_driver.gen_driver);
2461 if (error)
2462 goto out_free_driver;
2463
2464 return 0;
2465
2466out_free_driver:
2467 driver_unregister(&idetape_driver.gen_driver);
2468out_free_class:
2469 class_destroy(idetape_sysfs_class);
2470out:
2471 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
Kay Sievers263756e2005-12-12 18:03:44 +01002474MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475module_init(idetape_init);
2476module_exit(idetape_exit);
2477MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002478MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2479MODULE_LICENSE("GPL");