blob: e3b4c1c39d378b793267c04142d97f35e33dd77f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010041#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010044#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtio.h>
49
Borislav Petkov8004a8c2008-02-06 02:57:51 +010050enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010059};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010092 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010094 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010097 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100115
116/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
Borislav Petkov54abf372008-02-06 02:57:52 +0100127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134struct idetape_bh {
Stephen Rothwellab057962007-08-01 23:46:44 +0200135 u32 b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 atomic_t b_count;
137 struct idetape_bh *b_reqnext;
138 char *b_data;
139};
140
Borislav Petkov03056b92008-04-18 00:46:26 +0200141/* Tape door status */
142#define DOOR_UNLOCKED 0
143#define DOOR_LOCKED 1
144#define DOOR_EXPLICITLY_LOCKED 2
145
146/* Some defines for the SPACE command */
147#define IDETAPE_SPACE_OVER_FILEMARK 1
148#define IDETAPE_SPACE_TO_EOD 3
149
150/* Some defines for the LOAD UNLOAD command */
151#define IDETAPE_LU_LOAD_MASK 1
152#define IDETAPE_LU_RETENSION_MASK 2
153#define IDETAPE_LU_EOT_MASK 4
154
Borislav Petkov03056b92008-04-18 00:46:26 +0200155/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
156#define IDETAPE_BLOCK_DESCRIPTOR 0
157#define IDETAPE_CAPABILITIES_PAGE 0x2a
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100160 * Most of our global data which we need to save even as we leave the driver due
161 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
163typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100164 ide_drive_t *drive;
165 struct ide_driver *driver;
166 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100167 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200169 /* used by REQ_IDETAPE_{READ,WRITE} requests */
170 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100173 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100175 * While polling for DSC we use postponed_rq to postpone the current
176 * request so that ide.c will be able to service pending requests on the
177 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200178 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
180 struct request *postponed_rq;
181 /* The time in which we started polling for DSC */
182 unsigned long dsc_polling_start;
183 /* Timer used to poll for dsc */
184 struct timer_list dsc_timer;
185 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100186 unsigned long best_dsc_rw_freq;
187 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 unsigned long dsc_timeout;
189
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100190 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 u8 partition;
192 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100193 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100195 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 u8 sense_key, asc, ascq;
197
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100198 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 unsigned int minor;
200 /* device name */
201 char name[4];
202 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100203 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Borislav Petkov54bb2072008-02-06 02:57:52 +0100205 /* tape block size, usually 512 or 1024 bytes */
206 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100210 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100213 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100215 * At most, there is only one ide-tape originated data transfer request
216 * in the device request queue. This allows ide.c to easily service
217 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200219
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100220 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200221 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200222 /* merge buffer */
223 struct idetape_bh *merge_bh;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +0200224 /* size of the merge buffer */
225 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200226 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 struct idetape_bh *bh;
228 char *b_data;
229 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100230
Borislav Petkova997a432008-04-27 15:38:33 +0200231 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* Wasted space in each stage */
233 int excess_bh_size;
234
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100235 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unsigned long avg_time;
237 int avg_size;
238 int avg_speed;
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* the door is currently locked */
241 int door_locked;
242 /* the tape hardware is write protected */
243 char drv_write_prot;
244 /* the tape is write protected (hardware or opened as read-only) */
245 char write_prot;
246
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100247 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248} idetape_tape_t;
249
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800250static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Will Dysond5dee802005-09-16 02:55:07 -0700252static struct class *idetape_sysfs_class;
253
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100254static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
257{
258 struct ide_tape_obj *tape = NULL;
259
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800260 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200261 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200262 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200263 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200264 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200265 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100266 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200267 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800268 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return tape;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272static void ide_tape_put(struct ide_tape_obj *tape)
273{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200274 ide_drive_t *drive = tape->drive;
275
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800276 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100277 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200278 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800279 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100283 * The variables below are used for the character device interface. Additional
284 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100286static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
289{
290 struct ide_tape_obj *tape = NULL;
291
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800292 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 tape = idetape_devs[i];
294 if (tape)
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100295 get_device(&tape->dev);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800296 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return tape;
298}
299
Borislav Petkovd236d742008-04-18 00:46:27 +0200300static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100301 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 struct idetape_bh *bh = pc->bh;
304 int count;
305
306 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (bh == NULL) {
308 printk(KERN_ERR "ide-tape: bh == NULL in "
309 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200310 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return;
312 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100313 count = min(
314 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
315 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200316 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100317 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 bcount -= count;
319 atomic_add(count, &bh->b_count);
320 if (atomic_read(&bh->b_count) == bh->b_size) {
321 bh = bh->b_reqnext;
322 if (bh)
323 atomic_set(&bh->b_count, 0);
324 }
325 }
326 pc->bh = bh;
327}
328
Borislav Petkovd236d742008-04-18 00:46:27 +0200329static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100330 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 struct idetape_bh *bh = pc->bh;
333 int count;
334
335 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100337 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
338 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200342 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 bcount -= count;
344 pc->b_data += count;
345 pc->b_count -= count;
346 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100347 bh = bh->b_reqnext;
348 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (bh) {
350 pc->b_data = bh->b_data;
351 pc->b_count = atomic_read(&bh->b_count);
352 }
353 }
354 }
355}
356
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200357static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct idetape_bh *bh = pc->bh;
360 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200361 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Borislav Petkov346331f2008-04-18 00:46:26 +0200363 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return;
365 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100367 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
368 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return;
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
372 atomic_set(&bh->b_count, count);
373 if (atomic_read(&bh->b_count) == bh->b_size)
374 bh = bh->b_reqnext;
375 bcount -= count;
376 }
377 pc->bh = bh;
378}
379
380/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100381 * called on each failed packet command retry to analyze the request sense. We
382 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100384static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100387 struct ide_atapi_pc *pc = drive->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Borislav Petkov1b5db432008-02-02 19:56:48 +0100389 tape->sense_key = sense[2] & 0xF;
390 tape->asc = sense[12];
391 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100392
393 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
394 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Borislav Petkovd236d742008-04-18 00:46:27 +0200396 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200397 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200398 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100399 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200400 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200401 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 /*
405 * If error was the result of a zero-length read or write command,
406 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
407 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
408 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100409 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100410 /* length == 0 */
411 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
412 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* don't report an error, everything's ok */
414 pc->error = 0;
415 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200416 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100419 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100420 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200421 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100423 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100424 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
425 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100426 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200427 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100430 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100431 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100432 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200433 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200435 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200436 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
438 }
439}
440
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200441/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200442static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200444 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200446 while (bh) {
447 u32 size = bh->b_size;
448
449 while (size) {
450 unsigned int order = fls(size >> PAGE_SHIFT)-1;
451
452 if (bh->b_data)
453 free_pages((unsigned long)bh->b_data, order);
454
455 size &= (order-1);
456 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 prev_bh = bh;
459 bh = bh->b_reqnext;
460 kfree(prev_bh);
461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
465{
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100466 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100469 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 switch (uptodate) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100472 case 0: error = IDE_DRV_ERROR_GENERAL; break;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100473 case 1: error = 0; break;
474 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 rq->errors = error;
477 if (error)
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100478 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100480 if (!blk_special_request(rq)) {
481 ide_end_request(drive, uptodate, nr_sects);
482 return 0;
483 }
484
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100485 ide_complete_rq(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return 0;
488}
489
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200490static void ide_tape_handle_dsc(ide_drive_t *);
491
492static void ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200495 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200496 int uptodate = pc->error ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100498 debug_log(DBG_PROCS, "Enter %s\n", __func__);
499
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200500 if (dsc)
501 ide_tape_handle_dsc(drive);
502
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100503 if (drive->failed_pc == pc)
504 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200505
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200506 if (pc->c[0] == REQUEST_SENSE) {
507 if (uptodate)
508 idetape_analyze_error(drive, pc->buf);
509 else
510 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
511 "itself - Aborting request!\n");
512 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100513 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200514 int blocks = pc->xferred / tape->blk_size;
515
516 tape->avg_size += blocks * tape->blk_size;
517
518 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
519 tape->avg_speed = tape->avg_size * HZ /
520 (jiffies - tape->avg_time) / 1024;
521 tape->avg_size = 0;
522 tape->avg_time = jiffies;
523 }
524
525 tape->first_frame += blocks;
526 rq->current_nr_sectors -= blocks;
527
528 if (pc->error)
529 uptodate = pc->error;
530 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200531 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200532
533 debug_log(DBG_SENSE, "BOP - %s\n",
534 (readpos[0] & 0x80) ? "Yes" : "No");
535 debug_log(DBG_SENSE, "EOP - %s\n",
536 (readpos[0] & 0x40) ? "Yes" : "No");
537
538 if (readpos[0] & 0x4) {
539 printk(KERN_INFO "ide-tape: Block location is unknown"
540 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200541 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200542 uptodate = 0;
543 } else {
544 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200545 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200546
547 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200548 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200549 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200552
553 idetape_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100557 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100558 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100560static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 idetape_tape_t *tape = drive->driver_data;
563
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100564 debug_log(DBG_PROCS, "Enter %s\n", __func__);
565
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100566 tape->postponed_rq = drive->hwif->rq;
567
Borislav Petkov54bb2072008-02-06 02:57:52 +0100568 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200571static void ide_tape_handle_dsc(ide_drive_t *drive)
572{
573 idetape_tape_t *tape = drive->driver_data;
574
575 /* Media access command */
576 tape->dsc_polling_start = jiffies;
577 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
578 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
579 /* Allow ide.c to handle other requests */
580 idetape_postpone_request(drive);
581}
582
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200583static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200584 unsigned int bcount, int write)
585{
586 if (write)
587 idetape_output_buffers(drive, pc, bcount);
588 else
589 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200590
591 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200592}
Borislav Petkova1efc852008-02-06 02:57:52 +0100593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100595 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200597 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100598 * until we finish handling it. Each packet command is associated with a
599 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100601 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100603 * 1. idetape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200604 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200606 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100607 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100609 * 3. ATAPI Tape media access commands have immediate status with a delayed
610 * process. In case of a successful initiation of a media access packet command,
611 * the DSC bit will be set when the actual execution of the command is finished.
612 * Since the tape drive will not issue an interrupt, we have to poll for this
613 * event. In this case, we define the request as "low priority request" by
614 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
615 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100617 * ide.c will then give higher priority to requests which originate from the
618 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100620 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100622 * 5. In case an error was found, we queue a request sense packet command in
623 * front of the request queue and retry the operation up to
624 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100626 * 6. In case no error was found, or we decided to give up and not to retry
627 * again, the callback function will be called and then we will handle the next
628 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Borislav Petkovd236d742008-04-18 00:46:27 +0200631static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
632 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200636 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100637 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
639 "Two request sense in serial were issued\n");
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100642 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
643 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200646 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200649 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100651 * We will "abort" retrying a packet command in case legitimate
652 * error code was received (crossing a filemark, or end of the
653 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200655 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100656 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 tape->sense_key == 2 && tape->asc == 4 &&
658 (tape->ascq == 1 || tape->ascq == 8))) {
659 printk(KERN_ERR "ide-tape: %s: I/O error, "
660 "pc = %2x, key = %2x, "
661 "asc = %2x, ascq = %2x\n",
662 tape->name, pc->c[0],
663 tape->sense_key, tape->asc,
664 tape->ascq);
665 }
666 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100667 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100669 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200670 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200671 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100673 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100677 return ide_issue_pc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100680/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200681static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200683 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100684 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100686 /* DBD = 1 - Don't return block descriptors */
687 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 pc->c[2] = page_code;
689 /*
690 * Changed pc->c[3] to 0 (255 will at best return unused info).
691 *
692 * For SCSI this byte is defined as subpage instead of high byte
693 * of length and some IDE drives seem to interpret it this way
694 * and return an error when 255 is used.
695 */
696 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100697 /* We will just discard data in that case */
698 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200700 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200702 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200704 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100707static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200709 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200711 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100712 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200714 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100715
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200716 if (stat & ATA_DSC) {
717 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100719 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 printk(KERN_ERR "ide-tape: %s: I/O error, ",
721 tape->name);
722 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200723 ide_retry_pc(drive, tape->disk);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200724 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100728 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100729 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200731 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return ide_stopped;
733}
734
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200735static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200736 struct ide_atapi_pc *pc, struct request *rq,
737 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Borislav Petkov0014c752008-07-23 19:56:00 +0200739 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
740 unsigned int length = rq->current_nr_sectors;
741
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200742 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100743 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200746 pc->buf = NULL;
747 pc->buf_size = length * tape->blk_size;
748 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200749 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200750 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200752 if (opcode == READ_6) {
753 pc->c[0] = READ_6;
754 atomic_set(&bh->b_count, 0);
755 } else if (opcode == WRITE_6) {
756 pc->c[0] = WRITE_6;
757 pc->flags |= PC_FLAG_WRITING;
758 pc->b_data = bh->b_data;
759 pc->b_count = atomic_read(&bh->b_count);
760 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200761
762 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765static ide_startstop_t idetape_do_request(ide_drive_t *drive,
766 struct request *rq, sector_t block)
767{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200768 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200770 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100772 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Mark de Wever730616b2008-10-10 22:39:17 +0200774 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
775 " current_nr_sectors: %u\n",
776 (unsigned long long)rq->sector, rq->nr_sectors,
777 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Jens Axboe4aff5e22006-08-10 08:44:47 +0200779 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100780 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200782 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 ide_end_request(drive, 0, 0);
784 return ide_stopped;
785 }
786
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100787 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100788 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
789 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200790 goto out;
791 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (postponed_rq != NULL)
794 if (rq != postponed_rq) {
795 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
796 "Two DSC requests were queued\n");
797 idetape_end_request(drive, 0, 0);
798 return ide_stopped;
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 tape->postponed_rq = NULL;
802
803 /*
804 * If the tape is still busy, postpone our request and service
805 * the other device meanwhile.
806 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200807 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200809 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
810 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200811 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200813 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200814 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200815 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200818 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200819 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (postponed_rq == NULL) {
821 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100822 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
824 } else if (time_after(jiffies, tape->dsc_timeout)) {
825 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
826 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200827 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 idetape_media_access_finished(drive);
829 return ide_stopped;
830 } else {
831 return ide_do_reset(drive);
832 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100833 } else if (time_after(jiffies,
834 tape->dsc_polling_start +
835 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100836 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 idetape_postpone_request(drive);
838 return ide_stopped;
839 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200840 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200841 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200842 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 goto out;
844 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200845 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200846 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200847 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 goto out;
849 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200850 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200851 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200852 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
853 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto out;
855 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200856 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 idetape_media_access_finished(drive);
858 return ide_stopped;
859 }
860 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200861
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200862out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100863 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200867 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200868 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100869 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200871 * It returns a pointer to the newly allocated buffer, or NULL in case of
872 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200874static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
875 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200877 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200878 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200879 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 char *b_data = NULL;
881
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200882 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
883 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (bh == NULL)
885 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200886
887 order = fls(pages) - 1;
888 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100889 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200891 b_allocd = (1 << order) * PAGE_SIZE;
892 pages &= (order-1);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200895 memset(bh->b_data, 0, b_allocd);
896 bh->b_reqnext = NULL;
897 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 atomic_set(&bh->b_count, full ? bh->b_size : 0);
899
Borislav Petkov41aa1702008-04-27 15:38:32 +0200900 while (pages) {
901 order = fls(pages) - 1;
902 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100903 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200905 b_allocd = (1 << order) * PAGE_SIZE;
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200908 memset(b_data, 0, b_allocd);
909
910 /* newly allocated page frames below buffer header or ...*/
911 if (bh->b_data == b_data + b_allocd) {
912 bh->b_size += b_allocd;
913 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200915 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 continue;
917 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200918 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200920 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200922 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 continue;
924 }
925 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100926 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
927 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200928 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 goto abort;
930 }
931 bh->b_reqnext = NULL;
932 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200933 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 atomic_set(&bh->b_count, full ? bh->b_size : 0);
935 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200936
937 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 bh->b_size -= tape->excess_bh_size;
941 if (full)
942 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200943 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200945 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return NULL;
947}
948
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100949static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +0200950 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 struct idetape_bh *bh = tape->bh;
953 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700954 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100958 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
959 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700960 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100962 count = min((unsigned int)
963 (bh->b_size - atomic_read(&bh->b_count)),
964 (unsigned int)n);
965 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
966 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -0700967 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 n -= count;
969 atomic_add(count, &bh->b_count);
970 buf += count;
971 if (atomic_read(&bh->b_count) == bh->b_size) {
972 bh = bh->b_reqnext;
973 if (bh)
974 atomic_set(&bh->b_count, 0);
975 }
976 }
977 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700978 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100981static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +0200982 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
984 struct idetape_bh *bh = tape->bh;
985 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -0700986 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100990 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
991 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700992 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -0700995 if (copy_to_user(buf, tape->b_data, count))
996 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 n -= count;
998 tape->b_data += count;
999 tape->b_count -= count;
1000 buf += count;
1001 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001002 bh = bh->b_reqnext;
1003 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (bh) {
1005 tape->b_data = bh->b_data;
1006 tape->b_count = atomic_read(&bh->b_count);
1007 }
1008 }
1009 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001010 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001013static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001015 struct idetape_bh *bh = tape->merge_bh;
1016 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001017
Borislav Petkov54abf372008-02-06 02:57:52 +01001018 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 atomic_set(&bh->b_count, 0);
1020 else {
1021 tape->b_data = bh->b_data;
1022 tape->b_count = atomic_read(&bh->b_count);
1023 }
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001027 * Write a filemark if write_filemark=1. Flush the device buffers without
1028 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001030static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001031 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001033 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001034 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001036 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1040{
1041 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001042 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 int load_attempted = 0;
1044
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001045 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001046 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 timeout += jiffies;
1048 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001049 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return 0;
1051 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001052 || (tape->asc == 0x3A)) {
1053 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (load_attempted)
1055 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001056 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 load_attempted = 1;
1058 /* not about to be ready */
1059 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1060 (tape->ascq == 1 || tape->ascq == 8)))
1061 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001062 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064 return -EIO;
1065}
1066
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001067static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001069 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001070 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 int rc;
1072
1073 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001074 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001075 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return rc;
1077 idetape_wait_ready(drive, 60 * 5 * HZ);
1078 return 0;
1079}
1080
Borislav Petkovd236d742008-04-18 00:46:27 +02001081static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001083 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001084 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001085 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001088static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001091 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 int position;
1093
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001094 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001097 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001099 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return position;
1101}
1102
Borislav Petkovd236d742008-04-18 00:46:27 +02001103static void idetape_create_locate_cmd(ide_drive_t *drive,
1104 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001105 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001107 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001108 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001110 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001112 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001115static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Borislav Petkov54abf372008-02-06 02:57:52 +01001119 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001120 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001122 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001123 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001124 if (tape->merge_bh != NULL) {
1125 ide_tape_kfree_buffer(tape);
1126 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128
Borislav Petkov54abf372008-02-06 02:57:52 +01001129 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001133 * Position the tape to the requested block using the LOCATE packet command.
1134 * A READ POSITION command is then issued to check where we are positioned. Like
1135 * all higher level operations, we queue the commands at the tail of the request
1136 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001138static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1139 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
1141 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001142 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001144 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Borislav Petkov54abf372008-02-06 02:57:52 +01001146 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001147 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 idetape_wait_ready(drive, 60 * 5 * HZ);
1149 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001150 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (retval)
1152 return (retval);
1153
1154 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001155 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001158static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001159 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 int seek, position;
1163
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001164 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (restore_position) {
1166 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001167 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001169 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001170 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return;
1172 }
1173 }
1174}
1175
1176/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001177 * Generate a read/write request for the block device interface and wait for it
1178 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001180static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1181 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
1183 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001184 struct request *rq;
1185 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001187 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1188
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001189 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1190 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001191 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001192 rq->rq_disk = tape->disk;
1193 rq->special = (void *)bh;
1194 rq->sector = tape->first_frame;
1195 rq->nr_sectors = blocks;
1196 rq->current_nr_sectors = blocks;
1197 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1198
1199 errors = rq->errors;
1200 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1201 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1204 return 0;
1205
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001206 if (tape->merge_bh)
1207 idetape_init_merge_buffer(tape);
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +01001208 if (errors == IDE_DRV_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001210 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Borislav Petkovd236d742008-04-18 00:46:27 +02001213static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001215 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001216 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001217 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001218 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Borislav Petkovd236d742008-04-18 00:46:27 +02001221static void idetape_create_rewind_cmd(ide_drive_t *drive,
1222 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001224 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001225 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001226 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
Borislav Petkovd236d742008-04-18 00:46:27 +02001229static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001231 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001232 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001234 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Borislav Petkovd236d742008-04-18 00:46:27 +02001237static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001239 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001240 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001241 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001243 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
Borislav Petkov97c566c2008-04-27 15:38:25 +02001246/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001247static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
1249 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001251 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001253 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001254 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
Borislav Petkovd9df9372008-04-27 15:38:34 +02001257static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
1259 idetape_tape_t *tape = drive->driver_data;
1260 int blocks, min;
1261 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001262
Borislav Petkov54abf372008-02-06 02:57:52 +01001263 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001264 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001265 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return;
1267 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001268 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001270 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001272 if (tape->merge_bh_size) {
1273 blocks = tape->merge_bh_size / tape->blk_size;
1274 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 unsigned int i;
1276
1277 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001278 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001279 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 bh = tape->bh->b_reqnext;
1281 while (bh) {
1282 atomic_set(&bh->b_count, 0);
1283 bh = bh->b_reqnext;
1284 }
1285 bh = tape->bh;
1286 while (i) {
1287 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001288 printk(KERN_INFO "ide-tape: bug,"
1289 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 break;
1291 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001292 min = min(i, (unsigned int)(bh->b_size -
1293 atomic_read(&bh->b_count)));
1294 memset(bh->b_data + atomic_read(&bh->b_count),
1295 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 atomic_add(min, &bh->b_count);
1297 i -= min;
1298 bh = bh->b_reqnext;
1299 }
1300 }
1301 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001302 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001304 if (tape->merge_bh != NULL) {
1305 ide_tape_kfree_buffer(tape);
1306 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001308 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
Borislav Petkov83042b22008-04-27 15:38:27 +02001311static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001317 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1318 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001319 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 idetape_flush_tape_buffers(drive);
1321 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001322 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001323 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001324 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001325 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001327 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1328 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001330 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001333 * Issue a read 0 command to ensure that DSC handshake is
1334 * switched from completion mode to buffer available mode.
1335 * No point in issuing this if DSC overlap isn't supported, some
1336 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001338 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001339 bytes_read = idetape_queue_rw_tail(drive,
1340 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001341 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001343 ide_tape_kfree_buffer(tape);
1344 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001345 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return bytes_read;
1347 }
1348 }
1349 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return 0;
1352}
1353
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001354/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001355static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001359 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001361 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001362 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return 0;
1364
Borislav Petkov83042b22008-04-27 15:38:27 +02001365 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001367 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001368 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
1370
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001371static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 idetape_tape_t *tape = drive->driver_data;
1374 struct idetape_bh *bh;
1375 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 while (bcount) {
1378 unsigned int count;
1379
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001380 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001381 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001383 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001385 atomic_set(&bh->b_count,
1386 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1388 count -= atomic_read(&bh->b_count);
1389 bh = bh->b_reqnext;
1390 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001391 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001392 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394}
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001397 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1398 * currently support only one partition.
1399 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001400static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001402 struct ide_tape_obj *tape = drive->driver_data;
1403 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001405 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001406
1407 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001410 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (retval)
1412 return retval;
1413
1414 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001415 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (retval)
1417 return retval;
1418 return 0;
1419}
1420
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001421/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001422static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1423 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 void __user *argp = (void __user *)arg;
1427
Borislav Petkovd59823f2008-02-02 19:56:51 +01001428 struct idetape_config {
1429 int dsc_rw_frequency;
1430 int dsc_media_access_frequency;
1431 int nr_stages;
1432 } config;
1433
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001434 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001437 case 0x0340:
1438 if (copy_from_user(&config, argp, sizeof(config)))
1439 return -EFAULT;
1440 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001441 break;
1442 case 0x0350:
1443 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001444 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001445 if (copy_to_user(argp, &config, sizeof(config)))
1446 return -EFAULT;
1447 break;
1448 default:
1449 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451 return 0;
1452}
1453
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001454static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1455 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001458 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001459 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001460 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001461 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 if (mt_count == 0)
1464 return 0;
1465 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001466 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001468 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470
Borislav Petkov54abf372008-02-06 02:57:52 +01001471 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001472 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001473 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001475 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001479 case MTFSF:
1480 case MTBSF:
1481 idetape_create_space_cmd(&pc, mt_count - count,
1482 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001483 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001484 case MTFSFM:
1485 case MTBSFM:
1486 if (!sprev)
1487 return -EIO;
1488 retval = idetape_space_over_filemarks(drive, MTFSF,
1489 mt_count - count);
1490 if (retval)
1491 return retval;
1492 count = (MTBSFM == mt_op ? 1 : -1);
1493 return idetape_space_over_filemarks(drive, MTFSF, count);
1494 default:
1495 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1496 mt_op);
1497 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499}
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001502 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001504 * The tape is optimized to maximize throughput when it is transferring an
1505 * integral number of the "continuous transfer limit", which is a parameter of
1506 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001508 * As of version 1.3 of the driver, the character device provides an abstract
1509 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1510 * same backup/restore procedure is supported. The driver will internally
1511 * convert the requests to the recommended transfer unit, so that an unmatch
1512 * between the user's block size to the recommended size will only result in a
1513 * (slightly) increased driver overhead, but will no longer hit performance.
1514 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001516static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1517 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001519 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001521 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001522 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001523 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001525 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Borislav Petkov54abf372008-02-06 02:57:52 +01001527 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001528 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001529 if (count > tape->blk_size &&
1530 (count % tape->blk_size) == 0)
1531 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001533 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001534 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return rc;
1536 if (count == 0)
1537 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001538 if (tape->merge_bh_size) {
1539 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001540 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001541 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001542 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001544 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 count -= actually_read;
1546 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001547 while (count >= tape->buffer_size) {
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;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001551 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001552 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 buf += bytes_read;
1554 count -= bytes_read;
1555 actually_read += bytes_read;
1556 }
1557 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001558 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (bytes_read <= 0)
1560 goto finish;
1561 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001562 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001563 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001565 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001568 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001569 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 idetape_space_over_filemarks(drive, MTFSF, 1);
1572 return 0;
1573 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001574
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001575 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001578static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 size_t count, loff_t *ppos)
1580{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001581 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001583 ssize_t actually_written = 0;
1584 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001585 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /* The drive is write protected. */
1588 if (tape->write_prot)
1589 return -EACCES;
1590
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001591 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001594 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1595 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001596 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001597 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001598 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001600 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001602 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1603 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001605 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001606 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001609 * Issue a write 0 command to ensure that DSC handshake is
1610 * switched from completion mode to buffer available mode. No
1611 * point in issuing this if DSC overlap isn't supported, some
1612 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001614 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001615 ssize_t retval = idetape_queue_rw_tail(drive,
1616 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001617 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001619 ide_tape_kfree_buffer(tape);
1620 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001621 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return retval;
1623 }
1624 }
1625 }
1626 if (count == 0)
1627 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001628 if (tape->merge_bh_size) {
1629 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001630 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001631 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001633 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001634 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001635 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001636 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001637 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001639 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 count -= actually_written;
1641
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001642 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001643 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001644 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001645 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (retval <= 0)
1647 return (retval);
1648 }
1649 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001650 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001651 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001652 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001653 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001654 buf += tape->buffer_size;
1655 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001656 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001657 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (retval <= 0)
1659 return (retval);
1660 }
1661 if (count) {
1662 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001663 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001664 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001665 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001667 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001670static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001672 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001673 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 /* Write a filemark */
1676 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001677 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1679 return -EIO;
1680 }
1681 return 0;
1682}
1683
1684/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001685 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1686 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001688 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1689 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001690 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001692 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001694 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1695 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001697static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
1699 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001700 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001701 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001702 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001704 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1705 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001708 case MTFSF:
1709 case MTFSFM:
1710 case MTBSF:
1711 case MTBSFM:
1712 if (!mt_count)
1713 return 0;
1714 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1715 default:
1716 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001720 case MTWEOF:
1721 if (tape->write_prot)
1722 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001723 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001724 for (i = 0; i < mt_count; i++) {
1725 retval = idetape_write_filemark(drive);
1726 if (retval)
1727 return retval;
1728 }
1729 return 0;
1730 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001731 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001732 if (idetape_rewind_tape(drive))
1733 return -EIO;
1734 return 0;
1735 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001736 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001737 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001738 case MTUNLOAD:
1739 case MTOFFL:
1740 /*
1741 * If door is locked, attempt to unlock before
1742 * attempting to eject.
1743 */
1744 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001745 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001746 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001747 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001748 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001749 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001750 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001751 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001752 return retval;
1753 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001754 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001755 return idetape_flush_tape_buffers(drive);
1756 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001757 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001758 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001759 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001760 case MTEOM:
1761 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001762 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001763 case MTERASE:
1764 (void)idetape_rewind_tape(drive);
1765 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001766 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001767 case MTSETBLK:
1768 if (mt_count) {
1769 if (mt_count < tape->blk_size ||
1770 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001772 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001773 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001774 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001775 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001776 return 0;
1777 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001778 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001779 return idetape_position_tape(drive,
1780 mt_count * tape->user_bs_factor, tape->partition, 0);
1781 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001782 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001783 return idetape_position_tape(drive, 0, mt_count, 0);
1784 case MTFSR:
1785 case MTBSR:
1786 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001787 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001788 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001790 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1791 return 0;
1792 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001793 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001794 if (retval)
1795 return retval;
1796 tape->door_locked = DOOR_UNLOCKED;
1797 return 0;
1798 default:
1799 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1800 mt_op);
1801 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803}
1804
1805/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001806 * Our character device ioctls. General mtio.h magnetic io commands are
1807 * supported here, and not in the corresponding block interface. Our own
1808 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001810static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1811 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001813 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 ide_drive_t *drive = tape->drive;
1815 struct mtop mtop;
1816 struct mtget mtget;
1817 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001818 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 void __user *argp = (void __user *)arg;
1820
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001821 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Borislav Petkov54abf372008-02-06 02:57:52 +01001823 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001824 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 idetape_flush_tape_buffers(drive);
1826 }
1827 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001828 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001829 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001830 position = idetape_read_position(drive);
1831 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return -EIO;
1833 }
1834 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001835 case MTIOCTOP:
1836 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1837 return -EFAULT;
1838 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1839 case MTIOCGET:
1840 memset(&mtget, 0, sizeof(struct mtget));
1841 mtget.mt_type = MT_ISSCSI2;
1842 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1843 mtget.mt_dsreg =
1844 ((tape->blk_size * tape->user_bs_factor)
1845 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001846
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001847 if (tape->drv_write_prot)
1848 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1849
1850 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1851 return -EFAULT;
1852 return 0;
1853 case MTIOCPOS:
1854 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1855 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1856 return -EFAULT;
1857 return 0;
1858 default:
1859 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001860 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001861 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863}
1864
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001865/*
1866 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1867 * block size with the reported value.
1868 */
1869static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1870{
1871 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001872 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001873
1874 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001875 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001876 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001877 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001878 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1879 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001880 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001881 }
1882 return;
1883 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001884 tape->blk_size = (pc.buf[4 + 5] << 16) +
1885 (pc.buf[4 + 6] << 8) +
1886 pc.buf[4 + 7];
1887 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001888}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001890static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
1892 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1893 ide_drive_t *drive;
1894 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 int retval;
1896
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001897 if (i >= MAX_HWIFS * MAX_DRIVES)
1898 return -ENXIO;
1899
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001900 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001901 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001902 if (!tape) {
1903 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001904 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001905 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001906
1907 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 /*
1910 * We really want to do nonseekable_open(inode, filp); here, but some
1911 * versions of tar incorrectly call lseek on tapes and bail out if that
1912 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1913 */
1914 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 drive = tape->drive;
1917
1918 filp->private_data = tape;
1919
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001920 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 retval = -EBUSY;
1922 goto out_put_tape;
1923 }
1924
1925 retval = idetape_wait_ready(drive, 60 * HZ);
1926 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001927 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1929 goto out_put_tape;
1930 }
1931
1932 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001933 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 (void)idetape_rewind_tape(drive);
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001937 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 /* Set write protect flag if device is opened as read-only. */
1940 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1941 tape->write_prot = 1;
1942 else
1943 tape->write_prot = tape->drv_write_prot;
1944
1945 /* Make sure drive isn't write protected if user wants to write. */
1946 if (tape->write_prot) {
1947 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1948 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001949 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 retval = -EROFS;
1951 goto out_put_tape;
1952 }
1953 }
1954
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001955 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001956 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001957 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001958 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1959 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001962 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 return 0;
1964
1965out_put_tape:
1966 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001967 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return retval;
1969}
1970
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001971static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
1973 idetape_tape_t *tape = drive->driver_data;
1974
Borislav Petkovd9df9372008-04-27 15:38:34 +02001975 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001976 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
1977 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001978 idetape_pad_zeros(drive, tape->blk_size *
1979 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001980 ide_tape_kfree_buffer(tape);
1981 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983 idetape_write_filemark(drive);
1984 idetape_flush_tape_buffers(drive);
1985 idetape_flush_tape_buffers(drive);
1986}
1987
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001988static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001990 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 unsigned int minor = iminor(inode);
1993
1994 lock_kernel();
1995 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001996
1997 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Borislav Petkov54abf372008-02-06 02:57:52 +01001999 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002001 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002003 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002005
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002006 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002008 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002010 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002011 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 }
2013 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002014 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 ide_tape_put(tape);
2016 unlock_kernel();
2017 return 0;
2018}
2019
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002020static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002023 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002024 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002027 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002028 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2029 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 return;
2031 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002032 memcpy(vendor_id, &pc.buf[8], 8);
2033 memcpy(product_id, &pc.buf[16], 16);
2034 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002035
Borislav Petkov801bd322008-09-27 19:32:17 +02002036 ide_fixstring(vendor_id, 8, 0);
2037 ide_fixstring(product_id, 16, 0);
2038 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002039
Borislav Petkov801bd322008-09-27 19:32:17 +02002040 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002041 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
2044/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002045 * Ask the tape about its various parameters. In particular, we will adjust our
2046 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002048static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
2050 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002051 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002052 u8 *caps;
2053 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002056 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002057 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2058 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002059 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002060 put_unaligned(52, (u16 *)&tape->caps[12]);
2061 put_unaligned(540, (u16 *)&tape->caps[14]);
2062 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 return;
2064 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002065 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Borislav Petkovb6422012008-02-02 19:56:49 +01002067 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002068 speed = be16_to_cpup((__be16 *)&caps[14]);
2069 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002071 *(u16 *)&caps[8] = max_speed;
2072 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2073 *(u16 *)&caps[14] = speed;
2074 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002075
2076 if (!speed) {
2077 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2078 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002079 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002081 if (!max_speed) {
2082 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2083 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002084 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
2086
Borislav Petkovb6422012008-02-02 19:56:49 +01002087 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002088
2089 /* device lacks locking support according to capabilities page */
2090 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02002091 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002092
Borislav Petkovb6422012008-02-02 19:56:49 +01002093 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002094 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002095 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002096 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002099#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002100#define ide_tape_devset_get(name, field) \
2101static int get_##name(ide_drive_t *drive) \
2102{ \
2103 idetape_tape_t *tape = drive->driver_data; \
2104 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002106
2107#define ide_tape_devset_set(name, field) \
2108static int set_##name(ide_drive_t *drive, int arg) \
2109{ \
2110 idetape_tape_t *tape = drive->driver_data; \
2111 tape->field = arg; \
2112 return 0; \
2113}
2114
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002115#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002116ide_tape_devset_get(_name, _field) \
2117ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002118IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002119
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002120#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002121ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002122IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002123
2124static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2125static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2126static int divf_buffer(ide_drive_t *drive) { return 2; }
2127static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2128
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002129ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002130
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002131ide_tape_devset_rw_field(debug_mask, debug_mask);
2132ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002133
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002134ide_tape_devset_r_field(avg_speed, avg_speed);
2135ide_tape_devset_r_field(speed, caps[14]);
2136ide_tape_devset_r_field(buffer, caps[16]);
2137ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002138
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002139static const struct ide_proc_devset idetape_settings[] = {
2140 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2141 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2142 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2143 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2144 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2145 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2146 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2147 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01002148 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002149};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002150#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002153 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002155 * 1. Initialize our various state variables.
2156 * 2. Ask the tape for its capabilities.
2157 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2158 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002160 * Note that at this point ide.c already assigned us an irq, so that we can
2161 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002163static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
Borislav Petkov83042b22008-04-27 15:38:27 +02002165 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002167 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01002168 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02002170 drive->pc_callback = ide_tape_callback;
2171 drive->pc_update_buffers = idetape_update_buffers;
2172 drive->pc_io_buffers = ide_tape_io_buffers;
Borislav Petkov776bb022008-07-23 19:55:59 +02002173
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002174 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
2175
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002176 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2177 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2178 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002179 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002183 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002184 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
2185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 tape->minor = minor;
2187 tape->name[0] = 'h';
2188 tape->name[1] = 't';
2189 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002190 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 idetape_get_inquiry_results(drive);
2193 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002194 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002196 tape->buffer_size = *ctl * tape->blk_size;
2197 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002199 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002200 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002202 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002203 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002204 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002205 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002206 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
2208
Borislav Petkov83042b22008-04-27 15:38:27 +02002209 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002210 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Borislav Petkovf73850a2008-04-27 15:38:33 +02002212 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002215 * Ensure that the number we got makes sense; limit it within
2216 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002218 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2219 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002221 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002222 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002223 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2224 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002225 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002226 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002228 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
Russell King4031bbe2006-01-06 11:41:00 +00002231static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
2233 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002235 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002236 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 ide_unregister_region(tape->disk);
2238
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002239 mutex_lock(&idetape_ref_mutex);
2240 put_device(&tape->dev);
2241 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002244static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002246 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 ide_drive_t *drive = tape->drive;
2248 struct gendisk *g = tape->disk;
2249
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002250 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002251
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002252 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002254 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002255 device_destroy(idetape_sysfs_class,
2256 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 idetape_devs[tape->minor] = NULL;
2258 g->private_data = NULL;
2259 put_disk(g);
2260 kfree(tape);
2261}
2262
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002263#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264static int proc_idetape_read_name
2265 (char *page, char **start, off_t off, int count, int *eof, void *data)
2266{
2267 ide_drive_t *drive = (ide_drive_t *) data;
2268 idetape_tape_t *tape = drive->driver_data;
2269 char *out = page;
2270 int len;
2271
2272 len = sprintf(out, "%s\n", tape->name);
2273 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2274}
2275
2276static ide_proc_entry_t idetape_proc[] = {
2277 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2278 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2279 { NULL, 0, NULL, NULL }
2280};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002281
2282static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
2283{
2284 return idetape_proc;
2285}
2286
2287static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
2288{
2289 return idetape_settings;
2290}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291#endif
2292
Russell King4031bbe2006-01-06 11:41:00 +00002293static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01002295static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002296 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002297 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002298 .name = "ide-tape",
2299 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002300 },
Russell King4031bbe2006-01-06 11:41:00 +00002301 .probe = ide_tape_probe,
2302 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 .do_request = idetape_do_request,
2305 .end_request = idetape_end_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002306#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02002307 .proc_entries = ide_tape_proc_entries,
2308 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002309#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310};
2311
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002312/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002313static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 .owner = THIS_MODULE,
2315 .read = idetape_chrdev_read,
2316 .write = idetape_chrdev_write,
2317 .ioctl = idetape_chrdev_ioctl,
2318 .open = idetape_chrdev_open,
2319 .release = idetape_chrdev_release,
2320};
2321
Al Viroa4600f82008-03-02 10:27:58 -05002322static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
Al Viroa4600f82008-03-02 10:27:58 -05002324 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002326 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 return -ENXIO;
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return 0;
2330}
2331
Al Viroa4600f82008-03-02 10:27:58 -05002332static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002334 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return 0;
2338}
2339
Al Viroa4600f82008-03-02 10:27:58 -05002340static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 unsigned int cmd, unsigned long arg)
2342{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002343 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04002345 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 if (err == -EINVAL)
2347 err = idetape_blkdev_ioctl(drive, cmd, arg);
2348 return err;
2349}
2350
2351static struct block_device_operations idetape_block_ops = {
2352 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05002353 .open = idetape_open,
2354 .release = idetape_release,
2355 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356};
2357
Russell King4031bbe2006-01-06 11:41:00 +00002358static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
2360 idetape_tape_t *tape;
2361 struct gendisk *g;
2362 int minor;
2363
2364 if (!strstr("ide-tape", drive->driver_req))
2365 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (drive->media != ide_tape)
2368 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002369
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002370 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2371 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002372 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2373 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 goto failed;
2375 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002376 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002378 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2379 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 goto failed;
2381 }
2382
2383 g = alloc_disk(1 << PARTN_BITS);
2384 if (!g)
2385 goto out_free_tape;
2386
2387 ide_init_disk(g, drive);
2388
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002389 tape->dev.parent = &drive->gendev;
2390 tape->dev.release = ide_tape_release;
2391 dev_set_name(&tape->dev, dev_name(&drive->gendev));
2392
2393 if (device_register(&tape->dev))
2394 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 tape->drive = drive;
2397 tape->driver = &idetape_driver;
2398 tape->disk = g;
2399
2400 g->private_data = &tape->driver;
2401
2402 drive->driver_data = tape;
2403
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002404 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 for (minor = 0; idetape_devs[minor]; minor++)
2406 ;
2407 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002408 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 idetape_setup(drive, tape, minor);
2411
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002412 device_create(idetape_sysfs_class, &drive->gendev,
2413 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2414 device_create(idetape_sysfs_class, &drive->gendev,
2415 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2416 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002417
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 g->fops = &idetape_block_ops;
2419 ide_register_region(g);
2420
2421 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002422
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002423out_free_disk:
2424 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425out_free_tape:
2426 kfree(tape);
2427failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002428 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002431static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002433 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002434 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 unregister_chrdev(IDETAPE_MAJOR, "ht");
2436}
2437
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002438static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Will Dysond5dee802005-09-16 02:55:07 -07002440 int error = 1;
2441 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2442 if (IS_ERR(idetape_sysfs_class)) {
2443 idetape_sysfs_class = NULL;
2444 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2445 error = -EBUSY;
2446 goto out;
2447 }
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002450 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2451 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002452 error = -EBUSY;
2453 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
Will Dysond5dee802005-09-16 02:55:07 -07002455
2456 error = driver_register(&idetape_driver.gen_driver);
2457 if (error)
2458 goto out_free_driver;
2459
2460 return 0;
2461
2462out_free_driver:
2463 driver_unregister(&idetape_driver.gen_driver);
2464out_free_class:
2465 class_destroy(idetape_sysfs_class);
2466out:
2467 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468}
2469
Kay Sievers263756e2005-12-12 18:03:44 +01002470MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471module_init(idetape_init);
2472module_exit(idetape_exit);
2473MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002474MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2475MODULE_LICENSE("GPL");