blob: 203bbeac182f52a52647f9f324efabfe8e004cd3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010041#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010044#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtio.h>
49
Borislav Petkov8004a8c2008-02-06 02:57:51 +010050enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010059};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010092 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010094 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010097 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100115
116/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
Borislav Petkov54abf372008-02-06 02:57:52 +0100127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Borislav Petkov03056b92008-04-18 00:46:26 +0200134/* Tape door status */
135#define DOOR_UNLOCKED 0
136#define DOOR_LOCKED 1
137#define DOOR_EXPLICITLY_LOCKED 2
138
139/* Some defines for the SPACE command */
140#define IDETAPE_SPACE_OVER_FILEMARK 1
141#define IDETAPE_SPACE_TO_EOD 3
142
143/* Some defines for the LOAD UNLOAD command */
144#define IDETAPE_LU_LOAD_MASK 1
145#define IDETAPE_LU_RETENSION_MASK 2
146#define IDETAPE_LU_EOT_MASK 4
147
Borislav Petkov03056b92008-04-18 00:46:26 +0200148/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
149#define IDETAPE_BLOCK_DESCRIPTOR 0
150#define IDETAPE_CAPABILITIES_PAGE 0x2a
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100153 * Most of our global data which we need to save even as we leave the driver due
154 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100157 ide_drive_t *drive;
158 struct ide_driver *driver;
159 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100160 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200162 /* used by REQ_IDETAPE_{READ,WRITE} requests */
163 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100166 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100168 * While polling for DSC we use postponed_rq to postpone the current
169 * request so that ide.c will be able to service pending requests on the
170 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200171 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173 struct request *postponed_rq;
174 /* The time in which we started polling for DSC */
175 unsigned long dsc_polling_start;
176 /* Timer used to poll for dsc */
177 struct timer_list dsc_timer;
178 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100179 unsigned long best_dsc_rw_freq;
180 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned long dsc_timeout;
182
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100183 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 u8 partition;
185 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100186 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100188 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 u8 sense_key, asc, ascq;
190
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100191 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned int minor;
193 /* device name */
194 char name[4];
195 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100196 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Borislav Petkov54bb2072008-02-06 02:57:52 +0100198 /* tape block size, usually 512 or 1024 bytes */
199 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100203 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100206 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100208 * At most, there is only one ide-tape originated data transfer request
209 * in the device request queue. This allows ide.c to easily service
210 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200212
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100213 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200214 int buffer_size;
Tejun Heo963da552009-04-19 08:46:02 +0900215 /* Staging buffer of buffer_size bytes */
216 void *buf;
217 /* The read/write cursor */
218 void *cur;
219 /* The number of valid bytes in buf */
220 size_t valid;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100221
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100222 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned long avg_time;
224 int avg_size;
225 int avg_speed;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* the door is currently locked */
228 int door_locked;
229 /* the tape hardware is write protected */
230 char drv_write_prot;
231 /* the tape is write protected (hardware or opened as read-only) */
232 char write_prot;
233
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100234 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235} idetape_tape_t;
236
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800237static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Will Dysond5dee802005-09-16 02:55:07 -0700239static struct class *idetape_sysfs_class;
240
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100241static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
244{
245 struct ide_tape_obj *tape = NULL;
246
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800247 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200248 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200249 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200250 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200251 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200252 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100253 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200254 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800255 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return tape;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void ide_tape_put(struct ide_tape_obj *tape)
260{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200261 ide_drive_t *drive = tape->drive;
262
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800263 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100264 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200265 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800266 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100270 * The variables below are used for the character device interface. Additional
271 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100273static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
276{
277 struct ide_tape_obj *tape = NULL;
278
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800279 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 tape = idetape_devs[i];
281 if (tape)
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100282 get_device(&tape->dev);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800283 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return tape;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100288 * called on each failed packet command retry to analyze the request sense. We
289 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Borislav Petkov1b5db432008-02-02 19:56:48 +0100291static void idetape_analyze_error(ide_drive_t *drive, u8 *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100294 struct ide_atapi_pc *pc = drive->failed_pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Borislav Petkov1b5db432008-02-02 19:56:48 +0100296 tape->sense_key = sense[2] & 0xF;
297 tape->asc = sense[12];
298 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100299
300 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
301 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Borislav Petkovd236d742008-04-18 00:46:27 +0200303 /* Correct pc->xferred by asking the tape. */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900304 if (pc->flags & PC_FLAG_DMA_ERROR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200305 pc->xferred = pc->req_xfer -
Borislav Petkov54bb2072008-02-06 02:57:52 +0100306 tape->blk_size *
Harvey Harrison5d0cc8a2008-07-15 21:21:41 +0200307 get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /*
310 * If error was the result of a zero-length read or write command,
311 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
312 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
313 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100314 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100315 /* length == 0 */
316 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
317 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* don't report an error, everything's ok */
319 pc->error = 0;
320 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200321 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100324 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100325 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200326 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100328 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100329 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
330 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100331 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200332 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100335 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100336 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100337 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200338 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200340 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkovd236d742008-04-18 00:46:27 +0200341 pc->xferred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
343 }
344}
345
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200346static void ide_tape_handle_dsc(ide_drive_t *);
347
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100348static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200351 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100352 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200353 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100354 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100356 debug_log(DBG_PROCS, "Enter %s\n", __func__);
357
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200358 if (dsc)
359 ide_tape_handle_dsc(drive);
360
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100361 if (drive->failed_pc == pc)
362 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200363
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200364 if (pc->c[0] == REQUEST_SENSE) {
365 if (uptodate)
366 idetape_analyze_error(drive, pc->buf);
367 else
368 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
369 "itself - Aborting request!\n");
370 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200371 int blocks = pc->xferred / tape->blk_size;
372
373 tape->avg_size += blocks * tape->blk_size;
374
375 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
376 tape->avg_speed = tape->avg_size * HZ /
377 (jiffies - tape->avg_time) / 1024;
378 tape->avg_size = 0;
379 tape->avg_time = jiffies;
380 }
381
382 tape->first_frame += blocks;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900383 rq->data_len -= blocks * tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200384
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100385 if (pc->error) {
386 uptodate = 0;
387 err = pc->error;
388 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200389 } else if (pc->c[0] == READ_POSITION && uptodate) {
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200390 u8 *readpos = pc->buf;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200391
392 debug_log(DBG_SENSE, "BOP - %s\n",
393 (readpos[0] & 0x80) ? "Yes" : "No");
394 debug_log(DBG_SENSE, "EOP - %s\n",
395 (readpos[0] & 0x40) ? "Yes" : "No");
396
397 if (readpos[0] & 0x4) {
398 printk(KERN_INFO "ide-tape: Block location is unknown"
399 "to the tape\n");
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200400 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200401 uptodate = 0;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100402 err = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200403 } else {
404 debug_log(DBG_SENSE, "Block Location - %u\n",
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200405 be32_to_cpup((__be32 *)&readpos[4]));
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200406
407 tape->partition = readpos[1];
Harvey Harrisoncd740ab2008-07-24 22:53:33 +0200408 tape->first_frame = be32_to_cpup((__be32 *)&readpos[4]);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200409 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200412
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100413 rq->errors = err;
414
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100415 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100419 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100420 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100422static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 idetape_tape_t *tape = drive->driver_data;
425
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100426 debug_log(DBG_PROCS, "Enter %s\n", __func__);
427
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100428 tape->postponed_rq = drive->hwif->rq;
429
Borislav Petkov54bb2072008-02-06 02:57:52 +0100430 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200433static void ide_tape_handle_dsc(ide_drive_t *drive)
434{
435 idetape_tape_t *tape = drive->driver_data;
436
437 /* Media access command */
438 tape->dsc_polling_start = jiffies;
439 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
440 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
441 /* Allow ide.c to handle other requests */
442 idetape_postpone_request(drive);
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100446 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200448 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100449 * until we finish handling it. Each packet command is associated with a
450 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100452 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100454 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200455 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200457 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100458 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100460 * 3. ATAPI Tape media access commands have immediate status with a delayed
461 * process. In case of a successful initiation of a media access packet command,
462 * the DSC bit will be set when the actual execution of the command is finished.
463 * Since the tape drive will not issue an interrupt, we have to poll for this
464 * event. In this case, we define the request as "low priority request" by
465 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
466 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100468 * ide.c will then give higher priority to requests which originate from the
469 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100471 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100473 * 5. In case an error was found, we queue a request sense packet command in
474 * front of the request queue and retry the operation up to
475 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100477 * 6. In case no error was found, or we decided to give up and not to retry
478 * again, the callback function will be called and then we will handle the next
479 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100482static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
483 struct ide_cmd *cmd,
484 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100488 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
489 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200492 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200495 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heob3071d12009-04-19 08:46:02 +0900496 unsigned int done = blk_rq_bytes(drive->hwif->rq);
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100499 * We will "abort" retrying a packet command in case legitimate
500 * error code was received (crossing a filemark, or end of the
501 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200503 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100504 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 tape->sense_key == 2 && tape->asc == 4 &&
506 (tape->ascq == 1 || tape->ascq == 8))) {
507 printk(KERN_ERR "ide-tape: %s: I/O error, "
508 "pc = %2x, key = %2x, "
509 "asc = %2x, ascq = %2x\n",
510 tape->name, pc->c[0],
511 tape->sense_key, tape->asc,
512 tape->ascq);
513 }
514 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100515 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Tejun Heob3071d12009-04-19 08:46:02 +0900517
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100518 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200519 drive->pc_callback(drive, 0);
Tejun Heob3071d12009-04-19 08:46:02 +0900520 ide_complete_rq(drive, -EIO, done);
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200521 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100523 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100527 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100530/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200531static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200533 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100534 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100536 /* DBD = 1 - Don't return block descriptors */
537 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 pc->c[2] = page_code;
539 /*
540 * Changed pc->c[3] to 0 (255 will at best return unused info).
541 *
542 * For SCSI this byte is defined as subpage instead of high byte
543 * of length and some IDE drives seem to interpret it this way
544 * and return an error when 255 is used.
545 */
546 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100547 /* We will just discard data in that case */
548 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200550 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200552 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200554 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100557static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200559 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200561 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100562 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200564 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100565
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200566 if (stat & ATA_DSC) {
567 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100569 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 printk(KERN_ERR "ide-tape: %s: I/O error, ",
571 tape->name);
572 /* Retry operation */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900573 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200574 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100578 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100579 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200581 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return ide_stopped;
583}
584
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200585static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200586 struct ide_atapi_pc *pc, struct request *rq,
587 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Tejun Heo963da552009-04-19 08:46:02 +0900589 unsigned int length = rq->nr_sectors;
Borislav Petkov0014c752008-07-23 19:56:00 +0200590
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200591 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100592 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 pc->c[1] = 1;
Borislav Petkovd236d742008-04-18 00:46:27 +0200594 pc->buf = NULL;
595 pc->buf_size = length * tape->blk_size;
596 pc->req_xfer = pc->buf_size;
Borislav Petkovf73850a2008-04-27 15:38:33 +0200597 if (pc->req_xfer == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200598 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Tejun Heo963da552009-04-19 08:46:02 +0900600 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200601 pc->c[0] = READ_6;
Tejun Heo963da552009-04-19 08:46:02 +0900602 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200603 pc->c[0] = WRITE_6;
604 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200605 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200606
607 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610static ide_startstop_t idetape_do_request(ide_drive_t *drive,
611 struct request *rq, sector_t block)
612{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200613 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200615 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100617 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100618 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Mark de Wevere8e75262009-05-17 17:22:53 +0200620 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu\n",
Tejun Heo963da552009-04-19 08:46:02 +0900621 (unsigned long long)rq->sector, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900623 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100624 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200626 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100627 if (blk_fs_request(rq) == 0 && rq->errors == 0)
628 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100629 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return ide_stopped;
631 }
632
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100633 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100634 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
635 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200636 goto out;
637 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (postponed_rq != NULL)
640 if (rq != postponed_rq) {
641 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
642 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100643 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100644 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100645 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return ide_stopped;
647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 tape->postponed_rq = NULL;
650
651 /*
652 * If the tape is still busy, postpone our request and service
653 * the other device meanwhile.
654 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200655 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200657 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
658 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200659 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200661 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200662 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200663 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200666 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200667 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (postponed_rq == NULL) {
669 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100670 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
672 } else if (time_after(jiffies, tape->dsc_timeout)) {
673 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
674 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200675 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 idetape_media_access_finished(drive);
677 return ide_stopped;
678 } else {
679 return ide_do_reset(drive);
680 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100681 } else if (time_after(jiffies,
682 tape->dsc_polling_start +
683 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100684 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 idetape_postpone_request(drive);
686 return ide_stopped;
687 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200688 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200689 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200690 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 goto out;
692 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200693 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200694 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200695 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 goto out;
697 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200698 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoc267cc12009-04-19 07:00:42 +0900699 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200700 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
701 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 goto out;
703 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200704 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 idetape_media_access_finished(drive);
706 return ide_stopped;
707 }
708 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200709
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200710out:
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900711 /* prepare sense request for this command */
712 ide_prep_sense(drive, rq);
713
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100714 memset(&cmd, 0, sizeof(cmd));
715
716 if (rq_data_dir(rq))
717 cmd.tf_flags |= IDE_TFLAG_WRITE;
718
719 cmd.rq = rq;
720
Tejun Heo5c4be572009-04-19 07:00:42 +0900721 ide_init_sg_cmd(&cmd, pc->req_xfer);
722 ide_map_sg(drive, &cmd);
723
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100724 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100728 * Write a filemark if write_filemark=1. Flush the device buffers without
729 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100731static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200732 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200734 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100735 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200737 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
741{
742 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200743 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 int load_attempted = 0;
745
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100746 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200747 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 timeout += jiffies;
749 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200750 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return 0;
752 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100753 || (tape->asc == 0x3A)) {
754 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (load_attempted)
756 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200757 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 load_attempted = 1;
759 /* not about to be ready */
760 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
761 (tape->ascq == 1 || tape->ascq == 8)))
762 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700763 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765 return -EIO;
766}
767
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100768static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200770 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200771 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 int rc;
773
774 idetape_create_write_filemark_cmd(drive, &pc, 0);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200775 rc = ide_queue_pc_tail(drive, tape->disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100776 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return rc;
778 idetape_wait_ready(drive, 60 * 5 * HZ);
779 return 0;
780}
781
Borislav Petkovd236d742008-04-18 00:46:27 +0200782static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200784 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100785 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +0200786 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100789static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200792 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 int position;
794
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100795 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200798 if (ide_queue_pc_tail(drive, tape->disk, &pc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100800 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return position;
802}
803
Borislav Petkovd236d742008-04-18 00:46:27 +0200804static void idetape_create_locate_cmd(ide_drive_t *drive,
805 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100806 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200808 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100809 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100811 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200813 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200816static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Borislav Petkov54abf372008-02-06 02:57:52 +0100820 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200821 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200823 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Tejun Heo963da552009-04-19 08:46:02 +0900824 tape->valid = 0;
825 if (tape->buf != NULL) {
826 kfree(tape->buf);
827 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829
Borislav Petkov54abf372008-02-06 02:57:52 +0100830 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
833/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100834 * Position the tape to the requested block using the LOCATE packet command.
835 * A READ POSITION command is then issued to check where we are positioned. Like
836 * all higher level operations, we queue the commands at the tail of the request
837 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100839static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
840 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200843 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +0200845 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Borislav Petkov54abf372008-02-06 02:57:52 +0100847 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200848 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 idetape_wait_ready(drive, 60 * 5 * HZ);
850 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200851 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (retval)
853 return (retval);
854
855 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200856 return ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200859static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100860 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 int seek, position;
864
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200865 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (restore_position) {
867 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200868 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100870 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200871 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return;
873 }
874 }
875}
876
877/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100878 * Generate a read/write request for the block device interface and wait for it
879 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 */
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900881static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200884 struct request *rq;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900885 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100887 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900888 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900889 BUG_ON(size < 0 || size % tape->blk_size);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100890
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200891 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
892 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200893 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200894 rq->rq_disk = tape->disk;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200895 rq->sector = tape->first_frame;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900896
897 if (size) {
Tejun Heo963da552009-04-19 08:46:02 +0900898 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900899 __GFP_WAIT);
900 if (ret)
901 goto out_put;
902 }
903
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200904 blk_execute_rq(drive->queue, tape->disk, rq, 0);
905
Tejun Heo963da552009-04-19 08:46:02 +0900906 /* calculate the number of transferred bytes and update buffer state */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900907 size -= rq->data_len;
Tejun Heo963da552009-04-19 08:46:02 +0900908 tape->cur = tape->buf;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900909 if (cmd == REQ_IDETAPE_READ)
Tejun Heo963da552009-04-19 08:46:02 +0900910 tape->valid = size;
911 else
912 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900914 ret = size;
915 if (rq->errors == IDE_DRV_ERROR_GENERAL)
916 ret = -EIO;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900917out_put:
918 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200919 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Borislav Petkovd236d742008-04-18 00:46:27 +0200922static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200924 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100925 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100926 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200927 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Borislav Petkovd236d742008-04-18 00:46:27 +0200930static void idetape_create_rewind_cmd(ide_drive_t *drive,
931 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200933 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100934 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200935 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Borislav Petkovd236d742008-04-18 00:46:27 +0200938static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200940 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100941 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200943 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Borislav Petkovd236d742008-04-18 00:46:27 +0200946static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200948 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100949 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100950 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200952 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
Borislav Petkovd9df9372008-04-27 15:38:34 +0200955static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100958
Borislav Petkov54abf372008-02-06 02:57:52 +0100959 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200960 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100961 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return;
963 }
Tejun Heo963da552009-04-19 08:46:02 +0900964 if (tape->buf) {
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900965 size_t aligned = roundup(tape->valid, tape->blk_size);
966
967 memset(tape->cur, 0, aligned - tape->valid);
Tejun Heo07bd9682009-04-19 08:46:03 +0900968 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
Tejun Heo963da552009-04-19 08:46:02 +0900969 kfree(tape->buf);
970 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100972 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Tejun Heo88f1b942009-04-19 08:46:02 +0900975static int idetape_init_rw(ide_drive_t *drive, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 idetape_tape_t *tape = drive->driver_data;
Tejun Heo88f1b942009-04-19 08:46:02 +0900978 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Tejun Heo88f1b942009-04-19 08:46:02 +0900980 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Tejun Heo88f1b942009-04-19 08:46:02 +0900982 if (tape->chrdev_dir == dir)
983 return 0;
984
985 if (tape->chrdev_dir == IDETAPE_DIR_READ)
986 ide_tape_discard_merge_buffer(drive, 1);
987 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
988 ide_tape_flush_merge_buffer(drive);
989 idetape_flush_tape_buffers(drive);
990 }
991
992 if (tape->buf || tape->valid) {
993 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
994 tape->valid = 0;
995 }
996
997 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
998 if (!tape->buf)
999 return -ENOMEM;
1000 tape->chrdev_dir = dir;
1001 tape->cur = tape->buf;
1002
1003 /*
1004 * Issue a 0 rw command to ensure that DSC handshake is
1005 * switched from completion mode to buffer available mode. No
1006 * point in issuing this if DSC overlap isn't supported, some
1007 * drives (Seagate STT3401A) will return an error.
1008 */
1009 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1010 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
1011 : REQ_IDETAPE_WRITE;
1012
1013 rc = idetape_queue_rw_tail(drive, cmd, 0);
1014 if (rc < 0) {
1015 kfree(tape->buf);
1016 tape->buf = NULL;
1017 tape->chrdev_dir = IDETAPE_DIR_NONE;
1018 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return 0;
1023}
1024
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001025static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 idetape_tape_t *tape = drive->driver_data;
Tejun Heo963da552009-04-19 08:46:02 +09001028
1029 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 while (bcount) {
Tejun Heo963da552009-04-19 08:46:02 +09001032 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Tejun Heo6bb11dd2009-04-19 08:46:03 +09001034 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001040 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1041 * currently support only one partition.
1042 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001043static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001045 struct ide_tape_obj *tape = drive->driver_data;
1046 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001048 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001049
1050 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 idetape_create_rewind_cmd(drive, &pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001053 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (retval)
1055 return retval;
1056
1057 idetape_create_read_position_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001058 retval = ide_queue_pc_tail(drive, disk, &pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (retval)
1060 return retval;
1061 return 0;
1062}
1063
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001064/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001065static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1066 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 void __user *argp = (void __user *)arg;
1070
Borislav Petkovd59823f2008-02-02 19:56:51 +01001071 struct idetape_config {
1072 int dsc_rw_frequency;
1073 int dsc_media_access_frequency;
1074 int nr_stages;
1075 } config;
1076
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001077 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001080 case 0x0340:
1081 if (copy_from_user(&config, argp, sizeof(config)))
1082 return -EFAULT;
1083 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001084 break;
1085 case 0x0350:
1086 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001087 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001088 if (copy_to_user(argp, &config, sizeof(config)))
1089 return -EFAULT;
1090 break;
1091 default:
1092 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094 return 0;
1095}
1096
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001097static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1098 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001101 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001102 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001103 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001104 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 if (mt_count == 0)
1107 return 0;
1108 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001109 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001111 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
1113
Borislav Petkov54abf372008-02-06 02:57:52 +01001114 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo963da552009-04-19 08:46:02 +09001115 tape->valid = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001116 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001118 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001122 case MTFSF:
1123 case MTBSF:
1124 idetape_create_space_cmd(&pc, mt_count - count,
1125 IDETAPE_SPACE_OVER_FILEMARK);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001126 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001127 case MTFSFM:
1128 case MTBSFM:
1129 if (!sprev)
1130 return -EIO;
1131 retval = idetape_space_over_filemarks(drive, MTFSF,
1132 mt_count - count);
1133 if (retval)
1134 return retval;
1135 count = (MTBSFM == mt_op ? 1 : -1);
1136 return idetape_space_over_filemarks(drive, MTFSF, count);
1137 default:
1138 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1139 mt_op);
1140 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001145 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001147 * The tape is optimized to maximize throughput when it is transferring an
1148 * integral number of the "continuous transfer limit", which is a parameter of
1149 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001151 * As of version 1.3 of the driver, the character device provides an abstract
1152 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1153 * same backup/restore procedure is supported. The driver will internally
1154 * convert the requests to the recommended transfer unit, so that an unmatch
1155 * between the user's block size to the recommended size will only result in a
1156 * (slightly) increased driver overhead, but will no longer hit performance.
1157 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001159static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1160 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001162 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001164 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001165 ssize_t ret = 0;
Tejun Heo07bd9682009-04-19 08:46:03 +09001166 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001168 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Borislav Petkov54abf372008-02-06 02:57:52 +01001170 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001171 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001172 if (count > tape->blk_size &&
1173 (count % tape->blk_size) == 0)
1174 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001176
Tejun Heo88f1b942009-04-19 08:46:02 +09001177 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001178 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return rc;
Tejun Heo07bd9682009-04-19 08:46:03 +09001180
1181 while (done < count) {
1182 size_t todo;
1183
1184 /* refill if staging buffer is empty */
1185 if (!tape->valid) {
1186 /* If we are at a filemark, nothing more to read */
1187 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1188 break;
1189 /* read */
1190 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1191 tape->buffer_size) <= 0)
1192 break;
1193 }
1194
1195 /* copy out */
1196 todo = min_t(size_t, count - done, tape->valid);
1197 if (copy_to_user(buf + done, tape->cur, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001198 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001199
1200 tape->cur += todo;
1201 tape->valid -= todo;
1202 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001204
1205 if (!done && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001206 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 idetape_space_over_filemarks(drive, MTFSF, 1);
1209 return 0;
1210 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001211
Tejun Heo07bd9682009-04-19 08:46:03 +09001212 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001215static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 size_t count, loff_t *ppos)
1217{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001218 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001220 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001221 ssize_t ret = 0;
Tejun Heo88f1b942009-04-19 08:46:02 +09001222 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 /* The drive is write protected. */
1225 if (tape->write_prot)
1226 return -EACCES;
1227
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001228 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 /* Initialize write operation */
Tejun Heo88f1b942009-04-19 08:46:02 +09001231 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1232 if (rc < 0)
1233 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Tejun Heo07bd9682009-04-19 08:46:03 +09001235 while (done < count) {
1236 size_t todo;
1237
1238 /* flush if staging buffer is full */
1239 if (tape->valid == tape->buffer_size &&
1240 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1241 tape->buffer_size) <= 0)
1242 return rc;
1243
1244 /* copy in */
1245 todo = min_t(size_t, count - done,
1246 tape->buffer_size - tape->valid);
1247 if (copy_from_user(tape->cur, buf + done, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001248 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001249
1250 tape->cur += todo;
1251 tape->valid += todo;
1252 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001254
1255 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001258static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001260 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001261 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 /* Write a filemark */
1264 idetape_create_write_filemark_cmd(drive, &pc, 1);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001265 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1267 return -EIO;
1268 }
1269 return 0;
1270}
1271
1272/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001273 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1274 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001276 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1277 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001278 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001280 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001282 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1283 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001285static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001288 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001289 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001290 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001292 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1293 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001296 case MTFSF:
1297 case MTFSFM:
1298 case MTBSF:
1299 case MTBSFM:
1300 if (!mt_count)
1301 return 0;
1302 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1303 default:
1304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001308 case MTWEOF:
1309 if (tape->write_prot)
1310 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001311 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001312 for (i = 0; i < mt_count; i++) {
1313 retval = idetape_write_filemark(drive);
1314 if (retval)
1315 return retval;
1316 }
1317 return 0;
1318 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001319 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001320 if (idetape_rewind_tape(drive))
1321 return -EIO;
1322 return 0;
1323 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001324 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001325 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001326 case MTUNLOAD:
1327 case MTOFFL:
1328 /*
1329 * If door is locked, attempt to unlock before
1330 * attempting to eject.
1331 */
1332 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001333 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001334 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001335 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001336 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001337 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001338 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001339 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001340 return retval;
1341 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001342 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001343 return idetape_flush_tape_buffers(drive);
1344 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001345 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001346 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001347 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001348 case MTEOM:
1349 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001350 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001351 case MTERASE:
1352 (void)idetape_rewind_tape(drive);
1353 idetape_create_erase_cmd(&pc);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001354 return ide_queue_pc_tail(drive, disk, &pc);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001355 case MTSETBLK:
1356 if (mt_count) {
1357 if (mt_count < tape->blk_size ||
1358 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001360 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001361 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001362 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001363 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001364 return 0;
1365 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001366 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001367 return idetape_position_tape(drive,
1368 mt_count * tape->user_bs_factor, tape->partition, 0);
1369 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001370 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001371 return idetape_position_tape(drive, 0, mt_count, 0);
1372 case MTFSR:
1373 case MTBSR:
1374 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001375 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001376 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001378 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1379 return 0;
1380 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001381 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001382 if (retval)
1383 return retval;
1384 tape->door_locked = DOOR_UNLOCKED;
1385 return 0;
1386 default:
1387 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1388 mt_op);
1389 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391}
1392
1393/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001394 * Our character device ioctls. General mtio.h magnetic io commands are
1395 * supported here, and not in the corresponding block interface. Our own
1396 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001398static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1399 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001401 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 ide_drive_t *drive = tape->drive;
1403 struct mtop mtop;
1404 struct mtget mtget;
1405 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001406 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 void __user *argp = (void __user *)arg;
1408
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001409 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Borislav Petkov54abf372008-02-06 02:57:52 +01001411 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001412 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 idetape_flush_tape_buffers(drive);
1414 }
1415 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo963da552009-04-19 08:46:02 +09001416 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001417 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001418 position = idetape_read_position(drive);
1419 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return -EIO;
1421 }
1422 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001423 case MTIOCTOP:
1424 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1425 return -EFAULT;
1426 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1427 case MTIOCGET:
1428 memset(&mtget, 0, sizeof(struct mtget));
1429 mtget.mt_type = MT_ISSCSI2;
1430 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1431 mtget.mt_dsreg =
1432 ((tape->blk_size * tape->user_bs_factor)
1433 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001434
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001435 if (tape->drv_write_prot)
1436 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1437
1438 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1439 return -EFAULT;
1440 return 0;
1441 case MTIOCPOS:
1442 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1443 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1444 return -EFAULT;
1445 return 0;
1446 default:
1447 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001448 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001449 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451}
1452
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001453/*
1454 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1455 * block size with the reported value.
1456 */
1457static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1458{
1459 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001460 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001461
1462 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001463 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001464 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001465 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001466 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1467 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001468 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001469 }
1470 return;
1471 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001472 tape->blk_size = (pc.buf[4 + 5] << 16) +
1473 (pc.buf[4 + 6] << 8) +
1474 pc.buf[4 + 7];
1475 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001476}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001478static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1481 ide_drive_t *drive;
1482 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 int retval;
1484
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001485 if (i >= MAX_HWIFS * MAX_DRIVES)
1486 return -ENXIO;
1487
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001488 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001489 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001490 if (!tape) {
1491 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001492 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001493 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001494
1495 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /*
1498 * We really want to do nonseekable_open(inode, filp); here, but some
1499 * versions of tar incorrectly call lseek on tapes and bail out if that
1500 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1501 */
1502 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 drive = tape->drive;
1505
1506 filp->private_data = tape;
1507
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001508 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 retval = -EBUSY;
1510 goto out_put_tape;
1511 }
1512
1513 retval = idetape_wait_ready(drive, 60 * HZ);
1514 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001515 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1517 goto out_put_tape;
1518 }
1519
1520 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001521 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 (void)idetape_rewind_tape(drive);
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001525 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 /* Set write protect flag if device is opened as read-only. */
1528 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1529 tape->write_prot = 1;
1530 else
1531 tape->write_prot = tape->drv_write_prot;
1532
1533 /* Make sure drive isn't write protected if user wants to write. */
1534 if (tape->write_prot) {
1535 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1536 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001537 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 retval = -EROFS;
1539 goto out_put_tape;
1540 }
1541 }
1542
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001543 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001544 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001545 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001546 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1547 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001550 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return 0;
1552
1553out_put_tape:
1554 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001555 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return retval;
1557}
1558
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001559static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 idetape_tape_t *tape = drive->driver_data;
1562
Borislav Petkovd9df9372008-04-27 15:38:34 +02001563 ide_tape_flush_merge_buffer(drive);
Tejun Heo963da552009-04-19 08:46:02 +09001564 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1565 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001566 idetape_pad_zeros(drive, tape->blk_size *
1567 (tape->user_bs_factor - 1));
Tejun Heo963da552009-04-19 08:46:02 +09001568 kfree(tape->buf);
1569 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571 idetape_write_filemark(drive);
1572 idetape_flush_tape_buffers(drive);
1573 idetape_flush_tape_buffers(drive);
1574}
1575
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001576static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001578 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 unsigned int minor = iminor(inode);
1581
1582 lock_kernel();
1583 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001584
1585 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Borislav Petkov54abf372008-02-06 02:57:52 +01001587 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001589 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001591 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001593
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001594 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01001596 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001598 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001599 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
1601 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001602 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 ide_tape_put(tape);
1604 unlock_kernel();
1605 return 0;
1606}
1607
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001608static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001611 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001612 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001613 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001616 pc.buf = &pc_buf[0];
1617 pc.buf_size = sizeof(pc_buf);
1618
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001619 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001620 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1621 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return;
1623 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001624 memcpy(vendor_id, &pc.buf[8], 8);
1625 memcpy(product_id, &pc.buf[16], 16);
1626 memcpy(fw_rev, &pc.buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001627
Borislav Petkov801bd322008-09-27 19:32:17 +02001628 ide_fixstring(vendor_id, 8, 0);
1629 ide_fixstring(product_id, 16, 0);
1630 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001631
Borislav Petkov801bd322008-09-27 19:32:17 +02001632 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001633 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
1636/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001637 * Ask the tape about its various parameters. In particular, we will adjust our
1638 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001640static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
1642 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001643 struct ide_atapi_pc pc;
Borislav Petkovb6422012008-02-02 19:56:49 +01001644 u8 *caps;
1645 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001648 if (ide_queue_pc_tail(drive, tape->disk, &pc)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001649 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1650 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001651 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001652 put_unaligned(52, (u16 *)&tape->caps[12]);
1653 put_unaligned(540, (u16 *)&tape->caps[14]);
1654 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return;
1656 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001657 caps = pc.buf + 4 + pc.buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Borislav Petkovb6422012008-02-02 19:56:49 +01001659 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001660 speed = be16_to_cpup((__be16 *)&caps[14]);
1661 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001663 *(u16 *)&caps[8] = max_speed;
1664 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1665 *(u16 *)&caps[14] = speed;
1666 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001667
1668 if (!speed) {
1669 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1670 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001671 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001673 if (!max_speed) {
1674 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1675 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001676 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678
Borislav Petkovb6422012008-02-02 19:56:49 +01001679 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001680
1681 /* device lacks locking support according to capabilities page */
1682 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001683 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001684
Borislav Petkovb6422012008-02-02 19:56:49 +01001685 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001686 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001687 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001688 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
1690
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001691#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001692#define ide_tape_devset_get(name, field) \
1693static int get_##name(ide_drive_t *drive) \
1694{ \
1695 idetape_tape_t *tape = drive->driver_data; \
1696 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001698
1699#define ide_tape_devset_set(name, field) \
1700static int set_##name(ide_drive_t *drive, int arg) \
1701{ \
1702 idetape_tape_t *tape = drive->driver_data; \
1703 tape->field = arg; \
1704 return 0; \
1705}
1706
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001707#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001708ide_tape_devset_get(_name, _field) \
1709ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001710IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001711
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001712#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001713ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001714IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001715
1716static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1717static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1718static int divf_buffer(ide_drive_t *drive) { return 2; }
1719static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1720
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001721ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001722
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001723ide_tape_devset_rw_field(debug_mask, debug_mask);
1724ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001725
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001726ide_tape_devset_r_field(avg_speed, avg_speed);
1727ide_tape_devset_r_field(speed, caps[14]);
1728ide_tape_devset_r_field(buffer, caps[16]);
1729ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001730
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001731static const struct ide_proc_devset idetape_settings[] = {
1732 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1733 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1734 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1735 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1736 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1737 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1738 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1739 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01001740 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001741};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001742#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001745 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001747 * 1. Initialize our various state variables.
1748 * 2. Ask the tape for its capabilities.
1749 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1750 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001752 * Note that at this point ide.c already assigned us an irq, so that we can
1753 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001755static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Borislav Petkov83042b22008-04-27 15:38:27 +02001757 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001759 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001760 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02001762 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001763
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001764 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1765
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001766 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1767 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1768 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001769 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001773 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001774 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 tape->minor = minor;
1777 tape->name[0] = 'h';
1778 tape->name[1] = 't';
1779 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001780 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 idetape_get_inquiry_results(drive);
1783 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001784 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001786 tape->buffer_size = *ctl * tape->blk_size;
1787 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001789 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001790 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001792 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Borislav Petkov83042b22008-04-27 15:38:27 +02001794 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001795 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Borislav Petkovf73850a2008-04-27 15:38:33 +02001797 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001800 * Ensure that the number we got makes sense; limit it within
1801 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001803 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1804 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02001806 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001807 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001808 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1809 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01001810 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001811 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001813 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Russell King4031bbe2006-01-06 11:41:00 +00001816static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001820 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001821 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 ide_unregister_region(tape->disk);
1823
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001824 mutex_lock(&idetape_ref_mutex);
1825 put_device(&tape->dev);
1826 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001829static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001831 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 ide_drive_t *drive = tape->drive;
1833 struct gendisk *g = tape->disk;
1834
Tejun Heo963da552009-04-19 08:46:02 +09001835 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001836
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001837 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001839 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001840 device_destroy(idetape_sysfs_class,
1841 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 idetape_devs[tape->minor] = NULL;
1843 g->private_data = NULL;
1844 put_disk(g);
1845 kfree(tape);
1846}
1847
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001848#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849static int proc_idetape_read_name
1850 (char *page, char **start, off_t off, int count, int *eof, void *data)
1851{
1852 ide_drive_t *drive = (ide_drive_t *) data;
1853 idetape_tape_t *tape = drive->driver_data;
1854 char *out = page;
1855 int len;
1856
1857 len = sprintf(out, "%s\n", tape->name);
1858 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1859}
1860
1861static ide_proc_entry_t idetape_proc[] = {
1862 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1863 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1864 { NULL, 0, NULL, NULL }
1865};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001866
1867static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1868{
1869 return idetape_proc;
1870}
1871
1872static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1873{
1874 return idetape_settings;
1875}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876#endif
1877
Russell King4031bbe2006-01-06 11:41:00 +00001878static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001880static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001881 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001882 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001883 .name = "ide-tape",
1884 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001885 },
Russell King4031bbe2006-01-06 11:41:00 +00001886 .probe = ide_tape_probe,
1887 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001890#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001891 .proc_entries = ide_tape_proc_entries,
1892 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001893#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894};
1895
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001896/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001897static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 .owner = THIS_MODULE,
1899 .read = idetape_chrdev_read,
1900 .write = idetape_chrdev_write,
1901 .ioctl = idetape_chrdev_ioctl,
1902 .open = idetape_chrdev_open,
1903 .release = idetape_chrdev_release,
1904};
1905
Al Viroa4600f82008-03-02 10:27:58 -05001906static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Al Viroa4600f82008-03-02 10:27:58 -05001908 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001910 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 return -ENXIO;
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return 0;
1914}
1915
Al Viroa4600f82008-03-02 10:27:58 -05001916static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001918 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return 0;
1922}
1923
Al Viroa4600f82008-03-02 10:27:58 -05001924static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 unsigned int cmd, unsigned long arg)
1926{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001927 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04001929 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (err == -EINVAL)
1931 err = idetape_blkdev_ioctl(drive, cmd, arg);
1932 return err;
1933}
1934
1935static struct block_device_operations idetape_block_ops = {
1936 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05001937 .open = idetape_open,
1938 .release = idetape_release,
1939 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940};
1941
Russell King4031bbe2006-01-06 11:41:00 +00001942static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
1944 idetape_tape_t *tape;
1945 struct gendisk *g;
1946 int minor;
1947
1948 if (!strstr("ide-tape", drive->driver_req))
1949 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (drive->media != ide_tape)
1952 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001953
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001954 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1955 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001956 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1957 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto failed;
1959 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001960 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001962 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1963 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 goto failed;
1965 }
1966
1967 g = alloc_disk(1 << PARTN_BITS);
1968 if (!g)
1969 goto out_free_tape;
1970
1971 ide_init_disk(g, drive);
1972
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001973 tape->dev.parent = &drive->gendev;
1974 tape->dev.release = ide_tape_release;
1975 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1976
1977 if (device_register(&tape->dev))
1978 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 tape->drive = drive;
1981 tape->driver = &idetape_driver;
1982 tape->disk = g;
1983
1984 g->private_data = &tape->driver;
1985
1986 drive->driver_data = tape;
1987
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001988 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 for (minor = 0; idetape_devs[minor]; minor++)
1990 ;
1991 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001992 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 idetape_setup(drive, tape, minor);
1995
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07001996 device_create(idetape_sysfs_class, &drive->gendev,
1997 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1998 device_create(idetape_sysfs_class, &drive->gendev,
1999 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2000 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 g->fops = &idetape_block_ops;
2003 ide_register_region(g);
2004
2005 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002006
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002007out_free_disk:
2008 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009out_free_tape:
2010 kfree(tape);
2011failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002012 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002015static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002017 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002018 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 unregister_chrdev(IDETAPE_MAJOR, "ht");
2020}
2021
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002022static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
Will Dysond5dee802005-09-16 02:55:07 -07002024 int error = 1;
2025 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2026 if (IS_ERR(idetape_sysfs_class)) {
2027 idetape_sysfs_class = NULL;
2028 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2029 error = -EBUSY;
2030 goto out;
2031 }
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002034 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2035 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002036 error = -EBUSY;
2037 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
Will Dysond5dee802005-09-16 02:55:07 -07002039
2040 error = driver_register(&idetape_driver.gen_driver);
2041 if (error)
2042 goto out_free_driver;
2043
2044 return 0;
2045
2046out_free_driver:
2047 driver_unregister(&idetape_driver.gen_driver);
2048out_free_class:
2049 class_destroy(idetape_sysfs_class);
2050out:
2051 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
Kay Sievers263756e2005-12-12 18:03:44 +01002054MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055module_init(idetape_init);
2056module_exit(idetape_exit);
2057MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002058MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2059MODULE_LICENSE("GPL");