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