blob: 64dfa7458f8dad568ad75cd4c9fc9074cd41e747 [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 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100583 * 1. ide_tape_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
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100611static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
612 struct ide_cmd *cmd,
613 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200617 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100618 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
620 "Two request sense in serial were issued\n");
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100623 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
624 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200627 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200630 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100632 * We will "abort" retrying a packet command in case legitimate
633 * error code was received (crossing a filemark, or end of the
634 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200636 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100637 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 tape->sense_key == 2 && tape->asc == 4 &&
639 (tape->ascq == 1 || tape->ascq == 8))) {
640 printk(KERN_ERR "ide-tape: %s: I/O error, "
641 "pc = %2x, key = %2x, "
642 "asc = %2x, ascq = %2x\n",
643 tape->name, pc->c[0],
644 tape->sense_key, tape->asc,
645 tape->ascq);
646 }
647 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100648 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100650 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200651 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200652 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100654 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100658 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100661/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200662static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200664 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100665 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100667 /* DBD = 1 - Don't return block descriptors */
668 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 pc->c[2] = page_code;
670 /*
671 * Changed pc->c[3] to 0 (255 will at best return unused info).
672 *
673 * For SCSI this byte is defined as subpage instead of high byte
674 * of length and some IDE drives seem to interpret it this way
675 * and return an error when 255 is used.
676 */
677 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100678 /* We will just discard data in that case */
679 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200681 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200683 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200685 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100688static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200690 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200692 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100693 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200695 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100696
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200697 if (stat & ATA_DSC) {
698 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100700 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 printk(KERN_ERR "ide-tape: %s: I/O error, ",
702 tape->name);
703 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200704 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200705 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100709 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100710 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200712 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return ide_stopped;
714}
715
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200716static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200717 struct ide_atapi_pc *pc, struct request *rq,
718 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Borislav Petkov0014c752008-07-23 19:56:00 +0200720 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
721 unsigned int length = rq->current_nr_sectors;
722
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200723 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100724 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200727 pc->buf = NULL;
728 pc->buf_size = length * tape->blk_size;
729 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200730 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200731 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200733 if (opcode == READ_6) {
734 pc->c[0] = READ_6;
735 atomic_set(&bh->b_count, 0);
736 } else if (opcode == WRITE_6) {
737 pc->c[0] = WRITE_6;
738 pc->flags |= PC_FLAG_WRITING;
739 pc->b_data = bh->b_data;
740 pc->b_count = atomic_read(&bh->b_count);
741 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200742
743 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746static ide_startstop_t idetape_do_request(ide_drive_t *drive,
747 struct request *rq, sector_t block)
748{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200749 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200751 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100753 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100754 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Mark de Wever730616b2008-10-10 22:39:17 +0200756 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
757 " current_nr_sectors: %u\n",
758 (unsigned long long)rq->sector, rq->nr_sectors,
759 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Jens Axboe4aff5e22006-08-10 08:44:47 +0200761 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100762 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200764 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100765 if (blk_fs_request(rq) == 0 && rq->errors == 0)
766 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100767 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return ide_stopped;
769 }
770
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100771 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100772 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
773 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200774 goto out;
775 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (postponed_rq != NULL)
778 if (rq != postponed_rq) {
779 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
780 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100781 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100782 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100783 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return ide_stopped;
785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 tape->postponed_rq = NULL;
788
789 /*
790 * If the tape is still busy, postpone our request and service
791 * the other device meanwhile.
792 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200793 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200795 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
796 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200797 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200799 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200800 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200801 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200804 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200805 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (postponed_rq == NULL) {
807 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100808 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
810 } else if (time_after(jiffies, tape->dsc_timeout)) {
811 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
812 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200813 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 idetape_media_access_finished(drive);
815 return ide_stopped;
816 } else {
817 return ide_do_reset(drive);
818 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100819 } else if (time_after(jiffies,
820 tape->dsc_polling_start +
821 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100822 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 idetape_postpone_request(drive);
824 return ide_stopped;
825 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200826 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200827 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200828 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto out;
830 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200831 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200832 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200833 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 goto out;
835 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200836 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200837 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200838 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
839 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 goto out;
841 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200842 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 idetape_media_access_finished(drive);
844 return ide_stopped;
845 }
846 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200847
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200848out:
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100849 memset(&cmd, 0, sizeof(cmd));
850
851 if (rq_data_dir(rq))
852 cmd.tf_flags |= IDE_TFLAG_WRITE;
853
854 cmd.rq = rq;
855
856 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200860 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200861 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100862 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200864 * It returns a pointer to the newly allocated buffer, or NULL in case of
865 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200867static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
868 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200870 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200871 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200872 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 char *b_data = NULL;
874
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200875 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
876 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (bh == NULL)
878 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200879
880 order = fls(pages) - 1;
881 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100882 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200884 b_allocd = (1 << order) * PAGE_SIZE;
885 pages &= (order-1);
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200888 memset(bh->b_data, 0, b_allocd);
889 bh->b_reqnext = NULL;
890 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 atomic_set(&bh->b_count, full ? bh->b_size : 0);
892
Borislav Petkov41aa1702008-04-27 15:38:32 +0200893 while (pages) {
894 order = fls(pages) - 1;
895 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100896 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200898 b_allocd = (1 << order) * PAGE_SIZE;
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200901 memset(b_data, 0, b_allocd);
902
903 /* newly allocated page frames below buffer header or ...*/
904 if (bh->b_data == b_data + b_allocd) {
905 bh->b_size += b_allocd;
906 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200908 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 continue;
910 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200911 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200913 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200915 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 continue;
917 }
918 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100919 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
920 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200921 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 goto abort;
923 }
924 bh->b_reqnext = NULL;
925 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200926 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 atomic_set(&bh->b_count, full ? bh->b_size : 0);
928 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200929
930 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 bh->b_size -= tape->excess_bh_size;
934 if (full)
935 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200936 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200938 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return NULL;
940}
941
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100942static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200943 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945 struct idetape_bh *bh = tape->bh;
946 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700947 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100951 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
952 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700953 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100955 count = min((unsigned int)
956 (bh->b_size - atomic_read(&bh->b_count)),
957 (unsigned int)n);
958 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
959 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700960 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 n -= count;
962 atomic_add(count, &bh->b_count);
963 buf += count;
964 if (atomic_read(&bh->b_count) == bh->b_size) {
965 bh = bh->b_reqnext;
966 if (bh)
967 atomic_set(&bh->b_count, 0);
968 }
969 }
970 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700971 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100974static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +0200975 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 struct idetape_bh *bh = tape->bh;
978 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700979 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100983 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
984 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700985 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700988 if (copy_to_user(buf, tape->b_data, count))
989 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 n -= count;
991 tape->b_data += count;
992 tape->b_count -= count;
993 buf += count;
994 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100995 bh = bh->b_reqnext;
996 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (bh) {
998 tape->b_data = bh->b_data;
999 tape->b_count = atomic_read(&bh->b_count);
1000 }
1001 }
1002 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001003 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001006static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001008 struct idetape_bh *bh = tape->merge_bh;
1009 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001010
Borislav Petkov54abf372008-02-06 02:57:52 +01001011 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 atomic_set(&bh->b_count, 0);
1013 else {
1014 tape->b_data = bh->b_data;
1015 tape->b_count = atomic_read(&bh->b_count);
1016 }
1017}
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001020 * Write a filemark if write_filemark=1. Flush the device buffers without
1021 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001023static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001024 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001026 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001027 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001029 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1033{
1034 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001035 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 int load_attempted = 0;
1037
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001038 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001039 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 timeout += jiffies;
1041 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001042 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001045 || (tape->asc == 0x3A)) {
1046 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (load_attempted)
1048 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001049 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 load_attempted = 1;
1051 /* not about to be ready */
1052 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1053 (tape->ascq == 1 || tape->ascq == 8)))
1054 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001055 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057 return -EIO;
1058}
1059
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001060static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001062 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001063 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 int rc;
1065
1066 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001067 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001068 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return rc;
1070 idetape_wait_ready(drive, 60 * 5 * HZ);
1071 return 0;
1072}
1073
Borislav Petkovd236d742008-04-18 00:46:27 +02001074static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001076 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001077 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001078 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001081static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001084 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 int position;
1086
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001087 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001090 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001092 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return position;
1094}
1095
Borislav Petkovd236d742008-04-18 00:46:27 +02001096static void idetape_create_locate_cmd(ide_drive_t *drive,
1097 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001098 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001100 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001101 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001103 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001105 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001108static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Borislav Petkov54abf372008-02-06 02:57:52 +01001112 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001113 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001115 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001116 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001117 if (tape->merge_bh != NULL) {
1118 ide_tape_kfree_buffer(tape);
1119 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121
Borislav Petkov54abf372008-02-06 02:57:52 +01001122 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
1125/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001126 * Position the tape to the requested block using the LOCATE packet command.
1127 * A READ POSITION command is then issued to check where we are positioned. Like
1128 * all higher level operations, we queue the commands at the tail of the request
1129 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001131static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1132 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
1134 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001135 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001137 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Borislav Petkov54abf372008-02-06 02:57:52 +01001139 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001140 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 idetape_wait_ready(drive, 60 * 5 * HZ);
1142 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001143 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (retval)
1145 return (retval);
1146
1147 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001148 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001151static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001152 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 int seek, position;
1156
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001157 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (restore_position) {
1159 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001160 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001162 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001163 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return;
1165 }
1166 }
1167}
1168
1169/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001170 * Generate a read/write request for the block device interface and wait for it
1171 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001173static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1174 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001177 struct request *rq;
1178 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001180 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1181
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001182 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1183 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001184 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001185 rq->rq_disk = tape->disk;
1186 rq->special = (void *)bh;
1187 rq->sector = tape->first_frame;
1188 rq->nr_sectors = blocks;
1189 rq->current_nr_sectors = blocks;
1190 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1191
1192 errors = rq->errors;
1193 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1194 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1197 return 0;
1198
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001199 if (tape->merge_bh)
1200 idetape_init_merge_buffer(tape);
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +01001201 if (errors == IDE_DRV_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001203 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Borislav Petkovd236d742008-04-18 00:46:27 +02001206static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001208 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001209 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001210 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001211 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
Borislav Petkovd236d742008-04-18 00:46:27 +02001214static void idetape_create_rewind_cmd(ide_drive_t *drive,
1215 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001217 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001218 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001219 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
Borislav Petkovd236d742008-04-18 00:46:27 +02001222static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001224 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001225 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001227 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Borislav Petkovd236d742008-04-18 00:46:27 +02001230static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001232 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001233 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001234 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001236 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
Borislav Petkov97c566c2008-04-27 15:38:25 +02001239/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001240static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001244 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001246 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001247 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Borislav Petkovd9df9372008-04-27 15:38:34 +02001250static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 idetape_tape_t *tape = drive->driver_data;
1253 int blocks, min;
1254 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001255
Borislav Petkov54abf372008-02-06 02:57:52 +01001256 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001257 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001258 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return;
1260 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001261 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001263 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001265 if (tape->merge_bh_size) {
1266 blocks = tape->merge_bh_size / tape->blk_size;
1267 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 unsigned int i;
1269
1270 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001271 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001272 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 bh = tape->bh->b_reqnext;
1274 while (bh) {
1275 atomic_set(&bh->b_count, 0);
1276 bh = bh->b_reqnext;
1277 }
1278 bh = tape->bh;
1279 while (i) {
1280 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001281 printk(KERN_INFO "ide-tape: bug,"
1282 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 break;
1284 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001285 min = min(i, (unsigned int)(bh->b_size -
1286 atomic_read(&bh->b_count)));
1287 memset(bh->b_data + atomic_read(&bh->b_count),
1288 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 atomic_add(min, &bh->b_count);
1290 i -= min;
1291 bh = bh->b_reqnext;
1292 }
1293 }
1294 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001295 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001297 if (tape->merge_bh != NULL) {
1298 ide_tape_kfree_buffer(tape);
1299 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001301 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
Borislav Petkov83042b22008-04-27 15:38:27 +02001304static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001310 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1311 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001312 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 idetape_flush_tape_buffers(drive);
1314 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001315 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001316 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001317 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001318 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001320 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1321 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001323 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001326 * Issue a read 0 command to ensure that DSC handshake is
1327 * switched from completion mode to buffer available mode.
1328 * No point in issuing this if DSC overlap isn't supported, some
1329 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001331 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001332 bytes_read = idetape_queue_rw_tail(drive,
1333 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001334 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001336 ide_tape_kfree_buffer(tape);
1337 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001338 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return bytes_read;
1340 }
1341 }
1342 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return 0;
1345}
1346
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001347/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001348static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001352 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001354 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001355 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return 0;
1357
Borislav Petkov83042b22008-04-27 15:38:27 +02001358 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001360 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001361 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001364static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 idetape_tape_t *tape = drive->driver_data;
1367 struct idetape_bh *bh;
1368 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 while (bcount) {
1371 unsigned int count;
1372
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001373 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001374 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001376 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001378 atomic_set(&bh->b_count,
1379 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1381 count -= atomic_read(&bh->b_count);
1382 bh = bh->b_reqnext;
1383 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001384 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001385 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387}
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001390 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1391 * currently support only one partition.
1392 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001393static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001395 struct ide_tape_obj *tape = drive->driver_data;
1396 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001398 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001399
1400 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001403 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (retval)
1405 return retval;
1406
1407 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001408 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (retval)
1410 return retval;
1411 return 0;
1412}
1413
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001414/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001415static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1416 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
1418 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 void __user *argp = (void __user *)arg;
1420
Borislav Petkovd59823f2008-02-02 19:56:51 +01001421 struct idetape_config {
1422 int dsc_rw_frequency;
1423 int dsc_media_access_frequency;
1424 int nr_stages;
1425 } config;
1426
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001427 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001430 case 0x0340:
1431 if (copy_from_user(&config, argp, sizeof(config)))
1432 return -EFAULT;
1433 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001434 break;
1435 case 0x0350:
1436 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001437 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001438 if (copy_to_user(argp, &config, sizeof(config)))
1439 return -EFAULT;
1440 break;
1441 default:
1442 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444 return 0;
1445}
1446
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001447static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1448 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001451 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001452 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001453 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001454 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 if (mt_count == 0)
1457 return 0;
1458 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001459 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001461 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463
Borislav Petkov54abf372008-02-06 02:57:52 +01001464 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001465 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001466 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001468 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001472 case MTFSF:
1473 case MTBSF:
1474 idetape_create_space_cmd(&pc, mt_count - count,
1475 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001476 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001477 case MTFSFM:
1478 case MTBSFM:
1479 if (!sprev)
1480 return -EIO;
1481 retval = idetape_space_over_filemarks(drive, MTFSF,
1482 mt_count - count);
1483 if (retval)
1484 return retval;
1485 count = (MTBSFM == mt_op ? 1 : -1);
1486 return idetape_space_over_filemarks(drive, MTFSF, count);
1487 default:
1488 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1489 mt_op);
1490 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492}
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001495 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001497 * The tape is optimized to maximize throughput when it is transferring an
1498 * integral number of the "continuous transfer limit", which is a parameter of
1499 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001501 * As of version 1.3 of the driver, the character device provides an abstract
1502 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1503 * same backup/restore procedure is supported. The driver will internally
1504 * convert the requests to the recommended transfer unit, so that an unmatch
1505 * between the user's block size to the recommended size will only result in a
1506 * (slightly) increased driver overhead, but will no longer hit performance.
1507 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001509static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1510 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001512 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001514 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001515 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001516 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001518 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Borislav Petkov54abf372008-02-06 02:57:52 +01001520 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001521 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001522 if (count > tape->blk_size &&
1523 (count % tape->blk_size) == 0)
1524 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001526 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001527 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return rc;
1529 if (count == 0)
1530 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001531 if (tape->merge_bh_size) {
1532 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001533 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001534 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001535 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001537 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 count -= actually_read;
1539 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001540 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001541 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 if (bytes_read <= 0)
1543 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001544 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001545 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 buf += bytes_read;
1547 count -= bytes_read;
1548 actually_read += bytes_read;
1549 }
1550 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001551 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if (bytes_read <= 0)
1553 goto finish;
1554 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001555 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001556 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001558 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
1560finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001561 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001562 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 idetape_space_over_filemarks(drive, MTFSF, 1);
1565 return 0;
1566 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001567
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001568 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001571static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 size_t count, loff_t *ppos)
1573{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001574 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001576 ssize_t actually_written = 0;
1577 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001578 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 /* The drive is write protected. */
1581 if (tape->write_prot)
1582 return -EACCES;
1583
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001584 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001587 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1588 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001589 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001590 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001591 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001593 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001595 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1596 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001598 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001599 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001602 * Issue a write 0 command to ensure that DSC handshake is
1603 * switched from completion mode to buffer available mode. No
1604 * point in issuing this if DSC overlap isn't supported, some
1605 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001607 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001608 ssize_t retval = idetape_queue_rw_tail(drive,
1609 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001610 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001612 ide_tape_kfree_buffer(tape);
1613 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001614 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return retval;
1616 }
1617 }
1618 }
1619 if (count == 0)
1620 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001621 if (tape->merge_bh_size) {
1622 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001623 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001624 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001626 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001627 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001628 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001629 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001630 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001632 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 count -= actually_written;
1634
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001635 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001636 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001637 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001638 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (retval <= 0)
1640 return (retval);
1641 }
1642 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001643 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001644 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001645 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001646 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001647 buf += tape->buffer_size;
1648 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001649 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001650 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 if (retval <= 0)
1652 return (retval);
1653 }
1654 if (count) {
1655 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001656 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001657 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001658 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001660 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001663static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001665 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001666 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 /* Write a filemark */
1669 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001670 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1672 return -EIO;
1673 }
1674 return 0;
1675}
1676
1677/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001678 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1679 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001681 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1682 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001683 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001685 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001687 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1688 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001690static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001693 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001694 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001695 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001697 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1698 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001701 case MTFSF:
1702 case MTFSFM:
1703 case MTBSF:
1704 case MTBSFM:
1705 if (!mt_count)
1706 return 0;
1707 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1708 default:
1709 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001713 case MTWEOF:
1714 if (tape->write_prot)
1715 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001716 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001717 for (i = 0; i < mt_count; i++) {
1718 retval = idetape_write_filemark(drive);
1719 if (retval)
1720 return retval;
1721 }
1722 return 0;
1723 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001724 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001725 if (idetape_rewind_tape(drive))
1726 return -EIO;
1727 return 0;
1728 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001729 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001730 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001731 case MTUNLOAD:
1732 case MTOFFL:
1733 /*
1734 * If door is locked, attempt to unlock before
1735 * attempting to eject.
1736 */
1737 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001738 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001739 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001740 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001741 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001742 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001743 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001744 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001745 return retval;
1746 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001747 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001748 return idetape_flush_tape_buffers(drive);
1749 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001750 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001751 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001752 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001753 case MTEOM:
1754 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001755 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001756 case MTERASE:
1757 (void)idetape_rewind_tape(drive);
1758 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001759 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001760 case MTSETBLK:
1761 if (mt_count) {
1762 if (mt_count < tape->blk_size ||
1763 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001765 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001766 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001767 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001768 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001769 return 0;
1770 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001771 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001772 return idetape_position_tape(drive,
1773 mt_count * tape->user_bs_factor, tape->partition, 0);
1774 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001775 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001776 return idetape_position_tape(drive, 0, mt_count, 0);
1777 case MTFSR:
1778 case MTBSR:
1779 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001780 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001781 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001783 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1784 return 0;
1785 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001786 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001787 if (retval)
1788 return retval;
1789 tape->door_locked = DOOR_UNLOCKED;
1790 return 0;
1791 default:
1792 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1793 mt_op);
1794 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796}
1797
1798/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001799 * Our character device ioctls. General mtio.h magnetic io commands are
1800 * supported here, and not in the corresponding block interface. Our own
1801 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001803static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1804 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001806 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 ide_drive_t *drive = tape->drive;
1808 struct mtop mtop;
1809 struct mtget mtget;
1810 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001811 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 void __user *argp = (void __user *)arg;
1813
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001814 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Borislav Petkov54abf372008-02-06 02:57:52 +01001816 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001817 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 idetape_flush_tape_buffers(drive);
1819 }
1820 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001821 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001822 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001823 position = idetape_read_position(drive);
1824 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return -EIO;
1826 }
1827 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001828 case MTIOCTOP:
1829 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1830 return -EFAULT;
1831 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1832 case MTIOCGET:
1833 memset(&mtget, 0, sizeof(struct mtget));
1834 mtget.mt_type = MT_ISSCSI2;
1835 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1836 mtget.mt_dsreg =
1837 ((tape->blk_size * tape->user_bs_factor)
1838 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001839
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001840 if (tape->drv_write_prot)
1841 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1842
1843 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1844 return -EFAULT;
1845 return 0;
1846 case MTIOCPOS:
1847 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1848 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1849 return -EFAULT;
1850 return 0;
1851 default:
1852 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001853 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001854 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856}
1857
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001858/*
1859 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1860 * block size with the reported value.
1861 */
1862static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1863{
1864 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001865 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001866
1867 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001868 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001869 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001870 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001871 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1872 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001873 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001874 }
1875 return;
1876 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001877 tape->blk_size = (pc.buf[4 + 5] << 16) +
1878 (pc.buf[4 + 6] << 8) +
1879 pc.buf[4 + 7];
1880 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001881}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001883static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1886 ide_drive_t *drive;
1887 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 int retval;
1889
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001890 if (i >= MAX_HWIFS * MAX_DRIVES)
1891 return -ENXIO;
1892
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001893 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001894 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001895 if (!tape) {
1896 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001897 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001898 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001899
1900 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 /*
1903 * We really want to do nonseekable_open(inode, filp); here, but some
1904 * versions of tar incorrectly call lseek on tapes and bail out if that
1905 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1906 */
1907 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 drive = tape->drive;
1910
1911 filp->private_data = tape;
1912
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001913 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 retval = -EBUSY;
1915 goto out_put_tape;
1916 }
1917
1918 retval = idetape_wait_ready(drive, 60 * HZ);
1919 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001920 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1922 goto out_put_tape;
1923 }
1924
1925 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001926 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 (void)idetape_rewind_tape(drive);
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001930 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /* Set write protect flag if device is opened as read-only. */
1933 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1934 tape->write_prot = 1;
1935 else
1936 tape->write_prot = tape->drv_write_prot;
1937
1938 /* Make sure drive isn't write protected if user wants to write. */
1939 if (tape->write_prot) {
1940 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1941 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001942 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 retval = -EROFS;
1944 goto out_put_tape;
1945 }
1946 }
1947
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001948 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001949 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001950 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001951 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1952 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
1954 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001955 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return 0;
1957
1958out_put_tape:
1959 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001960 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 return retval;
1962}
1963
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001964static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
1966 idetape_tape_t *tape = drive->driver_data;
1967
Borislav Petkovd9df9372008-04-27 15:38:34 +02001968 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001969 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1970 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001971 idetape_pad_zeros(drive, tape->blk_size *
1972 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001973 ide_tape_kfree_buffer(tape);
1974 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976 idetape_write_filemark(drive);
1977 idetape_flush_tape_buffers(drive);
1978 idetape_flush_tape_buffers(drive);
1979}
1980
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001981static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001983 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 unsigned int minor = iminor(inode);
1986
1987 lock_kernel();
1988 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001989
1990 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Borislav Petkov54abf372008-02-06 02:57:52 +01001992 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001994 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001996 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001998
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001999 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002001 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002003 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002004 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002007 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 ide_tape_put(tape);
2009 unlock_kernel();
2010 return 0;
2011}
2012
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002013static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002016 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002017 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002020 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002021 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2022 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return;
2024 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002025 memcpy(vendor_id, &pc.buf[8], 8);
2026 memcpy(product_id, &pc.buf[16], 16);
2027 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002028
Borislav Petkov801bd322008-09-27 19:32:17 +02002029 ide_fixstring(vendor_id, 8, 0);
2030 ide_fixstring(product_id, 16, 0);
2031 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002032
Borislav Petkov801bd322008-09-27 19:32:17 +02002033 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002034 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
2036
2037/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002038 * Ask the tape about its various parameters. In particular, we will adjust our
2039 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002041static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
2043 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002044 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002045 u8 *caps;
2046 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002049 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002050 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2051 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002052 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002053 put_unaligned(52, (u16 *)&tape->caps[12]);
2054 put_unaligned(540, (u16 *)&tape->caps[14]);
2055 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return;
2057 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002058 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Borislav Petkovb6422012008-02-02 19:56:49 +01002060 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002061 speed = be16_to_cpup((__be16 *)&caps[14]);
2062 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002064 *(u16 *)&caps[8] = max_speed;
2065 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2066 *(u16 *)&caps[14] = speed;
2067 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002068
2069 if (!speed) {
2070 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2071 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002072 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002074 if (!max_speed) {
2075 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2076 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002077 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
2079
Borislav Petkovb6422012008-02-02 19:56:49 +01002080 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002081
2082 /* device lacks locking support according to capabilities page */
2083 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02002084 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002085
Borislav Petkovb6422012008-02-02 19:56:49 +01002086 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002087 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002088 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002089 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002092#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002093#define ide_tape_devset_get(name, field) \
2094static int get_##name(ide_drive_t *drive) \
2095{ \
2096 idetape_tape_t *tape = drive->driver_data; \
2097 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002099
2100#define ide_tape_devset_set(name, field) \
2101static int set_##name(ide_drive_t *drive, int arg) \
2102{ \
2103 idetape_tape_t *tape = drive->driver_data; \
2104 tape->field = arg; \
2105 return 0; \
2106}
2107
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002108#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002109ide_tape_devset_get(_name, _field) \
2110ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002111IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002112
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002113#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002114ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002115IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002116
2117static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2118static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2119static int divf_buffer(ide_drive_t *drive) { return 2; }
2120static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2121
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002122ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002123
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002124ide_tape_devset_rw_field(debug_mask, debug_mask);
2125ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002126
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002127ide_tape_devset_r_field(avg_speed, avg_speed);
2128ide_tape_devset_r_field(speed, caps[14]);
2129ide_tape_devset_r_field(buffer, caps[16]);
2130ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002131
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002132static const struct ide_proc_devset idetape_settings[] = {
2133 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2134 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2135 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2136 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2137 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2138 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2139 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2140 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01002141 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002142};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002146 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002148 * 1. Initialize our various state variables.
2149 * 2. Ask the tape for its capabilities.
2150 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2151 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002153 * Note that at this point ide.c already assigned us an irq, so that we can
2154 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002156static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
Borislav Petkov83042b22008-04-27 15:38:27 +02002158 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002160 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002161 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002163 drive->pc_callback = ide_tape_callback;
2164 drive->pc_update_buffers = idetape_update_buffers;
2165 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002166
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002167 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2168
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002169 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2170 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2171 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002172 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002176 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002177 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 tape->minor = minor;
2180 tape->name[0] = 'h';
2181 tape->name[1] = 't';
2182 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002183 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 idetape_get_inquiry_results(drive);
2186 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002187 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002189 tape->buffer_size = *ctl * tape->blk_size;
2190 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002192 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002193 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002195 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002196 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002197 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002198 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002199 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
2201
Borislav Petkov83042b22008-04-27 15:38:27 +02002202 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002203 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Borislav Petkovf73850a2008-04-27 15:38:33 +02002205 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002208 * Ensure that the number we got makes sense; limit it within
2209 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002211 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2212 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002214 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002215 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002216 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2217 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002218 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002219 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002221 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
2223
Russell King4031bbe2006-01-06 11:41:00 +00002224static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
2226 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002228 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002229 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 ide_unregister_region(tape->disk);
2231
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002232 mutex_lock(&idetape_ref_mutex);
2233 put_device(&tape->dev);
2234 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235}
2236
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002237static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002239 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 ide_drive_t *drive = tape->drive;
2241 struct gendisk *g = tape->disk;
2242
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002243 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002244
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002245 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002247 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002248 device_destroy(idetape_sysfs_class,
2249 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 idetape_devs[tape->minor] = NULL;
2251 g->private_data = NULL;
2252 put_disk(g);
2253 kfree(tape);
2254}
2255
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002256#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257static int proc_idetape_read_name
2258 (char *page, char **start, off_t off, int count, int *eof, void *data)
2259{
2260 ide_drive_t *drive = (ide_drive_t *) data;
2261 idetape_tape_t *tape = drive->driver_data;
2262 char *out = page;
2263 int len;
2264
2265 len = sprintf(out, "%s\n", tape->name);
2266 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2267}
2268
2269static ide_proc_entry_t idetape_proc[] = {
2270 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2271 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2272 { NULL, 0, NULL, NULL }
2273};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002274
2275static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2276{
2277 return idetape_proc;
2278}
2279
2280static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2281{
2282 return idetape_settings;
2283}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284#endif
2285
Russell King4031bbe2006-01-06 11:41:00 +00002286static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01002288static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002289 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002290 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002291 .name = "ide-tape",
2292 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002293 },
Russell King4031bbe2006-01-06 11:41:00 +00002294 .probe = ide_tape_probe,
2295 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002298#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002299 .proc_entries = ide_tape_proc_entries,
2300 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002301#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302};
2303
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002304/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002305static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 .owner = THIS_MODULE,
2307 .read = idetape_chrdev_read,
2308 .write = idetape_chrdev_write,
2309 .ioctl = idetape_chrdev_ioctl,
2310 .open = idetape_chrdev_open,
2311 .release = idetape_chrdev_release,
2312};
2313
Al Viroa4600f82008-03-02 10:27:58 -05002314static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315{
Al Viroa4600f82008-03-02 10:27:58 -05002316 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002318 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 return -ENXIO;
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 return 0;
2322}
2323
Al Viroa4600f82008-03-02 10:27:58 -05002324static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002326 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return 0;
2330}
2331
Al Viroa4600f82008-03-02 10:27:58 -05002332static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 unsigned int cmd, unsigned long arg)
2334{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002335 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04002337 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (err == -EINVAL)
2339 err = idetape_blkdev_ioctl(drive, cmd, arg);
2340 return err;
2341}
2342
2343static struct block_device_operations idetape_block_ops = {
2344 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05002345 .open = idetape_open,
2346 .release = idetape_release,
2347 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348};
2349
Russell King4031bbe2006-01-06 11:41:00 +00002350static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
2352 idetape_tape_t *tape;
2353 struct gendisk *g;
2354 int minor;
2355
2356 if (!strstr("ide-tape", drive->driver_req))
2357 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 if (drive->media != ide_tape)
2360 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002361
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002362 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2363 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002364 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2365 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 goto failed;
2367 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002368 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002370 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2371 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 goto failed;
2373 }
2374
2375 g = alloc_disk(1 << PARTN_BITS);
2376 if (!g)
2377 goto out_free_tape;
2378
2379 ide_init_disk(g, drive);
2380
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002381 tape->dev.parent = &drive->gendev;
2382 tape->dev.release = ide_tape_release;
2383 dev_set_name(&tape->dev, dev_name(&drive->gendev));
2384
2385 if (device_register(&tape->dev))
2386 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388 tape->drive = drive;
2389 tape->driver = &idetape_driver;
2390 tape->disk = g;
2391
2392 g->private_data = &tape->driver;
2393
2394 drive->driver_data = tape;
2395
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002396 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 for (minor = 0; idetape_devs[minor]; minor++)
2398 ;
2399 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002400 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 idetape_setup(drive, tape, minor);
2403
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002404 device_create(idetape_sysfs_class, &drive->gendev,
2405 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2406 device_create(idetape_sysfs_class, &drive->gendev,
2407 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2408 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 g->fops = &idetape_block_ops;
2411 ide_register_region(g);
2412
2413 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002414
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002415out_free_disk:
2416 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417out_free_tape:
2418 kfree(tape);
2419failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002420 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
2422
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002423static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002425 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002426 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 unregister_chrdev(IDETAPE_MAJOR, "ht");
2428}
2429
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002430static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
Will Dysond5dee802005-09-16 02:55:07 -07002432 int error = 1;
2433 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2434 if (IS_ERR(idetape_sysfs_class)) {
2435 idetape_sysfs_class = NULL;
2436 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2437 error = -EBUSY;
2438 goto out;
2439 }
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002442 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2443 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002444 error = -EBUSY;
2445 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 }
Will Dysond5dee802005-09-16 02:55:07 -07002447
2448 error = driver_register(&idetape_driver.gen_driver);
2449 if (error)
2450 goto out_free_driver;
2451
2452 return 0;
2453
2454out_free_driver:
2455 driver_unregister(&idetape_driver.gen_driver);
2456out_free_class:
2457 class_destroy(idetape_sysfs_class);
2458out:
2459 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460}
2461
Kay Sievers263756e2005-12-12 18:03:44 +01002462MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463module_init(idetape_init);
2464module_exit(idetape_exit);
2465MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002466MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2467MODULE_LICENSE("GPL");