blob: 6a0e625421675a26eba76632ec8127d84eacfbeb [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>
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070034#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/slab.h>
36#include <linux/pci.h>
37#include <linux/ide.h>
38#include <linux/smp_lock.h>
39#include <linux/completion.h>
40#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080041#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010042#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010045#include <linux/irq.h>
46#include <linux/uaccess.h>
47#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/mtio.h>
50
Borislav Petkov8004a8c2008-02-06 02:57:51 +010051/* define to see debug info */
Borislav Petkove972d702009-07-17 23:55:16 +000052#undef IDETAPE_DEBUG_LOG
Borislav Petkov8004a8c2008-02-06 02:57:51 +010053
Borislav Petkove972d702009-07-17 23:55:16 +000054#ifdef IDETAPE_DEBUG_LOG
55#define ide_debug_log(lvl, fmt, args...) __ide_debug_log(lvl, fmt, ## args)
Borislav Petkov8004a8c2008-02-06 02:57:51 +010056#else
Borislav Petkove972d702009-07-17 23:55:16 +000057#define ide_debug_log(lvl, fmt, args...) do {} while (0)
Borislav Petkov8004a8c2008-02-06 02:57:51 +010058#endif
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010062 * After each failed packet command we issue a request sense command and retry
63 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010065 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
67#define IDETAPE_MAX_PC_RETRIES 3
68
69/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010070 * The following parameter is used to select the point in the internal tape fifo
71 * in which we will start to refill the buffer. Decreasing the following
72 * parameter will improve the system's latency and interactive response, while
73 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010075#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010078 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010080 * Polling for DSC (a single bit in the status register) is a very important
81 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010083 * 1. Before a read/write packet command, to ensure that we can transfer data
84 * from/to the tape's data buffers, without causing an actual media access.
85 * In case the tape is not ready yet, we take out our request from the device
86 * request queue, so that ide.c could service requests from the other device
87 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089 * 2. After the successful initialization of a "media access packet command",
90 * which is a command that can take a long time to complete (the interval can
91 * range from several seconds to even an hour). Again, we postpone our request
92 * in the middle to free the bus for the other device. The polling frequency
93 * here should be lower than the read/write frequency since those media access
94 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
95 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
96 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010098 * We also set a timeout for the timer, in case something goes wrong. The
99 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100101
102/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
104#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
105#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
106#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
107#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
108#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
109#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
110
111/*************************** End of tunable parameters ***********************/
112
Borislav Petkov54abf372008-02-06 02:57:52 +0100113/* tape directions */
114enum {
115 IDETAPE_DIR_NONE = (1 << 0),
116 IDETAPE_DIR_READ = (1 << 1),
117 IDETAPE_DIR_WRITE = (1 << 2),
118};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Borislav Petkov03056b92008-04-18 00:46:26 +0200120/* Tape door status */
121#define DOOR_UNLOCKED 0
122#define DOOR_LOCKED 1
123#define DOOR_EXPLICITLY_LOCKED 2
124
125/* Some defines for the SPACE command */
126#define IDETAPE_SPACE_OVER_FILEMARK 1
127#define IDETAPE_SPACE_TO_EOD 3
128
129/* Some defines for the LOAD UNLOAD command */
130#define IDETAPE_LU_LOAD_MASK 1
131#define IDETAPE_LU_RETENSION_MASK 2
132#define IDETAPE_LU_EOT_MASK 4
133
Borislav Petkov03056b92008-04-18 00:46:26 +0200134/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
135#define IDETAPE_BLOCK_DESCRIPTOR 0
136#define IDETAPE_CAPABILITIES_PAGE 0x2a
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100139 * Most of our global data which we need to save even as we leave the driver due
140 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100143 ide_drive_t *drive;
144 struct ide_driver *driver;
145 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100146 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200148 /* used by REQ_IDETAPE_{READ,WRITE} requests */
149 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100152 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100154 * While polling for DSC we use postponed_rq to postpone the current
155 * request so that ide.c will be able to service pending requests on the
156 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200157 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 */
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700159 bool postponed_rq;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /* The time in which we started polling for DSC */
162 unsigned long dsc_polling_start;
163 /* Timer used to poll for dsc */
164 struct timer_list dsc_timer;
165 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100166 unsigned long best_dsc_rw_freq;
167 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 unsigned long dsc_timeout;
169
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100170 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 u8 partition;
172 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100173 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100175 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 u8 sense_key, asc, ascq;
177
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100178 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 unsigned int minor;
180 /* device name */
181 char name[4];
182 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100183 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Borislav Petkov54bb2072008-02-06 02:57:52 +0100185 /* tape block size, usually 512 or 1024 bytes */
186 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100190 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100193 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100195 * At most, there is only one ide-tape originated data transfer request
196 * in the device request queue. This allows ide.c to easily service
197 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200199
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100200 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200201 int buffer_size;
Tejun Heo963da552009-04-19 08:46:02 +0900202 /* Staging buffer of buffer_size bytes */
203 void *buf;
204 /* The read/write cursor */
205 void *cur;
206 /* The number of valid bytes in buf */
207 size_t valid;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100208
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100209 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 unsigned long avg_time;
211 int avg_size;
212 int avg_speed;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* the door is currently locked */
215 int door_locked;
216 /* the tape hardware is write protected */
217 char drv_write_prot;
218 /* the tape is write protected (hardware or opened as read-only) */
219 char write_prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220} idetape_tape_t;
221
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800222static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Borislav Petkovcbba2fa2009-10-11 00:25:19 +0000224static DEFINE_MUTEX(idetape_chrdev_mutex);
225
Will Dysond5dee802005-09-16 02:55:07 -0700226static struct class *idetape_sysfs_class;
227
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100228static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200229
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200230static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
231
232static struct ide_tape_obj *ide_tape_get(struct gendisk *disk, bool cdev,
233 unsigned int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 struct ide_tape_obj *tape = NULL;
236
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800237 mutex_lock(&idetape_ref_mutex);
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200238
239 if (cdev)
240 tape = idetape_devs[i];
241 else
242 tape = ide_drv_g(disk, ide_tape_obj);
243
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200244 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200245 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200246 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200247 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100248 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200249 }
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200250
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800251 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return tape;
253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255static void ide_tape_put(struct ide_tape_obj *tape)
256{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200257 ide_drive_t *drive = tape->drive;
258
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800259 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100260 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200261 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800262 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100266 * called on each failed packet command retry to analyze the request sense. We
267 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
Borislav Petkovae3a8382009-05-02 10:58:17 +0200269static void idetape_analyze_error(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100272 struct ide_atapi_pc *pc = drive->failed_pc;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200273 struct request *rq = drive->hwif->rq;
Borislav Petkovae3a8382009-05-02 10:58:17 +0200274 u8 *sense = bio_data(rq->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Borislav Petkov1b5db432008-02-02 19:56:48 +0100276 tape->sense_key = sense[2] & 0xF;
277 tape->asc = sense[12];
278 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100279
Borislav Petkove972d702009-07-17 23:55:16 +0000280 ide_debug_log(IDE_DBG_FUNC,
281 "cmd: 0x%x, sense key = %x, asc = %x, ascq = %x",
282 rq->cmd[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Borislav Petkov077e6db2009-05-01 21:21:02 +0200284 /* correct remaining bytes to transfer */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900285 if (pc->flags & PC_FLAG_DMA_ERROR)
Borislav Petkov077e6db2009-05-01 21:21:02 +0200286 rq->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /*
289 * If error was the result of a zero-length read or write command,
290 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
291 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
292 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100293 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100294 /* length == 0 */
295 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
296 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* don't report an error, everything's ok */
298 pc->error = 0;
299 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200300 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100303 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100304 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200305 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100307 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100308 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
309 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100310 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200311 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100314 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100315 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100316 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200317 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200319 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkov077e6db2009-05-01 21:21:02 +0200320 (blk_rq_bytes(rq) - rq->resid_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
322 }
323}
324
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200325static void ide_tape_handle_dsc(ide_drive_t *);
326
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100327static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200330 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100331 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200332 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100333 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Borislav Petkove972d702009-07-17 23:55:16 +0000335 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x, dsc: %d, err: %d", rq->cmd[0],
336 dsc, err);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100337
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200338 if (dsc)
339 ide_tape_handle_dsc(drive);
340
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100341 if (drive->failed_pc == pc)
342 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200343
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200344 if (pc->c[0] == REQUEST_SENSE) {
345 if (uptodate)
Borislav Petkovae3a8382009-05-02 10:58:17 +0200346 idetape_analyze_error(drive);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200347 else
348 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
349 "itself - Aborting request!\n");
350 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov077e6db2009-05-01 21:21:02 +0200351 unsigned int blocks =
352 (blk_rq_bytes(rq) - rq->resid_len) / tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200353
354 tape->avg_size += blocks * tape->blk_size;
355
356 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
357 tape->avg_speed = tape->avg_size * HZ /
358 (jiffies - tape->avg_time) / 1024;
359 tape->avg_size = 0;
360 tape->avg_time = jiffies;
361 }
362
363 tape->first_frame += blocks;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200364
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100365 if (pc->error) {
366 uptodate = 0;
367 err = pc->error;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100370 rq->errors = err;
371
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100372 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100376 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100377 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700379static void ide_tape_stall_queue(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 idetape_tape_t *tape = drive->driver_data;
382
Borislav Petkove972d702009-07-17 23:55:16 +0000383 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x, dsc_poll_freq: %lu",
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700384 drive->hwif->rq->cmd[0], tape->dsc_poll_freq);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100385
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700386 tape->postponed_rq = true;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100387
Borislav Petkov54bb2072008-02-06 02:57:52 +0100388 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200391static void ide_tape_handle_dsc(ide_drive_t *drive)
392{
393 idetape_tape_t *tape = drive->driver_data;
394
395 /* Media access command */
396 tape->dsc_polling_start = jiffies;
397 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
398 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
399 /* Allow ide.c to handle other requests */
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700400 ide_tape_stall_queue(drive);
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100404 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200406 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100407 * until we finish handling it. Each packet command is associated with a
408 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100410 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100412 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200413 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200415 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100416 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100418 * 3. ATAPI Tape media access commands have immediate status with a delayed
419 * process. In case of a successful initiation of a media access packet command,
420 * the DSC bit will be set when the actual execution of the command is finished.
421 * Since the tape drive will not issue an interrupt, we have to poll for this
422 * event. In this case, we define the request as "low priority request" by
423 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
424 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100426 * ide.c will then give higher priority to requests which originate from the
427 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100429 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100431 * 5. In case an error was found, we queue a request sense packet command in
432 * front of the request queue and retry the operation up to
433 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100435 * 6. In case no error was found, or we decided to give up and not to retry
436 * again, the callback function will be called and then we will handle the next
437 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100440static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
441 struct ide_cmd *cmd,
442 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200445 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100447 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
448 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200451 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200454 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heob3071d12009-04-19 08:46:02 +0900455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100457 * We will "abort" retrying a packet command in case legitimate
458 * error code was received (crossing a filemark, or end of the
459 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200461 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100462 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 tape->sense_key == 2 && tape->asc == 4 &&
464 (tape->ascq == 1 || tape->ascq == 8))) {
465 printk(KERN_ERR "ide-tape: %s: I/O error, "
466 "pc = %2x, key = %2x, "
467 "asc = %2x, ascq = %2x\n",
468 tape->name, pc->c[0],
469 tape->sense_key, tape->asc,
470 tape->ascq);
471 }
472 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100473 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Tejun Heob3071d12009-04-19 08:46:02 +0900475
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100476 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200477 drive->pc_callback(drive, 0);
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200478 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200479 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
Borislav Petkove972d702009-07-17 23:55:16 +0000481 ide_debug_log(IDE_DBG_SENSE, "retry #%d, cmd: 0x%02x", pc->retries,
482 pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100486 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100489/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200490static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200492 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100493 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100495 /* DBD = 1 - Don't return block descriptors */
496 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 pc->c[2] = page_code;
498 /*
499 * Changed pc->c[3] to 0 (255 will at best return unused info).
500 *
501 * For SCSI this byte is defined as subpage instead of high byte
502 * of length and some IDE drives seem to interpret it this way
503 * and return an error when 255 is used.
504 */
505 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100506 /* We will just discard data in that case */
507 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200509 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200511 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200513 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100516static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200518 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200520 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100521 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200523 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100524
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200525 if (stat & ATA_DSC) {
526 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100528 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 printk(KERN_ERR "ide-tape: %s: I/O error, ",
530 tape->name);
531 /* Retry operation */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900532 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200533 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100537 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100538 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200540 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return ide_stopped;
542}
543
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200544static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200545 struct ide_atapi_pc *pc, struct request *rq,
546 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Borislav Petkov10c0b342009-05-01 20:29:53 +0200548 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
Borislav Petkov0014c752008-07-23 19:56:00 +0200549
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200550 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100551 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 pc->c[1] = 1;
Borislav Petkov19f52a72009-05-04 09:53:03 +0200553
554 if (blk_rq_bytes(rq) == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200555 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Tejun Heo963da552009-04-19 08:46:02 +0900557 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200558 pc->c[0] = READ_6;
Tejun Heo963da552009-04-19 08:46:02 +0900559 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200560 pc->c[0] = WRITE_6;
561 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200562 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200563
564 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567static ide_startstop_t idetape_do_request(ide_drive_t *drive,
568 struct request *rq, sector_t block)
569{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200570 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200572 struct ide_atapi_pc *pc = NULL;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100573 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100574 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Borislav Petkove972d702009-07-17 23:55:16 +0000576 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, sector: %llu, nr_sectors: %u",
577 rq->cmd[0], (unsigned long long)blk_rq_pos(rq),
578 blk_rq_sectors(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Bartlomiej Zolnierkiewicz2c7eaa42009-06-15 22:16:10 +0200580 BUG_ON(!(blk_special_request(rq) || blk_sense_request(rq)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100582 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100583 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
584 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200585 goto out;
586 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /*
589 * If the tape is still busy, postpone our request and service
590 * the other device meanwhile.
591 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200592 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200594 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
595 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkov626542c2009-06-07 15:37:05 +0200596 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200598 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkov626542c2009-06-07 15:37:05 +0200599 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200600 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602
Borislav Petkov626542c2009-06-07 15:37:05 +0200603 if (!(drive->atapi_flags & IDE_AFLAG_IGNORE_DSC) &&
604 !(stat & ATA_DSC)) {
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700605 if (!tape->postponed_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100607 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
609 } else if (time_after(jiffies, tape->dsc_timeout)) {
610 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
611 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200612 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 idetape_media_access_finished(drive);
614 return ide_stopped;
615 } else {
616 return ide_do_reset(drive);
617 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100618 } else if (time_after(jiffies,
619 tape->dsc_polling_start +
620 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100621 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700622 ide_tape_stall_queue(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return ide_stopped;
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700624 } else {
Borislav Petkov626542c2009-06-07 15:37:05 +0200625 drive->atapi_flags &= ~IDE_AFLAG_IGNORE_DSC;
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700626 tape->postponed_rq = false;
627 }
Borislav Petkov626542c2009-06-07 15:37:05 +0200628
Borislav Petkov83dd5732008-07-23 19:56:00 +0200629 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200630 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200631 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 goto out;
633 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200634 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200635 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200636 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 goto out;
638 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200639 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoc267cc12009-04-19 07:00:42 +0900640 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200641 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
642 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto out;
644 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200645 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 idetape_media_access_finished(drive);
647 return ide_stopped;
648 }
649 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200650
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200651out:
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900652 /* prepare sense request for this command */
653 ide_prep_sense(drive, rq);
654
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100655 memset(&cmd, 0, sizeof(cmd));
656
657 if (rq_data_dir(rq))
658 cmd.tf_flags |= IDE_TFLAG_WRITE;
659
660 cmd.rq = rq;
661
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200662 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Tejun Heo5c4be572009-04-19 07:00:42 +0900663 ide_map_sg(drive, &cmd);
664
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100665 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100669 * Write a filemark if write_filemark=1. Flush the device buffers without
670 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100672static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200673 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200675 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100676 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200678 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
682{
683 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200684 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 int load_attempted = 0;
686
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100687 /* Wait for the tape to become ready */
Borislav Petkov49d80782009-06-07 15:37:06 +0200688 set_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 timeout += jiffies;
690 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200691 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return 0;
693 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100694 || (tape->asc == 0x3A)) {
695 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (load_attempted)
697 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200698 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 load_attempted = 1;
700 /* not about to be ready */
701 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
702 (tape->ascq == 1 || tape->ascq == 8)))
703 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700704 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706 return -EIO;
707}
708
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100709static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200711 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200712 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 int rc;
714
715 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200716 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100717 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return rc;
719 idetape_wait_ready(drive, 60 * 5 * HZ);
720 return 0;
721}
722
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200723static int ide_tape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200726 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200727 u8 buf[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Borislav Petkove972d702009-07-17 23:55:16 +0000729 ide_debug_log(IDE_DBG_FUNC, "enter");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200731 /* prep cmd */
732 ide_init_pc(&pc);
733 pc.c[0] = READ_POSITION;
734 pc.req_xfer = 20;
735
736 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return -1;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200738
739 if (!pc.error) {
Borislav Petkove972d702009-07-17 23:55:16 +0000740 ide_debug_log(IDE_DBG_FUNC, "BOP - %s",
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200741 (buf[0] & 0x80) ? "Yes" : "No");
Borislav Petkove972d702009-07-17 23:55:16 +0000742 ide_debug_log(IDE_DBG_FUNC, "EOP - %s",
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200743 (buf[0] & 0x40) ? "Yes" : "No");
744
745 if (buf[0] & 0x4) {
746 printk(KERN_INFO "ide-tape: Block location is unknown"
747 "to the tape\n");
Bartlomiej Zolnierkiewicz8dcce402009-06-13 12:00:54 +0200748 clear_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
749 &drive->atapi_flags);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200750 return -1;
751 } else {
Borislav Petkove972d702009-07-17 23:55:16 +0000752 ide_debug_log(IDE_DBG_FUNC, "Block Location: %u",
753 be32_to_cpup((__be32 *)&buf[4]));
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200754
755 tape->partition = buf[1];
756 tape->first_frame = be32_to_cpup((__be32 *)&buf[4]);
Bartlomiej Zolnierkiewicz8dcce402009-06-13 12:00:54 +0200757 set_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
758 &drive->atapi_flags);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200759 }
760 }
761
762 return tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Borislav Petkovd236d742008-04-18 00:46:27 +0200765static void idetape_create_locate_cmd(ide_drive_t *drive,
766 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100767 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200769 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100770 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100772 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200774 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200777static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Borislav Petkov54abf372008-02-06 02:57:52 +0100781 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200782 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Borislav Petkov49d80782009-06-07 15:37:06 +0200784 clear_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags);
Tejun Heo963da552009-04-19 08:46:02 +0900785 tape->valid = 0;
786 if (tape->buf != NULL) {
787 kfree(tape->buf);
788 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790
Borislav Petkov54abf372008-02-06 02:57:52 +0100791 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
794/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100795 * Position the tape to the requested block using the LOCATE packet command.
796 * A READ POSITION command is then issued to check where we are positioned. Like
797 * all higher level operations, we queue the commands at the tail of the request
798 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100800static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
801 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200804 struct gendisk *disk = tape->disk;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200805 int ret;
Borislav Petkovd236d742008-04-18 00:46:27 +0200806 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Borislav Petkov54abf372008-02-06 02:57:52 +0100808 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200809 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 idetape_wait_ready(drive, 60 * 5 * HZ);
811 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200812 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
813 if (ret)
814 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200816 ret = ide_tape_read_position(drive);
817 if (ret < 0)
818 return ret;
819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200822static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100823 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int seek, position;
827
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200828 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (restore_position) {
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200830 position = ide_tape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200831 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100833 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200834 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return;
836 }
837 }
838}
839
840/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100841 * Generate a read/write request for the block device interface and wait for it
842 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900844static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200847 struct request *rq;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900848 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Borislav Petkove972d702009-07-17 23:55:16 +0000850 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x, size: %d", cmd, size);
851
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900852 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900853 BUG_ON(size < 0 || size % tape->blk_size);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100854
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200855 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
856 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200857 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200858 rq->rq_disk = tape->disk;
Linus Torvaldsc9059592009-06-11 10:52:27 -0700859 rq->__sector = tape->first_frame;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900860
861 if (size) {
Tejun Heo963da552009-04-19 08:46:02 +0900862 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900863 __GFP_WAIT);
864 if (ret)
865 goto out_put;
866 }
867
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200868 blk_execute_rq(drive->queue, tape->disk, rq, 0);
869
Tejun Heo963da552009-04-19 08:46:02 +0900870 /* calculate the number of transferred bytes and update buffer state */
Tejun Heoc3a4d782009-05-07 22:24:37 +0900871 size -= rq->resid_len;
Tejun Heo963da552009-04-19 08:46:02 +0900872 tape->cur = tape->buf;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900873 if (cmd == REQ_IDETAPE_READ)
Tejun Heo963da552009-04-19 08:46:02 +0900874 tape->valid = size;
875 else
876 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900878 ret = size;
879 if (rq->errors == IDE_DRV_ERROR_GENERAL)
880 ret = -EIO;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900881out_put:
882 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200883 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Borislav Petkovd236d742008-04-18 00:46:27 +0200886static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200888 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100889 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100890 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200891 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
Borislav Petkovd236d742008-04-18 00:46:27 +0200894static void idetape_create_rewind_cmd(ide_drive_t *drive,
895 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200897 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100898 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200899 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Borislav Petkovd236d742008-04-18 00:46:27 +0200902static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200904 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100905 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200907 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Borislav Petkovd236d742008-04-18 00:46:27 +0200910static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200912 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100913 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100914 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200916 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Borislav Petkovd9df9372008-04-27 15:38:34 +0200919static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100922
Borislav Petkov54abf372008-02-06 02:57:52 +0100923 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200924 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100925 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return;
927 }
Tejun Heo963da552009-04-19 08:46:02 +0900928 if (tape->buf) {
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900929 size_t aligned = roundup(tape->valid, tape->blk_size);
930
931 memset(tape->cur, 0, aligned - tape->valid);
Tejun Heo07bd9682009-04-19 08:46:03 +0900932 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
Tejun Heo963da552009-04-19 08:46:02 +0900933 kfree(tape->buf);
934 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100936 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Tejun Heo88f1b942009-04-19 08:46:02 +0900939static int idetape_init_rw(ide_drive_t *drive, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
941 idetape_tape_t *tape = drive->driver_data;
Tejun Heo88f1b942009-04-19 08:46:02 +0900942 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Tejun Heo88f1b942009-04-19 08:46:02 +0900944 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Tejun Heo88f1b942009-04-19 08:46:02 +0900946 if (tape->chrdev_dir == dir)
947 return 0;
948
949 if (tape->chrdev_dir == IDETAPE_DIR_READ)
950 ide_tape_discard_merge_buffer(drive, 1);
951 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
952 ide_tape_flush_merge_buffer(drive);
953 idetape_flush_tape_buffers(drive);
954 }
955
956 if (tape->buf || tape->valid) {
957 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
958 tape->valid = 0;
959 }
960
961 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
962 if (!tape->buf)
963 return -ENOMEM;
964 tape->chrdev_dir = dir;
965 tape->cur = tape->buf;
966
967 /*
968 * Issue a 0 rw command to ensure that DSC handshake is
969 * switched from completion mode to buffer available mode. No
970 * point in issuing this if DSC overlap isn't supported, some
971 * drives (Seagate STT3401A) will return an error.
972 */
973 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
974 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
975 : REQ_IDETAPE_WRITE;
976
977 rc = idetape_queue_rw_tail(drive, cmd, 0);
978 if (rc < 0) {
979 kfree(tape->buf);
980 tape->buf = NULL;
981 tape->chrdev_dir = IDETAPE_DIR_NONE;
982 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +0200985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return 0;
987}
988
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100989static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
991 idetape_tape_t *tape = drive->driver_data;
Tejun Heo963da552009-04-19 08:46:02 +0900992
993 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 while (bcount) {
Tejun Heo963da552009-04-19 08:46:02 +0900996 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900998 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001}
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001004 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1005 * currently support only one partition.
1006 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001007static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001009 struct ide_tape_obj *tape = drive->driver_data;
1010 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001011 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001012 int ret;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001013
Borislav Petkove972d702009-07-17 23:55:16 +00001014 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 idetape_create_rewind_cmd(drive, &pc);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001017 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1018 if (ret)
1019 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001021 ret = ide_tape_read_position(drive);
1022 if (ret < 0)
1023 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return 0;
1025}
1026
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001027/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001028static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1029 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 void __user *argp = (void __user *)arg;
1033
Borislav Petkovd59823f2008-02-02 19:56:51 +01001034 struct idetape_config {
1035 int dsc_rw_frequency;
1036 int dsc_media_access_frequency;
1037 int nr_stages;
1038 } config;
1039
Borislav Petkove972d702009-07-17 23:55:16 +00001040 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%04x", cmd);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001043 case 0x0340:
1044 if (copy_from_user(&config, argp, sizeof(config)))
1045 return -EFAULT;
1046 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001047 break;
1048 case 0x0350:
Michael Buesch2fc21112009-07-19 09:15:19 +00001049 memset(&config, 0, sizeof(config));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001050 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001051 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001052 if (copy_to_user(argp, &config, sizeof(config)))
1053 return -EFAULT;
1054 break;
1055 default:
1056 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058 return 0;
1059}
1060
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001061static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1062 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001065 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001066 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001067 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001068 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Borislav Petkove972d702009-07-17 23:55:16 +00001070
1071 ide_debug_log(IDE_DBG_FUNC, "mt_op: %d, mt_count: %d", mt_op, mt_count);
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (mt_count == 0)
1074 return 0;
1075 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001076 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001078 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
Borislav Petkov54abf372008-02-06 02:57:52 +01001081 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo963da552009-04-19 08:46:02 +09001082 tape->valid = 0;
Borislav Petkov49d80782009-06-07 15:37:06 +02001083 if (test_and_clear_bit(ilog2(IDE_AFLAG_FILEMARK),
1084 &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001086 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001090 case MTFSF:
1091 case MTBSF:
1092 idetape_create_space_cmd(&pc, mt_count - count,
1093 IDETAPE_SPACE_OVER_FILEMARK);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001094 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001095 case MTFSFM:
1096 case MTBSFM:
1097 if (!sprev)
1098 return -EIO;
1099 retval = idetape_space_over_filemarks(drive, MTFSF,
1100 mt_count - count);
1101 if (retval)
1102 return retval;
1103 count = (MTBSFM == mt_op ? 1 : -1);
1104 return idetape_space_over_filemarks(drive, MTFSF, count);
1105 default:
1106 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1107 mt_op);
1108 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001113 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001115 * The tape is optimized to maximize throughput when it is transferring an
1116 * integral number of the "continuous transfer limit", which is a parameter of
1117 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001119 * As of version 1.3 of the driver, the character device provides an abstract
1120 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1121 * same backup/restore procedure is supported. The driver will internally
1122 * convert the requests to the recommended transfer unit, so that an unmatch
1123 * between the user's block size to the recommended size will only result in a
1124 * (slightly) increased driver overhead, but will no longer hit performance.
1125 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001127static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1128 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001130 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001132 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001133 ssize_t ret = 0;
Tejun Heo07bd9682009-04-19 08:46:03 +09001134 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Borislav Petkove972d702009-07-17 23:55:16 +00001136 ide_debug_log(IDE_DBG_FUNC, "count %Zd", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Borislav Petkov54abf372008-02-06 02:57:52 +01001138 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001139 if (test_bit(ilog2(IDE_AFLAG_DETECT_BS), &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001140 if (count > tape->blk_size &&
1141 (count % tape->blk_size) == 0)
1142 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001144
Tejun Heo88f1b942009-04-19 08:46:02 +09001145 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001146 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return rc;
Tejun Heo07bd9682009-04-19 08:46:03 +09001148
1149 while (done < count) {
1150 size_t todo;
1151
1152 /* refill if staging buffer is empty */
1153 if (!tape->valid) {
1154 /* If we are at a filemark, nothing more to read */
Borislav Petkov49d80782009-06-07 15:37:06 +02001155 if (test_bit(ilog2(IDE_AFLAG_FILEMARK),
1156 &drive->atapi_flags))
Tejun Heo07bd9682009-04-19 08:46:03 +09001157 break;
1158 /* read */
1159 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1160 tape->buffer_size) <= 0)
1161 break;
1162 }
1163
1164 /* copy out */
1165 todo = min_t(size_t, count - done, tape->valid);
1166 if (copy_to_user(buf + done, tape->cur, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001167 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001168
1169 tape->cur += todo;
1170 tape->valid -= todo;
1171 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001173
Borislav Petkov49d80782009-06-07 15:37:06 +02001174 if (!done && test_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 idetape_space_over_filemarks(drive, MTFSF, 1);
1176 return 0;
1177 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001178
Tejun Heo07bd9682009-04-19 08:46:03 +09001179 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001182static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 size_t count, loff_t *ppos)
1184{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001185 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001187 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001188 ssize_t ret = 0;
Tejun Heo88f1b942009-04-19 08:46:02 +09001189 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 /* The drive is write protected. */
1192 if (tape->write_prot)
1193 return -EACCES;
1194
Borislav Petkove972d702009-07-17 23:55:16 +00001195 ide_debug_log(IDE_DBG_FUNC, "count %Zd", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 /* Initialize write operation */
Tejun Heo88f1b942009-04-19 08:46:02 +09001198 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1199 if (rc < 0)
1200 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Tejun Heo07bd9682009-04-19 08:46:03 +09001202 while (done < count) {
1203 size_t todo;
1204
1205 /* flush if staging buffer is full */
1206 if (tape->valid == tape->buffer_size &&
1207 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1208 tape->buffer_size) <= 0)
1209 return rc;
1210
1211 /* copy in */
1212 todo = min_t(size_t, count - done,
1213 tape->buffer_size - tape->valid);
1214 if (copy_from_user(tape->cur, buf + done, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001215 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001216
1217 tape->cur += todo;
1218 tape->valid += todo;
1219 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001221
1222 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001225static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001227 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001228 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 /* Write a filemark */
1231 idetape_create_write_filemark_cmd(drive, &pc, 1);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001232 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1234 return -EIO;
1235 }
1236 return 0;
1237}
1238
1239/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001240 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1241 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001243 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1244 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001245 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001247 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001249 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1250 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001252static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
1254 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001255 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001256 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001257 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Borislav Petkove972d702009-07-17 23:55:16 +00001259 ide_debug_log(IDE_DBG_FUNC, "MTIOCTOP ioctl: mt_op: %d, mt_count: %d",
1260 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001263 case MTFSF:
1264 case MTFSFM:
1265 case MTBSF:
1266 case MTBSFM:
1267 if (!mt_count)
1268 return 0;
1269 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1270 default:
1271 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001275 case MTWEOF:
1276 if (tape->write_prot)
1277 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001278 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001279 for (i = 0; i < mt_count; i++) {
1280 retval = idetape_write_filemark(drive);
1281 if (retval)
1282 return retval;
1283 }
1284 return 0;
1285 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001286 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001287 if (idetape_rewind_tape(drive))
1288 return -EIO;
1289 return 0;
1290 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001291 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001292 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001293 case MTUNLOAD:
1294 case MTOFFL:
1295 /*
1296 * If door is locked, attempt to unlock before
1297 * attempting to eject.
1298 */
1299 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001300 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001301 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001302 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001303 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001304 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001305 if (!retval)
Borislav Petkov49d80782009-06-07 15:37:06 +02001306 clear_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1307 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001308 return retval;
1309 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001310 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001311 return idetape_flush_tape_buffers(drive);
1312 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001313 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001314 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001315 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001316 case MTEOM:
1317 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001318 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001319 case MTERASE:
1320 (void)idetape_rewind_tape(drive);
1321 idetape_create_erase_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001322 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001323 case MTSETBLK:
1324 if (mt_count) {
1325 if (mt_count < tape->blk_size ||
1326 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001328 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkov49d80782009-06-07 15:37:06 +02001329 clear_bit(ilog2(IDE_AFLAG_DETECT_BS),
1330 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001331 } else
Borislav Petkov49d80782009-06-07 15:37:06 +02001332 set_bit(ilog2(IDE_AFLAG_DETECT_BS),
1333 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001334 return 0;
1335 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001336 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001337 return idetape_position_tape(drive,
1338 mt_count * tape->user_bs_factor, tape->partition, 0);
1339 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001340 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001341 return idetape_position_tape(drive, 0, mt_count, 0);
1342 case MTFSR:
1343 case MTBSR:
1344 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001345 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001346 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001348 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1349 return 0;
1350 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001351 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001352 if (retval)
1353 return retval;
1354 tape->door_locked = DOOR_UNLOCKED;
1355 return 0;
1356 default:
1357 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1358 mt_op);
1359 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
1361}
1362
1363/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001364 * Our character device ioctls. General mtio.h magnetic io commands are
1365 * supported here, and not in the corresponding block interface. Our own
1366 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001368static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1369 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001371 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 ide_drive_t *drive = tape->drive;
1373 struct mtop mtop;
1374 struct mtget mtget;
1375 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001376 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 void __user *argp = (void __user *)arg;
1378
Borislav Petkove972d702009-07-17 23:55:16 +00001379 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Borislav Petkov54abf372008-02-06 02:57:52 +01001381 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001382 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 idetape_flush_tape_buffers(drive);
1384 }
1385 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo963da552009-04-19 08:46:02 +09001386 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001387 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001388 position = ide_tape_read_position(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001389 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 return -EIO;
1391 }
1392 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001393 case MTIOCTOP:
1394 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1395 return -EFAULT;
1396 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1397 case MTIOCGET:
1398 memset(&mtget, 0, sizeof(struct mtget));
1399 mtget.mt_type = MT_ISSCSI2;
1400 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1401 mtget.mt_dsreg =
1402 ((tape->blk_size * tape->user_bs_factor)
1403 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001404
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001405 if (tape->drv_write_prot)
1406 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1407
1408 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1409 return -EFAULT;
1410 return 0;
1411 case MTIOCPOS:
1412 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1413 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1414 return -EFAULT;
1415 return 0;
1416 default:
1417 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001418 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001419 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
1421}
1422
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001423/*
1424 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1425 * block size with the reported value.
1426 */
1427static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1428{
1429 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001430 struct ide_atapi_pc pc;
Borislav Petkov837272b2009-05-04 09:48:57 +02001431 u8 buf[12];
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001432
1433 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Borislav Petkov837272b2009-05-04 09:48:57 +02001434 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001435 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001436 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001437 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1438 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001439 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001440 }
1441 return;
1442 }
Borislav Petkov837272b2009-05-04 09:48:57 +02001443 tape->blk_size = (buf[4 + 5] << 16) +
1444 (buf[4 + 6] << 8) +
1445 buf[4 + 7];
1446 tape->drv_write_prot = (buf[2] & 0x80) >> 7;
Borislav Petkove972d702009-07-17 23:55:16 +00001447
1448 ide_debug_log(IDE_DBG_FUNC, "blk_size: %d, write_prot: %d",
1449 tape->blk_size, tape->drv_write_prot);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001450}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001452static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1455 ide_drive_t *drive;
1456 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 int retval;
1458
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001459 if (i >= MAX_HWIFS * MAX_DRIVES)
1460 return -ENXIO;
1461
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001462 mutex_lock(&idetape_chrdev_mutex);
1463
Borislav Petkov9d01e4c2009-06-08 22:03:03 +02001464 tape = ide_tape_get(NULL, true, i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001465 if (!tape) {
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001466 mutex_unlock(&idetape_chrdev_mutex);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001467 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001468 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001469
Borislav Petkove972d702009-07-17 23:55:16 +00001470 drive = tape->drive;
1471 filp->private_data = tape;
1472
1473 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 /*
1476 * We really want to do nonseekable_open(inode, filp); here, but some
1477 * versions of tar incorrectly call lseek on tapes and bail out if that
1478 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1479 */
1480 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Borislav Petkov49d80782009-06-07 15:37:06 +02001483 if (test_and_set_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 retval = -EBUSY;
1485 goto out_put_tape;
1486 }
1487
1488 retval = idetape_wait_ready(drive, 60 * HZ);
1489 if (retval) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001490 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1492 goto out_put_tape;
1493 }
1494
Borislav Petkov79ca7432009-06-15 07:32:04 +02001495 ide_tape_read_position(drive);
Borislav Petkov49d80782009-06-07 15:37:06 +02001496 if (!test_bit(ilog2(IDE_AFLAG_ADDRESS_VALID), &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 (void)idetape_rewind_tape(drive);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001500 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 /* Set write protect flag if device is opened as read-only. */
1503 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1504 tape->write_prot = 1;
1505 else
1506 tape->write_prot = tape->drv_write_prot;
1507
1508 /* Make sure drive isn't write protected if user wants to write. */
1509 if (tape->write_prot) {
1510 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1511 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001512 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 retval = -EROFS;
1514 goto out_put_tape;
1515 }
1516 }
1517
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001518 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001519 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001520 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001521 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1522 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524 }
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001525 mutex_unlock(&idetape_chrdev_mutex);
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return 0;
1528
1529out_put_tape:
1530 ide_tape_put(tape);
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001531
1532 mutex_unlock(&idetape_chrdev_mutex);
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return retval;
1535}
1536
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001537static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 idetape_tape_t *tape = drive->driver_data;
1540
Borislav Petkovd9df9372008-04-27 15:38:34 +02001541 ide_tape_flush_merge_buffer(drive);
Tejun Heo963da552009-04-19 08:46:02 +09001542 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1543 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001544 idetape_pad_zeros(drive, tape->blk_size *
1545 (tape->user_bs_factor - 1));
Tejun Heo963da552009-04-19 08:46:02 +09001546 kfree(tape->buf);
1547 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549 idetape_write_filemark(drive);
1550 idetape_flush_tape_buffers(drive);
1551 idetape_flush_tape_buffers(drive);
1552}
1553
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001554static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001556 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 unsigned int minor = iminor(inode);
1559
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001560 mutex_lock(&idetape_chrdev_mutex);
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001563
Borislav Petkove972d702009-07-17 23:55:16 +00001564 ide_debug_log(IDE_DBG_FUNC, "enter");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Borislav Petkov54abf372008-02-06 02:57:52 +01001566 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001568 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001570 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001572
Borislav Petkov49d80782009-06-07 15:37:06 +02001573 if (minor < 128 && test_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1574 &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 (void) idetape_rewind_tape(drive);
Borislav Petkov49d80782009-06-07 15:37:06 +02001576
Borislav Petkov54abf372008-02-06 02:57:52 +01001577 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001579 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001580 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
1582 }
Borislav Petkov49d80782009-06-07 15:37:06 +02001583 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 ide_tape_put(tape);
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001585
1586 mutex_unlock(&idetape_chrdev_mutex);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return 0;
1589}
1590
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001591static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001594 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001595 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001596 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 idetape_create_inquiry_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001599 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001600 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1601 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return;
1603 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001604 memcpy(vendor_id, &pc_buf[8], 8);
1605 memcpy(product_id, &pc_buf[16], 16);
1606 memcpy(fw_rev, &pc_buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001607
Borislav Petkov801bd322008-09-27 19:32:17 +02001608 ide_fixstring(vendor_id, 8, 0);
1609 ide_fixstring(product_id, 16, 0);
1610 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001611
Borislav Petkov801bd322008-09-27 19:32:17 +02001612 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001613 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
1616/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001617 * Ask the tape about its various parameters. In particular, we will adjust our
1618 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001620static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
1622 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001623 struct ide_atapi_pc pc;
Borislav Petkovb13345f2009-05-02 10:26:12 +02001624 u8 buf[24], *caps;
Borislav Petkovb6422012008-02-02 19:56:49 +01001625 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001628 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001629 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1630 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001631 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001632 put_unaligned(52, (u16 *)&tape->caps[12]);
1633 put_unaligned(540, (u16 *)&tape->caps[14]);
1634 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return;
1636 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001637 caps = buf + 4 + buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Borislav Petkovb6422012008-02-02 19:56:49 +01001639 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001640 speed = be16_to_cpup((__be16 *)&caps[14]);
1641 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001643 *(u16 *)&caps[8] = max_speed;
1644 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1645 *(u16 *)&caps[14] = speed;
1646 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001647
1648 if (!speed) {
1649 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1650 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001651 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001653 if (!max_speed) {
1654 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1655 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001656 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 }
1658
Borislav Petkovb6422012008-02-02 19:56:49 +01001659 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001660
1661 /* device lacks locking support according to capabilities page */
1662 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001663 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001664
Borislav Petkovb6422012008-02-02 19:56:49 +01001665 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001666 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001667 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001668 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669}
1670
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001671#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001672#define ide_tape_devset_get(name, field) \
1673static int get_##name(ide_drive_t *drive) \
1674{ \
1675 idetape_tape_t *tape = drive->driver_data; \
1676 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001678
1679#define ide_tape_devset_set(name, field) \
1680static int set_##name(ide_drive_t *drive, int arg) \
1681{ \
1682 idetape_tape_t *tape = drive->driver_data; \
1683 tape->field = arg; \
1684 return 0; \
1685}
1686
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001687#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001688ide_tape_devset_get(_name, _field) \
1689ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001690IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001691
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001692#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001693ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001694IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001695
1696static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1697static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1698static int divf_buffer(ide_drive_t *drive) { return 2; }
1699static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1700
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001701ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001702
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001703ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001704
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001705ide_tape_devset_r_field(avg_speed, avg_speed);
1706ide_tape_devset_r_field(speed, caps[14]);
1707ide_tape_devset_r_field(buffer, caps[16]);
1708ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001709
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001710static const struct ide_proc_devset idetape_settings[] = {
1711 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1712 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1713 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001714 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1715 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1716 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1717 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01001718 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001719};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001720#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001723 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001725 * 1. Initialize our various state variables.
1726 * 2. Ask the tape for its capabilities.
1727 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1728 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001730 * Note that at this point ide.c already assigned us an irq, so that we can
1731 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001733static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
Borislav Petkov83042b22008-04-27 15:38:27 +02001735 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001737 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001738 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Borislav Petkove972d702009-07-17 23:55:16 +00001740 ide_debug_log(IDE_DBG_FUNC, "minor: %d", minor);
1741
1742 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001743
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001744 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1745
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001746 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1747 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1748 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001749 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001753 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001754 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 tape->minor = minor;
1757 tape->name[0] = 'h';
1758 tape->name[1] = 't';
1759 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001760 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 idetape_get_inquiry_results(drive);
1763 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001764 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001766 tape->buffer_size = *ctl * tape->blk_size;
1767 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001769 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001770 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001772 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Borislav Petkov83042b22008-04-27 15:38:27 +02001774 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001775 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Borislav Petkovf73850a2008-04-27 15:38:33 +02001777 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001780 * Ensure that the number we got makes sense; limit it within
1781 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001783 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1784 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02001786 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001787 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001788 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1789 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01001790 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001791 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001793 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
Russell King4031bbe2006-01-06 11:41:00 +00001796static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
1798 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001800 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001801 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 ide_unregister_region(tape->disk);
1803
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001804 mutex_lock(&idetape_ref_mutex);
1805 put_device(&tape->dev);
1806 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
1808
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001809static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001811 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 ide_drive_t *drive = tape->drive;
1813 struct gendisk *g = tape->disk;
1814
Tejun Heo963da552009-04-19 08:46:02 +09001815 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001816
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001817 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001819 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001820 device_destroy(idetape_sysfs_class,
1821 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 idetape_devs[tape->minor] = NULL;
1823 g->private_data = NULL;
1824 put_disk(g);
1825 kfree(tape);
1826}
1827
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001828#ifdef CONFIG_IDE_PROC_FS
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001829static int idetape_name_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001831 ide_drive_t *drive = (ide_drive_t *) m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001834 seq_printf(m, "%s\n", tape->name);
1835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001838static int idetape_name_proc_open(struct inode *inode, struct file *file)
1839{
1840 return single_open(file, idetape_name_proc_show, PDE(inode)->data);
1841}
1842
1843static const struct file_operations idetape_name_proc_fops = {
1844 .owner = THIS_MODULE,
1845 .open = idetape_name_proc_open,
1846 .read = seq_read,
1847 .llseek = seq_lseek,
1848 .release = single_release,
1849};
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851static ide_proc_entry_t idetape_proc[] = {
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001852 { "capacity", S_IFREG|S_IRUGO, &ide_capacity_proc_fops },
1853 { "name", S_IFREG|S_IRUGO, &idetape_name_proc_fops },
1854 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001856
1857static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1858{
1859 return idetape_proc;
1860}
1861
1862static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1863{
1864 return idetape_settings;
1865}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866#endif
1867
Russell King4031bbe2006-01-06 11:41:00 +00001868static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001870static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001871 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001872 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001873 .name = "ide-tape",
1874 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001875 },
Russell King4031bbe2006-01-06 11:41:00 +00001876 .probe = ide_tape_probe,
1877 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001880#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001881 .proc_entries = ide_tape_proc_entries,
1882 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001883#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884};
1885
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001886/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001887static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 .owner = THIS_MODULE,
1889 .read = idetape_chrdev_read,
1890 .write = idetape_chrdev_write,
1891 .ioctl = idetape_chrdev_ioctl,
1892 .open = idetape_chrdev_open,
1893 .release = idetape_chrdev_release,
1894};
1895
Al Viroa4600f82008-03-02 10:27:58 -05001896static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Borislav Petkov9d01e4c2009-06-08 22:03:03 +02001898 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk, false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001900 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return -ENXIO;
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 return 0;
1904}
1905
Al Viroa4600f82008-03-02 10:27:58 -05001906static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001908 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
1910 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 return 0;
1912}
1913
Al Viroa4600f82008-03-02 10:27:58 -05001914static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 unsigned int cmd, unsigned long arg)
1916{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001917 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04001919 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (err == -EINVAL)
1921 err = idetape_blkdev_ioctl(drive, cmd, arg);
1922 return err;
1923}
1924
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001925static const struct block_device_operations idetape_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05001927 .open = idetape_open,
1928 .release = idetape_release,
1929 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930};
1931
Russell King4031bbe2006-01-06 11:41:00 +00001932static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 idetape_tape_t *tape;
1935 struct gendisk *g;
1936 int minor;
1937
Borislav Petkove972d702009-07-17 23:55:16 +00001938 ide_debug_log(IDE_DBG_FUNC, "enter");
1939
1940 if (!strstr(DRV_NAME, drive->driver_req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (drive->media != ide_tape)
1944 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001945
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001946 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1947 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001948 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1949 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 goto failed;
1951 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001952 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001954 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1955 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 goto failed;
1957 }
1958
1959 g = alloc_disk(1 << PARTN_BITS);
1960 if (!g)
1961 goto out_free_tape;
1962
1963 ide_init_disk(g, drive);
1964
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001965 tape->dev.parent = &drive->gendev;
1966 tape->dev.release = ide_tape_release;
1967 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1968
1969 if (device_register(&tape->dev))
1970 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 tape->drive = drive;
1973 tape->driver = &idetape_driver;
1974 tape->disk = g;
1975
1976 g->private_data = &tape->driver;
1977
1978 drive->driver_data = tape;
1979
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001980 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 for (minor = 0; idetape_devs[minor]; minor++)
1982 ;
1983 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001984 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 idetape_setup(drive, tape, minor);
1987
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07001988 device_create(idetape_sysfs_class, &drive->gendev,
1989 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1990 device_create(idetape_sysfs_class, &drive->gendev,
1991 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
1992 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07001993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 g->fops = &idetape_block_ops;
1995 ide_register_region(g);
1996
1997 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001998
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001999out_free_disk:
2000 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001out_free_tape:
2002 kfree(tape);
2003failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002004 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002007static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002009 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002010 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 unregister_chrdev(IDETAPE_MAJOR, "ht");
2012}
2013
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002014static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
Will Dysond5dee802005-09-16 02:55:07 -07002016 int error = 1;
2017 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2018 if (IS_ERR(idetape_sysfs_class)) {
2019 idetape_sysfs_class = NULL;
2020 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2021 error = -EBUSY;
2022 goto out;
2023 }
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002026 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2027 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002028 error = -EBUSY;
2029 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
Will Dysond5dee802005-09-16 02:55:07 -07002031
2032 error = driver_register(&idetape_driver.gen_driver);
2033 if (error)
2034 goto out_free_driver;
2035
2036 return 0;
2037
2038out_free_driver:
2039 driver_unregister(&idetape_driver.gen_driver);
2040out_free_class:
2041 class_destroy(idetape_sysfs_class);
2042out:
2043 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044}
2045
Kay Sievers263756e2005-12-12 18:03:44 +01002046MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047module_init(idetape_init);
2048module_exit(idetape_exit);
2049MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002050MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2051MODULE_LICENSE("GPL");