blob: a42e49c6cc3f36951737ff44ed9affbee891f6ba [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 Petkov01a63aeb2008-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
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200464static void ide_tape_handle_dsc(ide_drive_t *);
465
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100466static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200469 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100470 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200471 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100472 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100474 debug_log(DBG_PROCS, "Enter %s\n", __func__);
475
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200476 if (dsc)
477 ide_tape_handle_dsc(drive);
478
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100479 if (drive->failed_pc == pc)
480 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200481
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200482 if (pc->c[0] == REQUEST_SENSE) {
483 if (uptodate)
484 idetape_analyze_error(drive, pc->buf);
485 else
486 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
487 "itself - Aborting request!\n");
488 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200489 int blocks = pc->xferred / tape->blk_size;
490
491 tape->avg_size += blocks * tape->blk_size;
492
493 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
494 tape->avg_speed = tape->avg_size * HZ /
495 (jiffies - tape->avg_time) / 1024;
496 tape->avg_size = 0;
497 tape->avg_time = jiffies;
498 }
499
500 tape->first_frame += blocks;
501 rq->current_nr_sectors -= blocks;
502
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100503 if (pc->error) {
504 uptodate = 0;
505 err = pc->error;
506 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200507 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200508 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200509
510 debug_log(DBG_SENSE, "BOP - %s\n",
511 (readpos[0] & 0x80) ? "Yes" : "No");
512 debug_log(DBG_SENSE, "EOP - %s\n",
513 (readpos[0] & 0x40) ? "Yes" : "No");
514
515 if (readpos[0] & 0x4) {
516 printk(KERN_INFO "ide-tape: Block location is unknown"
517 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200518 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200519 uptodate = 0;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100520 err = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200521 } else {
522 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200523 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200524
525 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200526 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200527 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200530
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100531 rq->errors = err;
532
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100533 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100537 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100538 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100540static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 idetape_tape_t *tape = drive->driver_data;
543
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100544 debug_log(DBG_PROCS, "Enter %s\n", __func__);
545
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100546 tape->postponed_rq = drive->hwif->rq;
547
Borislav Petkov54bb2072008-02-06 02:57:52 +0100548 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200551static void ide_tape_handle_dsc(ide_drive_t *drive)
552{
553 idetape_tape_t *tape = drive->driver_data;
554
555 /* Media access command */
556 tape->dsc_polling_start = jiffies;
557 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
558 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
559 /* Allow ide.c to handle other requests */
560 idetape_postpone_request(drive);
561}
562
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200563static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200564 unsigned int bcount, int write)
565{
566 if (write)
567 idetape_output_buffers(drive, pc, bcount);
568 else
569 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200570
571 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200572}
Borislav Petkova1efc852008-02-06 02:57:52 +0100573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100575 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200577 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100578 * until we finish handling it. Each packet command is associated with a
579 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100581 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100583 * 1. idetape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200584 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200586 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100587 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100589 * 3. ATAPI Tape media access commands have immediate status with a delayed
590 * process. In case of a successful initiation of a media access packet command,
591 * the DSC bit will be set when the actual execution of the command is finished.
592 * Since the tape drive will not issue an interrupt, we have to poll for this
593 * event. In this case, we define the request as "low priority request" by
594 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
595 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100597 * ide.c will then give higher priority to requests which originate from the
598 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100600 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100602 * 5. In case an error was found, we queue a request sense packet command in
603 * front of the request queue and retry the operation up to
604 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100606 * 6. In case no error was found, or we decided to give up and not to retry
607 * again, the callback function will be called and then we will handle the next
608 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Borislav Petkovd236d742008-04-18 00:46:27 +0200611static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
612 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200616 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100617 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
619 "Two request sense in serial were issued\n");
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100622 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
623 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200626 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200629 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100631 * We will "abort" retrying a packet command in case legitimate
632 * error code was received (crossing a filemark, or end of the
633 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200635 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100636 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 tape->sense_key == 2 && tape->asc == 4 &&
638 (tape->ascq == 1 || tape->ascq == 8))) {
639 printk(KERN_ERR "ide-tape: %s: I/O error, "
640 "pc = %2x, key = %2x, "
641 "asc = %2x, ascq = %2x\n",
642 tape->name, pc->c[0],
643 tape->sense_key, tape->asc,
644 tape->ascq);
645 }
646 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100647 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100649 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200650 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200651 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100653 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100657 return ide_issue_pc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100660/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200661static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200663 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100664 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100666 /* DBD = 1 - Don't return block descriptors */
667 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 pc->c[2] = page_code;
669 /*
670 * Changed pc->c[3] to 0 (255 will at best return unused info).
671 *
672 * For SCSI this byte is defined as subpage instead of high byte
673 * of length and some IDE drives seem to interpret it this way
674 * and return an error when 255 is used.
675 */
676 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100677 /* We will just discard data in that case */
678 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200680 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200682 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200684 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100687static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200689 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200691 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100692 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200694 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100695
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200696 if (stat & ATA_DSC) {
697 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100699 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 printk(KERN_ERR "ide-tape: %s: I/O error, ",
701 tape->name);
702 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200703 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200704 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100708 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100709 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200711 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return ide_stopped;
713}
714
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200715static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200716 struct ide_atapi_pc *pc, struct request *rq,
717 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Borislav Petkov0014c752008-07-23 19:56:00 +0200719 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
720 unsigned int length = rq->current_nr_sectors;
721
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200722 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100723 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200726 pc->buf = NULL;
727 pc->buf_size = length * tape->blk_size;
728 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200729 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200730 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200732 if (opcode == READ_6) {
733 pc->c[0] = READ_6;
734 atomic_set(&bh->b_count, 0);
735 } else if (opcode == WRITE_6) {
736 pc->c[0] = WRITE_6;
737 pc->flags |= PC_FLAG_WRITING;
738 pc->b_data = bh->b_data;
739 pc->b_count = atomic_read(&bh->b_count);
740 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200741
742 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745static ide_startstop_t idetape_do_request(ide_drive_t *drive,
746 struct request *rq, sector_t block)
747{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200748 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200750 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100752 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Mark de Wever730616b2008-10-10 22:39:17 +0200754 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
755 " current_nr_sectors: %u\n",
756 (unsigned long long)rq->sector, rq->nr_sectors,
757 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Jens Axboe4aff5e22006-08-10 08:44:47 +0200759 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100760 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200762 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 ide_end_request(drive, 0, 0);
764 return ide_stopped;
765 }
766
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100767 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100768 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
769 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200770 goto out;
771 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (postponed_rq != NULL)
774 if (rq != postponed_rq) {
775 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
776 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100777 rq->errors = IDE_DRV_ERROR_GENERAL;
778 drive->failed_pc = NULL;
779 ide_complete_rq(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return ide_stopped;
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 tape->postponed_rq = NULL;
784
785 /*
786 * If the tape is still busy, postpone our request and service
787 * the other device meanwhile.
788 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200789 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200791 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
792 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200793 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200795 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200796 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200797 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200800 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200801 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (postponed_rq == NULL) {
803 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100804 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
806 } else if (time_after(jiffies, tape->dsc_timeout)) {
807 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
808 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200809 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 idetape_media_access_finished(drive);
811 return ide_stopped;
812 } else {
813 return ide_do_reset(drive);
814 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100815 } else if (time_after(jiffies,
816 tape->dsc_polling_start +
817 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100818 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 idetape_postpone_request(drive);
820 return ide_stopped;
821 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200822 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200823 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200824 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 goto out;
826 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200827 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200828 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200829 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 goto out;
831 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200832 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200833 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200834 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
835 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 goto out;
837 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200838 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 idetape_media_access_finished(drive);
840 return ide_stopped;
841 }
842 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200843
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200844out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100845 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200849 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200850 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100851 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200853 * It returns a pointer to the newly allocated buffer, or NULL in case of
854 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200856static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
857 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200859 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200860 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200861 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 char *b_data = NULL;
863
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200864 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
865 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (bh == NULL)
867 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200868
869 order = fls(pages) - 1;
870 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100871 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200873 b_allocd = (1 << order) * PAGE_SIZE;
874 pages &= (order-1);
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200877 memset(bh->b_data, 0, b_allocd);
878 bh->b_reqnext = NULL;
879 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 atomic_set(&bh->b_count, full ? bh->b_size : 0);
881
Borislav Petkov41aa1702008-04-27 15:38:32 +0200882 while (pages) {
883 order = fls(pages) - 1;
884 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100885 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200887 b_allocd = (1 << order) * PAGE_SIZE;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200890 memset(b_data, 0, b_allocd);
891
892 /* newly allocated page frames below buffer header or ...*/
893 if (bh->b_data == b_data + b_allocd) {
894 bh->b_size += b_allocd;
895 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200897 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 continue;
899 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200900 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200902 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200904 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 continue;
906 }
907 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100908 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
909 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200910 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 goto abort;
912 }
913 bh->b_reqnext = NULL;
914 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200915 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 atomic_set(&bh->b_count, full ? bh->b_size : 0);
917 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200918
919 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 bh->b_size -= tape->excess_bh_size;
923 if (full)
924 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200925 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200927 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return NULL;
929}
930
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100931static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200932 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 struct idetape_bh *bh = tape->bh;
935 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700936 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100940 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
941 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700942 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100944 count = min((unsigned int)
945 (bh->b_size - atomic_read(&bh->b_count)),
946 (unsigned int)n);
947 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
948 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700949 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 n -= count;
951 atomic_add(count, &bh->b_count);
952 buf += count;
953 if (atomic_read(&bh->b_count) == bh->b_size) {
954 bh = bh->b_reqnext;
955 if (bh)
956 atomic_set(&bh->b_count, 0);
957 }
958 }
959 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700960 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100963static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +0200964 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 struct idetape_bh *bh = tape->bh;
967 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700968 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100972 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
973 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700974 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700977 if (copy_to_user(buf, tape->b_data, count))
978 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 n -= count;
980 tape->b_data += count;
981 tape->b_count -= count;
982 buf += count;
983 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100984 bh = bh->b_reqnext;
985 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (bh) {
987 tape->b_data = bh->b_data;
988 tape->b_count = atomic_read(&bh->b_count);
989 }
990 }
991 }
Daniel Walkerdcd96372006-06-25 05:47:37 -0700992 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200995static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200997 struct idetape_bh *bh = tape->merge_bh;
998 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100999
Borislav Petkov54abf372008-02-06 02:57:52 +01001000 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 atomic_set(&bh->b_count, 0);
1002 else {
1003 tape->b_data = bh->b_data;
1004 tape->b_count = atomic_read(&bh->b_count);
1005 }
1006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001009 * Write a filemark if write_filemark=1. Flush the device buffers without
1010 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001012static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001013 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001015 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001016 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001018 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1022{
1023 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001024 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 int load_attempted = 0;
1026
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001027 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001028 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 timeout += jiffies;
1030 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001031 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return 0;
1033 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001034 || (tape->asc == 0x3A)) {
1035 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (load_attempted)
1037 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001038 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 load_attempted = 1;
1040 /* not about to be ready */
1041 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1042 (tape->ascq == 1 || tape->ascq == 8)))
1043 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001044 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 return -EIO;
1047}
1048
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001049static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001051 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001052 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int rc;
1054
1055 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001056 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001057 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return rc;
1059 idetape_wait_ready(drive, 60 * 5 * HZ);
1060 return 0;
1061}
1062
Borislav Petkovd236d742008-04-18 00:46:27 +02001063static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001065 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001066 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001067 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001070static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
1072 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001073 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 int position;
1075
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001076 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001079 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001081 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return position;
1083}
1084
Borislav Petkovd236d742008-04-18 00:46:27 +02001085static void idetape_create_locate_cmd(ide_drive_t *drive,
1086 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001087 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001089 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001090 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001092 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001094 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001097static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
1099 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Borislav Petkov54abf372008-02-06 02:57:52 +01001101 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001102 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001104 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001105 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001106 if (tape->merge_bh != NULL) {
1107 ide_tape_kfree_buffer(tape);
1108 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
Borislav Petkov54abf372008-02-06 02:57:52 +01001111 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
1114/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001115 * Position the tape to the requested block using the LOCATE packet command.
1116 * A READ POSITION command is then issued to check where we are positioned. Like
1117 * all higher level operations, we queue the commands at the tail of the request
1118 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001120static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1121 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
1123 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001124 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001126 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Borislav Petkov54abf372008-02-06 02:57:52 +01001128 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001129 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 idetape_wait_ready(drive, 60 * 5 * HZ);
1131 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001132 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (retval)
1134 return (retval);
1135
1136 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001137 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001140static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001141 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 int seek, position;
1145
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001146 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (restore_position) {
1148 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001149 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001151 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001152 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return;
1154 }
1155 }
1156}
1157
1158/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001159 * Generate a read/write request for the block device interface and wait for it
1160 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001162static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1163 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001166 struct request *rq;
1167 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001169 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1170
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001171 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1172 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001173 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001174 rq->rq_disk = tape->disk;
1175 rq->special = (void *)bh;
1176 rq->sector = tape->first_frame;
1177 rq->nr_sectors = blocks;
1178 rq->current_nr_sectors = blocks;
1179 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1180
1181 errors = rq->errors;
1182 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1183 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1186 return 0;
1187
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001188 if (tape->merge_bh)
1189 idetape_init_merge_buffer(tape);
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +01001190 if (errors == IDE_DRV_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001192 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
Borislav Petkovd236d742008-04-18 00:46:27 +02001195static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001197 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001198 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001199 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001200 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Borislav Petkovd236d742008-04-18 00:46:27 +02001203static void idetape_create_rewind_cmd(ide_drive_t *drive,
1204 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001206 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001207 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001208 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
Borislav Petkovd236d742008-04-18 00:46:27 +02001211static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001213 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001214 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001216 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
1218
Borislav Petkovd236d742008-04-18 00:46:27 +02001219static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001221 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001222 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001223 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001225 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Borislav Petkov97c566c2008-04-27 15:38:25 +02001228/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001229static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
1231 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001233 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001235 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001236 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
Borislav Petkovd9df9372008-04-27 15:38:34 +02001239static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 idetape_tape_t *tape = drive->driver_data;
1242 int blocks, min;
1243 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001244
Borislav Petkov54abf372008-02-06 02:57:52 +01001245 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001246 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001247 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return;
1249 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001250 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001252 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001254 if (tape->merge_bh_size) {
1255 blocks = tape->merge_bh_size / tape->blk_size;
1256 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 unsigned int i;
1258
1259 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001260 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001261 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 bh = tape->bh->b_reqnext;
1263 while (bh) {
1264 atomic_set(&bh->b_count, 0);
1265 bh = bh->b_reqnext;
1266 }
1267 bh = tape->bh;
1268 while (i) {
1269 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001270 printk(KERN_INFO "ide-tape: bug,"
1271 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 break;
1273 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001274 min = min(i, (unsigned int)(bh->b_size -
1275 atomic_read(&bh->b_count)));
1276 memset(bh->b_data + atomic_read(&bh->b_count),
1277 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 atomic_add(min, &bh->b_count);
1279 i -= min;
1280 bh = bh->b_reqnext;
1281 }
1282 }
1283 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001284 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001286 if (tape->merge_bh != NULL) {
1287 ide_tape_kfree_buffer(tape);
1288 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001290 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
Borislav Petkov83042b22008-04-27 15:38:27 +02001293static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001299 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1300 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001301 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 idetape_flush_tape_buffers(drive);
1303 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001304 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001305 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001306 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001307 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001309 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1310 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001312 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001315 * Issue a read 0 command to ensure that DSC handshake is
1316 * switched from completion mode to buffer available mode.
1317 * No point in issuing this if DSC overlap isn't supported, some
1318 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001320 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001321 bytes_read = idetape_queue_rw_tail(drive,
1322 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001323 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001325 ide_tape_kfree_buffer(tape);
1326 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001327 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return bytes_read;
1329 }
1330 }
1331 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return 0;
1334}
1335
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001336/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001337static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001341 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001343 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001344 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return 0;
1346
Borislav Petkov83042b22008-04-27 15:38:27 +02001347 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001349 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001350 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001353static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
1355 idetape_tape_t *tape = drive->driver_data;
1356 struct idetape_bh *bh;
1357 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 while (bcount) {
1360 unsigned int count;
1361
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001362 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001363 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001365 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001367 atomic_set(&bh->b_count,
1368 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1370 count -= atomic_read(&bh->b_count);
1371 bh = bh->b_reqnext;
1372 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001373 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001374 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376}
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001379 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1380 * currently support only one partition.
1381 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001382static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001384 struct ide_tape_obj *tape = drive->driver_data;
1385 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001387 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001388
1389 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001392 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 if (retval)
1394 return retval;
1395
1396 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001397 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (retval)
1399 return retval;
1400 return 0;
1401}
1402
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001403/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001404static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1405 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 void __user *argp = (void __user *)arg;
1409
Borislav Petkovd59823f2008-02-02 19:56:51 +01001410 struct idetape_config {
1411 int dsc_rw_frequency;
1412 int dsc_media_access_frequency;
1413 int nr_stages;
1414 } config;
1415
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001416 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001419 case 0x0340:
1420 if (copy_from_user(&config, argp, sizeof(config)))
1421 return -EFAULT;
1422 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001423 break;
1424 case 0x0350:
1425 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001426 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001427 if (copy_to_user(argp, &config, sizeof(config)))
1428 return -EFAULT;
1429 break;
1430 default:
1431 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433 return 0;
1434}
1435
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001436static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1437 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
1439 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001440 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001441 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001442 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001443 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 if (mt_count == 0)
1446 return 0;
1447 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001448 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001450 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
Borislav Petkov54abf372008-02-06 02:57:52 +01001453 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001454 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001455 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001457 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001461 case MTFSF:
1462 case MTBSF:
1463 idetape_create_space_cmd(&pc, mt_count - count,
1464 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001465 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001466 case MTFSFM:
1467 case MTBSFM:
1468 if (!sprev)
1469 return -EIO;
1470 retval = idetape_space_over_filemarks(drive, MTFSF,
1471 mt_count - count);
1472 if (retval)
1473 return retval;
1474 count = (MTBSFM == mt_op ? 1 : -1);
1475 return idetape_space_over_filemarks(drive, MTFSF, count);
1476 default:
1477 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1478 mt_op);
1479 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481}
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001484 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001486 * The tape is optimized to maximize throughput when it is transferring an
1487 * integral number of the "continuous transfer limit", which is a parameter of
1488 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001490 * As of version 1.3 of the driver, the character device provides an abstract
1491 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1492 * same backup/restore procedure is supported. The driver will internally
1493 * convert the requests to the recommended transfer unit, so that an unmatch
1494 * between the user's block size to the recommended size will only result in a
1495 * (slightly) increased driver overhead, but will no longer hit performance.
1496 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001498static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1499 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001501 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001503 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001504 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001505 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001507 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Borislav Petkov54abf372008-02-06 02:57:52 +01001509 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001510 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001511 if (count > tape->blk_size &&
1512 (count % tape->blk_size) == 0)
1513 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001515 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001516 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return rc;
1518 if (count == 0)
1519 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001520 if (tape->merge_bh_size) {
1521 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001522 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001523 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001524 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001526 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 count -= actually_read;
1528 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001529 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001530 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 if (bytes_read <= 0)
1532 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001533 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001534 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 buf += bytes_read;
1536 count -= bytes_read;
1537 actually_read += bytes_read;
1538 }
1539 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001540 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (bytes_read <= 0)
1542 goto finish;
1543 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001544 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001545 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001547 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001550 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001551 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 idetape_space_over_filemarks(drive, MTFSF, 1);
1554 return 0;
1555 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001556
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001557 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001560static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 size_t count, loff_t *ppos)
1562{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001563 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001565 ssize_t actually_written = 0;
1566 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001567 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 /* The drive is write protected. */
1570 if (tape->write_prot)
1571 return -EACCES;
1572
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001573 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001576 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1577 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001578 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001579 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001580 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001582 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001584 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1585 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001587 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001588 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001591 * Issue a write 0 command to ensure that DSC handshake is
1592 * switched from completion mode to buffer available mode. No
1593 * point in issuing this if DSC overlap isn't supported, some
1594 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001596 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001597 ssize_t retval = idetape_queue_rw_tail(drive,
1598 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001599 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001601 ide_tape_kfree_buffer(tape);
1602 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001603 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return retval;
1605 }
1606 }
1607 }
1608 if (count == 0)
1609 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001610 if (tape->merge_bh_size) {
1611 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001612 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001613 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001615 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001616 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001617 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001618 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001619 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001621 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 count -= actually_written;
1623
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001624 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001625 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001626 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001627 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (retval <= 0)
1629 return (retval);
1630 }
1631 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001632 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001633 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001634 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001635 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001636 buf += tape->buffer_size;
1637 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001638 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001639 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (retval <= 0)
1641 return (retval);
1642 }
1643 if (count) {
1644 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001645 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001646 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001647 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001649 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001652static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001654 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001655 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 /* Write a filemark */
1658 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001659 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1661 return -EIO;
1662 }
1663 return 0;
1664}
1665
1666/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001667 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1668 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001670 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1671 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001672 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001674 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001676 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1677 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001679static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001682 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001683 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001684 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001686 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1687 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001690 case MTFSF:
1691 case MTFSFM:
1692 case MTBSF:
1693 case MTBSFM:
1694 if (!mt_count)
1695 return 0;
1696 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1697 default:
1698 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001702 case MTWEOF:
1703 if (tape->write_prot)
1704 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001705 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001706 for (i = 0; i < mt_count; i++) {
1707 retval = idetape_write_filemark(drive);
1708 if (retval)
1709 return retval;
1710 }
1711 return 0;
1712 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001713 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001714 if (idetape_rewind_tape(drive))
1715 return -EIO;
1716 return 0;
1717 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001718 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001719 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001720 case MTUNLOAD:
1721 case MTOFFL:
1722 /*
1723 * If door is locked, attempt to unlock before
1724 * attempting to eject.
1725 */
1726 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001727 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001728 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001729 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001730 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001731 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001732 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001733 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001734 return retval;
1735 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001736 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001737 return idetape_flush_tape_buffers(drive);
1738 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001739 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001740 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001741 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001742 case MTEOM:
1743 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001744 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001745 case MTERASE:
1746 (void)idetape_rewind_tape(drive);
1747 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001748 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001749 case MTSETBLK:
1750 if (mt_count) {
1751 if (mt_count < tape->blk_size ||
1752 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001754 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001755 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001756 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001757 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001758 return 0;
1759 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001760 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001761 return idetape_position_tape(drive,
1762 mt_count * tape->user_bs_factor, tape->partition, 0);
1763 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001764 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001765 return idetape_position_tape(drive, 0, mt_count, 0);
1766 case MTFSR:
1767 case MTBSR:
1768 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001769 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001770 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001772 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1773 return 0;
1774 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001775 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001776 if (retval)
1777 return retval;
1778 tape->door_locked = DOOR_UNLOCKED;
1779 return 0;
1780 default:
1781 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1782 mt_op);
1783 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785}
1786
1787/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001788 * Our character device ioctls. General mtio.h magnetic io commands are
1789 * supported here, and not in the corresponding block interface. Our own
1790 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001792static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1793 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001795 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 ide_drive_t *drive = tape->drive;
1797 struct mtop mtop;
1798 struct mtget mtget;
1799 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001800 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 void __user *argp = (void __user *)arg;
1802
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001803 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Borislav Petkov54abf372008-02-06 02:57:52 +01001805 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001806 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 idetape_flush_tape_buffers(drive);
1808 }
1809 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001810 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001811 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001812 position = idetape_read_position(drive);
1813 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return -EIO;
1815 }
1816 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001817 case MTIOCTOP:
1818 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1819 return -EFAULT;
1820 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1821 case MTIOCGET:
1822 memset(&mtget, 0, sizeof(struct mtget));
1823 mtget.mt_type = MT_ISSCSI2;
1824 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1825 mtget.mt_dsreg =
1826 ((tape->blk_size * tape->user_bs_factor)
1827 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001828
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001829 if (tape->drv_write_prot)
1830 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1831
1832 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1833 return -EFAULT;
1834 return 0;
1835 case MTIOCPOS:
1836 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1837 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1838 return -EFAULT;
1839 return 0;
1840 default:
1841 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001842 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001843 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845}
1846
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001847/*
1848 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1849 * block size with the reported value.
1850 */
1851static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1852{
1853 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001854 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001855
1856 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001857 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001858 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001859 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001860 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1861 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001862 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001863 }
1864 return;
1865 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001866 tape->blk_size = (pc.buf[4 + 5] << 16) +
1867 (pc.buf[4 + 6] << 8) +
1868 pc.buf[4 + 7];
1869 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001870}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001872static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
1874 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1875 ide_drive_t *drive;
1876 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 int retval;
1878
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001879 if (i >= MAX_HWIFS * MAX_DRIVES)
1880 return -ENXIO;
1881
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001882 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001883 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001884 if (!tape) {
1885 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001886 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001887 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001888
1889 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 /*
1892 * We really want to do nonseekable_open(inode, filp); here, but some
1893 * versions of tar incorrectly call lseek on tapes and bail out if that
1894 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1895 */
1896 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 drive = tape->drive;
1899
1900 filp->private_data = tape;
1901
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001902 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 retval = -EBUSY;
1904 goto out_put_tape;
1905 }
1906
1907 retval = idetape_wait_ready(drive, 60 * HZ);
1908 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001909 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1911 goto out_put_tape;
1912 }
1913
1914 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001915 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 (void)idetape_rewind_tape(drive);
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001919 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 /* Set write protect flag if device is opened as read-only. */
1922 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1923 tape->write_prot = 1;
1924 else
1925 tape->write_prot = tape->drv_write_prot;
1926
1927 /* Make sure drive isn't write protected if user wants to write. */
1928 if (tape->write_prot) {
1929 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1930 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001931 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 retval = -EROFS;
1933 goto out_put_tape;
1934 }
1935 }
1936
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001937 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001938 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001939 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001940 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1941 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001944 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return 0;
1946
1947out_put_tape:
1948 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001949 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return retval;
1951}
1952
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001953static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
1955 idetape_tape_t *tape = drive->driver_data;
1956
Borislav Petkovd9df9372008-04-27 15:38:34 +02001957 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001958 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1959 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001960 idetape_pad_zeros(drive, tape->blk_size *
1961 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001962 ide_tape_kfree_buffer(tape);
1963 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965 idetape_write_filemark(drive);
1966 idetape_flush_tape_buffers(drive);
1967 idetape_flush_tape_buffers(drive);
1968}
1969
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001970static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001972 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 unsigned int minor = iminor(inode);
1975
1976 lock_kernel();
1977 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001978
1979 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Borislav Petkov54abf372008-02-06 02:57:52 +01001981 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001983 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001985 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001987
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001988 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01001990 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001992 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001993 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
1995 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001996 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 ide_tape_put(tape);
1998 unlock_kernel();
1999 return 0;
2000}
2001
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002002static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002005 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002006 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002009 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002010 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2011 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return;
2013 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002014 memcpy(vendor_id, &pc.buf[8], 8);
2015 memcpy(product_id, &pc.buf[16], 16);
2016 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002017
Borislav Petkov801bd322008-09-27 19:32:17 +02002018 ide_fixstring(vendor_id, 8, 0);
2019 ide_fixstring(product_id, 16, 0);
2020 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002021
Borislav Petkov801bd322008-09-27 19:32:17 +02002022 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002023 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
2026/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002027 * Ask the tape about its various parameters. In particular, we will adjust our
2028 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002030static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
2032 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002033 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002034 u8 *caps;
2035 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002038 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002039 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2040 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002041 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002042 put_unaligned(52, (u16 *)&tape->caps[12]);
2043 put_unaligned(540, (u16 *)&tape->caps[14]);
2044 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return;
2046 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002047 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Borislav Petkovb6422012008-02-02 19:56:49 +01002049 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002050 speed = be16_to_cpup((__be16 *)&caps[14]);
2051 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002053 *(u16 *)&caps[8] = max_speed;
2054 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2055 *(u16 *)&caps[14] = speed;
2056 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002057
2058 if (!speed) {
2059 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2060 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002061 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002063 if (!max_speed) {
2064 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2065 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002066 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068
Borislav Petkovb6422012008-02-02 19:56:49 +01002069 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002070
2071 /* device lacks locking support according to capabilities page */
2072 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02002073 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002074
Borislav Petkovb6422012008-02-02 19:56:49 +01002075 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002076 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002077 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002078 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079}
2080
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002081#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002082#define ide_tape_devset_get(name, field) \
2083static int get_##name(ide_drive_t *drive) \
2084{ \
2085 idetape_tape_t *tape = drive->driver_data; \
2086 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002088
2089#define ide_tape_devset_set(name, field) \
2090static int set_##name(ide_drive_t *drive, int arg) \
2091{ \
2092 idetape_tape_t *tape = drive->driver_data; \
2093 tape->field = arg; \
2094 return 0; \
2095}
2096
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002097#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002098ide_tape_devset_get(_name, _field) \
2099ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002100IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002101
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002102#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002103ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002104IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002105
2106static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2107static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2108static int divf_buffer(ide_drive_t *drive) { return 2; }
2109static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2110
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002111ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002112
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002113ide_tape_devset_rw_field(debug_mask, debug_mask);
2114ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002115
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002116ide_tape_devset_r_field(avg_speed, avg_speed);
2117ide_tape_devset_r_field(speed, caps[14]);
2118ide_tape_devset_r_field(buffer, caps[16]);
2119ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002120
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002121static const struct ide_proc_devset idetape_settings[] = {
2122 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2123 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2124 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2125 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2126 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2127 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2128 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2129 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01002130 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002131};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002132#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002135 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002137 * 1. Initialize our various state variables.
2138 * 2. Ask the tape for its capabilities.
2139 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2140 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002142 * Note that at this point ide.c already assigned us an irq, so that we can
2143 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002145static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Borislav Petkov83042b22008-04-27 15:38:27 +02002147 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002149 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002150 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002152 drive->pc_callback = ide_tape_callback;
2153 drive->pc_update_buffers = idetape_update_buffers;
2154 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002155
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002156 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2157
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002158 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2159 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2160 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002161 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002165 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002166 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 tape->minor = minor;
2169 tape->name[0] = 'h';
2170 tape->name[1] = 't';
2171 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002172 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 idetape_get_inquiry_results(drive);
2175 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002176 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002178 tape->buffer_size = *ctl * tape->blk_size;
2179 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002181 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002182 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002184 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002185 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002186 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002187 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002188 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 }
2190
Borislav Petkov83042b22008-04-27 15:38:27 +02002191 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002192 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Borislav Petkovf73850a2008-04-27 15:38:33 +02002194 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002197 * Ensure that the number we got makes sense; limit it within
2198 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002200 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2201 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002203 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002204 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002205 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2206 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002207 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002208 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002210 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211}
2212
Russell King4031bbe2006-01-06 11:41:00 +00002213static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
2215 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002217 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002218 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 ide_unregister_region(tape->disk);
2220
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002221 mutex_lock(&idetape_ref_mutex);
2222 put_device(&tape->dev);
2223 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224}
2225
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002226static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002228 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 ide_drive_t *drive = tape->drive;
2230 struct gendisk *g = tape->disk;
2231
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002232 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002233
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002234 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002236 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002237 device_destroy(idetape_sysfs_class,
2238 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 idetape_devs[tape->minor] = NULL;
2240 g->private_data = NULL;
2241 put_disk(g);
2242 kfree(tape);
2243}
2244
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002245#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246static int proc_idetape_read_name
2247 (char *page, char **start, off_t off, int count, int *eof, void *data)
2248{
2249 ide_drive_t *drive = (ide_drive_t *) data;
2250 idetape_tape_t *tape = drive->driver_data;
2251 char *out = page;
2252 int len;
2253
2254 len = sprintf(out, "%s\n", tape->name);
2255 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2256}
2257
2258static ide_proc_entry_t idetape_proc[] = {
2259 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2260 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2261 { NULL, 0, NULL, NULL }
2262};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002263
2264static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2265{
2266 return idetape_proc;
2267}
2268
2269static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2270{
2271 return idetape_settings;
2272}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273#endif
2274
Russell King4031bbe2006-01-06 11:41:00 +00002275static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01002277static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002278 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002279 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002280 .name = "ide-tape",
2281 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002282 },
Russell King4031bbe2006-01-06 11:41:00 +00002283 .probe = ide_tape_probe,
2284 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002287#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002288 .proc_entries = ide_tape_proc_entries,
2289 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002290#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291};
2292
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002293/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002294static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 .owner = THIS_MODULE,
2296 .read = idetape_chrdev_read,
2297 .write = idetape_chrdev_write,
2298 .ioctl = idetape_chrdev_ioctl,
2299 .open = idetape_chrdev_open,
2300 .release = idetape_chrdev_release,
2301};
2302
Al Viroa4600f82008-03-02 10:27:58 -05002303static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Al Viroa4600f82008-03-02 10:27:58 -05002305 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002307 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return -ENXIO;
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 return 0;
2311}
2312
Al Viroa4600f82008-03-02 10:27:58 -05002313static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002315 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return 0;
2319}
2320
Al Viroa4600f82008-03-02 10:27:58 -05002321static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 unsigned int cmd, unsigned long arg)
2323{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002324 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04002326 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 if (err == -EINVAL)
2328 err = idetape_blkdev_ioctl(drive, cmd, arg);
2329 return err;
2330}
2331
2332static struct block_device_operations idetape_block_ops = {
2333 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05002334 .open = idetape_open,
2335 .release = idetape_release,
2336 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337};
2338
Russell King4031bbe2006-01-06 11:41:00 +00002339static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
2341 idetape_tape_t *tape;
2342 struct gendisk *g;
2343 int minor;
2344
2345 if (!strstr("ide-tape", drive->driver_req))
2346 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 if (drive->media != ide_tape)
2349 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002350
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002351 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2352 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002353 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2354 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 goto failed;
2356 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002357 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002359 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2360 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 goto failed;
2362 }
2363
2364 g = alloc_disk(1 << PARTN_BITS);
2365 if (!g)
2366 goto out_free_tape;
2367
2368 ide_init_disk(g, drive);
2369
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002370 tape->dev.parent = &drive->gendev;
2371 tape->dev.release = ide_tape_release;
2372 dev_set_name(&tape->dev, dev_name(&drive->gendev));
2373
2374 if (device_register(&tape->dev))
2375 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 tape->drive = drive;
2378 tape->driver = &idetape_driver;
2379 tape->disk = g;
2380
2381 g->private_data = &tape->driver;
2382
2383 drive->driver_data = tape;
2384
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002385 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 for (minor = 0; idetape_devs[minor]; minor++)
2387 ;
2388 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002389 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 idetape_setup(drive, tape, minor);
2392
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002393 device_create(idetape_sysfs_class, &drive->gendev,
2394 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2395 device_create(idetape_sysfs_class, &drive->gendev,
2396 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2397 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 g->fops = &idetape_block_ops;
2400 ide_register_region(g);
2401
2402 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002403
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002404out_free_disk:
2405 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406out_free_tape:
2407 kfree(tape);
2408failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002409 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002412static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002414 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002415 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 unregister_chrdev(IDETAPE_MAJOR, "ht");
2417}
2418
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002419static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
Will Dysond5dee802005-09-16 02:55:07 -07002421 int error = 1;
2422 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2423 if (IS_ERR(idetape_sysfs_class)) {
2424 idetape_sysfs_class = NULL;
2425 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2426 error = -EBUSY;
2427 goto out;
2428 }
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002431 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2432 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002433 error = -EBUSY;
2434 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
Will Dysond5dee802005-09-16 02:55:07 -07002436
2437 error = driver_register(&idetape_driver.gen_driver);
2438 if (error)
2439 goto out_free_driver;
2440
2441 return 0;
2442
2443out_free_driver:
2444 driver_unregister(&idetape_driver.gen_driver);
2445out_free_class:
2446 class_destroy(idetape_sysfs_class);
2447out:
2448 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
Kay Sievers263756e2005-12-12 18:03:44 +01002451MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452module_init(idetape_init);
2453module_exit(idetape_exit);
2454MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002455MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2456MODULE_LICENSE("GPL");