blob: 3a3f10f3f8feb90ad49f85b0dad3af23b516d74b [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
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200243static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
244
245static struct ide_tape_obj *ide_tape_get(struct gendisk *disk, bool cdev,
246 unsigned int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 struct ide_tape_obj *tape = NULL;
249
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800250 mutex_lock(&idetape_ref_mutex);
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200251
252 if (cdev)
253 tape = idetape_devs[i];
254 else
255 tape = ide_drv_g(disk, ide_tape_obj);
256
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200257 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200258 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200259 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200260 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100261 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200262 }
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200263
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800264 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return tape;
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static void ide_tape_put(struct ide_tape_obj *tape)
269{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200270 ide_drive_t *drive = tape->drive;
271
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800272 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100273 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200274 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800275 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100279 * called on each failed packet command retry to analyze the request sense. We
280 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
Borislav Petkovae3a8382009-05-02 10:58:17 +0200282static void idetape_analyze_error(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100285 struct ide_atapi_pc *pc = drive->failed_pc;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200286 struct request *rq = drive->hwif->rq;
Borislav Petkovae3a8382009-05-02 10:58:17 +0200287 u8 *sense = bio_data(rq->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Borislav Petkov1b5db432008-02-02 19:56:48 +0100289 tape->sense_key = sense[2] & 0xF;
290 tape->asc = sense[12];
291 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100292
293 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
294 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Borislav Petkov077e6db2009-05-01 21:21:02 +0200296 /* correct remaining bytes to transfer */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900297 if (pc->flags & PC_FLAG_DMA_ERROR)
Borislav Petkov077e6db2009-05-01 21:21:02 +0200298 rq->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /*
301 * If error was the result of a zero-length read or write command,
302 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
303 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
304 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100305 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100306 /* length == 0 */
307 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
308 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* don't report an error, everything's ok */
310 pc->error = 0;
311 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200312 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100315 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100316 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200317 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100319 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100320 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
321 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100322 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200323 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100326 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100327 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100328 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200329 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200331 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkov077e6db2009-05-01 21:21:02 +0200332 (blk_rq_bytes(rq) - rq->resid_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
334 }
335}
336
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200337static void ide_tape_handle_dsc(ide_drive_t *);
338
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100339static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200342 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100343 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200344 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100345 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100347 debug_log(DBG_PROCS, "Enter %s\n", __func__);
348
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200349 if (dsc)
350 ide_tape_handle_dsc(drive);
351
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100352 if (drive->failed_pc == pc)
353 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200354
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200355 if (pc->c[0] == REQUEST_SENSE) {
356 if (uptodate)
Borislav Petkovae3a8382009-05-02 10:58:17 +0200357 idetape_analyze_error(drive);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200358 else
359 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
360 "itself - Aborting request!\n");
361 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov077e6db2009-05-01 21:21:02 +0200362 unsigned int blocks =
363 (blk_rq_bytes(rq) - rq->resid_len) / tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200364
365 tape->avg_size += blocks * tape->blk_size;
366
367 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
368 tape->avg_speed = tape->avg_size * HZ /
369 (jiffies - tape->avg_time) / 1024;
370 tape->avg_size = 0;
371 tape->avg_time = jiffies;
372 }
373
374 tape->first_frame += blocks;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200375
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100376 if (pc->error) {
377 uptodate = 0;
378 err = pc->error;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100381 rq->errors = err;
382
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100383 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100387 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100388 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100390static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
392 idetape_tape_t *tape = drive->driver_data;
393
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100394 debug_log(DBG_PROCS, "Enter %s\n", __func__);
395
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100396 tape->postponed_rq = drive->hwif->rq;
397
Borislav Petkov54bb2072008-02-06 02:57:52 +0100398 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200401static void ide_tape_handle_dsc(ide_drive_t *drive)
402{
403 idetape_tape_t *tape = drive->driver_data;
404
405 /* Media access command */
406 tape->dsc_polling_start = jiffies;
407 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
408 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
409 /* Allow ide.c to handle other requests */
410 idetape_postpone_request(drive);
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100414 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200416 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100417 * until we finish handling it. Each packet command is associated with a
418 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100420 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100422 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200423 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200425 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100426 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100428 * 3. ATAPI Tape media access commands have immediate status with a delayed
429 * process. In case of a successful initiation of a media access packet command,
430 * the DSC bit will be set when the actual execution of the command is finished.
431 * Since the tape drive will not issue an interrupt, we have to poll for this
432 * event. In this case, we define the request as "low priority request" by
433 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
434 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100436 * ide.c will then give higher priority to requests which originate from the
437 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100439 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100441 * 5. In case an error was found, we queue a request sense packet command in
442 * front of the request queue and retry the operation up to
443 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100445 * 6. In case no error was found, or we decided to give up and not to retry
446 * again, the callback function will be called and then we will handle the next
447 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100450static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
451 struct ide_cmd *cmd,
452 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200455 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100457 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
458 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200461 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200464 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heob3071d12009-04-19 08:46:02 +0900465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100467 * We will "abort" retrying a packet command in case legitimate
468 * error code was received (crossing a filemark, or end of the
469 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200471 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100472 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 tape->sense_key == 2 && tape->asc == 4 &&
474 (tape->ascq == 1 || tape->ascq == 8))) {
475 printk(KERN_ERR "ide-tape: %s: I/O error, "
476 "pc = %2x, key = %2x, "
477 "asc = %2x, ascq = %2x\n",
478 tape->name, pc->c[0],
479 tape->sense_key, tape->asc,
480 tape->ascq);
481 }
482 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100483 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
Tejun Heob3071d12009-04-19 08:46:02 +0900485
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100486 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200487 drive->pc_callback(drive, 0);
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200488 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200489 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100491 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100495 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100498/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200499static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200501 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100502 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100504 /* DBD = 1 - Don't return block descriptors */
505 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 pc->c[2] = page_code;
507 /*
508 * Changed pc->c[3] to 0 (255 will at best return unused info).
509 *
510 * For SCSI this byte is defined as subpage instead of high byte
511 * of length and some IDE drives seem to interpret it this way
512 * and return an error when 255 is used.
513 */
514 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100515 /* We will just discard data in that case */
516 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200518 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200520 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200522 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100525static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200527 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200529 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100530 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200532 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100533
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200534 if (stat & ATA_DSC) {
535 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100537 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 printk(KERN_ERR "ide-tape: %s: I/O error, ",
539 tape->name);
540 /* Retry operation */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900541 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200542 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100546 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100547 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200549 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return ide_stopped;
551}
552
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200553static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200554 struct ide_atapi_pc *pc, struct request *rq,
555 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Borislav Petkov10c0b342009-05-01 20:29:53 +0200557 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
Borislav Petkov0014c752008-07-23 19:56:00 +0200558
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200559 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100560 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 pc->c[1] = 1;
Borislav Petkov19f52a72009-05-04 09:53:03 +0200562
563 if (blk_rq_bytes(rq) == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200564 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Tejun Heo963da552009-04-19 08:46:02 +0900566 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200567 pc->c[0] = READ_6;
Tejun Heo963da552009-04-19 08:46:02 +0900568 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200569 pc->c[0] = WRITE_6;
570 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200571 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200572
573 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576static ide_startstop_t idetape_do_request(ide_drive_t *drive,
577 struct request *rq, sector_t block)
578{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200579 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200581 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100583 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100584 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Tejun Heo9780e2d2009-05-07 22:24:40 +0900586 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %u\n"
587 (unsigned long long)blk_rq_pos(rq), blk_rq_sectors(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900589 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100590 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200592 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100593 if (blk_fs_request(rq) == 0 && rq->errors == 0)
594 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100595 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return ide_stopped;
597 }
598
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100599 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100600 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
601 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200602 goto out;
603 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (postponed_rq != NULL)
606 if (rq != postponed_rq) {
607 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
608 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100609 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100610 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100611 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return ide_stopped;
613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 tape->postponed_rq = NULL;
616
617 /*
618 * If the tape is still busy, postpone our request and service
619 * the other device meanwhile.
620 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200621 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200623 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
624 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkov626542c2009-06-07 15:37:05 +0200625 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200627 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkov626542c2009-06-07 15:37:05 +0200628 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200629 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
Borislav Petkov626542c2009-06-07 15:37:05 +0200632 if (!(drive->atapi_flags & IDE_AFLAG_IGNORE_DSC) &&
633 !(stat & ATA_DSC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (postponed_rq == NULL) {
635 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100636 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
638 } else if (time_after(jiffies, tape->dsc_timeout)) {
639 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
640 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200641 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 idetape_media_access_finished(drive);
643 return ide_stopped;
644 } else {
645 return ide_do_reset(drive);
646 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100647 } else if (time_after(jiffies,
648 tape->dsc_polling_start +
649 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100650 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 idetape_postpone_request(drive);
652 return ide_stopped;
Borislav Petkov626542c2009-06-07 15:37:05 +0200653 } else
654 drive->atapi_flags &= ~IDE_AFLAG_IGNORE_DSC;
655
Borislav Petkov83dd5732008-07-23 19:56:00 +0200656 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200657 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200658 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 goto out;
660 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200661 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200662 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200663 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 goto out;
665 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200666 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoc267cc12009-04-19 07:00:42 +0900667 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200668 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
669 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 goto out;
671 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200672 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 idetape_media_access_finished(drive);
674 return ide_stopped;
675 }
676 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200677
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200678out:
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900679 /* prepare sense request for this command */
680 ide_prep_sense(drive, rq);
681
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100682 memset(&cmd, 0, sizeof(cmd));
683
684 if (rq_data_dir(rq))
685 cmd.tf_flags |= IDE_TFLAG_WRITE;
686
687 cmd.rq = rq;
688
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200689 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Tejun Heo5c4be572009-04-19 07:00:42 +0900690 ide_map_sg(drive, &cmd);
691
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100692 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100696 * Write a filemark if write_filemark=1. Flush the device buffers without
697 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100699static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200700 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200702 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100703 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200705 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
709{
710 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200711 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int load_attempted = 0;
713
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100714 /* Wait for the tape to become ready */
Borislav Petkov49d80782009-06-07 15:37:06 +0200715 set_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 timeout += jiffies;
717 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200718 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return 0;
720 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100721 || (tape->asc == 0x3A)) {
722 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (load_attempted)
724 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200725 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 load_attempted = 1;
727 /* not about to be ready */
728 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
729 (tape->ascq == 1 || tape->ascq == 8)))
730 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700731 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733 return -EIO;
734}
735
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100736static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200738 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200739 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 int rc;
741
742 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200743 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100744 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return rc;
746 idetape_wait_ready(drive, 60 * 5 * HZ);
747 return 0;
748}
749
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200750static int ide_tape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200753 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200754 u8 buf[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100756 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200758 /* prep cmd */
759 ide_init_pc(&pc);
760 pc.c[0] = READ_POSITION;
761 pc.req_xfer = 20;
762
763 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return -1;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200765
766 if (!pc.error) {
767 debug_log(DBG_SENSE, "BOP - %s\n",
768 (buf[0] & 0x80) ? "Yes" : "No");
769 debug_log(DBG_SENSE, "EOP - %s\n",
770 (buf[0] & 0x40) ? "Yes" : "No");
771
772 if (buf[0] & 0x4) {
773 printk(KERN_INFO "ide-tape: Block location is unknown"
774 "to the tape\n");
Bartlomiej Zolnierkiewicz8dcce402009-06-13 12:00:54 +0200775 clear_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
776 &drive->atapi_flags);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200777 return -1;
778 } else {
779 debug_log(DBG_SENSE, "Block Location - %u\n",
780 be32_to_cpup((__be32 *)&buf[4]));
781
782 tape->partition = buf[1];
783 tape->first_frame = be32_to_cpup((__be32 *)&buf[4]);
Bartlomiej Zolnierkiewicz8dcce402009-06-13 12:00:54 +0200784 set_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
785 &drive->atapi_flags);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200786 }
787 }
788
789 return tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Borislav Petkovd236d742008-04-18 00:46:27 +0200792static void idetape_create_locate_cmd(ide_drive_t *drive,
793 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100794 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200796 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100797 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100799 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200801 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200804static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Borislav Petkov54abf372008-02-06 02:57:52 +0100808 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200809 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Borislav Petkov49d80782009-06-07 15:37:06 +0200811 clear_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags);
Tejun Heo963da552009-04-19 08:46:02 +0900812 tape->valid = 0;
813 if (tape->buf != NULL) {
814 kfree(tape->buf);
815 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817
Borislav Petkov54abf372008-02-06 02:57:52 +0100818 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100822 * Position the tape to the requested block using the LOCATE packet command.
823 * A READ POSITION command is then issued to check where we are positioned. Like
824 * all higher level operations, we queue the commands at the tail of the request
825 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100827static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
828 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200831 struct gendisk *disk = tape->disk;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200832 int ret;
Borislav Petkovd236d742008-04-18 00:46:27 +0200833 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Borislav Petkov54abf372008-02-06 02:57:52 +0100835 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200836 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 idetape_wait_ready(drive, 60 * 5 * HZ);
838 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200839 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
840 if (ret)
841 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200843 ret = ide_tape_read_position(drive);
844 if (ret < 0)
845 return ret;
846 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200849static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100850 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 int seek, position;
854
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200855 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (restore_position) {
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200857 position = ide_tape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200858 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100860 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200861 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return;
863 }
864 }
865}
866
867/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100868 * Generate a read/write request for the block device interface and wait for it
869 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900871static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
873 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200874 struct request *rq;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900875 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100877 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900878 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900879 BUG_ON(size < 0 || size % tape->blk_size);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100880
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200881 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
882 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200883 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200884 rq->rq_disk = tape->disk;
Linus Torvaldsc9059592009-06-11 10:52:27 -0700885 rq->__sector = tape->first_frame;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900886
887 if (size) {
Tejun Heo963da552009-04-19 08:46:02 +0900888 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900889 __GFP_WAIT);
890 if (ret)
891 goto out_put;
892 }
893
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200894 blk_execute_rq(drive->queue, tape->disk, rq, 0);
895
Tejun Heo963da552009-04-19 08:46:02 +0900896 /* calculate the number of transferred bytes and update buffer state */
Tejun Heoc3a4d782009-05-07 22:24:37 +0900897 size -= rq->resid_len;
Tejun Heo963da552009-04-19 08:46:02 +0900898 tape->cur = tape->buf;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900899 if (cmd == REQ_IDETAPE_READ)
Tejun Heo963da552009-04-19 08:46:02 +0900900 tape->valid = size;
901 else
902 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900904 ret = size;
905 if (rq->errors == IDE_DRV_ERROR_GENERAL)
906 ret = -EIO;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900907out_put:
908 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200909 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Borislav Petkovd236d742008-04-18 00:46:27 +0200912static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200914 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100915 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100916 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200917 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
Borislav Petkovd236d742008-04-18 00:46:27 +0200920static void idetape_create_rewind_cmd(ide_drive_t *drive,
921 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200923 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100924 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200925 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Borislav Petkovd236d742008-04-18 00:46:27 +0200928static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200930 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100931 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200933 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Borislav Petkovd236d742008-04-18 00:46:27 +0200936static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200938 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100939 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100940 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200942 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Borislav Petkovd9df9372008-04-27 15:38:34 +0200945static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100948
Borislav Petkov54abf372008-02-06 02:57:52 +0100949 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200950 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100951 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return;
953 }
Tejun Heo963da552009-04-19 08:46:02 +0900954 if (tape->buf) {
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900955 size_t aligned = roundup(tape->valid, tape->blk_size);
956
957 memset(tape->cur, 0, aligned - tape->valid);
Tejun Heo07bd9682009-04-19 08:46:03 +0900958 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
Tejun Heo963da552009-04-19 08:46:02 +0900959 kfree(tape->buf);
960 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100962 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Tejun Heo88f1b942009-04-19 08:46:02 +0900965static int idetape_init_rw(ide_drive_t *drive, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 idetape_tape_t *tape = drive->driver_data;
Tejun Heo88f1b942009-04-19 08:46:02 +0900968 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Tejun Heo88f1b942009-04-19 08:46:02 +0900970 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Tejun Heo88f1b942009-04-19 08:46:02 +0900972 if (tape->chrdev_dir == dir)
973 return 0;
974
975 if (tape->chrdev_dir == IDETAPE_DIR_READ)
976 ide_tape_discard_merge_buffer(drive, 1);
977 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
978 ide_tape_flush_merge_buffer(drive);
979 idetape_flush_tape_buffers(drive);
980 }
981
982 if (tape->buf || tape->valid) {
983 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
984 tape->valid = 0;
985 }
986
987 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
988 if (!tape->buf)
989 return -ENOMEM;
990 tape->chrdev_dir = dir;
991 tape->cur = tape->buf;
992
993 /*
994 * Issue a 0 rw command to ensure that DSC handshake is
995 * switched from completion mode to buffer available mode. No
996 * point in issuing this if DSC overlap isn't supported, some
997 * drives (Seagate STT3401A) will return an error.
998 */
999 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1000 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
1001 : REQ_IDETAPE_WRITE;
1002
1003 rc = idetape_queue_rw_tail(drive, cmd, 0);
1004 if (rc < 0) {
1005 kfree(tape->buf);
1006 tape->buf = NULL;
1007 tape->chrdev_dir = IDETAPE_DIR_NONE;
1008 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return 0;
1013}
1014
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001015static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
1017 idetape_tape_t *tape = drive->driver_data;
Tejun Heo963da552009-04-19 08:46:02 +09001018
1019 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 while (bcount) {
Tejun Heo963da552009-04-19 08:46:02 +09001022 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Tejun Heo6bb11dd2009-04-19 08:46:03 +09001024 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001030 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1031 * currently support only one partition.
1032 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001033static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001035 struct ide_tape_obj *tape = drive->driver_data;
1036 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001037 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001038 int ret;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001039
1040 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 idetape_create_rewind_cmd(drive, &pc);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001043 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1044 if (ret)
1045 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001047 ret = ide_tape_read_position(drive);
1048 if (ret < 0)
1049 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return 0;
1051}
1052
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001053/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001054static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1055 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 void __user *argp = (void __user *)arg;
1059
Borislav Petkovd59823f2008-02-02 19:56:51 +01001060 struct idetape_config {
1061 int dsc_rw_frequency;
1062 int dsc_media_access_frequency;
1063 int nr_stages;
1064 } config;
1065
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001066 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001069 case 0x0340:
1070 if (copy_from_user(&config, argp, sizeof(config)))
1071 return -EFAULT;
1072 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001073 break;
1074 case 0x0350:
1075 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001076 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001077 if (copy_to_user(argp, &config, sizeof(config)))
1078 return -EFAULT;
1079 break;
1080 default:
1081 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083 return 0;
1084}
1085
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001086static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1087 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001090 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001091 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001092 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001093 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 if (mt_count == 0)
1096 return 0;
1097 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001098 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001100 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102
Borislav Petkov54abf372008-02-06 02:57:52 +01001103 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo963da552009-04-19 08:46:02 +09001104 tape->valid = 0;
Borislav Petkov49d80782009-06-07 15:37:06 +02001105 if (test_and_clear_bit(ilog2(IDE_AFLAG_FILEMARK),
1106 &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001108 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001112 case MTFSF:
1113 case MTBSF:
1114 idetape_create_space_cmd(&pc, mt_count - count,
1115 IDETAPE_SPACE_OVER_FILEMARK);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001116 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001117 case MTFSFM:
1118 case MTBSFM:
1119 if (!sprev)
1120 return -EIO;
1121 retval = idetape_space_over_filemarks(drive, MTFSF,
1122 mt_count - count);
1123 if (retval)
1124 return retval;
1125 count = (MTBSFM == mt_op ? 1 : -1);
1126 return idetape_space_over_filemarks(drive, MTFSF, count);
1127 default:
1128 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1129 mt_op);
1130 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001135 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001137 * The tape is optimized to maximize throughput when it is transferring an
1138 * integral number of the "continuous transfer limit", which is a parameter of
1139 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001141 * As of version 1.3 of the driver, the character device provides an abstract
1142 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1143 * same backup/restore procedure is supported. The driver will internally
1144 * convert the requests to the recommended transfer unit, so that an unmatch
1145 * between the user's block size to the recommended size will only result in a
1146 * (slightly) increased driver overhead, but will no longer hit performance.
1147 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001149static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1150 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001152 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001154 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001155 ssize_t ret = 0;
Tejun Heo07bd9682009-04-19 08:46:03 +09001156 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001158 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Borislav Petkov54abf372008-02-06 02:57:52 +01001160 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001161 if (test_bit(ilog2(IDE_AFLAG_DETECT_BS), &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001162 if (count > tape->blk_size &&
1163 (count % tape->blk_size) == 0)
1164 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001166
Tejun Heo88f1b942009-04-19 08:46:02 +09001167 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001168 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return rc;
Tejun Heo07bd9682009-04-19 08:46:03 +09001170
1171 while (done < count) {
1172 size_t todo;
1173
1174 /* refill if staging buffer is empty */
1175 if (!tape->valid) {
1176 /* If we are at a filemark, nothing more to read */
Borislav Petkov49d80782009-06-07 15:37:06 +02001177 if (test_bit(ilog2(IDE_AFLAG_FILEMARK),
1178 &drive->atapi_flags))
Tejun Heo07bd9682009-04-19 08:46:03 +09001179 break;
1180 /* read */
1181 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1182 tape->buffer_size) <= 0)
1183 break;
1184 }
1185
1186 /* copy out */
1187 todo = min_t(size_t, count - done, tape->valid);
1188 if (copy_to_user(buf + done, tape->cur, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001189 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001190
1191 tape->cur += todo;
1192 tape->valid -= todo;
1193 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001195
Borislav Petkov49d80782009-06-07 15:37:06 +02001196 if (!done && test_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001197 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 idetape_space_over_filemarks(drive, MTFSF, 1);
1200 return 0;
1201 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001202
Tejun Heo07bd9682009-04-19 08:46:03 +09001203 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001206static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 size_t count, loff_t *ppos)
1208{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001209 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001211 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001212 ssize_t ret = 0;
Tejun Heo88f1b942009-04-19 08:46:02 +09001213 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /* The drive is write protected. */
1216 if (tape->write_prot)
1217 return -EACCES;
1218
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001219 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 /* Initialize write operation */
Tejun Heo88f1b942009-04-19 08:46:02 +09001222 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1223 if (rc < 0)
1224 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Tejun Heo07bd9682009-04-19 08:46:03 +09001226 while (done < count) {
1227 size_t todo;
1228
1229 /* flush if staging buffer is full */
1230 if (tape->valid == tape->buffer_size &&
1231 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1232 tape->buffer_size) <= 0)
1233 return rc;
1234
1235 /* copy in */
1236 todo = min_t(size_t, count - done,
1237 tape->buffer_size - tape->valid);
1238 if (copy_from_user(tape->cur, buf + done, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001239 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001240
1241 tape->cur += todo;
1242 tape->valid += todo;
1243 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001245
1246 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001249static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001251 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001252 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 /* Write a filemark */
1255 idetape_create_write_filemark_cmd(drive, &pc, 1);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001256 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1258 return -EIO;
1259 }
1260 return 0;
1261}
1262
1263/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001264 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1265 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001267 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1268 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001269 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001271 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001273 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1274 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001276static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001279 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001280 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001281 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001283 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1284 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001287 case MTFSF:
1288 case MTFSFM:
1289 case MTBSF:
1290 case MTBSFM:
1291 if (!mt_count)
1292 return 0;
1293 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1294 default:
1295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001299 case MTWEOF:
1300 if (tape->write_prot)
1301 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001302 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001303 for (i = 0; i < mt_count; i++) {
1304 retval = idetape_write_filemark(drive);
1305 if (retval)
1306 return retval;
1307 }
1308 return 0;
1309 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001310 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001311 if (idetape_rewind_tape(drive))
1312 return -EIO;
1313 return 0;
1314 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001315 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001316 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001317 case MTUNLOAD:
1318 case MTOFFL:
1319 /*
1320 * If door is locked, attempt to unlock before
1321 * attempting to eject.
1322 */
1323 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001324 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001325 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001326 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001327 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001328 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001329 if (!retval)
Borislav Petkov49d80782009-06-07 15:37:06 +02001330 clear_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1331 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001332 return retval;
1333 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001334 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001335 return idetape_flush_tape_buffers(drive);
1336 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001337 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001338 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001339 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001340 case MTEOM:
1341 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001342 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001343 case MTERASE:
1344 (void)idetape_rewind_tape(drive);
1345 idetape_create_erase_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001346 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001347 case MTSETBLK:
1348 if (mt_count) {
1349 if (mt_count < tape->blk_size ||
1350 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001352 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkov49d80782009-06-07 15:37:06 +02001353 clear_bit(ilog2(IDE_AFLAG_DETECT_BS),
1354 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001355 } else
Borislav Petkov49d80782009-06-07 15:37:06 +02001356 set_bit(ilog2(IDE_AFLAG_DETECT_BS),
1357 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001358 return 0;
1359 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001360 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001361 return idetape_position_tape(drive,
1362 mt_count * tape->user_bs_factor, tape->partition, 0);
1363 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001364 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001365 return idetape_position_tape(drive, 0, mt_count, 0);
1366 case MTFSR:
1367 case MTBSR:
1368 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001369 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001370 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001372 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1373 return 0;
1374 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001375 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001376 if (retval)
1377 return retval;
1378 tape->door_locked = DOOR_UNLOCKED;
1379 return 0;
1380 default:
1381 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1382 mt_op);
1383 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385}
1386
1387/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001388 * Our character device ioctls. General mtio.h magnetic io commands are
1389 * supported here, and not in the corresponding block interface. Our own
1390 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001392static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1393 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001395 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 ide_drive_t *drive = tape->drive;
1397 struct mtop mtop;
1398 struct mtget mtget;
1399 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001400 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 void __user *argp = (void __user *)arg;
1402
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001403 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Borislav Petkov54abf372008-02-06 02:57:52 +01001405 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001406 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 idetape_flush_tape_buffers(drive);
1408 }
1409 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo963da552009-04-19 08:46:02 +09001410 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001411 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001412 position = ide_tape_read_position(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001413 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EIO;
1415 }
1416 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001417 case MTIOCTOP:
1418 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1419 return -EFAULT;
1420 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1421 case MTIOCGET:
1422 memset(&mtget, 0, sizeof(struct mtget));
1423 mtget.mt_type = MT_ISSCSI2;
1424 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1425 mtget.mt_dsreg =
1426 ((tape->blk_size * tape->user_bs_factor)
1427 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001428
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001429 if (tape->drv_write_prot)
1430 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1431
1432 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1433 return -EFAULT;
1434 return 0;
1435 case MTIOCPOS:
1436 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1437 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1438 return -EFAULT;
1439 return 0;
1440 default:
1441 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001442 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001443 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445}
1446
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001447/*
1448 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1449 * block size with the reported value.
1450 */
1451static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1452{
1453 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001454 struct ide_atapi_pc pc;
Borislav Petkov837272b2009-05-04 09:48:57 +02001455 u8 buf[12];
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001456
1457 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Borislav Petkov837272b2009-05-04 09:48:57 +02001458 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001459 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001460 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001461 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1462 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001463 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001464 }
1465 return;
1466 }
Borislav Petkov837272b2009-05-04 09:48:57 +02001467 tape->blk_size = (buf[4 + 5] << 16) +
1468 (buf[4 + 6] << 8) +
1469 buf[4 + 7];
1470 tape->drv_write_prot = (buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001473static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1476 ide_drive_t *drive;
1477 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int retval;
1479
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001480 if (i >= MAX_HWIFS * MAX_DRIVES)
1481 return -ENXIO;
1482
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001483 lock_kernel();
Borislav Petkov9d01e4c2009-06-08 22:03:03 +02001484 tape = ide_tape_get(NULL, true, i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001485 if (!tape) {
1486 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001487 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001488 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001489
1490 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 /*
1493 * We really want to do nonseekable_open(inode, filp); here, but some
1494 * versions of tar incorrectly call lseek on tapes and bail out if that
1495 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1496 */
1497 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 drive = tape->drive;
1500
1501 filp->private_data = tape;
1502
Borislav Petkov49d80782009-06-07 15:37:06 +02001503 if (test_and_set_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 retval = -EBUSY;
1505 goto out_put_tape;
1506 }
1507
1508 retval = idetape_wait_ready(drive, 60 * HZ);
1509 if (retval) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001510 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1512 goto out_put_tape;
1513 }
1514
Borislav Petkov79ca7432009-06-15 07:32:04 +02001515 ide_tape_read_position(drive);
Borislav Petkov49d80782009-06-07 15:37:06 +02001516 if (!test_bit(ilog2(IDE_AFLAG_ADDRESS_VALID), &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 (void)idetape_rewind_tape(drive);
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001520 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 /* Set write protect flag if device is opened as read-only. */
1523 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1524 tape->write_prot = 1;
1525 else
1526 tape->write_prot = tape->drv_write_prot;
1527
1528 /* Make sure drive isn't write protected if user wants to write. */
1529 if (tape->write_prot) {
1530 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1531 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001532 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 retval = -EROFS;
1534 goto out_put_tape;
1535 }
1536 }
1537
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001538 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001539 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001540 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001541 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1542 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001545 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return 0;
1547
1548out_put_tape:
1549 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001550 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return retval;
1552}
1553
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001554static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
1556 idetape_tape_t *tape = drive->driver_data;
1557
Borislav Petkovd9df9372008-04-27 15:38:34 +02001558 ide_tape_flush_merge_buffer(drive);
Tejun Heo963da552009-04-19 08:46:02 +09001559 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1560 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001561 idetape_pad_zeros(drive, tape->blk_size *
1562 (tape->user_bs_factor - 1));
Tejun Heo963da552009-04-19 08:46:02 +09001563 kfree(tape->buf);
1564 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 idetape_write_filemark(drive);
1567 idetape_flush_tape_buffers(drive);
1568 idetape_flush_tape_buffers(drive);
1569}
1570
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001571static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001573 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 unsigned int minor = iminor(inode);
1576
1577 lock_kernel();
1578 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001579
1580 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Borislav Petkov54abf372008-02-06 02:57:52 +01001582 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001584 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001586 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001588
Borislav Petkov49d80782009-06-07 15:37:06 +02001589 if (minor < 128 && test_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1590 &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 (void) idetape_rewind_tape(drive);
Borislav Petkov49d80782009-06-07 15:37:06 +02001592
Borislav Petkov54abf372008-02-06 02:57:52 +01001593 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001595 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001596 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
1598 }
Borislav Petkov49d80782009-06-07 15:37:06 +02001599 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 ide_tape_put(tape);
1601 unlock_kernel();
1602 return 0;
1603}
1604
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001605static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001608 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001609 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001610 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 idetape_create_inquiry_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001613 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001614 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1615 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return;
1617 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001618 memcpy(vendor_id, &pc_buf[8], 8);
1619 memcpy(product_id, &pc_buf[16], 16);
1620 memcpy(fw_rev, &pc_buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001621
Borislav Petkov801bd322008-09-27 19:32:17 +02001622 ide_fixstring(vendor_id, 8, 0);
1623 ide_fixstring(product_id, 16, 0);
1624 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001625
Borislav Petkov801bd322008-09-27 19:32:17 +02001626 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001627 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
1630/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001631 * Ask the tape about its various parameters. In particular, we will adjust our
1632 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001634static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001637 struct ide_atapi_pc pc;
Borislav Petkovb13345f2009-05-02 10:26:12 +02001638 u8 buf[24], *caps;
Borislav Petkovb6422012008-02-02 19:56:49 +01001639 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001642 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001643 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1644 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001645 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001646 put_unaligned(52, (u16 *)&tape->caps[12]);
1647 put_unaligned(540, (u16 *)&tape->caps[14]);
1648 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return;
1650 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001651 caps = buf + 4 + buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Borislav Petkovb6422012008-02-02 19:56:49 +01001653 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001654 speed = be16_to_cpup((__be16 *)&caps[14]);
1655 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001657 *(u16 *)&caps[8] = max_speed;
1658 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1659 *(u16 *)&caps[14] = speed;
1660 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001661
1662 if (!speed) {
1663 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1664 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001665 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001667 if (!max_speed) {
1668 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1669 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001670 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672
Borislav Petkovb6422012008-02-02 19:56:49 +01001673 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001674
1675 /* device lacks locking support according to capabilities page */
1676 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001677 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001678
Borislav Petkovb6422012008-02-02 19:56:49 +01001679 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001680 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001681 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001682 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001685#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001686#define ide_tape_devset_get(name, field) \
1687static int get_##name(ide_drive_t *drive) \
1688{ \
1689 idetape_tape_t *tape = drive->driver_data; \
1690 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001692
1693#define ide_tape_devset_set(name, field) \
1694static int set_##name(ide_drive_t *drive, int arg) \
1695{ \
1696 idetape_tape_t *tape = drive->driver_data; \
1697 tape->field = arg; \
1698 return 0; \
1699}
1700
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001701#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001702ide_tape_devset_get(_name, _field) \
1703ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001704IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001705
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001706#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001707ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001708IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001709
1710static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1711static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1712static int divf_buffer(ide_drive_t *drive) { return 2; }
1713static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1714
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001715ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001716
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001717ide_tape_devset_rw_field(debug_mask, debug_mask);
1718ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001719
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001720ide_tape_devset_r_field(avg_speed, avg_speed);
1721ide_tape_devset_r_field(speed, caps[14]);
1722ide_tape_devset_r_field(buffer, caps[16]);
1723ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001724
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001725static const struct ide_proc_devset idetape_settings[] = {
1726 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1727 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1728 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1729 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1730 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1731 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1732 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1733 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01001734 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001735};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001739 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001741 * 1. Initialize our various state variables.
1742 * 2. Ask the tape for its capabilities.
1743 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1744 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001746 * Note that at this point ide.c already assigned us an irq, so that we can
1747 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001749static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Borislav Petkov83042b22008-04-27 15:38:27 +02001751 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001753 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001754 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02001756 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001757
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001758 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1759
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001760 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1761 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1762 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001763 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001767 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001768 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 tape->minor = minor;
1771 tape->name[0] = 'h';
1772 tape->name[1] = 't';
1773 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001774 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 idetape_get_inquiry_results(drive);
1777 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001778 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001780 tape->buffer_size = *ctl * tape->blk_size;
1781 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001783 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001784 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001786 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Borislav Petkov83042b22008-04-27 15:38:27 +02001788 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001789 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Borislav Petkovf73850a2008-04-27 15:38:33 +02001791 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001794 * Ensure that the number we got makes sense; limit it within
1795 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001797 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1798 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02001800 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001801 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001802 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1803 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01001804 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001805 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001807 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
Russell King4031bbe2006-01-06 11:41:00 +00001810static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001814 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001815 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 ide_unregister_region(tape->disk);
1817
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001818 mutex_lock(&idetape_ref_mutex);
1819 put_device(&tape->dev);
1820 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001823static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001825 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 ide_drive_t *drive = tape->drive;
1827 struct gendisk *g = tape->disk;
1828
Tejun Heo963da552009-04-19 08:46:02 +09001829 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001830
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001831 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001833 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001834 device_destroy(idetape_sysfs_class,
1835 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 idetape_devs[tape->minor] = NULL;
1837 g->private_data = NULL;
1838 put_disk(g);
1839 kfree(tape);
1840}
1841
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001842#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843static int proc_idetape_read_name
1844 (char *page, char **start, off_t off, int count, int *eof, void *data)
1845{
1846 ide_drive_t *drive = (ide_drive_t *) data;
1847 idetape_tape_t *tape = drive->driver_data;
1848 char *out = page;
1849 int len;
1850
1851 len = sprintf(out, "%s\n", tape->name);
1852 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1853}
1854
1855static ide_proc_entry_t idetape_proc[] = {
1856 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1857 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1858 { NULL, 0, NULL, NULL }
1859};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001860
1861static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1862{
1863 return idetape_proc;
1864}
1865
1866static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1867{
1868 return idetape_settings;
1869}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870#endif
1871
Russell King4031bbe2006-01-06 11:41:00 +00001872static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001874static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001875 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001876 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001877 .name = "ide-tape",
1878 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001879 },
Russell King4031bbe2006-01-06 11:41:00 +00001880 .probe = ide_tape_probe,
1881 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001884#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001885 .proc_entries = ide_tape_proc_entries,
1886 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001887#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888};
1889
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001890/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001891static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 .owner = THIS_MODULE,
1893 .read = idetape_chrdev_read,
1894 .write = idetape_chrdev_write,
1895 .ioctl = idetape_chrdev_ioctl,
1896 .open = idetape_chrdev_open,
1897 .release = idetape_chrdev_release,
1898};
1899
Al Viroa4600f82008-03-02 10:27:58 -05001900static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Borislav Petkov9d01e4c2009-06-08 22:03:03 +02001902 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk, false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001904 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return -ENXIO;
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return 0;
1908}
1909
Al Viroa4600f82008-03-02 10:27:58 -05001910static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001912 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 return 0;
1916}
1917
Al Viroa4600f82008-03-02 10:27:58 -05001918static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 unsigned int cmd, unsigned long arg)
1920{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001921 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04001923 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (err == -EINVAL)
1925 err = idetape_blkdev_ioctl(drive, cmd, arg);
1926 return err;
1927}
1928
1929static struct block_device_operations idetape_block_ops = {
1930 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05001931 .open = idetape_open,
1932 .release = idetape_release,
1933 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934};
1935
Russell King4031bbe2006-01-06 11:41:00 +00001936static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 idetape_tape_t *tape;
1939 struct gendisk *g;
1940 int minor;
1941
1942 if (!strstr("ide-tape", drive->driver_req))
1943 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (drive->media != ide_tape)
1946 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001947
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001948 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1949 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001950 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1951 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 goto failed;
1953 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001954 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001956 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1957 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto failed;
1959 }
1960
1961 g = alloc_disk(1 << PARTN_BITS);
1962 if (!g)
1963 goto out_free_tape;
1964
1965 ide_init_disk(g, drive);
1966
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001967 tape->dev.parent = &drive->gendev;
1968 tape->dev.release = ide_tape_release;
1969 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1970
1971 if (device_register(&tape->dev))
1972 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 tape->drive = drive;
1975 tape->driver = &idetape_driver;
1976 tape->disk = g;
1977
1978 g->private_data = &tape->driver;
1979
1980 drive->driver_data = tape;
1981
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001982 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 for (minor = 0; idetape_devs[minor]; minor++)
1984 ;
1985 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001986 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 idetape_setup(drive, tape, minor);
1989
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07001990 device_create(idetape_sysfs_class, &drive->gendev,
1991 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1992 device_create(idetape_sysfs_class, &drive->gendev,
1993 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
1994 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 g->fops = &idetape_block_ops;
1997 ide_register_region(g);
1998
1999 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002000
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002001out_free_disk:
2002 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003out_free_tape:
2004 kfree(tape);
2005failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002006 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002009static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002011 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002012 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 unregister_chrdev(IDETAPE_MAJOR, "ht");
2014}
2015
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002016static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Will Dysond5dee802005-09-16 02:55:07 -07002018 int error = 1;
2019 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2020 if (IS_ERR(idetape_sysfs_class)) {
2021 idetape_sysfs_class = NULL;
2022 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2023 error = -EBUSY;
2024 goto out;
2025 }
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002028 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2029 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002030 error = -EBUSY;
2031 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
Will Dysond5dee802005-09-16 02:55:07 -07002033
2034 error = driver_register(&idetape_driver.gen_driver);
2035 if (error)
2036 goto out_free_driver;
2037
2038 return 0;
2039
2040out_free_driver:
2041 driver_unregister(&idetape_driver.gen_driver);
2042out_free_class:
2043 class_destroy(idetape_sysfs_class);
2044out:
2045 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
2047
Kay Sievers263756e2005-12-12 18:03:44 +01002048MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049module_init(idetape_init);
2050module_exit(idetape_exit);
2051MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002052MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2053MODULE_LICENSE("GPL");