blob: fe8502afd2eab399a4b66022029dd147f3ceb325 [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/* Error codes returned in rq->errors to the higher part of the driver. */
156#define IDETAPE_ERROR_GENERAL 101
157#define IDETAPE_ERROR_FILEMARK 102
158#define IDETAPE_ERROR_EOD 103
159
160/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
161#define IDETAPE_BLOCK_DESCRIPTOR 0
162#define IDETAPE_CAPABILITIES_PAGE 0x2a
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100165 * Most of our global data which we need to save even as we leave the driver due
166 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168typedef struct ide_tape_obj {
169 ide_drive_t *drive;
170 ide_driver_t *driver;
171 struct gendisk *disk;
172 struct kref kref;
173
174 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * failed_pc points to the last failed packet command, or contains
176 * NULL if we do not need to retry any packet command. This is
177 * required since an additional packet command is needed before the
178 * retry, to get detailed information on what went wrong.
179 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* Last failed packet command */
Borislav Petkovd236d742008-04-18 00:46:27 +0200181 struct ide_atapi_pc *failed_pc;
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200182 /* used by REQ_IDETAPE_{READ,WRITE} requests */
183 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200184
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200185 struct ide_atapi_pc request_sense_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200186 struct request request_sense_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100189 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100191 * While polling for DSC we use postponed_rq to postpone the current
192 * request so that ide.c will be able to service pending requests on the
193 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200194 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 */
196 struct request *postponed_rq;
197 /* The time in which we started polling for DSC */
198 unsigned long dsc_polling_start;
199 /* Timer used to poll for dsc */
200 struct timer_list dsc_timer;
201 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100202 unsigned long best_dsc_rw_freq;
203 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 unsigned long dsc_timeout;
205
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100206 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 u8 partition;
208 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100209 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100211 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 u8 sense_key, asc, ascq;
213
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100214 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 unsigned int minor;
216 /* device name */
217 char name[4];
218 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100219 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Borislav Petkov54bb2072008-02-06 02:57:52 +0100221 /* tape block size, usually 512 or 1024 bytes */
222 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100226 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100229 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100231 * At most, there is only one ide-tape originated data transfer request
232 * in the device request queue. This allows ide.c to easily service
233 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200235
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100236 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200237 int buffer_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200238 /* merge buffer */
239 struct idetape_bh *merge_bh;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +0200240 /* size of the merge buffer */
241 int merge_bh_size;
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200242 /* pointer to current buffer head within the merge buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 struct idetape_bh *bh;
244 char *b_data;
245 int b_count;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100246
Borislav Petkova997a432008-04-27 15:38:33 +0200247 int pages_per_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* Wasted space in each stage */
249 int excess_bh_size;
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* protects the ide-tape queue */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100252 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100254 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 unsigned long avg_time;
256 int avg_size;
257 int avg_speed;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* the door is currently locked */
260 int door_locked;
261 /* the tape hardware is write protected */
262 char drv_write_prot;
263 /* the tape is write protected (hardware or opened as read-only) */
264 char write_prot;
265
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100266 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267} idetape_tape_t;
268
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800269static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Will Dysond5dee802005-09-16 02:55:07 -0700271static struct class *idetape_sysfs_class;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
274
275#define ide_tape_g(disk) \
276 container_of((disk)->private_data, struct ide_tape_obj, driver)
277
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200278static void ide_tape_release(struct kref *);
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
281{
282 struct ide_tape_obj *tape = NULL;
283
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800284 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 tape = ide_tape_g(disk);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200286 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200287 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200288 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200289 else
290 kref_get(&tape->kref);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200291 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800292 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return tape;
294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296static void ide_tape_put(struct ide_tape_obj *tape)
297{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200298 ide_drive_t *drive = tape->drive;
299
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800300 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 kref_put(&tape->kref, ide_tape_release);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200302 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800303 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100307 * The variables below are used for the character device interface. Additional
308 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100310static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312#define ide_tape_f(file) ((file)->private_data)
313
314static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
315{
316 struct ide_tape_obj *tape = NULL;
317
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800318 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 tape = idetape_devs[i];
320 if (tape)
321 kref_get(&tape->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800322 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return tape;
324}
325
Borislav Petkovd236d742008-04-18 00:46:27 +0200326static void idetape_input_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100327 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct idetape_bh *bh = pc->bh;
330 int count;
331
332 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (bh == NULL) {
334 printk(KERN_ERR "ide-tape: bh == NULL in "
335 "idetape_input_buffers\n");
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200336 ide_pad_transfer(drive, 0, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return;
338 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100339 count = min(
340 (unsigned int)(bh->b_size - atomic_read(&bh->b_count)),
341 bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200342 drive->hwif->tp_ops->input_data(drive, NULL, bh->b_data +
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100343 atomic_read(&bh->b_count), count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 bcount -= count;
345 atomic_add(count, &bh->b_count);
346 if (atomic_read(&bh->b_count) == bh->b_size) {
347 bh = bh->b_reqnext;
348 if (bh)
349 atomic_set(&bh->b_count, 0);
350 }
351 }
352 pc->bh = bh;
353}
354
Borislav Petkovd236d742008-04-18 00:46:27 +0200355static void idetape_output_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100356 unsigned int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 struct idetape_bh *bh = pc->bh;
359 int count;
360
361 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100363 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
364 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 count = min((unsigned int)pc->b_count, (unsigned int)bcount);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200368 drive->hwif->tp_ops->output_data(drive, NULL, pc->b_data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 bcount -= count;
370 pc->b_data += count;
371 pc->b_count -= count;
372 if (!pc->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100373 bh = bh->b_reqnext;
374 pc->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (bh) {
376 pc->b_data = bh->b_data;
377 pc->b_count = atomic_read(&bh->b_count);
378 }
379 }
380 }
381}
382
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200383static void idetape_update_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct idetape_bh *bh = pc->bh;
386 int count;
Borislav Petkovd236d742008-04-18 00:46:27 +0200387 unsigned int bcount = pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Borislav Petkov346331f2008-04-18 00:46:26 +0200389 if (pc->flags & PC_FLAG_WRITING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return;
391 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100393 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
394 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return;
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 count = min((unsigned int)bh->b_size, (unsigned int)bcount);
398 atomic_set(&bh->b_count, count);
399 if (atomic_read(&bh->b_count) == bh->b_size)
400 bh = bh->b_reqnext;
401 bcount -= count;
402 }
403 pc->bh = bh;
404}
405
406/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100407 * called on each failed packet command retry to analyze the request sense. We
408 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100410static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200413 struct ide_atapi_pc *pc = tape->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Borislav Petkov1b5db432008-02-02 19:56:48 +0100415 tape->sense_key = sense[2] & 0xF;
416 tape->asc = sense[12];
417 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100418
419 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
420 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Borislav Petkovd236d742008-04-18 00:46:27 +0200422 /* Correct pc->xferred by asking the tape. */
Borislav Petkov346331f2008-04-18 00:46:26 +0200423 if (pc->flags & PC_FLAG_DMA_ERROR) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200424 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100425 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200426 get_unaligned_be32(&sense[3]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200427 idetape_update_buffers(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
430 /*
431 * If error was the result of a zero-length read or write command,
432 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
433 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
434 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100435 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100436 /* length == 0 */
437 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
438 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 /* don't report an error, everything's ok */
440 pc->error = 0;
441 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200442 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100445 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 pc->error = IDETAPE_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200447 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100449 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100450 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
451 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200453 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100456 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100457 if (tape->sense_key == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 pc->error = IDETAPE_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200459 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200461 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200462 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
464 }
465}
466
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200467/* Free data buffers completely. */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200468static void ide_tape_kfree_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200470 struct idetape_bh *prev_bh, *bh = tape->merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Borislav Petkovd01dbc32008-04-27 15:38:33 +0200472 while (bh) {
473 u32 size = bh->b_size;
474
475 while (size) {
476 unsigned int order = fls(size >> PAGE_SHIFT)-1;
477
478 if (bh->b_data)
479 free_pages((unsigned long)bh->b_data, order);
480
481 size &= (order-1);
482 bh->b_data += (1 << order) * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 prev_bh = bh;
485 bh = bh->b_reqnext;
486 kfree(prev_bh);
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
491{
492 struct request *rq = HWGROUP(drive)->rq;
493 idetape_tape_t *tape = drive->driver_data;
494 unsigned long flags;
495 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100497 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 switch (uptodate) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100500 case 0: error = IDETAPE_ERROR_GENERAL; break;
501 case 1: error = 0; break;
502 default: error = uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 rq->errors = error;
505 if (error)
506 tape->failed_pc = NULL;
507
Bartlomiej Zolnierkiewicz36872212008-01-26 20:13:10 +0100508 if (!blk_special_request(rq)) {
509 ide_end_request(drive, uptodate, nr_sects);
510 return 0;
511 }
512
Borislav Petkov54bb2072008-02-06 02:57:52 +0100513 spin_lock_irqsave(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 ide_end_drive_cmd(drive, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Borislav Petkov54bb2072008-02-06 02:57:52 +0100517 spin_unlock_irqrestore(&tape->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return 0;
519}
520
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200521static void ide_tape_handle_dsc(ide_drive_t *);
522
523static void ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200526 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200527 int uptodate = pc->error ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100529 debug_log(DBG_PROCS, "Enter %s\n", __func__);
530
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200531 if (dsc)
532 ide_tape_handle_dsc(drive);
533
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200534 if (tape->failed_pc == pc)
535 tape->failed_pc = NULL;
536
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200537 if (pc->c[0] == REQUEST_SENSE) {
538 if (uptodate)
539 idetape_analyze_error(drive, pc->buf);
540 else
541 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
542 "itself - Aborting request!\n");
543 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
544 struct request *rq = drive->hwif->hwgroup->rq;
545 int blocks = pc->xferred / tape->blk_size;
546
547 tape->avg_size += blocks * tape->blk_size;
548
549 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
550 tape->avg_speed = tape->avg_size * HZ /
551 (jiffies - tape->avg_time) / 1024;
552 tape->avg_size = 0;
553 tape->avg_time = jiffies;
554 }
555
556 tape->first_frame += blocks;
557 rq->current_nr_sectors -= blocks;
558
559 if (pc->error)
560 uptodate = pc->error;
561 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200562 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200563
564 debug_log(DBG_SENSE, "BOP - %s\n",
565 (readpos[0] & 0x80) ? "Yes" : "No");
566 debug_log(DBG_SENSE, "EOP - %s\n",
567 (readpos[0] & 0x40) ? "Yes" : "No");
568
569 if (readpos[0] & 0x4) {
570 printk(KERN_INFO "ide-tape: Block location is unknown"
571 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200572 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200573 uptodate = 0;
574 } else {
575 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200576 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200577
578 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200579 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200580 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200583
584 idetape_end_request(drive, uptodate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Borislav Petkovd236d742008-04-18 00:46:27 +0200587static void idetape_create_request_sense_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200589 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100590 pc->c[0] = REQUEST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 pc->c[4] = 20;
Borislav Petkovd236d742008-04-18 00:46:27 +0200592 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * idetape_retry_pc is called when an error was detected during the
597 * last packet command. We queue a request sense packet command in
598 * the head of the request list.
599 */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200600static void idetape_retry_pc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200602 struct ide_tape_obj *tape = drive->driver_data;
603 struct request *rq = &tape->request_sense_rq;
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200604 struct ide_atapi_pc *pc = &tape->request_sense_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100606 (void)ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 idetape_create_request_sense_cmd(pc);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200608 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200609 ide_queue_pc_head(drive, tape->disk, pc, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
612/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100613 * Postpone the current request so that ide.c will be able to service requests
614 * from another device on the same hwgroup while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100616static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 idetape_tape_t *tape = drive->driver_data;
619
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100620 debug_log(DBG_PROCS, "Enter %s\n", __func__);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 tape->postponed_rq = HWGROUP(drive)->rq;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100623 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200626static void ide_tape_handle_dsc(ide_drive_t *drive)
627{
628 idetape_tape_t *tape = drive->driver_data;
629
630 /* Media access command */
631 tape->dsc_polling_start = jiffies;
632 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
633 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
634 /* Allow ide.c to handle other requests */
635 idetape_postpone_request(drive);
636}
637
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200638static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200639 unsigned int bcount, int write)
640{
641 if (write)
642 idetape_output_buffers(drive, pc, bcount);
643 else
644 idetape_input_buffers(drive, pc, bcount);
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200645
646 return bcount;
Bartlomiej Zolnierkiewicz08424ac2008-07-15 21:22:01 +0200647}
Borislav Petkova1efc852008-02-06 02:57:52 +0100648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649/*
Borislav Petkova1efc852008-02-06 02:57:52 +0100650 * This is the usual interrupt handler which will be called during a packet
651 * command. We will transfer some of the data (as requested by the drive) and
652 * will re-point interrupt handler to us. When data transfer is finished, we
653 * will act according to the algorithm described before
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100654 * idetape_issue_pc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 */
Borislav Petkova1efc852008-02-06 02:57:52 +0100656static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Bartlomiej Zolnierkiewicz844b9462008-10-13 21:39:31 +0200658 return ide_pc_intr(drive, idetape_pc_intr, idetape_update_buffers,
659 idetape_retry_pc, ide_tape_io_buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
662/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100663 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200665 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100666 * until we finish handling it. Each packet command is associated with a
667 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100669 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100671 * 1. idetape_issue_pc will send the packet command to the drive, and will set
672 * the interrupt handler to idetape_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100674 * 2. On each interrupt, idetape_pc_intr will be called. This step will be
675 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100677 * 3. ATAPI Tape media access commands have immediate status with a delayed
678 * process. In case of a successful initiation of a media access packet command,
679 * the DSC bit will be set when the actual execution of the command is finished.
680 * Since the tape drive will not issue an interrupt, we have to poll for this
681 * event. In this case, we define the request as "low priority request" by
682 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
683 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100685 * ide.c will then give higher priority to requests which originate from the
686 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100688 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100690 * 5. In case an error was found, we queue a request sense packet command in
691 * front of the request queue and retry the operation up to
692 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100694 * 6. In case no error was found, or we decided to give up and not to retry
695 * again, the callback function will be called and then we will handle the next
696 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
698static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
699{
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200700 return ide_transfer_pc(drive, idetape_pc_intr, WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Borislav Petkovd236d742008-04-18 00:46:27 +0200703static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
704 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200708 if (drive->pc->c[0] == REQUEST_SENSE &&
Borislav Petkov90699ce2008-02-02 19:56:50 +0100709 pc->c[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
711 "Two request sense in serial were issued\n");
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Borislav Petkov90699ce2008-02-02 19:56:50 +0100714 if (tape->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 tape->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200718 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200721 (pc->flags & PC_FLAG_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100723 * We will "abort" retrying a packet command in case legitimate
724 * error code was received (crossing a filemark, or end of the
725 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200727 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100728 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 tape->sense_key == 2 && tape->asc == 4 &&
730 (tape->ascq == 1 || tape->ascq == 8))) {
731 printk(KERN_ERR "ide-tape: %s: I/O error, "
732 "pc = %2x, key = %2x, "
733 "asc = %2x, ascq = %2x\n",
734 tape->name, pc->c[0],
735 tape->sense_key, tape->asc,
736 tape->ascq);
737 }
738 /* Giving up */
739 pc->error = IDETAPE_ERROR_GENERAL;
740 }
741 tape->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200742 drive->pc_callback(drive, 0);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200743 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100745 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200749 return ide_issue_pc(drive, idetape_transfer_pc, WAIT_TAPE_CMD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100752/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200753static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200755 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100756 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100758 /* DBD = 1 - Don't return block descriptors */
759 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 pc->c[2] = page_code;
761 /*
762 * Changed pc->c[3] to 0 (255 will at best return unused info).
763 *
764 * For SCSI this byte is defined as subpage instead of high byte
765 * of length and some IDE drives seem to interpret it this way
766 * and return an error when 255 is used.
767 */
768 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100769 /* We will just discard data in that case */
770 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200772 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200774 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200776 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100779static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200781 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200783 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100784 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200786 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100787
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200788 if (stat & ATA_DSC) {
789 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100791 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 printk(KERN_ERR "ide-tape: %s: I/O error, ",
793 tape->name);
794 /* Retry operation */
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200795 idetape_retry_pc(drive);
796 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 } else {
800 pc->error = IDETAPE_ERROR_GENERAL;
801 tape->failed_pc = NULL;
802 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200803 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return ide_stopped;
805}
806
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200807static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200808 struct ide_atapi_pc *pc, struct request *rq,
809 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Borislav Petkov0014c752008-07-23 19:56:00 +0200811 struct idetape_bh *bh = (struct idetape_bh *)rq->special;
812 unsigned int length = rq->current_nr_sectors;
813
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200814 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100815 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 pc->c[1] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 pc->bh = bh;
Borislav Petkovd236d742008-04-18 00:46:27 +0200818 pc->buf = NULL;
819 pc->buf_size = length * tape->blk_size;
820 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200821 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200822 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200824 if (opcode == READ_6) {
825 pc->c[0] = READ_6;
826 atomic_set(&bh->b_count, 0);
827 } else if (opcode == WRITE_6) {
828 pc->c[0] = WRITE_6;
829 pc->flags |= PC_FLAG_WRITING;
830 pc->b_data = bh->b_data;
831 pc->b_count = atomic_read(&bh->b_count);
832 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200833
834 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837static ide_startstop_t idetape_do_request(ide_drive_t *drive,
838 struct request *rq, sector_t block)
839{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200840 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200842 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100844 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Mark de Wever730616b2008-10-10 22:39:17 +0200846 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
847 " current_nr_sectors: %u\n",
848 (unsigned long long)rq->sector, rq->nr_sectors,
849 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Jens Axboe4aff5e22006-08-10 08:44:47 +0200851 if (!blk_special_request(rq)) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100852 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200854 "request queue (%d)\n", drive->name, rq->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 ide_end_request(drive, 0, 0);
856 return ide_stopped;
857 }
858
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100859 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200860 if (tape->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200861 pc = tape->failed_pc;
862 goto out;
863 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (postponed_rq != NULL)
866 if (rq != postponed_rq) {
867 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
868 "Two DSC requests were queued\n");
869 idetape_end_request(drive, 0, 0);
870 return ide_stopped;
871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 tape->postponed_rq = NULL;
874
875 /*
876 * If the tape is still busy, postpone our request and service
877 * the other device meanwhile.
878 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200879 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Borislav Petkov83dd5732008-07-23 19:56:00 +0200881 if (!drive->dsc_overlap && !(rq->cmd[13] & REQ_IDETAPE_PC2))
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200882 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if (drive->post_reset == 1) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200885 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 drive->post_reset = 0;
887 }
888
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200889 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200890 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (postponed_rq == NULL) {
892 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100893 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
895 } else if (time_after(jiffies, tape->dsc_timeout)) {
896 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
897 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200898 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 idetape_media_access_finished(drive);
900 return ide_stopped;
901 } else {
902 return ide_do_reset(drive);
903 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100904 } else if (time_after(jiffies,
905 tape->dsc_polling_start +
906 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100907 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 idetape_postpone_request(drive);
909 return ide_stopped;
910 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200911 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200912 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200913 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 goto out;
915 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200916 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200917 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200918 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto out;
920 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200921 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Borislav Petkovd236d742008-04-18 00:46:27 +0200922 pc = (struct ide_atapi_pc *) rq->buffer;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200923 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
924 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 goto out;
926 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200927 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 idetape_media_access_finished(drive);
929 return ide_stopped;
930 }
931 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200932
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200933out:
Borislav Petkov8d06bfa2008-02-06 02:57:53 +0100934 return idetape_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937/*
Borislav Petkov41aa1702008-04-27 15:38:32 +0200938 * The function below uses __get_free_pages to allocate a data buffer of size
Borislav Petkovf73850a2008-04-27 15:38:33 +0200939 * tape->buffer_size (or a bit more). We attempt to combine sequential pages as
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100940 * much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 *
Borislav Petkov41aa1702008-04-27 15:38:32 +0200942 * It returns a pointer to the newly allocated buffer, or NULL in case of
943 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 */
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200945static struct idetape_bh *ide_tape_kmalloc_buffer(idetape_tape_t *tape,
946 int full, int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200948 struct idetape_bh *prev_bh, *bh, *merge_bh;
Borislav Petkova997a432008-04-27 15:38:33 +0200949 int pages = tape->pages_per_buffer;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200950 unsigned int order, b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 char *b_data = NULL;
952
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200953 merge_bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
954 bh = merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (bh == NULL)
956 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200957
958 order = fls(pages) - 1;
959 bh->b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100960 if (!bh->b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200962 b_allocd = (1 << order) * PAGE_SIZE;
963 pages &= (order-1);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200966 memset(bh->b_data, 0, b_allocd);
967 bh->b_reqnext = NULL;
968 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 atomic_set(&bh->b_count, full ? bh->b_size : 0);
970
Borislav Petkov41aa1702008-04-27 15:38:32 +0200971 while (pages) {
972 order = fls(pages) - 1;
973 b_data = (char *) __get_free_pages(GFP_KERNEL, order);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100974 if (!b_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 goto abort;
Borislav Petkov41aa1702008-04-27 15:38:32 +0200976 b_allocd = (1 << order) * PAGE_SIZE;
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (clear)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200979 memset(b_data, 0, b_allocd);
980
981 /* newly allocated page frames below buffer header or ...*/
982 if (bh->b_data == b_data + b_allocd) {
983 bh->b_size += b_allocd;
984 bh->b_data -= b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200986 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 continue;
988 }
Borislav Petkov41aa1702008-04-27 15:38:32 +0200989 /* they are above the header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (b_data == bh->b_data + bh->b_size) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200991 bh->b_size += b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (full)
Borislav Petkov41aa1702008-04-27 15:38:32 +0200993 atomic_add(b_allocd, &bh->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 continue;
995 }
996 prev_bh = bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100997 bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
998 if (!bh) {
Borislav Petkov41aa1702008-04-27 15:38:32 +0200999 free_pages((unsigned long) b_data, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 goto abort;
1001 }
1002 bh->b_reqnext = NULL;
1003 bh->b_data = b_data;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001004 bh->b_size = b_allocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 atomic_set(&bh->b_count, full ? bh->b_size : 0);
1006 prev_bh->b_reqnext = bh;
Borislav Petkov41aa1702008-04-27 15:38:32 +02001007
1008 pages &= (order-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
Borislav Petkov41aa1702008-04-27 15:38:32 +02001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 bh->b_size -= tape->excess_bh_size;
1012 if (full)
1013 atomic_sub(tape->excess_bh_size, &bh->b_count);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001014 return merge_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015abort:
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001016 ide_tape_kfree_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return NULL;
1018}
1019
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001020static int idetape_copy_stage_from_user(idetape_tape_t *tape,
Borislav Petkov8646c882008-04-27 15:38:26 +02001021 const char __user *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
1023 struct idetape_bh *bh = tape->bh;
1024 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001025 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001029 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1030 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001031 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001033 count = min((unsigned int)
1034 (bh->b_size - atomic_read(&bh->b_count)),
1035 (unsigned int)n);
1036 if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf,
1037 count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001038 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 n -= count;
1040 atomic_add(count, &bh->b_count);
1041 buf += count;
1042 if (atomic_read(&bh->b_count) == bh->b_size) {
1043 bh = bh->b_reqnext;
1044 if (bh)
1045 atomic_set(&bh->b_count, 0);
1046 }
1047 }
1048 tape->bh = bh;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001049 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001052static int idetape_copy_stage_to_user(idetape_tape_t *tape, char __user *buf,
Borislav Petkov99d74e62008-04-27 15:38:25 +02001053 int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
1055 struct idetape_bh *bh = tape->bh;
1056 int count;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001057 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 while (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001061 printk(KERN_ERR "ide-tape: bh == NULL in %s\n",
1062 __func__);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001063 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 count = min(tape->b_count, n);
Daniel Walkerdcd96372006-06-25 05:47:37 -07001066 if (copy_to_user(buf, tape->b_data, count))
1067 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 n -= count;
1069 tape->b_data += count;
1070 tape->b_count -= count;
1071 buf += count;
1072 if (!tape->b_count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001073 bh = bh->b_reqnext;
1074 tape->bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (bh) {
1076 tape->b_data = bh->b_data;
1077 tape->b_count = atomic_read(&bh->b_count);
1078 }
1079 }
1080 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001081 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001084static void idetape_init_merge_buffer(idetape_tape_t *tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001086 struct idetape_bh *bh = tape->merge_bh;
1087 tape->bh = tape->merge_bh;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001088
Borislav Petkov54abf372008-02-06 02:57:52 +01001089 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 atomic_set(&bh->b_count, 0);
1091 else {
1092 tape->b_data = bh->b_data;
1093 tape->b_count = atomic_read(&bh->b_count);
1094 }
1095}
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001098 * Write a filemark if write_filemark=1. Flush the device buffers without
1099 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001101static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +02001102 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001104 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001105 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +02001107 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
1111{
1112 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001113 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 int load_attempted = 0;
1115
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001116 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001117 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 timeout += jiffies;
1119 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +02001120 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return 0;
1122 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001123 || (tape->asc == 0x3A)) {
1124 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (load_attempted)
1126 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001127 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 load_attempted = 1;
1129 /* not about to be ready */
1130 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
1131 (tape->ascq == 1 || tape->ascq == 8)))
1132 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -07001133 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135 return -EIO;
1136}
1137
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001138static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001140 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001141 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 int rc;
1143
1144 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001145 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001146 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return rc;
1148 idetape_wait_ready(drive, 60 * 5 * HZ);
1149 return 0;
1150}
1151
Borislav Petkovd236d742008-04-18 00:46:27 +02001152static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001154 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001155 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +02001156 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001159static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001162 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 int position;
1164
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001165 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001168 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001170 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return position;
1172}
1173
Borislav Petkovd236d742008-04-18 00:46:27 +02001174static void idetape_create_locate_cmd(ide_drive_t *drive,
1175 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001176 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001178 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001179 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001181 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +02001183 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001186static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
1188 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Borislav Petkov54abf372008-02-06 02:57:52 +01001190 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +02001191 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001193 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001194 tape->merge_bh_size = 0;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001195 if (tape->merge_bh != NULL) {
1196 ide_tape_kfree_buffer(tape);
1197 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199
Borislav Petkov54abf372008-02-06 02:57:52 +01001200 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
1203/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001204 * Position the tape to the requested block using the LOCATE packet command.
1205 * A READ POSITION command is then issued to check where we are positioned. Like
1206 * all higher level operations, we queue the commands at the tail of the request
1207 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001209static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
1210 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001213 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001215 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Borislav Petkov54abf372008-02-06 02:57:52 +01001217 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001218 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 idetape_wait_ready(drive, 60 * 5 * HZ);
1220 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001221 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (retval)
1223 return (retval);
1224
1225 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001226 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001229static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001230 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 int seek, position;
1234
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001235 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (restore_position) {
1237 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +02001238 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001240 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001241 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return;
1243 }
1244 }
1245}
1246
1247/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001248 * Generate a read/write request for the block device interface and wait for it
1249 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001251static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks,
1252 struct idetape_bh *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
1254 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001255 struct request *rq;
1256 int ret, errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001258 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
1259
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001260 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
1261 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +02001262 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001263 rq->rq_disk = tape->disk;
1264 rq->special = (void *)bh;
1265 rq->sector = tape->first_frame;
1266 rq->nr_sectors = blocks;
1267 rq->current_nr_sectors = blocks;
1268 blk_execute_rq(drive->queue, tape->disk, rq, 0);
1269
1270 errors = rq->errors;
1271 ret = tape->blk_size * (blocks - rq->current_nr_sectors);
1272 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
1275 return 0;
1276
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001277 if (tape->merge_bh)
1278 idetape_init_merge_buffer(tape);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001279 if (errors == IDETAPE_ERROR_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return -EIO;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +02001281 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Borislav Petkovd236d742008-04-18 00:46:27 +02001284static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001286 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001287 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001288 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +02001289 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Borislav Petkovd236d742008-04-18 00:46:27 +02001292static void idetape_create_rewind_cmd(ide_drive_t *drive,
1293 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001295 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001296 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +02001297 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
Borislav Petkovd236d742008-04-18 00:46:27 +02001300static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001302 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001303 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +02001305 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
Borislav Petkovd236d742008-04-18 00:46:27 +02001308static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +02001310 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +01001311 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +01001312 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +02001314 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
Borislav Petkov97c566c2008-04-27 15:38:25 +02001317/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001318static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
1320 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001322 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Borislav Petkov0aa4b012008-04-27 15:38:27 +02001324 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001325 blocks, tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
Borislav Petkovd9df9372008-04-27 15:38:34 +02001328static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 idetape_tape_t *tape = drive->driver_data;
1331 int blocks, min;
1332 struct idetape_bh *bh;
Borislav Petkov55a5d292008-02-02 19:56:49 +01001333
Borislav Petkov54abf372008-02-06 02:57:52 +01001334 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001335 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001336 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return;
1338 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001339 if (tape->merge_bh_size > tape->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001341 tape->merge_bh_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001343 if (tape->merge_bh_size) {
1344 blocks = tape->merge_bh_size / tape->blk_size;
1345 if (tape->merge_bh_size % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 unsigned int i;
1347
1348 blocks++;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001349 i = tape->blk_size - tape->merge_bh_size %
Borislav Petkov54bb2072008-02-06 02:57:52 +01001350 tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 bh = tape->bh->b_reqnext;
1352 while (bh) {
1353 atomic_set(&bh->b_count, 0);
1354 bh = bh->b_reqnext;
1355 }
1356 bh = tape->bh;
1357 while (i) {
1358 if (bh == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001359 printk(KERN_INFO "ide-tape: bug,"
1360 " bh NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 break;
1362 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001363 min = min(i, (unsigned int)(bh->b_size -
1364 atomic_read(&bh->b_count)));
1365 memset(bh->b_data + atomic_read(&bh->b_count),
1366 0, min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 atomic_add(min, &bh->b_count);
1368 i -= min;
1369 bh = bh->b_reqnext;
1370 }
1371 }
1372 (void) idetape_add_chrdev_write_request(drive, blocks);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001373 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001375 if (tape->merge_bh != NULL) {
1376 ide_tape_kfree_buffer(tape);
1377 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
Borislav Petkov54abf372008-02-06 02:57:52 +01001379 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
Borislav Petkov83042b22008-04-27 15:38:27 +02001382static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001388 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
1389 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001390 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 idetape_flush_tape_buffers(drive);
1392 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001393 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001394 printk(KERN_ERR "ide-tape: merge_bh_size should be"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001395 " 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001396 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001398 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1399 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001401 tape->chrdev_dir = IDETAPE_DIR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001404 * Issue a read 0 command to ensure that DSC handshake is
1405 * switched from completion mode to buffer available mode.
1406 * No point in issuing this if DSC overlap isn't supported, some
1407 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 */
1409 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001410 bytes_read = idetape_queue_rw_tail(drive,
1411 REQ_IDETAPE_READ, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001412 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (bytes_read < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001414 ide_tape_kfree_buffer(tape);
1415 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001416 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return bytes_read;
1418 }
1419 }
1420 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return 0;
1423}
1424
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001425/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001426static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
1428 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001430 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001432 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001433 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return 0;
1435
Borislav Petkov83042b22008-04-27 15:38:27 +02001436 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001438 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001439 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
1441
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001442static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
1444 idetape_tape_t *tape = drive->driver_data;
1445 struct idetape_bh *bh;
1446 int blocks;
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 while (bcount) {
1449 unsigned int count;
1450
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001451 bh = tape->merge_bh;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001452 count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 bcount -= count;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001454 blocks = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 while (count) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001456 atomic_set(&bh->b_count,
1457 min(count, (unsigned int)bh->b_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 memset(bh->b_data, 0, atomic_read(&bh->b_count));
1459 count -= atomic_read(&bh->b_count);
1460 bh = bh->b_reqnext;
1461 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001462 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001463 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465}
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001468 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1469 * currently support only one partition.
1470 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001471static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001473 struct ide_tape_obj *tape = drive->driver_data;
1474 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001476 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001477
1478 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001481 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (retval)
1483 return retval;
1484
1485 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001486 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (retval)
1488 return retval;
1489 return 0;
1490}
1491
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001492/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001493static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1494 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
1496 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 void __user *argp = (void __user *)arg;
1498
Borislav Petkovd59823f2008-02-02 19:56:51 +01001499 struct idetape_config {
1500 int dsc_rw_frequency;
1501 int dsc_media_access_frequency;
1502 int nr_stages;
1503 } config;
1504
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001505 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001508 case 0x0340:
1509 if (copy_from_user(&config, argp, sizeof(config)))
1510 return -EFAULT;
1511 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001512 break;
1513 case 0x0350:
1514 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001515 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001516 if (copy_to_user(argp, &config, sizeof(config)))
1517 return -EFAULT;
1518 break;
1519 default:
1520 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522 return 0;
1523}
1524
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001525static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1526 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
1528 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001529 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001530 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001531 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001532 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 if (mt_count == 0)
1535 return 0;
1536 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001537 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001539 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541
Borislav Petkov54abf372008-02-06 02:57:52 +01001542 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001543 tape->merge_bh_size = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001544 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001546 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001550 case MTFSF:
1551 case MTBSF:
1552 idetape_create_space_cmd(&pc, mt_count - count,
1553 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001554 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001555 case MTFSFM:
1556 case MTBSFM:
1557 if (!sprev)
1558 return -EIO;
1559 retval = idetape_space_over_filemarks(drive, MTFSF,
1560 mt_count - count);
1561 if (retval)
1562 return retval;
1563 count = (MTBSFM == mt_op ? 1 : -1);
1564 return idetape_space_over_filemarks(drive, MTFSF, count);
1565 default:
1566 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1567 mt_op);
1568 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
1570}
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001573 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001575 * The tape is optimized to maximize throughput when it is transferring an
1576 * integral number of the "continuous transfer limit", which is a parameter of
1577 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001579 * As of version 1.3 of the driver, the character device provides an abstract
1580 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1581 * same backup/restore procedure is supported. The driver will internally
1582 * convert the requests to the recommended transfer unit, so that an unmatch
1583 * between the user's block size to the recommended size will only result in a
1584 * (slightly) increased driver overhead, but will no longer hit performance.
1585 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001587static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1588 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 struct ide_tape_obj *tape = ide_tape_f(file);
1591 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001592 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001593 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001594 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001596 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Borislav Petkov54abf372008-02-06 02:57:52 +01001598 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001599 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001600 if (count > tape->blk_size &&
1601 (count % tape->blk_size) == 0)
1602 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001604 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001605 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return rc;
1607 if (count == 0)
1608 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001609 if (tape->merge_bh_size) {
1610 actually_read = min((unsigned int)(tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001611 (unsigned int)count);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001612 if (idetape_copy_stage_to_user(tape, buf, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001613 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 buf += actually_read;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001615 tape->merge_bh_size -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 count -= actually_read;
1617 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001618 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001619 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (bytes_read <= 0)
1621 goto finish;
Borislav Petkov99d74e62008-04-27 15:38:25 +02001622 if (idetape_copy_stage_to_user(tape, buf, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001623 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 buf += bytes_read;
1625 count -= bytes_read;
1626 actually_read += bytes_read;
1627 }
1628 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001629 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (bytes_read <= 0)
1631 goto finish;
1632 temp = min((unsigned long)count, (unsigned long)bytes_read);
Borislav Petkov99d74e62008-04-27 15:38:25 +02001633 if (idetape_copy_stage_to_user(tape, buf, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001634 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 actually_read += temp;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001636 tape->merge_bh_size = bytes_read-temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001639 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001640 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 idetape_space_over_filemarks(drive, MTFSF, 1);
1643 return 0;
1644 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001645
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001646 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647}
1648
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001649static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 size_t count, loff_t *ppos)
1651{
1652 struct ide_tape_obj *tape = ide_tape_f(file);
1653 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001654 ssize_t actually_written = 0;
1655 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001656 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 /* The drive is write protected. */
1659 if (tape->write_prot)
1660 return -EACCES;
1661
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001662 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001665 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1666 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001667 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001668 if (tape->merge_bh || tape->merge_bh_size) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001669 printk(KERN_ERR "ide-tape: merge_bh_size "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 "should be 0 now\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001671 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001673 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 0, 0);
1674 if (!tape->merge_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001676 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001677 idetape_init_merge_buffer(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001680 * Issue a write 0 command to ensure that DSC handshake is
1681 * switched from completion mode to buffer available mode. No
1682 * point in issuing this if DSC overlap isn't supported, some
1683 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 */
1685 if (drive->dsc_overlap) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001686 ssize_t retval = idetape_queue_rw_tail(drive,
1687 REQ_IDETAPE_WRITE, 0,
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001688 tape->merge_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (retval < 0) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +02001690 ide_tape_kfree_buffer(tape);
1691 tape->merge_bh = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001692 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return retval;
1694 }
1695 }
1696 }
1697 if (count == 0)
1698 return (0);
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001699 if (tape->merge_bh_size) {
1700 if (tape->merge_bh_size >= tape->buffer_size) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001701 printk(KERN_ERR "ide-tape: bug: merge buf too big\n");
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001702 tape->merge_bh_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001704 actually_written = min((unsigned int)
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001705 (tape->buffer_size - tape->merge_bh_size),
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001706 (unsigned int)count);
Borislav Petkov8646c882008-04-27 15:38:26 +02001707 if (idetape_copy_stage_from_user(tape, buf, actually_written))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001708 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 buf += actually_written;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001710 tape->merge_bh_size += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 count -= actually_written;
1712
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001713 if (tape->merge_bh_size == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001714 ssize_t retval;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001715 tape->merge_bh_size = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001716 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (retval <= 0)
1718 return (retval);
1719 }
1720 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001721 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001722 ssize_t retval;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001723 if (idetape_copy_stage_from_user(tape, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001724 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001725 buf += tape->buffer_size;
1726 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001727 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001728 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (retval <= 0)
1730 return (retval);
1731 }
1732 if (count) {
1733 actually_written += count;
Borislav Petkov8646c882008-04-27 15:38:26 +02001734 if (idetape_copy_stage_from_user(tape, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001735 ret = -EFAULT;
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001736 tape->merge_bh_size += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001738 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001741static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001743 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001744 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
1746 /* Write a filemark */
1747 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001748 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1750 return -EIO;
1751 }
1752 return 0;
1753}
1754
1755/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001756 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1757 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001759 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1760 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001761 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001763 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001765 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1766 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001768static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
1770 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001771 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001772 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001773 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001775 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1776 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001779 case MTFSF:
1780 case MTFSFM:
1781 case MTBSF:
1782 case MTBSFM:
1783 if (!mt_count)
1784 return 0;
1785 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1786 default:
1787 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001791 case MTWEOF:
1792 if (tape->write_prot)
1793 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001794 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001795 for (i = 0; i < mt_count; i++) {
1796 retval = idetape_write_filemark(drive);
1797 if (retval)
1798 return retval;
1799 }
1800 return 0;
1801 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001802 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001803 if (idetape_rewind_tape(drive))
1804 return -EIO;
1805 return 0;
1806 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001807 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001808 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001809 case MTUNLOAD:
1810 case MTOFFL:
1811 /*
1812 * If door is locked, attempt to unlock before
1813 * attempting to eject.
1814 */
1815 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001816 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001817 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001818 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001819 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001820 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001821 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001822 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001823 return retval;
1824 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001825 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001826 return idetape_flush_tape_buffers(drive);
1827 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001828 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001829 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001830 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001831 case MTEOM:
1832 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001833 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001834 case MTERASE:
1835 (void)idetape_rewind_tape(drive);
1836 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001837 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001838 case MTSETBLK:
1839 if (mt_count) {
1840 if (mt_count < tape->blk_size ||
1841 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001843 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001844 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001845 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001846 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001847 return 0;
1848 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001849 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001850 return idetape_position_tape(drive,
1851 mt_count * tape->user_bs_factor, tape->partition, 0);
1852 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001853 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001854 return idetape_position_tape(drive, 0, mt_count, 0);
1855 case MTFSR:
1856 case MTBSR:
1857 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001858 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001859 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001861 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1862 return 0;
1863 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001864 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001865 if (retval)
1866 return retval;
1867 tape->door_locked = DOOR_UNLOCKED;
1868 return 0;
1869 default:
1870 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1871 mt_op);
1872 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874}
1875
1876/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001877 * Our character device ioctls. General mtio.h magnetic io commands are
1878 * supported here, and not in the corresponding block interface. Our own
1879 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001881static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1882 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
1884 struct ide_tape_obj *tape = ide_tape_f(file);
1885 ide_drive_t *drive = tape->drive;
1886 struct mtop mtop;
1887 struct mtget mtget;
1888 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001889 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 void __user *argp = (void __user *)arg;
1891
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001892 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Borislav Petkov54abf372008-02-06 02:57:52 +01001894 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001895 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 idetape_flush_tape_buffers(drive);
1897 }
1898 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02001899 block_offset = tape->merge_bh_size /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001900 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001901 position = idetape_read_position(drive);
1902 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 return -EIO;
1904 }
1905 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001906 case MTIOCTOP:
1907 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1908 return -EFAULT;
1909 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1910 case MTIOCGET:
1911 memset(&mtget, 0, sizeof(struct mtget));
1912 mtget.mt_type = MT_ISSCSI2;
1913 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1914 mtget.mt_dsreg =
1915 ((tape->blk_size * tape->user_bs_factor)
1916 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001917
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001918 if (tape->drv_write_prot)
1919 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1920
1921 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1922 return -EFAULT;
1923 return 0;
1924 case MTIOCPOS:
1925 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1926 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1927 return -EFAULT;
1928 return 0;
1929 default:
1930 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001931 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001932 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934}
1935
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001936/*
1937 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1938 * block size with the reported value.
1939 */
1940static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1941{
1942 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001943 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001944
1945 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001946 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001947 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001948 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001949 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1950 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001951 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001952 }
1953 return;
1954 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001955 tape->blk_size = (pc.buf[4 + 5] << 16) +
1956 (pc.buf[4 + 6] << 8) +
1957 pc.buf[4 + 7];
1958 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001959}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001961static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
1963 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1964 ide_drive_t *drive;
1965 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 int retval;
1967
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001968 if (i >= MAX_HWIFS * MAX_DRIVES)
1969 return -ENXIO;
1970
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001971 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001972 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001973 if (!tape) {
1974 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001975 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001976 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001977
1978 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /*
1981 * We really want to do nonseekable_open(inode, filp); here, but some
1982 * versions of tar incorrectly call lseek on tapes and bail out if that
1983 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1984 */
1985 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 drive = tape->drive;
1988
1989 filp->private_data = tape;
1990
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001991 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 retval = -EBUSY;
1993 goto out_put_tape;
1994 }
1995
1996 retval = idetape_wait_ready(drive, 60 * HZ);
1997 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001998 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
2000 goto out_put_tape;
2001 }
2002
2003 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002004 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 (void)idetape_rewind_tape(drive);
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002008 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 /* Set write protect flag if device is opened as read-only. */
2011 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
2012 tape->write_prot = 1;
2013 else
2014 tape->write_prot = tape->drv_write_prot;
2015
2016 /* Make sure drive isn't write protected if user wants to write. */
2017 if (tape->write_prot) {
2018 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
2019 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002020 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 retval = -EROFS;
2022 goto out_put_tape;
2023 }
2024 }
2025
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002026 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01002027 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002028 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002029 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
2030 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
2032 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002033 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return 0;
2035
2036out_put_tape:
2037 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06002038 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return retval;
2040}
2041
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002042static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
2044 idetape_tape_t *tape = drive->driver_data;
2045
Borislav Petkovd9df9372008-04-27 15:38:34 +02002046 ide_tape_flush_merge_buffer(drive);
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002047 tape->merge_bh = ide_tape_kmalloc_buffer(tape, 1, 0);
2048 if (tape->merge_bh != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01002049 idetape_pad_zeros(drive, tape->blk_size *
2050 (tape->user_bs_factor - 1));
Borislav Petkov077e3bd2008-04-27 15:38:34 +02002051 ide_tape_kfree_buffer(tape);
2052 tape->merge_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
2054 idetape_write_filemark(drive);
2055 idetape_flush_tape_buffers(drive);
2056 idetape_flush_tape_buffers(drive);
2057}
2058
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002059static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
2061 struct ide_tape_obj *tape = ide_tape_f(filp);
2062 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 unsigned int minor = iminor(inode);
2064
2065 lock_kernel();
2066 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01002067
2068 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Borislav Petkov54abf372008-02-06 02:57:52 +01002070 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01002072 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02002074 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02002076
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002077 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01002079 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002081 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02002082 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002085 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 ide_tape_put(tape);
2087 unlock_kernel();
2088 return 0;
2089}
2090
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002091static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002094 struct ide_atapi_pc pc;
Borislav Petkov801bd322008-09-27 19:32:17 +02002095 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002098 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002099 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
2100 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return;
2102 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002103 memcpy(vendor_id, &pc.buf[8], 8);
2104 memcpy(product_id, &pc.buf[16], 16);
2105 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01002106
Borislav Petkov801bd322008-09-27 19:32:17 +02002107 ide_fixstring(vendor_id, 8, 0);
2108 ide_fixstring(product_id, 16, 0);
2109 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01002110
Borislav Petkov801bd322008-09-27 19:32:17 +02002111 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01002112 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
2115/*
Borislav Petkovb6422012008-02-02 19:56:49 +01002116 * Ask the tape about its various parameters. In particular, we will adjust our
2117 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002119static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
2121 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02002122 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01002123 u8 *caps;
2124 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01002125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02002127 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01002128 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
2129 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01002130 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002131 put_unaligned(52, (u16 *)&tape->caps[12]);
2132 put_unaligned(540, (u16 *)&tape->caps[14]);
2133 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 return;
2135 }
Borislav Petkovd236d742008-04-18 00:46:27 +02002136 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Borislav Petkovb6422012008-02-02 19:56:49 +01002138 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002139 speed = be16_to_cpup((__be16 *)&caps[14]);
2140 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002142 *(u16 *)&caps[8] = max_speed;
2143 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
2144 *(u16 *)&caps[14] = speed;
2145 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01002146
2147 if (!speed) {
2148 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
2149 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002150 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
Borislav Petkovb6422012008-02-02 19:56:49 +01002152 if (!max_speed) {
2153 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
2154 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02002155 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
2157
Borislav Petkovb6422012008-02-02 19:56:49 +01002158 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02002159
2160 /* device lacks locking support according to capabilities page */
2161 if ((caps[6] & 1) == 0)
2162 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
2163
Borislav Petkovb6422012008-02-02 19:56:49 +01002164 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002165 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01002166 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01002167 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002170#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002171#define ide_tape_devset_get(name, field) \
2172static int get_##name(ide_drive_t *drive) \
2173{ \
2174 idetape_tape_t *tape = drive->driver_data; \
2175 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002177
2178#define ide_tape_devset_set(name, field) \
2179static int set_##name(ide_drive_t *drive, int arg) \
2180{ \
2181 idetape_tape_t *tape = drive->driver_data; \
2182 tape->field = arg; \
2183 return 0; \
2184}
2185
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002186#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002187ide_tape_devset_get(_name, _field) \
2188ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002189IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002190
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002191#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002192ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002193IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002194
2195static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
2196static int divf_tdsc(ide_drive_t *drive) { return HZ; }
2197static int divf_buffer(ide_drive_t *drive) { return 2; }
2198static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
2199
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002200ide_devset_rw_field(dsc_overlap, dsc_overlap);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002201
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002202ide_tape_devset_rw_field(debug_mask, debug_mask);
2203ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002204
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002205ide_tape_devset_r_field(avg_speed, avg_speed);
2206ide_tape_devset_r_field(speed, caps[14]);
2207ide_tape_devset_r_field(buffer, caps[16]);
2208ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002209
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02002210static const struct ide_proc_devset idetape_settings[] = {
2211 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
2212 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
2213 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
2214 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
2215 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
2216 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
2217 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
2218 mulf_tdsc, divf_tdsc),
2219 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002220};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002224 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002226 * 1. Initialize our various state variables.
2227 * 2. Ask the tape for its capabilities.
2228 * 3. Allocate a buffer which will be used for data transfer. The buffer size
2229 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002231 * Note that at this point ide.c already assigned us an irq, so that we can
2232 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002234static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
Borislav Petkov83042b22008-04-27 15:38:27 +02002236 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002238 int buffer_size;
Borislav Petkov71071b82008-02-06 02:57:53 +01002239 u8 gcw[2];
Borislav Petkovb6422012008-02-02 19:56:49 +01002240 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Borislav Petkov776bb022008-07-23 19:55:59 +02002242 drive->pc_callback = ide_tape_callback;
2243
Borislav Petkov54bb2072008-02-06 02:57:52 +01002244 spin_lock_init(&tape->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 drive->dsc_overlap = 1;
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01002246 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
2247 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
2248 tape->name);
2249 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002252 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 drive->dsc_overlap = 0;
2254 tape->minor = minor;
2255 tape->name[0] = 'h';
2256 tape->name[1] = 't';
2257 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01002258 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02002259
2260 *((u16 *)&gcw) = drive->id[ATA_ID_CONFIG];
Borislav Petkov71071b82008-02-06 02:57:53 +01002261
2262 /* Command packet DRQ type */
2263 if (((gcw[0] & 0x60) >> 5) == 1)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02002264 set_bit(IDE_AFLAG_DRQ_INTERRUPT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 idetape_get_inquiry_results(drive);
2267 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01002268 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002270 tape->buffer_size = *ctl * tape->blk_size;
2271 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01002273 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002274 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02002276 buffer_size = tape->buffer_size;
Borislav Petkova997a432008-04-27 15:38:33 +02002277 tape->pages_per_buffer = buffer_size / PAGE_SIZE;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002278 if (buffer_size % PAGE_SIZE) {
Borislav Petkova997a432008-04-27 15:38:33 +02002279 tape->pages_per_buffer++;
Borislav Petkovf73850a2008-04-27 15:38:33 +02002280 tape->excess_bh_size = PAGE_SIZE - buffer_size % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 }
2282
Borislav Petkov83042b22008-04-27 15:38:27 +02002283 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01002284 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Borislav Petkovf73850a2008-04-27 15:38:33 +02002286 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002289 * Ensure that the number we got makes sense; limit it within
2290 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02002292 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
2293 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02002295 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01002296 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02002297 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
2298 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01002299 tape->best_dsc_rw_freq * 1000 / HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 drive->using_dma ? ", DMA":"");
2301
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02002302 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
Russell King4031bbe2006-01-06 11:41:00 +00002305static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
2307 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002309 ide_proc_unregister_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311 ide_unregister_region(tape->disk);
2312
2313 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314}
2315
2316static void ide_tape_release(struct kref *kref)
2317{
2318 struct ide_tape_obj *tape = to_ide_tape(kref);
2319 ide_drive_t *drive = tape->drive;
2320 struct gendisk *g = tape->disk;
2321
Borislav Petkov01a63aeb2008-04-27 15:38:34 +02002322 BUG_ON(tape->merge_bh_size);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 drive->dsc_overlap = 0;
2325 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02002326 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002327 device_destroy(idetape_sysfs_class,
2328 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 idetape_devs[tape->minor] = NULL;
2330 g->private_data = NULL;
2331 put_disk(g);
2332 kfree(tape);
2333}
2334
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002335#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336static int proc_idetape_read_name
2337 (char *page, char **start, off_t off, int count, int *eof, void *data)
2338{
2339 ide_drive_t *drive = (ide_drive_t *) data;
2340 idetape_tape_t *tape = drive->driver_data;
2341 char *out = page;
2342 int len;
2343
2344 len = sprintf(out, "%s\n", tape->name);
2345 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
2346}
2347
2348static ide_proc_entry_t idetape_proc[] = {
2349 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
2350 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
2351 { NULL, 0, NULL, NULL }
2352};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353#endif
2354
Russell King4031bbe2006-01-06 11:41:00 +00002355static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357static ide_driver_t idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002358 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002359 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002360 .name = "ide-tape",
2361 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002362 },
Russell King4031bbe2006-01-06 11:41:00 +00002363 .probe = ide_tape_probe,
2364 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 .version = IDETAPE_VERSION,
2366 .media = ide_tape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 .do_request = idetape_do_request,
2368 .end_request = idetape_end_request,
2369 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002370#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 .proc = idetape_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02002372 .settings = idetape_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002373#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374};
2375
Borislav Petkov3c98bf32008-02-06 02:57:53 +01002376/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08002377static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 .owner = THIS_MODULE,
2379 .read = idetape_chrdev_read,
2380 .write = idetape_chrdev_write,
2381 .ioctl = idetape_chrdev_ioctl,
2382 .open = idetape_chrdev_open,
2383 .release = idetape_chrdev_release,
2384};
2385
2386static int idetape_open(struct inode *inode, struct file *filp)
2387{
2388 struct gendisk *disk = inode->i_bdev->bd_disk;
2389 struct ide_tape_obj *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002391 tape = ide_tape_get(disk);
2392 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return -ENXIO;
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 return 0;
2396}
2397
2398static int idetape_release(struct inode *inode, struct file *filp)
2399{
2400 struct gendisk *disk = inode->i_bdev->bd_disk;
2401 struct ide_tape_obj *tape = ide_tape_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 ide_tape_put(tape);
2404
2405 return 0;
2406}
2407
2408static int idetape_ioctl(struct inode *inode, struct file *file,
2409 unsigned int cmd, unsigned long arg)
2410{
2411 struct block_device *bdev = inode->i_bdev;
2412 struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
2413 ide_drive_t *drive = tape->drive;
2414 int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
2415 if (err == -EINVAL)
2416 err = idetape_blkdev_ioctl(drive, cmd, arg);
2417 return err;
2418}
2419
2420static struct block_device_operations idetape_block_ops = {
2421 .owner = THIS_MODULE,
2422 .open = idetape_open,
2423 .release = idetape_release,
2424 .ioctl = idetape_ioctl,
2425};
2426
Russell King4031bbe2006-01-06 11:41:00 +00002427static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
2429 idetape_tape_t *tape;
2430 struct gendisk *g;
2431 int minor;
2432
2433 if (!strstr("ide-tape", drive->driver_req))
2434 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (drive->media != ide_tape)
2437 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002438
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +02002439 if (drive->id_read == 1 && !ide_check_atapi_device(drive, DRV_NAME)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002440 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2441 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 goto failed;
2443 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002444 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002446 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2447 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 goto failed;
2449 }
2450
2451 g = alloc_disk(1 << PARTN_BITS);
2452 if (!g)
2453 goto out_free_tape;
2454
2455 ide_init_disk(g, drive);
2456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 kref_init(&tape->kref);
2458
2459 tape->drive = drive;
2460 tape->driver = &idetape_driver;
2461 tape->disk = g;
2462
2463 g->private_data = &tape->driver;
2464
2465 drive->driver_data = tape;
2466
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002467 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 for (minor = 0; idetape_devs[minor]; minor++)
2469 ;
2470 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002471 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 idetape_setup(drive, tape, minor);
2474
Greg Kroah-Hartman6ecaaf92008-05-21 12:52:33 -07002475 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2476 MKDEV(IDETAPE_MAJOR, minor), NULL,
2477 "%s", tape->name);
2478 device_create_drvdata(idetape_sysfs_class, &drive->gendev,
2479 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2480 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 g->fops = &idetape_block_ops;
2483 ide_register_region(g);
2484
2485 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487out_free_tape:
2488 kfree(tape);
2489failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002490 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002493static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002495 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002496 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 unregister_chrdev(IDETAPE_MAJOR, "ht");
2498}
2499
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002500static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Will Dysond5dee802005-09-16 02:55:07 -07002502 int error = 1;
2503 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2504 if (IS_ERR(idetape_sysfs_class)) {
2505 idetape_sysfs_class = NULL;
2506 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2507 error = -EBUSY;
2508 goto out;
2509 }
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002512 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2513 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002514 error = -EBUSY;
2515 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
Will Dysond5dee802005-09-16 02:55:07 -07002517
2518 error = driver_register(&idetape_driver.gen_driver);
2519 if (error)
2520 goto out_free_driver;
2521
2522 return 0;
2523
2524out_free_driver:
2525 driver_unregister(&idetape_driver.gen_driver);
2526out_free_class:
2527 class_destroy(idetape_sysfs_class);
2528out:
2529 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
2531
Kay Sievers263756e2005-12-12 18:03:44 +01002532MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533module_init(idetape_init);
2534module_exit(idetape_exit);
2535MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002536MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2537MODULE_LICENSE("GPL");