blob: 9ca2665faf33ac836a2b39da2d9cac39813fc7cd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/genhd.h>
34#include <linux/slab.h>
35#include <linux/pci.h>
36#include <linux/ide.h>
37#include <linux/smp_lock.h>
38#include <linux/completion.h>
39#include <linux/bitops.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Borislav Petkov90699ce2008-02-02 19:56:50 +010041#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/byteorder.h>
Borislav Petkovc837cfa2008-02-06 02:57:54 +010044#include <linux/irq.h>
45#include <linux/uaccess.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtio.h>
49
Borislav Petkov8004a8c2008-02-06 02:57:51 +010050enum {
51 /* output errors only */
52 DBG_ERR = (1 << 0),
53 /* output all sense key/asc */
54 DBG_SENSE = (1 << 1),
55 /* info regarding all chrdev-related procedures */
56 DBG_CHRDEV = (1 << 2),
57 /* all remaining procedures */
58 DBG_PROCS = (1 << 3),
Borislav Petkov8004a8c2008-02-06 02:57:51 +010059};
60
61/* define to see debug info */
62#define IDETAPE_DEBUG_LOG 0
63
64#if IDETAPE_DEBUG_LOG
65#define debug_log(lvl, fmt, args...) \
66{ \
67 if (tape->debug_mask & lvl) \
68 printk(KERN_INFO "ide-tape: " fmt, ## args); \
69}
70#else
71#define debug_log(lvl, fmt, args...) do {} while (0)
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * After each failed packet command we issue a request sense command and retry
77 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010079 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81#define IDETAPE_MAX_PC_RETRIES 3
82
83/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010084 * The following parameter is used to select the point in the internal tape fifo
85 * in which we will start to refill the buffer. Decreasing the following
86 * parameter will improve the system's latency and interactive response, while
87 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010089#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010092 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010094 * Polling for DSC (a single bit in the status register) is a very important
95 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010097 * 1. Before a read/write packet command, to ensure that we can transfer data
98 * from/to the tape's data buffers, without causing an actual media access.
99 * In case the tape is not ready yet, we take out our request from the device
100 * request queue, so that ide.c could service requests from the other device
101 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100103 * 2. After the successful initialization of a "media access packet command",
104 * which is a command that can take a long time to complete (the interval can
105 * range from several seconds to even an hour). Again, we postpone our request
106 * in the middle to free the bus for the other device. The polling frequency
107 * here should be lower than the read/write frequency since those media access
108 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
109 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
110 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100112 * We also set a timeout for the timer, in case something goes wrong. The
113 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100115
116/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
118#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
119#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
120#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
121#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
122#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
123#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
124
125/*************************** End of tunable parameters ***********************/
126
Borislav Petkov54abf372008-02-06 02:57:52 +0100127/* tape directions */
128enum {
129 IDETAPE_DIR_NONE = (1 << 0),
130 IDETAPE_DIR_READ = (1 << 1),
131 IDETAPE_DIR_WRITE = (1 << 2),
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Borislav Petkov03056b92008-04-18 00:46:26 +0200134/* Tape door status */
135#define DOOR_UNLOCKED 0
136#define DOOR_LOCKED 1
137#define DOOR_EXPLICITLY_LOCKED 2
138
139/* Some defines for the SPACE command */
140#define IDETAPE_SPACE_OVER_FILEMARK 1
141#define IDETAPE_SPACE_TO_EOD 3
142
143/* Some defines for the LOAD UNLOAD command */
144#define IDETAPE_LU_LOAD_MASK 1
145#define IDETAPE_LU_RETENSION_MASK 2
146#define IDETAPE_LU_EOT_MASK 4
147
Borislav Petkov03056b92008-04-18 00:46:26 +0200148/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
149#define IDETAPE_BLOCK_DESCRIPTOR 0
150#define IDETAPE_CAPABILITIES_PAGE 0x2a
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100153 * Most of our global data which we need to save even as we leave the driver due
154 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100157 ide_drive_t *drive;
158 struct ide_driver *driver;
159 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100160 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200162 /* used by REQ_IDETAPE_{READ,WRITE} requests */
163 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100166 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100168 * While polling for DSC we use postponed_rq to postpone the current
169 * request so that ide.c will be able to service pending requests on the
170 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200171 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173 struct request *postponed_rq;
174 /* The time in which we started polling for DSC */
175 unsigned long dsc_polling_start;
176 /* Timer used to poll for dsc */
177 struct timer_list dsc_timer;
178 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100179 unsigned long best_dsc_rw_freq;
180 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned long dsc_timeout;
182
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100183 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 u8 partition;
185 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100186 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100188 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 u8 sense_key, asc, ascq;
190
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100191 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned int minor;
193 /* device name */
194 char name[4];
195 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100196 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Borislav Petkov54bb2072008-02-06 02:57:52 +0100198 /* tape block size, usually 512 or 1024 bytes */
199 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100203 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100206 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100208 * At most, there is only one ide-tape originated data transfer request
209 * in the device request queue. This allows ide.c to easily service
210 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200212
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100213 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200214 int buffer_size;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900215 /* Staging buffer of buffer_size bytes */
216 void *buf;
217 /* The read/write cursor */
218 void *cur;
219 /* The number of valid bytes in buf */
220 size_t valid;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100221
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100222 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned long avg_time;
224 int avg_size;
225 int avg_speed;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* the door is currently locked */
228 int door_locked;
229 /* the tape hardware is write protected */
230 char drv_write_prot;
231 /* the tape is write protected (hardware or opened as read-only) */
232 char write_prot;
233
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100234 u32 debug_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235} idetape_tape_t;
236
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800237static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Will Dysond5dee802005-09-16 02:55:07 -0700239static struct class *idetape_sysfs_class;
240
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100241static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
244{
245 struct ide_tape_obj *tape = NULL;
246
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800247 mutex_lock(&idetape_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +0200248 tape = ide_drv_g(disk, ide_tape_obj);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200249 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200250 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200251 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200252 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100253 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200254 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800255 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return tape;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void ide_tape_put(struct ide_tape_obj *tape)
260{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200261 ide_drive_t *drive = tape->drive;
262
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800263 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100264 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200265 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800266 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100270 * The variables below are used for the character device interface. Additional
271 * state variables are defined in our ide_drive_t structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100273static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
276{
277 struct ide_tape_obj *tape = NULL;
278
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800279 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 tape = idetape_devs[i];
281 if (tape)
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100282 get_device(&tape->dev);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800283 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return tape;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100288 * called on each failed packet command retry to analyze the request sense. We
289 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Borislav Petkovae3a8382009-05-02 10:58:17 +0200291static void idetape_analyze_error(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100294 struct ide_atapi_pc *pc = drive->failed_pc;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200295 struct request *rq = drive->hwif->rq;
Borislav Petkovae3a8382009-05-02 10:58:17 +0200296 u8 *sense = bio_data(rq->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Borislav Petkov1b5db432008-02-02 19:56:48 +0100298 tape->sense_key = sense[2] & 0xF;
299 tape->asc = sense[12];
300 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100301
302 debug_log(DBG_ERR, "pc = %x, sense key = %x, asc = %x, ascq = %x\n",
303 pc->c[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Borislav Petkov077e6db2009-05-01 21:21:02 +0200305 /* correct remaining bytes to transfer */
Tejun Heoe998f302009-04-19 08:46:02 +0900306 if (pc->flags & PC_FLAG_DMA_ERROR)
Borislav Petkov077e6db2009-05-01 21:21:02 +0200307 rq->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /*
310 * If error was the result of a zero-length read or write command,
311 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
312 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
313 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100314 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100315 /* length == 0 */
316 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
317 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* don't report an error, everything's ok */
319 pc->error = 0;
320 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200321 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100324 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100325 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200326 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100328 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100329 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
330 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100331 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200332 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100335 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100336 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100337 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200338 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200340 if (!(pc->flags & PC_FLAG_ABORT) &&
Borislav Petkov077e6db2009-05-01 21:21:02 +0200341 (blk_rq_bytes(rq) - rq->resid_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
343 }
344}
345
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200346static void ide_tape_handle_dsc(ide_drive_t *);
347
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100348static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200351 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100352 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200353 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100354 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100356 debug_log(DBG_PROCS, "Enter %s\n", __func__);
357
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200358 if (dsc)
359 ide_tape_handle_dsc(drive);
360
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100361 if (drive->failed_pc == pc)
362 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200363
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200364 if (pc->c[0] == REQUEST_SENSE) {
365 if (uptodate)
Borislav Petkovae3a8382009-05-02 10:58:17 +0200366 idetape_analyze_error(drive);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200367 else
368 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
369 "itself - Aborting request!\n");
370 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov077e6db2009-05-01 21:21:02 +0200371 unsigned int blocks =
372 (blk_rq_bytes(rq) - rq->resid_len) / tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200373
374 tape->avg_size += blocks * tape->blk_size;
375
376 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
377 tape->avg_speed = tape->avg_size * HZ /
378 (jiffies - tape->avg_time) / 1024;
379 tape->avg_size = 0;
380 tape->avg_time = jiffies;
381 }
382
383 tape->first_frame += blocks;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200384
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100385 if (pc->error) {
386 uptodate = 0;
387 err = pc->error;
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100390 rq->errors = err;
391
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100392 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100396 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100397 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100399static void idetape_postpone_request(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 idetape_tape_t *tape = drive->driver_data;
402
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100403 debug_log(DBG_PROCS, "Enter %s\n", __func__);
404
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100405 tape->postponed_rq = drive->hwif->rq;
406
Borislav Petkov54bb2072008-02-06 02:57:52 +0100407 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200410static void ide_tape_handle_dsc(ide_drive_t *drive)
411{
412 idetape_tape_t *tape = drive->driver_data;
413
414 /* Media access command */
415 tape->dsc_polling_start = jiffies;
416 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
417 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
418 /* Allow ide.c to handle other requests */
419 idetape_postpone_request(drive);
420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100423 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200425 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100426 * until we finish handling it. Each packet command is associated with a
427 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100429 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100431 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200432 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200434 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100435 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100437 * 3. ATAPI Tape media access commands have immediate status with a delayed
438 * process. In case of a successful initiation of a media access packet command,
439 * the DSC bit will be set when the actual execution of the command is finished.
440 * Since the tape drive will not issue an interrupt, we have to poll for this
441 * event. In this case, we define the request as "low priority request" by
442 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
443 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100445 * ide.c will then give higher priority to requests which originate from the
446 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100448 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100450 * 5. In case an error was found, we queue a request sense packet command in
451 * front of the request queue and retry the operation up to
452 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100454 * 6. In case no error was found, or we decided to give up and not to retry
455 * again, the callback function will be called and then we will handle the next
456 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100459static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
460 struct ide_cmd *cmd,
461 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200464 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100466 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
467 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200470 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200473 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heoeb6a61b2009-04-19 08:46:02 +0900474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100476 * We will "abort" retrying a packet command in case legitimate
477 * error code was received (crossing a filemark, or end of the
478 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200480 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100481 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 tape->sense_key == 2 && tape->asc == 4 &&
483 (tape->ascq == 1 || tape->ascq == 8))) {
484 printk(KERN_ERR "ide-tape: %s: I/O error, "
485 "pc = %2x, key = %2x, "
486 "asc = %2x, ascq = %2x\n",
487 tape->name, pc->c[0],
488 tape->sense_key, tape->asc,
489 tape->ascq);
490 }
491 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100492 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
Tejun Heoeb6a61b2009-04-19 08:46:02 +0900494
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100495 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200496 drive->pc_callback(drive, 0);
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200497 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200498 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100500 debug_log(DBG_SENSE, "Retry #%d, cmd = %02X\n", pc->retries, pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100504 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100507/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200508static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200510 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100511 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100513 /* DBD = 1 - Don't return block descriptors */
514 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 pc->c[2] = page_code;
516 /*
517 * Changed pc->c[3] to 0 (255 will at best return unused info).
518 *
519 * For SCSI this byte is defined as subpage instead of high byte
520 * of length and some IDE drives seem to interpret it this way
521 * and return an error when 255 is used.
522 */
523 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100524 /* We will just discard data in that case */
525 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200527 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200529 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200531 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100534static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200536 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200538 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100539 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200541 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100542
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200543 if (stat & ATA_DSC) {
544 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100546 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 printk(KERN_ERR "ide-tape: %s: I/O error, ",
548 tape->name);
549 /* Retry operation */
Borislav Petkov06875322009-04-19 07:00:42 +0900550 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200551 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100555 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100556 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200558 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return ide_stopped;
560}
561
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200562static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200563 struct ide_atapi_pc *pc, struct request *rq,
564 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Borislav Petkov10c0b342009-05-01 20:29:53 +0200566 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
Borislav Petkov0014c752008-07-23 19:56:00 +0200567
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200568 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100569 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 pc->c[1] = 1;
Borislav Petkov19f52a72009-05-04 09:53:03 +0200571
572 if (blk_rq_bytes(rq) == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200573 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Tejun Heo6cf3d542009-04-19 08:46:02 +0900575 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200576 pc->c[0] = READ_6;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900577 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200578 pc->c[0] = WRITE_6;
579 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200580 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200581
582 memcpy(rq->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585static ide_startstop_t idetape_do_request(ide_drive_t *drive,
586 struct request *rq, sector_t block)
587{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200588 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200590 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 struct request *postponed_rq = tape->postponed_rq;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100592 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100593 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Tejun Heo9780e2d2009-05-07 22:24:40 +0900595 debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %u\n"
596 (unsigned long long)blk_rq_pos(rq), blk_rq_sectors(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Borislav Petkov06875322009-04-19 07:00:42 +0900598 if (!(blk_special_request(rq) || blk_sense_request(rq))) {
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100599 /* We do not support buffer cache originated requests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
Jens Axboe4aff5e22006-08-10 08:44:47 +0200601 "request queue (%d)\n", drive->name, rq->cmd_type);
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100602 if (blk_fs_request(rq) == 0 && rq->errors == 0)
603 rq->errors = -EIO;
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100604 ide_complete_rq(drive, -EIO, ide_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return ide_stopped;
606 }
607
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100608 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100609 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
610 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200611 goto out;
612 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (postponed_rq != NULL)
615 if (rq != postponed_rq) {
616 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
617 "Two DSC requests were queued\n");
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100618 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100619 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100620 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return ide_stopped;
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 tape->postponed_rq = NULL;
625
626 /*
627 * If the tape is still busy, postpone our request and service
628 * the other device meanwhile.
629 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200630 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200632 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
633 (rq->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200634 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200636 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200637 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200638 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200641 if (!test_and_clear_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags) &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200642 (stat & ATA_DSC) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (postponed_rq == NULL) {
644 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100645 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
647 } else if (time_after(jiffies, tape->dsc_timeout)) {
648 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
649 tape->name);
Borislav Petkov83dd5732008-07-23 19:56:00 +0200650 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 idetape_media_access_finished(drive);
652 return ide_stopped;
653 } else {
654 return ide_do_reset(drive);
655 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100656 } else if (time_after(jiffies,
657 tape->dsc_polling_start +
658 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100659 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 idetape_postpone_request(drive);
661 return ide_stopped;
662 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200663 if (rq->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200664 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200665 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 goto out;
667 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200668 if (rq->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200669 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200670 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 goto out;
672 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200673 if (rq->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoac0b0112009-04-19 07:00:42 +0900674 pc = (struct ide_atapi_pc *)rq->special;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200675 rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
676 rq->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 goto out;
678 }
Borislav Petkov83dd5732008-07-23 19:56:00 +0200679 if (rq->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 idetape_media_access_finished(drive);
681 return ide_stopped;
682 }
683 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200684
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200685out:
Borislav Petkov06875322009-04-19 07:00:42 +0900686 /* prepare sense request for this command */
687 ide_prep_sense(drive, rq);
688
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100689 memset(&cmd, 0, sizeof(cmd));
690
691 if (rq_data_dir(rq))
692 cmd.tf_flags |= IDE_TFLAG_WRITE;
693
694 cmd.rq = rq;
695
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200696 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Tejun Heo02e7cf82009-04-19 07:00:42 +0900697 ide_map_sg(drive, &cmd);
698
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100699 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100703 * Write a filemark if write_filemark=1. Flush the device buffers without
704 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100706static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200707 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200709 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100710 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200712 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
716{
717 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200718 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 int load_attempted = 0;
720
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100721 /* Wait for the tape to become ready */
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200722 set_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 timeout += jiffies;
724 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200725 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return 0;
727 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100728 || (tape->asc == 0x3A)) {
729 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (load_attempted)
731 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200732 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 load_attempted = 1;
734 /* not about to be ready */
735 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
736 (tape->ascq == 1 || tape->ascq == 8)))
737 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700738 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740 return -EIO;
741}
742
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100743static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200745 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200746 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 int rc;
748
749 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200750 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100751 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return rc;
753 idetape_wait_ready(drive, 60 * 5 * HZ);
754 return 0;
755}
756
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200757static int ide_tape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200760 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200761 u8 buf[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100763 debug_log(DBG_PROCS, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200765 /* prep cmd */
766 ide_init_pc(&pc);
767 pc.c[0] = READ_POSITION;
768 pc.req_xfer = 20;
769
770 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return -1;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200772
773 if (!pc.error) {
774 debug_log(DBG_SENSE, "BOP - %s\n",
775 (buf[0] & 0x80) ? "Yes" : "No");
776 debug_log(DBG_SENSE, "EOP - %s\n",
777 (buf[0] & 0x40) ? "Yes" : "No");
778
779 if (buf[0] & 0x4) {
780 printk(KERN_INFO "ide-tape: Block location is unknown"
781 "to the tape\n");
782 clear_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
783 return -1;
784 } else {
785 debug_log(DBG_SENSE, "Block Location - %u\n",
786 be32_to_cpup((__be32 *)&buf[4]));
787
788 tape->partition = buf[1];
789 tape->first_frame = be32_to_cpup((__be32 *)&buf[4]);
790 set_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags);
791 }
792 }
793
794 return tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Borislav Petkovd236d742008-04-18 00:46:27 +0200797static void idetape_create_locate_cmd(ide_drive_t *drive,
798 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100799 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200801 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100802 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100804 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200806 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200809static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Borislav Petkov54abf372008-02-06 02:57:52 +0100813 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200814 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200816 clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags);
Tejun Heo6cf3d542009-04-19 08:46:02 +0900817 tape->valid = 0;
818 if (tape->buf != NULL) {
819 kfree(tape->buf);
820 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822
Borislav Petkov54abf372008-02-06 02:57:52 +0100823 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100827 * Position the tape to the requested block using the LOCATE packet command.
828 * A READ POSITION command is then issued to check where we are positioned. Like
829 * all higher level operations, we queue the commands at the tail of the request
830 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100832static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
833 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200836 struct gendisk *disk = tape->disk;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200837 int ret;
Borislav Petkovd236d742008-04-18 00:46:27 +0200838 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Borislav Petkov54abf372008-02-06 02:57:52 +0100840 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200841 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 idetape_wait_ready(drive, 60 * 5 * HZ);
843 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200844 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
845 if (ret)
846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200848 ret = ide_tape_read_position(drive);
849 if (ret < 0)
850 return ret;
851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200854static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100855 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 int seek, position;
859
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200860 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (restore_position) {
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200862 position = ide_tape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200863 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100865 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200866 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return;
868 }
869 }
870}
871
872/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100873 * Generate a read/write request for the block device interface and wait for it
874 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
Tejun Heo71294cf2009-04-19 08:46:03 +0900876static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200879 struct request *rq;
Tejun Heoe998f302009-04-19 08:46:02 +0900880 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100882 debug_log(DBG_SENSE, "%s: cmd=%d\n", __func__, cmd);
Tejun Heoe998f302009-04-19 08:46:02 +0900883 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Tejun Heo71294cf2009-04-19 08:46:03 +0900884 BUG_ON(size < 0 || size % tape->blk_size);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100885
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200886 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
887 rq->cmd_type = REQ_TYPE_SPECIAL;
Borislav Petkov83dd5732008-07-23 19:56:00 +0200888 rq->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200889 rq->rq_disk = tape->disk;
Tejun Heoe998f302009-04-19 08:46:02 +0900890
891 if (size) {
Tejun Heo6cf3d542009-04-19 08:46:02 +0900892 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Tejun Heoe998f302009-04-19 08:46:02 +0900893 __GFP_WAIT);
894 if (ret)
895 goto out_put;
896 }
897
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200898 blk_execute_rq(drive->queue, tape->disk, rq, 0);
899
Tejun Heo6cf3d542009-04-19 08:46:02 +0900900 /* calculate the number of transferred bytes and update buffer state */
Tejun Heoc3a4d782009-05-07 22:24:37 +0900901 size -= rq->resid_len;
Tejun Heo6cf3d542009-04-19 08:46:02 +0900902 tape->cur = tape->buf;
Tejun Heoe998f302009-04-19 08:46:02 +0900903 if (cmd == REQ_IDETAPE_READ)
Tejun Heo6cf3d542009-04-19 08:46:02 +0900904 tape->valid = size;
905 else
906 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Tejun Heoe998f302009-04-19 08:46:02 +0900908 ret = size;
909 if (rq->errors == IDE_DRV_ERROR_GENERAL)
910 ret = -EIO;
Tejun Heoe998f302009-04-19 08:46:02 +0900911out_put:
912 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200913 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
Borislav Petkovd236d742008-04-18 00:46:27 +0200916static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200918 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100919 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100920 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200921 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Borislav Petkovd236d742008-04-18 00:46:27 +0200924static void idetape_create_rewind_cmd(ide_drive_t *drive,
925 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200927 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100928 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200929 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Borislav Petkovd236d742008-04-18 00:46:27 +0200932static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200934 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100935 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200937 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Borislav Petkovd236d742008-04-18 00:46:27 +0200940static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200942 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100943 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100944 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200946 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Borislav Petkovd9df9372008-04-27 15:38:34 +0200949static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100952
Borislav Petkov54abf372008-02-06 02:57:52 +0100953 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200954 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100955 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return;
957 }
Tejun Heo6cf3d542009-04-19 08:46:02 +0900958 if (tape->buf) {
Tejun Heo71294cf2009-04-19 08:46:03 +0900959 size_t aligned = roundup(tape->valid, tape->blk_size);
960
961 memset(tape->cur, 0, aligned - tape->valid);
Tejun Heo4344d072009-04-19 08:46:03 +0900962 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
Tejun Heo6cf3d542009-04-19 08:46:02 +0900963 kfree(tape->buf);
964 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100966 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Tejun Heo3596b662009-04-19 08:46:02 +0900969static int idetape_init_rw(ide_drive_t *drive, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 idetape_tape_t *tape = drive->driver_data;
Tejun Heo3596b662009-04-19 08:46:02 +0900972 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Tejun Heo3596b662009-04-19 08:46:02 +0900974 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Tejun Heo3596b662009-04-19 08:46:02 +0900976 if (tape->chrdev_dir == dir)
977 return 0;
978
979 if (tape->chrdev_dir == IDETAPE_DIR_READ)
980 ide_tape_discard_merge_buffer(drive, 1);
981 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
982 ide_tape_flush_merge_buffer(drive);
983 idetape_flush_tape_buffers(drive);
984 }
985
986 if (tape->buf || tape->valid) {
987 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
988 tape->valid = 0;
989 }
990
991 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
992 if (!tape->buf)
993 return -ENOMEM;
994 tape->chrdev_dir = dir;
995 tape->cur = tape->buf;
996
997 /*
998 * Issue a 0 rw command to ensure that DSC handshake is
999 * switched from completion mode to buffer available mode. No
1000 * point in issuing this if DSC overlap isn't supported, some
1001 * drives (Seagate STT3401A) will return an error.
1002 */
1003 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
1004 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
1005 : REQ_IDETAPE_WRITE;
1006
1007 rc = idetape_queue_rw_tail(drive, cmd, 0);
1008 if (rc < 0) {
1009 kfree(tape->buf);
1010 tape->buf = NULL;
1011 tape->chrdev_dir = IDETAPE_DIR_NONE;
1012 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
1014 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +02001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return 0;
1017}
1018
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001019static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 idetape_tape_t *tape = drive->driver_data;
Tejun Heo6cf3d542009-04-19 08:46:02 +09001022
1023 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 while (bcount) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001026 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Tejun Heo71294cf2009-04-19 08:46:03 +09001028 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031}
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001034 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1035 * currently support only one partition.
1036 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001037static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001039 struct ide_tape_obj *tape = drive->driver_data;
1040 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001041 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001042 int ret;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001043
1044 debug_log(DBG_SENSE, "Enter %s\n", __func__);
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 idetape_create_rewind_cmd(drive, &pc);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001047 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1048 if (ret)
1049 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001051 ret = ide_tape_read_position(drive);
1052 if (ret < 0)
1053 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return 0;
1055}
1056
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001057/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001058static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1059 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 void __user *argp = (void __user *)arg;
1063
Borislav Petkovd59823f2008-02-02 19:56:51 +01001064 struct idetape_config {
1065 int dsc_rw_frequency;
1066 int dsc_media_access_frequency;
1067 int nr_stages;
1068 } config;
1069
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001070 debug_log(DBG_PROCS, "Enter %s\n", __func__);
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001073 case 0x0340:
1074 if (copy_from_user(&config, argp, sizeof(config)))
1075 return -EFAULT;
1076 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001077 break;
1078 case 0x0350:
1079 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001080 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001081 if (copy_to_user(argp, &config, sizeof(config)))
1082 return -EFAULT;
1083 break;
1084 default:
1085 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 return 0;
1088}
1089
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001090static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1091 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001094 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001095 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001096 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001097 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (mt_count == 0)
1100 return 0;
1101 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001102 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001104 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106
Borislav Petkov54abf372008-02-06 02:57:52 +01001107 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001108 tape->valid = 0;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001109 if (test_and_clear_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001111 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001115 case MTFSF:
1116 case MTBSF:
1117 idetape_create_space_cmd(&pc, mt_count - count,
1118 IDETAPE_SPACE_OVER_FILEMARK);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001119 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001120 case MTFSFM:
1121 case MTBSFM:
1122 if (!sprev)
1123 return -EIO;
1124 retval = idetape_space_over_filemarks(drive, MTFSF,
1125 mt_count - count);
1126 if (retval)
1127 return retval;
1128 count = (MTBSFM == mt_op ? 1 : -1);
1129 return idetape_space_over_filemarks(drive, MTFSF, count);
1130 default:
1131 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1132 mt_op);
1133 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135}
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001138 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001140 * The tape is optimized to maximize throughput when it is transferring an
1141 * integral number of the "continuous transfer limit", which is a parameter of
1142 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001144 * As of version 1.3 of the driver, the character device provides an abstract
1145 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1146 * same backup/restore procedure is supported. The driver will internally
1147 * convert the requests to the recommended transfer unit, so that an unmatch
1148 * between the user's block size to the recommended size will only result in a
1149 * (slightly) increased driver overhead, but will no longer hit performance.
1150 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001152static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1153 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001155 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 ide_drive_t *drive = tape->drive;
Tejun Heo4344d072009-04-19 08:46:03 +09001157 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001158 ssize_t ret = 0;
Tejun Heo4344d072009-04-19 08:46:03 +09001159 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001161 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Borislav Petkov54abf372008-02-06 02:57:52 +01001163 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001164 if (test_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001165 if (count > tape->blk_size &&
1166 (count % tape->blk_size) == 0)
1167 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Tejun Heo4344d072009-04-19 08:46:03 +09001169
Tejun Heo3596b662009-04-19 08:46:02 +09001170 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001171 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return rc;
Tejun Heo4344d072009-04-19 08:46:03 +09001173
1174 while (done < count) {
1175 size_t todo;
1176
1177 /* refill if staging buffer is empty */
1178 if (!tape->valid) {
1179 /* If we are at a filemark, nothing more to read */
1180 if (test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags))
1181 break;
1182 /* read */
1183 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1184 tape->buffer_size) <= 0)
1185 break;
1186 }
1187
1188 /* copy out */
1189 todo = min_t(size_t, count - done, tape->valid);
1190 if (copy_to_user(buf + done, tape->cur, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001191 ret = -EFAULT;
Tejun Heo4344d072009-04-19 08:46:03 +09001192
1193 tape->cur += todo;
1194 tape->valid -= todo;
1195 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
Tejun Heo4344d072009-04-19 08:46:03 +09001197
1198 if (!done && test_bit(IDE_AFLAG_FILEMARK, &drive->atapi_flags)) {
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001199 debug_log(DBG_SENSE, "%s: spacing over filemark\n", tape->name);
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 idetape_space_over_filemarks(drive, MTFSF, 1);
1202 return 0;
1203 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001204
Tejun Heo4344d072009-04-19 08:46:03 +09001205 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001208static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 size_t count, loff_t *ppos)
1210{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001211 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 ide_drive_t *drive = tape->drive;
Tejun Heo4344d072009-04-19 08:46:03 +09001213 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001214 ssize_t ret = 0;
Tejun Heo3596b662009-04-19 08:46:02 +09001215 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /* The drive is write protected. */
1218 if (tape->write_prot)
1219 return -EACCES;
1220
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001221 debug_log(DBG_CHRDEV, "Enter %s, count %Zd\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 /* Initialize write operation */
Tejun Heo3596b662009-04-19 08:46:02 +09001224 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1225 if (rc < 0)
1226 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Tejun Heo4344d072009-04-19 08:46:03 +09001228 while (done < count) {
1229 size_t todo;
1230
1231 /* flush if staging buffer is full */
1232 if (tape->valid == tape->buffer_size &&
1233 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1234 tape->buffer_size) <= 0)
1235 return rc;
1236
1237 /* copy in */
1238 todo = min_t(size_t, count - done,
1239 tape->buffer_size - tape->valid);
1240 if (copy_from_user(tape->cur, buf + done, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001241 ret = -EFAULT;
Tejun Heo4344d072009-04-19 08:46:03 +09001242
1243 tape->cur += todo;
1244 tape->valid += todo;
1245 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
Tejun Heo4344d072009-04-19 08:46:03 +09001247
1248 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001251static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001253 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001254 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 /* Write a filemark */
1257 idetape_create_write_filemark_cmd(drive, &pc, 1);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001258 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1260 return -EIO;
1261 }
1262 return 0;
1263}
1264
1265/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001266 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1267 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001269 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1270 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001271 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001273 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001275 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1276 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001278static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001281 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001282 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001283 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001285 debug_log(DBG_ERR, "Handling MTIOCTOP ioctl: mt_op=%d, mt_count=%d\n",
1286 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001289 case MTFSF:
1290 case MTFSFM:
1291 case MTBSF:
1292 case MTBSFM:
1293 if (!mt_count)
1294 return 0;
1295 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1296 default:
1297 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001301 case MTWEOF:
1302 if (tape->write_prot)
1303 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001304 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001305 for (i = 0; i < mt_count; i++) {
1306 retval = idetape_write_filemark(drive);
1307 if (retval)
1308 return retval;
1309 }
1310 return 0;
1311 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001312 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001313 if (idetape_rewind_tape(drive))
1314 return -EIO;
1315 return 0;
1316 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001317 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001318 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001319 case MTUNLOAD:
1320 case MTOFFL:
1321 /*
1322 * If door is locked, attempt to unlock before
1323 * attempting to eject.
1324 */
1325 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001326 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001327 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001328 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001329 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001330 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001331 if (!retval)
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001332 clear_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001333 return retval;
1334 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001335 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001336 return idetape_flush_tape_buffers(drive);
1337 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001338 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001339 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001340 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001341 case MTEOM:
1342 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001343 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001344 case MTERASE:
1345 (void)idetape_rewind_tape(drive);
1346 idetape_create_erase_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001347 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001348 case MTSETBLK:
1349 if (mt_count) {
1350 if (mt_count < tape->blk_size ||
1351 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001353 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001354 clear_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001355 } else
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001356 set_bit(IDE_AFLAG_DETECT_BS, &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001357 return 0;
1358 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001359 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001360 return idetape_position_tape(drive,
1361 mt_count * tape->user_bs_factor, tape->partition, 0);
1362 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001363 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001364 return idetape_position_tape(drive, 0, mt_count, 0);
1365 case MTFSR:
1366 case MTBSR:
1367 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001368 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001369 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001371 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1372 return 0;
1373 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001374 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001375 if (retval)
1376 return retval;
1377 tape->door_locked = DOOR_UNLOCKED;
1378 return 0;
1379 default:
1380 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1381 mt_op);
1382 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384}
1385
1386/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001387 * Our character device ioctls. General mtio.h magnetic io commands are
1388 * supported here, and not in the corresponding block interface. Our own
1389 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001391static int idetape_chrdev_ioctl(struct inode *inode, struct file *file,
1392 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001394 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 ide_drive_t *drive = tape->drive;
1396 struct mtop mtop;
1397 struct mtget mtget;
1398 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001399 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 void __user *argp = (void __user *)arg;
1401
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001402 debug_log(DBG_CHRDEV, "Enter %s, cmd=%u\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Borislav Petkov54abf372008-02-06 02:57:52 +01001404 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001405 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 idetape_flush_tape_buffers(drive);
1407 }
1408 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo6cf3d542009-04-19 08:46:02 +09001409 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001410 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001411 position = ide_tape_read_position(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001412 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return -EIO;
1414 }
1415 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001416 case MTIOCTOP:
1417 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1418 return -EFAULT;
1419 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1420 case MTIOCGET:
1421 memset(&mtget, 0, sizeof(struct mtget));
1422 mtget.mt_type = MT_ISSCSI2;
1423 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1424 mtget.mt_dsreg =
1425 ((tape->blk_size * tape->user_bs_factor)
1426 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001427
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001428 if (tape->drv_write_prot)
1429 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1430
1431 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1432 return -EFAULT;
1433 return 0;
1434 case MTIOCPOS:
1435 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1436 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1437 return -EFAULT;
1438 return 0;
1439 default:
1440 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001441 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001442 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444}
1445
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001446/*
1447 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1448 * block size with the reported value.
1449 */
1450static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1451{
1452 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001453 struct ide_atapi_pc pc;
Borislav Petkov837272b2009-05-04 09:48:57 +02001454 u8 buf[12];
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001455
1456 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Borislav Petkov837272b2009-05-04 09:48:57 +02001457 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001458 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001459 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001460 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1461 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001462 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001463 }
1464 return;
1465 }
Borislav Petkov837272b2009-05-04 09:48:57 +02001466 tape->blk_size = (buf[4 + 5] << 16) +
1467 (buf[4 + 6] << 8) +
1468 buf[4 + 7];
1469 tape->drv_write_prot = (buf[2] & 0x80) >> 7;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001470}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001472static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1475 ide_drive_t *drive;
1476 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 int retval;
1478
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001479 if (i >= MAX_HWIFS * MAX_DRIVES)
1480 return -ENXIO;
1481
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001482 lock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001483 tape = ide_tape_chrdev_get(i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001484 if (!tape) {
1485 unlock_kernel();
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001486 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001487 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001488
1489 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 /*
1492 * We really want to do nonseekable_open(inode, filp); here, but some
1493 * versions of tar incorrectly call lseek on tapes and bail out if that
1494 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1495 */
1496 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 drive = tape->drive;
1499
1500 filp->private_data = tape;
1501
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001502 if (test_and_set_bit(IDE_AFLAG_BUSY, &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 retval = -EBUSY;
1504 goto out_put_tape;
1505 }
1506
1507 retval = idetape_wait_ready(drive, 60 * HZ);
1508 if (retval) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001509 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1511 goto out_put_tape;
1512 }
1513
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001514 ide_tape_read_position(drive);
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001515 if (!test_bit(IDE_AFLAG_ADDRESS_VALID, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 (void)idetape_rewind_tape(drive);
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001519 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 /* Set write protect flag if device is opened as read-only. */
1522 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1523 tape->write_prot = 1;
1524 else
1525 tape->write_prot = tape->drv_write_prot;
1526
1527 /* Make sure drive isn't write protected if user wants to write. */
1528 if (tape->write_prot) {
1529 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1530 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001531 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 retval = -EROFS;
1533 goto out_put_tape;
1534 }
1535 }
1536
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001537 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001538 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001539 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001540 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1541 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 }
1543 }
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001544 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return 0;
1546
1547out_put_tape:
1548 ide_tape_put(tape);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001549 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 return retval;
1551}
1552
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001553static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
1555 idetape_tape_t *tape = drive->driver_data;
1556
Borislav Petkovd9df9372008-04-27 15:38:34 +02001557 ide_tape_flush_merge_buffer(drive);
Tejun Heo6cf3d542009-04-19 08:46:02 +09001558 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1559 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001560 idetape_pad_zeros(drive, tape->blk_size *
1561 (tape->user_bs_factor - 1));
Tejun Heo6cf3d542009-04-19 08:46:02 +09001562 kfree(tape->buf);
1563 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
1565 idetape_write_filemark(drive);
1566 idetape_flush_tape_buffers(drive);
1567 idetape_flush_tape_buffers(drive);
1568}
1569
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001570static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001572 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 unsigned int minor = iminor(inode);
1575
1576 lock_kernel();
1577 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001578
1579 debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Borislav Petkov54abf372008-02-06 02:57:52 +01001581 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001583 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001585 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001587
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001588 if (minor < 128 && test_bit(IDE_AFLAG_MEDIUM_PRESENT, &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 (void) idetape_rewind_tape(drive);
Borislav Petkov54abf372008-02-06 02:57:52 +01001590 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (tape->door_locked == DOOR_LOCKED) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001592 if (!ide_set_media_lock(drive, tape->disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001593 tape->door_locked = DOOR_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595 }
Borislav Petkovf2e3ab52008-07-23 19:56:01 +02001596 clear_bit(IDE_AFLAG_BUSY, &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 ide_tape_put(tape);
1598 unlock_kernel();
1599 return 0;
1600}
1601
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001602static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001605 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001606 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001607 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 idetape_create_inquiry_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001610 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001611 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1612 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return;
1614 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001615 memcpy(vendor_id, &pc_buf[8], 8);
1616 memcpy(product_id, &pc_buf[16], 16);
1617 memcpy(fw_rev, &pc_buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001618
Borislav Petkov801bd322008-09-27 19:32:17 +02001619 ide_fixstring(vendor_id, 8, 0);
1620 ide_fixstring(product_id, 16, 0);
1621 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001622
Borislav Petkov801bd322008-09-27 19:32:17 +02001623 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001624 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
1627/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001628 * Ask the tape about its various parameters. In particular, we will adjust our
1629 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001631static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
1633 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001634 struct ide_atapi_pc pc;
Borislav Petkovb13345f2009-05-02 10:26:12 +02001635 u8 buf[24], *caps;
Borislav Petkovb6422012008-02-02 19:56:49 +01001636 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001639 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001640 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1641 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001642 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001643 put_unaligned(52, (u16 *)&tape->caps[12]);
1644 put_unaligned(540, (u16 *)&tape->caps[14]);
1645 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return;
1647 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001648 caps = buf + 4 + buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Borislav Petkovb6422012008-02-02 19:56:49 +01001650 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001651 speed = be16_to_cpup((__be16 *)&caps[14]);
1652 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001654 *(u16 *)&caps[8] = max_speed;
1655 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1656 *(u16 *)&caps[14] = speed;
1657 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001658
1659 if (!speed) {
1660 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1661 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001662 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001664 if (!max_speed) {
1665 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1666 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001667 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669
Borislav Petkovb6422012008-02-02 19:56:49 +01001670 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001671
1672 /* device lacks locking support according to capabilities page */
1673 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001674 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001675
Borislav Petkovb6422012008-02-02 19:56:49 +01001676 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001677 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001678 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001679 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
1681
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001682#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001683#define ide_tape_devset_get(name, field) \
1684static int get_##name(ide_drive_t *drive) \
1685{ \
1686 idetape_tape_t *tape = drive->driver_data; \
1687 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001689
1690#define ide_tape_devset_set(name, field) \
1691static int set_##name(ide_drive_t *drive, int arg) \
1692{ \
1693 idetape_tape_t *tape = drive->driver_data; \
1694 tape->field = arg; \
1695 return 0; \
1696}
1697
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001698#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001699ide_tape_devset_get(_name, _field) \
1700ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001701IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001702
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001703#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001704ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001705IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001706
1707static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1708static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1709static int divf_buffer(ide_drive_t *drive) { return 2; }
1710static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1711
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001712ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001713
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001714ide_tape_devset_rw_field(debug_mask, debug_mask);
1715ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001716
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001717ide_tape_devset_r_field(avg_speed, avg_speed);
1718ide_tape_devset_r_field(speed, caps[14]);
1719ide_tape_devset_r_field(buffer, caps[16]);
1720ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001721
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001722static const struct ide_proc_devset idetape_settings[] = {
1723 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1724 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1725 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
1726 __IDE_PROC_DEVSET(debug_mask, 0, 0xffff, NULL, NULL),
1727 __IDE_PROC_DEVSET(dsc_overlap, 0, 1, NULL, NULL),
1728 __IDE_PROC_DEVSET(speed, 0, 0xffff, NULL, NULL),
1729 __IDE_PROC_DEVSET(tdsc, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX,
1730 mulf_tdsc, divf_tdsc),
Hannes Eder71bfc7a2009-03-05 16:10:56 +01001731 { NULL },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001732};
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001733#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001736 * The function below is called to:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001738 * 1. Initialize our various state variables.
1739 * 2. Ask the tape for its capabilities.
1740 * 3. Allocate a buffer which will be used for data transfer. The buffer size
1741 * is chosen based on the recommendation which we received in step 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001743 * Note that at this point ide.c already assigned us an irq, so that we can
1744 * queue requests here and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001746static void idetape_setup(ide_drive_t *drive, idetape_tape_t *tape, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Borislav Petkov83042b22008-04-27 15:38:27 +02001748 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 int speed;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001750 int buffer_size;
Borislav Petkovb6422012008-02-02 19:56:49 +01001751 u16 *ctl = (u16 *)&tape->caps[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +02001753 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001754
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001755 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1756
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001757 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1758 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1759 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001760 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001764 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001765 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 tape->minor = minor;
1768 tape->name[0] = 'h';
1769 tape->name[1] = 't';
1770 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001771 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 idetape_get_inquiry_results(drive);
1774 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001775 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001777 tape->buffer_size = *ctl * tape->blk_size;
1778 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001780 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001781 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001783 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Borislav Petkov83042b22008-04-27 15:38:27 +02001785 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001786 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Borislav Petkovf73850a2008-04-27 15:38:33 +02001788 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001791 * Ensure that the number we got makes sense; limit it within
1792 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001794 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1795 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Borislav Petkov83042b22008-04-27 15:38:27 +02001797 "%lums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001798 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001799 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1800 tape->buffer_size / 1024,
Borislav Petkov54bb2072008-02-06 02:57:52 +01001801 tape->best_dsc_rw_freq * 1000 / HZ,
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001802 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001804 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
Russell King4031bbe2006-01-06 11:41:00 +00001807static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001811 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001812 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 ide_unregister_region(tape->disk);
1814
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001815 mutex_lock(&idetape_ref_mutex);
1816 put_device(&tape->dev);
1817 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001820static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001822 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 ide_drive_t *drive = tape->drive;
1824 struct gendisk *g = tape->disk;
1825
Tejun Heo6cf3d542009-04-19 08:46:02 +09001826 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001827
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001828 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001830 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001831 device_destroy(idetape_sysfs_class,
1832 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 idetape_devs[tape->minor] = NULL;
1834 g->private_data = NULL;
1835 put_disk(g);
1836 kfree(tape);
1837}
1838
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001839#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840static int proc_idetape_read_name
1841 (char *page, char **start, off_t off, int count, int *eof, void *data)
1842{
1843 ide_drive_t *drive = (ide_drive_t *) data;
1844 idetape_tape_t *tape = drive->driver_data;
1845 char *out = page;
1846 int len;
1847
1848 len = sprintf(out, "%s\n", tape->name);
1849 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1850}
1851
1852static ide_proc_entry_t idetape_proc[] = {
1853 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
1854 { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
1855 { NULL, 0, NULL, NULL }
1856};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001857
1858static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1859{
1860 return idetape_proc;
1861}
1862
1863static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1864{
1865 return idetape_settings;
1866}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867#endif
1868
Russell King4031bbe2006-01-06 11:41:00 +00001869static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001871static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001872 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001873 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001874 .name = "ide-tape",
1875 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001876 },
Russell King4031bbe2006-01-06 11:41:00 +00001877 .probe = ide_tape_probe,
1878 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001881#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001882 .proc_entries = ide_tape_proc_entries,
1883 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001884#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885};
1886
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001887/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001888static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 .owner = THIS_MODULE,
1890 .read = idetape_chrdev_read,
1891 .write = idetape_chrdev_write,
1892 .ioctl = idetape_chrdev_ioctl,
1893 .open = idetape_chrdev_open,
1894 .release = idetape_chrdev_release,
1895};
1896
Al Viroa4600f82008-03-02 10:27:58 -05001897static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Al Viroa4600f82008-03-02 10:27:58 -05001899 struct ide_tape_obj *tape = ide_tape_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001901 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return -ENXIO;
1903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return 0;
1905}
1906
Al Viroa4600f82008-03-02 10:27:58 -05001907static int idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001909 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911 ide_tape_put(tape);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return 0;
1913}
1914
Al Viroa4600f82008-03-02 10:27:58 -05001915static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 unsigned int cmd, unsigned long arg)
1917{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001918 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 ide_drive_t *drive = tape->drive;
Al Viro1bddd9e2008-09-02 17:19:43 -04001920 int err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (err == -EINVAL)
1922 err = idetape_blkdev_ioctl(drive, cmd, arg);
1923 return err;
1924}
1925
1926static struct block_device_operations idetape_block_ops = {
1927 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05001928 .open = idetape_open,
1929 .release = idetape_release,
1930 .locked_ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931};
1932
Russell King4031bbe2006-01-06 11:41:00 +00001933static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
1935 idetape_tape_t *tape;
1936 struct gendisk *g;
1937 int minor;
1938
1939 if (!strstr("ide-tape", drive->driver_req))
1940 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (drive->media != ide_tape)
1943 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001944
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001945 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1946 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001947 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1948 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 goto failed;
1950 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001951 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001953 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1954 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 goto failed;
1956 }
1957
1958 g = alloc_disk(1 << PARTN_BITS);
1959 if (!g)
1960 goto out_free_tape;
1961
1962 ide_init_disk(g, drive);
1963
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001964 tape->dev.parent = &drive->gendev;
1965 tape->dev.release = ide_tape_release;
1966 dev_set_name(&tape->dev, dev_name(&drive->gendev));
1967
1968 if (device_register(&tape->dev))
1969 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 tape->drive = drive;
1972 tape->driver = &idetape_driver;
1973 tape->disk = g;
1974
1975 g->private_data = &tape->driver;
1976
1977 drive->driver_data = tape;
1978
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001979 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 for (minor = 0; idetape_devs[minor]; minor++)
1981 ;
1982 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08001983 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 idetape_setup(drive, tape, minor);
1986
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07001987 device_create(idetape_sysfs_class, &drive->gendev,
1988 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
1989 device_create(idetape_sysfs_class, &drive->gendev,
1990 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
1991 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 g->fops = &idetape_block_ops;
1994 ide_register_region(g);
1995
1996 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001997
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001998out_free_disk:
1999 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000out_free_tape:
2001 kfree(tape);
2002failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002003 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004}
2005
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002006static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002008 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002009 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 unregister_chrdev(IDETAPE_MAJOR, "ht");
2011}
2012
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002013static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
Will Dysond5dee802005-09-16 02:55:07 -07002015 int error = 1;
2016 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2017 if (IS_ERR(idetape_sysfs_class)) {
2018 idetape_sysfs_class = NULL;
2019 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2020 error = -EBUSY;
2021 goto out;
2022 }
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002025 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2026 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002027 error = -EBUSY;
2028 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
Will Dysond5dee802005-09-16 02:55:07 -07002030
2031 error = driver_register(&idetape_driver.gen_driver);
2032 if (error)
2033 goto out_free_driver;
2034
2035 return 0;
2036
2037out_free_driver:
2038 driver_unregister(&idetape_driver.gen_driver);
2039out_free_class:
2040 class_destroy(idetape_sysfs_class);
2041out:
2042 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043}
2044
Kay Sievers263756e2005-12-12 18:03:44 +01002045MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046module_init(idetape_init);
2047module_exit(idetape_exit);
2048MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002049MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2050MODULE_LICENSE("GPL");