blob: 6bac8a746ee2edc49dad2dd0643d65ba00805508 [file] [log] [blame]
Gerd Knorr daa6eda2005-05-10 10:59:13 +02001/*
2 * SCSI Media Changer device driver for Linux 2.6
3 *
4 * (c) 1996-2003 Gerd Knorr <kraxel@bytesex.org>
5 *
6 */
7
8#define VERSION "0.25"
9
Gerd Knorr daa6eda2005-05-10 10:59:13 +020010#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/fs.h>
13#include <linux/kernel.h>
Gerd Knorr daa6eda2005-05-10 10:59:13 +020014#include <linux/mm.h>
15#include <linux/major.h>
16#include <linux/string.h>
17#include <linux/errno.h>
18#include <linux/interrupt.h>
19#include <linux/blkdev.h>
20#include <linux/completion.h>
Gerd Knorr daa6eda2005-05-10 10:59:13 +020021#include <linux/compat.h>
22#include <linux/chio.h> /* here are all the ioctls */
Arjan van de Ven0b950672006-01-11 13:16:10 +010023#include <linux/mutex.h>
FUJITA Tomonorida707c52008-01-24 17:24:50 +090024#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Gerd Knorr daa6eda2005-05-10 10:59:13 +020026
27#include <scsi/scsi.h>
28#include <scsi/scsi_cmnd.h>
29#include <scsi/scsi_driver.h>
30#include <scsi/scsi_ioctl.h>
31#include <scsi/scsi_host.h>
32#include <scsi/scsi_device.h>
James Bottomley84743bb2005-06-12 22:37:10 -050033#include <scsi/scsi_eh.h>
Gerd Knorr daa6eda2005-05-10 10:59:13 +020034#include <scsi/scsi_dbg.h>
35
36#define CH_DT_MAX 16
37#define CH_TYPES 8
FUJITA Tomonorida707c52008-01-24 17:24:50 +090038#define CH_MAX_DEVS 128
Gerd Knorr daa6eda2005-05-10 10:59:13 +020039
40MODULE_DESCRIPTION("device driver for scsi media changer devices");
41MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org>");
42MODULE_LICENSE("GPL");
Rene Hermanf018fa52006-03-08 00:14:20 -080043MODULE_ALIAS_CHARDEV_MAJOR(SCSI_CHANGER_MAJOR);
Scott James Remnant95f6c832009-03-10 16:19:44 +000044MODULE_ALIAS_SCSI_DEVICE(TYPE_MEDIUM_CHANGER);
Gerd Knorr daa6eda2005-05-10 10:59:13 +020045
Arnd Bergmannc45d15d2010-06-02 14:28:52 +020046static DEFINE_MUTEX(ch_mutex);
Gerd Knorr daa6eda2005-05-10 10:59:13 +020047static int init = 1;
48module_param(init, int, 0444);
49MODULE_PARM_DESC(init, \
50 "initialize element status on driver load (default: on)");
51
52static int timeout_move = 300;
53module_param(timeout_move, int, 0644);
54MODULE_PARM_DESC(timeout_move,"timeout for move commands "
55 "(default: 300 seconds)");
56
57static int timeout_init = 3600;
58module_param(timeout_init, int, 0644);
59MODULE_PARM_DESC(timeout_init,"timeout for INITIALIZE ELEMENT STATUS "
60 "(default: 3600 seconds)");
61
62static int verbose = 1;
63module_param(verbose, int, 0644);
64MODULE_PARM_DESC(verbose,"be verbose (default: on)");
65
66static int debug = 0;
67module_param(debug, int, 0644);
68MODULE_PARM_DESC(debug,"enable/disable debug messages, also prints more "
69 "detailed sense codes on scsi errors (default: off)");
70
71static int dt_id[CH_DT_MAX] = { [ 0 ... (CH_DT_MAX-1) ] = -1 };
72static int dt_lun[CH_DT_MAX];
73module_param_array(dt_id, int, NULL, 0444);
74module_param_array(dt_lun, int, NULL, 0444);
75
76/* tell the driver about vendor-specific slots */
77static int vendor_firsts[CH_TYPES-4];
78static int vendor_counts[CH_TYPES-4];
79module_param_array(vendor_firsts, int, NULL, 0444);
80module_param_array(vendor_counts, int, NULL, 0444);
81
Arjan van de Ven0ad78202005-11-28 16:22:25 +010082static const char * vendor_labels[CH_TYPES-4] = {
Gerd Knorr daa6eda2005-05-10 10:59:13 +020083 "v0", "v1", "v2", "v3"
84};
85// module_param_string_array(vendor_labels, NULL, 0444);
86
Hannes Reinecke28c31722014-06-25 16:39:56 +020087#define ch_printk(prefix, ch, fmt, a...) \
Hannes Reinecke22e0d992014-10-24 14:26:44 +020088 sdev_prefix_printk(prefix, (ch)->device, (ch)->name, fmt, ##a)
Hannes Reinecke28c31722014-06-25 16:39:56 +020089
Joe Perches87da3232010-08-10 18:01:22 -070090#define DPRINTK(fmt, arg...) \
91do { \
92 if (debug) \
Hannes Reinecke28c31722014-06-25 16:39:56 +020093 ch_printk(KERN_DEBUG, ch, fmt, ##arg); \
Joe Perches87da3232010-08-10 18:01:22 -070094} while (0)
95#define VPRINTK(level, fmt, arg...) \
96do { \
97 if (verbose) \
Hannes Reinecke28c31722014-06-25 16:39:56 +020098 ch_printk(level, ch, fmt, ##arg); \
Joe Perches87da3232010-08-10 18:01:22 -070099} while (0)
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200100
101/* ------------------------------------------------------------------- */
102
103#define MAX_RETRIES 1
104
Gerd Knorr 21feb5c2005-05-12 10:25:26 +0200105static struct class * ch_sysfs_class;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200106
107typedef struct {
108 struct list_head list;
109 int minor;
110 char name[8];
111 struct scsi_device *device;
112 struct scsi_device **dt; /* ptrs to data transfer elements */
113 u_int firsts[CH_TYPES];
114 u_int counts[CH_TYPES];
115 u_int unit_attention;
116 u_int voltags;
Arjan van de Ven0b950672006-01-11 13:16:10 +0100117 struct mutex lock;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200118} scsi_changer;
119
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900120static DEFINE_IDR(ch_index_idr);
121static DEFINE_SPINLOCK(ch_index_lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200122
Arjan van de Ven0ad78202005-11-28 16:22:25 +0100123static const struct {
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200124 unsigned char sense;
125 unsigned char asc;
126 unsigned char ascq;
127 int errno;
Harvey Harrisond70d4662008-03-31 22:05:30 -0700128} ch_err[] = {
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200129/* Just filled in what looks right. Hav'nt checked any standard paper for
130 these errno assignments, so they may be wrong... */
131 {
132 .sense = ILLEGAL_REQUEST,
133 .asc = 0x21,
134 .ascq = 0x01,
135 .errno = EBADSLT, /* Invalid element address */
136 },{
137 .sense = ILLEGAL_REQUEST,
138 .asc = 0x28,
139 .ascq = 0x01,
140 .errno = EBADE, /* Import or export element accessed */
141 },{
142 .sense = ILLEGAL_REQUEST,
143 .asc = 0x3B,
144 .ascq = 0x0D,
145 .errno = EXFULL, /* Medium destination element full */
146 },{
147 .sense = ILLEGAL_REQUEST,
148 .asc = 0x3B,
149 .ascq = 0x0E,
150 .errno = EBADE, /* Medium source element empty */
151 },{
152 .sense = ILLEGAL_REQUEST,
153 .asc = 0x20,
154 .ascq = 0x00,
155 .errno = EBADRQC, /* Invalid command operation code */
156 },{
157 /* end of list */
158 }
159};
160
161/* ------------------------------------------------------------------- */
162
James Bottomley84743bb2005-06-12 22:37:10 -0500163static int ch_find_errno(struct scsi_sense_hdr *sshdr)
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200164{
165 int i,errno = 0;
166
167 /* Check to see if additional sense information is available */
James Bottomley84743bb2005-06-12 22:37:10 -0500168 if (scsi_sense_valid(sshdr) &&
169 sshdr->asc != 0) {
Harvey Harrisond70d4662008-03-31 22:05:30 -0700170 for (i = 0; ch_err[i].errno != 0; i++) {
171 if (ch_err[i].sense == sshdr->sense_key &&
172 ch_err[i].asc == sshdr->asc &&
173 ch_err[i].ascq == sshdr->ascq) {
174 errno = -ch_err[i].errno;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200175 break;
176 }
177 }
178 }
179 if (errno == 0)
180 errno = -EIO;
181 return errno;
182}
183
184static int
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200185ch_do_scsi(scsi_changer *ch, unsigned char *cmd, int cmd_len,
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200186 void *buffer, unsigned buflength,
187 enum dma_data_direction direction)
188{
James Bottomley84743bb2005-06-12 22:37:10 -0500189 int errno, retries = 0, timeout, result;
190 struct scsi_sense_hdr sshdr;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900191
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200192 timeout = (cmd[0] == INITIALIZE_ELEMENT_STATUS)
193 ? timeout_init : timeout_move;
194
195 retry:
196 errno = 0;
197 if (debug) {
Joe Perches87da3232010-08-10 18:01:22 -0700198 DPRINTK("command: ");
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200199 __scsi_print_command(cmd, cmd_len);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200200 }
201
Hannes Reinecke28c31722014-06-25 16:39:56 +0200202 result = scsi_execute_req(ch->device, cmd, direction, buffer,
James Bottomley84743bb2005-06-12 22:37:10 -0500203 buflength, &sshdr, timeout * HZ,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900204 MAX_RETRIES, NULL);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200205
Joe Perches87da3232010-08-10 18:01:22 -0700206 DPRINTK("result: 0x%x\n",result);
James Bottomley84743bb2005-06-12 22:37:10 -0500207 if (driver_byte(result) & DRIVER_SENSE) {
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200208 if (debug)
Hannes Reinecked811b842014-10-24 14:26:45 +0200209 scsi_print_sense_hdr(ch->device, ch->name, &sshdr);
James Bottomley84743bb2005-06-12 22:37:10 -0500210 errno = ch_find_errno(&sshdr);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200211
James Bottomley84743bb2005-06-12 22:37:10 -0500212 switch(sshdr.sense_key) {
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200213 case UNIT_ATTENTION:
214 ch->unit_attention = 1;
215 if (retries++ < 3)
216 goto retry;
217 break;
218 }
219 }
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200220 return errno;
221}
222
223/* ------------------------------------------------------------------------ */
224
225static int
226ch_elem_to_typecode(scsi_changer *ch, u_int elem)
227{
228 int i;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900229
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200230 for (i = 0; i < CH_TYPES; i++) {
231 if (elem >= ch->firsts[i] &&
232 elem < ch->firsts[i] +
233 ch->counts[i])
234 return i+1;
235 }
236 return 0;
237}
238
239static int
240ch_read_element_status(scsi_changer *ch, u_int elem, char *data)
241{
242 u_char cmd[12];
243 u_char *buffer;
244 int result;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900245
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200246 buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
247 if(!buffer)
248 return -ENOMEM;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900249
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200250 retry:
251 memset(cmd,0,sizeof(cmd));
252 cmd[0] = READ_ELEMENT_STATUS;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200253 cmd[1] = ((ch->device->lun & 0x7) << 5) |
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200254 (ch->voltags ? 0x10 : 0) |
255 ch_elem_to_typecode(ch,elem);
256 cmd[2] = (elem >> 8) & 0xff;
257 cmd[3] = elem & 0xff;
258 cmd[5] = 1;
259 cmd[9] = 255;
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200260 if (0 == (result = ch_do_scsi(ch, cmd, 12,
261 buffer, 256, DMA_FROM_DEVICE))) {
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200262 if (((buffer[16] << 8) | buffer[17]) != elem) {
Joe Perches87da3232010-08-10 18:01:22 -0700263 DPRINTK("asked for element 0x%02x, got 0x%02x\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200264 elem,(buffer[16] << 8) | buffer[17]);
265 kfree(buffer);
266 return -EIO;
267 }
268 memcpy(data,buffer+16,16);
269 } else {
270 if (ch->voltags) {
271 ch->voltags = 0;
Joe Perches87da3232010-08-10 18:01:22 -0700272 VPRINTK(KERN_INFO, "device has no volume tag support\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200273 goto retry;
274 }
Joe Perches87da3232010-08-10 18:01:22 -0700275 DPRINTK("READ ELEMENT STATUS for element 0x%x failed\n",elem);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200276 }
277 kfree(buffer);
278 return result;
279}
280
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900281static int
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200282ch_init_elem(scsi_changer *ch)
283{
284 int err;
285 u_char cmd[6];
286
Joe Perches87da3232010-08-10 18:01:22 -0700287 VPRINTK(KERN_INFO, "INITIALIZE ELEMENT STATUS, may take some time ...\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200288 memset(cmd,0,sizeof(cmd));
289 cmd[0] = INITIALIZE_ELEMENT_STATUS;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200290 cmd[1] = (ch->device->lun & 0x7) << 5;
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200291 err = ch_do_scsi(ch, cmd, 6, NULL, 0, DMA_NONE);
Joe Perches87da3232010-08-10 18:01:22 -0700292 VPRINTK(KERN_INFO, "... finished\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200293 return err;
294}
295
296static int
297ch_readconfig(scsi_changer *ch)
298{
299 u_char cmd[10], data[16];
300 u_char *buffer;
301 int result,id,lun,i;
302 u_int elem;
303
vignesh.babu@wipro.com4530a162007-04-16 11:35:33 +0530304 buffer = kzalloc(512, GFP_KERNEL | GFP_DMA);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200305 if (!buffer)
306 return -ENOMEM;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900307
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200308 memset(cmd,0,sizeof(cmd));
309 cmd[0] = MODE_SENSE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200310 cmd[1] = (ch->device->lun & 0x7) << 5;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200311 cmd[2] = 0x1d;
312 cmd[4] = 255;
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200313 result = ch_do_scsi(ch, cmd, 10, buffer, 255, DMA_FROM_DEVICE);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200314 if (0 != result) {
315 cmd[1] |= (1<<3);
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200316 result = ch_do_scsi(ch, cmd, 10, buffer, 255, DMA_FROM_DEVICE);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200317 }
318 if (0 == result) {
319 ch->firsts[CHET_MT] =
320 (buffer[buffer[3]+ 6] << 8) | buffer[buffer[3]+ 7];
321 ch->counts[CHET_MT] =
322 (buffer[buffer[3]+ 8] << 8) | buffer[buffer[3]+ 9];
323 ch->firsts[CHET_ST] =
324 (buffer[buffer[3]+10] << 8) | buffer[buffer[3]+11];
325 ch->counts[CHET_ST] =
326 (buffer[buffer[3]+12] << 8) | buffer[buffer[3]+13];
327 ch->firsts[CHET_IE] =
328 (buffer[buffer[3]+14] << 8) | buffer[buffer[3]+15];
329 ch->counts[CHET_IE] =
330 (buffer[buffer[3]+16] << 8) | buffer[buffer[3]+17];
331 ch->firsts[CHET_DT] =
332 (buffer[buffer[3]+18] << 8) | buffer[buffer[3]+19];
333 ch->counts[CHET_DT] =
334 (buffer[buffer[3]+20] << 8) | buffer[buffer[3]+21];
Joe Perches87da3232010-08-10 18:01:22 -0700335 VPRINTK(KERN_INFO, "type #1 (mt): 0x%x+%d [medium transport]\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200336 ch->firsts[CHET_MT],
337 ch->counts[CHET_MT]);
Joe Perches87da3232010-08-10 18:01:22 -0700338 VPRINTK(KERN_INFO, "type #2 (st): 0x%x+%d [storage]\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200339 ch->firsts[CHET_ST],
340 ch->counts[CHET_ST]);
Joe Perches87da3232010-08-10 18:01:22 -0700341 VPRINTK(KERN_INFO, "type #3 (ie): 0x%x+%d [import/export]\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200342 ch->firsts[CHET_IE],
343 ch->counts[CHET_IE]);
Joe Perches87da3232010-08-10 18:01:22 -0700344 VPRINTK(KERN_INFO, "type #4 (dt): 0x%x+%d [data transfer]\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200345 ch->firsts[CHET_DT],
346 ch->counts[CHET_DT]);
347 } else {
Joe Perches87da3232010-08-10 18:01:22 -0700348 VPRINTK(KERN_INFO, "reading element address assigment page failed!\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200349 }
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900350
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200351 /* vendor specific element types */
352 for (i = 0; i < 4; i++) {
353 if (0 == vendor_counts[i])
354 continue;
355 if (NULL == vendor_labels[i])
356 continue;
357 ch->firsts[CHET_V1+i] = vendor_firsts[i];
358 ch->counts[CHET_V1+i] = vendor_counts[i];
Joe Perches87da3232010-08-10 18:01:22 -0700359 VPRINTK(KERN_INFO, "type #%d (v%d): 0x%x+%d [%s, vendor specific]\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200360 i+5,i+1,vendor_firsts[i],vendor_counts[i],
361 vendor_labels[i]);
362 }
363
364 /* look up the devices of the data transfer elements */
Julia Lawall85bc0812010-08-10 18:01:18 -0700365 ch->dt = kcalloc(ch->counts[CHET_DT], sizeof(*ch->dt),
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200366 GFP_KERNEL);
Davidlohr Bueso Aa2cf8a62009-08-07 16:42:21 -0400367
368 if (!ch->dt) {
369 kfree(buffer);
370 return -ENOMEM;
371 }
372
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200373 for (elem = 0; elem < ch->counts[CHET_DT]; elem++) {
374 id = -1;
375 lun = 0;
376 if (elem < CH_DT_MAX && -1 != dt_id[elem]) {
377 id = dt_id[elem];
378 lun = dt_lun[elem];
Joe Perches87da3232010-08-10 18:01:22 -0700379 VPRINTK(KERN_INFO, "dt 0x%x: [insmod option] ",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200380 elem+ch->firsts[CHET_DT]);
381 } else if (0 != ch_read_element_status
382 (ch,elem+ch->firsts[CHET_DT],data)) {
Joe Perches87da3232010-08-10 18:01:22 -0700383 VPRINTK(KERN_INFO, "dt 0x%x: READ ELEMENT STATUS failed\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200384 elem+ch->firsts[CHET_DT]);
385 } else {
Joe Perches87da3232010-08-10 18:01:22 -0700386 VPRINTK(KERN_INFO, "dt 0x%x: ",elem+ch->firsts[CHET_DT]);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200387 if (data[6] & 0x80) {
Joe Perches87da3232010-08-10 18:01:22 -0700388 VPRINTK(KERN_CONT, "not this SCSI bus\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200389 ch->dt[elem] = NULL;
390 } else if (0 == (data[6] & 0x30)) {
Joe Perches87da3232010-08-10 18:01:22 -0700391 VPRINTK(KERN_CONT, "ID/LUN unknown\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200392 ch->dt[elem] = NULL;
393 } else {
394 id = ch->device->id;
395 lun = 0;
396 if (data[6] & 0x20) id = data[7];
397 if (data[6] & 0x10) lun = data[6] & 7;
398 }
399 }
400 if (-1 != id) {
Joe Perches87da3232010-08-10 18:01:22 -0700401 VPRINTK(KERN_CONT, "ID %i, LUN %i, ",id,lun);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200402 ch->dt[elem] =
403 scsi_device_lookup(ch->device->host,
404 ch->device->channel,
405 id,lun);
406 if (!ch->dt[elem]) {
407 /* should not happen */
Joe Perches87da3232010-08-10 18:01:22 -0700408 VPRINTK(KERN_CONT, "Huh? device not found!\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200409 } else {
Joe Perches87da3232010-08-10 18:01:22 -0700410 VPRINTK(KERN_CONT, "name: %8.8s %16.16s %4.4s\n",
411 ch->dt[elem]->vendor,
412 ch->dt[elem]->model,
413 ch->dt[elem]->rev);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200414 }
415 }
416 }
417 ch->voltags = 1;
418 kfree(buffer);
419
420 return 0;
421}
422
423/* ------------------------------------------------------------------------ */
424
425static int
426ch_position(scsi_changer *ch, u_int trans, u_int elem, int rotate)
427{
428 u_char cmd[10];
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900429
Joe Perches87da3232010-08-10 18:01:22 -0700430 DPRINTK("position: 0x%x\n",elem);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200431 if (0 == trans)
432 trans = ch->firsts[CHET_MT];
433 memset(cmd,0,sizeof(cmd));
434 cmd[0] = POSITION_TO_ELEMENT;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200435 cmd[1] = (ch->device->lun & 0x7) << 5;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200436 cmd[2] = (trans >> 8) & 0xff;
437 cmd[3] = trans & 0xff;
438 cmd[4] = (elem >> 8) & 0xff;
439 cmd[5] = elem & 0xff;
440 cmd[8] = rotate ? 1 : 0;
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200441 return ch_do_scsi(ch, cmd, 10, NULL, 0, DMA_NONE);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200442}
443
444static int
445ch_move(scsi_changer *ch, u_int trans, u_int src, u_int dest, int rotate)
446{
447 u_char cmd[12];
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900448
Joe Perches87da3232010-08-10 18:01:22 -0700449 DPRINTK("move: 0x%x => 0x%x\n",src,dest);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200450 if (0 == trans)
451 trans = ch->firsts[CHET_MT];
452 memset(cmd,0,sizeof(cmd));
453 cmd[0] = MOVE_MEDIUM;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200454 cmd[1] = (ch->device->lun & 0x7) << 5;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200455 cmd[2] = (trans >> 8) & 0xff;
456 cmd[3] = trans & 0xff;
457 cmd[4] = (src >> 8) & 0xff;
458 cmd[5] = src & 0xff;
459 cmd[6] = (dest >> 8) & 0xff;
460 cmd[7] = dest & 0xff;
461 cmd[10] = rotate ? 1 : 0;
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200462 return ch_do_scsi(ch, cmd, 12, NULL,0, DMA_NONE);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200463}
464
465static int
466ch_exchange(scsi_changer *ch, u_int trans, u_int src,
467 u_int dest1, u_int dest2, int rotate1, int rotate2)
468{
469 u_char cmd[12];
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900470
Joe Perches87da3232010-08-10 18:01:22 -0700471 DPRINTK("exchange: 0x%x => 0x%x => 0x%x\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200472 src,dest1,dest2);
473 if (0 == trans)
474 trans = ch->firsts[CHET_MT];
475 memset(cmd,0,sizeof(cmd));
476 cmd[0] = EXCHANGE_MEDIUM;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200477 cmd[1] = (ch->device->lun & 0x7) << 5;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200478 cmd[2] = (trans >> 8) & 0xff;
479 cmd[3] = trans & 0xff;
480 cmd[4] = (src >> 8) & 0xff;
481 cmd[5] = src & 0xff;
482 cmd[6] = (dest1 >> 8) & 0xff;
483 cmd[7] = dest1 & 0xff;
484 cmd[8] = (dest2 >> 8) & 0xff;
485 cmd[9] = dest2 & 0xff;
486 cmd[10] = (rotate1 ? 1 : 0) | (rotate2 ? 2 : 0);
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900487
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200488 return ch_do_scsi(ch, cmd, 12, NULL, 0, DMA_NONE);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200489}
490
491static void
492ch_check_voltag(char *tag)
493{
494 int i;
495
496 for (i = 0; i < 32; i++) {
497 /* restrict to ascii */
498 if (tag[i] >= 0x7f || tag[i] < 0x20)
499 tag[i] = ' ';
500 /* don't allow search wildcards */
501 if (tag[i] == '?' ||
502 tag[i] == '*')
503 tag[i] = ' ';
504 }
505}
506
507static int
508ch_set_voltag(scsi_changer *ch, u_int elem,
509 int alternate, int clear, u_char *tag)
510{
511 u_char cmd[12];
512 u_char *buffer;
513 int result;
514
vignesh.babu@wipro.com4530a162007-04-16 11:35:33 +0530515 buffer = kzalloc(512, GFP_KERNEL);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200516 if (!buffer)
517 return -ENOMEM;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200518
Joe Perches87da3232010-08-10 18:01:22 -0700519 DPRINTK("%s %s voltag: 0x%x => \"%s\"\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200520 clear ? "clear" : "set",
521 alternate ? "alternate" : "primary",
522 elem, tag);
523 memset(cmd,0,sizeof(cmd));
524 cmd[0] = SEND_VOLUME_TAG;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200525 cmd[1] = ((ch->device->lun & 0x7) << 5) |
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200526 ch_elem_to_typecode(ch,elem);
527 cmd[2] = (elem >> 8) & 0xff;
528 cmd[3] = elem & 0xff;
529 cmd[5] = clear
530 ? (alternate ? 0x0d : 0x0c)
531 : (alternate ? 0x0b : 0x0a);
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900532
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200533 cmd[9] = 255;
534
535 memcpy(buffer,tag,32);
536 ch_check_voltag(buffer);
537
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200538 result = ch_do_scsi(ch, cmd, 12, buffer, 256, DMA_TO_DEVICE);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200539 kfree(buffer);
540 return result;
541}
542
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100543static int ch_gstatus(scsi_changer *ch, int type, unsigned char __user *dest)
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200544{
545 int retval = 0;
546 u_char data[16];
547 unsigned int i;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900548
Arjan van de Ven0b950672006-01-11 13:16:10 +0100549 mutex_lock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200550 for (i = 0; i < ch->counts[type]; i++) {
551 if (0 != ch_read_element_status
552 (ch, ch->firsts[type]+i,data)) {
553 retval = -EIO;
554 break;
555 }
556 put_user(data[2], dest+i);
557 if (data[2] & CESTATUS_EXCEPT)
Joe Perches87da3232010-08-10 18:01:22 -0700558 VPRINTK(KERN_INFO, "element 0x%x: asc=0x%x, ascq=0x%x\n",
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200559 ch->firsts[type]+i,
560 (int)data[4],(int)data[5]);
561 retval = ch_read_element_status
562 (ch, ch->firsts[type]+i,data);
563 if (0 != retval)
564 break;
565 }
Arjan van de Ven0b950672006-01-11 13:16:10 +0100566 mutex_unlock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200567 return retval;
568}
569
570/* ------------------------------------------------------------------------ */
571
572static int
573ch_release(struct inode *inode, struct file *file)
574{
575 scsi_changer *ch = file->private_data;
576
577 scsi_device_put(ch->device);
578 file->private_data = NULL;
579 return 0;
580}
581
582static int
583ch_open(struct inode *inode, struct file *file)
584{
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900585 scsi_changer *ch;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200586 int minor = iminor(inode);
587
Arnd Bergmannc45d15d2010-06-02 14:28:52 +0200588 mutex_lock(&ch_mutex);
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900589 spin_lock(&ch_index_lock);
590 ch = idr_find(&ch_index_idr, minor);
591
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200592 if (NULL == ch || scsi_device_get(ch->device)) {
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900593 spin_unlock(&ch_index_lock);
Arnd Bergmannc45d15d2010-06-02 14:28:52 +0200594 mutex_unlock(&ch_mutex);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200595 return -ENXIO;
596 }
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900597 spin_unlock(&ch_index_lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200598
599 file->private_data = ch;
Arnd Bergmannc45d15d2010-06-02 14:28:52 +0200600 mutex_unlock(&ch_mutex);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200601 return 0;
602}
603
604static int
605ch_checkrange(scsi_changer *ch, unsigned int type, unsigned int unit)
606{
607 if (type >= CH_TYPES || unit >= ch->counts[type])
608 return -1;
609 return 0;
610}
611
Mathieu Segaudf7fea182008-01-14 15:43:18 +0100612static long ch_ioctl(struct file *file,
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200613 unsigned int cmd, unsigned long arg)
614{
615 scsi_changer *ch = file->private_data;
616 int retval;
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100617 void __user *argp = (void __user *)arg;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900618
Christoph Hellwig906d15f2014-10-11 16:25:31 +0200619 retval = scsi_ioctl_block_when_processing_errors(ch->device, cmd,
620 file->f_flags & O_NDELAY);
621 if (retval)
622 return retval;
623
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200624 switch (cmd) {
625 case CHIOGPARAMS:
626 {
627 struct changer_params params;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900628
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200629 params.cp_curpicker = 0;
630 params.cp_npickers = ch->counts[CHET_MT];
631 params.cp_nslots = ch->counts[CHET_ST];
632 params.cp_nportals = ch->counts[CHET_IE];
633 params.cp_ndrives = ch->counts[CHET_DT];
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900634
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100635 if (copy_to_user(argp, &params, sizeof(params)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200636 return -EFAULT;
637 return 0;
638 }
639 case CHIOGVPARAMS:
640 {
641 struct changer_vendor_params vparams;
642
643 memset(&vparams,0,sizeof(vparams));
644 if (ch->counts[CHET_V1]) {
645 vparams.cvp_n1 = ch->counts[CHET_V1];
646 strncpy(vparams.cvp_label1,vendor_labels[0],16);
647 }
648 if (ch->counts[CHET_V2]) {
649 vparams.cvp_n2 = ch->counts[CHET_V2];
650 strncpy(vparams.cvp_label2,vendor_labels[1],16);
651 }
652 if (ch->counts[CHET_V3]) {
653 vparams.cvp_n3 = ch->counts[CHET_V3];
654 strncpy(vparams.cvp_label3,vendor_labels[2],16);
655 }
656 if (ch->counts[CHET_V4]) {
657 vparams.cvp_n4 = ch->counts[CHET_V4];
658 strncpy(vparams.cvp_label4,vendor_labels[3],16);
659 }
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100660 if (copy_to_user(argp, &vparams, sizeof(vparams)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200661 return -EFAULT;
662 return 0;
663 }
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900664
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200665 case CHIOPOSITION:
666 {
667 struct changer_position pos;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900668
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100669 if (copy_from_user(&pos, argp, sizeof (pos)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200670 return -EFAULT;
671
672 if (0 != ch_checkrange(ch, pos.cp_type, pos.cp_unit)) {
Joe Perches87da3232010-08-10 18:01:22 -0700673 DPRINTK("CHIOPOSITION: invalid parameter\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200674 return -EBADSLT;
675 }
Arjan van de Ven0b950672006-01-11 13:16:10 +0100676 mutex_lock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200677 retval = ch_position(ch,0,
678 ch->firsts[pos.cp_type] + pos.cp_unit,
679 pos.cp_flags & CP_INVERT);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100680 mutex_unlock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200681 return retval;
682 }
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900683
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200684 case CHIOMOVE:
685 {
686 struct changer_move mv;
687
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100688 if (copy_from_user(&mv, argp, sizeof (mv)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200689 return -EFAULT;
690
691 if (0 != ch_checkrange(ch, mv.cm_fromtype, mv.cm_fromunit) ||
692 0 != ch_checkrange(ch, mv.cm_totype, mv.cm_tounit )) {
Joe Perches87da3232010-08-10 18:01:22 -0700693 DPRINTK("CHIOMOVE: invalid parameter\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200694 return -EBADSLT;
695 }
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900696
Arjan van de Ven0b950672006-01-11 13:16:10 +0100697 mutex_lock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200698 retval = ch_move(ch,0,
699 ch->firsts[mv.cm_fromtype] + mv.cm_fromunit,
700 ch->firsts[mv.cm_totype] + mv.cm_tounit,
701 mv.cm_flags & CM_INVERT);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100702 mutex_unlock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200703 return retval;
704 }
705
706 case CHIOEXCHANGE:
707 {
708 struct changer_exchange mv;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900709
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100710 if (copy_from_user(&mv, argp, sizeof (mv)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200711 return -EFAULT;
712
713 if (0 != ch_checkrange(ch, mv.ce_srctype, mv.ce_srcunit ) ||
714 0 != ch_checkrange(ch, mv.ce_fdsttype, mv.ce_fdstunit) ||
715 0 != ch_checkrange(ch, mv.ce_sdsttype, mv.ce_sdstunit)) {
Joe Perches87da3232010-08-10 18:01:22 -0700716 DPRINTK("CHIOEXCHANGE: invalid parameter\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200717 return -EBADSLT;
718 }
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900719
Arjan van de Ven0b950672006-01-11 13:16:10 +0100720 mutex_lock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200721 retval = ch_exchange
722 (ch,0,
723 ch->firsts[mv.ce_srctype] + mv.ce_srcunit,
724 ch->firsts[mv.ce_fdsttype] + mv.ce_fdstunit,
725 ch->firsts[mv.ce_sdsttype] + mv.ce_sdstunit,
726 mv.ce_flags & CE_INVERT1, mv.ce_flags & CE_INVERT2);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100727 mutex_unlock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200728 return retval;
729 }
730
731 case CHIOGSTATUS:
732 {
733 struct changer_element_status ces;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900734
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100735 if (copy_from_user(&ces, argp, sizeof (ces)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200736 return -EFAULT;
737 if (ces.ces_type < 0 || ces.ces_type >= CH_TYPES)
738 return -EINVAL;
739
740 return ch_gstatus(ch, ces.ces_type, ces.ces_data);
741 }
742
743 case CHIOGELEM:
744 {
745 struct changer_get_element cge;
Harvey Harrisond70d4662008-03-31 22:05:30 -0700746 u_char ch_cmd[12];
747 u_char *buffer;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200748 unsigned int elem;
749 int result,i;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900750
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100751 if (copy_from_user(&cge, argp, sizeof (cge)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200752 return -EFAULT;
753
754 if (0 != ch_checkrange(ch, cge.cge_type, cge.cge_unit))
755 return -EINVAL;
756 elem = ch->firsts[cge.cge_type] + cge.cge_unit;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900757
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200758 buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
759 if (!buffer)
760 return -ENOMEM;
Arjan van de Ven0b950672006-01-11 13:16:10 +0100761 mutex_lock(&ch->lock);
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900762
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200763 voltag_retry:
Harvey Harrisond70d4662008-03-31 22:05:30 -0700764 memset(ch_cmd, 0, sizeof(ch_cmd));
765 ch_cmd[0] = READ_ELEMENT_STATUS;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200766 ch_cmd[1] = ((ch->device->lun & 0x7) << 5) |
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200767 (ch->voltags ? 0x10 : 0) |
768 ch_elem_to_typecode(ch,elem);
Harvey Harrisond70d4662008-03-31 22:05:30 -0700769 ch_cmd[2] = (elem >> 8) & 0xff;
770 ch_cmd[3] = elem & 0xff;
771 ch_cmd[5] = 1;
772 ch_cmd[9] = 255;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900773
Hannes Reineckea9a47bf2014-10-24 14:26:57 +0200774 result = ch_do_scsi(ch, ch_cmd, 12,
775 buffer, 256, DMA_FROM_DEVICE);
Harvey Harrisond70d4662008-03-31 22:05:30 -0700776 if (!result) {
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200777 cge.cge_status = buffer[18];
778 cge.cge_flags = 0;
779 if (buffer[18] & CESTATUS_EXCEPT) {
780 cge.cge_errno = EIO;
781 }
782 if (buffer[25] & 0x80) {
783 cge.cge_flags |= CGE_SRC;
784 if (buffer[25] & 0x40)
785 cge.cge_flags |= CGE_INVERT;
786 elem = (buffer[26]<<8) | buffer[27];
787 for (i = 0; i < 4; i++) {
788 if (elem >= ch->firsts[i] &&
789 elem < ch->firsts[i] + ch->counts[i]) {
790 cge.cge_srctype = i;
791 cge.cge_srcunit = elem-ch->firsts[i];
792 }
793 }
794 }
795 if ((buffer[22] & 0x30) == 0x30) {
796 cge.cge_flags |= CGE_IDLUN;
797 cge.cge_id = buffer[23];
798 cge.cge_lun = buffer[22] & 7;
799 }
800 if (buffer[9] & 0x80) {
801 cge.cge_flags |= CGE_PVOLTAG;
802 memcpy(cge.cge_pvoltag,buffer+28,36);
803 }
804 if (buffer[9] & 0x40) {
805 cge.cge_flags |= CGE_AVOLTAG;
806 memcpy(cge.cge_avoltag,buffer+64,36);
807 }
808 } else if (ch->voltags) {
809 ch->voltags = 0;
Joe Perches87da3232010-08-10 18:01:22 -0700810 VPRINTK(KERN_INFO, "device has no volume tag support\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200811 goto voltag_retry;
812 }
813 kfree(buffer);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100814 mutex_unlock(&ch->lock);
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900815
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100816 if (copy_to_user(argp, &cge, sizeof (cge)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200817 return -EFAULT;
818 return result;
819 }
820
821 case CHIOINITELEM:
822 {
Arjan van de Ven0b950672006-01-11 13:16:10 +0100823 mutex_lock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200824 retval = ch_init_elem(ch);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100825 mutex_unlock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200826 return retval;
827 }
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900828
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200829 case CHIOSVOLTAG:
830 {
831 struct changer_set_voltag csv;
832 int elem;
833
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100834 if (copy_from_user(&csv, argp, sizeof(csv)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200835 return -EFAULT;
836
837 if (0 != ch_checkrange(ch, csv.csv_type, csv.csv_unit)) {
Joe Perches87da3232010-08-10 18:01:22 -0700838 DPRINTK("CHIOSVOLTAG: invalid parameter\n");
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200839 return -EBADSLT;
840 }
841 elem = ch->firsts[csv.csv_type] + csv.csv_unit;
Arjan van de Ven0b950672006-01-11 13:16:10 +0100842 mutex_lock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200843 retval = ch_set_voltag(ch, elem,
844 csv.csv_flags & CSV_AVOLTAG,
845 csv.csv_flags & CSV_CLEARTAG,
846 csv.csv_voltag);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100847 mutex_unlock(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200848 return retval;
849 }
850
851 default:
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100852 return scsi_ioctl(ch->device, cmd, argp);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200853
854 }
855}
856
857#ifdef CONFIG_COMPAT
858
859struct changer_element_status32 {
860 int ces_type;
861 compat_uptr_t ces_data;
862};
863#define CHIOGSTATUS32 _IOW('c', 8,struct changer_element_status32)
864
865static long ch_ioctl_compat(struct file * file,
866 unsigned int cmd, unsigned long arg)
867{
868 scsi_changer *ch = file->private_data;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900869
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200870 switch (cmd) {
871 case CHIOGPARAMS:
872 case CHIOGVPARAMS:
873 case CHIOPOSITION:
874 case CHIOMOVE:
875 case CHIOEXCHANGE:
876 case CHIOGELEM:
877 case CHIOINITELEM:
878 case CHIOSVOLTAG:
879 /* compatible */
Mathieu Segaudf7fea182008-01-14 15:43:18 +0100880 return ch_ioctl(file, cmd, arg);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200881 case CHIOGSTATUS32:
882 {
883 struct changer_element_status32 ces32;
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100884 unsigned char __user *data;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900885
viro@ZenIV.linux.org.ukfe08ac32005-09-09 22:03:44 +0100886 if (copy_from_user(&ces32, (void __user *)arg, sizeof (ces32)))
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200887 return -EFAULT;
888 if (ces32.ces_type < 0 || ces32.ces_type >= CH_TYPES)
889 return -EINVAL;
890
891 data = compat_ptr(ces32.ces_data);
892 return ch_gstatus(ch, ces32.ces_type, data);
893 }
894 default:
895 // return scsi_ioctl_compat(ch->device, cmd, (void*)arg);
896 return -ENOIOCTLCMD;
897
898 }
899}
900#endif
901
902/* ------------------------------------------------------------------------ */
903
904static int ch_probe(struct device *dev)
905{
906 struct scsi_device *sd = to_scsi_device(dev);
Tony Jonesee959b02008-02-22 00:13:36 +0100907 struct device *class_dev;
Tejun Heob98c52b2013-02-27 17:04:42 -0800908 int ret;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200909 scsi_changer *ch;
FUJITA Tomonoria3d2c2e2008-01-23 23:34:35 +0900910
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200911 if (sd->type != TYPE_MEDIUM_CHANGER)
912 return -ENODEV;
FUJITA Tomonoria3d2c2e2008-01-23 23:34:35 +0900913
vignesh.babu@wipro.com4530a162007-04-16 11:35:33 +0530914 ch = kzalloc(sizeof(*ch), GFP_KERNEL);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200915 if (NULL == ch)
916 return -ENOMEM;
917
Tejun Heob98c52b2013-02-27 17:04:42 -0800918 idr_preload(GFP_KERNEL);
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900919 spin_lock(&ch_index_lock);
Tejun Heob98c52b2013-02-27 17:04:42 -0800920 ret = idr_alloc(&ch_index_idr, ch, 0, CH_MAX_DEVS + 1, GFP_NOWAIT);
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900921 spin_unlock(&ch_index_lock);
Tejun Heob98c52b2013-02-27 17:04:42 -0800922 idr_preload_end();
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900923
Tejun Heob98c52b2013-02-27 17:04:42 -0800924 if (ret < 0) {
925 if (ret == -ENOSPC)
926 ret = -ENODEV;
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900927 goto free_ch;
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900928 }
929
Tejun Heob98c52b2013-02-27 17:04:42 -0800930 ch->minor = ret;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200931 sprintf(ch->name,"ch%d",ch->minor);
FUJITA Tomonoria3d2c2e2008-01-23 23:34:35 +0900932
Greg Kroah-Hartmand73a1a62008-07-21 20:03:34 -0700933 class_dev = device_create(ch_sysfs_class, dev,
934 MKDEV(SCSI_CHANGER_MAJOR, ch->minor), ch,
935 "s%s", ch->name);
FUJITA Tomonoria3d2c2e2008-01-23 23:34:35 +0900936 if (IS_ERR(class_dev)) {
Hannes Reinecke28c31722014-06-25 16:39:56 +0200937 sdev_printk(KERN_WARNING, sd, "ch%d: device_create failed\n",
938 ch->minor);
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900939 ret = PTR_ERR(class_dev);
940 goto remove_idr;
FUJITA Tomonoria3d2c2e2008-01-23 23:34:35 +0900941 }
942
Arjan van de Ven0b950672006-01-11 13:16:10 +0100943 mutex_init(&ch->lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200944 ch->device = sd;
945 ch_readconfig(ch);
946 if (init)
947 ch_init_elem(ch);
948
FUJITA Tomonori3d164fb2008-07-26 23:25:43 +0900949 dev_set_drvdata(dev, ch);
Jeff Garzik017560f2005-10-24 18:04:36 -0400950 sdev_printk(KERN_INFO, sd, "Attached scsi changer %s\n", ch->name);
FUJITA Tomonoria3d2c2e2008-01-23 23:34:35 +0900951
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200952 return 0;
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900953remove_idr:
Tejun Heob98c52b2013-02-27 17:04:42 -0800954 idr_remove(&ch_index_idr, ch->minor);
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900955free_ch:
956 kfree(ch);
957 return ret;
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200958}
959
960static int ch_remove(struct device *dev)
961{
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900962 scsi_changer *ch = dev_get_drvdata(dev);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200963
FUJITA Tomonorida707c52008-01-24 17:24:50 +0900964 spin_lock(&ch_index_lock);
965 idr_remove(&ch_index_idr, ch->minor);
966 spin_unlock(&ch_index_lock);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200967
Tony Jonesee959b02008-02-22 00:13:36 +0100968 device_destroy(ch_sysfs_class, MKDEV(SCSI_CHANGER_MAJOR,ch->minor));
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200969 kfree(ch->dt);
970 kfree(ch);
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200971 return 0;
972}
973
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900974static struct scsi_driver ch_template = {
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900975 .gendrv = {
976 .name = "ch",
Christoph Hellwig3af6b352014-11-12 18:34:51 +0100977 .owner = THIS_MODULE,
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900978 .probe = ch_probe,
979 .remove = ch_remove,
980 },
981};
982
983static const struct file_operations changer_fops = {
984 .owner = THIS_MODULE,
985 .open = ch_open,
986 .release = ch_release,
987 .unlocked_ioctl = ch_ioctl,
988#ifdef CONFIG_COMPAT
989 .compat_ioctl = ch_ioctl_compat,
990#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +0200991 .llseek = noop_llseek,
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900992};
993
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200994static int __init init_ch_module(void)
995{
996 int rc;
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +0900997
Gerd Knorr daa6eda2005-05-10 10:59:13 +0200998 printk(KERN_INFO "SCSI Media Changer driver v" VERSION " \n");
Gerd Knorr 21feb5c2005-05-12 10:25:26 +0200999 ch_sysfs_class = class_create(THIS_MODULE, "scsi_changer");
Gerd Knorr daa6eda2005-05-10 10:59:13 +02001000 if (IS_ERR(ch_sysfs_class)) {
1001 rc = PTR_ERR(ch_sysfs_class);
1002 return rc;
1003 }
1004 rc = register_chrdev(SCSI_CHANGER_MAJOR,"ch",&changer_fops);
1005 if (rc < 0) {
1006 printk("Unable to get major %d for SCSI-Changer\n",
1007 SCSI_CHANGER_MAJOR);
1008 goto fail1;
1009 }
1010 rc = scsi_register_driver(&ch_template.gendrv);
1011 if (rc < 0)
1012 goto fail2;
1013 return 0;
1014
1015 fail2:
1016 unregister_chrdev(SCSI_CHANGER_MAJOR, "ch");
1017 fail1:
Gerd Knorr 21feb5c2005-05-12 10:25:26 +02001018 class_destroy(ch_sysfs_class);
Gerd Knorr daa6eda2005-05-10 10:59:13 +02001019 return rc;
1020}
1021
FUJITA Tomonori5aa22af2008-01-24 17:24:52 +09001022static void __exit exit_ch_module(void)
Gerd Knorr daa6eda2005-05-10 10:59:13 +02001023{
1024 scsi_unregister_driver(&ch_template.gendrv);
1025 unregister_chrdev(SCSI_CHANGER_MAJOR, "ch");
Gerd Knorr 21feb5c2005-05-12 10:25:26 +02001026 class_destroy(ch_sysfs_class);
FUJITA Tomonorida707c52008-01-24 17:24:50 +09001027 idr_destroy(&ch_index_idr);
Gerd Knorr daa6eda2005-05-10 10:59:13 +02001028}
1029
1030module_init(init_ch_module);
1031module_exit(exit_ch_module);
1032
1033/*
1034 * Local variables:
1035 * c-basic-offset: 8
1036 * End:
1037 */