]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/ide/ide-floppy.c
ide: add ide_issue_pc() helper
[net-next-2.6.git] / drivers / ide / ide-floppy.c
CommitLineData
1da177e4 1/*
d3f20848
BP
2 * IDE ATAPI floppy driver.
3 *
59bca8cc
BZ
4 * Copyright (C) 1996-1999 Gadi Oxman <gadio@netvision.net.il>
5 * Copyright (C) 2000-2002 Paul Bristow <paul@paulbristow.net>
6 * Copyright (C) 2005 Bartlomiej Zolnierkiewicz
0571c7a4 7 *
1da177e4
LT
8 * This driver supports the following IDE floppy drives:
9 *
10 * LS-120/240 SuperDisk
11 * Iomega Zip 100/250
12 * Iomega PC Card Clik!/PocketZip
13 *
d3f20848
BP
14 * For a historical changelog see
15 * Documentation/ide/ChangeLog.ide-floppy.1996-2002
1da177e4
LT
16 */
17
fc6c5bc7 18#define IDEFLOPPY_VERSION "1.00"
1da177e4 19
1da177e4
LT
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/string.h>
23#include <linux/kernel.h>
24#include <linux/delay.h>
25#include <linux/timer.h>
26#include <linux/mm.h>
27#include <linux/interrupt.h>
28#include <linux/major.h>
29#include <linux/errno.h>
30#include <linux/genhd.h>
31#include <linux/slab.h>
32#include <linux/cdrom.h>
33#include <linux/ide.h>
34#include <linux/bitops.h>
cf8b8975 35#include <linux/mutex.h>
1da177e4 36
89636af2
BZ
37#include <scsi/scsi_ioctl.h>
38
1da177e4 39#include <asm/byteorder.h>
7e8b163b
BP
40#include <linux/irq.h>
41#include <linux/uaccess.h>
42#include <linux/io.h>
1da177e4
LT
43#include <asm/unaligned.h>
44
f373bd82 45/* define to see debug info */
1da177e4 46#define IDEFLOPPY_DEBUG_LOG 0
1da177e4
LT
47
48/* #define IDEFLOPPY_DEBUG(fmt, args...) printk(KERN_INFO fmt, ## args) */
0571c7a4 49#define IDEFLOPPY_DEBUG(fmt, args...)
1da177e4
LT
50
51#if IDEFLOPPY_DEBUG_LOG
bcc77d9c
BP
52#define debug_log(fmt, args...) \
53 printk(KERN_INFO "ide-floppy: " fmt, ## args)
1da177e4 54#else
0571c7a4 55#define debug_log(fmt, args...) do {} while (0)
1da177e4
LT
56#endif
57
58
0571c7a4 59/* Some drives require a longer irq timeout. */
1da177e4
LT
60#define IDEFLOPPY_WAIT_CMD (5 * WAIT_CMD)
61
62/*
0571c7a4
BP
63 * After each failed packet command we issue a request sense command and retry
64 * the packet command IDEFLOPPY_MAX_PC_RETRIES times.
1da177e4
LT
65 */
66#define IDEFLOPPY_MAX_PC_RETRIES 3
67
68/*
0571c7a4
BP
69 * With each packet command, we allocate a buffer of IDEFLOPPY_PC_BUFFER_SIZE
70 * bytes.
1da177e4
LT
71 */
72#define IDEFLOPPY_PC_BUFFER_SIZE 256
73
74/*
0571c7a4
BP
75 * In various places in the driver, we need to allocate storage for packet
76 * commands and requests, which will remain valid while we leave the driver to
77 * wait for an interrupt or a timeout event.
1da177e4
LT
78 */
79#define IDEFLOPPY_PC_STACK (10 + IDEFLOPPY_MAX_PC_RETRIES)
80
194ec0c0 81/* format capacities descriptor codes */
1da177e4
LT
82#define CAPACITY_INVALID 0x00
83#define CAPACITY_UNFORMATTED 0x01
84#define CAPACITY_CURRENT 0x02
85#define CAPACITY_NO_CARTRIDGE 0x03
86
87/*
0571c7a4
BP
88 * Most of our global data which we need to save even as we leave the driver
89 * due to an interrupt or a timer event is stored in a variable of type
90 * idefloppy_floppy_t, defined below.
1da177e4
LT
91 */
92typedef struct ide_floppy_obj {
93 ide_drive_t *drive;
94 ide_driver_t *driver;
95 struct gendisk *disk;
96 struct kref kref;
c94964a4 97 unsigned int openers; /* protected by BKL for now */
1da177e4
LT
98
99 /* Current packet command */
8e555123 100 struct ide_atapi_pc *pc;
1da177e4 101 /* Last failed packet command */
8e555123 102 struct ide_atapi_pc *failed_pc;
1da177e4 103 /* Packet command stack */
8e555123 104 struct ide_atapi_pc pc_stack[IDEFLOPPY_PC_STACK];
1da177e4
LT
105 /* Next free packet command storage space */
106 int pc_stack_index;
107 struct request rq_stack[IDEFLOPPY_PC_STACK];
108 /* We implement a circular array */
109 int rq_stack_index;
110
0571c7a4 111 /* Last error information */
1da177e4
LT
112 u8 sense_key, asc, ascq;
113 /* delay this long before sending packet command */
114 u8 ticks;
115 int progress_indication;
116
0571c7a4 117 /* Device information */
1da177e4
LT
118 /* Current format */
119 int blocks, block_size, bs_factor;
194ec0c0
BP
120 /* Last format capacity descriptor */
121 u8 cap_desc[8];
1da177e4 122 /* Copy of the flexible disk page */
8e81bbba 123 u8 flexible_disk_page[32];
1da177e4
LT
124 /* Write protect */
125 int wp;
126 /* Supports format progress report */
127 int srfp;
128 /* Status/Action flags */
129 unsigned long flags;
130} idefloppy_floppy_t;
131
c40d3d38 132#define IDEFLOPPY_TICKS_DELAY HZ/20 /* default delay for ZIP 100 (50ms) */
1da177e4 133
6e5fa7b8
BP
134/* Floppy flag bits values. */
135enum {
136 /* DRQ interrupt device */
137 IDEFLOPPY_FLAG_DRQ_INTERRUPT = (1 << 0),
138 /* Media may have changed */
139 IDEFLOPPY_FLAG_MEDIA_CHANGED = (1 << 1),
140 /* Format in progress */
141 IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS = (1 << 2),
142 /* Avoid commands not supported in Clik drive */
143 IDEFLOPPY_FLAG_CLIK_DRIVE = (1 << 3),
144 /* Requires BH algorithm for packets */
145 IDEFLOPPY_FLAG_ZIP_DRIVE = (1 << 4),
146};
1da177e4 147
0571c7a4 148/* Defines for the MODE SENSE command */
1da177e4
LT
149#define MODE_SENSE_CURRENT 0x00
150#define MODE_SENSE_CHANGEABLE 0x01
0571c7a4 151#define MODE_SENSE_DEFAULT 0x02
1da177e4
LT
152#define MODE_SENSE_SAVED 0x03
153
0571c7a4 154/* IOCTLs used in low-level formatting. */
1da177e4
LT
155#define IDEFLOPPY_IOCTL_FORMAT_SUPPORTED 0x4600
156#define IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY 0x4601
157#define IDEFLOPPY_IOCTL_FORMAT_START 0x4602
158#define IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS 0x4603
159
0571c7a4 160/* Error code returned in rq->errors to the higher part of the driver. */
1da177e4
LT
161#define IDEFLOPPY_ERROR_GENERAL 101
162
1da177e4 163/*
948391d1
BP
164 * Pages of the SELECT SENSE / MODE SENSE packet commands.
165 * See SFF-8070i spec.
1da177e4
LT
166 */
167#define IDEFLOPPY_CAPABILITIES_PAGE 0x1b
168#define IDEFLOPPY_FLEXIBLE_DISK_PAGE 0x05
169
cf8b8975 170static DEFINE_MUTEX(idefloppy_ref_mutex);
1da177e4
LT
171
172#define to_ide_floppy(obj) container_of(obj, struct ide_floppy_obj, kref)
173
174#define ide_floppy_g(disk) \
175 container_of((disk)->private_data, struct ide_floppy_obj, driver)
176
177static struct ide_floppy_obj *ide_floppy_get(struct gendisk *disk)
178{
179 struct ide_floppy_obj *floppy = NULL;
180
cf8b8975 181 mutex_lock(&idefloppy_ref_mutex);
1da177e4
LT
182 floppy = ide_floppy_g(disk);
183 if (floppy)
184 kref_get(&floppy->kref);
cf8b8975 185 mutex_unlock(&idefloppy_ref_mutex);
1da177e4
LT
186 return floppy;
187}
188
9a24b63d 189static void idefloppy_cleanup_obj(struct kref *);
1da177e4
LT
190
191static void ide_floppy_put(struct ide_floppy_obj *floppy)
192{
cf8b8975 193 mutex_lock(&idefloppy_ref_mutex);
9a24b63d 194 kref_put(&floppy->kref, idefloppy_cleanup_obj);
cf8b8975 195 mutex_unlock(&idefloppy_ref_mutex);
1da177e4
LT
196}
197
1da177e4 198/*
0571c7a4
BP
199 * Used to finish servicing a request. For read/write requests, we will call
200 * ide_end_request to pass to the next buffer.
1da177e4 201 */
c2b2b293 202static int idefloppy_end_request(ide_drive_t *drive, int uptodate, int nsecs)
1da177e4
LT
203{
204 idefloppy_floppy_t *floppy = drive->driver_data;
205 struct request *rq = HWGROUP(drive)->rq;
206 int error;
207
bcc77d9c 208 debug_log("Reached %s\n", __func__);
1da177e4
LT
209
210 switch (uptodate) {
0571c7a4
BP
211 case 0: error = IDEFLOPPY_ERROR_GENERAL; break;
212 case 1: error = 0; break;
213 default: error = uptodate;
1da177e4
LT
214 }
215 if (error)
216 floppy->failed_pc = NULL;
217 /* Why does this happen? */
218 if (!rq)
219 return 0;
4aff5e23 220 if (!blk_special_request(rq)) {
1da177e4
LT
221 /* our real local end request function */
222 ide_end_request(drive, uptodate, nsecs);
223 return 0;
224 }
225 rq->errors = error;
226 /* fixme: need to move this local also */
227 ide_end_drive_cmd(drive, 0, 0);
228 return 0;
229}
230
8e555123 231static void ide_floppy_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
32925e1a 232 unsigned int bcount, int direction)
1da177e4 233{
9567b349 234 ide_hwif_t *hwif = drive->hwif;
1da177e4 235 struct request *rq = pc->rq;
5705f702 236 struct req_iterator iter;
1da177e4
LT
237 struct bio_vec *bvec;
238 unsigned long flags;
5705f702 239 int count, done = 0;
1da177e4
LT
240 char *data;
241
5705f702 242 rq_for_each_segment(bvec, rq, iter) {
6c92e699
JA
243 if (!bcount)
244 break;
1da177e4 245
6c92e699 246 count = min(bvec->bv_len, bcount);
1da177e4 247
6c92e699 248 data = bvec_kmap_irq(bvec, &flags);
32925e1a 249 if (direction)
9567b349 250 hwif->output_data(drive, NULL, data, count);
32925e1a 251 else
9567b349 252 hwif->input_data(drive, NULL, data, count);
6c92e699 253 bvec_kunmap_irq(data, &flags);
1da177e4 254
6c92e699
JA
255 bcount -= count;
256 pc->b_count += count;
257 done += count;
1da177e4
LT
258 }
259
c2b2b293 260 idefloppy_end_request(drive, 1, done >> 9);
1da177e4
LT
261
262 if (bcount) {
32925e1a
BP
263 printk(KERN_ERR "%s: leftover data in %s, bcount == %d\n",
264 drive->name, __func__, bcount);
9f87abe8 265 ide_pad_transfer(drive, direction, bcount);
1da177e4
LT
266 }
267}
268
8e555123
BP
269static void idefloppy_update_buffers(ide_drive_t *drive,
270 struct ide_atapi_pc *pc)
1da177e4
LT
271{
272 struct request *rq = pc->rq;
273 struct bio *bio = rq->bio;
274
275 while ((bio = rq->bio) != NULL)
c2b2b293 276 idefloppy_end_request(drive, 1, 0);
1da177e4
LT
277}
278
279/*
0571c7a4
BP
280 * Generate a new packet command request in front of the request queue, before
281 * the current request so that it will be processed immediately, on the next
282 * pass through the driver.
1da177e4 283 */
8e555123 284static void idefloppy_queue_pc_head(ide_drive_t *drive, struct ide_atapi_pc *pc,
0571c7a4 285 struct request *rq)
1da177e4
LT
286{
287 struct ide_floppy_obj *floppy = drive->driver_data;
288
124cafc5 289 blk_rq_init(NULL, rq);
1da177e4 290 rq->buffer = (char *) pc;
4aff5e23 291 rq->cmd_type = REQ_TYPE_SPECIAL;
e8a96aa7 292 rq->cmd_flags |= REQ_PREEMPT;
1da177e4 293 rq->rq_disk = floppy->disk;
63f5abb0 294 ide_do_drive_cmd(drive, rq);
1da177e4
LT
295}
296
8e555123 297static struct ide_atapi_pc *idefloppy_next_pc_storage(ide_drive_t *drive)
1da177e4
LT
298{
299 idefloppy_floppy_t *floppy = drive->driver_data;
300
301 if (floppy->pc_stack_index == IDEFLOPPY_PC_STACK)
0571c7a4 302 floppy->pc_stack_index = 0;
1da177e4
LT
303 return (&floppy->pc_stack[floppy->pc_stack_index++]);
304}
305
0571c7a4 306static struct request *idefloppy_next_rq_storage(ide_drive_t *drive)
1da177e4
LT
307{
308 idefloppy_floppy_t *floppy = drive->driver_data;
309
310 if (floppy->rq_stack_index == IDEFLOPPY_PC_STACK)
311 floppy->rq_stack_index = 0;
312 return (&floppy->rq_stack[floppy->rq_stack_index++]);
313}
314
81f49382 315static void ide_floppy_callback(ide_drive_t *drive)
1da177e4
LT
316{
317 idefloppy_floppy_t *floppy = drive->driver_data;
81f49382
BP
318 struct ide_atapi_pc *pc = floppy->pc;
319 int uptodate = pc->error ? 0 : 1;
1da177e4 320
bcc77d9c
BP
321 debug_log("Reached %s\n", __func__);
322
81f49382
BP
323 if (pc->c[0] == GPCMD_READ_10 || pc->c[0] == GPCMD_WRITE_10 ||
324 (pc->rq && blk_pc_request(pc->rq)))
325 uptodate = 1; /* FIXME */
326 else if (pc->c[0] == GPCMD_REQUEST_SENSE) {
327 u8 *buf = floppy->pc->buf;
a6ff2d3b 328
81f49382
BP
329 if (!pc->error) {
330 floppy->sense_key = buf[2] & 0x0F;
331 floppy->asc = buf[12];
332 floppy->ascq = buf[13];
333 floppy->progress_indication = buf[15] & 0x80 ?
334 (u16)get_unaligned((u16 *)&buf[16]) : 0x10000;
a6ff2d3b 335
81f49382
BP
336 if (floppy->failed_pc)
337 debug_log("pc = %x, ", floppy->failed_pc->c[0]);
bcc77d9c 338
81f49382
BP
339 debug_log("sense key = %x, asc = %x, ascq = %x\n",
340 floppy->sense_key, floppy->asc, floppy->ascq);
341 } else
342 printk(KERN_ERR "Error in REQUEST SENSE itself - "
343 "Aborting request!\n");
344 }
1da177e4 345
81f49382 346 idefloppy_end_request(drive, uptodate, 0);
1da177e4
LT
347}
348
8e555123 349static void idefloppy_init_pc(struct ide_atapi_pc *pc)
1da177e4
LT
350{
351 memset(pc->c, 0, 12);
352 pc->retries = 0;
353 pc->flags = 0;
8e555123
BP
354 pc->req_xfer = 0;
355 pc->buf = pc->pc_buf;
356 pc->buf_size = IDEFLOPPY_PC_BUFFER_SIZE;
1b06e92a 357 pc->callback = ide_floppy_callback;
1da177e4
LT
358}
359
8e555123 360static void idefloppy_create_request_sense_cmd(struct ide_atapi_pc *pc)
1da177e4 361{
30d67099
BP
362 idefloppy_init_pc(pc);
363 pc->c[0] = GPCMD_REQUEST_SENSE;
1da177e4 364 pc->c[4] = 255;
8e555123 365 pc->req_xfer = 18;
1da177e4
LT
366}
367
368/*
0571c7a4
BP
369 * Called when an error was detected during the last packet command. We queue a
370 * request sense packet command in the head of the request list.
1da177e4 371 */
0571c7a4 372static void idefloppy_retry_pc(ide_drive_t *drive)
1da177e4 373{
8e555123 374 struct ide_atapi_pc *pc;
1da177e4 375 struct request *rq;
1da177e4 376
64a57fe4 377 (void)ide_read_error(drive);
1da177e4
LT
378 pc = idefloppy_next_pc_storage(drive);
379 rq = idefloppy_next_rq_storage(drive);
380 idefloppy_create_request_sense_cmd(pc);
381 idefloppy_queue_pc_head(drive, pc, rq);
382}
383
0eea6458 384/* The usual interrupt handler called during a packet command. */
52d3ccf7 385static ide_startstop_t idefloppy_pc_intr(ide_drive_t *drive)
1da177e4
LT
386{
387 idefloppy_floppy_t *floppy = drive->driver_data;
790d1239 388 ide_hwif_t *hwif = drive->hwif;
8e555123 389 struct ide_atapi_pc *pc = floppy->pc;
1da177e4 390 struct request *rq = pc->rq;
0eea6458 391 xfer_func_t *xferfunc;
1da177e4 392 unsigned int temp;
d30a7fba 393 int dma_error = 0;
790d1239 394 u16 bcount;
8e7657ae 395 u8 stat, ireason;
1da177e4 396
bcc77d9c 397 debug_log("Reached %s interrupt handler\n", __func__);
1da177e4 398
6e5fa7b8 399 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
5e37bdc0 400 dma_error = hwif->dma_ops->dma_end(drive);
d30a7fba
BP
401 if (dma_error) {
402 printk(KERN_ERR "%s: DMA %s error\n", drive->name,
403 rq_data_dir(rq) ? "write" : "read");
6e5fa7b8 404 pc->flags |= PC_FLAG_DMA_ERROR;
1da177e4 405 } else {
8e555123 406 pc->xferred = pc->req_xfer;
1da177e4
LT
407 idefloppy_update_buffers(drive, pc);
408 }
bcc77d9c 409 debug_log("DMA finished\n");
1da177e4
LT
410 }
411
412 /* Clear the interrupt */
c47137a9 413 stat = ide_read_status(drive);
1da177e4 414
0571c7a4
BP
415 /* No more interrupts */
416 if ((stat & DRQ_STAT) == 0) {
bcc77d9c 417 debug_log("Packet command completed, %d bytes transferred\n",
8e555123 418 pc->xferred);
6e5fa7b8 419 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
1da177e4 420
366c7f55 421 local_irq_enable_in_hardirq();
1da177e4 422
6e5fa7b8 423 if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR)) {
1da177e4 424 /* Error detected */
bcc77d9c 425 debug_log("%s: I/O error\n", drive->name);
1da177e4 426 rq->errors++;
30d67099 427 if (pc->c[0] == GPCMD_REQUEST_SENSE) {
568ca927
BZ
428 printk(KERN_ERR "%s: I/O error in request sense"
429 " command\n", drive->name);
1da177e4
LT
430 return ide_do_reset(drive);
431 }
432 /* Retry operation */
433 idefloppy_retry_pc(drive);
434 /* queued, but not started */
435 return ide_stopped;
436 }
437 pc->error = 0;
438 if (floppy->failed_pc == pc)
439 floppy->failed_pc = NULL;
440 /* Command finished - Call the callback function */
1b06e92a 441 pc->callback(drive);
1da177e4
LT
442 return ide_stopped;
443 }
444
6e5fa7b8
BP
445 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
446 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
568ca927
BZ
447 printk(KERN_ERR "%s: The device wants to issue more interrupts "
448 "in DMA mode\n", drive->name);
7469aaf6 449 ide_dma_off(drive);
1da177e4
LT
450 return ide_do_reset(drive);
451 }
452
453 /* Get the number of bytes to transfer */
4c3032d8
BZ
454 bcount = (hwif->INB(hwif->io_ports.lbah_addr) << 8) |
455 hwif->INB(hwif->io_ports.lbam_addr);
1da177e4 456 /* on this interrupt */
4c3032d8 457 ireason = hwif->INB(hwif->io_ports.nsect_addr);
1da177e4 458
8e7657ae 459 if (ireason & CD) {
568ca927 460 printk(KERN_ERR "%s: CoD != 0 in %s\n", drive->name, __func__);
1da177e4
LT
461 return ide_do_reset(drive);
462 }
6e5fa7b8 463 if (((ireason & IO) == IO) == !!(pc->flags & PC_FLAG_WRITING)) {
1da177e4 464 /* Hopefully, we will never get here */
568ca927
BZ
465 printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
466 "to %s!\n", drive->name,
467 (ireason & IO) ? "Write" : "Read",
8e7657ae 468 (ireason & IO) ? "Read" : "Write");
1da177e4
LT
469 return ide_do_reset(drive);
470 }
6e5fa7b8 471 if (!(pc->flags & PC_FLAG_WRITING)) {
1da177e4 472 /* Reading - Check that we have enough space */
8e555123
BP
473 temp = pc->xferred + bcount;
474 if (temp > pc->req_xfer) {
475 if (temp > pc->buf_size) {
568ca927
BZ
476 printk(KERN_ERR "%s: The device wants to send "
477 "us more data than expected - "
478 "discarding data\n",
479 drive->name);
9f87abe8 480 ide_pad_transfer(drive, 0, bcount);
0078df2e 481
1da177e4
LT
482 ide_set_handler(drive,
483 &idefloppy_pc_intr,
484 IDEFLOPPY_WAIT_CMD,
485 NULL);
486 return ide_started;
487 }
568ca927
BZ
488 debug_log("The device wants to send us more data than "
489 "expected - allowing transfer\n");
1da177e4
LT
490 }
491 }
6e5fa7b8 492 if (pc->flags & PC_FLAG_WRITING)
9567b349 493 xferfunc = hwif->output_data;
32925e1a 494 else
9567b349 495 xferfunc = hwif->input_data;
0eea6458 496
8e555123 497 if (pc->buf)
9567b349 498 xferfunc(drive, NULL, pc->cur_pos, bcount);
0eea6458 499 else
32925e1a 500 ide_floppy_io_buffers(drive, pc, bcount,
6e5fa7b8 501 !!(pc->flags & PC_FLAG_WRITING));
0eea6458 502
1da177e4 503 /* Update the current position */
8e555123
BP
504 pc->xferred += bcount;
505 pc->cur_pos += bcount;
1da177e4 506
32925e1a
BP
507 /* And set the interrupt handler again */
508 ide_set_handler(drive, &idefloppy_pc_intr, IDEFLOPPY_WAIT_CMD, NULL);
1da177e4
LT
509 return ide_started;
510}
511
1da177e4 512/*
0571c7a4
BP
513 * What we have here is a classic case of a top half / bottom half interrupt
514 * service routine. In interrupt mode, the device sends an interrupt to signal
515 * that it is ready to receive a packet. However, we need to delay about 2-3
516 * ticks before issuing the packet or we gets in trouble.
1da177e4 517 *
0571c7a4
BP
518 * So, follow carefully. transfer_pc1 is called as an interrupt (or directly).
519 * In either case, when the device says it's ready for a packet, we schedule
520 * the packet transfer to occur about 2-3 ticks later in transfer_pc2.
1da177e4 521 */
0571c7a4 522static int idefloppy_transfer_pc2(ide_drive_t *drive)
1da177e4
LT
523{
524 idefloppy_floppy_t *floppy = drive->driver_data;
525
526 /* Send the actual packet */
9567b349
BZ
527 drive->hwif->output_data(drive, NULL, floppy->pc->c, 12);
528
1da177e4
LT
529 /* Timeout for the packet command */
530 return IDEFLOPPY_WAIT_CMD;
531}
532
0571c7a4 533static ide_startstop_t idefloppy_transfer_pc1(ide_drive_t *drive)
1da177e4
LT
534{
535 idefloppy_floppy_t *floppy = drive->driver_data;
6ffb6641 536 struct ide_atapi_pc *pc = floppy->pc;
0b2eea4c
BZ
537 ide_expiry_t *expiry;
538 unsigned int timeout;
1da177e4 539
0571c7a4 540 /*
1da177e4
LT
541 * The following delay solves a problem with ATAPI Zip 100 drives
542 * where the Busy flag was apparently being deasserted before the
543 * unit was ready to receive data. This was happening on a
544 * 1200 MHz Athlon system. 10/26/01 25msec is too short,
545 * 40 and 50msec work well. idefloppy_pc_intr will not be actually
546 * used until after the packet is moved in about 50 msec.
547 */
5d41893c 548 if (pc->flags & PC_FLAG_ZIP_DRIVE) {
0b2eea4c
BZ
549 timeout = floppy->ticks;
550 expiry = &idefloppy_transfer_pc2;
551 } else {
552 timeout = IDEFLOPPY_WAIT_CMD;
553 expiry = NULL;
554 }
555
594c16d8 556 return ide_transfer_pc(drive, pc, idefloppy_pc_intr, timeout, expiry);
1da177e4
LT
557}
558
d652c138 559static void ide_floppy_report_error(idefloppy_floppy_t *floppy,
8e555123 560 struct ide_atapi_pc *pc)
1da177e4 561{
d652c138 562 /* supress error messages resulting from Medium not present */
1da177e4
LT
563 if (floppy->sense_key == 0x02 &&
564 floppy->asc == 0x3a &&
565 floppy->ascq == 0x00)
d652c138
BP
566 return;
567
568 printk(KERN_ERR "ide-floppy: %s: I/O error, pc = %2x, key = %2x, "
569 "asc = %2x, ascq = %2x\n",
570 floppy->drive->name, pc->c[0], floppy->sense_key,
571 floppy->asc, floppy->ascq);
572
1da177e4
LT
573}
574
0571c7a4 575static ide_startstop_t idefloppy_issue_pc(ide_drive_t *drive,
8e555123 576 struct ide_atapi_pc *pc)
1da177e4
LT
577{
578 idefloppy_floppy_t *floppy = drive->driver_data;
1da177e4 579
1da177e4 580 if (floppy->failed_pc == NULL &&
30d67099 581 pc->c[0] != GPCMD_REQUEST_SENSE)
1da177e4
LT
582 floppy->failed_pc = pc;
583 /* Set the current packet command */
584 floppy->pc = pc;
585
757ced89 586 if (pc->retries > IDEFLOPPY_MAX_PC_RETRIES) {
6e5fa7b8 587 if (!(pc->flags & PC_FLAG_SUPPRESS_ERROR))
757ced89
BP
588 ide_floppy_report_error(floppy, pc);
589 /* Giving up */
590 pc->error = IDEFLOPPY_ERROR_GENERAL;
591
1da177e4 592 floppy->failed_pc = NULL;
1b06e92a 593 pc->callback(drive);
1da177e4
LT
594 return ide_stopped;
595 }
596
bcc77d9c 597 debug_log("Retry number - %d\n", pc->retries);
1da177e4
LT
598
599 pc->retries++;
1da177e4 600
6bf1641c
BZ
601 return ide_issue_pc(drive, pc, idefloppy_transfer_pc1,
602 IDEFLOPPY_WAIT_CMD, NULL);
1da177e4
LT
603}
604
8e555123 605static void idefloppy_create_prevent_cmd(struct ide_atapi_pc *pc, int prevent)
1da177e4 606{
bcc77d9c 607 debug_log("creating prevent removal command, prevent = %d\n", prevent);
1da177e4
LT
608
609 idefloppy_init_pc(pc);
30d67099 610 pc->c[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
1da177e4
LT
611 pc->c[4] = prevent;
612}
613
8e555123 614static void idefloppy_create_read_capacity_cmd(struct ide_atapi_pc *pc)
1da177e4
LT
615{
616 idefloppy_init_pc(pc);
30d67099 617 pc->c[0] = GPCMD_READ_FORMAT_CAPACITIES;
1da177e4
LT
618 pc->c[7] = 255;
619 pc->c[8] = 255;
8e555123 620 pc->req_xfer = 255;
1da177e4
LT
621}
622
8e555123
BP
623static void idefloppy_create_format_unit_cmd(struct ide_atapi_pc *pc, int b,
624 int l, int flags)
1da177e4
LT
625{
626 idefloppy_init_pc(pc);
30d67099 627 pc->c[0] = GPCMD_FORMAT_UNIT;
1da177e4
LT
628 pc->c[1] = 0x17;
629
8e555123
BP
630 memset(pc->buf, 0, 12);
631 pc->buf[1] = 0xA2;
1da177e4
LT
632 /* Default format list header, u8 1: FOV/DCRT/IMM bits set */
633
634 if (flags & 1) /* Verify bit on... */
8e555123
BP
635 pc->buf[1] ^= 0x20; /* ... turn off DCRT bit */
636 pc->buf[3] = 8;
1da177e4 637
8e555123
BP
638 put_unaligned(cpu_to_be32(b), (unsigned int *)(&pc->buf[4]));
639 put_unaligned(cpu_to_be32(l), (unsigned int *)(&pc->buf[8]));
640 pc->buf_size = 12;
6e5fa7b8 641 pc->flags |= PC_FLAG_WRITING;
1da177e4
LT
642}
643
0571c7a4 644/* A mode sense command is used to "sense" floppy parameters. */
8e555123
BP
645static void idefloppy_create_mode_sense_cmd(struct ide_atapi_pc *pc,
646 u8 page_code, u8 type)
1da177e4 647{
24a5d703 648 u16 length = 8; /* sizeof(Mode Parameter Header) = 8 Bytes */
0571c7a4 649
1da177e4 650 idefloppy_init_pc(pc);
30d67099 651 pc->c[0] = GPCMD_MODE_SENSE_10;
1da177e4
LT
652 pc->c[1] = 0;
653 pc->c[2] = page_code + (type << 6);
654
655 switch (page_code) {
0571c7a4
BP
656 case IDEFLOPPY_CAPABILITIES_PAGE:
657 length += 12;
658 break;
659 case IDEFLOPPY_FLEXIBLE_DISK_PAGE:
660 length += 32;
661 break;
662 default:
663 printk(KERN_ERR "ide-floppy: unsupported page code "
1da177e4
LT
664 "in create_mode_sense_cmd\n");
665 }
8f622430 666 put_unaligned(cpu_to_be16(length), (u16 *) &pc->c[7]);
8e555123 667 pc->req_xfer = length;
1da177e4
LT
668}
669
8e555123 670static void idefloppy_create_start_stop_cmd(struct ide_atapi_pc *pc, int start)
1da177e4
LT
671{
672 idefloppy_init_pc(pc);
30d67099 673 pc->c[0] = GPCMD_START_STOP_UNIT;
1da177e4
LT
674 pc->c[4] = start;
675}
676
8e555123 677static void idefloppy_create_test_unit_ready_cmd(struct ide_atapi_pc *pc)
1da177e4
LT
678{
679 idefloppy_init_pc(pc);
30d67099 680 pc->c[0] = GPCMD_TEST_UNIT_READY;
1da177e4
LT
681}
682
ae7e8ddc 683static void idefloppy_create_rw_cmd(idefloppy_floppy_t *floppy,
8e555123 684 struct ide_atapi_pc *pc, struct request *rq,
ae7e8ddc 685 unsigned long sector)
1da177e4
LT
686{
687 int block = sector / floppy->bs_factor;
688 int blocks = rq->nr_sectors / floppy->bs_factor;
689 int cmd = rq_data_dir(rq);
690
ae7e8ddc 691 debug_log("create_rw10_cmd: block == %d, blocks == %d\n",
1da177e4
LT
692 block, blocks);
693
694 idefloppy_init_pc(pc);
ae7e8ddc
BP
695 pc->c[0] = cmd == READ ? GPCMD_READ_10 : GPCMD_WRITE_10;
696 put_unaligned(cpu_to_be16(blocks), (unsigned short *)&pc->c[7]);
8f622430 697 put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[2]);
ae7e8ddc 698
1da177e4
LT
699 pc->rq = rq;
700 pc->b_count = cmd == READ ? 0 : rq->bio->bi_size;
4aff5e23 701 if (rq->cmd_flags & REQ_RW)
6e5fa7b8 702 pc->flags |= PC_FLAG_WRITING;
8e555123
BP
703 pc->buf = NULL;
704 pc->req_xfer = pc->buf_size = blocks * floppy->block_size;
5e331095 705 pc->flags |= PC_FLAG_DMA_OK;
1da177e4
LT
706}
707
0571c7a4 708static void idefloppy_blockpc_cmd(idefloppy_floppy_t *floppy,
8e555123 709 struct ide_atapi_pc *pc, struct request *rq)
1da177e4 710{
1da177e4
LT
711 idefloppy_init_pc(pc);
712 memcpy(pc->c, rq->cmd, sizeof(pc->c));
3d6392cf
JA
713 pc->rq = rq;
714 pc->b_count = rq->data_len;
715 if (rq->data_len && rq_data_dir(rq) == WRITE)
6e5fa7b8 716 pc->flags |= PC_FLAG_WRITING;
8e555123 717 pc->buf = rq->data;
3d6392cf 718 if (rq->bio)
5e331095 719 pc->flags |= PC_FLAG_DMA_OK;
3d6392cf
JA
720 /*
721 * possibly problematic, doesn't look like ide-floppy correctly
722 * handled scattered requests if dma fails...
723 */
8e555123 724 pc->req_xfer = pc->buf_size = rq->data_len;
1da177e4
LT
725}
726
0571c7a4
BP
727static ide_startstop_t idefloppy_do_request(ide_drive_t *drive,
728 struct request *rq, sector_t block_s)
1da177e4
LT
729{
730 idefloppy_floppy_t *floppy = drive->driver_data;
8e555123 731 struct ide_atapi_pc *pc;
1da177e4
LT
732 unsigned long block = (unsigned long)block_s;
733
bcc77d9c 734 debug_log("dev: %s, cmd_type: %x, errors: %d\n",
18cddac3 735 rq->rq_disk ? rq->rq_disk->disk_name : "?",
bcc77d9c
BP
736 rq->cmd_type, rq->errors);
737 debug_log("sector: %ld, nr_sectors: %ld, "
1da177e4
LT
738 "current_nr_sectors: %d\n", (long)rq->sector,
739 rq->nr_sectors, rq->current_nr_sectors);
740
741 if (rq->errors >= ERROR_MAX) {
d652c138
BP
742 if (floppy->failed_pc)
743 ide_floppy_report_error(floppy, floppy->failed_pc);
1da177e4
LT
744 else
745 printk(KERN_ERR "ide-floppy: %s: I/O error\n",
746 drive->name);
c2b2b293 747 idefloppy_end_request(drive, 0, 0);
1da177e4
LT
748 return ide_stopped;
749 }
4aff5e23 750 if (blk_fs_request(rq)) {
1da177e4
LT
751 if (((long)rq->sector % floppy->bs_factor) ||
752 (rq->nr_sectors % floppy->bs_factor)) {
0571c7a4
BP
753 printk(KERN_ERR "%s: unsupported r/w request size\n",
754 drive->name);
c2b2b293 755 idefloppy_end_request(drive, 0, 0);
1da177e4
LT
756 return ide_stopped;
757 }
758 pc = idefloppy_next_pc_storage(drive);
759 idefloppy_create_rw_cmd(floppy, pc, rq, block);
4aff5e23 760 } else if (blk_special_request(rq)) {
8e555123 761 pc = (struct ide_atapi_pc *) rq->buffer;
4aff5e23 762 } else if (blk_pc_request(rq)) {
1da177e4 763 pc = idefloppy_next_pc_storage(drive);
3d6392cf 764 idefloppy_blockpc_cmd(floppy, pc, rq);
1da177e4
LT
765 } else {
766 blk_dump_rq_flags(rq,
767 "ide-floppy: unsupported command in queue");
c2b2b293 768 idefloppy_end_request(drive, 0, 0);
1da177e4
LT
769 return ide_stopped;
770 }
771
28c7214b
BZ
772 if (floppy->flags & IDEFLOPPY_FLAG_DRQ_INTERRUPT)
773 pc->flags |= PC_FLAG_DRQ_INTERRUPT;
774
5d41893c
BZ
775 if (floppy->flags & IDEFLOPPY_FLAG_ZIP_DRIVE)
776 pc->flags |= PC_FLAG_ZIP_DRIVE;
777
1da177e4 778 pc->rq = rq;
5d41893c 779
1da177e4
LT
780 return idefloppy_issue_pc(drive, pc);
781}
782
783/*
0571c7a4
BP
784 * Add a special packet command request to the tail of the request queue,
785 * and wait for it to be serviced.
1da177e4 786 */
8e555123 787static int idefloppy_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc)
1da177e4
LT
788{
789 struct ide_floppy_obj *floppy = drive->driver_data;
6fe16238
FT
790 struct request *rq;
791 int error;
1da177e4 792
6fe16238
FT
793 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
794 rq->buffer = (char *) pc;
795 rq->cmd_type = REQ_TYPE_SPECIAL;
796 error = blk_execute_rq(drive->queue, floppy->disk, rq, 0);
797 blk_put_request(rq);
1da177e4 798
6fe16238 799 return error;
1da177e4
LT
800}
801
802/*
8e81bbba
BP
803 * Look at the flexible disk page parameters. We ignore the CHS capacity
804 * parameters and use the LBA parameters instead.
1da177e4 805 */
8e81bbba 806static int ide_floppy_get_flexible_disk_page(ide_drive_t *drive)
1da177e4
LT
807{
808 idefloppy_floppy_t *floppy = drive->driver_data;
8e555123 809 struct ide_atapi_pc pc;
8e81bbba 810 u8 *page;
1da177e4 811 int capacity, lba_capacity;
8e81bbba
BP
812 u16 transfer_rate, sector_size, cyls, rpm;
813 u8 heads, sectors;
1da177e4 814
8e81bbba
BP
815 idefloppy_create_mode_sense_cmd(&pc, IDEFLOPPY_FLEXIBLE_DISK_PAGE,
816 MODE_SENSE_CURRENT);
817
818 if (idefloppy_queue_pc_tail(drive, &pc)) {
819 printk(KERN_ERR "ide-floppy: Can't get flexible disk page"
820 " parameters\n");
1da177e4
LT
821 return 1;
822 }
8e555123 823 floppy->wp = !!(pc.buf[3] & 0x80);
1da177e4 824 set_disk_ro(floppy->disk, floppy->wp);
8e555123 825 page = &pc.buf[8];
8e81bbba 826
8e555123
BP
827 transfer_rate = be16_to_cpu(*(u16 *)&pc.buf[8 + 2]);
828 sector_size = be16_to_cpu(*(u16 *)&pc.buf[8 + 6]);
829 cyls = be16_to_cpu(*(u16 *)&pc.buf[8 + 8]);
830 rpm = be16_to_cpu(*(u16 *)&pc.buf[8 + 28]);
831 heads = pc.buf[8 + 4];
832 sectors = pc.buf[8 + 5];
8e81bbba
BP
833
834 capacity = cyls * heads * sectors * sector_size;
835
836 if (memcmp(page, &floppy->flexible_disk_page, 32))
1da177e4
LT
837 printk(KERN_INFO "%s: %dkB, %d/%d/%d CHS, %d kBps, "
838 "%d sector size, %d rpm\n",
8e81bbba
BP
839 drive->name, capacity / 1024, cyls, heads,
840 sectors, transfer_rate / 8, sector_size, rpm);
841
842 memcpy(&floppy->flexible_disk_page, page, 32);
843 drive->bios_cyl = cyls;
844 drive->bios_head = heads;
845 drive->bios_sect = sectors;
1da177e4 846 lba_capacity = floppy->blocks * floppy->block_size;
8e81bbba 847
1da177e4
LT
848 if (capacity < lba_capacity) {
849 printk(KERN_NOTICE "%s: The disk reports a capacity of %d "
850 "bytes, but the drive only handles %d\n",
851 drive->name, lba_capacity, capacity);
8e81bbba
BP
852 floppy->blocks = floppy->block_size ?
853 capacity / floppy->block_size : 0;
1da177e4
LT
854 }
855 return 0;
856}
857
948391d1 858static int idefloppy_get_sfrp_bit(ide_drive_t *drive)
1da177e4
LT
859{
860 idefloppy_floppy_t *floppy = drive->driver_data;
8e555123 861 struct ide_atapi_pc pc;
1da177e4
LT
862
863 floppy->srfp = 0;
864 idefloppy_create_mode_sense_cmd(&pc, IDEFLOPPY_CAPABILITIES_PAGE,
865 MODE_SENSE_CURRENT);
866
6e5fa7b8 867 pc.flags |= PC_FLAG_SUPPRESS_ERROR;
948391d1 868 if (idefloppy_queue_pc_tail(drive, &pc))
1da177e4 869 return 1;
1da177e4 870
8e555123 871 floppy->srfp = pc.buf[8 + 2] & 0x40;
1da177e4
LT
872 return (0);
873}
874
875/*
194ec0c0
BP
876 * Determine if a media is present in the floppy drive, and if so, its LBA
877 * capacity.
1da177e4 878 */
194ec0c0 879static int ide_floppy_get_capacity(ide_drive_t *drive)
1da177e4
LT
880{
881 idefloppy_floppy_t *floppy = drive->driver_data;
8e555123 882 struct ide_atapi_pc pc;
194ec0c0
BP
883 u8 *cap_desc;
884 u8 header_len, desc_cnt;
885 int i, rc = 1, blocks, length;
886
1da177e4
LT
887 drive->bios_cyl = 0;
888 drive->bios_head = drive->bios_sect = 0;
fdb77da4
AC
889 floppy->blocks = 0;
890 floppy->bs_factor = 1;
1da177e4
LT
891 set_capacity(floppy->disk, 0);
892
893 idefloppy_create_read_capacity_cmd(&pc);
894 if (idefloppy_queue_pc_tail(drive, &pc)) {
895 printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n");
896 return 1;
897 }
8e555123
BP
898 header_len = pc.buf[3];
899 cap_desc = &pc.buf[4];
194ec0c0
BP
900 desc_cnt = header_len / 8; /* capacity descriptor of 8 bytes */
901
902 for (i = 0; i < desc_cnt; i++) {
903 unsigned int desc_start = 4 + i*8;
904
8e555123
BP
905 blocks = be32_to_cpu(*(u32 *)&pc.buf[desc_start]);
906 length = be16_to_cpu(*(u16 *)&pc.buf[desc_start + 6]);
194ec0c0
BP
907
908 debug_log("Descriptor %d: %dkB, %d blocks, %d sector size\n",
909 i, blocks * length / 1024, blocks, length);
1da177e4 910
194ec0c0
BP
911 if (i)
912 continue;
913 /*
914 * the code below is valid only for the 1st descriptor, ie i=0
915 */
1da177e4 916
8e555123 917 switch (pc.buf[desc_start + 4] & 0x03) {
1da177e4
LT
918 /* Clik! drive returns this instead of CAPACITY_CURRENT */
919 case CAPACITY_UNFORMATTED:
6e5fa7b8 920 if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE))
0571c7a4 921 /*
1da177e4
LT
922 * If it is not a clik drive, break out
923 * (maintains previous driver behaviour)
924 */
925 break;
926 case CAPACITY_CURRENT:
927 /* Normal Zip/LS-120 disks */
194ec0c0 928 if (memcmp(cap_desc, &floppy->cap_desc, 8))
1da177e4
LT
929 printk(KERN_INFO "%s: %dkB, %d blocks, %d "
930 "sector size\n", drive->name,
931 blocks * length / 1024, blocks, length);
194ec0c0
BP
932 memcpy(&floppy->cap_desc, cap_desc, 8);
933
1da177e4
LT
934 if (!length || length % 512) {
935 printk(KERN_NOTICE "%s: %d bytes block size "
936 "not supported\n", drive->name, length);
937 } else {
194ec0c0
BP
938 floppy->blocks = blocks;
939 floppy->block_size = length;
940 floppy->bs_factor = length / 512;
941 if (floppy->bs_factor != 1)
942 printk(KERN_NOTICE "%s: warning: non "
1da177e4
LT
943 "512 bytes block size not "
944 "fully supported\n",
945 drive->name);
194ec0c0 946 rc = 0;
1da177e4
LT
947 }
948 break;
949 case CAPACITY_NO_CARTRIDGE:
950 /*
951 * This is a KERN_ERR so it appears on screen
952 * for the user to see
953 */
954 printk(KERN_ERR "%s: No disk in drive\n", drive->name);
955 break;
956 case CAPACITY_INVALID:
957 printk(KERN_ERR "%s: Invalid capacity for disk "
958 "in drive\n", drive->name);
959 break;
960 }
194ec0c0 961 debug_log("Descriptor 0 Code: %d\n",
8e555123 962 pc.buf[desc_start + 4] & 0x03);
1da177e4
LT
963 }
964
965 /* Clik! disk does not support get_flexible_disk_page */
6e5fa7b8 966 if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE))
8e81bbba 967 (void) ide_floppy_get_flexible_disk_page(drive);
1da177e4
LT
968
969 set_capacity(floppy->disk, floppy->blocks * floppy->bs_factor);
970 return rc;
971}
972
973/*
194ec0c0
BP
974 * Obtain the list of formattable capacities.
975 * Very similar to ide_floppy_get_capacity, except that we push the capacity
976 * descriptors to userland, instead of our own structures.
977 *
978 * Userland gives us the following structure:
979 *
980 * struct idefloppy_format_capacities {
981 * int nformats;
982 * struct {
983 * int nblocks;
984 * int blocksize;
985 * } formats[];
986 * };
987 *
988 * userland initializes nformats to the number of allocated formats[] records.
989 * On exit we set nformats to the number of records we've actually initialized.
990 */
1da177e4 991
194ec0c0 992static int ide_floppy_get_format_capacities(ide_drive_t *drive, int __user *arg)
1da177e4 993{
8e555123 994 struct ide_atapi_pc pc;
194ec0c0
BP
995 u8 header_len, desc_cnt;
996 int i, blocks, length, u_array_size, u_index;
1da177e4
LT
997 int __user *argp;
998
999 if (get_user(u_array_size, arg))
1000 return (-EFAULT);
1001
1002 if (u_array_size <= 0)
1003 return (-EINVAL);
1004
1005 idefloppy_create_read_capacity_cmd(&pc);
1006 if (idefloppy_queue_pc_tail(drive, &pc)) {
1007 printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n");
194ec0c0
BP
1008 return (-EIO);
1009 }
8e555123 1010 header_len = pc.buf[3];
194ec0c0 1011 desc_cnt = header_len / 8; /* capacity descriptor of 8 bytes */
1da177e4
LT
1012
1013 u_index = 0;
1014 argp = arg + 1;
1015
1016 /*
194ec0c0
BP
1017 * We always skip the first capacity descriptor. That's the current
1018 * capacity. We are interested in the remaining descriptors, the
1019 * formattable capacities.
1020 */
1021 for (i = 1; i < desc_cnt; i++) {
1022 unsigned int desc_start = 4 + i*8;
1da177e4 1023
1da177e4
LT
1024 if (u_index >= u_array_size)
1025 break; /* User-supplied buffer too small */
1da177e4 1026
8e555123
BP
1027 blocks = be32_to_cpu(*(u32 *)&pc.buf[desc_start]);
1028 length = be16_to_cpu(*(u16 *)&pc.buf[desc_start + 6]);
1da177e4
LT
1029
1030 if (put_user(blocks, argp))
1031 return(-EFAULT);
1032 ++argp;
1033
1034 if (put_user(length, argp))
1035 return (-EFAULT);
1036 ++argp;
1037
1038 ++u_index;
1039 }
1040
1041 if (put_user(u_index, arg))
1042 return (-EFAULT);
1043 return (0);
1044}
1045
1da177e4 1046/*
0571c7a4
BP
1047 * Get ATAPI_FORMAT_UNIT progress indication.
1048 *
1049 * Userland gives a pointer to an int. The int is set to a progress
1050 * indicator 0-65536, with 65536=100%.
1051 *
1052 * If the drive does not support format progress indication, we just check
1053 * the dsc bit, and return either 0 or 65536.
1054 */
1da177e4
LT
1055
1056static int idefloppy_get_format_progress(ide_drive_t *drive, int __user *arg)
1057{
1058 idefloppy_floppy_t *floppy = drive->driver_data;
8e555123 1059 struct ide_atapi_pc pc;
1da177e4
LT
1060 int progress_indication = 0x10000;
1061
1062 if (floppy->srfp) {
1063 idefloppy_create_request_sense_cmd(&pc);
0571c7a4 1064 if (idefloppy_queue_pc_tail(drive, &pc))
1da177e4 1065 return (-EIO);
1da177e4
LT
1066
1067 if (floppy->sense_key == 2 &&
1068 floppy->asc == 4 &&
0571c7a4 1069 floppy->ascq == 4)
1da177e4 1070 progress_indication = floppy->progress_indication;
0571c7a4
BP
1071
1072 /* Else assume format_unit has finished, and we're at 0x10000 */
1da177e4 1073 } else {
1da177e4 1074 unsigned long flags;
22c525b9 1075 u8 stat;
1da177e4
LT
1076
1077 local_irq_save(flags);
c47137a9 1078 stat = ide_read_status(drive);
1da177e4
LT
1079 local_irq_restore(flags);
1080
22c525b9 1081 progress_indication = ((stat & SEEK_STAT) == 0) ? 0 : 0x10000;
1da177e4
LT
1082 }
1083 if (put_user(progress_indication, arg))
1084 return (-EFAULT);
1085
1086 return (0);
1087}
1088
0571c7a4 1089static sector_t idefloppy_capacity(ide_drive_t *drive)
1da177e4
LT
1090{
1091 idefloppy_floppy_t *floppy = drive->driver_data;
1092 unsigned long capacity = floppy->blocks * floppy->bs_factor;
1093
1094 return capacity;
1095}
1096
1097/*
f373bd82
BP
1098 * Check whether we can support a drive, based on the ATAPI IDENTIFY command
1099 * results.
1da177e4 1100 */
f373bd82 1101static int idefloppy_identify_device(ide_drive_t *drive, struct hd_driveid *id)
1da177e4 1102{
3ad6776c
BP
1103 u8 gcw[2];
1104 u8 device_type, protocol, removable, drq_type, packet_size;
1da177e4
LT
1105
1106 *((u16 *) &gcw) = id->config;
1107
3ad6776c
BP
1108 device_type = gcw[1] & 0x1F;
1109 removable = (gcw[0] & 0x80) >> 7;
1110 protocol = (gcw[1] & 0xC0) >> 6;
1111 drq_type = (gcw[0] & 0x60) >> 5;
1112 packet_size = gcw[0] & 0x03;
1113
1da177e4
LT
1114#ifdef CONFIG_PPC
1115 /* kludge for Apple PowerBook internal zip */
3ad6776c
BP
1116 if (device_type == 5 &&
1117 !strstr(id->model, "CD-ROM") && strstr(id->model, "ZIP"))
1118 device_type = 0;
1da177e4
LT
1119#endif
1120
3ad6776c 1121 if (protocol != 2)
f373bd82 1122 printk(KERN_ERR "ide-floppy: Protocol (0x%02x) is not ATAPI\n",
3ad6776c
BP
1123 protocol);
1124 else if (device_type != 0)
f373bd82 1125 printk(KERN_ERR "ide-floppy: Device type (0x%02x) is not set "
3ad6776c
BP
1126 "to floppy\n", device_type);
1127 else if (!removable)
1da177e4 1128 printk(KERN_ERR "ide-floppy: The removable flag is not set\n");
3ad6776c 1129 else if (drq_type == 3)
f373bd82 1130 printk(KERN_ERR "ide-floppy: Sorry, DRQ type (0x%02x) not "
3ad6776c
BP
1131 "supported\n", drq_type);
1132 else if (packet_size != 0)
f373bd82 1133 printk(KERN_ERR "ide-floppy: Packet size (0x%02x) is not 12 "
3ad6776c
BP
1134 "bytes\n", packet_size);
1135 else
1da177e4
LT
1136 return 1;
1137 return 0;
1138}
1139
7662d046 1140#ifdef CONFIG_IDE_PROC_FS
1da177e4
LT
1141static void idefloppy_add_settings(ide_drive_t *drive)
1142{
1143 idefloppy_floppy_t *floppy = drive->driver_data;
1144
0571c7a4
BP
1145 ide_add_setting(drive, "bios_cyl", SETTING_RW, TYPE_INT, 0, 1023, 1, 1,
1146 &drive->bios_cyl, NULL);
1147 ide_add_setting(drive, "bios_head", SETTING_RW, TYPE_BYTE, 0, 255, 1, 1,
1148 &drive->bios_head, NULL);
1149 ide_add_setting(drive, "bios_sect", SETTING_RW, TYPE_BYTE, 0, 63, 1, 1,
1150 &drive->bios_sect, NULL);
1151 ide_add_setting(drive, "ticks", SETTING_RW, TYPE_BYTE, 0, 255, 1, 1,
1152 &floppy->ticks, NULL);
1da177e4 1153}
7662d046
BZ
1154#else
1155static inline void idefloppy_add_settings(ide_drive_t *drive) { ; }
1156#endif
1da177e4 1157
0571c7a4 1158static void idefloppy_setup(ide_drive_t *drive, idefloppy_floppy_t *floppy)
1da177e4 1159{
3ad6776c 1160 u8 gcw[2];
1da177e4
LT
1161
1162 *((u16 *) &gcw) = drive->id->config;
1163 floppy->pc = floppy->pc_stack;
3ad6776c
BP
1164
1165 if (((gcw[0] & 0x60) >> 5) == 1)
6e5fa7b8 1166 floppy->flags |= IDEFLOPPY_FLAG_DRQ_INTERRUPT;
1da177e4 1167 /*
0571c7a4
BP
1168 * We used to check revisions here. At this point however I'm giving up.
1169 * Just assume they are all broken, its easier.
1da177e4 1170 *
0571c7a4
BP
1171 * The actual reason for the workarounds was likely a driver bug after
1172 * all rather than a firmware bug, and the workaround below used to hide
1173 * it. It should be fixed as of version 1.9, but to be on the safe side
1174 * we'll leave the limitation below for the 2.2.x tree.
1da177e4 1175 */
1da177e4 1176 if (!strncmp(drive->id->model, "IOMEGA ZIP 100 ATAPI", 20)) {
6e5fa7b8 1177 floppy->flags |= IDEFLOPPY_FLAG_ZIP_DRIVE;
1da177e4
LT
1178 /* This value will be visible in the /proc/ide/hdx/settings */
1179 floppy->ticks = IDEFLOPPY_TICKS_DELAY;
1180 blk_queue_max_sectors(drive->queue, 64);
1181 }
1182
1183 /*
0571c7a4
BP
1184 * Guess what? The IOMEGA Clik! drive also needs the above fix. It makes
1185 * nasty clicking noises without it, so please don't remove this.
1186 */
1da177e4
LT
1187 if (strncmp(drive->id->model, "IOMEGA Clik!", 11) == 0) {
1188 blk_queue_max_sectors(drive->queue, 64);
6e5fa7b8 1189 floppy->flags |= IDEFLOPPY_FLAG_CLIK_DRIVE;
1da177e4
LT
1190 }
1191
194ec0c0 1192 (void) ide_floppy_get_capacity(drive);
1da177e4
LT
1193 idefloppy_add_settings(drive);
1194}
1195
4031bbe4 1196static void ide_floppy_remove(ide_drive_t *drive)
1da177e4
LT
1197{
1198 idefloppy_floppy_t *floppy = drive->driver_data;
1199 struct gendisk *g = floppy->disk;
1200
7662d046 1201 ide_proc_unregister_driver(drive, floppy->driver);
1da177e4
LT
1202
1203 del_gendisk(g);
1204
1205 ide_floppy_put(floppy);
1da177e4
LT
1206}
1207
9a24b63d 1208static void idefloppy_cleanup_obj(struct kref *kref)
1da177e4
LT
1209{
1210 struct ide_floppy_obj *floppy = to_ide_floppy(kref);
1211 ide_drive_t *drive = floppy->drive;
1212 struct gendisk *g = floppy->disk;
1213
1214 drive->driver_data = NULL;
1215 g->private_data = NULL;
1216 put_disk(g);
1217 kfree(floppy);
1218}
1219
ecfd80e4 1220#ifdef CONFIG_IDE_PROC_FS
0571c7a4
BP
1221static int proc_idefloppy_read_capacity(char *page, char **start, off_t off,
1222 int count, int *eof, void *data)
1da177e4
LT
1223{
1224 ide_drive_t*drive = (ide_drive_t *)data;
1225 int len;
1226
0571c7a4
BP
1227 len = sprintf(page, "%llu\n", (long long)idefloppy_capacity(drive));
1228 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
1229}
1230
1231static ide_proc_entry_t idefloppy_proc[] = {
0571c7a4
BP
1232 { "capacity", S_IFREG|S_IRUGO, proc_idefloppy_read_capacity, NULL },
1233 { "geometry", S_IFREG|S_IRUGO, proc_ide_read_geometry, NULL },
1da177e4
LT
1234 { NULL, 0, NULL, NULL }
1235};
ecfd80e4 1236#endif /* CONFIG_IDE_PROC_FS */
1da177e4 1237
4031bbe4 1238static int ide_floppy_probe(ide_drive_t *);
1da177e4 1239
1da177e4 1240static ide_driver_t idefloppy_driver = {
8604affd 1241 .gen_driver = {
4ef3b8f4 1242 .owner = THIS_MODULE,
8604affd
BZ
1243 .name = "ide-floppy",
1244 .bus = &ide_bus_type,
8604affd 1245 },
4031bbe4
RK
1246 .probe = ide_floppy_probe,
1247 .remove = ide_floppy_remove,
1da177e4
LT
1248 .version = IDEFLOPPY_VERSION,
1249 .media = ide_floppy,
1da177e4 1250 .supports_dsc_overlap = 0,
1da177e4 1251 .do_request = idefloppy_do_request,
c2b2b293 1252 .end_request = idefloppy_end_request,
1da177e4
LT
1253 .error = __ide_error,
1254 .abort = __ide_abort,
7662d046 1255#ifdef CONFIG_IDE_PROC_FS
1da177e4 1256 .proc = idefloppy_proc,
7662d046 1257#endif
1da177e4
LT
1258};
1259
1260static int idefloppy_open(struct inode *inode, struct file *filp)
1261{
1262 struct gendisk *disk = inode->i_bdev->bd_disk;
1263 struct ide_floppy_obj *floppy;
1264 ide_drive_t *drive;
8e555123 1265 struct ide_atapi_pc pc;
1da177e4
LT
1266 int ret = 0;
1267
bcc77d9c 1268 debug_log("Reached %s\n", __func__);
1da177e4 1269
0571c7a4
BP
1270 floppy = ide_floppy_get(disk);
1271 if (!floppy)
1da177e4
LT
1272 return -ENXIO;
1273
1274 drive = floppy->drive;
1275
c94964a4 1276 floppy->openers++;
1da177e4 1277
c94964a4 1278 if (floppy->openers == 1) {
6e5fa7b8 1279 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
1da177e4
LT
1280 /* Just in case */
1281
1282 idefloppy_create_test_unit_ready_cmd(&pc);
1283 if (idefloppy_queue_pc_tail(drive, &pc)) {
1284 idefloppy_create_start_stop_cmd(&pc, 1);
1285 (void) idefloppy_queue_pc_tail(drive, &pc);
1286 }
1287
194ec0c0 1288 if (ide_floppy_get_capacity(drive)
1da177e4
LT
1289 && (filp->f_flags & O_NDELAY) == 0
1290 /*
0571c7a4
BP
1291 * Allow O_NDELAY to open a drive without a disk, or with an
1292 * unreadable disk, so that we can get the format capacity
1293 * of the drive or begin the format - Sam
1294 */
1da177e4 1295 ) {
1da177e4
LT
1296 ret = -EIO;
1297 goto out_put_floppy;
1298 }
1299
1300 if (floppy->wp && (filp->f_mode & 2)) {
1da177e4
LT
1301 ret = -EROFS;
1302 goto out_put_floppy;
1303 }
6e5fa7b8 1304 floppy->flags |= IDEFLOPPY_FLAG_MEDIA_CHANGED;
1da177e4 1305 /* IOMEGA Clik! drives do not support lock/unlock commands */
6e5fa7b8 1306 if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE)) {
1da177e4
LT
1307 idefloppy_create_prevent_cmd(&pc, 1);
1308 (void) idefloppy_queue_pc_tail(drive, &pc);
1309 }
1310 check_disk_change(inode->i_bdev);
6e5fa7b8 1311 } else if (floppy->flags & IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS) {
1da177e4
LT
1312 ret = -EBUSY;
1313 goto out_put_floppy;
1314 }
1315 return 0;
1316
1317out_put_floppy:
c94964a4 1318 floppy->openers--;
1da177e4
LT
1319 ide_floppy_put(floppy);
1320 return ret;
1321}
1322
1323static int idefloppy_release(struct inode *inode, struct file *filp)
1324{
1325 struct gendisk *disk = inode->i_bdev->bd_disk;
1326 struct ide_floppy_obj *floppy = ide_floppy_g(disk);
1327 ide_drive_t *drive = floppy->drive;
8e555123 1328 struct ide_atapi_pc pc;
bcc77d9c
BP
1329
1330 debug_log("Reached %s\n", __func__);
1da177e4 1331
c94964a4 1332 if (floppy->openers == 1) {
1da177e4 1333 /* IOMEGA Clik! drives do not support lock/unlock commands */
6e5fa7b8 1334 if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE)) {
1da177e4
LT
1335 idefloppy_create_prevent_cmd(&pc, 0);
1336 (void) idefloppy_queue_pc_tail(drive, &pc);
1337 }
1338
6e5fa7b8 1339 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
1da177e4 1340 }
c94964a4
BZ
1341
1342 floppy->openers--;
1da177e4
LT
1343
1344 ide_floppy_put(floppy);
1345
1346 return 0;
1347}
1348
a885c8c4
CH
1349static int idefloppy_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1350{
1351 struct ide_floppy_obj *floppy = ide_floppy_g(bdev->bd_disk);
1352 ide_drive_t *drive = floppy->drive;
1353
1354 geo->heads = drive->bios_head;
1355 geo->sectors = drive->bios_sect;
1356 geo->cylinders = (u16)drive->bios_cyl; /* truncate */
1357 return 0;
1358}
1359
8e555123
BP
1360static int ide_floppy_lockdoor(idefloppy_floppy_t *floppy,
1361 struct ide_atapi_pc *pc, unsigned long arg, unsigned int cmd)
20bf7bda
BP
1362{
1363 if (floppy->openers > 1)
1364 return -EBUSY;
1365
1366 /* The IOMEGA Clik! Drive doesn't support this command -
1367 * no room for an eject mechanism */
6e5fa7b8 1368 if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE)) {
20bf7bda
BP
1369 int prevent = arg ? 1 : 0;
1370
1371 if (cmd == CDROMEJECT)
1372 prevent = 0;
1373
1374 idefloppy_create_prevent_cmd(pc, prevent);
1375 (void) idefloppy_queue_pc_tail(floppy->drive, pc);
1376 }
1377
1378 if (cmd == CDROMEJECT) {
1379 idefloppy_create_start_stop_cmd(pc, 2);
1380 (void) idefloppy_queue_pc_tail(floppy->drive, pc);
1381 }
1382
1383 return 0;
1384}
1385
1386static int ide_floppy_format_unit(idefloppy_floppy_t *floppy,
1387 int __user *arg)
1388{
1389 int blocks, length, flags, err = 0;
8e555123 1390 struct ide_atapi_pc pc;
20bf7bda
BP
1391
1392 if (floppy->openers > 1) {
1393 /* Don't format if someone is using the disk */
6e5fa7b8 1394 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
20bf7bda
BP
1395 return -EBUSY;
1396 }
1397
6e5fa7b8 1398 floppy->flags |= IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
20bf7bda
BP
1399
1400 /*
1401 * Send ATAPI_FORMAT_UNIT to the drive.
1402 *
1403 * Userland gives us the following structure:
1404 *
1405 * struct idefloppy_format_command {
1406 * int nblocks;
1407 * int blocksize;
1408 * int flags;
1409 * } ;
1410 *
1411 * flags is a bitmask, currently, the only defined flag is:
1412 *
1413 * 0x01 - verify media after format.
1414 */
1415 if (get_user(blocks, arg) ||
1416 get_user(length, arg+1) ||
1417 get_user(flags, arg+2)) {
1418 err = -EFAULT;
1419 goto out;
1420 }
1421
1422 (void) idefloppy_get_sfrp_bit(floppy->drive);
1423 idefloppy_create_format_unit_cmd(&pc, blocks, length, flags);
1424
1425 if (idefloppy_queue_pc_tail(floppy->drive, &pc))
1426 err = -EIO;
1427
1428out:
1429 if (err)
6e5fa7b8 1430 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
20bf7bda
BP
1431 return err;
1432}
1433
1434
1da177e4
LT
1435static int idefloppy_ioctl(struct inode *inode, struct file *file,
1436 unsigned int cmd, unsigned long arg)
1437{
1438 struct block_device *bdev = inode->i_bdev;
1439 struct ide_floppy_obj *floppy = ide_floppy_g(bdev->bd_disk);
1440 ide_drive_t *drive = floppy->drive;
8e555123 1441 struct ide_atapi_pc pc;
1da177e4 1442 void __user *argp = (void __user *)arg;
07203f64 1443 int err;
1da177e4
LT
1444
1445 switch (cmd) {
1446 case CDROMEJECT:
1da177e4
LT
1447 /* fall through */
1448 case CDROM_LOCKDOOR:
20bf7bda 1449 return ide_floppy_lockdoor(floppy, &pc, arg, cmd);
1da177e4
LT
1450 case IDEFLOPPY_IOCTL_FORMAT_SUPPORTED:
1451 return 0;
1452 case IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY:
194ec0c0 1453 return ide_floppy_get_format_capacities(drive, argp);
1da177e4 1454 case IDEFLOPPY_IOCTL_FORMAT_START:
1da177e4
LT
1455 if (!(file->f_mode & 2))
1456 return -EPERM;
1457
20bf7bda 1458 return ide_floppy_format_unit(floppy, (int __user *)arg);
1da177e4
LT
1459 case IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS:
1460 return idefloppy_get_format_progress(drive, argp);
1461 }
89636af2
BZ
1462
1463 /*
1464 * skip SCSI_IOCTL_SEND_COMMAND (deprecated)
1465 * and CDROM_SEND_PACKET (legacy) ioctls
1466 */
1467 if (cmd != CDROM_SEND_PACKET && cmd != SCSI_IOCTL_SEND_COMMAND)
1468 err = scsi_cmd_ioctl(file, bdev->bd_disk->queue,
1469 bdev->bd_disk, cmd, argp);
1470 else
1471 err = -ENOTTY;
1472
1473 if (err == -ENOTTY)
1474 err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
1475
1476 return err;
1da177e4
LT
1477}
1478
1479static int idefloppy_media_changed(struct gendisk *disk)
1480{
1481 struct ide_floppy_obj *floppy = ide_floppy_g(disk);
1482 ide_drive_t *drive = floppy->drive;
6e5fa7b8 1483 int ret;
1da177e4
LT
1484
1485 /* do not scan partitions twice if this is a removable device */
1486 if (drive->attach) {
1487 drive->attach = 0;
1488 return 0;
1489 }
6e5fa7b8
BP
1490 ret = !!(floppy->flags & IDEFLOPPY_FLAG_MEDIA_CHANGED);
1491 floppy->flags &= ~IDEFLOPPY_FLAG_MEDIA_CHANGED;
1492 return ret;
1da177e4
LT
1493}
1494
1495static int idefloppy_revalidate_disk(struct gendisk *disk)
1496{
1497 struct ide_floppy_obj *floppy = ide_floppy_g(disk);
1498 set_capacity(disk, idefloppy_capacity(floppy->drive));
1499 return 0;
1500}
1501
1502static struct block_device_operations idefloppy_ops = {
52d3ccf7
PC
1503 .owner = THIS_MODULE,
1504 .open = idefloppy_open,
1505 .release = idefloppy_release,
1506 .ioctl = idefloppy_ioctl,
1507 .getgeo = idefloppy_getgeo,
1508 .media_changed = idefloppy_media_changed,
1509 .revalidate_disk = idefloppy_revalidate_disk
1da177e4
LT
1510};
1511
4031bbe4 1512static int ide_floppy_probe(ide_drive_t *drive)
1da177e4
LT
1513{
1514 idefloppy_floppy_t *floppy;
1515 struct gendisk *g;
1516
1517 if (!strstr("ide-floppy", drive->driver_req))
1518 goto failed;
1519 if (!drive->present)
1520 goto failed;
1521 if (drive->media != ide_floppy)
1522 goto failed;
0571c7a4
BP
1523 if (!idefloppy_identify_device(drive, drive->id)) {
1524 printk(KERN_ERR "ide-floppy: %s: not supported by this version"
1525 " of ide-floppy\n", drive->name);
1da177e4
LT
1526 goto failed;
1527 }
0571c7a4
BP
1528 floppy = kzalloc(sizeof(idefloppy_floppy_t), GFP_KERNEL);
1529 if (!floppy) {
1530 printk(KERN_ERR "ide-floppy: %s: Can't allocate a floppy"
1531 " structure\n", drive->name);
1da177e4
LT
1532 goto failed;
1533 }
1534
1535 g = alloc_disk(1 << PARTN_BITS);
1536 if (!g)
1537 goto out_free_floppy;
1538
1539 ide_init_disk(g, drive);
1540
7662d046 1541 ide_proc_register_driver(drive, &idefloppy_driver);
1da177e4 1542
1da177e4
LT
1543 kref_init(&floppy->kref);
1544
1545 floppy->drive = drive;
1546 floppy->driver = &idefloppy_driver;
1547 floppy->disk = g;
1548
1549 g->private_data = &floppy->driver;
1550
1551 drive->driver_data = floppy;
1552
0571c7a4 1553 idefloppy_setup(drive, floppy);
8604affd 1554
1da177e4
LT
1555 g->minors = 1 << PARTN_BITS;
1556 g->driverfs_dev = &drive->gendev;
1da177e4
LT
1557 g->flags = drive->removable ? GENHD_FL_REMOVABLE : 0;
1558 g->fops = &idefloppy_ops;
1559 drive->attach = 1;
1560 add_disk(g);
1561 return 0;
1562
1da177e4
LT
1563out_free_floppy:
1564 kfree(floppy);
1565failed:
8604affd 1566 return -ENODEV;
1da177e4
LT
1567}
1568
0571c7a4 1569static void __exit idefloppy_exit(void)
1da177e4 1570{
8604affd 1571 driver_unregister(&idefloppy_driver.gen_driver);
1da177e4
LT
1572}
1573
17514e8a 1574static int __init idefloppy_init(void)
1da177e4
LT
1575{
1576 printk("ide-floppy driver " IDEFLOPPY_VERSION "\n");
8604affd 1577 return driver_register(&idefloppy_driver.gen_driver);
1da177e4
LT
1578}
1579
263756ec 1580MODULE_ALIAS("ide:*m-floppy*");
1da177e4
LT
1581module_init(idefloppy_init);
1582module_exit(idefloppy_exit);
1583MODULE_LICENSE("GPL");
0571c7a4
BP
1584MODULE_DESCRIPTION("ATAPI FLOPPY Driver");
1585