blob: 8324dfa78a3f971f4c3090cfaabc4d1daa4b67b2 [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
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200300static int 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) {
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200307 if (bh == NULL)
308 break;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100309 count = min(
310 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
311 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200312 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100313 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 bcount -= count;
315 atomic_add(count, &bh->b_count);
316 if (atomic_read(&bh->b_count) == bh->b_size) {
317 bh = bh->b_reqnext;
318 if (bh)
319 atomic_set(&bh->b_count, 0);
320 }
321 }
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 pc->bh = bh;
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200324
325 return bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200328static int idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100329 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 struct idetape_bh *bh = pc->bh;
332 int count;
333
334 while (bcount) {
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200335 if (bh == NULL)
336 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200338 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 bcount -= count;
340 pc->b_data += count;
341 pc->b_count -= count;
342 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100343 bh = bh->b_reqnext;
344 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (bh) {
346 pc->b_data = bh->b_data;
347 pc->b_count = atomic_read(&bh->b_count);
348 }
349 }
350 }
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200351
352 return bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200355static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct idetape_bh *bh = pc->bh;
358 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200359 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Borislav Petkov346331f2008-04-18 00:46:26 +0200361 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return;
363 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100365 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
366 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
370 atomic_set(&bh->b_count, count);
371 if (atomic_read(&bh->b_count) == bh->b_size)
372 bh = bh->b_reqnext;
373 bcount -= count;
374 }
375 pc->bh = bh;
376}
377
378/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100379 * called on each failed packet command retry to analyze the request sense. We
380 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100382static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100385 struct ide_atapi_pc *pc = drive->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Borislav Petkov1b5db432008-02-02 19:56:48 +0100387 tape->sense_key = sense[2] & 0xF;
388 tape->asc = sense[12];
389 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100390
391 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
392 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Borislav Petkovd236d742008-04-18 00:46:27 +0200394 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200395 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200396 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100397 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200398 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200399 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 /*
403 * If error was the result of a zero-length read or write command,
404 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
405 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
406 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100407 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100408 /* length == 0 */
409 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
410 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /* don't report an error, everything's ok */
412 pc->error = 0;
413 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200414 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100417 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100418 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200419 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100421 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100422 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
423 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100424 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200425 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100428 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100429 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100430 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200431 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200433 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200434 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
436 }
437}
438
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200439/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200440static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200442 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200444 while (bh) {
445 u32 size = bh->b_size;
446
447 while (size) {
448 unsigned int order = fls(size >> PAGE_SHIFT)-1;
449
450 if (bh->b_data)
451 free_pages((unsigned long)bh->b_data, order);
452
453 size &= (order-1);
454 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456 prev_bh = bh;
457 bh = bh->b_reqnext;
458 kfree(prev_bh);
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200462static void ide_tape_handle_dsc(ide_drive_t *);
463
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100464static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200467 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100468 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200469 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100470 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100472 debug_log(DBG_PROCS, "Enter %s\n", __func__);
473
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200474 if (dsc)
475 ide_tape_handle_dsc(drive);
476
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100477 if (drive->failed_pc == pc)
478 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200479
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200480 if (pc->c[0] == REQUEST_SENSE) {
481 if (uptodate)
482 idetape_analyze_error(drive, pc->buf);
483 else
484 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
485 "itself - Aborting request!\n");
486 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200487 int blocks = pc->xferred / tape->blk_size;
488
489 tape->avg_size += blocks * tape->blk_size;
490
491 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
492 tape->avg_speed = tape->avg_size * HZ /
493 (jiffies - tape->avg_time) / 1024;
494 tape->avg_size = 0;
495 tape->avg_time = jiffies;
496 }
497
498 tape->first_frame += blocks;
499 rq->current_nr_sectors -= blocks;
500
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100501 if (pc->error) {
502 uptodate = 0;
503 err = pc->error;
504 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200505 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200506 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200507
508 debug_log(DBG_SENSE, "BOP - %s\n",
509 (readpos[0] & 0x80) ? "Yes" : "No");
510 debug_log(DBG_SENSE, "EOP - %s\n",
511 (readpos[0] & 0x40) ? "Yes" : "No");
512
513 if (readpos[0] & 0x4) {
514 printk(KERN_INFO "ide-tape: Block location is unknown"
515 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200516 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200517 uptodate = 0;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100518 err = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200519 } else {
520 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200521 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200522
523 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200524 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200525 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200528
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100529 rq->errors = err;
530
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100531 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100535 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100536 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100538static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 idetape_tape_t *tape = drive->driver_data;
541
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100542 debug_log(DBG_PROCS, "Enter %s\n", __func__);
543
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100544 tape->postponed_rq = drive->hwif->rq;
545
Borislav Petkov54bb2072008-02-06 02:57:52 +0100546 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200549static void ide_tape_handle_dsc(ide_drive_t *drive)
550{
551 idetape_tape_t *tape = drive->driver_data;
552
553 /* Media access command */
554 tape->dsc_polling_start = jiffies;
555 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
556 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
557 /* Allow ide.c to handle other requests */
558 idetape_postpone_request(drive);
559}
560
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200561static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200562 unsigned int bcount, int write)
563{
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200564 unsigned int bleft;
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200565
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200566 if (write)
567 bleft = idetape_output_buffers(drive, pc, bcount);
568 else
569 bleft = idetape_input_buffers(drive, pc, bcount);
570
571 return bcount - bleft;
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 Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100617 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
618 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200621 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200624 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100626 * We will "abort" retrying a packet command in case legitimate
627 * error code was received (crossing a filemark, or end of the
628 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200630 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100631 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 tape->sense_key == 2 && tape->asc == 4 &&
633 (tape->ascq == 1 || tape->ascq == 8))) {
634 printk(KERN_ERR "ide-tape: %s: I/O error, "
635 "pc = %2x, key = %2x, "
636 "asc = %2x, ascq = %2x\n",
637 tape->name, pc->c[0],
638 tape->sense_key, tape->asc,
639 tape->ascq);
640 }
641 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100642 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100644 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200645 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200646 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100648 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100652 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100655/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200656static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200658 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100659 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100661 /* DBD = 1 - Don't return block descriptors */
662 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 pc->c[2] = page_code;
664 /*
665 * Changed pc->c[3] to 0 (255 will at best return unused info).
666 *
667 * For SCSI this byte is defined as subpage instead of high byte
668 * of length and some IDE drives seem to interpret it this way
669 * and return an error when 255 is used.
670 */
671 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100672 /* We will just discard data in that case */
673 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200675 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200677 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200679 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100682static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200684 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200686 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100687 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200689 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100690
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200691 if (stat & ATA_DSC) {
692 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100694 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 printk(KERN_ERR "ide-tape: %s: I/O error, ",
696 tape->name);
697 /* Retry operation */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900698 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200699 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100703 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100704 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200706 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return ide_stopped;
708}
709
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200710static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200711 struct ide_atapi_pc *pc, struct request *rq,
712 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Borislav Petkov0014c752008-07-23 19:56:00 +0200714 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
715 unsigned int length = rq->current_nr_sectors;
716
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200717 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100718 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200721 pc->buf = NULL;
722 pc->buf_size = length * tape->blk_size;
723 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200724 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200725 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200727 if (opcode == READ_6) {
728 pc->c[0] = READ_6;
729 atomic_set(&bh->b_count, 0);
730 } else if (opcode == WRITE_6) {
731 pc->c[0] = WRITE_6;
732 pc->flags |= PC_FLAG_WRITING;
733 pc->b_data = bh->b_data;
734 pc->b_count = atomic_read(&bh->b_count);
735 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200736
737 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740static ide_startstop_t idetape_do_request(ide_drive_t *drive,
741 struct request *rq, sector_t block)
742{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200743 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200745 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100747 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100748 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Mark de Wever730616b2008-10-10 22:39:17 +0200750 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
751 " current_nr_sectors: %u\n",
752 (unsigned long long)rq->sector, rq->nr_sectors,
753 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900755 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100756 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200758 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100759 if (blk_fs_request(rq) == 0 && rq->errors == 0)
760 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100761 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return ide_stopped;
763 }
764
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100765 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100766 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
767 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200768 goto out;
769 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (postponed_rq != NULL)
772 if (rq != postponed_rq) {
773 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
774 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100775 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100776 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100777 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return ide_stopped;
779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 tape->postponed_rq = NULL;
782
783 /*
784 * If the tape is still busy, postpone our request and service
785 * the other device meanwhile.
786 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200787 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200789 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
790 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200791 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200793 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200794 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200795 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200798 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200799 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (postponed_rq == NULL) {
801 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100802 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
804 } else if (time_after(jiffies, tape->dsc_timeout)) {
805 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
806 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200807 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 idetape_media_access_finished(drive);
809 return ide_stopped;
810 } else {
811 return ide_do_reset(drive);
812 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100813 } else if (time_after(jiffies,
814 tape->dsc_polling_start +
815 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100816 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 idetape_postpone_request(drive);
818 return ide_stopped;
819 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200820 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200821 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200822 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 goto out;
824 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200825 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200826 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200827 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto out;
829 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200830 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoc267cc12009-04-19 07:00:42 +0900831 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200832 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
833 rq->cmd[13] |= REQ_IDETAPE_PC2;
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_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 idetape_media_access_finished(drive);
838 return ide_stopped;
839 }
840 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200841
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200842out:
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900843 /* prepare sense request for this command */
844 ide_prep_sense(drive, rq);
845
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100846 memset(&cmd, 0, sizeof(cmd));
847
848 if (rq_data_dir(rq))
849 cmd.tf_flags |= IDE_TFLAG_WRITE;
850
851 cmd.rq = rq;
852
853 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200857 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200858 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100859 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200861 * It returns a pointer to the newly allocated buffer, or NULL in case of
862 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200864static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
865 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200867 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200868 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200869 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 char *b_data = NULL;
871
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200872 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
873 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (bh == NULL)
875 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200876
877 order = fls(pages) - 1;
878 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100879 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200881 b_allocd = (1 << order) * PAGE_SIZE;
882 pages &= (order-1);
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200885 memset(bh->b_data, 0, b_allocd);
886 bh->b_reqnext = NULL;
887 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 atomic_set(&bh->b_count, full ? bh->b_size : 0);
889
Borislav Petkov41aa1702008-04-27 15:38:32 +0200890 while (pages) {
891 order = fls(pages) - 1;
892 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100893 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200895 b_allocd = (1 << order) * PAGE_SIZE;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200898 memset(b_data, 0, b_allocd);
899
900 /* newly allocated page frames below buffer header or ...*/
901 if (bh->b_data == b_data + b_allocd) {
902 bh->b_size += b_allocd;
903 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200905 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 continue;
907 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200908 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200910 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200912 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 continue;
914 }
915 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100916 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
917 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200918 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto abort;
920 }
921 bh->b_reqnext = NULL;
922 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200923 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 atomic_set(&bh->b_count, full ? bh->b_size : 0);
925 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200926
927 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 bh->b_size -= tape->excess_bh_size;
931 if (full)
932 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200933 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200935 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return NULL;
937}
938
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100939static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200940 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
942 struct idetape_bh *bh = tape->bh;
943 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700944 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100948 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
949 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700950 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100952 count = min((unsigned int)
953 (bh->b_size - atomic_read(&bh->b_count)),
954 (unsigned int)n);
955 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
956 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700957 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 n -= count;
959 atomic_add(count, &bh->b_count);
960 buf += count;
961 if (atomic_read(&bh->b_count) == bh->b_size) {
962 bh = bh->b_reqnext;
963 if (bh)
964 atomic_set(&bh->b_count, 0);
965 }
966 }
967 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700968 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100971static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +0200972 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
974 struct idetape_bh *bh = tape->bh;
975 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700976 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100980 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
981 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700982 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700985 if (copy_to_user(buf, tape->b_data, count))
986 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 n -= count;
988 tape->b_data += count;
989 tape->b_count -= count;
990 buf += count;
991 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100992 bh = bh->b_reqnext;
993 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (bh) {
995 tape->b_data = bh->b_data;
996 tape->b_count = atomic_read(&bh->b_count);
997 }
998 }
999 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001000 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001003static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001005 struct idetape_bh *bh = tape->merge_bh;
1006 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001007
Borislav Petkov54abf372008-02-06 02:57:52 +01001008 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 atomic_set(&bh->b_count, 0);
1010 else {
1011 tape->b_data = bh->b_data;
1012 tape->b_count = atomic_read(&bh->b_count);
1013 }
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001017 * Write a filemark if write_filemark=1. Flush the device buffers without
1018 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001020static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001021 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001023 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001024 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001026 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1030{
1031 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001032 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 int load_attempted = 0;
1034
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001035 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001036 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 timeout += jiffies;
1038 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001039 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 0;
1041 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001042 || (tape->asc == 0x3A)) {
1043 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (load_attempted)
1045 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001046 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 load_attempted = 1;
1048 /* not about to be ready */
1049 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1050 (tape->ascq == 1 || tape->ascq == 8)))
1051 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001052 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054 return -EIO;
1055}
1056
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001057static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001059 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001060 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 int rc;
1062
1063 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001064 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001065 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return rc;
1067 idetape_wait_ready(drive, 60 * 5 * HZ);
1068 return 0;
1069}
1070
Borislav Petkovd236d742008-04-18 00:46:27 +02001071static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001073 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001074 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001075 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001078static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001081 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 int position;
1083
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001084 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001087 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001089 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return position;
1091}
1092
Borislav Petkovd236d742008-04-18 00:46:27 +02001093static void idetape_create_locate_cmd(ide_drive_t *drive,
1094 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001095 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001097 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001098 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001100 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001102 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001105static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Borislav Petkov54abf372008-02-06 02:57:52 +01001109 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001110 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001112 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001113 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001114 if (tape->merge_bh != NULL) {
1115 ide_tape_kfree_buffer(tape);
1116 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
Borislav Petkov54abf372008-02-06 02:57:52 +01001119 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
1122/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001123 * Position the tape to the requested block using the LOCATE packet command.
1124 * A READ POSITION command is then issued to check where we are positioned. Like
1125 * all higher level operations, we queue the commands at the tail of the request
1126 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001128static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1129 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001132 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001134 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Borislav Petkov54abf372008-02-06 02:57:52 +01001136 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001137 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 idetape_wait_ready(drive, 60 * 5 * HZ);
1139 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001140 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (retval)
1142 return (retval);
1143
1144 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001145 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001148static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001149 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
1151 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 int seek, position;
1153
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001154 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (restore_position) {
1156 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001157 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001159 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001160 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return;
1162 }
1163 }
1164}
1165
1166/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001167 * Generate a read/write request for the block device interface and wait for it
1168 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001170static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1171 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
1173 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001174 struct request *rq;
1175 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001177 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1178
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001179 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1180 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001181 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001182 rq->rq_disk = tape->disk;
1183 rq->special = (void *)bh;
1184 rq->sector = tape->first_frame;
1185 rq->nr_sectors = blocks;
1186 rq->current_nr_sectors = blocks;
1187 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1188
1189 errors = rq->errors;
1190 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1191 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1194 return 0;
1195
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001196 if (tape->merge_bh)
1197 idetape_init_merge_buffer(tape);
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +01001198 if (errors == IDE_DRV_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001200 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Borislav Petkovd236d742008-04-18 00:46:27 +02001203static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001205 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001206 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001207 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001208 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
Borislav Petkovd236d742008-04-18 00:46:27 +02001211static void idetape_create_rewind_cmd(ide_drive_t *drive,
1212 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001214 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001215 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001216 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
1218
Borislav Petkovd236d742008-04-18 00:46:27 +02001219static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001221 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001222 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001224 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
Borislav Petkovd236d742008-04-18 00:46:27 +02001227static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001229 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001230 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001231 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001233 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
Borislav Petkov97c566c2008-04-27 15:38:25 +02001236/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001237static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
1239 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001241 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001243 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001244 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Borislav Petkovd9df9372008-04-27 15:38:34 +02001247static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
1249 idetape_tape_t *tape = drive->driver_data;
1250 int blocks, min;
1251 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001252
Borislav Petkov54abf372008-02-06 02:57:52 +01001253 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001254 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001255 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return;
1257 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001258 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001260 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001262 if (tape->merge_bh_size) {
1263 blocks = tape->merge_bh_size / tape->blk_size;
1264 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 unsigned int i;
1266
1267 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001268 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001269 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 bh = tape->bh->b_reqnext;
1271 while (bh) {
1272 atomic_set(&bh->b_count, 0);
1273 bh = bh->b_reqnext;
1274 }
1275 bh = tape->bh;
1276 while (i) {
1277 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001278 printk(KERN_INFO "ide-tape: bug,"
1279 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 break;
1281 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001282 min = min(i, (unsigned int)(bh->b_size -
1283 atomic_read(&bh->b_count)));
1284 memset(bh->b_data + atomic_read(&bh->b_count),
1285 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 atomic_add(min, &bh->b_count);
1287 i -= min;
1288 bh = bh->b_reqnext;
1289 }
1290 }
1291 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001292 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001294 if (tape->merge_bh != NULL) {
1295 ide_tape_kfree_buffer(tape);
1296 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001298 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
Borislav Petkov83042b22008-04-27 15:38:27 +02001301static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001307 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1308 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001309 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 idetape_flush_tape_buffers(drive);
1311 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001312 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001313 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001314 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001315 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001317 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1318 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001320 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001323 * Issue a read 0 command to ensure that DSC handshake is
1324 * switched from completion mode to buffer available mode.
1325 * No point in issuing this if DSC overlap isn't supported, some
1326 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001328 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001329 bytes_read = idetape_queue_rw_tail(drive,
1330 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001331 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001333 ide_tape_kfree_buffer(tape);
1334 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001335 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return bytes_read;
1337 }
1338 }
1339 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return 0;
1342}
1343
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001344/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001345static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
1347 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001349 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001351 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001352 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return 0;
1354
Borislav Petkov83042b22008-04-27 15:38:27 +02001355 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001357 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001358 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001361static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
1363 idetape_tape_t *tape = drive->driver_data;
1364 struct idetape_bh *bh;
1365 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 while (bcount) {
1368 unsigned int count;
1369
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001370 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001371 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001373 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001375 atomic_set(&bh->b_count,
1376 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1378 count -= atomic_read(&bh->b_count);
1379 bh = bh->b_reqnext;
1380 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001381 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001382 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384}
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001387 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1388 * currently support only one partition.
1389 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001390static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001392 struct ide_tape_obj *tape = drive->driver_data;
1393 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001395 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001396
1397 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001400 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (retval)
1402 return retval;
1403
1404 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001405 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (retval)
1407 return retval;
1408 return 0;
1409}
1410
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001411/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001412static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1413 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 void __user *argp = (void __user *)arg;
1417
Borislav Petkovd59823f2008-02-02 19:56:51 +01001418 struct idetape_config {
1419 int dsc_rw_frequency;
1420 int dsc_media_access_frequency;
1421 int nr_stages;
1422 } config;
1423
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001424 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001427 case 0x0340:
1428 if (copy_from_user(&config, argp, sizeof(config)))
1429 return -EFAULT;
1430 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001431 break;
1432 case 0x0350:
1433 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001434 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001435 if (copy_to_user(argp, &config, sizeof(config)))
1436 return -EFAULT;
1437 break;
1438 default:
1439 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441 return 0;
1442}
1443
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001444static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1445 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
1447 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001448 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001449 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001450 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001451 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 if (mt_count == 0)
1454 return 0;
1455 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001456 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001458 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460
Borislav Petkov54abf372008-02-06 02:57:52 +01001461 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001462 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001463 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001465 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001469 case MTFSF:
1470 case MTBSF:
1471 idetape_create_space_cmd(&pc, mt_count - count,
1472 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001473 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001474 case MTFSFM:
1475 case MTBSFM:
1476 if (!sprev)
1477 return -EIO;
1478 retval = idetape_space_over_filemarks(drive, MTFSF,
1479 mt_count - count);
1480 if (retval)
1481 return retval;
1482 count = (MTBSFM == mt_op ? 1 : -1);
1483 return idetape_space_over_filemarks(drive, MTFSF, count);
1484 default:
1485 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1486 mt_op);
1487 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489}
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001492 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001494 * The tape is optimized to maximize throughput when it is transferring an
1495 * integral number of the "continuous transfer limit", which is a parameter of
1496 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001498 * As of version 1.3 of the driver, the character device provides an abstract
1499 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1500 * same backup/restore procedure is supported. The driver will internally
1501 * convert the requests to the recommended transfer unit, so that an unmatch
1502 * between the user's block size to the recommended size will only result in a
1503 * (slightly) increased driver overhead, but will no longer hit performance.
1504 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001506static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1507 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001509 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001511 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001512 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001513 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001515 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Borislav Petkov54abf372008-02-06 02:57:52 +01001517 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001518 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001519 if (count > tape->blk_size &&
1520 (count % tape->blk_size) == 0)
1521 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001523 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001524 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return rc;
1526 if (count == 0)
1527 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001528 if (tape->merge_bh_size) {
1529 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001530 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001531 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001532 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001534 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 count -= actually_read;
1536 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001537 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001538 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (bytes_read <= 0)
1540 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001541 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001542 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 buf += bytes_read;
1544 count -= bytes_read;
1545 actually_read += bytes_read;
1546 }
1547 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001548 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (bytes_read <= 0)
1550 goto finish;
1551 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001552 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001553 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001555 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001558 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001559 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 idetape_space_over_filemarks(drive, MTFSF, 1);
1562 return 0;
1563 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001564
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001565 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}
1567
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001568static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 size_t count, loff_t *ppos)
1570{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001571 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001573 ssize_t actually_written = 0;
1574 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001575 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 /* The drive is write protected. */
1578 if (tape->write_prot)
1579 return -EACCES;
1580
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001581 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001584 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1585 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001586 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001587 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001588 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001590 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001592 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1593 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001595 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001596 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001599 * Issue a write 0 command to ensure that DSC handshake is
1600 * switched from completion mode to buffer available mode. No
1601 * point in issuing this if DSC overlap isn't supported, some
1602 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001604 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001605 ssize_t retval = idetape_queue_rw_tail(drive,
1606 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001607 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001609 ide_tape_kfree_buffer(tape);
1610 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001611 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return retval;
1613 }
1614 }
1615 }
1616 if (count == 0)
1617 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001618 if (tape->merge_bh_size) {
1619 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001620 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001621 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001623 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001624 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001625 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001626 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001627 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001629 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 count -= actually_written;
1631
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001632 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001633 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001634 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001635 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (retval <= 0)
1637 return (retval);
1638 }
1639 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001640 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001641 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001642 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001643 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001644 buf += tape->buffer_size;
1645 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001646 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001647 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (retval <= 0)
1649 return (retval);
1650 }
1651 if (count) {
1652 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001653 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001654 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001655 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001657 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001660static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001662 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001663 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 /* Write a filemark */
1666 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001667 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1669 return -EIO;
1670 }
1671 return 0;
1672}
1673
1674/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001675 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1676 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001678 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1679 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001680 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001682 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001684 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1685 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001687static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
1689 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001690 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001691 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001692 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001694 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1695 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001698 case MTFSF:
1699 case MTFSFM:
1700 case MTBSF:
1701 case MTBSFM:
1702 if (!mt_count)
1703 return 0;
1704 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1705 default:
1706 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001710 case MTWEOF:
1711 if (tape->write_prot)
1712 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001713 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001714 for (i = 0; i < mt_count; i++) {
1715 retval = idetape_write_filemark(drive);
1716 if (retval)
1717 return retval;
1718 }
1719 return 0;
1720 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001721 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001722 if (idetape_rewind_tape(drive))
1723 return -EIO;
1724 return 0;
1725 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001726 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001727 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001728 case MTUNLOAD:
1729 case MTOFFL:
1730 /*
1731 * If door is locked, attempt to unlock before
1732 * attempting to eject.
1733 */
1734 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001735 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001736 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001737 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001738 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001739 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001740 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001741 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001742 return retval;
1743 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001744 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001745 return idetape_flush_tape_buffers(drive);
1746 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001747 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001748 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001749 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001750 case MTEOM:
1751 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001752 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001753 case MTERASE:
1754 (void)idetape_rewind_tape(drive);
1755 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001756 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001757 case MTSETBLK:
1758 if (mt_count) {
1759 if (mt_count < tape->blk_size ||
1760 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001762 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001763 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001764 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001765 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001766 return 0;
1767 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001768 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001769 return idetape_position_tape(drive,
1770 mt_count * tape->user_bs_factor, tape->partition, 0);
1771 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001772 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001773 return idetape_position_tape(drive, 0, mt_count, 0);
1774 case MTFSR:
1775 case MTBSR:
1776 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001777 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001778 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001780 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1781 return 0;
1782 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001783 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001784 if (retval)
1785 return retval;
1786 tape->door_locked = DOOR_UNLOCKED;
1787 return 0;
1788 default:
1789 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1790 mt_op);
1791 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
1793}
1794
1795/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001796 * Our character device ioctls. General mtio.h magnetic io commands are
1797 * supported here, and not in the corresponding block interface. Our own
1798 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001800static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1801 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001803 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 ide_drive_t *drive = tape->drive;
1805 struct mtop mtop;
1806 struct mtget mtget;
1807 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001808 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 void __user *argp = (void __user *)arg;
1810
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001811 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Borislav Petkov54abf372008-02-06 02:57:52 +01001813 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001814 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 idetape_flush_tape_buffers(drive);
1816 }
1817 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001818 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001819 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001820 position = idetape_read_position(drive);
1821 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 return -EIO;
1823 }
1824 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001825 case MTIOCTOP:
1826 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1827 return -EFAULT;
1828 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1829 case MTIOCGET:
1830 memset(&mtget, 0, sizeof(struct mtget));
1831 mtget.mt_type = MT_ISSCSI2;
1832 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1833 mtget.mt_dsreg =
1834 ((tape->blk_size * tape->user_bs_factor)
1835 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001836
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001837 if (tape->drv_write_prot)
1838 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1839
1840 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1841 return -EFAULT;
1842 return 0;
1843 case MTIOCPOS:
1844 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1845 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1846 return -EFAULT;
1847 return 0;
1848 default:
1849 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001850 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001851 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853}
1854
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001855/*
1856 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1857 * block size with the reported value.
1858 */
1859static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1860{
1861 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001862 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001863
1864 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001865 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001866 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001867 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001868 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1869 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001870 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001871 }
1872 return;
1873 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001874 tape->blk_size = (pc.buf[4 + 5] << 16) +
1875 (pc.buf[4 + 6] << 8) +
1876 pc.buf[4 + 7];
1877 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001878}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001880static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1883 ide_drive_t *drive;
1884 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 int retval;
1886
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001887 if (i >= MAX_HWIFS * MAX_DRIVES)
1888 return -ENXIO;
1889
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001890 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001891 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001892 if (!tape) {
1893 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001894 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001895 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001896
1897 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /*
1900 * We really want to do nonseekable_open(inode, filp); here, but some
1901 * versions of tar incorrectly call lseek on tapes and bail out if that
1902 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1903 */
1904 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 drive = tape->drive;
1907
1908 filp->private_data = tape;
1909
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001910 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 retval = -EBUSY;
1912 goto out_put_tape;
1913 }
1914
1915 retval = idetape_wait_ready(drive, 60 * HZ);
1916 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001917 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1919 goto out_put_tape;
1920 }
1921
1922 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001923 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 (void)idetape_rewind_tape(drive);
1925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001927 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 /* Set write protect flag if device is opened as read-only. */
1930 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1931 tape->write_prot = 1;
1932 else
1933 tape->write_prot = tape->drv_write_prot;
1934
1935 /* Make sure drive isn't write protected if user wants to write. */
1936 if (tape->write_prot) {
1937 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1938 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001939 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 retval = -EROFS;
1941 goto out_put_tape;
1942 }
1943 }
1944
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001945 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001946 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001947 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001948 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1949 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001952 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return 0;
1954
1955out_put_tape:
1956 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001957 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return retval;
1959}
1960
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001961static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
1963 idetape_tape_t *tape = drive->driver_data;
1964
Borislav Petkovd9df9372008-04-27 15:38:34 +02001965 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001966 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1967 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001968 idetape_pad_zeros(drive, tape->blk_size *
1969 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001970 ide_tape_kfree_buffer(tape);
1971 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973 idetape_write_filemark(drive);
1974 idetape_flush_tape_buffers(drive);
1975 idetape_flush_tape_buffers(drive);
1976}
1977
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001978static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001980 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 unsigned int minor = iminor(inode);
1983
1984 lock_kernel();
1985 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001986
1987 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Borislav Petkov54abf372008-02-06 02:57:52 +01001989 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001991 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001993 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001995
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001996 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01001998 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002000 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002001 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
2003 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002004 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 ide_tape_put(tape);
2006 unlock_kernel();
2007 return 0;
2008}
2009
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002010static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002013 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02002014 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02002015 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02002018 pc.buf = &pc_buf[0];
2019 pc.buf_size = sizeof(pc_buf);
2020
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002021 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002022 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2023 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return;
2025 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002026 memcpy(vendor_id, &pc.buf[8], 8);
2027 memcpy(product_id, &pc.buf[16], 16);
2028 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002029
Borislav Petkov801bd322008-09-27 19:32:17 +02002030 ide_fixstring(vendor_id, 8, 0);
2031 ide_fixstring(product_id, 16, 0);
2032 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002033
Borislav Petkov801bd322008-09-27 19:32:17 +02002034 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002035 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
2038/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002039 * Ask the tape about its various parameters. In particular, we will adjust our
2040 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002042static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
2044 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002045 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002046 u8 *caps;
2047 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002050 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002051 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2052 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002053 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002054 put_unaligned(52, (u16 *)&tape->caps[12]);
2055 put_unaligned(540, (u16 *)&tape->caps[14]);
2056 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 return;
2058 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002059 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Borislav Petkovb6422012008-02-02 19:56:49 +01002061 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002062 speed = be16_to_cpup((__be16 *)&caps[14]);
2063 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002065 *(u16 *)&caps[8] = max_speed;
2066 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2067 *(u16 *)&caps[14] = speed;
2068 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002069
2070 if (!speed) {
2071 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2072 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002073 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002075 if (!max_speed) {
2076 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2077 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002078 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 }
2080
Borislav Petkovb6422012008-02-02 19:56:49 +01002081 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002082
2083 /* device lacks locking support according to capabilities page */
2084 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02002085 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002086
Borislav Petkovb6422012008-02-02 19:56:49 +01002087 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002088 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002089 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002090 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002093#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002094#define ide_tape_devset_get(name, field) \
2095static int get_##name(ide_drive_t *drive) \
2096{ \
2097 idetape_tape_t *tape = drive->driver_data; \
2098 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002100
2101#define ide_tape_devset_set(name, field) \
2102static int set_##name(ide_drive_t *drive, int arg) \
2103{ \
2104 idetape_tape_t *tape = drive->driver_data; \
2105 tape->field = arg; \
2106 return 0; \
2107}
2108
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002109#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002110ide_tape_devset_get(_name, _field) \
2111ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002112IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002113
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002114#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002115ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002116IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002117
2118static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2119static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2120static int divf_buffer(ide_drive_t *drive) { return 2; }
2121static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2122
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002123ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002124
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002125ide_tape_devset_rw_field(debug_mask, debug_mask);
2126ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002127
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002128ide_tape_devset_r_field(avg_speed, avg_speed);
2129ide_tape_devset_r_field(speed, caps[14]);
2130ide_tape_devset_r_field(buffer, caps[16]);
2131ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002132
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002133static const struct ide_proc_devset idetape_settings[] = {
2134 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2135 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2136 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2137 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2138 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2139 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2140 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2141 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01002142 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002143};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002147 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002149 * 1. Initialize our various state variables.
2150 * 2. Ask the tape for its capabilities.
2151 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2152 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002154 * Note that at this point ide.c already assigned us an irq, so that we can
2155 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002157static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Borislav Petkov83042b22008-04-27 15:38:27 +02002159 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002161 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002162 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002164 drive->pc_callback = ide_tape_callback;
2165 drive->pc_update_buffers = idetape_update_buffers;
2166 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002167
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002168 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2169
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002170 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2171 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2172 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002173 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002177 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002178 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 tape->minor = minor;
2181 tape->name[0] = 'h';
2182 tape->name[1] = 't';
2183 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002184 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 idetape_get_inquiry_results(drive);
2187 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002188 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002190 tape->buffer_size = *ctl * tape->blk_size;
2191 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002193 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002194 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002196 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002197 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002198 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002199 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002200 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 }
2202
Borislav Petkov83042b22008-04-27 15:38:27 +02002203 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002204 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Borislav Petkovf73850a2008-04-27 15:38:33 +02002206 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
2208 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002209 * Ensure that the number we got makes sense; limit it within
2210 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002212 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2213 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002215 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002216 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002217 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2218 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002219 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002220 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002222 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
2224
Russell King4031bbe2006-01-06 11:41:00 +00002225static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
2227 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002229 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002230 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 ide_unregister_region(tape->disk);
2232
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002233 mutex_lock(&idetape_ref_mutex);
2234 put_device(&tape->dev);
2235 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002238static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002240 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 ide_drive_t *drive = tape->drive;
2242 struct gendisk *g = tape->disk;
2243
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002244 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002245
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002246 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002248 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002249 device_destroy(idetape_sysfs_class,
2250 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 idetape_devs[tape->minor] = NULL;
2252 g->private_data = NULL;
2253 put_disk(g);
2254 kfree(tape);
2255}
2256
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002257#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258static int proc_idetape_read_name
2259 (char *page, char **start, off_t off, int count, int *eof, void *data)
2260{
2261 ide_drive_t *drive = (ide_drive_t *) data;
2262 idetape_tape_t *tape = drive->driver_data;
2263 char *out = page;
2264 int len;
2265
2266 len = sprintf(out, "%s\n", tape->name);
2267 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2268}
2269
2270static ide_proc_entry_t idetape_proc[] = {
2271 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2272 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2273 { NULL, 0, NULL, NULL }
2274};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002275
2276static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2277{
2278 return idetape_proc;
2279}
2280
2281static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2282{
2283 return idetape_settings;
2284}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285#endif
2286
Russell King4031bbe2006-01-06 11:41:00 +00002287static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01002289static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002290 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002291 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002292 .name = "ide-tape",
2293 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002294 },
Russell King4031bbe2006-01-06 11:41:00 +00002295 .probe = ide_tape_probe,
2296 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002299#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002300 .proc_entries = ide_tape_proc_entries,
2301 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002302#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303};
2304
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002305/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002306static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 .owner = THIS_MODULE,
2308 .read = idetape_chrdev_read,
2309 .write = idetape_chrdev_write,
2310 .ioctl = idetape_chrdev_ioctl,
2311 .open = idetape_chrdev_open,
2312 .release = idetape_chrdev_release,
2313};
2314
Al Viroa4600f82008-03-02 10:27:58 -05002315static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316{
Al Viroa4600f82008-03-02 10:27:58 -05002317 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002319 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return -ENXIO;
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return 0;
2323}
2324
Al Viroa4600f82008-03-02 10:27:58 -05002325static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002327 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
2329 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 return 0;
2331}
2332
Al Viroa4600f82008-03-02 10:27:58 -05002333static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 unsigned int cmd, unsigned long arg)
2335{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002336 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04002338 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 if (err == -EINVAL)
2340 err = idetape_blkdev_ioctl(drive, cmd, arg);
2341 return err;
2342}
2343
2344static struct block_device_operations idetape_block_ops = {
2345 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05002346 .open = idetape_open,
2347 .release = idetape_release,
2348 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349};
2350
Russell King4031bbe2006-01-06 11:41:00 +00002351static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352{
2353 idetape_tape_t *tape;
2354 struct gendisk *g;
2355 int minor;
2356
2357 if (!strstr("ide-tape", drive->driver_req))
2358 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 if (drive->media != ide_tape)
2361 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002362
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002363 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2364 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002365 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2366 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 goto failed;
2368 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002369 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002371 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2372 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 goto failed;
2374 }
2375
2376 g = alloc_disk(1 << PARTN_BITS);
2377 if (!g)
2378 goto out_free_tape;
2379
2380 ide_init_disk(g, drive);
2381
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002382 tape->dev.parent = &drive->gendev;
2383 tape->dev.release = ide_tape_release;
2384 dev_set_name(&tape->dev, dev_name(&drive->gendev));
2385
2386 if (device_register(&tape->dev))
2387 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 tape->drive = drive;
2390 tape->driver = &idetape_driver;
2391 tape->disk = g;
2392
2393 g->private_data = &tape->driver;
2394
2395 drive->driver_data = tape;
2396
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002397 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 for (minor = 0; idetape_devs[minor]; minor++)
2399 ;
2400 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002401 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 idetape_setup(drive, tape, minor);
2404
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002405 device_create(idetape_sysfs_class, &drive->gendev,
2406 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2407 device_create(idetape_sysfs_class, &drive->gendev,
2408 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2409 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 g->fops = &idetape_block_ops;
2412 ide_register_region(g);
2413
2414 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002415
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002416out_free_disk:
2417 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418out_free_tape:
2419 kfree(tape);
2420failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002421 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002424static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002426 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002427 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 unregister_chrdev(IDETAPE_MAJOR, "ht");
2429}
2430
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002431static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Will Dysond5dee802005-09-16 02:55:07 -07002433 int error = 1;
2434 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2435 if (IS_ERR(idetape_sysfs_class)) {
2436 idetape_sysfs_class = NULL;
2437 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2438 error = -EBUSY;
2439 goto out;
2440 }
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002443 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2444 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002445 error = -EBUSY;
2446 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 }
Will Dysond5dee802005-09-16 02:55:07 -07002448
2449 error = driver_register(&idetape_driver.gen_driver);
2450 if (error)
2451 goto out_free_driver;
2452
2453 return 0;
2454
2455out_free_driver:
2456 driver_unregister(&idetape_driver.gen_driver);
2457out_free_class:
2458 class_destroy(idetape_sysfs_class);
2459out:
2460 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
Kay Sievers263756e2005-12-12 18:03:44 +01002463MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464module_init(idetape_init);
2465module_exit(idetape_exit);
2466MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002467MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2468MODULE_LICENSE("GPL");