blob: a0651f948b76ec22e72ad64c74bec0cb39627a8c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov5ce78af2008-02-02 19:56:48 +01002 * IDE ATAPI streaming tape driver.
3 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1995-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2003-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This driver was constructed as a student project in the software laboratory
8 * of the faculty of electrical engineering in the Technion - Israel's
9 * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
10 *
11 * It is hereby placed under the terms of the GNU general public license.
12 * (See linux/COPYING).
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Borislav Petkov5ce78af2008-02-02 19:56:48 +010014 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-tape.1995-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020018#define DRV_NAME "ide-tape"
19
Borislav Petkovdfe79932008-02-06 02:57:55 +010020#define IDETAPE_VERSION "1.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/delay.h>
27#include <linux/timer.h>
28#include <linux/mm.h>
29#include <linux/interrupt.h>
Marcelo Feitoza Parisi9bae1ff2006-03-28 01:56:46 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/genhd.h>
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070034#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/slab.h>
36#include <linux/pci.h>
37#include <linux/ide.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#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/uaccess.h>
45#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/mtio.h>
48
Borislav Petkov8004a8c2008-02-06 02:57:51 +010049/* define to see debug info */
Borislav Petkove972d702009-07-17 23:55:16 +000050#undef IDETAPE_DEBUG_LOG
Borislav Petkov8004a8c2008-02-06 02:57:51 +010051
Borislav Petkove972d702009-07-17 23:55:16 +000052#ifdef IDETAPE_DEBUG_LOG
53#define ide_debug_log(lvl, fmt, args...) __ide_debug_log(lvl, fmt, ## args)
Borislav Petkov8004a8c2008-02-06 02:57:51 +010054#else
Borislav Petkove972d702009-07-17 23:55:16 +000055#define ide_debug_log(lvl, fmt, args...) do {} while (0)
Borislav Petkov8004a8c2008-02-06 02:57:51 +010056#endif
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/**************************** Tunable parameters *****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010060 * After each failed packet command we issue a request sense command and retry
61 * the packet command IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010063 * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
65#define IDETAPE_MAX_PC_RETRIES 3
66
67/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010068 * The following parameter is used to select the point in the internal tape fifo
69 * in which we will start to refill the buffer. Decreasing the following
70 * parameter will improve the system's latency and interactive response, while
71 * using a high value might improve system throughput.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010073#define IDETAPE_FIFO_THRESHOLD 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +010076 * DSC polling parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010078 * Polling for DSC (a single bit in the status register) is a very important
79 * function in ide-tape. There are two cases in which we poll for DSC:
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010081 * 1. Before a read/write packet command, to ensure that we can transfer data
82 * from/to the tape's data buffers, without causing an actual media access.
83 * In case the tape is not ready yet, we take out our request from the device
84 * request queue, so that ide.c could service requests from the other device
85 * on the same interface in the meantime.
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010087 * 2. After the successful initialization of a "media access packet command",
88 * which is a command that can take a long time to complete (the interval can
89 * range from several seconds to even an hour). Again, we postpone our request
90 * in the middle to free the bus for the other device. The polling frequency
91 * here should be lower than the read/write frequency since those media access
92 * commands are slow. We start from a "fast" frequency - IDETAPE_DSC_MA_FAST
93 * (1 second), and if we don't receive DSC after IDETAPE_DSC_MA_THRESHOLD
94 * (5 min), we switch it to a lower frequency - IDETAPE_DSC_MA_SLOW (1 min).
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +010096 * We also set a timeout for the timer, in case something goes wrong. The
97 * timeout should be longer then the maximum execution time of a tape operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
Borislav Petkov3c98bf32008-02-06 02:57:53 +010099
100/* DSC timings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
102#define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
103#define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
104#define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
105#define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
106#define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
107#define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
108
109/*************************** End of tunable parameters ***********************/
110
Borislav Petkov54abf372008-02-06 02:57:52 +0100111/* tape directions */
112enum {
113 IDETAPE_DIR_NONE = (1 << 0),
114 IDETAPE_DIR_READ = (1 << 1),
115 IDETAPE_DIR_WRITE = (1 << 2),
116};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Borislav Petkov03056b92008-04-18 00:46:26 +0200118/* Tape door status */
119#define DOOR_UNLOCKED 0
120#define DOOR_LOCKED 1
121#define DOOR_EXPLICITLY_LOCKED 2
122
123/* Some defines for the SPACE command */
124#define IDETAPE_SPACE_OVER_FILEMARK 1
125#define IDETAPE_SPACE_TO_EOD 3
126
127/* Some defines for the LOAD UNLOAD command */
128#define IDETAPE_LU_LOAD_MASK 1
129#define IDETAPE_LU_RETENSION_MASK 2
130#define IDETAPE_LU_EOT_MASK 4
131
Borislav Petkov03056b92008-04-18 00:46:26 +0200132/* Structures related to the SELECT SENSE / MODE SENSE packet commands. */
133#define IDETAPE_BLOCK_DESCRIPTOR 0
134#define IDETAPE_CAPABILITIES_PAGE 0x2a
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100137 * Most of our global data which we need to save even as we leave the driver due
138 * to an interrupt or a timer event is stored in the struct defined below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
140typedef struct ide_tape_obj {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100141 ide_drive_t *drive;
142 struct ide_driver *driver;
143 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100144 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200146 /* used by REQ_IDETAPE_{READ,WRITE} requests */
147 struct ide_atapi_pc queued_pc;
Bartlomiej Zolnierkiewicz394a4c22008-10-10 22:39:35 +0200148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100150 * DSC polling variables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100152 * While polling for DSC we use postponed_rq to postpone the current
153 * request so that ide.c will be able to service pending requests on the
154 * other device. Note that at most we will have only one DSC (usually
Borislav Petkov5bd50dc2008-04-27 15:38:28 +0200155 * data transfer) request in the device request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700157 bool postponed_rq;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* The time in which we started polling for DSC */
160 unsigned long dsc_polling_start;
161 /* Timer used to poll for dsc */
162 struct timer_list dsc_timer;
163 /* Read/Write dsc polling frequency */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100164 unsigned long best_dsc_rw_freq;
165 unsigned long dsc_poll_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 unsigned long dsc_timeout;
167
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100168 /* Read position information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 u8 partition;
170 /* Current block */
Borislav Petkov54bb2072008-02-06 02:57:52 +0100171 unsigned int first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100173 /* Last error information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 u8 sense_key, asc, ascq;
175
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100176 /* Character device operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 unsigned int minor;
178 /* device name */
179 char name[4];
180 /* Current character device data transfer direction */
Borislav Petkov54abf372008-02-06 02:57:52 +0100181 u8 chrdev_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Borislav Petkov54bb2072008-02-06 02:57:52 +0100183 /* tape block size, usually 512 or 1024 bytes */
184 unsigned short blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int user_bs_factor;
Borislav Petkovb6422012008-02-02 19:56:49 +0100186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* Copy of the tape's Capabilities and Mechanical Page */
Borislav Petkovb6422012008-02-02 19:56:49 +0100188 u8 caps[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100191 * Active data transfer request parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100193 * At most, there is only one ide-tape originated data transfer request
194 * in the device request queue. This allows ide.c to easily service
195 * requests from the other device when we postpone our active request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
Borislav Petkov83042b22008-04-27 15:38:27 +0200197
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100198 /* Data buffer size chosen based on the tape's recommendation */
Borislav Petkovf73850a2008-04-27 15:38:33 +0200199 int buffer_size;
Tejun Heo963da552009-04-19 08:46:02 +0900200 /* Staging buffer of buffer_size bytes */
201 void *buf;
202 /* The read/write cursor */
203 void *cur;
204 /* The number of valid bytes in buf */
205 size_t valid;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100206
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100207 /* Measures average tape speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned long avg_time;
209 int avg_size;
210 int avg_speed;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* the door is currently locked */
213 int door_locked;
214 /* the tape hardware is write protected */
215 char drv_write_prot;
216 /* the tape is write protected (hardware or opened as read-only) */
217 char write_prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218} idetape_tape_t;
219
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200220static DEFINE_MUTEX(ide_tape_mutex);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800221static DEFINE_MUTEX(idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Borislav Petkovcbba2fa2009-10-11 00:25:19 +0000223static DEFINE_MUTEX(idetape_chrdev_mutex);
224
Will Dysond5dee802005-09-16 02:55:07 -0700225static struct class *idetape_sysfs_class;
226
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100227static void ide_tape_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200228
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200229static struct ide_tape_obj *idetape_devs[MAX_HWIFS * MAX_DRIVES];
230
231static struct ide_tape_obj *ide_tape_get(struct gendisk *disk, bool cdev,
232 unsigned int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct ide_tape_obj *tape = NULL;
235
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800236 mutex_lock(&idetape_ref_mutex);
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200237
238 if (cdev)
239 tape = idetape_devs[i];
240 else
241 tape = ide_drv_g(disk, ide_tape_obj);
242
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200243 if (tape) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200244 if (ide_device_get(tape->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200245 tape = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200246 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100247 get_device(&tape->dev);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200248 }
Borislav Petkov9d01e4c2009-06-08 22:03:03 +0200249
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800250 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return tape;
252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254static void ide_tape_put(struct ide_tape_obj *tape)
255{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200256 ide_drive_t *drive = tape->drive;
257
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800258 mutex_lock(&idetape_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +0100259 put_device(&tape->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +0200260 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800261 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/*
Borislav Petkov1b5db432008-02-02 19:56:48 +0100265 * called on each failed packet command retry to analyze the request sense. We
266 * currently do not utilize this information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 */
Borislav Petkovae3a8382009-05-02 10:58:17 +0200268static void idetape_analyze_error(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100271 struct ide_atapi_pc *pc = drive->failed_pc;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200272 struct request *rq = drive->hwif->rq;
Borislav Petkovae3a8382009-05-02 10:58:17 +0200273 u8 *sense = bio_data(rq->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Borislav Petkov1b5db432008-02-02 19:56:48 +0100275 tape->sense_key = sense[2] & 0xF;
276 tape->asc = sense[12];
277 tape->ascq = sense[13];
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100278
Borislav Petkove972d702009-07-17 23:55:16 +0000279 ide_debug_log(IDE_DBG_FUNC,
280 "cmd: 0x%x, sense key = %x, asc = %x, ascq = %x",
281 rq->cmd[0], tape->sense_key, tape->asc, tape->ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Borislav Petkov077e6db2009-05-01 21:21:02 +0200283 /* correct remaining bytes to transfer */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900284 if (pc->flags & PC_FLAG_DMA_ERROR)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100285 scsi_req(rq)->resid_len = tape->blk_size * get_unaligned_be32(&sense[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 /*
288 * If error was the result of a zero-length read or write command,
289 * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
290 * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
291 */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100292 if ((pc->c[0] == READ_6 || pc->c[0] == WRITE_6)
Borislav Petkov1b5db432008-02-02 19:56:48 +0100293 /* length == 0 */
294 && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) {
295 if (tape->sense_key == 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* don't report an error, everything's ok */
297 pc->error = 0;
298 /* don't retry read/write */
Borislav Petkov346331f2008-04-18 00:46:26 +0200299 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100302 if (pc->c[0] == READ_6 && (sense[2] & 0x80)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100303 pc->error = IDE_DRV_ERROR_FILEMARK;
Borislav Petkov346331f2008-04-18 00:46:26 +0200304 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100306 if (pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100307 if ((sense[2] & 0x40) || (tape->sense_key == 0xd
308 && tape->asc == 0x0 && tape->ascq == 0x2)) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100309 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200310 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312 }
Borislav Petkov90699ce2008-02-02 19:56:50 +0100313 if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov1b5db432008-02-02 19:56:48 +0100314 if (tape->sense_key == 8) {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100315 pc->error = IDE_DRV_ERROR_EOD;
Borislav Petkov346331f2008-04-18 00:46:26 +0200316 pc->flags |= PC_FLAG_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
Borislav Petkov346331f2008-04-18 00:46:26 +0200318 if (!(pc->flags & PC_FLAG_ABORT) &&
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100319 (blk_rq_bytes(rq) - scsi_req(rq)->resid_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
321 }
322}
323
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200324static void ide_tape_handle_dsc(ide_drive_t *);
325
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100326static int ide_tape_callback(ide_drive_t *drive, int dsc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200329 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100330 struct request *rq = drive->hwif->rq;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200331 int uptodate = pc->error ? 0 : 1;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100332 int err = uptodate ? 0 : IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Borislav Petkove972d702009-07-17 23:55:16 +0000334 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x, dsc: %d, err: %d", rq->cmd[0],
335 dsc, err);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100336
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200337 if (dsc)
338 ide_tape_handle_dsc(drive);
339
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100340 if (drive->failed_pc == pc)
341 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczdd2e9a02008-07-15 21:22:01 +0200342
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200343 if (pc->c[0] == REQUEST_SENSE) {
344 if (uptodate)
Borislav Petkovae3a8382009-05-02 10:58:17 +0200345 idetape_analyze_error(drive);
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200346 else
347 printk(KERN_ERR "ide-tape: Error in REQUEST SENSE "
348 "itself - Aborting request!\n");
349 } else if (pc->c[0] == READ_6 || pc->c[0] == WRITE_6) {
Borislav Petkov077e6db2009-05-01 21:21:02 +0200350 unsigned int blocks =
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100351 (blk_rq_bytes(rq) - scsi_req(rq)->resid_len) / tape->blk_size;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200352
353 tape->avg_size += blocks * tape->blk_size;
354
355 if (time_after_eq(jiffies, tape->avg_time + HZ)) {
356 tape->avg_speed = tape->avg_size * HZ /
357 (jiffies - tape->avg_time) / 1024;
358 tape->avg_size = 0;
359 tape->avg_time = jiffies;
360 }
361
362 tape->first_frame += blocks;
Bartlomiej Zolnierkiewicz5985e6a2008-07-15 21:21:55 +0200363
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100364 if (pc->error) {
365 uptodate = 0;
366 err = pc->error;
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Christoph Hellwig17d53632017-04-20 16:03:01 +0200369 scsi_req(rq)->result = err;
Bartlomiej Zolnierkiewicz313afea2009-03-27 12:46:34 +0100370
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100371 return uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100375 * Postpone the current request so that ide.c will be able to service requests
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100376 * from another device on the same port while we are polling for DSC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 */
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700378static void ide_tape_stall_queue(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 idetape_tape_t *tape = drive->driver_data;
381
Borislav Petkove972d702009-07-17 23:55:16 +0000382 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x, dsc_poll_freq: %lu",
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700383 drive->hwif->rq->cmd[0], tape->dsc_poll_freq);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100384
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700385 tape->postponed_rq = true;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100386
Borislav Petkov54bb2072008-02-06 02:57:52 +0100387 ide_stall_queue(drive, tape->dsc_poll_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200390static void ide_tape_handle_dsc(ide_drive_t *drive)
391{
392 idetape_tape_t *tape = drive->driver_data;
393
394 /* Media access command */
395 tape->dsc_polling_start = jiffies;
396 tape->dsc_poll_freq = IDETAPE_DSC_MA_FAST;
397 tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
398 /* Allow ide.c to handle other requests */
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700399 ide_tape_stall_queue(drive);
Bartlomiej Zolnierkiewicz74e63e742008-07-15 21:22:01 +0200400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100403 * Packet Command Interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 *
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200405 * The current Packet Command is available in drive->pc, and will not change
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100406 * until we finish handling it. Each packet command is associated with a
407 * callback function that will be called when the command is finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100409 * The handling will be done in three stages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 *
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100411 * 1. ide_tape_issue_pc will send the packet command to the drive, and will set
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200412 * the interrupt handler to ide_pc_intr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 *
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200414 * 2. On each interrupt, ide_pc_intr will be called. This step will be
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100415 * repeated until the device signals us that no more interrupts will be issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100417 * 3. ATAPI Tape media access commands have immediate status with a delayed
418 * process. In case of a successful initiation of a media access packet command,
419 * the DSC bit will be set when the actual execution of the command is finished.
420 * Since the tape drive will not issue an interrupt, we have to poll for this
421 * event. In this case, we define the request as "low priority request" by
422 * setting rq_status to IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and
423 * exit the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100425 * ide.c will then give higher priority to requests which originate from the
426 * other device, until will change rq_status to RQ_ACTIVE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100428 * 4. When the packet command is finished, it will be checked for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100430 * 5. In case an error was found, we queue a request sense packet command in
431 * front of the request queue and retry the operation up to
432 * IDETAPE_MAX_PC_RETRIES times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100434 * 6. In case no error was found, or we decided to give up and not to retry
435 * again, the callback function will be called and then we will handle the next
436 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100439static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
440 struct ide_cmd *cmd,
441 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200444 struct request *rq = drive->hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100446 if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
447 drive->failed_pc = pc;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* Set the current packet command */
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200450 drive->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
Borislav Petkov346331f2008-04-18 00:46:26 +0200453 (pc->flags & PC_FLAG_ABORT)) {
Tejun Heob3071d12009-04-19 08:46:02 +0900454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100456 * We will "abort" retrying a packet command in case legitimate
457 * error code was received (crossing a filemark, or end of the
458 * media, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 */
Borislav Petkov346331f2008-04-18 00:46:26 +0200460 if (!(pc->flags & PC_FLAG_ABORT)) {
Borislav Petkov90699ce2008-02-02 19:56:50 +0100461 if (!(pc->c[0] == TEST_UNIT_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 tape->sense_key == 2 && tape->asc == 4 &&
463 (tape->ascq == 1 || tape->ascq == 8))) {
464 printk(KERN_ERR "ide-tape: %s: I/O error, "
465 "pc = %2x, key = %2x, "
466 "asc = %2x, ascq = %2x\n",
467 tape->name, pc->c[0],
468 tape->sense_key, tape->asc,
469 tape->ascq);
470 }
471 /* Giving up */
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100472 pc->error = IDE_DRV_ERROR_GENERAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Tejun Heob3071d12009-04-19 08:46:02 +0900474
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100475 drive->failed_pc = NULL;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200476 drive->pc_callback(drive, 0);
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200477 ide_complete_rq(drive, -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz92f5daf2008-07-15 21:21:55 +0200478 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Borislav Petkove972d702009-07-17 23:55:16 +0000480 ide_debug_log(IDE_DBG_SENSE, "retry #%d, cmd: 0x%02x", pc->retries,
481 pc->c[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 pc->retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100485 return ide_issue_pc(drive, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100488/* A mode sense command is used to "sense" tape parameters. */
Borislav Petkovd236d742008-04-18 00:46:27 +0200489static void idetape_create_mode_sense_cmd(struct ide_atapi_pc *pc, u8 page_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200491 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100492 pc->c[0] = MODE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100494 /* DBD = 1 - Don't return block descriptors */
495 pc->c[1] = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 pc->c[2] = page_code;
497 /*
498 * Changed pc->c[3] to 0 (255 will at best return unused info).
499 *
500 * For SCSI this byte is defined as subpage instead of high byte
501 * of length and some IDE drives seem to interpret it this way
502 * and return an error when 255 is used.
503 */
504 pc->c[3] = 0;
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100505 /* We will just discard data in that case */
506 pc->c[4] = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
Borislav Petkovd236d742008-04-18 00:46:27 +0200508 pc->req_xfer = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 else if (page_code == IDETAPE_CAPABILITIES_PAGE)
Borislav Petkovd236d742008-04-18 00:46:27 +0200510 pc->req_xfer = 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 else
Borislav Petkovd236d742008-04-18 00:46:27 +0200512 pc->req_xfer = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100515static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200517 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200519 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100520 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200522 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100523
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200524 if (stat & ATA_DSC) {
525 if (stat & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* Error detected */
Borislav Petkov90699ce2008-02-02 19:56:50 +0100527 if (pc->c[0] != TEST_UNIT_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 printk(KERN_ERR "ide-tape: %s: I/O error, ",
529 tape->name);
530 /* Retry operation */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900531 ide_retry_pc(drive);
Bartlomiej Zolnierkiewicz258ec412008-07-15 21:21:55 +0200532 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534 pc->error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 } else {
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100536 pc->error = IDE_DRV_ERROR_GENERAL;
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100537 drive->failed_pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200539 drive->pc_callback(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return ide_stopped;
541}
542
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200543static void ide_tape_create_rw_cmd(idetape_tape_t *tape,
Borislav Petkov0014c752008-07-23 19:56:00 +0200544 struct ide_atapi_pc *pc, struct request *rq,
545 u8 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Borislav Petkov10c0b342009-05-01 20:29:53 +0200547 unsigned int length = blk_rq_sectors(rq) / (tape->blk_size >> 9);
Borislav Petkov0014c752008-07-23 19:56:00 +0200548
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200549 ide_init_pc(pc);
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100550 put_unaligned(cpu_to_be32(length), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 pc->c[1] = 1;
Borislav Petkov19f52a72009-05-04 09:53:03 +0200552
553 if (blk_rq_bytes(rq) == tape->buffer_size)
Bartlomiej Zolnierkiewicz5e331092008-07-15 21:21:56 +0200554 pc->flags |= PC_FLAG_DMA_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Tejun Heo963da552009-04-19 08:46:02 +0900556 if (opcode == READ_6)
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200557 pc->c[0] = READ_6;
Tejun Heo963da552009-04-19 08:46:02 +0900558 else if (opcode == WRITE_6) {
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200559 pc->c[0] = WRITE_6;
560 pc->flags |= PC_FLAG_WRITING;
Borislav Petkovcd2abbf2008-07-15 21:22:03 +0200561 }
Borislav Petkov0014c752008-07-23 19:56:00 +0200562
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100563 memcpy(scsi_req(rq)->cmd, pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566static ide_startstop_t idetape_do_request(ide_drive_t *drive,
567 struct request *rq, sector_t block)
568{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200569 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200571 struct ide_atapi_pc *pc = NULL;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100572 struct ide_cmd cmd;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100573 struct scsi_request *req = scsi_req(rq);
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100574 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Borislav Petkove972d702009-07-17 23:55:16 +0000576 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, sector: %llu, nr_sectors: %u",
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100577 req->cmd[0], (unsigned long long)blk_rq_pos(rq),
Borislav Petkove972d702009-07-17 23:55:16 +0000578 blk_rq_sectors(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100580 BUG_ON(!blk_rq_is_private(rq));
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100581 BUG_ON(ide_req(rq)->type != ATA_PRIV_MISC &&
582 ide_req(rq)->type != ATA_PRIV_SENSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100584 /* Retry a failed packet command */
Bartlomiej Zolnierkiewicz5e2040fd2009-03-27 12:46:34 +0100585 if (drive->failed_pc && drive->pc->c[0] == REQUEST_SENSE) {
586 pc = drive->failed_pc;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200587 goto out;
588 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /*
591 * If the tape is still busy, postpone our request and service
592 * the other device meanwhile.
593 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200594 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200596 if ((drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) == 0 &&
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100597 (req->cmd[13] & REQ_IDETAPE_PC2) == 0)
Borislav Petkov626542c2009-06-07 15:37:05 +0200598 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200600 if (drive->dev_flags & IDE_DFLAG_POST_RESET) {
Borislav Petkov626542c2009-06-07 15:37:05 +0200601 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200602 drive->dev_flags &= ~IDE_DFLAG_POST_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Borislav Petkov626542c2009-06-07 15:37:05 +0200605 if (!(drive->atapi_flags & IDE_AFLAG_IGNORE_DSC) &&
606 !(stat & ATA_DSC)) {
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700607 if (!tape->postponed_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 tape->dsc_polling_start = jiffies;
Borislav Petkov54bb2072008-02-06 02:57:52 +0100609 tape->dsc_poll_freq = tape->best_dsc_rw_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
611 } else if (time_after(jiffies, tape->dsc_timeout)) {
612 printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
613 tape->name);
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100614 if (req->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 idetape_media_access_finished(drive);
616 return ide_stopped;
617 } else {
618 return ide_do_reset(drive);
619 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100620 } else if (time_after(jiffies,
621 tape->dsc_polling_start +
622 IDETAPE_DSC_MA_THRESHOLD))
Borislav Petkov54bb2072008-02-06 02:57:52 +0100623 tape->dsc_poll_freq = IDETAPE_DSC_MA_SLOW;
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700624 ide_tape_stall_queue(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return ide_stopped;
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700626 } else {
Borislav Petkov626542c2009-06-07 15:37:05 +0200627 drive->atapi_flags &= ~IDE_AFLAG_IGNORE_DSC;
Borislav Petkov6f3848a2009-07-21 23:08:23 -0700628 tape->postponed_rq = false;
629 }
Borislav Petkov626542c2009-06-07 15:37:05 +0200630
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100631 if (req->cmd[13] & REQ_IDETAPE_READ) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200632 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200633 ide_tape_create_rw_cmd(tape, pc, rq, READ_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto out;
635 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100636 if (req->cmd[13] & REQ_IDETAPE_WRITE) {
Bartlomiej Zolnierkiewicz2e8a6f82008-10-10 22:39:36 +0200637 pc = &tape->queued_pc;
Borislav Petkov0014c752008-07-23 19:56:00 +0200638 ide_tape_create_rw_cmd(tape, pc, rq, WRITE_6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 goto out;
640 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100641 if (req->cmd[13] & REQ_IDETAPE_PC1) {
Tejun Heoc267cc12009-04-19 07:00:42 +0900642 pc = (struct ide_atapi_pc *)rq->special;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100643 req->cmd[13] &= ~(REQ_IDETAPE_PC1);
644 req->cmd[13] |= REQ_IDETAPE_PC2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 goto out;
646 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100647 if (req->cmd[13] & REQ_IDETAPE_PC2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 idetape_media_access_finished(drive);
649 return ide_stopped;
650 }
651 BUG();
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200652
Borislav Petkovf2e3ab52008-07-23 19:56:01 +0200653out:
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900654 /* prepare sense request for this command */
655 ide_prep_sense(drive, rq);
656
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100657 memset(&cmd, 0, sizeof(cmd));
658
659 if (rq_data_dir(rq))
660 cmd.tf_flags |= IDE_TFLAG_WRITE;
661
662 cmd.rq = rq;
663
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200664 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Tejun Heo5c4be572009-04-19 07:00:42 +0900665 ide_map_sg(drive, &cmd);
666
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100667 return ide_tape_issue_pc(drive, &cmd, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100671 * Write a filemark if write_filemark=1. Flush the device buffers without
672 * writing a filemark otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100674static void idetape_create_write_filemark_cmd(ide_drive_t *drive,
Borislav Petkovd236d742008-04-18 00:46:27 +0200675 struct ide_atapi_pc *pc, int write_filemark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200677 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100678 pc->c[0] = WRITE_FILEMARKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 pc->c[4] = write_filemark;
Borislav Petkov346331f2008-04-18 00:46:26 +0200680 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
684{
685 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200686 struct gendisk *disk = tape->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 int load_attempted = 0;
688
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100689 /* Wait for the tape to become ready */
Borislav Petkov49d80782009-06-07 15:37:06 +0200690 set_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 timeout += jiffies;
692 while (time_before(jiffies, timeout)) {
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200693 if (ide_do_test_unit_ready(drive, disk) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return 0;
695 if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100696 || (tape->asc == 0x3A)) {
697 /* no media */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (load_attempted)
699 return -ENOMEDIUM;
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200700 ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 load_attempted = 1;
702 /* not about to be ready */
703 } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
704 (tape->ascq == 1 || tape->ascq == 8)))
705 return -EIO;
Nishanth Aravamudan80ce45f2005-09-10 00:27:08 -0700706 msleep(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708 return -EIO;
709}
710
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100711static int idetape_flush_tape_buffers(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200713 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200714 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int rc;
716
717 idetape_create_write_filemark_cmd(drive, &pc, 0);
Borislav Petkovb13345f2009-05-02 10:26:12 +0200718 rc = ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100719 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return rc;
721 idetape_wait_ready(drive, 60 * 5 * HZ);
722 return 0;
723}
724
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200725static int ide_tape_read_position(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +0200728 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200729 u8 buf[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Borislav Petkove972d702009-07-17 23:55:16 +0000731 ide_debug_log(IDE_DBG_FUNC, "enter");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200733 /* prep cmd */
734 ide_init_pc(&pc);
735 pc.c[0] = READ_POSITION;
736 pc.req_xfer = 20;
737
738 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -1;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200740
741 if (!pc.error) {
Borislav Petkove972d702009-07-17 23:55:16 +0000742 ide_debug_log(IDE_DBG_FUNC, "BOP - %s",
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200743 (buf[0] & 0x80) ? "Yes" : "No");
Borislav Petkove972d702009-07-17 23:55:16 +0000744 ide_debug_log(IDE_DBG_FUNC, "EOP - %s",
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200745 (buf[0] & 0x40) ? "Yes" : "No");
746
747 if (buf[0] & 0x4) {
748 printk(KERN_INFO "ide-tape: Block location is unknown"
749 "to the tape\n");
Bartlomiej Zolnierkiewicz8dcce402009-06-13 12:00:54 +0200750 clear_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
751 &drive->atapi_flags);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200752 return -1;
753 } else {
Borislav Petkove972d702009-07-17 23:55:16 +0000754 ide_debug_log(IDE_DBG_FUNC, "Block Location: %u",
755 be32_to_cpup((__be32 *)&buf[4]));
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200756
757 tape->partition = buf[1];
758 tape->first_frame = be32_to_cpup((__be32 *)&buf[4]);
Bartlomiej Zolnierkiewicz8dcce402009-06-13 12:00:54 +0200759 set_bit(ilog2(IDE_AFLAG_ADDRESS_VALID),
760 &drive->atapi_flags);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200761 }
762 }
763
764 return tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Borislav Petkovd236d742008-04-18 00:46:27 +0200767static void idetape_create_locate_cmd(ide_drive_t *drive,
768 struct ide_atapi_pc *pc,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100769 unsigned int block, u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200771 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100772 pc->c[0] = POSITION_TO_ELEMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 pc->c[1] = 2;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100774 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 pc->c[8] = partition;
Borislav Petkov346331f2008-04-18 00:46:26 +0200776 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200779static void __ide_tape_discard_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Borislav Petkov54abf372008-02-06 02:57:52 +0100783 if (tape->chrdev_dir != IDETAPE_DIR_READ)
Borislav Petkov97986302008-04-27 15:38:34 +0200784 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Borislav Petkov49d80782009-06-07 15:37:06 +0200786 clear_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags);
Tejun Heo963da552009-04-19 08:46:02 +0900787 tape->valid = 0;
788 if (tape->buf != NULL) {
789 kfree(tape->buf);
790 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792
Borislav Petkov54abf372008-02-06 02:57:52 +0100793 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
796/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100797 * Position the tape to the requested block using the LOCATE packet command.
798 * A READ POSITION command is then issued to check where we are positioned. Like
799 * all higher level operations, we queue the commands at the tail of the request
800 * queue and wait for their completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100802static int idetape_position_tape(ide_drive_t *drive, unsigned int block,
803 u8 partition, int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200806 struct gendisk *disk = tape->disk;
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200807 int ret;
Borislav Petkovd236d742008-04-18 00:46:27 +0200808 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Borislav Petkov54abf372008-02-06 02:57:52 +0100810 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200811 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 idetape_wait_ready(drive, 60 * 5 * HZ);
813 idetape_create_locate_cmd(drive, &pc, block, partition, skip);
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200814 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
815 if (ret)
816 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200818 ret = ide_tape_read_position(drive);
819 if (ret < 0)
820 return ret;
821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200824static void ide_tape_discard_merge_buffer(ide_drive_t *drive,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100825 int restore_position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 int seek, position;
829
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200830 __ide_tape_discard_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (restore_position) {
Borislav Petkov55ce3a12009-05-04 09:38:15 +0200832 position = ide_tape_read_position(drive);
Borislav Petkov97986302008-04-27 15:38:34 +0200833 seek = position > 0 ? position : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (idetape_position_tape(drive, seek, 0, 0)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100835 printk(KERN_INFO "ide-tape: %s: position_tape failed in"
Borislav Petkovec0fdb02008-04-27 15:38:34 +0200836 " %s\n", tape->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return;
838 }
839 }
840}
841
842/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100843 * Generate a read/write request for the block device interface and wait for it
844 * to be serviced.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 */
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900846static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 idetape_tape_t *tape = drive->driver_data;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200849 struct request *rq;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900850 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Borislav Petkove972d702009-07-17 23:55:16 +0000852 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x, size: %d", cmd, size);
853
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900854 BUG_ON(cmd != REQ_IDETAPE_READ && cmd != REQ_IDETAPE_WRITE);
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900855 BUG_ON(size < 0 || size % tape->blk_size);
Borislav Petkov8004a8c2008-02-06 02:57:51 +0100856
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100857 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100858 scsi_req_init(rq);
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100859 ide_req(rq)->type = ATA_PRIV_MISC;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100860 scsi_req(rq)->cmd[13] = cmd;
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200861 rq->rq_disk = tape->disk;
Linus Torvaldsc9059592009-06-11 10:52:27 -0700862 rq->__sector = tape->first_frame;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900863
864 if (size) {
Tejun Heo963da552009-04-19 08:46:02 +0900865 ret = blk_rq_map_kern(drive->queue, rq, tape->buf, size,
Mel Gorman71baba42015-11-06 16:28:28 -0800866 __GFP_RECLAIM);
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900867 if (ret)
868 goto out_put;
869 }
870
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200871 blk_execute_rq(drive->queue, tape->disk, rq, 0);
872
Tejun Heo963da552009-04-19 08:46:02 +0900873 /* calculate the number of transferred bytes and update buffer state */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100874 size -= scsi_req(rq)->resid_len;
Tejun Heo963da552009-04-19 08:46:02 +0900875 tape->cur = tape->buf;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900876 if (cmd == REQ_IDETAPE_READ)
Tejun Heo963da552009-04-19 08:46:02 +0900877 tape->valid = size;
878 else
879 tape->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900881 ret = size;
Christoph Hellwig17d53632017-04-20 16:03:01 +0200882 if (scsi_req(rq)->result == IDE_DRV_ERROR_GENERAL)
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900883 ret = -EIO;
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900884out_put:
885 blk_put_request(rq);
FUJITA Tomonori64ea1b42008-07-15 21:21:43 +0200886 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Borislav Petkovd236d742008-04-18 00:46:27 +0200889static void idetape_create_inquiry_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200891 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100892 pc->c[0] = INQUIRY;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100893 pc->c[4] = 254;
Borislav Petkovd236d742008-04-18 00:46:27 +0200894 pc->req_xfer = 254;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Borislav Petkovd236d742008-04-18 00:46:27 +0200897static void idetape_create_rewind_cmd(ide_drive_t *drive,
898 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200900 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100901 pc->c[0] = REZERO_UNIT;
Borislav Petkov346331f2008-04-18 00:46:26 +0200902 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Borislav Petkovd236d742008-04-18 00:46:27 +0200905static void idetape_create_erase_cmd(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200907 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100908 pc->c[0] = ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 pc->c[1] = 1;
Borislav Petkov346331f2008-04-18 00:46:26 +0200910 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
Borislav Petkovd236d742008-04-18 00:46:27 +0200913static void idetape_create_space_cmd(struct ide_atapi_pc *pc, int count, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200915 ide_init_pc(pc);
Borislav Petkov90699ce2008-02-02 19:56:50 +0100916 pc->c[0] = SPACE;
Borislav Petkov860ff5e2008-02-02 19:56:50 +0100917 put_unaligned(cpu_to_be32(count), (unsigned int *) &pc->c[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 pc->c[1] = cmd;
Borislav Petkov346331f2008-04-18 00:46:26 +0200919 pc->flags |= PC_FLAG_WAIT_FOR_DSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Borislav Petkovd9df9372008-04-27 15:38:34 +0200922static void ide_tape_flush_merge_buffer(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
924 idetape_tape_t *tape = drive->driver_data;
Borislav Petkov55a5d292008-02-02 19:56:49 +0100925
Borislav Petkov54abf372008-02-06 02:57:52 +0100926 if (tape->chrdev_dir != IDETAPE_DIR_WRITE) {
Borislav Petkov077e3bd2008-04-27 15:38:34 +0200927 printk(KERN_ERR "ide-tape: bug: Trying to empty merge buffer"
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100928 " but we are not writing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return;
930 }
Tejun Heo963da552009-04-19 08:46:02 +0900931 if (tape->buf) {
Tejun Heo6bb11dd2009-04-19 08:46:03 +0900932 size_t aligned = roundup(tape->valid, tape->blk_size);
933
934 memset(tape->cur, 0, aligned - tape->valid);
Tejun Heo07bd9682009-04-19 08:46:03 +0900935 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, aligned);
Tejun Heo963da552009-04-19 08:46:02 +0900936 kfree(tape->buf);
937 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
Borislav Petkov54abf372008-02-06 02:57:52 +0100939 tape->chrdev_dir = IDETAPE_DIR_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Tejun Heo88f1b942009-04-19 08:46:02 +0900942static int idetape_init_rw(ide_drive_t *drive, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 idetape_tape_t *tape = drive->driver_data;
Tejun Heo88f1b942009-04-19 08:46:02 +0900945 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Tejun Heo88f1b942009-04-19 08:46:02 +0900947 BUG_ON(dir != IDETAPE_DIR_READ && dir != IDETAPE_DIR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Tejun Heo88f1b942009-04-19 08:46:02 +0900949 if (tape->chrdev_dir == dir)
950 return 0;
951
952 if (tape->chrdev_dir == IDETAPE_DIR_READ)
953 ide_tape_discard_merge_buffer(drive, 1);
954 else if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
955 ide_tape_flush_merge_buffer(drive);
956 idetape_flush_tape_buffers(drive);
957 }
958
959 if (tape->buf || tape->valid) {
960 printk(KERN_ERR "ide-tape: valid should be 0 now\n");
961 tape->valid = 0;
962 }
963
964 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
965 if (!tape->buf)
966 return -ENOMEM;
967 tape->chrdev_dir = dir;
968 tape->cur = tape->buf;
969
970 /*
971 * Issue a 0 rw command to ensure that DSC handshake is
972 * switched from completion mode to buffer available mode. No
973 * point in issuing this if DSC overlap isn't supported, some
974 * drives (Seagate STT3401A) will return an error.
975 */
976 if (drive->dev_flags & IDE_DFLAG_DSC_OVERLAP) {
977 int cmd = dir == IDETAPE_DIR_READ ? REQ_IDETAPE_READ
978 : REQ_IDETAPE_WRITE;
979
980 rc = idetape_queue_rw_tail(drive, cmd, 0);
981 if (rc < 0) {
982 kfree(tape->buf);
983 tape->buf = NULL;
984 tape->chrdev_dir = IDETAPE_DIR_NONE;
985 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 }
Borislav Petkov5e69bd92008-04-27 15:38:25 +0200988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return 0;
990}
991
Borislav Petkov5a04cfa2008-02-06 02:57:54 +0100992static void idetape_pad_zeros(ide_drive_t *drive, int bcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 idetape_tape_t *tape = drive->driver_data;
Tejun Heo963da552009-04-19 08:46:02 +0900995
996 memset(tape->buf, 0, tape->buffer_size);
Borislav Petkov3c98bf32008-02-06 02:57:53 +0100997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 while (bcount) {
Tejun Heo963da552009-04-19 08:46:02 +0900999 unsigned int count = min(tape->buffer_size, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Tejun Heo6bb11dd2009-04-19 08:46:03 +09001001 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 bcount -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004}
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001007 * Rewinds the tape to the Beginning Of the current Partition (BOP). We
1008 * currently support only one partition.
1009 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001010static int idetape_rewind_tape(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001012 struct ide_tape_obj *tape = drive->driver_data;
1013 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001014 struct ide_atapi_pc pc;
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001015 int ret;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001016
Borislav Petkove972d702009-07-17 23:55:16 +00001017 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 idetape_create_rewind_cmd(drive, &pc);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001020 ret = ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
1021 if (ret)
1022 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001024 ret = ide_tape_read_position(drive);
1025 if (ret < 0)
1026 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return 0;
1028}
1029
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001030/* mtio.h compatible commands should be issued to the chrdev interface. */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001031static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd,
1032 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 void __user *argp = (void __user *)arg;
1036
Borislav Petkovd59823f2008-02-02 19:56:51 +01001037 struct idetape_config {
1038 int dsc_rw_frequency;
1039 int dsc_media_access_frequency;
1040 int nr_stages;
1041 } config;
1042
Borislav Petkove972d702009-07-17 23:55:16 +00001043 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%04x", cmd);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001046 case 0x0340:
1047 if (copy_from_user(&config, argp, sizeof(config)))
1048 return -EFAULT;
1049 tape->best_dsc_rw_freq = config.dsc_rw_frequency;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001050 break;
1051 case 0x0350:
Michael Buesch2fc21112009-07-19 09:15:19 +00001052 memset(&config, 0, sizeof(config));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001053 config.dsc_rw_frequency = (int) tape->best_dsc_rw_freq;
Borislav Petkov83042b22008-04-27 15:38:27 +02001054 config.nr_stages = 1;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001055 if (copy_to_user(argp, &config, sizeof(config)))
1056 return -EFAULT;
1057 break;
1058 default:
1059 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061 return 0;
1062}
1063
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001064static int idetape_space_over_filemarks(ide_drive_t *drive, short mt_op,
1065 int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001068 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001069 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001070 int retval, count = 0;
Borislav Petkovb6422012008-02-02 19:56:49 +01001071 int sprev = !!(tape->caps[4] & 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Borislav Petkove972d702009-07-17 23:55:16 +00001073
1074 ide_debug_log(IDE_DBG_FUNC, "mt_op: %d, mt_count: %d", mt_op, mt_count);
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (mt_count == 0)
1077 return 0;
1078 if (MTBSF == mt_op || MTBSFM == mt_op) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001079 if (!sprev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001081 mt_count = -mt_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083
Borislav Petkov54abf372008-02-06 02:57:52 +01001084 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Tejun Heo963da552009-04-19 08:46:02 +09001085 tape->valid = 0;
Borislav Petkov49d80782009-06-07 15:37:06 +02001086 if (test_and_clear_bit(ilog2(IDE_AFLAG_FILEMARK),
1087 &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 ++count;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001089 ide_tape_discard_merge_buffer(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001093 case MTFSF:
1094 case MTBSF:
1095 idetape_create_space_cmd(&pc, mt_count - count,
1096 IDETAPE_SPACE_OVER_FILEMARK);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001097 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001098 case MTFSFM:
1099 case MTBSFM:
1100 if (!sprev)
1101 return -EIO;
1102 retval = idetape_space_over_filemarks(drive, MTFSF,
1103 mt_count - count);
1104 if (retval)
1105 return retval;
1106 count = (MTBSFM == mt_op ? 1 : -1);
1107 return idetape_space_over_filemarks(drive, MTFSF, count);
1108 default:
1109 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1110 mt_op);
1111 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
1113}
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115/*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001116 * Our character device read / write functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001118 * The tape is optimized to maximize throughput when it is transferring an
1119 * integral number of the "continuous transfer limit", which is a parameter of
1120 * the specific tape (26kB on my particular tape, 32kB for Onstream).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 *
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001122 * As of version 1.3 of the driver, the character device provides an abstract
1123 * continuous view of the media - any mix of block sizes (even 1 byte) on the
1124 * same backup/restore procedure is supported. The driver will internally
1125 * convert the requests to the recommended transfer unit, so that an unmatch
1126 * between the user's block size to the recommended size will only result in a
1127 * (slightly) increased driver overhead, but will no longer hit performance.
1128 * This is not applicable to Onstream.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001130static ssize_t idetape_chrdev_read(struct file *file, char __user *buf,
1131 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001133 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001135 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001136 ssize_t ret = 0;
Tejun Heo07bd9682009-04-19 08:46:03 +09001137 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001139 ide_debug_log(IDE_DBG_FUNC, "count %zd", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Borislav Petkov54abf372008-02-06 02:57:52 +01001141 if (tape->chrdev_dir != IDETAPE_DIR_READ) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001142 if (test_bit(ilog2(IDE_AFLAG_DETECT_BS), &drive->atapi_flags))
Borislav Petkov54bb2072008-02-06 02:57:52 +01001143 if (count > tape->blk_size &&
1144 (count % tape->blk_size) == 0)
1145 tape->user_bs_factor = count / tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001147
Tejun Heo88f1b942009-04-19 08:46:02 +09001148 rc = idetape_init_rw(drive, IDETAPE_DIR_READ);
Borislav Petkov8d06bfa2008-02-06 02:57:53 +01001149 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return rc;
Tejun Heo07bd9682009-04-19 08:46:03 +09001151
1152 while (done < count) {
1153 size_t todo;
1154
1155 /* refill if staging buffer is empty */
1156 if (!tape->valid) {
1157 /* If we are at a filemark, nothing more to read */
Borislav Petkov49d80782009-06-07 15:37:06 +02001158 if (test_bit(ilog2(IDE_AFLAG_FILEMARK),
1159 &drive->atapi_flags))
Tejun Heo07bd9682009-04-19 08:46:03 +09001160 break;
1161 /* read */
1162 if (idetape_queue_rw_tail(drive, REQ_IDETAPE_READ,
1163 tape->buffer_size) <= 0)
1164 break;
1165 }
1166
1167 /* copy out */
1168 todo = min_t(size_t, count - done, tape->valid);
1169 if (copy_to_user(buf + done, tape->cur, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001170 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001171
1172 tape->cur += todo;
1173 tape->valid -= todo;
1174 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001176
Borislav Petkov49d80782009-06-07 15:37:06 +02001177 if (!done && test_bit(ilog2(IDE_AFLAG_FILEMARK), &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 idetape_space_over_filemarks(drive, MTFSF, 1);
1179 return 0;
1180 }
Daniel Walkerdcd96372006-06-25 05:47:37 -07001181
Tejun Heo07bd9682009-04-19 08:46:03 +09001182 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001185static ssize_t idetape_chrdev_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 size_t count, loff_t *ppos)
1187{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001188 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 ide_drive_t *drive = tape->drive;
Tejun Heo07bd9682009-04-19 08:46:03 +09001190 size_t done = 0;
Daniel Walkerdcd96372006-06-25 05:47:37 -07001191 ssize_t ret = 0;
Tejun Heo88f1b942009-04-19 08:46:02 +09001192 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /* The drive is write protected. */
1195 if (tape->write_prot)
1196 return -EACCES;
1197
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001198 ide_debug_log(IDE_DBG_FUNC, "count %zd", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 /* Initialize write operation */
Tejun Heo88f1b942009-04-19 08:46:02 +09001201 rc = idetape_init_rw(drive, IDETAPE_DIR_WRITE);
1202 if (rc < 0)
1203 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Tejun Heo07bd9682009-04-19 08:46:03 +09001205 while (done < count) {
1206 size_t todo;
1207
1208 /* flush if staging buffer is full */
1209 if (tape->valid == tape->buffer_size &&
1210 idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE,
1211 tape->buffer_size) <= 0)
1212 return rc;
1213
1214 /* copy in */
1215 todo = min_t(size_t, count - done,
1216 tape->buffer_size - tape->valid);
1217 if (copy_from_user(tape->cur, buf + done, todo))
Daniel Walkerdcd96372006-06-25 05:47:37 -07001218 ret = -EFAULT;
Tejun Heo07bd9682009-04-19 08:46:03 +09001219
1220 tape->cur += todo;
1221 tape->valid += todo;
1222 done += todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
Tejun Heo07bd9682009-04-19 08:46:03 +09001224
1225 return ret ? ret : done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001228static int idetape_write_filemark(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001230 struct ide_tape_obj *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001231 struct ide_atapi_pc pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 /* Write a filemark */
1234 idetape_create_write_filemark_cmd(drive, &pc, 1);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001235 if (ide_queue_pc_tail(drive, tape->disk, &pc, NULL, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
1237 return -EIO;
1238 }
1239 return 0;
1240}
1241
1242/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001243 * Called from idetape_chrdev_ioctl when the general mtio MTIOCTOP ioctl is
1244 * requested.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001246 * Note: MTBSF and MTBSFM are not supported when the tape doesn't support
1247 * spacing over filemarks in the reverse direction. In this case, MTFSFM is also
Borislav Petkov5bd50dc2008-04-27 15:38:28 +02001248 * usually not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001250 * The following commands are currently not supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 *
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001252 * MTFSS, MTBSS, MTWSM, MTSETDENSITY, MTSETDRVBUFFER, MT_ST_BOOLEANS,
1253 * MT_ST_WRITE_THRESHOLD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 */
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001255static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
1257 idetape_tape_t *tape = drive->driver_data;
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +02001258 struct gendisk *disk = tape->disk;
Borislav Petkovd236d742008-04-18 00:46:27 +02001259 struct ide_atapi_pc pc;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001260 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Borislav Petkove972d702009-07-17 23:55:16 +00001262 ide_debug_log(IDE_DBG_FUNC, "MTIOCTOP ioctl: mt_op: %d, mt_count: %d",
1263 mt_op, mt_count);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001266 case MTFSF:
1267 case MTFSFM:
1268 case MTBSF:
1269 case MTBSFM:
1270 if (!mt_count)
1271 return 0;
1272 return idetape_space_over_filemarks(drive, mt_op, mt_count);
1273 default:
1274 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 switch (mt_op) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001278 case MTWEOF:
1279 if (tape->write_prot)
1280 return -EACCES;
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001281 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001282 for (i = 0; i < mt_count; i++) {
1283 retval = idetape_write_filemark(drive);
1284 if (retval)
1285 return retval;
1286 }
1287 return 0;
1288 case MTREW:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001289 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001290 if (idetape_rewind_tape(drive))
1291 return -EIO;
1292 return 0;
1293 case MTLOAD:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001294 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001295 return ide_do_start_stop(drive, disk, IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001296 case MTUNLOAD:
1297 case MTOFFL:
1298 /*
1299 * If door is locked, attempt to unlock before
1300 * attempting to eject.
1301 */
1302 if (tape->door_locked) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001303 if (!ide_set_media_lock(drive, disk, 0))
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001304 tape->door_locked = DOOR_UNLOCKED;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001305 }
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001306 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001307 retval = ide_do_start_stop(drive, disk, !IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001308 if (!retval)
Borislav Petkov49d80782009-06-07 15:37:06 +02001309 clear_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1310 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001311 return retval;
1312 case MTNOP:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001313 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001314 return idetape_flush_tape_buffers(drive);
1315 case MTRETEN:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001316 ide_tape_discard_merge_buffer(drive, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +02001317 return ide_do_start_stop(drive, disk,
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001318 IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001319 case MTEOM:
1320 idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001321 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001322 case MTERASE:
1323 (void)idetape_rewind_tape(drive);
1324 idetape_create_erase_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001325 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001326 case MTSETBLK:
1327 if (mt_count) {
1328 if (mt_count < tape->blk_size ||
1329 mt_count % tape->blk_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return -EIO;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001331 tape->user_bs_factor = mt_count / tape->blk_size;
Borislav Petkov49d80782009-06-07 15:37:06 +02001332 clear_bit(ilog2(IDE_AFLAG_DETECT_BS),
1333 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001334 } else
Borislav Petkov49d80782009-06-07 15:37:06 +02001335 set_bit(ilog2(IDE_AFLAG_DETECT_BS),
1336 &drive->atapi_flags);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001337 return 0;
1338 case MTSEEK:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001339 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001340 return idetape_position_tape(drive,
1341 mt_count * tape->user_bs_factor, tape->partition, 0);
1342 case MTSETPART:
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001343 ide_tape_discard_merge_buffer(drive, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001344 return idetape_position_tape(drive, 0, mt_count, 0);
1345 case MTFSR:
1346 case MTBSR:
1347 case MTLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001348 retval = ide_set_media_lock(drive, disk, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001349 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return retval;
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001351 tape->door_locked = DOOR_EXPLICITLY_LOCKED;
1352 return 0;
1353 case MTUNLOCK:
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001354 retval = ide_set_media_lock(drive, disk, 0);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001355 if (retval)
1356 return retval;
1357 tape->door_locked = DOOR_UNLOCKED;
1358 return 0;
1359 default:
1360 printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",
1361 mt_op);
1362 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364}
1365
1366/*
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001367 * Our character device ioctls. General mtio.h magnetic io commands are
1368 * supported here, and not in the corresponding block interface. Our own
1369 * ide-tape ioctls are supported on both interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 */
Alan Cox05227ad2010-01-04 06:24:00 +00001371static long do_idetape_chrdev_ioctl(struct file *file,
Borislav Petkovd99c9da2008-02-02 19:56:51 +01001372 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001374 struct ide_tape_obj *tape = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 ide_drive_t *drive = tape->drive;
1376 struct mtop mtop;
1377 struct mtget mtget;
1378 struct mtpos mtpos;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001379 int block_offset = 0, position = tape->first_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 void __user *argp = (void __user *)arg;
1381
Borislav Petkove972d702009-07-17 23:55:16 +00001382 ide_debug_log(IDE_DBG_FUNC, "cmd: 0x%x", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Borislav Petkov54abf372008-02-06 02:57:52 +01001384 if (tape->chrdev_dir == IDETAPE_DIR_WRITE) {
Borislav Petkovd9df9372008-04-27 15:38:34 +02001385 ide_tape_flush_merge_buffer(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 idetape_flush_tape_buffers(drive);
1387 }
1388 if (cmd == MTIOCGET || cmd == MTIOCPOS) {
Tejun Heo963da552009-04-19 08:46:02 +09001389 block_offset = tape->valid /
Borislav Petkov54bb2072008-02-06 02:57:52 +01001390 (tape->blk_size * tape->user_bs_factor);
Borislav Petkov55ce3a12009-05-04 09:38:15 +02001391 position = ide_tape_read_position(drive);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001392 if (position < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return -EIO;
1394 }
1395 switch (cmd) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001396 case MTIOCTOP:
1397 if (copy_from_user(&mtop, argp, sizeof(struct mtop)))
1398 return -EFAULT;
1399 return idetape_mtioctop(drive, mtop.mt_op, mtop.mt_count);
1400 case MTIOCGET:
1401 memset(&mtget, 0, sizeof(struct mtget));
1402 mtget.mt_type = MT_ISSCSI2;
1403 mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
1404 mtget.mt_dsreg =
1405 ((tape->blk_size * tape->user_bs_factor)
1406 << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
Borislav Petkov54bb2072008-02-06 02:57:52 +01001407
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001408 if (tape->drv_write_prot)
1409 mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
1410
1411 if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
1412 return -EFAULT;
1413 return 0;
1414 case MTIOCPOS:
1415 mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
1416 if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
1417 return -EFAULT;
1418 return 0;
1419 default:
1420 if (tape->chrdev_dir == IDETAPE_DIR_READ)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001421 ide_tape_discard_merge_buffer(drive, 1);
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001422 return idetape_blkdev_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424}
1425
Alan Cox05227ad2010-01-04 06:24:00 +00001426static long idetape_chrdev_ioctl(struct file *file,
1427 unsigned int cmd, unsigned long arg)
1428{
1429 long ret;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001430 mutex_lock(&ide_tape_mutex);
Alan Cox05227ad2010-01-04 06:24:00 +00001431 ret = do_idetape_chrdev_ioctl(file, cmd, arg);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001432 mutex_unlock(&ide_tape_mutex);
Alan Cox05227ad2010-01-04 06:24:00 +00001433 return ret;
1434}
1435
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001436/*
1437 * Do a mode sense page 0 with block descriptor and if it succeeds set the tape
1438 * block size with the reported value.
1439 */
1440static void ide_tape_get_bsize_from_bdesc(ide_drive_t *drive)
1441{
1442 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001443 struct ide_atapi_pc pc;
Borislav Petkov837272b2009-05-04 09:48:57 +02001444 u8 buf[12];
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001445
1446 idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
Borislav Petkov837272b2009-05-04 09:48:57 +02001447 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001448 printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001449 if (tape->blk_size == 0) {
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001450 printk(KERN_WARNING "ide-tape: Cannot deal with zero "
1451 "block size, assuming 32k\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001452 tape->blk_size = 32768;
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001453 }
1454 return;
1455 }
Borislav Petkov837272b2009-05-04 09:48:57 +02001456 tape->blk_size = (buf[4 + 5] << 16) +
1457 (buf[4 + 6] << 8) +
1458 buf[4 + 7];
1459 tape->drv_write_prot = (buf[2] & 0x80) >> 7;
Borislav Petkove972d702009-07-17 23:55:16 +00001460
1461 ide_debug_log(IDE_DBG_FUNC, "blk_size: %d, write_prot: %d",
1462 tape->blk_size, tape->drv_write_prot);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001463}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001465static int idetape_chrdev_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
1467 unsigned int minor = iminor(inode), i = minor & ~0xc0;
1468 ide_drive_t *drive;
1469 idetape_tape_t *tape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 int retval;
1471
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001472 if (i >= MAX_HWIFS * MAX_DRIVES)
1473 return -ENXIO;
1474
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001475 mutex_lock(&idetape_chrdev_mutex);
1476
Borislav Petkov9d01e4c2009-06-08 22:03:03 +02001477 tape = ide_tape_get(NULL, true, i);
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001478 if (!tape) {
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001479 mutex_unlock(&idetape_chrdev_mutex);
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001480 return -ENXIO;
Jonathan Corbet04f4ac92008-05-15 12:01:56 -06001481 }
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001482
Borislav Petkove972d702009-07-17 23:55:16 +00001483 drive = tape->drive;
1484 filp->private_data = tape;
1485
1486 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 /*
1489 * We really want to do nonseekable_open(inode, filp); here, but some
1490 * versions of tar incorrectly call lseek on tapes and bail out if that
1491 * fails. So we disallow pread() and pwrite(), but permit lseeks.
1492 */
1493 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Borislav Petkov49d80782009-06-07 15:37:06 +02001496 if (test_and_set_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 retval = -EBUSY;
1498 goto out_put_tape;
1499 }
1500
1501 retval = idetape_wait_ready(drive, 60 * HZ);
1502 if (retval) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001503 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
1505 goto out_put_tape;
1506 }
1507
Borislav Petkov79ca7432009-06-15 07:32:04 +02001508 ide_tape_read_position(drive);
Borislav Petkov49d80782009-06-07 15:37:06 +02001509 if (!test_bit(ilog2(IDE_AFLAG_ADDRESS_VALID), &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 (void)idetape_rewind_tape(drive);
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /* Read block size and write protect status from drive. */
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001513 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 /* Set write protect flag if device is opened as read-only. */
1516 if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
1517 tape->write_prot = 1;
1518 else
1519 tape->write_prot = tape->drv_write_prot;
1520
1521 /* Make sure drive isn't write protected if user wants to write. */
1522 if (tape->write_prot) {
1523 if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
1524 (filp->f_flags & O_ACCMODE) == O_RDWR) {
Borislav Petkov49d80782009-06-07 15:37:06 +02001525 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 retval = -EROFS;
1527 goto out_put_tape;
1528 }
1529 }
1530
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001531 /* Lock the tape drive door so user can't eject. */
Borislav Petkov54abf372008-02-06 02:57:52 +01001532 if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001533 if (!ide_set_media_lock(drive, tape->disk, 1)) {
Bartlomiej Zolnierkiewicz385a4b82008-10-10 22:39:37 +02001534 if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
1535 tape->door_locked = DOOR_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537 }
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001538 mutex_unlock(&idetape_chrdev_mutex);
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return 0;
1541
1542out_put_tape:
1543 ide_tape_put(tape);
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001544
1545 mutex_unlock(&idetape_chrdev_mutex);
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return retval;
1548}
1549
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001550static void idetape_write_release(ide_drive_t *drive, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
1552 idetape_tape_t *tape = drive->driver_data;
1553
Borislav Petkovd9df9372008-04-27 15:38:34 +02001554 ide_tape_flush_merge_buffer(drive);
Tejun Heo963da552009-04-19 08:46:02 +09001555 tape->buf = kmalloc(tape->buffer_size, GFP_KERNEL);
1556 if (tape->buf != NULL) {
Borislav Petkov54bb2072008-02-06 02:57:52 +01001557 idetape_pad_zeros(drive, tape->blk_size *
1558 (tape->user_bs_factor - 1));
Tejun Heo963da552009-04-19 08:46:02 +09001559 kfree(tape->buf);
1560 tape->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
1562 idetape_write_filemark(drive);
1563 idetape_flush_tape_buffers(drive);
1564 idetape_flush_tape_buffers(drive);
1565}
1566
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001567static int idetape_chrdev_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001569 struct ide_tape_obj *tape = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 ide_drive_t *drive = tape->drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 unsigned int minor = iminor(inode);
1572
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001573 mutex_lock(&idetape_chrdev_mutex);
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 tape = drive->driver_data;
Borislav Petkov8004a8c2008-02-06 02:57:51 +01001576
Borislav Petkove972d702009-07-17 23:55:16 +00001577 ide_debug_log(IDE_DBG_FUNC, "enter");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Borislav Petkov54abf372008-02-06 02:57:52 +01001579 if (tape->chrdev_dir == IDETAPE_DIR_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 idetape_write_release(drive, minor);
Borislav Petkov54abf372008-02-06 02:57:52 +01001581 if (tape->chrdev_dir == IDETAPE_DIR_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (minor < 128)
Borislav Petkovec0fdb02008-04-27 15:38:34 +02001583 ide_tape_discard_merge_buffer(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
Borislav Petkovf64eee72008-04-27 15:38:25 +02001585
Borislav Petkov49d80782009-06-07 15:37:06 +02001586 if (minor < 128 && test_bit(ilog2(IDE_AFLAG_MEDIUM_PRESENT),
1587 &drive->atapi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 (void) idetape_rewind_tape(drive);
Borislav Petkov49d80782009-06-07 15:37:06 +02001589
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 Petkov49d80782009-06-07 15:37:06 +02001596 clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 ide_tape_put(tape);
Borislav Petkovcbba2fa2009-10-11 00:25:19 +00001598
1599 mutex_unlock(&idetape_chrdev_mutex);
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 return 0;
1602}
1603
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001604static void idetape_get_inquiry_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001607 struct ide_atapi_pc pc;
Bartlomiej Zolnierkiewicz41fa9f82009-03-31 20:15:25 +02001608 u8 pc_buf[256];
Borislav Petkov801bd322008-09-27 19:32:17 +02001609 char fw_rev[4], vendor_id[8], product_id[16];
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 idetape_create_inquiry_cmd(&pc);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001612 if (ide_queue_pc_tail(drive, tape->disk, &pc, pc_buf, pc.req_xfer)) {
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001613 printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n",
1614 tape->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return;
1616 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001617 memcpy(vendor_id, &pc_buf[8], 8);
1618 memcpy(product_id, &pc_buf[16], 16);
1619 memcpy(fw_rev, &pc_buf[32], 4);
Borislav Petkov6d29c8f2008-02-02 19:56:49 +01001620
Borislav Petkov801bd322008-09-27 19:32:17 +02001621 ide_fixstring(vendor_id, 8, 0);
1622 ide_fixstring(product_id, 16, 0);
1623 ide_fixstring(fw_rev, 4, 0);
Borislav Petkov41f81d542008-02-06 02:57:52 +01001624
Borislav Petkov801bd322008-09-27 19:32:17 +02001625 printk(KERN_INFO "ide-tape: %s <-> %s: %.8s %.16s rev %.4s\n",
Borislav Petkov41f81d542008-02-06 02:57:52 +01001626 drive->name, tape->name, vendor_id, product_id, fw_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
1629/*
Borislav Petkovb6422012008-02-02 19:56:49 +01001630 * Ask the tape about its various parameters. In particular, we will adjust our
1631 * data transfer buffer size to the recommended value as returned by the tape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 */
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001633static void idetape_get_mode_sense_results(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
1635 idetape_tape_t *tape = drive->driver_data;
Borislav Petkovd236d742008-04-18 00:46:27 +02001636 struct ide_atapi_pc pc;
Borislav Petkovb13345f2009-05-02 10:26:12 +02001637 u8 buf[24], *caps;
Borislav Petkovb6422012008-02-02 19:56:49 +01001638 u8 speed, max_speed;
Borislav Petkov47314fa2008-02-02 19:56:48 +01001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
Borislav Petkovb13345f2009-05-02 10:26:12 +02001641 if (ide_queue_pc_tail(drive, tape->disk, &pc, buf, pc.req_xfer)) {
Borislav Petkovb6422012008-02-02 19:56:49 +01001642 printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming"
1643 " some default values\n");
Borislav Petkov54bb2072008-02-06 02:57:52 +01001644 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001645 put_unaligned(52, (u16 *)&tape->caps[12]);
1646 put_unaligned(540, (u16 *)&tape->caps[14]);
1647 put_unaligned(6*52, (u16 *)&tape->caps[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return;
1649 }
Borislav Petkovb13345f2009-05-02 10:26:12 +02001650 caps = buf + 4 + buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Borislav Petkovb6422012008-02-02 19:56:49 +01001652 /* convert to host order and save for later use */
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001653 speed = be16_to_cpup((__be16 *)&caps[14]);
1654 max_speed = be16_to_cpup((__be16 *)&caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001656 *(u16 *)&caps[8] = max_speed;
1657 *(u16 *)&caps[12] = be16_to_cpup((__be16 *)&caps[12]);
1658 *(u16 *)&caps[14] = speed;
1659 *(u16 *)&caps[16] = be16_to_cpup((__be16 *)&caps[16]);
Borislav Petkovb6422012008-02-02 19:56:49 +01001660
1661 if (!speed) {
1662 printk(KERN_INFO "ide-tape: %s: invalid tape speed "
1663 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001664 *(u16 *)&caps[14] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
Borislav Petkovb6422012008-02-02 19:56:49 +01001666 if (!max_speed) {
1667 printk(KERN_INFO "ide-tape: %s: invalid max_speed "
1668 "(assuming 650KB/sec)\n", drive->name);
Harvey Harrisoncd740ab2008-07-24 22:53:33 +02001669 *(u16 *)&caps[8] = 650;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
Borislav Petkovb6422012008-02-02 19:56:49 +01001672 memcpy(&tape->caps, caps, 20);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001673
1674 /* device lacks locking support according to capabilities page */
1675 if ((caps[6] & 1) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001676 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +02001677
Borislav Petkovb6422012008-02-02 19:56:49 +01001678 if (caps[7] & 0x02)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001679 tape->blk_size = 512;
Borislav Petkovb6422012008-02-02 19:56:49 +01001680 else if (caps[7] & 0x04)
Borislav Petkov54bb2072008-02-06 02:57:52 +01001681 tape->blk_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001684#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001685#define ide_tape_devset_get(name, field) \
1686static int get_##name(ide_drive_t *drive) \
1687{ \
1688 idetape_tape_t *tape = drive->driver_data; \
1689 return tape->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001691
1692#define ide_tape_devset_set(name, field) \
1693static int set_##name(ide_drive_t *drive, int arg) \
1694{ \
1695 idetape_tape_t *tape = drive->driver_data; \
1696 tape->field = arg; \
1697 return 0; \
1698}
1699
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001700#define ide_tape_devset_rw_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001701ide_tape_devset_get(_name, _field) \
1702ide_tape_devset_set(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001703IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001704
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001705#define ide_tape_devset_r_field(_name, _field) \
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001706ide_tape_devset_get(_name, _field) \
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001707IDE_DEVSET(_name, 0, get_##_name, NULL)
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001708
1709static int mulf_tdsc(ide_drive_t *drive) { return 1000; }
1710static int divf_tdsc(ide_drive_t *drive) { return HZ; }
1711static int divf_buffer(ide_drive_t *drive) { return 2; }
1712static int divf_buffer_size(ide_drive_t *drive) { return 1024; }
1713
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001714ide_devset_rw_flag(dsc_overlap, IDE_DFLAG_DSC_OVERLAP);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001715
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001716ide_tape_devset_rw_field(tdsc, best_dsc_rw_freq);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001717
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001718ide_tape_devset_r_field(avg_speed, avg_speed);
1719ide_tape_devset_r_field(speed, caps[14]);
1720ide_tape_devset_r_field(buffer, caps[16]);
1721ide_tape_devset_r_field(buffer_size, buffer_size);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001722
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001723static const struct ide_proc_devset idetape_settings[] = {
1724 __IDE_PROC_DEVSET(avg_speed, 0, 0xffff, NULL, NULL),
1725 __IDE_PROC_DEVSET(buffer, 0, 0xffff, NULL, divf_buffer),
1726 __IDE_PROC_DEVSET(buffer_size, 0, 0xffff, NULL, divf_buffer_size),
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001727 __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
Borislav Petkove972d702009-07-17 23:55:16 +00001753 ide_debug_log(IDE_DBG_FUNC, "minor: %d", minor);
1754
1755 drive->pc_callback = ide_tape_callback;
Borislav Petkov776bb022008-07-23 19:55:59 +02001756
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001757 drive->dev_flags |= IDE_DFLAG_DSC_OVERLAP;
1758
Bartlomiej Zolnierkiewicz4166c192008-02-01 23:09:30 +01001759 if (drive->hwif->host_flags & IDE_HFLAG_NO_DSC) {
1760 printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n",
1761 tape->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001762 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 /* Seagate Travan drives do not support DSC overlap. */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001766 if (strstr((char *)&drive->id[ATA_ID_PROD], "Seagate STT3401"))
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001767 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 tape->minor = minor;
1770 tape->name[0] = 'h';
1771 tape->name[1] = 't';
1772 tape->name[2] = '0' + minor;
Borislav Petkov54abf372008-02-06 02:57:52 +01001773 tape->chrdev_dir = IDETAPE_DIR_NONE;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 idetape_get_inquiry_results(drive);
1776 idetape_get_mode_sense_results(drive);
Borislav Petkov3cffb9c2008-02-02 19:56:50 +01001777 ide_tape_get_bsize_from_bdesc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 tape->user_bs_factor = 1;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001779 tape->buffer_size = *ctl * tape->blk_size;
1780 while (tape->buffer_size > 0xffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
Borislav Petkovb6422012008-02-02 19:56:49 +01001782 *ctl /= 2;
Borislav Petkovf73850a2008-04-27 15:38:33 +02001783 tape->buffer_size = *ctl * tape->blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
Borislav Petkovf73850a2008-04-27 15:38:33 +02001785 buffer_size = tape->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Borislav Petkov83042b22008-04-27 15:38:27 +02001787 /* select the "best" DSC read/write polling freq */
Borislav Petkovb6422012008-02-02 19:56:49 +01001788 speed = max(*(u16 *)&tape->caps[14], *(u16 *)&tape->caps[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Borislav Petkovf73850a2008-04-27 15:38:33 +02001790 t = (IDETAPE_FIFO_THRESHOLD * tape->buffer_size * HZ) / (speed * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 /*
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001793 * Ensure that the number we got makes sense; limit it within
1794 * IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 */
Harvey Harrisona792bd52008-07-15 21:21:41 +02001796 tape->best_dsc_rw_freq = clamp_t(unsigned long, t, IDETAPE_DSC_RW_MIN,
1797 IDETAPE_DSC_RW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
Nicholas Mc Guire84215962015-03-03 05:52:51 -05001799 "%ums tDSC%s\n",
Borislav Petkovb6422012008-02-02 19:56:49 +01001800 drive->name, tape->name, *(u16 *)&tape->caps[14],
Borislav Petkovf73850a2008-04-27 15:38:33 +02001801 (*(u16 *)&tape->caps[16] * 512) / tape->buffer_size,
1802 tape->buffer_size / 1024,
Nicholas Mc Guire84215962015-03-03 05:52:51 -05001803 jiffies_to_msecs(tape->best_dsc_rw_freq),
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001804 (drive->dev_flags & IDE_DFLAG_USING_DMA) ? ", DMA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001806 ide_proc_register_driver(drive, tape->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
1808
Russell King4031bbe2006-01-06 11:41:00 +00001809static void ide_tape_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
1811 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001813 ide_proc_unregister_driver(drive, tape->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001814 device_del(&tape->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 ide_unregister_region(tape->disk);
1816
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001817 mutex_lock(&idetape_ref_mutex);
1818 put_device(&tape->dev);
1819 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
1821
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001822static void ide_tape_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001824 struct ide_tape_obj *tape = to_ide_drv(dev, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 ide_drive_t *drive = tape->drive;
1826 struct gendisk *g = tape->disk;
1827
Tejun Heo963da552009-04-19 08:46:02 +09001828 BUG_ON(tape->valid);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001829
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001830 drive->dev_flags &= ~IDE_DFLAG_DSC_OVERLAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 drive->driver_data = NULL;
Tony Jonesdbc12722007-09-25 02:03:03 +02001832 device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001833 device_destroy(idetape_sysfs_class,
1834 MKDEV(IDETAPE_MAJOR, tape->minor + 128));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 idetape_devs[tape->minor] = NULL;
1836 g->private_data = NULL;
1837 put_disk(g);
1838 kfree(tape);
1839}
1840
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02001841#ifdef CONFIG_IDE_PROC_FS
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001842static int idetape_name_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001844 ide_drive_t *drive = (ide_drive_t *) m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 idetape_tape_t *tape = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001847 seq_printf(m, "%s\n", tape->name);
1848 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001851static int idetape_name_proc_open(struct inode *inode, struct file *file)
1852{
Al Virod9dda782013-03-31 18:16:14 -04001853 return single_open(file, idetape_name_proc_show, PDE_DATA(inode));
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001854}
1855
1856static const struct file_operations idetape_name_proc_fops = {
1857 .owner = THIS_MODULE,
1858 .open = idetape_name_proc_open,
1859 .read = seq_read,
1860 .llseek = seq_lseek,
1861 .release = single_release,
1862};
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864static ide_proc_entry_t idetape_proc[] = {
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001865 { "capacity", S_IFREG|S_IRUGO, &ide_capacity_proc_fops },
1866 { "name", S_IFREG|S_IRUGO, &idetape_name_proc_fops },
1867 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868};
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001869
1870static ide_proc_entry_t *ide_tape_proc_entries(ide_drive_t *drive)
1871{
1872 return idetape_proc;
1873}
1874
1875static const struct ide_proc_devset *ide_tape_proc_devsets(ide_drive_t *drive)
1876{
1877 return idetape_settings;
1878}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879#endif
1880
Russell King4031bbe2006-01-06 11:41:00 +00001881static int ide_tape_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001883static struct ide_driver idetape_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001884 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001885 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001886 .name = "ide-tape",
1887 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001888 },
Russell King4031bbe2006-01-06 11:41:00 +00001889 .probe = ide_tape_probe,
1890 .remove = ide_tape_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 .version = IDETAPE_VERSION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 .do_request = idetape_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001893#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001894 .proc_entries = ide_tape_proc_entries,
1895 .proc_devsets = ide_tape_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001896#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897};
1898
Borislav Petkov3c98bf32008-02-06 02:57:53 +01001899/* Our character device supporting functions, passed to register_chrdev. */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001900static const struct file_operations idetape_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 .owner = THIS_MODULE,
1902 .read = idetape_chrdev_read,
1903 .write = idetape_chrdev_write,
Alan Cox05227ad2010-01-04 06:24:00 +00001904 .unlocked_ioctl = idetape_chrdev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 .open = idetape_chrdev_open,
1906 .release = idetape_chrdev_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001907 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908};
1909
Al Viroa4600f82008-03-02 10:27:58 -05001910static int idetape_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001912 struct ide_tape_obj *tape;
1913
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001914 mutex_lock(&ide_tape_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001915 tape = ide_tape_get(bdev->bd_disk, false, 0);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001916 mutex_unlock(&ide_tape_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001918 if (!tape)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return -ENXIO;
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return 0;
1922}
1923
Al Virodb2a1442013-05-05 21:52:57 -04001924static void idetape_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001926 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001928 mutex_lock(&ide_tape_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 ide_tape_put(tape);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001930 mutex_unlock(&ide_tape_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Al Viroa4600f82008-03-02 10:27:58 -05001933static int idetape_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 unsigned int cmd, unsigned long arg)
1935{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001936 struct ide_tape_obj *tape = ide_drv_g(bdev->bd_disk, ide_tape_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 ide_drive_t *drive = tape->drive;
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001938 int err;
1939
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001940 mutex_lock(&ide_tape_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001941 err = generic_ide_ioctl(drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (err == -EINVAL)
1943 err = idetape_blkdev_ioctl(drive, cmd, arg);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001944 mutex_unlock(&ide_tape_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return err;
1947}
1948
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001949static const struct block_device_operations idetape_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 .owner = THIS_MODULE,
Al Viroa4600f82008-03-02 10:27:58 -05001951 .open = idetape_open,
1952 .release = idetape_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001953 .ioctl = idetape_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954};
1955
Russell King4031bbe2006-01-06 11:41:00 +00001956static int ide_tape_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
1958 idetape_tape_t *tape;
1959 struct gendisk *g;
1960 int minor;
1961
Borislav Petkove972d702009-07-17 23:55:16 +00001962 ide_debug_log(IDE_DBG_FUNC, "enter");
1963
1964 if (!strstr(DRV_NAME, drive->driver_req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 if (drive->media != ide_tape)
1968 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001969
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001970 if ((drive->dev_flags & IDE_DFLAG_ID_READ) &&
1971 ide_check_atapi_device(drive, DRV_NAME) == 0) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001972 printk(KERN_ERR "ide-tape: %s: not supported by this version of"
1973 " the driver\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 goto failed;
1975 }
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001976 tape = kzalloc(sizeof(idetape_tape_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (tape == NULL) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01001978 printk(KERN_ERR "ide-tape: %s: Can't allocate a tape struct\n",
1979 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 goto failed;
1981 }
1982
1983 g = alloc_disk(1 << PARTN_BITS);
1984 if (!g)
1985 goto out_free_tape;
1986
1987 ide_init_disk(g, drive);
1988
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001989 tape->dev.parent = &drive->gendev;
1990 tape->dev.release = ide_tape_release;
Kees Cook02aa2a32013-07-03 15:04:56 -07001991 dev_set_name(&tape->dev, "%s", dev_name(&drive->gendev));
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001992
1993 if (device_register(&tape->dev))
1994 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 tape->drive = drive;
1997 tape->driver = &idetape_driver;
1998 tape->disk = g;
1999
2000 g->private_data = &tape->driver;
2001
2002 drive->driver_data = tape;
2003
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002004 mutex_lock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 for (minor = 0; idetape_devs[minor]; minor++)
2006 ;
2007 idetape_devs[minor] = tape;
Arjan van de Vencf8b8972006-03-23 03:00:45 -08002008 mutex_unlock(&idetape_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 idetape_setup(drive, tape, minor);
2011
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -07002012 device_create(idetape_sysfs_class, &drive->gendev,
2013 MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
2014 device_create(idetape_sysfs_class, &drive->gendev,
2015 MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
2016 "n%s", tape->name);
Will Dysond5dee802005-09-16 02:55:07 -07002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 g->fops = &idetape_block_ops;
2019 ide_register_region(g);
2020
2021 return 0;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002022
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01002023out_free_disk:
2024 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025out_free_tape:
2026 kfree(tape);
2027failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002028 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
2030
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002031static void __exit idetape_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002033 driver_unregister(&idetape_driver.gen_driver);
Will Dysond5dee802005-09-16 02:55:07 -07002034 class_destroy(idetape_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 unregister_chrdev(IDETAPE_MAJOR, "ht");
2036}
2037
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002038static int __init idetape_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
Will Dysond5dee802005-09-16 02:55:07 -07002040 int error = 1;
2041 idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
2042 if (IS_ERR(idetape_sysfs_class)) {
2043 idetape_sysfs_class = NULL;
2044 printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
2045 error = -EBUSY;
2046 goto out;
2047 }
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
Borislav Petkov5a04cfa2008-02-06 02:57:54 +01002050 printk(KERN_ERR "ide-tape: Failed to register chrdev"
2051 " interface\n");
Will Dysond5dee802005-09-16 02:55:07 -07002052 error = -EBUSY;
2053 goto out_free_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
Will Dysond5dee802005-09-16 02:55:07 -07002055
2056 error = driver_register(&idetape_driver.gen_driver);
2057 if (error)
Alexey Khoroshilov79f18a02016-04-30 01:11:12 +03002058 goto out_free_chrdev;
Will Dysond5dee802005-09-16 02:55:07 -07002059
2060 return 0;
2061
Alexey Khoroshilov79f18a02016-04-30 01:11:12 +03002062out_free_chrdev:
2063 unregister_chrdev(IDETAPE_MAJOR, "ht");
Will Dysond5dee802005-09-16 02:55:07 -07002064out_free_class:
2065 class_destroy(idetape_sysfs_class);
2066out:
2067 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
Kay Sievers263756e2005-12-12 18:03:44 +01002070MODULE_ALIAS("ide:*m-tape*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071module_init(idetape_init);
2072module_exit(idetape_exit);
2073MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);
Borislav Petkov9c145762008-02-06 02:57:54 +01002074MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
2075MODULE_LICENSE("GPL");