blob: ef5f342914377c75a0ca17f15b3d43593e4e3d56 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010041#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010044#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtio.h>
49
Borislav Petkov8004a8c2008-02-06 02:57:51 +010050enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010059};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010092 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010094 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010097 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100115
116/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
Borislav Petkov54abf372008-02-06 02:57:52 +0100127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Borislav Petkov03056b92008-04-18 00:46:26 +0200134/* Tape door status */
135#define DOOR_UNLOCKED 0
136#define DOOR_LOCKED 1
137#define DOOR_EXPLICITLY_LOCKED 2
138
139/* Some defines for the SPACE command */
140#define IDETAPE_SPACE_OVER_FILEMARK 1
141#define IDETAPE_SPACE_TO_EOD 3
142
143/* Some defines for the LOAD UNLOAD command */
144#define IDETAPE_LU_LOAD_MASK 1
145#define IDETAPE_LU_RETENSION_MASK 2
146#define IDETAPE_LU_EOT_MASK 4
147
Borislav Petkov03056b92008-04-18 00:46:26 +0200148/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
149#define IDETAPE_BLOCK_DESCRIPTOR 0
150#define IDETAPE_CAPABILITIES_PAGE 0x2a
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100153 * Most of our global data which we need to save even as we leave the driver due
154 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100157 ide_drive_t *drive;
158 struct ide_driver *driver;
159 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100160 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200162 /* used by REQ_IDETAPE_{READ,WRITE} requests */
163 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100166 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100168 * While polling for DSC we use postponed_rq to postpone the current
169 * request so that ide.c will be able to service pending requests on the
170 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200171 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173 struct request *postponed_rq;
174 /* The time in which we started polling for DSC */
175 unsigned long dsc_polling_start;
176 /* Timer used to poll for dsc */
177 struct timer_list dsc_timer;
178 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100179 unsigned long best_dsc_rw_freq;
180 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned long dsc_timeout;
182
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100183 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 u8 partition;
185 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100186 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100188 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 u8 sense_key, asc, ascq;
190
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100191 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned int minor;
193 /* device name */
194 char name[4];
195 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100196 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Borislav Petkov54bb2072008-02-06 02:57:52 +0100198 /* tape block size, usually 512 or 1024 bytes */
199 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100203 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100206 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100208 * At most, there is only one ide-tape originated data transfer request
209 * in the device request queue. This allows ide.c to easily service
210 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200212
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100213 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200214 int buffer_size;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900215 /* Staging buffer of buffer_size bytes */
216 void *buf;
217 /* The read/write cursor */
218 void *cur;
219 /* The number of valid bytes in buf */
220 size_t valid;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100221
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100222 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned long avg_time;
224 int avg_size;
225 int avg_speed;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* the door is currently locked */
228 int door_locked;
229 /* the tape hardware is write protected */
230 char drv_write_prot;
231 /* the tape is write protected (hardware or opened as read-only) */
232 char write_prot;
233
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100234 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235} idetape_tape_t;
236
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800237static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Will Dysond5dee802005-09-16 02:55:07 -0700239static struct class *idetape_sysfs_class;
240
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100241static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
244{
245 struct ide_tape_obj *tape = NULL;
246
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800247 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200248 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200249 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200250 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200251 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200252 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100253 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200254 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800255 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return tape;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void ide_tape_put(struct ide_tape_obj *tape)
260{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200261 ide_drive_t *drive = tape->drive;
262
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800263 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100264 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200265 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800266 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100270 * The variables below are used for the character device interface. Additional
271 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100273static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
276{
277 struct ide_tape_obj *tape = NULL;
278
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800279 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 tape = idetape_devs[i];
281 if (tape)
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100282 get_device(&tape->dev);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800283 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return tape;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100288 * called on each failed packet command retry to analyze the request sense. We
289 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Borislav Petkovae3a8382009-05-02 10:58:17 +0200291static void idetape_analyze_error(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100294 struct ide_atapi_pc *pc = drive->failed_pc;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200295 struct request *rq = drive->hwif->rq;
Borislav Petkovae3a8382009-05-02 10:58:17 +0200296 u8 *sense = bio_data(rq->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Borislav Petkov1b5db432008-02-02 19:56:48 +0100298 tape->sense_key = sense[2] & 0xF;
299 tape->asc = sense[12];
300 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100301
302 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
303 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Borislav Petkov077e6db2009-05-01 21:21:02 +0200305 /* correct remaining bytes to transfer */
Tejun Heoe998f302009-04-19 08:46:02 +0900306 if (pc->flags & PC_FLAG_DMA_ERROR)
Borislav Petkov077e6db2009-05-01 21:21:02 +0200307 rq->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /*
310 * If error was the result of a zero-length read or write command,
311 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
312 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
313 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100314 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100315 /* length == 0 */
316 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
317 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* don't report an error, everything's ok */
319 pc->error = 0;
320 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200321 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100324 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100325 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200326 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100328 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100329 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
330 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100331 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200332 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100335 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100336 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100337 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200338 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200340 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkov077e6db2009-05-01 21:21:02 +0200341 (blk_rq_bytes(rq) - rq->resid_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
343 }
344}
345
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200346static void ide_tape_handle_dsc(ide_drive_t *);
347
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100348static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200351 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100352 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200353 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100354 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100356 debug_log(DBG_PROCS, "Enter %s\n", __func__);
357
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200358 if (dsc)
359 ide_tape_handle_dsc(drive);
360
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100361 if (drive->failed_pc == pc)
362 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200363
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200364 if (pc->c[0] == REQUEST_SENSE) {
365 if (uptodate)
Borislav Petkovae3a8382009-05-02 10:58:17 +0200366 idetape_analyze_error(drive);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200367 else
368 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
369 "itself - Aborting request!\n");
370 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov077e6db2009-05-01 21:21:02 +0200371 unsigned int blocks =
372 (blk_rq_bytes(rq) - rq->resid_len) / tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200373
374 tape->avg_size += blocks * tape->blk_size;
375
376 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
377 tape->avg_speed = tape->avg_size * HZ /
378 (jiffies - tape->avg_time) / 1024;
379 tape->avg_size = 0;
380 tape->avg_time = jiffies;
381 }
382
383 tape->first_frame += blocks;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200384
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100385 if (pc->error) {
386 uptodate = 0;
387 err = pc->error;
388 }
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;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200487 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100489 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
490 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200493 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200496 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heoeb6a61b2009-04-19 08:46:02 +0900497
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 Heoeb6a61b2009-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);
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200520 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
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 Petkov06875322009-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{
Borislav Petkov10c0b342009-05-01 20:29:53 +0200589 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
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;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200595 pc->buf_size = blk_rq_bytes(rq);
596 if (pc->buf_size == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200597 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Tejun Heo6cf3d542009-04-19 08:46:02 +0900599 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200600 pc->c[0] = READ_6;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900601 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200602 pc->c[0] = WRITE_6;
603 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200604 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200605
606 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static ide_startstop_t idetape_do_request(ide_drive_t *drive,
610 struct request *rq, sector_t block)
611{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200612 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200614 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100616 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100617 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Tejun Heo9780e2d2009-05-07 22:24:40 +0900619 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %u\n"
620 (unsigned long long)blk_rq_pos(rq), blk_rq_sectors(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Borislav Petkov06875322009-04-19 07:00:42 +0900622 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100623 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200625 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100626 if (blk_fs_request(rq) == 0 && rq->errors == 0)
627 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100628 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return ide_stopped;
630 }
631
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100632 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100633 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
634 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200635 goto out;
636 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (postponed_rq != NULL)
639 if (rq != postponed_rq) {
640 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
641 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100642 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100643 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100644 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return ide_stopped;
646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 tape->postponed_rq = NULL;
649
650 /*
651 * If the tape is still busy, postpone our request and service
652 * the other device meanwhile.
653 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200654 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200656 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
657 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200658 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200660 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200661 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200662 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200665 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200666 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (postponed_rq == NULL) {
668 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100669 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
671 } else if (time_after(jiffies, tape->dsc_timeout)) {
672 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
673 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200674 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 idetape_media_access_finished(drive);
676 return ide_stopped;
677 } else {
678 return ide_do_reset(drive);
679 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100680 } else if (time_after(jiffies,
681 tape->dsc_polling_start +
682 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100683 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 idetape_postpone_request(drive);
685 return ide_stopped;
686 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200687 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200688 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200689 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 goto out;
691 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200692 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200693 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200694 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 goto out;
696 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200697 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoac0b0112009-04-19 07:00:42 +0900698 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200699 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
700 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 goto out;
702 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200703 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 idetape_media_access_finished(drive);
705 return ide_stopped;
706 }
707 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200708
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200709out:
Borislav Petkov06875322009-04-19 07:00:42 +0900710 /* prepare sense request for this command */
711 ide_prep_sense(drive, rq);
712
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100713 memset(&cmd, 0, sizeof(cmd));
714
715 if (rq_data_dir(rq))
716 cmd.tf_flags |= IDE_TFLAG_WRITE;
717
718 cmd.rq = rq;
719
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200720 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Tejun Heo02e7cf82009-04-19 07:00:42 +0900721 ide_map_sg(drive, &cmd);
722
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100723 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100727 * Write a filemark if write_filemark=1. Flush the device buffers without
728 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100730static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200731 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200733 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100734 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200736 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
740{
741 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200742 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 int load_attempted = 0;
744
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100745 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200746 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 timeout += jiffies;
748 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200749 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
751 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100752 || (tape->asc == 0x3A)) {
753 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (load_attempted)
755 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200756 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 load_attempted = 1;
758 /* not about to be ready */
759 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
760 (tape->ascq == 1 || tape->ascq == 8)))
761 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700762 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764 return -EIO;
765}
766
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100767static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200769 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200770 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 int rc;
772
773 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200774 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100775 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return rc;
777 idetape_wait_ready(drive, 60 * 5 * HZ);
778 return 0;
779}
780
Borislav Petkovd236d742008-04-18 00:46:27 +0200781static void idetape_create_read_position_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200783 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100784 pc->c[0] = READ_POSITION;
Borislav Petkovd236d742008-04-18 00:46:27 +0200785 pc->req_xfer = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100788static int idetape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200791 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 int position;
793
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100794 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 idetape_create_read_position_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200797 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc.buf, pc.req_xfer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return -1;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100799 position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return position;
801}
802
Borislav Petkovd236d742008-04-18 00:46:27 +0200803static void idetape_create_locate_cmd(ide_drive_t *drive,
804 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100805 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200807 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100808 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100810 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200812 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200815static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Borislav Petkov54abf372008-02-06 02:57:52 +0100819 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200820 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200822 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Tejun Heo6cf3d542009-04-19 08:46:02 +0900823 tape->valid = 0;
824 if (tape->buf != NULL) {
825 kfree(tape->buf);
826 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828
Borislav Petkov54abf372008-02-06 02:57:52 +0100829 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
832/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100833 * Position the tape to the requested block using the LOCATE packet command.
834 * A READ POSITION command is then issued to check where we are positioned. Like
835 * all higher level operations, we queue the commands at the tail of the request
836 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100838static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
839 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200842 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +0200844 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Borislav Petkov54abf372008-02-06 02:57:52 +0100846 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200847 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 idetape_wait_ready(drive, 60 * 5 * HZ);
849 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200850 retval = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (retval)
852 return (retval);
853
854 idetape_create_read_position_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200855 return ide_queue_pc_tail(drive, disk, &pc, pc.buf, pc.req_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200858static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100859 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 int seek, position;
863
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200864 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (restore_position) {
866 position = idetape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200867 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100869 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200870 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return;
872 }
873 }
874}
875
876/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100877 * Generate a read/write request for the block device interface and wait for it
878 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
Tejun Heo71294cf2009-04-19 08:46:03 +0900880static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200883 struct request *rq;
Tejun Heoe998f302009-04-19 08:46:02 +0900884 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100886 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
Tejun Heoe998f302009-04-19 08:46:02 +0900887 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Tejun Heo71294cf2009-04-19 08:46:03 +0900888 BUG_ON(size < 0 || size % tape->blk_size);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100889
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200890 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
891 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200892 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200893 rq->rq_disk = tape->disk;
Tejun Heoe998f302009-04-19 08:46:02 +0900894
895 if (size) {
Tejun Heo6cf3d542009-04-19 08:46:02 +0900896 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Tejun Heoe998f302009-04-19 08:46:02 +0900897 __GFP_WAIT);
898 if (ret)
899 goto out_put;
900 }
901
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200902 blk_execute_rq(drive->queue, tape->disk, rq, 0);
903
Tejun Heo6cf3d542009-04-19 08:46:02 +0900904 /* calculate the number of transferred bytes and update buffer state */
Tejun Heoc3a4d782009-05-07 22:24:37 +0900905 size -= rq->resid_len;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900906 tape->cur = tape->buf;
Tejun Heoe998f302009-04-19 08:46:02 +0900907 if (cmd == REQ_IDETAPE_READ)
Tejun Heo6cf3d542009-04-19 08:46:02 +0900908 tape->valid = size;
909 else
910 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Tejun Heoe998f302009-04-19 08:46:02 +0900912 ret = size;
913 if (rq->errors == IDE_DRV_ERROR_GENERAL)
914 ret = -EIO;
Tejun Heoe998f302009-04-19 08:46:02 +0900915out_put:
916 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200917 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
Borislav Petkovd236d742008-04-18 00:46:27 +0200920static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200922 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100923 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100924 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200925 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Borislav Petkovd236d742008-04-18 00:46:27 +0200928static void idetape_create_rewind_cmd(ide_drive_t *drive,
929 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200931 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100932 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200933 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Borislav Petkovd236d742008-04-18 00:46:27 +0200936static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200938 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100939 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200941 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Borislav Petkovd236d742008-04-18 00:46:27 +0200944static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200946 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100947 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100948 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200950 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Borislav Petkovd9df9372008-04-27 15:38:34 +0200953static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100956
Borislav Petkov54abf372008-02-06 02:57:52 +0100957 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200958 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100959 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return;
961 }
Tejun Heo6cf3d542009-04-19 08:46:02 +0900962 if (tape->buf) {
Tejun Heo71294cf2009-04-19 08:46:03 +0900963 size_t aligned = roundup(tape->valid, tape->blk_size);
964
965 memset(tape->cur, 0, aligned - tape->valid);
Tejun Heo4344d072009-04-19 08:46:03 +0900966 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
Tejun Heo6cf3d542009-04-19 08:46:02 +0900967 kfree(tape->buf);
968 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100970 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Tejun Heo3596b662009-04-19 08:46:02 +0900973static int idetape_init_rw(ide_drive_t *drive, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 idetape_tape_t *tape = drive->driver_data;
Tejun Heo3596b662009-04-19 08:46:02 +0900976 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Tejun Heo3596b662009-04-19 08:46:02 +0900978 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Tejun Heo3596b662009-04-19 08:46:02 +0900980 if (tape->chrdev_dir == dir)
981 return 0;
982
983 if (tape->chrdev_dir == IDETAPE_DIR_READ)
984 ide_tape_discard_merge_buffer(drive, 1);
985 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
986 ide_tape_flush_merge_buffer(drive);
987 idetape_flush_tape_buffers(drive);
988 }
989
990 if (tape->buf || tape->valid) {
991 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
992 tape->valid = 0;
993 }
994
995 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
996 if (!tape->buf)
997 return -ENOMEM;
998 tape->chrdev_dir = dir;
999 tape->cur = tape->buf;
1000
1001 /*
1002 * Issue a 0 rw command to ensure that DSC handshake is
1003 * switched from completion mode to buffer available mode. No
1004 * point in issuing this if DSC overlap isn't supported, some
1005 * drives (Seagate STT3401A) will return an error.
1006 */
1007 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1008 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
1009 : REQ_IDETAPE_WRITE;
1010
1011 rc = idetape_queue_rw_tail(drive, cmd, 0);
1012 if (rc < 0) {
1013 kfree(tape->buf);
1014 tape->buf = NULL;
1015 tape->chrdev_dir = IDETAPE_DIR_NONE;
1016 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return 0;
1021}
1022
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001023static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 idetape_tape_t *tape = drive->driver_data;
Tejun Heo6cf3d542009-04-19 08:46:02 +09001026
1027 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 while (bcount) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001030 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Tejun Heo71294cf2009-04-19 08:46:03 +09001032 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035}
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001038 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1039 * currently support only one partition.
1040 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001041static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001043 struct ide_tape_obj *tape = drive->driver_data;
1044 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 int retval;
Borislav Petkovd236d742008-04-18 00:46:27 +02001046 struct ide_atapi_pc pc;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001047
1048 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 idetape_create_rewind_cmd(drive, &pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001051 retval = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (retval)
1053 return retval;
1054
1055 idetape_create_read_position_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001056 retval = ide_queue_pc_tail(drive, disk, &pc, pc.buf, pc.req_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (retval)
1058 return retval;
1059 return 0;
1060}
1061
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001062/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001063static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1064 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 void __user *argp = (void __user *)arg;
1068
Borislav Petkovd59823f2008-02-02 19:56:51 +01001069 struct idetape_config {
1070 int dsc_rw_frequency;
1071 int dsc_media_access_frequency;
1072 int nr_stages;
1073 } config;
1074
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001075 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001078 case 0x0340:
1079 if (copy_from_user(&config, argp, sizeof(config)))
1080 return -EFAULT;
1081 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001082 break;
1083 case 0x0350:
1084 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001085 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001086 if (copy_to_user(argp, &config, sizeof(config)))
1087 return -EFAULT;
1088 break;
1089 default:
1090 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092 return 0;
1093}
1094
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001095static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1096 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001099 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001100 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001101 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001102 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (mt_count == 0)
1105 return 0;
1106 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001107 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001109 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111
Borislav Petkov54abf372008-02-06 02:57:52 +01001112 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001113 tape->valid = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001114 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001116 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001120 case MTFSF:
1121 case MTBSF:
1122 idetape_create_space_cmd(&pc, mt_count - count,
1123 IDETAPE_SPACE_OVER_FILEMARK);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001124 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001125 case MTFSFM:
1126 case MTBSFM:
1127 if (!sprev)
1128 return -EIO;
1129 retval = idetape_space_over_filemarks(drive, MTFSF,
1130 mt_count - count);
1131 if (retval)
1132 return retval;
1133 count = (MTBSFM == mt_op ? 1 : -1);
1134 return idetape_space_over_filemarks(drive, MTFSF, count);
1135 default:
1136 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1137 mt_op);
1138 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001143 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001145 * The tape is optimized to maximize throughput when it is transferring an
1146 * integral number of the "continuous transfer limit", which is a parameter of
1147 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001149 * As of version 1.3 of the driver, the character device provides an abstract
1150 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1151 * same backup/restore procedure is supported. The driver will internally
1152 * convert the requests to the recommended transfer unit, so that an unmatch
1153 * between the user's block size to the recommended size will only result in a
1154 * (slightly) increased driver overhead, but will no longer hit performance.
1155 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001157static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1158 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001160 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 ide_drive_t *drive = tape->drive;
Tejun Heo4344d072009-04-19 08:46:03 +09001162 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001163 ssize_t ret = 0;
Tejun Heo4344d072009-04-19 08:46:03 +09001164 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001166 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Borislav Petkov54abf372008-02-06 02:57:52 +01001168 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001169 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001170 if (count > tape->blk_size &&
1171 (count % tape->blk_size) == 0)
1172 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 }
Tejun Heo4344d072009-04-19 08:46:03 +09001174
Tejun Heo3596b662009-04-19 08:46:02 +09001175 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001176 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return rc;
Tejun Heo4344d072009-04-19 08:46:03 +09001178
1179 while (done < count) {
1180 size_t todo;
1181
1182 /* refill if staging buffer is empty */
1183 if (!tape->valid) {
1184 /* If we are at a filemark, nothing more to read */
1185 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1186 break;
1187 /* read */
1188 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1189 tape->buffer_size) <= 0)
1190 break;
1191 }
1192
1193 /* copy out */
1194 todo = min_t(size_t, count - done, tape->valid);
1195 if (copy_to_user(buf + done, tape->cur, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001196 ret = -EFAULT;
Tejun Heo4344d072009-04-19 08:46:03 +09001197
1198 tape->cur += todo;
1199 tape->valid -= todo;
1200 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
Tejun Heo4344d072009-04-19 08:46:03 +09001202
1203 if (!done && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001204 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 idetape_space_over_filemarks(drive, MTFSF, 1);
1207 return 0;
1208 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001209
Tejun Heo4344d072009-04-19 08:46:03 +09001210 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001213static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 size_t count, loff_t *ppos)
1215{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001216 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 ide_drive_t *drive = tape->drive;
Tejun Heo4344d072009-04-19 08:46:03 +09001218 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001219 ssize_t ret = 0;
Tejun Heo3596b662009-04-19 08:46:02 +09001220 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /* The drive is write protected. */
1223 if (tape->write_prot)
1224 return -EACCES;
1225
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001226 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 /* Initialize write operation */
Tejun Heo3596b662009-04-19 08:46:02 +09001229 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1230 if (rc < 0)
1231 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Tejun Heo4344d072009-04-19 08:46:03 +09001233 while (done < count) {
1234 size_t todo;
1235
1236 /* flush if staging buffer is full */
1237 if (tape->valid == tape->buffer_size &&
1238 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1239 tape->buffer_size) <= 0)
1240 return rc;
1241
1242 /* copy in */
1243 todo = min_t(size_t, count - done,
1244 tape->buffer_size - tape->valid);
1245 if (copy_from_user(tape->cur, buf + done, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001246 ret = -EFAULT;
Tejun Heo4344d072009-04-19 08:46:03 +09001247
1248 tape->cur += todo;
1249 tape->valid += todo;
1250 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
Tejun Heo4344d072009-04-19 08:46:03 +09001252
1253 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001256static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001258 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001259 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 /* Write a filemark */
1262 idetape_create_write_filemark_cmd(drive, &pc, 1);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001263 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1265 return -EIO;
1266 }
1267 return 0;
1268}
1269
1270/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001271 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1272 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001274 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1275 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001276 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001278 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001280 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1281 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001283static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
1285 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001286 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001287 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001288 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001290 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1291 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001294 case MTFSF:
1295 case MTFSFM:
1296 case MTBSF:
1297 case MTBSFM:
1298 if (!mt_count)
1299 return 0;
1300 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1301 default:
1302 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001306 case MTWEOF:
1307 if (tape->write_prot)
1308 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001309 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001310 for (i = 0; i < mt_count; i++) {
1311 retval = idetape_write_filemark(drive);
1312 if (retval)
1313 return retval;
1314 }
1315 return 0;
1316 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001317 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001318 if (idetape_rewind_tape(drive))
1319 return -EIO;
1320 return 0;
1321 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001322 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001323 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001324 case MTUNLOAD:
1325 case MTOFFL:
1326 /*
1327 * If door is locked, attempt to unlock before
1328 * attempting to eject.
1329 */
1330 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001331 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001332 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001333 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001334 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001335 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001336 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001337 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001338 return retval;
1339 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001340 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001341 return idetape_flush_tape_buffers(drive);
1342 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001343 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001344 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001345 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001346 case MTEOM:
1347 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001348 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001349 case MTERASE:
1350 (void)idetape_rewind_tape(drive);
1351 idetape_create_erase_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001352 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001353 case MTSETBLK:
1354 if (mt_count) {
1355 if (mt_count < tape->blk_size ||
1356 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001358 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001359 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001360 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001361 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001362 return 0;
1363 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001364 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001365 return idetape_position_tape(drive,
1366 mt_count * tape->user_bs_factor, tape->partition, 0);
1367 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001368 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001369 return idetape_position_tape(drive, 0, mt_count, 0);
1370 case MTFSR:
1371 case MTBSR:
1372 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001373 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001374 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001376 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1377 return 0;
1378 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001379 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001380 if (retval)
1381 return retval;
1382 tape->door_locked = DOOR_UNLOCKED;
1383 return 0;
1384 default:
1385 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1386 mt_op);
1387 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389}
1390
1391/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001392 * Our character device ioctls. General mtio.h magnetic io commands are
1393 * supported here, and not in the corresponding block interface. Our own
1394 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001396static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1397 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001399 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 ide_drive_t *drive = tape->drive;
1401 struct mtop mtop;
1402 struct mtget mtget;
1403 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001404 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 void __user *argp = (void __user *)arg;
1406
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001407 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Borislav Petkov54abf372008-02-06 02:57:52 +01001409 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001410 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 idetape_flush_tape_buffers(drive);
1412 }
1413 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001414 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001415 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001416 position = idetape_read_position(drive);
1417 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 return -EIO;
1419 }
1420 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001421 case MTIOCTOP:
1422 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1423 return -EFAULT;
1424 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1425 case MTIOCGET:
1426 memset(&mtget, 0, sizeof(struct mtget));
1427 mtget.mt_type = MT_ISSCSI2;
1428 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1429 mtget.mt_dsreg =
1430 ((tape->blk_size * tape->user_bs_factor)
1431 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001432
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001433 if (tape->drv_write_prot)
1434 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1435
1436 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1437 return -EFAULT;
1438 return 0;
1439 case MTIOCPOS:
1440 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1441 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1442 return -EFAULT;
1443 return 0;
1444 default:
1445 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001446 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001447 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449}
1450
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001451/*
1452 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1453 * block size with the reported value.
1454 */
1455static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1456{
1457 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001458 struct ide_atapi_pc pc;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001459
1460 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001461 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc.buf, pc.req_xfer)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001462 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001463 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001464 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1465 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001466 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001467 }
1468 return;
1469 }
Borislav Petkovd236d742008-04-18 00:46:27 +02001470 tape->blk_size = (pc.buf[4 + 5] << 16) +
1471 (pc.buf[4 + 6] << 8) +
1472 pc.buf[4 + 7];
1473 tape->drv_write_prot = (pc.buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001474}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001476static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1479 ide_drive_t *drive;
1480 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 int retval;
1482
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001483 if (i >= MAX_HWIFS * MAX_DRIVES)
1484 return -ENXIO;
1485
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001486 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001487 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001488 if (!tape) {
1489 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001490 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001491 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001492
1493 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 /*
1496 * We really want to do nonseekable_open(inode, filp); here, but some
1497 * versions of tar incorrectly call lseek on tapes and bail out if that
1498 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1499 */
1500 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 drive = tape->drive;
1503
1504 filp->private_data = tape;
1505
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001506 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 retval = -EBUSY;
1508 goto out_put_tape;
1509 }
1510
1511 retval = idetape_wait_ready(drive, 60 * HZ);
1512 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001513 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1515 goto out_put_tape;
1516 }
1517
1518 idetape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001519 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 (void)idetape_rewind_tape(drive);
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001523 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525 /* Set write protect flag if device is opened as read-only. */
1526 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1527 tape->write_prot = 1;
1528 else
1529 tape->write_prot = tape->drv_write_prot;
1530
1531 /* Make sure drive isn't write protected if user wants to write. */
1532 if (tape->write_prot) {
1533 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1534 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001535 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 retval = -EROFS;
1537 goto out_put_tape;
1538 }
1539 }
1540
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001541 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001542 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001543 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001544 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1545 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001548 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return 0;
1550
1551out_put_tape:
1552 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001553 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return retval;
1555}
1556
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001557static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 idetape_tape_t *tape = drive->driver_data;
1560
Borislav Petkovd9df9372008-04-27 15:38:34 +02001561 ide_tape_flush_merge_buffer(drive);
Tejun Heo6cf3d542009-04-19 08:46:02 +09001562 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1563 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001564 idetape_pad_zeros(drive, tape->blk_size *
1565 (tape->user_bs_factor - 1));
Tejun Heo6cf3d542009-04-19 08:46:02 +09001566 kfree(tape->buf);
1567 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
1569 idetape_write_filemark(drive);
1570 idetape_flush_tape_buffers(drive);
1571 idetape_flush_tape_buffers(drive);
1572}
1573
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001574static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001576 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 unsigned int minor = iminor(inode);
1579
1580 lock_kernel();
1581 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001582
1583 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Borislav Petkov54abf372008-02-06 02:57:52 +01001585 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001587 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001589 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001591
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001592 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01001594 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001596 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001597 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001600 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 ide_tape_put(tape);
1602 unlock_kernel();
1603 return 0;
1604}
1605
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001606static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001609 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001610 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001611 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 idetape_create_inquiry_cmd(&pc);
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001614 pc.buf_size = sizeof(pc_buf);
1615
Borislav Petkovb13345f2009-05-02 10:26:12 +02001616 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001617 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1618 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return;
1620 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001621 memcpy(vendor_id, &pc_buf[8], 8);
1622 memcpy(product_id, &pc_buf[16], 16);
1623 memcpy(fw_rev, &pc_buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001624
Borislav Petkov801bd322008-09-27 19:32:17 +02001625 ide_fixstring(vendor_id, 8, 0);
1626 ide_fixstring(product_id, 16, 0);
1627 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001628
Borislav Petkov801bd322008-09-27 19:32:17 +02001629 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001630 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
1633/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001634 * Ask the tape about its various parameters. In particular, we will adjust our
1635 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001637static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
1639 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001640 struct ide_atapi_pc pc;
Borislav Petkovb13345f2009-05-02 10:26:12 +02001641 u8 buf[24], *caps;
Borislav Petkovb6422012008-02-02 19:56:49 +01001642 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001645 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001646 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1647 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001648 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001649 put_unaligned(52, (u16 *)&tape->caps[12]);
1650 put_unaligned(540, (u16 *)&tape->caps[14]);
1651 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return;
1653 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001654 caps = buf + 4 + buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Borislav Petkovb6422012008-02-02 19:56:49 +01001656 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001657 speed = be16_to_cpup((__be16 *)&caps[14]);
1658 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001660 *(u16 *)&caps[8] = max_speed;
1661 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1662 *(u16 *)&caps[14] = speed;
1663 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001664
1665 if (!speed) {
1666 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1667 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001668 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001670 if (!max_speed) {
1671 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1672 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001673 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
1675
Borislav Petkovb6422012008-02-02 19:56:49 +01001676 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001677
1678 /* device lacks locking support according to capabilities page */
1679 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001680 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001681
Borislav Petkovb6422012008-02-02 19:56:49 +01001682 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001683 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001684 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001685 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001688#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001689#define ide_tape_devset_get(name, field) \
1690static int get_##name(ide_drive_t *drive) \
1691{ \
1692 idetape_tape_t *tape = drive->driver_data; \
1693 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001695
1696#define ide_tape_devset_set(name, field) \
1697static int set_##name(ide_drive_t *drive, int arg) \
1698{ \
1699 idetape_tape_t *tape = drive->driver_data; \
1700 tape->field = arg; \
1701 return 0; \
1702}
1703
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001704#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001705ide_tape_devset_get(_name, _field) \
1706ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001707IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001708
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001709#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001710ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001711IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001712
1713static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1714static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1715static int divf_buffer(ide_drive_t *drive) { return 2; }
1716static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1717
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001718ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001719
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001720ide_tape_devset_rw_field(debug_mask, debug_mask);
1721ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001722
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001723ide_tape_devset_r_field(avg_speed, avg_speed);
1724ide_tape_devset_r_field(speed, caps[14]);
1725ide_tape_devset_r_field(buffer, caps[16]);
1726ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001727
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001728static const struct ide_proc_devset idetape_settings[] = {
1729 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1730 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1731 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1732 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1733 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1734 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1735 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1736 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01001737 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001738};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001739#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001742 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001744 * 1. Initialize our various state variables.
1745 * 2. Ask the tape for its capabilities.
1746 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1747 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001749 * Note that at this point ide.c already assigned us an irq, so that we can
1750 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001752static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Borislav Petkov83042b22008-04-27 15:38:27 +02001754 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001756 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001757 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02001759 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001760
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001761 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1762
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001763 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1764 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1765 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001766 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001770 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001771 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 tape->minor = minor;
1774 tape->name[0] = 'h';
1775 tape->name[1] = 't';
1776 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001777 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 idetape_get_inquiry_results(drive);
1780 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001781 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001783 tape->buffer_size = *ctl * tape->blk_size;
1784 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001786 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001787 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001789 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Borislav Petkov83042b22008-04-27 15:38:27 +02001791 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001792 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Borislav Petkovf73850a2008-04-27 15:38:33 +02001794 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001797 * Ensure that the number we got makes sense; limit it within
1798 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001800 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1801 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02001803 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001804 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001805 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1806 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01001807 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001808 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001810 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
Russell King4031bbe2006-01-06 11:41:00 +00001813static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
1815 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001817 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001818 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 ide_unregister_region(tape->disk);
1820
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001821 mutex_lock(&idetape_ref_mutex);
1822 put_device(&tape->dev);
1823 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001826static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001828 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 ide_drive_t *drive = tape->drive;
1830 struct gendisk *g = tape->disk;
1831
Tejun Heo6cf3d542009-04-19 08:46:02 +09001832 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001833
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001834 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001836 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001837 device_destroy(idetape_sysfs_class,
1838 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 idetape_devs[tape->minor] = NULL;
1840 g->private_data = NULL;
1841 put_disk(g);
1842 kfree(tape);
1843}
1844
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001845#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846static int proc_idetape_read_name
1847 (char *page, char **start, off_t off, int count, int *eof, void *data)
1848{
1849 ide_drive_t *drive = (ide_drive_t *) data;
1850 idetape_tape_t *tape = drive->driver_data;
1851 char *out = page;
1852 int len;
1853
1854 len = sprintf(out, "%s\n", tape->name);
1855 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1856}
1857
1858static ide_proc_entry_t idetape_proc[] = {
1859 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1860 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1861 { NULL, 0, NULL, NULL }
1862};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001863
1864static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1865{
1866 return idetape_proc;
1867}
1868
1869static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1870{
1871 return idetape_settings;
1872}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873#endif
1874
Russell King4031bbe2006-01-06 11:41:00 +00001875static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001877static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001878 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001879 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001880 .name = "ide-tape",
1881 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001882 },
Russell King4031bbe2006-01-06 11:41:00 +00001883 .probe = ide_tape_probe,
1884 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001887#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001888 .proc_entries = ide_tape_proc_entries,
1889 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001890#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891};
1892
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001893/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001894static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 .owner = THIS_MODULE,
1896 .read = idetape_chrdev_read,
1897 .write = idetape_chrdev_write,
1898 .ioctl = idetape_chrdev_ioctl,
1899 .open = idetape_chrdev_open,
1900 .release = idetape_chrdev_release,
1901};
1902
Al Viroa4600f82008-03-02 10:27:58 -05001903static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904{
Al Viroa4600f82008-03-02 10:27:58 -05001905 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001907 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return -ENXIO;
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 return 0;
1911}
1912
Al Viroa4600f82008-03-02 10:27:58 -05001913static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001915 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return 0;
1919}
1920
Al Viroa4600f82008-03-02 10:27:58 -05001921static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 unsigned int cmd, unsigned long arg)
1923{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001924 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04001926 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (err == -EINVAL)
1928 err = idetape_blkdev_ioctl(drive, cmd, arg);
1929 return err;
1930}
1931
1932static struct block_device_operations idetape_block_ops = {
1933 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05001934 .open = idetape_open,
1935 .release = idetape_release,
1936 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937};
1938
Russell King4031bbe2006-01-06 11:41:00 +00001939static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 idetape_tape_t *tape;
1942 struct gendisk *g;
1943 int minor;
1944
1945 if (!strstr("ide-tape", drive->driver_req))
1946 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 if (drive->media != ide_tape)
1949 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001950
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001951 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1952 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001953 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1954 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 goto failed;
1956 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001957 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001959 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1960 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 goto failed;
1962 }
1963
1964 g = alloc_disk(1 << PARTN_BITS);
1965 if (!g)
1966 goto out_free_tape;
1967
1968 ide_init_disk(g, drive);
1969
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001970 tape->dev.parent = &drive->gendev;
1971 tape->dev.release = ide_tape_release;
1972 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1973
1974 if (device_register(&tape->dev))
1975 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 tape->drive = drive;
1978 tape->driver = &idetape_driver;
1979 tape->disk = g;
1980
1981 g->private_data = &tape->driver;
1982
1983 drive->driver_data = tape;
1984
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001985 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 for (minor = 0; idetape_devs[minor]; minor++)
1987 ;
1988 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001989 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 idetape_setup(drive, tape, minor);
1992
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07001993 device_create(idetape_sysfs_class, &drive->gendev,
1994 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1995 device_create(idetape_sysfs_class, &drive->gendev,
1996 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
1997 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07001998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 g->fops = &idetape_block_ops;
2000 ide_register_region(g);
2001
2002 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002003
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002004out_free_disk:
2005 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006out_free_tape:
2007 kfree(tape);
2008failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002009 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010}
2011
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002012static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002014 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002015 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 unregister_chrdev(IDETAPE_MAJOR, "ht");
2017}
2018
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002019static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
Will Dysond5dee802005-09-16 02:55:07 -07002021 int error = 1;
2022 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2023 if (IS_ERR(idetape_sysfs_class)) {
2024 idetape_sysfs_class = NULL;
2025 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2026 error = -EBUSY;
2027 goto out;
2028 }
2029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002031 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2032 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002033 error = -EBUSY;
2034 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 }
Will Dysond5dee802005-09-16 02:55:07 -07002036
2037 error = driver_register(&idetape_driver.gen_driver);
2038 if (error)
2039 goto out_free_driver;
2040
2041 return 0;
2042
2043out_free_driver:
2044 driver_unregister(&idetape_driver.gen_driver);
2045out_free_class:
2046 class_destroy(idetape_sysfs_class);
2047out:
2048 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
Kay Sievers263756e2005-12-12 18:03:44 +01002051MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052module_init(idetape_init);
2053module_exit(idetape_exit);
2054MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002055MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2056MODULE_LICENSE("GPL");