blob: ead2734bc7106d0f8996abfc1fbe42700aadae49 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010041#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010044#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtio.h>
49
Borislav Petkov8004a8c2008-02-06 02:57:51 +010050enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010059};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010092 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010094 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010097 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100115
116/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
Borislav Petkov54abf372008-02-06 02:57:52 +0100127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Borislav Petkov03056b92008-04-18 00:46:26 +0200134/* Tape door status */
135#define DOOR_UNLOCKED 0
136#define DOOR_LOCKED 1
137#define DOOR_EXPLICITLY_LOCKED 2
138
139/* Some defines for the SPACE command */
140#define IDETAPE_SPACE_OVER_FILEMARK 1
141#define IDETAPE_SPACE_TO_EOD 3
142
143/* Some defines for the LOAD UNLOAD command */
144#define IDETAPE_LU_LOAD_MASK 1
145#define IDETAPE_LU_RETENSION_MASK 2
146#define IDETAPE_LU_EOT_MASK 4
147
Borislav Petkov03056b92008-04-18 00:46:26 +0200148/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
149#define IDETAPE_BLOCK_DESCRIPTOR 0
150#define IDETAPE_CAPABILITIES_PAGE 0x2a
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100153 * Most of our global data which we need to save even as we leave the driver due
154 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100157 ide_drive_t *drive;
158 struct ide_driver *driver;
159 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100160 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200162 /* used by REQ_IDETAPE_{READ,WRITE} requests */
163 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100166 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100168 * While polling for DSC we use postponed_rq to postpone the current
169 * request so that ide.c will be able to service pending requests on the
170 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200171 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173 struct request *postponed_rq;
174 /* The time in which we started polling for DSC */
175 unsigned long dsc_polling_start;
176 /* Timer used to poll for dsc */
177 struct timer_list dsc_timer;
178 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100179 unsigned long best_dsc_rw_freq;
180 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned long dsc_timeout;
182
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100183 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 u8 partition;
185 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100186 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100188 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 u8 sense_key, asc, ascq;
190
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100191 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned int minor;
193 /* device name */
194 char name[4];
195 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100196 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Borislav Petkov54bb2072008-02-06 02:57:52 +0100198 /* tape block size, usually 512 or 1024 bytes */
199 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100203 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100206 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100208 * At most, there is only one ide-tape originated data transfer request
209 * in the device request queue. This allows ide.c to easily service
210 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200212
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100213 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200214 int buffer_size;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900215 /* Staging buffer of buffer_size bytes */
216 void *buf;
217 /* The read/write cursor */
218 void *cur;
219 /* The number of valid bytes in buf */
220 size_t valid;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100221
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100222 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned long avg_time;
224 int avg_size;
225 int avg_speed;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* the door is currently locked */
228 int door_locked;
229 /* the tape hardware is write protected */
230 char drv_write_prot;
231 /* the tape is write protected (hardware or opened as read-only) */
232 char write_prot;
233
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100234 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235} idetape_tape_t;
236
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800237static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Will Dysond5dee802005-09-16 02:55:07 -0700239static struct class *idetape_sysfs_class;
240
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100241static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
244{
245 struct ide_tape_obj *tape = NULL;
246
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800247 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200248 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200249 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200250 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200251 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200252 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100253 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200254 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800255 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return tape;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void ide_tape_put(struct ide_tape_obj *tape)
260{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200261 ide_drive_t *drive = tape->drive;
262
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800263 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100264 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200265 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800266 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100270 * The variables below are used for the character device interface. Additional
271 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100273static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
276{
277 struct ide_tape_obj *tape = NULL;
278
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800279 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 tape = idetape_devs[i];
281 if (tape)
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100282 get_device(&tape->dev);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800283 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return tape;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100288 * called on each failed packet command retry to analyze the request sense. We
289 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Borislav Petkovae3a8382009-05-02 10:58:17 +0200291static void idetape_analyze_error(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100294 struct ide_atapi_pc *pc = drive->failed_pc;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200295 struct request *rq = drive->hwif->rq;
Borislav Petkovae3a8382009-05-02 10:58:17 +0200296 u8 *sense = bio_data(rq->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Borislav Petkov1b5db432008-02-02 19:56:48 +0100298 tape->sense_key = sense[2] & 0xF;
299 tape->asc = sense[12];
300 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100301
302 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
303 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Borislav Petkov077e6db2009-05-01 21:21:02 +0200305 /* correct remaining bytes to transfer */
Tejun Heoe998f302009-04-19 08:46:02 +0900306 if (pc->flags & PC_FLAG_DMA_ERROR)
Borislav Petkov077e6db2009-05-01 21:21:02 +0200307 rq->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /*
310 * If error was the result of a zero-length read or write command,
311 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
312 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
313 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100314 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100315 /* length == 0 */
316 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
317 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* don't report an error, everything's ok */
319 pc->error = 0;
320 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200321 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100324 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100325 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200326 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100328 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100329 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
330 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100331 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200332 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100335 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100336 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100337 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200338 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200340 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkov077e6db2009-05-01 21:21:02 +0200341 (blk_rq_bytes(rq) - rq->resid_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
343 }
344}
345
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200346static void ide_tape_handle_dsc(ide_drive_t *);
347
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100348static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200351 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100352 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200353 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100354 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100356 debug_log(DBG_PROCS, "Enter %s\n", __func__);
357
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200358 if (dsc)
359 ide_tape_handle_dsc(drive);
360
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100361 if (drive->failed_pc == pc)
362 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200363
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200364 if (pc->c[0] == REQUEST_SENSE) {
365 if (uptodate)
Borislav Petkovae3a8382009-05-02 10:58:17 +0200366 idetape_analyze_error(drive);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200367 else
368 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
369 "itself - Aborting request!\n");
370 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov077e6db2009-05-01 21:21:02 +0200371 unsigned int blocks =
372 (blk_rq_bytes(rq) - rq->resid_len) / tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200373
374 tape->avg_size += blocks * tape->blk_size;
375
376 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
377 tape->avg_speed = tape->avg_size * HZ /
378 (jiffies - tape->avg_time) / 1024;
379 tape->avg_size = 0;
380 tape->avg_time = jiffies;
381 }
382
383 tape->first_frame += blocks;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200384
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100385 if (pc->error) {
386 uptodate = 0;
387 err = pc->error;
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100390 rq->errors = err;
391
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100392 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100396 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100397 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100399static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 idetape_tape_t *tape = drive->driver_data;
402
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100403 debug_log(DBG_PROCS, "Enter %s\n", __func__);
404
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100405 tape->postponed_rq = drive->hwif->rq;
406
Borislav Petkov54bb2072008-02-06 02:57:52 +0100407 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200410static void ide_tape_handle_dsc(ide_drive_t *drive)
411{
412 idetape_tape_t *tape = drive->driver_data;
413
414 /* Media access command */
415 tape->dsc_polling_start = jiffies;
416 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
417 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
418 /* Allow ide.c to handle other requests */
419 idetape_postpone_request(drive);
420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100423 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200425 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100426 * until we finish handling it. Each packet command is associated with a
427 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100429 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100431 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200432 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200434 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100435 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100437 * 3. ATAPI Tape media access commands have immediate status with a delayed
438 * process. In case of a successful initiation of a media access packet command,
439 * the DSC bit will be set when the actual execution of the command is finished.
440 * Since the tape drive will not issue an interrupt, we have to poll for this
441 * event. In this case, we define the request as "low priority request" by
442 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
443 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100445 * ide.c will then give higher priority to requests which originate from the
446 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100448 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100450 * 5. In case an error was found, we queue a request sense packet command in
451 * front of the request queue and retry the operation up to
452 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100454 * 6. In case no error was found, or we decided to give up and not to retry
455 * again, the callback function will be called and then we will handle the next
456 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100459static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
460 struct ide_cmd *cmd,
461 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200464 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100466 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
467 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200470 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200473 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heoeb6a61b2009-04-19 08:46:02 +0900474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100476 * We will "abort" retrying a packet command in case legitimate
477 * error code was received (crossing a filemark, or end of the
478 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200480 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100481 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 tape->sense_key == 2 && tape->asc == 4 &&
483 (tape->ascq == 1 || tape->ascq == 8))) {
484 printk(KERN_ERR "ide-tape: %s: I/O error, "
485 "pc = %2x, key = %2x, "
486 "asc = %2x, ascq = %2x\n",
487 tape->name, pc->c[0],
488 tape->sense_key, tape->asc,
489 tape->ascq);
490 }
491 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100492 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
Tejun Heoeb6a61b2009-04-19 08:46:02 +0900494
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100495 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200496 drive->pc_callback(drive, 0);
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200497 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200498 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100500 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100504 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100507/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200508static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200510 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100511 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100513 /* DBD = 1 - Don't return block descriptors */
514 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 pc->c[2] = page_code;
516 /*
517 * Changed pc->c[3] to 0 (255 will at best return unused info).
518 *
519 * For SCSI this byte is defined as subpage instead of high byte
520 * of length and some IDE drives seem to interpret it this way
521 * and return an error when 255 is used.
522 */
523 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100524 /* We will just discard data in that case */
525 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200527 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200529 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200531 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100534static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200536 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200538 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100539 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200541 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100542
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200543 if (stat & ATA_DSC) {
544 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100546 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 printk(KERN_ERR "ide-tape: %s: I/O error, ",
548 tape->name);
549 /* Retry operation */
Borislav Petkov06875322009-04-19 07:00:42 +0900550 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200551 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100555 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100556 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200558 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return ide_stopped;
560}
561
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200562static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200563 struct ide_atapi_pc *pc, struct request *rq,
564 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Borislav Petkov10c0b342009-05-01 20:29:53 +0200566 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
Borislav Petkov0014c752008-07-23 19:56:00 +0200567
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200568 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100569 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +0200571 pc->buf = NULL;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200572 pc->buf_size = blk_rq_bytes(rq);
573 if (pc->buf_size == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200574 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Tejun Heo6cf3d542009-04-19 08:46:02 +0900576 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200577 pc->c[0] = READ_6;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900578 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200579 pc->c[0] = WRITE_6;
580 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200581 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200582
583 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586static ide_startstop_t idetape_do_request(ide_drive_t *drive,
587 struct request *rq, sector_t block)
588{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200589 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200591 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100593 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100594 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Tejun Heo9780e2d2009-05-07 22:24:40 +0900596 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %u\n"
597 (unsigned long long)blk_rq_pos(rq), blk_rq_sectors(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Borislav Petkov06875322009-04-19 07:00:42 +0900599 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100600 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200602 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100603 if (blk_fs_request(rq) == 0 && rq->errors == 0)
604 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100605 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return ide_stopped;
607 }
608
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100609 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100610 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
611 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200612 goto out;
613 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (postponed_rq != NULL)
616 if (rq != postponed_rq) {
617 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
618 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100619 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100620 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100621 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return ide_stopped;
623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 tape->postponed_rq = NULL;
626
627 /*
628 * If the tape is still busy, postpone our request and service
629 * the other device meanwhile.
630 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200631 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200633 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
634 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200635 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200637 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200638 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200639 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200642 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200643 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (postponed_rq == NULL) {
645 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100646 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
648 } else if (time_after(jiffies, tape->dsc_timeout)) {
649 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
650 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200651 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 idetape_media_access_finished(drive);
653 return ide_stopped;
654 } else {
655 return ide_do_reset(drive);
656 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100657 } else if (time_after(jiffies,
658 tape->dsc_polling_start +
659 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100660 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 idetape_postpone_request(drive);
662 return ide_stopped;
663 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200664 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200665 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200666 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 goto out;
668 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200669 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200670 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200671 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 goto out;
673 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200674 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoac0b0112009-04-19 07:00:42 +0900675 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200676 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
677 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto out;
679 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200680 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 idetape_media_access_finished(drive);
682 return ide_stopped;
683 }
684 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200685
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200686out:
Borislav Petkov06875322009-04-19 07:00:42 +0900687 /* prepare sense request for this command */
688 ide_prep_sense(drive, rq);
689
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100690 memset(&cmd, 0, sizeof(cmd));
691
692 if (rq_data_dir(rq))
693 cmd.tf_flags |= IDE_TFLAG_WRITE;
694
695 cmd.rq = rq;
696
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200697 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Tejun Heo02e7cf82009-04-19 07:00:42 +0900698 ide_map_sg(drive, &cmd);
699
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100700 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100704 * Write a filemark if write_filemark=1. Flush the device buffers without
705 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100707static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200708 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200710 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100711 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200713 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
717{
718 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200719 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int load_attempted = 0;
721
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100722 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200723 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 timeout += jiffies;
725 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200726 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return 0;
728 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100729 || (tape->asc == 0x3A)) {
730 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (load_attempted)
732 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200733 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 load_attempted = 1;
735 /* not about to be ready */
736 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
737 (tape->ascq == 1 || tape->ascq == 8)))
738 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700739 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741 return -EIO;
742}
743
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100744static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200746 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200747 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int rc;
749
750 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200751 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100752 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return rc;
754 idetape_wait_ready(drive, 60 * 5 * HZ);
755 return 0;
756}
757
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200758static int ide_tape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200761 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200762 u8 buf[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100764 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200766 /* prep cmd */
767 ide_init_pc(&pc);
768 pc.c[0] = READ_POSITION;
769 pc.req_xfer = 20;
770
771 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return -1;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200773
774 if (!pc.error) {
775 debug_log(DBG_SENSE, "BOP - %s\n",
776 (buf[0] & 0x80) ? "Yes" : "No");
777 debug_log(DBG_SENSE, "EOP - %s\n",
778 (buf[0] & 0x40) ? "Yes" : "No");
779
780 if (buf[0] & 0x4) {
781 printk(KERN_INFO "ide-tape: Block location is unknown"
782 "to the tape\n");
783 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
784 return -1;
785 } else {
786 debug_log(DBG_SENSE, "Block Location - %u\n",
787 be32_to_cpup((__be32 *)&buf[4]));
788
789 tape->partition = buf[1];
790 tape->first_frame = be32_to_cpup((__be32 *)&buf[4]);
791 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
792 }
793 }
794
795 return tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
Borislav Petkovd236d742008-04-18 00:46:27 +0200798static void idetape_create_locate_cmd(ide_drive_t *drive,
799 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100800 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200802 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100803 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100805 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200807 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200810static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Borislav Petkov54abf372008-02-06 02:57:52 +0100814 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200815 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200817 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Tejun Heo6cf3d542009-04-19 08:46:02 +0900818 tape->valid = 0;
819 if (tape->buf != NULL) {
820 kfree(tape->buf);
821 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823
Borislav Petkov54abf372008-02-06 02:57:52 +0100824 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100828 * Position the tape to the requested block using the LOCATE packet command.
829 * A READ POSITION command is then issued to check where we are positioned. Like
830 * all higher level operations, we queue the commands at the tail of the request
831 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100833static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
834 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200837 struct gendisk *disk = tape->disk;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200838 int ret;
Borislav Petkovd236d742008-04-18 00:46:27 +0200839 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Borislav Petkov54abf372008-02-06 02:57:52 +0100841 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200842 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 idetape_wait_ready(drive, 60 * 5 * HZ);
844 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200845 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
846 if (ret)
847 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200849 ret = ide_tape_read_position(drive);
850 if (ret < 0)
851 return ret;
852 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200855static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100856 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 int seek, position;
860
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200861 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (restore_position) {
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200863 position = ide_tape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200864 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100866 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200867 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return;
869 }
870 }
871}
872
873/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100874 * Generate a read/write request for the block device interface and wait for it
875 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 */
Tejun Heo71294cf2009-04-19 08:46:03 +0900877static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200880 struct request *rq;
Tejun Heoe998f302009-04-19 08:46:02 +0900881 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100883 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
Tejun Heoe998f302009-04-19 08:46:02 +0900884 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Tejun Heo71294cf2009-04-19 08:46:03 +0900885 BUG_ON(size < 0 || size % tape->blk_size);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100886
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200887 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
888 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200889 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200890 rq->rq_disk = tape->disk;
Tejun Heoe998f302009-04-19 08:46:02 +0900891
892 if (size) {
Tejun Heo6cf3d542009-04-19 08:46:02 +0900893 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Tejun Heoe998f302009-04-19 08:46:02 +0900894 __GFP_WAIT);
895 if (ret)
896 goto out_put;
897 }
898
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200899 blk_execute_rq(drive->queue, tape->disk, rq, 0);
900
Tejun Heo6cf3d542009-04-19 08:46:02 +0900901 /* calculate the number of transferred bytes and update buffer state */
Tejun Heoc3a4d782009-05-07 22:24:37 +0900902 size -= rq->resid_len;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900903 tape->cur = tape->buf;
Tejun Heoe998f302009-04-19 08:46:02 +0900904 if (cmd == REQ_IDETAPE_READ)
Tejun Heo6cf3d542009-04-19 08:46:02 +0900905 tape->valid = size;
906 else
907 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Tejun Heoe998f302009-04-19 08:46:02 +0900909 ret = size;
910 if (rq->errors == IDE_DRV_ERROR_GENERAL)
911 ret = -EIO;
Tejun Heoe998f302009-04-19 08:46:02 +0900912out_put:
913 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200914 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Borislav Petkovd236d742008-04-18 00:46:27 +0200917static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200919 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100920 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100921 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200922 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Borislav Petkovd236d742008-04-18 00:46:27 +0200925static void idetape_create_rewind_cmd(ide_drive_t *drive,
926 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200928 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100929 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200930 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931}
932
Borislav Petkovd236d742008-04-18 00:46:27 +0200933static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200935 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100936 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200938 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Borislav Petkovd236d742008-04-18 00:46:27 +0200941static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200943 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100944 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100945 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200947 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
Borislav Petkovd9df9372008-04-27 15:38:34 +0200950static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100953
Borislav Petkov54abf372008-02-06 02:57:52 +0100954 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200955 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100956 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return;
958 }
Tejun Heo6cf3d542009-04-19 08:46:02 +0900959 if (tape->buf) {
Tejun Heo71294cf2009-04-19 08:46:03 +0900960 size_t aligned = roundup(tape->valid, tape->blk_size);
961
962 memset(tape->cur, 0, aligned - tape->valid);
Tejun Heo4344d072009-04-19 08:46:03 +0900963 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
Tejun Heo6cf3d542009-04-19 08:46:02 +0900964 kfree(tape->buf);
965 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100967 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Tejun Heo3596b662009-04-19 08:46:02 +0900970static int idetape_init_rw(ide_drive_t *drive, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 idetape_tape_t *tape = drive->driver_data;
Tejun Heo3596b662009-04-19 08:46:02 +0900973 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Tejun Heo3596b662009-04-19 08:46:02 +0900975 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Tejun Heo3596b662009-04-19 08:46:02 +0900977 if (tape->chrdev_dir == dir)
978 return 0;
979
980 if (tape->chrdev_dir == IDETAPE_DIR_READ)
981 ide_tape_discard_merge_buffer(drive, 1);
982 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
983 ide_tape_flush_merge_buffer(drive);
984 idetape_flush_tape_buffers(drive);
985 }
986
987 if (tape->buf || tape->valid) {
988 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
989 tape->valid = 0;
990 }
991
992 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
993 if (!tape->buf)
994 return -ENOMEM;
995 tape->chrdev_dir = dir;
996 tape->cur = tape->buf;
997
998 /*
999 * Issue a 0 rw command to ensure that DSC handshake is
1000 * switched from completion mode to buffer available mode. No
1001 * point in issuing this if DSC overlap isn't supported, some
1002 * drives (Seagate STT3401A) will return an error.
1003 */
1004 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1005 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
1006 : REQ_IDETAPE_WRITE;
1007
1008 rc = idetape_queue_rw_tail(drive, cmd, 0);
1009 if (rc < 0) {
1010 kfree(tape->buf);
1011 tape->buf = NULL;
1012 tape->chrdev_dir = IDETAPE_DIR_NONE;
1013 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return 0;
1018}
1019
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001020static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 idetape_tape_t *tape = drive->driver_data;
Tejun Heo6cf3d542009-04-19 08:46:02 +09001023
1024 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 while (bcount) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001027 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Tejun Heo71294cf2009-04-19 08:46:03 +09001029 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032}
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001035 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1036 * currently support only one partition.
1037 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001038static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001040 struct ide_tape_obj *tape = drive->driver_data;
1041 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001042 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001043 int ret;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001044
1045 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 idetape_create_rewind_cmd(drive, &pc);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001048 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1049 if (ret)
1050 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001052 ret = ide_tape_read_position(drive);
1053 if (ret < 0)
1054 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return 0;
1056}
1057
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001058/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001059static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1060 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
1062 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 void __user *argp = (void __user *)arg;
1064
Borislav Petkovd59823f2008-02-02 19:56:51 +01001065 struct idetape_config {
1066 int dsc_rw_frequency;
1067 int dsc_media_access_frequency;
1068 int nr_stages;
1069 } config;
1070
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001071 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001074 case 0x0340:
1075 if (copy_from_user(&config, argp, sizeof(config)))
1076 return -EFAULT;
1077 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001078 break;
1079 case 0x0350:
1080 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001081 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001082 if (copy_to_user(argp, &config, sizeof(config)))
1083 return -EFAULT;
1084 break;
1085 default:
1086 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 return 0;
1089}
1090
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001091static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1092 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
1094 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001095 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001096 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001097 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001098 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 if (mt_count == 0)
1101 return 0;
1102 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001103 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001105 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107
Borislav Petkov54abf372008-02-06 02:57:52 +01001108 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001109 tape->valid = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001110 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001112 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001116 case MTFSF:
1117 case MTBSF:
1118 idetape_create_space_cmd(&pc, mt_count - count,
1119 IDETAPE_SPACE_OVER_FILEMARK);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001120 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001121 case MTFSFM:
1122 case MTBSFM:
1123 if (!sprev)
1124 return -EIO;
1125 retval = idetape_space_over_filemarks(drive, MTFSF,
1126 mt_count - count);
1127 if (retval)
1128 return retval;
1129 count = (MTBSFM == mt_op ? 1 : -1);
1130 return idetape_space_over_filemarks(drive, MTFSF, count);
1131 default:
1132 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1133 mt_op);
1134 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136}
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001139 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001141 * The tape is optimized to maximize throughput when it is transferring an
1142 * integral number of the "continuous transfer limit", which is a parameter of
1143 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001145 * As of version 1.3 of the driver, the character device provides an abstract
1146 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1147 * same backup/restore procedure is supported. The driver will internally
1148 * convert the requests to the recommended transfer unit, so that an unmatch
1149 * between the user's block size to the recommended size will only result in a
1150 * (slightly) increased driver overhead, but will no longer hit performance.
1151 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001153static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1154 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001156 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 ide_drive_t *drive = tape->drive;
Tejun Heo4344d072009-04-19 08:46:03 +09001158 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001159 ssize_t ret = 0;
Tejun Heo4344d072009-04-19 08:46:03 +09001160 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001162 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Borislav Petkov54abf372008-02-06 02:57:52 +01001164 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001165 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001166 if (count > tape->blk_size &&
1167 (count % tape->blk_size) == 0)
1168 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
Tejun Heo4344d072009-04-19 08:46:03 +09001170
Tejun Heo3596b662009-04-19 08:46:02 +09001171 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001172 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return rc;
Tejun Heo4344d072009-04-19 08:46:03 +09001174
1175 while (done < count) {
1176 size_t todo;
1177
1178 /* refill if staging buffer is empty */
1179 if (!tape->valid) {
1180 /* If we are at a filemark, nothing more to read */
1181 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1182 break;
1183 /* read */
1184 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1185 tape->buffer_size) <= 0)
1186 break;
1187 }
1188
1189 /* copy out */
1190 todo = min_t(size_t, count - done, tape->valid);
1191 if (copy_to_user(buf + done, tape->cur, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001192 ret = -EFAULT;
Tejun Heo4344d072009-04-19 08:46:03 +09001193
1194 tape->cur += todo;
1195 tape->valid -= todo;
1196 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Tejun Heo4344d072009-04-19 08:46:03 +09001198
1199 if (!done && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001200 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 idetape_space_over_filemarks(drive, MTFSF, 1);
1203 return 0;
1204 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001205
Tejun Heo4344d072009-04-19 08:46:03 +09001206 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001209static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 size_t count, loff_t *ppos)
1211{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001212 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 ide_drive_t *drive = tape->drive;
Tejun Heo4344d072009-04-19 08:46:03 +09001214 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001215 ssize_t ret = 0;
Tejun Heo3596b662009-04-19 08:46:02 +09001216 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /* The drive is write protected. */
1219 if (tape->write_prot)
1220 return -EACCES;
1221
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001222 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 /* Initialize write operation */
Tejun Heo3596b662009-04-19 08:46:02 +09001225 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1226 if (rc < 0)
1227 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Tejun Heo4344d072009-04-19 08:46:03 +09001229 while (done < count) {
1230 size_t todo;
1231
1232 /* flush if staging buffer is full */
1233 if (tape->valid == tape->buffer_size &&
1234 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1235 tape->buffer_size) <= 0)
1236 return rc;
1237
1238 /* copy in */
1239 todo = min_t(size_t, count - done,
1240 tape->buffer_size - tape->valid);
1241 if (copy_from_user(tape->cur, buf + done, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001242 ret = -EFAULT;
Tejun Heo4344d072009-04-19 08:46:03 +09001243
1244 tape->cur += todo;
1245 tape->valid += todo;
1246 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Tejun Heo4344d072009-04-19 08:46:03 +09001248
1249 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001252static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001254 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001255 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 /* Write a filemark */
1258 idetape_create_write_filemark_cmd(drive, &pc, 1);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001259 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1261 return -EIO;
1262 }
1263 return 0;
1264}
1265
1266/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001267 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1268 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001270 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1271 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001272 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001274 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001276 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1277 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001279static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001282 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001283 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001284 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001286 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1287 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001290 case MTFSF:
1291 case MTFSFM:
1292 case MTBSF:
1293 case MTBSFM:
1294 if (!mt_count)
1295 return 0;
1296 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1297 default:
1298 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001302 case MTWEOF:
1303 if (tape->write_prot)
1304 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001305 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001306 for (i = 0; i < mt_count; i++) {
1307 retval = idetape_write_filemark(drive);
1308 if (retval)
1309 return retval;
1310 }
1311 return 0;
1312 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001313 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001314 if (idetape_rewind_tape(drive))
1315 return -EIO;
1316 return 0;
1317 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001318 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001319 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001320 case MTUNLOAD:
1321 case MTOFFL:
1322 /*
1323 * If door is locked, attempt to unlock before
1324 * attempting to eject.
1325 */
1326 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001327 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001328 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001329 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001330 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001331 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001332 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001333 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001334 return retval;
1335 case MTNOP:
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_flush_tape_buffers(drive);
1338 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001339 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001340 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001341 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001342 case MTEOM:
1343 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001344 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001345 case MTERASE:
1346 (void)idetape_rewind_tape(drive);
1347 idetape_create_erase_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001348 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001349 case MTSETBLK:
1350 if (mt_count) {
1351 if (mt_count < tape->blk_size ||
1352 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001354 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001355 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001356 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001357 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001358 return 0;
1359 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001360 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001361 return idetape_position_tape(drive,
1362 mt_count * tape->user_bs_factor, tape->partition, 0);
1363 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001364 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001365 return idetape_position_tape(drive, 0, mt_count, 0);
1366 case MTFSR:
1367 case MTBSR:
1368 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001369 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001370 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001372 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1373 return 0;
1374 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001375 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001376 if (retval)
1377 return retval;
1378 tape->door_locked = DOOR_UNLOCKED;
1379 return 0;
1380 default:
1381 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1382 mt_op);
1383 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385}
1386
1387/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001388 * Our character device ioctls. General mtio.h magnetic io commands are
1389 * supported here, and not in the corresponding block interface. Our own
1390 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001392static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1393 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001395 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 ide_drive_t *drive = tape->drive;
1397 struct mtop mtop;
1398 struct mtget mtget;
1399 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001400 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 void __user *argp = (void __user *)arg;
1402
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001403 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Borislav Petkov54abf372008-02-06 02:57:52 +01001405 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001406 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 idetape_flush_tape_buffers(drive);
1408 }
1409 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001410 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001411 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001412 position = ide_tape_read_position(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001413 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EIO;
1415 }
1416 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001417 case MTIOCTOP:
1418 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1419 return -EFAULT;
1420 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1421 case MTIOCGET:
1422 memset(&mtget, 0, sizeof(struct mtget));
1423 mtget.mt_type = MT_ISSCSI2;
1424 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1425 mtget.mt_dsreg =
1426 ((tape->blk_size * tape->user_bs_factor)
1427 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001428
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001429 if (tape->drv_write_prot)
1430 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1431
1432 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1433 return -EFAULT;
1434 return 0;
1435 case MTIOCPOS:
1436 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1437 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1438 return -EFAULT;
1439 return 0;
1440 default:
1441 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001442 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001443 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445}
1446
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001447/*
1448 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1449 * block size with the reported value.
1450 */
1451static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1452{
1453 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001454 struct ide_atapi_pc pc;
Borislav Petkov837272b2009-05-04 09:48:57 +02001455 u8 buf[12];
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001456
1457 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Borislav Petkov837272b2009-05-04 09:48:57 +02001458 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001459 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001460 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001461 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1462 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001463 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001464 }
1465 return;
1466 }
Borislav Petkov837272b2009-05-04 09:48:57 +02001467 tape->blk_size = (buf[4 + 5] << 16) +
1468 (buf[4 + 6] << 8) +
1469 buf[4 + 7];
1470 tape->drv_write_prot = (buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001473static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1476 ide_drive_t *drive;
1477 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int retval;
1479
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001480 if (i >= MAX_HWIFS * MAX_DRIVES)
1481 return -ENXIO;
1482
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001483 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001484 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001485 if (!tape) {
1486 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001487 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001488 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001489
1490 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 /*
1493 * We really want to do nonseekable_open(inode, filp); here, but some
1494 * versions of tar incorrectly call lseek on tapes and bail out if that
1495 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1496 */
1497 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 drive = tape->drive;
1500
1501 filp->private_data = tape;
1502
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001503 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 retval = -EBUSY;
1505 goto out_put_tape;
1506 }
1507
1508 retval = idetape_wait_ready(drive, 60 * HZ);
1509 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001510 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1512 goto out_put_tape;
1513 }
1514
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001515 ide_tape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001516 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 (void)idetape_rewind_tape(drive);
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001520 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 /* Set write protect flag if device is opened as read-only. */
1523 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1524 tape->write_prot = 1;
1525 else
1526 tape->write_prot = tape->drv_write_prot;
1527
1528 /* Make sure drive isn't write protected if user wants to write. */
1529 if (tape->write_prot) {
1530 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1531 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001532 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 retval = -EROFS;
1534 goto out_put_tape;
1535 }
1536 }
1537
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001538 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001539 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001540 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001541 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1542 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001545 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return 0;
1547
1548out_put_tape:
1549 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001550 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return retval;
1552}
1553
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001554static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
1556 idetape_tape_t *tape = drive->driver_data;
1557
Borislav Petkovd9df9372008-04-27 15:38:34 +02001558 ide_tape_flush_merge_buffer(drive);
Tejun Heo6cf3d542009-04-19 08:46:02 +09001559 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1560 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001561 idetape_pad_zeros(drive, tape->blk_size *
1562 (tape->user_bs_factor - 1));
Tejun Heo6cf3d542009-04-19 08:46:02 +09001563 kfree(tape->buf);
1564 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 idetape_write_filemark(drive);
1567 idetape_flush_tape_buffers(drive);
1568 idetape_flush_tape_buffers(drive);
1569}
1570
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001571static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001573 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 unsigned int minor = iminor(inode);
1576
1577 lock_kernel();
1578 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001579
1580 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Borislav Petkov54abf372008-02-06 02:57:52 +01001582 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001584 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001586 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001588
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001589 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01001591 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001593 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001594 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
1596 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001597 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 ide_tape_put(tape);
1599 unlock_kernel();
1600 return 0;
1601}
1602
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001603static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001606 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001607 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001608 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001611 pc.buf_size = sizeof(pc_buf);
1612
Borislav Petkovb13345f2009-05-02 10:26:12 +02001613 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001614 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1615 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return;
1617 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001618 memcpy(vendor_id, &pc_buf[8], 8);
1619 memcpy(product_id, &pc_buf[16], 16);
1620 memcpy(fw_rev, &pc_buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001621
Borislav Petkov801bd322008-09-27 19:32:17 +02001622 ide_fixstring(vendor_id, 8, 0);
1623 ide_fixstring(product_id, 16, 0);
1624 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001625
Borislav Petkov801bd322008-09-27 19:32:17 +02001626 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001627 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
1630/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001631 * Ask the tape about its various parameters. In particular, we will adjust our
1632 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001634static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001637 struct ide_atapi_pc pc;
Borislav Petkovb13345f2009-05-02 10:26:12 +02001638 u8 buf[24], *caps;
Borislav Petkovb6422012008-02-02 19:56:49 +01001639 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001642 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001643 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1644 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001645 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001646 put_unaligned(52, (u16 *)&tape->caps[12]);
1647 put_unaligned(540, (u16 *)&tape->caps[14]);
1648 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return;
1650 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001651 caps = buf + 4 + buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Borislav Petkovb6422012008-02-02 19:56:49 +01001653 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001654 speed = be16_to_cpup((__be16 *)&caps[14]);
1655 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001657 *(u16 *)&caps[8] = max_speed;
1658 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1659 *(u16 *)&caps[14] = speed;
1660 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001661
1662 if (!speed) {
1663 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1664 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001665 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001667 if (!max_speed) {
1668 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1669 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001670 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672
Borislav Petkovb6422012008-02-02 19:56:49 +01001673 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001674
1675 /* device lacks locking support according to capabilities page */
1676 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001677 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001678
Borislav Petkovb6422012008-02-02 19:56:49 +01001679 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001680 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001681 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001682 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001685#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001686#define ide_tape_devset_get(name, field) \
1687static int get_##name(ide_drive_t *drive) \
1688{ \
1689 idetape_tape_t *tape = drive->driver_data; \
1690 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001692
1693#define ide_tape_devset_set(name, field) \
1694static int set_##name(ide_drive_t *drive, int arg) \
1695{ \
1696 idetape_tape_t *tape = drive->driver_data; \
1697 tape->field = arg; \
1698 return 0; \
1699}
1700
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001701#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001702ide_tape_devset_get(_name, _field) \
1703ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001704IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001705
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001706#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001707ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001708IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001709
1710static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1711static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1712static int divf_buffer(ide_drive_t *drive) { return 2; }
1713static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1714
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001715ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001716
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001717ide_tape_devset_rw_field(debug_mask, debug_mask);
1718ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001719
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001720ide_tape_devset_r_field(avg_speed, avg_speed);
1721ide_tape_devset_r_field(speed, caps[14]);
1722ide_tape_devset_r_field(buffer, caps[16]);
1723ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001724
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001725static const struct ide_proc_devset idetape_settings[] = {
1726 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1727 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1728 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1729 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1730 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1731 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1732 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1733 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01001734 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001735};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001739 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001741 * 1. Initialize our various state variables.
1742 * 2. Ask the tape for its capabilities.
1743 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1744 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001746 * Note that at this point ide.c already assigned us an irq, so that we can
1747 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001749static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Borislav Petkov83042b22008-04-27 15:38:27 +02001751 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001753 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001754 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02001756 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001757
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001758 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1759
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001760 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1761 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1762 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001763 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001767 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001768 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 tape->minor = minor;
1771 tape->name[0] = 'h';
1772 tape->name[1] = 't';
1773 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001774 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 idetape_get_inquiry_results(drive);
1777 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001778 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001780 tape->buffer_size = *ctl * tape->blk_size;
1781 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001783 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001784 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001786 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Borislav Petkov83042b22008-04-27 15:38:27 +02001788 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001789 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Borislav Petkovf73850a2008-04-27 15:38:33 +02001791 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001794 * Ensure that the number we got makes sense; limit it within
1795 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001797 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1798 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02001800 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001801 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001802 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1803 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01001804 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001805 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001807 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
Russell King4031bbe2006-01-06 11:41:00 +00001810static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001814 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001815 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 ide_unregister_region(tape->disk);
1817
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001818 mutex_lock(&idetape_ref_mutex);
1819 put_device(&tape->dev);
1820 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001823static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001825 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 ide_drive_t *drive = tape->drive;
1827 struct gendisk *g = tape->disk;
1828
Tejun Heo6cf3d542009-04-19 08:46:02 +09001829 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001830
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001831 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001833 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001834 device_destroy(idetape_sysfs_class,
1835 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 idetape_devs[tape->minor] = NULL;
1837 g->private_data = NULL;
1838 put_disk(g);
1839 kfree(tape);
1840}
1841
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001842#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843static int proc_idetape_read_name
1844 (char *page, char **start, off_t off, int count, int *eof, void *data)
1845{
1846 ide_drive_t *drive = (ide_drive_t *) data;
1847 idetape_tape_t *tape = drive->driver_data;
1848 char *out = page;
1849 int len;
1850
1851 len = sprintf(out, "%s\n", tape->name);
1852 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1853}
1854
1855static ide_proc_entry_t idetape_proc[] = {
1856 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1857 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1858 { NULL, 0, NULL, NULL }
1859};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001860
1861static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1862{
1863 return idetape_proc;
1864}
1865
1866static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1867{
1868 return idetape_settings;
1869}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870#endif
1871
Russell King4031bbe2006-01-06 11:41:00 +00001872static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001874static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001875 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001876 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001877 .name = "ide-tape",
1878 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001879 },
Russell King4031bbe2006-01-06 11:41:00 +00001880 .probe = ide_tape_probe,
1881 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001884#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001885 .proc_entries = ide_tape_proc_entries,
1886 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001887#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888};
1889
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001890/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001891static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 .owner = THIS_MODULE,
1893 .read = idetape_chrdev_read,
1894 .write = idetape_chrdev_write,
1895 .ioctl = idetape_chrdev_ioctl,
1896 .open = idetape_chrdev_open,
1897 .release = idetape_chrdev_release,
1898};
1899
Al Viroa4600f82008-03-02 10:27:58 -05001900static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Al Viroa4600f82008-03-02 10:27:58 -05001902 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001904 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return -ENXIO;
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return 0;
1908}
1909
Al Viroa4600f82008-03-02 10:27:58 -05001910static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001912 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 return 0;
1916}
1917
Al Viroa4600f82008-03-02 10:27:58 -05001918static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 unsigned int cmd, unsigned long arg)
1920{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001921 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04001923 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (err == -EINVAL)
1925 err = idetape_blkdev_ioctl(drive, cmd, arg);
1926 return err;
1927}
1928
1929static struct block_device_operations idetape_block_ops = {
1930 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05001931 .open = idetape_open,
1932 .release = idetape_release,
1933 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934};
1935
Russell King4031bbe2006-01-06 11:41:00 +00001936static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 idetape_tape_t *tape;
1939 struct gendisk *g;
1940 int minor;
1941
1942 if (!strstr("ide-tape", drive->driver_req))
1943 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (drive->media != ide_tape)
1946 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001947
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001948 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1949 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001950 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1951 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 goto failed;
1953 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001954 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001956 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1957 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto failed;
1959 }
1960
1961 g = alloc_disk(1 << PARTN_BITS);
1962 if (!g)
1963 goto out_free_tape;
1964
1965 ide_init_disk(g, drive);
1966
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001967 tape->dev.parent = &drive->gendev;
1968 tape->dev.release = ide_tape_release;
1969 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1970
1971 if (device_register(&tape->dev))
1972 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 tape->drive = drive;
1975 tape->driver = &idetape_driver;
1976 tape->disk = g;
1977
1978 g->private_data = &tape->driver;
1979
1980 drive->driver_data = tape;
1981
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001982 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 for (minor = 0; idetape_devs[minor]; minor++)
1984 ;
1985 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001986 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 idetape_setup(drive, tape, minor);
1989
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07001990 device_create(idetape_sysfs_class, &drive->gendev,
1991 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1992 device_create(idetape_sysfs_class, &drive->gendev,
1993 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
1994 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 g->fops = &idetape_block_ops;
1997 ide_register_region(g);
1998
1999 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002000
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002001out_free_disk:
2002 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003out_free_tape:
2004 kfree(tape);
2005failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002006 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002009static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002011 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002012 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 unregister_chrdev(IDETAPE_MAJOR, "ht");
2014}
2015
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002016static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Will Dysond5dee802005-09-16 02:55:07 -07002018 int error = 1;
2019 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2020 if (IS_ERR(idetape_sysfs_class)) {
2021 idetape_sysfs_class = NULL;
2022 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2023 error = -EBUSY;
2024 goto out;
2025 }
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002028 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2029 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002030 error = -EBUSY;
2031 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
Will Dysond5dee802005-09-16 02:55:07 -07002033
2034 error = driver_register(&idetape_driver.gen_driver);
2035 if (error)
2036 goto out_free_driver;
2037
2038 return 0;
2039
2040out_free_driver:
2041 driver_unregister(&idetape_driver.gen_driver);
2042out_free_class:
2043 class_destroy(idetape_sysfs_class);
2044out:
2045 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
2047
Kay Sievers263756e2005-12-12 18:03:44 +01002048MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049module_init(idetape_init);
2050module_exit(idetape_exit);
2051MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002052MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2053MODULE_LICENSE("GPL");