blob: d2e9c09b52159ce2f3d0a99166e2d95c3750025b [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
Borislav Petkov03056b92008-04-18 00:46:26 +0200134/* Tape door status */
135#define DOOR_UNLOCKED 0
136#define DOOR_LOCKED 1
137#define DOOR_EXPLICITLY_LOCKED 2
138
139/* Some defines for the SPACE command */
140#define IDETAPE_SPACE_OVER_FILEMARK 1
141#define IDETAPE_SPACE_TO_EOD 3
142
143/* Some defines for the LOAD UNLOAD command */
144#define IDETAPE_LU_LOAD_MASK 1
145#define IDETAPE_LU_RETENSION_MASK 2
146#define IDETAPE_LU_EOT_MASK 4
147
Borislav Petkov03056b92008-04-18 00:46:26 +0200148/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
149#define IDETAPE_BLOCK_DESCRIPTOR 0
150#define IDETAPE_CAPABILITIES_PAGE 0x2a
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100153 * Most of our global data which we need to save even as we leave the driver due
154 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100157 ide_drive_t *drive;
158 struct ide_driver *driver;
159 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100160 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200162 /* used by REQ_IDETAPE_{READ,WRITE} requests */
163 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100166 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100168 * While polling for DSC we use postponed_rq to postpone the current
169 * request so that ide.c will be able to service pending requests on the
170 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200171 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173 struct request *postponed_rq;
174 /* The time in which we started polling for DSC */
175 unsigned long dsc_polling_start;
176 /* Timer used to poll for dsc */
177 struct timer_list dsc_timer;
178 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100179 unsigned long best_dsc_rw_freq;
180 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned long dsc_timeout;
182
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100183 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 u8 partition;
185 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100186 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100188 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 u8 sense_key, asc, ascq;
190
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100191 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned int minor;
193 /* device name */
194 char name[4];
195 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100196 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Borislav Petkov54bb2072008-02-06 02:57:52 +0100198 /* tape block size, usually 512 or 1024 bytes */
199 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100203 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100206 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100208 * At most, there is only one ide-tape originated data transfer request
209 * in the device request queue. This allows ide.c to easily service
210 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200212
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100213 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200214 int buffer_size;
Tejun Heo963da552009-04-19 08:46:02 +0900215 /* Staging buffer of buffer_size bytes */
216 void *buf;
217 /* The read/write cursor */
218 void *cur;
219 /* The number of valid bytes in buf */
220 size_t valid;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100221
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100222 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned long avg_time;
224 int avg_size;
225 int avg_speed;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* the door is currently locked */
228 int door_locked;
229 /* the tape hardware is write protected */
230 char drv_write_prot;
231 /* the tape is write protected (hardware or opened as read-only) */
232 char write_prot;
233
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100234 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235} idetape_tape_t;
236
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800237static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Will Dysond5dee802005-09-16 02:55:07 -0700239static struct class *idetape_sysfs_class;
240
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100241static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
244{
245 struct ide_tape_obj *tape = NULL;
246
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800247 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200248 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200249 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200250 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200251 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200252 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100253 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200254 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800255 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return tape;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void ide_tape_put(struct ide_tape_obj *tape)
260{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200261 ide_drive_t *drive = tape->drive;
262
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800263 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100264 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200265 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800266 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100270 * The variables below are used for the character device interface. Additional
271 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100273static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
276{
277 struct ide_tape_obj *tape = NULL;
278
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800279 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 tape = idetape_devs[i];
281 if (tape)
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100282 get_device(&tape->dev);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800283 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return tape;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100288 * called on each failed packet command retry to analyze the request sense. We
289 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100291static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100294 struct ide_atapi_pc *pc = drive->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Borislav Petkov1b5db432008-02-02 19:56:48 +0100296 tape->sense_key = sense[2] & 0xF;
297 tape->asc = sense[12];
298 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100299
300 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
301 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Borislav Petkovd236d742008-04-18 00:46:27 +0200303 /* Correct pc->xferred by asking the tape. */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900304 if (pc->flags & PC_FLAG_DMA_ERROR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200305 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100306 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200307 get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /*
310 * If error was the result of a zero-length read or write command,
311 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
312 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
313 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100314 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100315 /* length == 0 */
316 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
317 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* don't report an error, everything's ok */
319 pc->error = 0;
320 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200321 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100324 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100325 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200326 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100328 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100329 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
330 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100331 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200332 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100335 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100336 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100337 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200338 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200340 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200341 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
343 }
344}
345
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200346static void ide_tape_handle_dsc(ide_drive_t *);
347
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100348static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200351 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100352 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200353 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100354 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100356 debug_log(DBG_PROCS, "Enter %s\n", __func__);
357
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200358 if (dsc)
359 ide_tape_handle_dsc(drive);
360
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100361 if (drive->failed_pc == pc)
362 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200363
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200364 if (pc->c[0] == REQUEST_SENSE) {
365 if (uptodate)
366 idetape_analyze_error(drive, pc->buf);
367 else
368 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
369 "itself - Aborting request!\n");
370 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200371 int blocks = pc->xferred / tape->blk_size;
372
373 tape->avg_size += blocks * tape->blk_size;
374
375 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
376 tape->avg_speed = tape->avg_size * HZ /
377 (jiffies - tape->avg_time) / 1024;
378 tape->avg_size = 0;
379 tape->avg_time = jiffies;
380 }
381
382 tape->first_frame += blocks;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900383 rq->data_len -= blocks * tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200384
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100385 if (pc->error) {
386 uptodate = 0;
387 err = pc->error;
388 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200389 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200390 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200391
392 debug_log(DBG_SENSE, "BOP - %s\n",
393 (readpos[0] & 0x80) ? "Yes" : "No");
394 debug_log(DBG_SENSE, "EOP - %s\n",
395 (readpos[0] & 0x40) ? "Yes" : "No");
396
397 if (readpos[0] & 0x4) {
398 printk(KERN_INFO "ide-tape: Block location is unknown"
399 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200400 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200401 uptodate = 0;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100402 err = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200403 } else {
404 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200405 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200406
407 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200408 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200409 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200412
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100413 rq->errors = err;
414
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100415 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100419 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100420 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100422static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 idetape_tape_t *tape = drive->driver_data;
425
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100426 debug_log(DBG_PROCS, "Enter %s\n", __func__);
427
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100428 tape->postponed_rq = drive->hwif->rq;
429
Borislav Petkov54bb2072008-02-06 02:57:52 +0100430 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200433static void ide_tape_handle_dsc(ide_drive_t *drive)
434{
435 idetape_tape_t *tape = drive->driver_data;
436
437 /* Media access command */
438 tape->dsc_polling_start = jiffies;
439 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
440 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
441 /* Allow ide.c to handle other requests */
442 idetape_postpone_request(drive);
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100446 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200448 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100449 * until we finish handling it. Each packet command is associated with a
450 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100452 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100454 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200455 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200457 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100458 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100460 * 3. ATAPI Tape media access commands have immediate status with a delayed
461 * process. In case of a successful initiation of a media access packet command,
462 * the DSC bit will be set when the actual execution of the command is finished.
463 * Since the tape drive will not issue an interrupt, we have to poll for this
464 * event. In this case, we define the request as "low priority request" by
465 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
466 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100468 * ide.c will then give higher priority to requests which originate from the
469 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100471 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100473 * 5. In case an error was found, we queue a request sense packet command in
474 * front of the request queue and retry the operation up to
475 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100477 * 6. In case no error was found, or we decided to give up and not to retry
478 * again, the callback function will be called and then we will handle the next
479 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100482static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
483 struct ide_cmd *cmd,
484 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100488 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
489 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200492 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200495 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heob3071d12009-04-19 08:46:02 +0900496 unsigned int done = blk_rq_bytes(drive->hwif->rq);
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100499 * We will "abort" retrying a packet command in case legitimate
500 * error code was received (crossing a filemark, or end of the
501 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200503 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100504 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 tape->sense_key == 2 && tape->asc == 4 &&
506 (tape->ascq == 1 || tape->ascq == 8))) {
507 printk(KERN_ERR "ide-tape: %s: I/O error, "
508 "pc = %2x, key = %2x, "
509 "asc = %2x, ascq = %2x\n",
510 tape->name, pc->c[0],
511 tape->sense_key, tape->asc,
512 tape->ascq);
513 }
514 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100515 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Tejun Heob3071d12009-04-19 08:46:02 +0900517
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100518 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200519 drive->pc_callback(drive, 0);
Tejun Heob3071d12009-04-19 08:46:02 +0900520 ide_complete_rq(drive, -EIO, done);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200521 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100523 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100527 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100530/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200531static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200533 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100534 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100536 /* DBD = 1 - Don't return block descriptors */
537 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 pc->c[2] = page_code;
539 /*
540 * Changed pc->c[3] to 0 (255 will at best return unused info).
541 *
542 * For SCSI this byte is defined as subpage instead of high byte
543 * of length and some IDE drives seem to interpret it this way
544 * and return an error when 255 is used.
545 */
546 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100547 /* We will just discard data in that case */
548 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200550 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200552 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200554 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100557static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200559 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200561 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100562 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200564 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100565
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200566 if (stat & ATA_DSC) {
567 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100569 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 printk(KERN_ERR "ide-tape: %s: I/O error, ",
571 tape->name);
572 /* Retry operation */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900573 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200574 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100578 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100579 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200581 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return ide_stopped;
583}
584
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200585static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200586 struct ide_atapi_pc *pc, struct request *rq,
587 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Tejun Heo963da552009-04-19 08:46:02 +0900589 unsigned int length = rq->nr_sectors;
Borislav Petkov0014c752008-07-23 19:56:00 +0200590
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200591 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100592 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 pc->c[1] = 1;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900594 pc->bh = NULL;
Borislav Petkovd236d742008-04-18 00:46:27 +0200595 pc->buf = NULL;
596 pc->buf_size = length * tape->blk_size;
597 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200598 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200599 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Tejun Heo963da552009-04-19 08:46:02 +0900601 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200602 pc->c[0] = READ_6;
Tejun Heo963da552009-04-19 08:46:02 +0900603 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200604 pc->c[0] = WRITE_6;
605 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200606 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200607
608 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611static ide_startstop_t idetape_do_request(ide_drive_t *drive,
612 struct request *rq, sector_t block)
613{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200614 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200616 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100618 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100619 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Tejun Heo963da552009-04-19 08:46:02 +0900621 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu\n"
622 (unsigned long long)rq->sector, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900624 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100625 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200627 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100628 if (blk_fs_request(rq) == 0 && rq->errors == 0)
629 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100630 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return ide_stopped;
632 }
633
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100634 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100635 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
636 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200637 goto out;
638 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (postponed_rq != NULL)
641 if (rq != postponed_rq) {
642 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
643 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100644 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100645 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100646 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return ide_stopped;
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 tape->postponed_rq = NULL;
651
652 /*
653 * If the tape is still busy, postpone our request and service
654 * the other device meanwhile.
655 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200656 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200658 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
659 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200660 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200662 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200663 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200664 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200667 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200668 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (postponed_rq == NULL) {
670 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100671 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
673 } else if (time_after(jiffies, tape->dsc_timeout)) {
674 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
675 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200676 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 idetape_media_access_finished(drive);
678 return ide_stopped;
679 } else {
680 return ide_do_reset(drive);
681 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100682 } else if (time_after(jiffies,
683 tape->dsc_polling_start +
684 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100685 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 idetape_postpone_request(drive);
687 return ide_stopped;
688 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200689 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200690 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200691 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 goto out;
693 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200694 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200695 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200696 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 goto out;
698 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200699 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoc267cc12009-04-19 07:00:42 +0900700 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200701 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
702 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 goto out;
704 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200705 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 idetape_media_access_finished(drive);
707 return ide_stopped;
708 }
709 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200710
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200711out:
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900712 /* prepare sense request for this command */
713 ide_prep_sense(drive, rq);
714
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100715 memset(&cmd, 0, sizeof(cmd));
716
717 if (rq_data_dir(rq))
718 cmd.tf_flags |= IDE_TFLAG_WRITE;
719
720 cmd.rq = rq;
721
Tejun Heo5c4be572009-04-19 07:00:42 +0900722 ide_init_sg_cmd(&cmd, pc->req_xfer);
723 ide_map_sg(drive, &cmd);
724
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100725 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100729 * Write a filemark if write_filemark=1. Flush the device buffers without
730 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100732static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200733 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200735 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100736 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200738 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
742{
743 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200744 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 int load_attempted = 0;
746
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100747 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200748 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 timeout += jiffies;
750 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200751 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return 0;
753 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100754 || (tape->asc == 0x3A)) {
755 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (load_attempted)
757 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200758 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 load_attempted = 1;
760 /* not about to be ready */
761 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
762 (tape->ascq == 1 || tape->ascq == 8)))
763 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700764 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766 return -EIO;
767}
768
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100769static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200771 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200772 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int rc;
774
775 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200776 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100777 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return rc;
779 idetape_wait_ready(drive, 60 * 5 * HZ);
780 return 0;
781}
782
Borislav Petkovd236d742008-04-18 00:46:27 +0200783static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200785 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100786 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +0200787 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100790static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200793 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int position;
795
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100796 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200799 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100801 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return position;
803}
804
Borislav Petkovd236d742008-04-18 00:46:27 +0200805static void idetape_create_locate_cmd(ide_drive_t *drive,
806 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100807 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200809 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100810 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100812 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200814 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200817static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Borislav Petkov54abf372008-02-06 02:57:52 +0100821 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200822 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200824 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Tejun Heo963da552009-04-19 08:46:02 +0900825 tape->valid = 0;
826 if (tape->buf != NULL) {
827 kfree(tape->buf);
828 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830
Borislav Petkov54abf372008-02-06 02:57:52 +0100831 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100835 * Position the tape to the requested block using the LOCATE packet command.
836 * A READ POSITION command is then issued to check where we are positioned. Like
837 * all higher level operations, we queue the commands at the tail of the request
838 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100840static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
841 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200844 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +0200846 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Borislav Petkov54abf372008-02-06 02:57:52 +0100848 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200849 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 idetape_wait_ready(drive, 60 * 5 * HZ);
851 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200852 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (retval)
854 return (retval);
855
856 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200857 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200860static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100861 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 int seek, position;
865
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200866 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (restore_position) {
868 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200869 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100871 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200872 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return;
874 }
875 }
876}
877
878/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100879 * Generate a read/write request for the block device interface and wait for it
880 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
Tejun Heo963da552009-04-19 08:46:02 +0900882static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 idetape_tape_t *tape = drive->driver_data;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900885 size_t size = blocks * tape->blk_size;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200886 struct request *rq;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900887 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100889 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900890 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100891
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200892 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
893 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200894 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200895 rq->rq_disk = tape->disk;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200896 rq->sector = tape->first_frame;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900897
898 if (size) {
Tejun Heo963da552009-04-19 08:46:02 +0900899 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900900 __GFP_WAIT);
901 if (ret)
902 goto out_put;
903 }
904
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200905 blk_execute_rq(drive->queue, tape->disk, rq, 0);
906
Tejun Heo963da552009-04-19 08:46:02 +0900907 /* calculate the number of transferred bytes and update buffer state */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900908 size -= rq->data_len;
Tejun Heo963da552009-04-19 08:46:02 +0900909 tape->cur = tape->buf;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900910 if (cmd == REQ_IDETAPE_READ)
Tejun Heo963da552009-04-19 08:46:02 +0900911 tape->valid = size;
912 else
913 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900915 ret = size;
916 if (rq->errors == IDE_DRV_ERROR_GENERAL)
917 ret = -EIO;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900918out_put:
919 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200920 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Borislav Petkovd236d742008-04-18 00:46:27 +0200923static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200925 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100926 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100927 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200928 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Borislav Petkovd236d742008-04-18 00:46:27 +0200931static void idetape_create_rewind_cmd(ide_drive_t *drive,
932 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200934 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100935 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200936 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Borislav Petkovd236d742008-04-18 00:46:27 +0200939static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200941 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100942 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200944 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Borislav Petkovd236d742008-04-18 00:46:27 +0200947static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200949 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100950 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100951 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200953 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
Borislav Petkov97c566c2008-04-27 15:38:25 +0200956/* Queue up a character device originated write request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100957static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100959 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Tejun Heo963da552009-04-19 08:46:02 +0900961 return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Borislav Petkovd9df9372008-04-27 15:38:34 +0200964static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 idetape_tape_t *tape = drive->driver_data;
Tejun Heo35ab8d32009-04-19 08:46:02 +0900967 int blocks;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100968
Borislav Petkov54abf372008-02-06 02:57:52 +0100969 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200970 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100971 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return;
973 }
Tejun Heo963da552009-04-19 08:46:02 +0900974 if (tape->buf) {
975 blocks = tape->valid / tape->blk_size;
976 if (tape->valid % tape->blk_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 blocks++;
Tejun Heo963da552009-04-19 08:46:02 +0900978 memset(tape->buf + tape->valid, 0,
979 tape->blk_size - tape->valid % tape->blk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981 (void) idetape_add_chrdev_write_request(drive, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
Tejun Heo963da552009-04-19 08:46:02 +0900983 if (tape->buf != NULL) {
984 kfree(tape->buf);
985 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100987 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Borislav Petkov83042b22008-04-27 15:38:27 +0200990static int idetape_init_read(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 int bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 /* Initialize read operation */
Borislav Petkov54abf372008-02-06 02:57:52 +0100996 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
997 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +0200998 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 idetape_flush_tape_buffers(drive);
1000 }
Tejun Heo963da552009-04-19 08:46:02 +09001001 if (tape->buf || tape->valid) {
1002 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
1003 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
Tejun Heo963da552009-04-19 08:46:02 +09001005 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1006 if (!tape->buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001008 tape->chrdev_dir = IDETAPE_DIR_READ;
Tejun Heo963da552009-04-19 08:46:02 +09001009 tape->cur = tape->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001012 * Issue a read 0 command to ensure that DSC handshake is
1013 * switched from completion mode to buffer available mode.
1014 * No point in issuing this if DSC overlap isn't supported, some
1015 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001017 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001018 bytes_read = idetape_queue_rw_tail(drive,
Tejun Heo963da552009-04-19 08:46:02 +09001019 REQ_IDETAPE_READ, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (bytes_read < 0) {
Tejun Heo963da552009-04-19 08:46:02 +09001021 kfree(tape->buf);
1022 tape->buf = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001023 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return bytes_read;
1025 }
1026 }
1027 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return 0;
1030}
1031
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001032/* called from idetape_chrdev_read() to service a chrdev read request. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001033static int idetape_add_chrdev_read_request(ide_drive_t *drive, int blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001035 debug_log(DBG_PROCS, "Enter %s, %d blocks\n", __func__, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001037 /* If we are at a filemark, return a read length of 0 */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001038 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return 0;
1040
Borislav Petkov83042b22008-04-27 15:38:27 +02001041 idetape_init_read(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Tejun Heo963da552009-04-19 08:46:02 +09001043 return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001046static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 idetape_tape_t *tape = drive->driver_data;
Tejun Heo963da552009-04-19 08:46:02 +09001049
1050 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 while (bcount) {
Tejun Heo963da552009-04-19 08:46:02 +09001053 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Tejun Heo963da552009-04-19 08:46:02 +09001055 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1056 count / tape->blk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
1059}
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001062 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1063 * currently support only one partition.
1064 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001065static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001067 struct ide_tape_obj *tape = drive->driver_data;
1068 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001070 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001071
1072 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001075 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (retval)
1077 return retval;
1078
1079 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001080 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (retval)
1082 return retval;
1083 return 0;
1084}
1085
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001086/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001087static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1088 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 void __user *argp = (void __user *)arg;
1092
Borislav Petkovd59823f2008-02-02 19:56:51 +01001093 struct idetape_config {
1094 int dsc_rw_frequency;
1095 int dsc_media_access_frequency;
1096 int nr_stages;
1097 } config;
1098
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001099 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001102 case 0x0340:
1103 if (copy_from_user(&config, argp, sizeof(config)))
1104 return -EFAULT;
1105 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001106 break;
1107 case 0x0350:
1108 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001109 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001110 if (copy_to_user(argp, &config, sizeof(config)))
1111 return -EFAULT;
1112 break;
1113 default:
1114 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116 return 0;
1117}
1118
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001119static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1120 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
1122 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001123 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001124 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001125 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001126 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if (mt_count == 0)
1129 return 0;
1130 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001131 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001133 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135
Borislav Petkov54abf372008-02-06 02:57:52 +01001136 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo963da552009-04-19 08:46:02 +09001137 tape->valid = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001138 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001140 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001144 case MTFSF:
1145 case MTBSF:
1146 idetape_create_space_cmd(&pc, mt_count - count,
1147 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001148 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001149 case MTFSFM:
1150 case MTBSFM:
1151 if (!sprev)
1152 return -EIO;
1153 retval = idetape_space_over_filemarks(drive, MTFSF,
1154 mt_count - count);
1155 if (retval)
1156 return retval;
1157 count = (MTBSFM == mt_op ? 1 : -1);
1158 return idetape_space_over_filemarks(drive, MTFSF, count);
1159 default:
1160 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1161 mt_op);
1162 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164}
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001167 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001169 * The tape is optimized to maximize throughput when it is transferring an
1170 * integral number of the "continuous transfer limit", which is a parameter of
1171 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001173 * As of version 1.3 of the driver, the character device provides an abstract
1174 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1175 * same backup/restore procedure is supported. The driver will internally
1176 * convert the requests to the recommended transfer unit, so that an unmatch
1177 * between the user's block size to the recommended size will only result in a
1178 * (slightly) increased driver overhead, but will no longer hit performance.
1179 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001181static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1182 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001184 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 ide_drive_t *drive = tape->drive;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001186 ssize_t bytes_read, temp, actually_read = 0, rc;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001187 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001188 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001190 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Borislav Petkov54abf372008-02-06 02:57:52 +01001192 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001193 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001194 if (count > tape->blk_size &&
1195 (count % tape->blk_size) == 0)
1196 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Borislav Petkov83042b22008-04-27 15:38:27 +02001198 rc = idetape_init_read(drive);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001199 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return rc;
1201 if (count == 0)
1202 return (0);
Tejun Heo963da552009-04-19 08:46:02 +09001203 if (tape->valid) {
1204 actually_read = min_t(unsigned int, tape->valid, count);
1205 if (copy_to_user(buf, tape->cur, actually_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001206 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 buf += actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 count -= actually_read;
Tejun Heo963da552009-04-19 08:46:02 +09001209 tape->cur += actually_read;
1210 tape->valid -= actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001212 while (count >= tape->buffer_size) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001213 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (bytes_read <= 0)
1215 goto finish;
Tejun Heo963da552009-04-19 08:46:02 +09001216 if (copy_to_user(buf, tape->cur, bytes_read))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001217 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 buf += bytes_read;
1219 count -= bytes_read;
1220 actually_read += bytes_read;
1221 }
1222 if (count) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001223 bytes_read = idetape_add_chrdev_read_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (bytes_read <= 0)
1225 goto finish;
1226 temp = min((unsigned long)count, (unsigned long)bytes_read);
Tejun Heo963da552009-04-19 08:46:02 +09001227 if (copy_to_user(buf, tape->cur, temp))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001228 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 actually_read += temp;
Tejun Heo963da552009-04-19 08:46:02 +09001230 tape->cur += temp;
1231 tape->valid -= temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233finish:
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001234 if (!actually_read && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001235 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 idetape_space_over_filemarks(drive, MTFSF, 1);
1238 return 0;
1239 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001240
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001241 return ret ? ret : actually_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001244static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 size_t count, loff_t *ppos)
1246{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001247 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 ide_drive_t *drive = tape->drive;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001249 ssize_t actually_written = 0;
1250 ssize_t ret = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001251 u16 ctl = *(u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /* The drive is write protected. */
1254 if (tape->write_prot)
1255 return -EACCES;
1256
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001257 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 /* Initialize write operation */
Borislav Petkov54abf372008-02-06 02:57:52 +01001260 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
1261 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001262 ide_tape_discard_merge_buffer(drive, 1);
Tejun Heo963da552009-04-19 08:46:02 +09001263 if (tape->buf || tape->valid) {
1264 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
1265 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
Tejun Heo963da552009-04-19 08:46:02 +09001267 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1268 if (!tape->buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return -ENOMEM;
Borislav Petkov54abf372008-02-06 02:57:52 +01001270 tape->chrdev_dir = IDETAPE_DIR_WRITE;
Tejun Heo963da552009-04-19 08:46:02 +09001271 tape->cur = tape->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001274 * Issue a write 0 command to ensure that DSC handshake is
1275 * switched from completion mode to buffer available mode. No
1276 * point in issuing this if DSC overlap isn't supported, some
1277 * drives (Seagate STT3401A) will return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001279 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001280 ssize_t retval = idetape_queue_rw_tail(drive,
Tejun Heo963da552009-04-19 08:46:02 +09001281 REQ_IDETAPE_WRITE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (retval < 0) {
Tejun Heo963da552009-04-19 08:46:02 +09001283 kfree(tape->buf);
1284 tape->buf = NULL;
Borislav Petkov54abf372008-02-06 02:57:52 +01001285 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return retval;
1287 }
1288 }
1289 }
1290 if (count == 0)
1291 return (0);
Tejun Heo963da552009-04-19 08:46:02 +09001292 if (tape->valid < tape->buffer_size) {
1293 actually_written = min_t(unsigned int,
1294 tape->buffer_size - tape->valid,
1295 count);
1296 if (copy_from_user(tape->cur, buf, actually_written))
1297 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 buf += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 count -= actually_written;
Tejun Heo963da552009-04-19 08:46:02 +09001300 tape->cur += actually_written;
1301 tape->valid += actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Tejun Heo963da552009-04-19 08:46:02 +09001303 if (tape->valid == tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001304 ssize_t retval;
Borislav Petkovb6422012008-02-02 19:56:49 +01001305 retval = idetape_add_chrdev_write_request(drive, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (retval <= 0)
1307 return (retval);
1308 }
1309 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001310 while (count >= tape->buffer_size) {
Daniel Walkerdcd96372006-06-25 05:47:37 -07001311 ssize_t retval;
Tejun Heo963da552009-04-19 08:46:02 +09001312 if (copy_from_user(tape->cur, buf, tape->buffer_size))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001313 ret = -EFAULT;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001314 buf += tape->buffer_size;
1315 count -= tape->buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001316 retval = idetape_add_chrdev_write_request(drive, ctl);
Borislav Petkovf73850a2008-04-27 15:38:33 +02001317 actually_written += tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (retval <= 0)
1319 return (retval);
1320 }
1321 if (count) {
1322 actually_written += count;
Tejun Heo963da552009-04-19 08:46:02 +09001323 if (copy_from_user(tape->cur, buf, count))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001324 ret = -EFAULT;
Tejun Heo963da552009-04-19 08:46:02 +09001325 tape->cur += count;
1326 tape->valid += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001328 return ret ? ret : actually_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001331static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001333 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001334 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /* Write a filemark */
1337 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001338 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1340 return -EIO;
1341 }
1342 return 0;
1343}
1344
1345/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001346 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1347 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001349 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1350 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001351 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001353 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001355 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1356 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001358static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001361 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001362 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001363 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001365 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1366 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001369 case MTFSF:
1370 case MTFSFM:
1371 case MTBSF:
1372 case MTBSFM:
1373 if (!mt_count)
1374 return 0;
1375 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1376 default:
1377 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001381 case MTWEOF:
1382 if (tape->write_prot)
1383 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001384 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001385 for (i = 0; i < mt_count; i++) {
1386 retval = idetape_write_filemark(drive);
1387 if (retval)
1388 return retval;
1389 }
1390 return 0;
1391 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001392 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001393 if (idetape_rewind_tape(drive))
1394 return -EIO;
1395 return 0;
1396 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001397 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001398 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001399 case MTUNLOAD:
1400 case MTOFFL:
1401 /*
1402 * If door is locked, attempt to unlock before
1403 * attempting to eject.
1404 */
1405 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001406 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001407 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001408 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001409 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001410 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001411 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001412 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001413 return retval;
1414 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001415 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001416 return idetape_flush_tape_buffers(drive);
1417 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001418 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001419 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001420 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001421 case MTEOM:
1422 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001423 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001424 case MTERASE:
1425 (void)idetape_rewind_tape(drive);
1426 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001427 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001428 case MTSETBLK:
1429 if (mt_count) {
1430 if (mt_count < tape->blk_size ||
1431 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001433 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001434 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001435 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001436 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001437 return 0;
1438 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001439 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001440 return idetape_position_tape(drive,
1441 mt_count * tape->user_bs_factor, tape->partition, 0);
1442 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001443 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001444 return idetape_position_tape(drive, 0, mt_count, 0);
1445 case MTFSR:
1446 case MTBSR:
1447 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001448 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001449 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001451 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1452 return 0;
1453 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001454 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001455 if (retval)
1456 return retval;
1457 tape->door_locked = DOOR_UNLOCKED;
1458 return 0;
1459 default:
1460 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1461 mt_op);
1462 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464}
1465
1466/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001467 * Our character device ioctls. General mtio.h magnetic io commands are
1468 * supported here, and not in the corresponding block interface. Our own
1469 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001471static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1472 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001474 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 ide_drive_t *drive = tape->drive;
1476 struct mtop mtop;
1477 struct mtget mtget;
1478 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001479 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 void __user *argp = (void __user *)arg;
1481
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001482 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Borislav Petkov54abf372008-02-06 02:57:52 +01001484 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001485 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 idetape_flush_tape_buffers(drive);
1487 }
1488 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo963da552009-04-19 08:46:02 +09001489 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001490 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001491 position = idetape_read_position(drive);
1492 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return -EIO;
1494 }
1495 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001496 case MTIOCTOP:
1497 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1498 return -EFAULT;
1499 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1500 case MTIOCGET:
1501 memset(&mtget, 0, sizeof(struct mtget));
1502 mtget.mt_type = MT_ISSCSI2;
1503 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1504 mtget.mt_dsreg =
1505 ((tape->blk_size * tape->user_bs_factor)
1506 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001507
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001508 if (tape->drv_write_prot)
1509 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1510
1511 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1512 return -EFAULT;
1513 return 0;
1514 case MTIOCPOS:
1515 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1516 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1517 return -EFAULT;
1518 return 0;
1519 default:
1520 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001521 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001522 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524}
1525
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001526/*
1527 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1528 * block size with the reported value.
1529 */
1530static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1531{
1532 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001533 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001534
1535 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001536 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001537 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001538 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001539 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1540 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001541 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001542 }
1543 return;
1544 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001545 tape->blk_size = (pc.buf[4 + 5] << 16) +
1546 (pc.buf[4 + 6] << 8) +
1547 pc.buf[4 + 7];
1548 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001549}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001551static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
1553 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1554 ide_drive_t *drive;
1555 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 int retval;
1557
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001558 if (i >= MAX_HWIFS * MAX_DRIVES)
1559 return -ENXIO;
1560
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001561 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001562 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001563 if (!tape) {
1564 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001565 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001566 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001567
1568 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 /*
1571 * We really want to do nonseekable_open(inode, filp); here, but some
1572 * versions of tar incorrectly call lseek on tapes and bail out if that
1573 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1574 */
1575 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 drive = tape->drive;
1578
1579 filp->private_data = tape;
1580
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001581 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 retval = -EBUSY;
1583 goto out_put_tape;
1584 }
1585
1586 retval = idetape_wait_ready(drive, 60 * HZ);
1587 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001588 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1590 goto out_put_tape;
1591 }
1592
1593 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001594 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 (void)idetape_rewind_tape(drive);
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001598 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 /* Set write protect flag if device is opened as read-only. */
1601 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1602 tape->write_prot = 1;
1603 else
1604 tape->write_prot = tape->drv_write_prot;
1605
1606 /* Make sure drive isn't write protected if user wants to write. */
1607 if (tape->write_prot) {
1608 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1609 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001610 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 retval = -EROFS;
1612 goto out_put_tape;
1613 }
1614 }
1615
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001616 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001617 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001618 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001619 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1620 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
1622 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001623 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return 0;
1625
1626out_put_tape:
1627 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001628 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return retval;
1630}
1631
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001632static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
1634 idetape_tape_t *tape = drive->driver_data;
1635
Borislav Petkovd9df9372008-04-27 15:38:34 +02001636 ide_tape_flush_merge_buffer(drive);
Tejun Heo963da552009-04-19 08:46:02 +09001637 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1638 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001639 idetape_pad_zeros(drive, tape->blk_size *
1640 (tape->user_bs_factor - 1));
Tejun Heo963da552009-04-19 08:46:02 +09001641 kfree(tape->buf);
1642 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644 idetape_write_filemark(drive);
1645 idetape_flush_tape_buffers(drive);
1646 idetape_flush_tape_buffers(drive);
1647}
1648
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001649static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001651 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 unsigned int minor = iminor(inode);
1654
1655 lock_kernel();
1656 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001657
1658 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Borislav Petkov54abf372008-02-06 02:57:52 +01001660 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001662 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001664 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001666
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001667 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01001669 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001671 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001672 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001675 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 ide_tape_put(tape);
1677 unlock_kernel();
1678 return 0;
1679}
1680
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001681static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001684 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001685 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001686 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001689 pc.buf = &pc_buf[0];
1690 pc.buf_size = sizeof(pc_buf);
1691
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001692 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001693 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1694 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 return;
1696 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001697 memcpy(vendor_id, &pc.buf[8], 8);
1698 memcpy(product_id, &pc.buf[16], 16);
1699 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001700
Borislav Petkov801bd322008-09-27 19:32:17 +02001701 ide_fixstring(vendor_id, 8, 0);
1702 ide_fixstring(product_id, 16, 0);
1703 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001704
Borislav Petkov801bd322008-09-27 19:32:17 +02001705 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001706 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
1709/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001710 * Ask the tape about its various parameters. In particular, we will adjust our
1711 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001713static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
1715 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001716 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01001717 u8 *caps;
1718 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001721 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001722 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1723 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001724 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001725 put_unaligned(52, (u16 *)&tape->caps[12]);
1726 put_unaligned(540, (u16 *)&tape->caps[14]);
1727 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return;
1729 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001730 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Borislav Petkovb6422012008-02-02 19:56:49 +01001732 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001733 speed = be16_to_cpup((__be16 *)&caps[14]);
1734 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001736 *(u16 *)&caps[8] = max_speed;
1737 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1738 *(u16 *)&caps[14] = speed;
1739 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001740
1741 if (!speed) {
1742 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1743 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001744 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001746 if (!max_speed) {
1747 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1748 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001749 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
1751
Borislav Petkovb6422012008-02-02 19:56:49 +01001752 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001753
1754 /* device lacks locking support according to capabilities page */
1755 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001756 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001757
Borislav Petkovb6422012008-02-02 19:56:49 +01001758 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001759 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001760 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001761 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001764#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001765#define ide_tape_devset_get(name, field) \
1766static int get_##name(ide_drive_t *drive) \
1767{ \
1768 idetape_tape_t *tape = drive->driver_data; \
1769 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001771
1772#define ide_tape_devset_set(name, field) \
1773static int set_##name(ide_drive_t *drive, int arg) \
1774{ \
1775 idetape_tape_t *tape = drive->driver_data; \
1776 tape->field = arg; \
1777 return 0; \
1778}
1779
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001780#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001781ide_tape_devset_get(_name, _field) \
1782ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001783IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001784
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001785#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001786ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001787IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001788
1789static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1790static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1791static int divf_buffer(ide_drive_t *drive) { return 2; }
1792static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1793
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001794ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001795
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001796ide_tape_devset_rw_field(debug_mask, debug_mask);
1797ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001798
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001799ide_tape_devset_r_field(avg_speed, avg_speed);
1800ide_tape_devset_r_field(speed, caps[14]);
1801ide_tape_devset_r_field(buffer, caps[16]);
1802ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001803
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001804static const struct ide_proc_devset idetape_settings[] = {
1805 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1806 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1807 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1808 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1809 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1810 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1811 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1812 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01001813 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001814};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001815#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001818 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001820 * 1. Initialize our various state variables.
1821 * 2. Ask the tape for its capabilities.
1822 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1823 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001825 * Note that at this point ide.c already assigned us an irq, so that we can
1826 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001828static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Borislav Petkov83042b22008-04-27 15:38:27 +02001830 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001832 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001833 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02001835 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001836
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001837 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1838
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001839 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1840 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1841 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001842 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001846 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001847 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 tape->minor = minor;
1850 tape->name[0] = 'h';
1851 tape->name[1] = 't';
1852 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001853 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 idetape_get_inquiry_results(drive);
1856 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001857 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001859 tape->buffer_size = *ctl * tape->blk_size;
1860 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001862 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001863 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001865 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Borislav Petkov83042b22008-04-27 15:38:27 +02001867 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001868 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Borislav Petkovf73850a2008-04-27 15:38:33 +02001870 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001873 * Ensure that the number we got makes sense; limit it within
1874 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001876 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1877 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02001879 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001880 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001881 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1882 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01001883 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001884 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001886 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
Russell King4031bbe2006-01-06 11:41:00 +00001889static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
1891 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001893 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001894 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 ide_unregister_region(tape->disk);
1896
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001897 mutex_lock(&idetape_ref_mutex);
1898 put_device(&tape->dev);
1899 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001902static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001904 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 ide_drive_t *drive = tape->drive;
1906 struct gendisk *g = tape->disk;
1907
Tejun Heo963da552009-04-19 08:46:02 +09001908 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001909
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001910 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001912 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001913 device_destroy(idetape_sysfs_class,
1914 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 idetape_devs[tape->minor] = NULL;
1916 g->private_data = NULL;
1917 put_disk(g);
1918 kfree(tape);
1919}
1920
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001921#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922static int proc_idetape_read_name
1923 (char *page, char **start, off_t off, int count, int *eof, void *data)
1924{
1925 ide_drive_t *drive = (ide_drive_t *) data;
1926 idetape_tape_t *tape = drive->driver_data;
1927 char *out = page;
1928 int len;
1929
1930 len = sprintf(out, "%s\n", tape->name);
1931 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1932}
1933
1934static ide_proc_entry_t idetape_proc[] = {
1935 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1936 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1937 { NULL, 0, NULL, NULL }
1938};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001939
1940static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1941{
1942 return idetape_proc;
1943}
1944
1945static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1946{
1947 return idetape_settings;
1948}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949#endif
1950
Russell King4031bbe2006-01-06 11:41:00 +00001951static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001953static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001954 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001955 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001956 .name = "ide-tape",
1957 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001958 },
Russell King4031bbe2006-01-06 11:41:00 +00001959 .probe = ide_tape_probe,
1960 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001963#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001964 .proc_entries = ide_tape_proc_entries,
1965 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001966#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967};
1968
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001969/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001970static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 .owner = THIS_MODULE,
1972 .read = idetape_chrdev_read,
1973 .write = idetape_chrdev_write,
1974 .ioctl = idetape_chrdev_ioctl,
1975 .open = idetape_chrdev_open,
1976 .release = idetape_chrdev_release,
1977};
1978
Al Viroa4600f82008-03-02 10:27:58 -05001979static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Al Viroa4600f82008-03-02 10:27:58 -05001981 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001983 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 return -ENXIO;
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return 0;
1987}
1988
Al Viroa4600f82008-03-02 10:27:58 -05001989static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001991 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return 0;
1995}
1996
Al Viroa4600f82008-03-02 10:27:58 -05001997static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 unsigned int cmd, unsigned long arg)
1999{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002000 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04002002 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 if (err == -EINVAL)
2004 err = idetape_blkdev_ioctl(drive, cmd, arg);
2005 return err;
2006}
2007
2008static struct block_device_operations idetape_block_ops = {
2009 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05002010 .open = idetape_open,
2011 .release = idetape_release,
2012 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013};
2014
Russell King4031bbe2006-01-06 11:41:00 +00002015static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 idetape_tape_t *tape;
2018 struct gendisk *g;
2019 int minor;
2020
2021 if (!strstr("ide-tape", drive->driver_req))
2022 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 if (drive->media != ide_tape)
2025 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002026
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02002027 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
2028 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002029 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
2030 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 goto failed;
2032 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002033 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002035 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
2036 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 goto failed;
2038 }
2039
2040 g = alloc_disk(1 << PARTN_BITS);
2041 if (!g)
2042 goto out_free_tape;
2043
2044 ide_init_disk(g, drive);
2045
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002046 tape->dev.parent = &drive->gendev;
2047 tape->dev.release = ide_tape_release;
2048 dev_set_name(&tape->dev, dev_name(&drive->gendev));
2049
2050 if (device_register(&tape->dev))
2051 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 tape->drive = drive;
2054 tape->driver = &idetape_driver;
2055 tape->disk = g;
2056
2057 g->private_data = &tape->driver;
2058
2059 drive->driver_data = tape;
2060
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002061 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 for (minor = 0; idetape_devs[minor]; minor++)
2063 ;
2064 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002065 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 idetape_setup(drive, tape, minor);
2068
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002069 device_create(idetape_sysfs_class, &drive->gendev,
2070 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2071 device_create(idetape_sysfs_class, &drive->gendev,
2072 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2073 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 g->fops = &idetape_block_ops;
2076 ide_register_region(g);
2077
2078 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002079
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002080out_free_disk:
2081 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082out_free_tape:
2083 kfree(tape);
2084failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002085 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002088static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002090 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002091 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 unregister_chrdev(IDETAPE_MAJOR, "ht");
2093}
2094
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002095static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Will Dysond5dee802005-09-16 02:55:07 -07002097 int error = 1;
2098 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2099 if (IS_ERR(idetape_sysfs_class)) {
2100 idetape_sysfs_class = NULL;
2101 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2102 error = -EBUSY;
2103 goto out;
2104 }
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002107 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2108 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002109 error = -EBUSY;
2110 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Will Dysond5dee802005-09-16 02:55:07 -07002112
2113 error = driver_register(&idetape_driver.gen_driver);
2114 if (error)
2115 goto out_free_driver;
2116
2117 return 0;
2118
2119out_free_driver:
2120 driver_unregister(&idetape_driver.gen_driver);
2121out_free_class:
2122 class_destroy(idetape_sysfs_class);
2123out:
2124 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
Kay Sievers263756e2005-12-12 18:03:44 +01002127MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128module_init(idetape_init);
2129module_exit(idetape_exit);
2130MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002131MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2132MODULE_LICENSE("GPL");