]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/ide/ide-floppy.c
ide-floppy: pass packet command in rq->cmd
[linux-2.6-omap-h63xx.git] / 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->tp_ops->output_data(drive, NULL, data, count);
251                 else
252                         hwif->tp_ops->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         memcpy(rq->cmd, pc->c, 12);
295         ide_do_drive_cmd(drive, rq);
296 }
297
298 static struct ide_atapi_pc *idefloppy_next_pc_storage(ide_drive_t *drive)
299 {
300         idefloppy_floppy_t *floppy = drive->driver_data;
301
302         if (floppy->pc_stack_index == IDEFLOPPY_PC_STACK)
303                 floppy->pc_stack_index = 0;
304         return (&floppy->pc_stack[floppy->pc_stack_index++]);
305 }
306
307 static struct request *idefloppy_next_rq_storage(ide_drive_t *drive)
308 {
309         idefloppy_floppy_t *floppy = drive->driver_data;
310
311         if (floppy->rq_stack_index == IDEFLOPPY_PC_STACK)
312                 floppy->rq_stack_index = 0;
313         return (&floppy->rq_stack[floppy->rq_stack_index++]);
314 }
315
316 static void ide_floppy_callback(ide_drive_t *drive)
317 {
318         idefloppy_floppy_t *floppy = drive->driver_data;
319         struct ide_atapi_pc *pc = floppy->pc;
320         int uptodate = pc->error ? 0 : 1;
321
322         debug_log("Reached %s\n", __func__);
323
324         if (floppy->failed_pc == pc)
325                 floppy->failed_pc = NULL;
326
327         if (pc->c[0] == GPCMD_READ_10 || pc->c[0] == GPCMD_WRITE_10 ||
328             (pc->rq && blk_pc_request(pc->rq)))
329                 uptodate = 1; /* FIXME */
330         else if (pc->c[0] == GPCMD_REQUEST_SENSE) {
331                 u8 *buf = floppy->pc->buf;
332
333                 if (!pc->error) {
334                         floppy->sense_key = buf[2] & 0x0F;
335                         floppy->asc = buf[12];
336                         floppy->ascq = buf[13];
337                         floppy->progress_indication = buf[15] & 0x80 ?
338                                 (u16)get_unaligned((u16 *)&buf[16]) : 0x10000;
339
340                         if (floppy->failed_pc)
341                                 debug_log("pc = %x, ", floppy->failed_pc->c[0]);
342
343                         debug_log("sense key = %x, asc = %x, ascq = %x\n",
344                                   floppy->sense_key, floppy->asc, floppy->ascq);
345                 } else
346                         printk(KERN_ERR "Error in REQUEST SENSE itself - "
347                                         "Aborting request!\n");
348         }
349
350         idefloppy_end_request(drive, uptodate, 0);
351 }
352
353 static void idefloppy_init_pc(struct ide_atapi_pc *pc)
354 {
355         memset(pc, 0, sizeof(*pc));
356         pc->buf = pc->pc_buf;
357         pc->buf_size = IDEFLOPPY_PC_BUFFER_SIZE;
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
389         return ide_pc_intr(drive, floppy->pc, idefloppy_pc_intr,
390                            IDEFLOPPY_WAIT_CMD, NULL, idefloppy_update_buffers,
391                            idefloppy_retry_pc, NULL, ide_floppy_io_buffers);
392 }
393
394 /*
395  * What we have here is a classic case of a top half / bottom half interrupt
396  * service routine. In interrupt mode, the device sends an interrupt to signal
397  * that it is ready to receive a packet. However, we need to delay about 2-3
398  * ticks before issuing the packet or we gets in trouble.
399  */
400 static int idefloppy_transfer_pc(ide_drive_t *drive)
401 {
402         idefloppy_floppy_t *floppy = drive->driver_data;
403
404         /* Send the actual packet */
405         drive->hwif->tp_ops->output_data(drive, NULL, floppy->pc->c, 12);
406
407         /* Timeout for the packet command */
408         return IDEFLOPPY_WAIT_CMD;
409 }
410
411
412 /*
413  * Called as an interrupt (or directly). When the device says it's ready for a
414  * packet, we schedule the packet transfer to occur about 2-3 ticks later in
415  * transfer_pc.
416  */
417 static ide_startstop_t idefloppy_start_pc_transfer(ide_drive_t *drive)
418 {
419         idefloppy_floppy_t *floppy = drive->driver_data;
420         struct ide_atapi_pc *pc = floppy->pc;
421         ide_expiry_t *expiry;
422         unsigned int timeout;
423
424         /*
425          * The following delay solves a problem with ATAPI Zip 100 drives
426          * where the Busy flag was apparently being deasserted before the
427          * unit was ready to receive data. This was happening on a
428          * 1200 MHz Athlon system. 10/26/01 25msec is too short,
429          * 40 and 50msec work well. idefloppy_pc_intr will not be actually
430          * used until after the packet is moved in about 50 msec.
431          */
432         if (pc->flags & PC_FLAG_ZIP_DRIVE) {
433                 timeout = floppy->ticks;
434                 expiry = &idefloppy_transfer_pc;
435         } else {
436                 timeout = IDEFLOPPY_WAIT_CMD;
437                 expiry = NULL;
438         }
439
440         return ide_transfer_pc(drive, pc, idefloppy_pc_intr, timeout, expiry);
441 }
442
443 static void ide_floppy_report_error(idefloppy_floppy_t *floppy,
444                                     struct ide_atapi_pc *pc)
445 {
446         /* supress error messages resulting from Medium not present */
447         if (floppy->sense_key == 0x02 &&
448             floppy->asc       == 0x3a &&
449             floppy->ascq      == 0x00)
450                 return;
451
452         printk(KERN_ERR "ide-floppy: %s: I/O error, pc = %2x, key = %2x, "
453                         "asc = %2x, ascq = %2x\n",
454                         floppy->drive->name, pc->c[0], floppy->sense_key,
455                         floppy->asc, floppy->ascq);
456
457 }
458
459 static ide_startstop_t idefloppy_issue_pc(ide_drive_t *drive,
460                 struct ide_atapi_pc *pc)
461 {
462         idefloppy_floppy_t *floppy = drive->driver_data;
463
464         if (floppy->failed_pc == NULL &&
465             pc->c[0] != GPCMD_REQUEST_SENSE)
466                 floppy->failed_pc = pc;
467         /* Set the current packet command */
468         floppy->pc = pc;
469
470         if (pc->retries > IDEFLOPPY_MAX_PC_RETRIES) {
471                 if (!(pc->flags & PC_FLAG_SUPPRESS_ERROR))
472                         ide_floppy_report_error(floppy, pc);
473                 /* Giving up */
474                 pc->error = IDEFLOPPY_ERROR_GENERAL;
475
476                 floppy->failed_pc = NULL;
477                 drive->pc_callback(drive);
478                 return ide_stopped;
479         }
480
481         debug_log("Retry number - %d\n", pc->retries);
482
483         pc->retries++;
484
485         return ide_issue_pc(drive, pc, idefloppy_start_pc_transfer,
486                             IDEFLOPPY_WAIT_CMD, NULL);
487 }
488
489 static void idefloppy_create_prevent_cmd(struct ide_atapi_pc *pc, int prevent)
490 {
491         debug_log("creating prevent removal command, prevent = %d\n", prevent);
492
493         idefloppy_init_pc(pc);
494         pc->c[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
495         pc->c[4] = prevent;
496 }
497
498 static void idefloppy_create_read_capacity_cmd(struct ide_atapi_pc *pc)
499 {
500         idefloppy_init_pc(pc);
501         pc->c[0] = GPCMD_READ_FORMAT_CAPACITIES;
502         pc->c[7] = 255;
503         pc->c[8] = 255;
504         pc->req_xfer = 255;
505 }
506
507 static void idefloppy_create_format_unit_cmd(struct ide_atapi_pc *pc, int b,
508                 int l, int flags)
509 {
510         idefloppy_init_pc(pc);
511         pc->c[0] = GPCMD_FORMAT_UNIT;
512         pc->c[1] = 0x17;
513
514         memset(pc->buf, 0, 12);
515         pc->buf[1] = 0xA2;
516         /* Default format list header, u8 1: FOV/DCRT/IMM bits set */
517
518         if (flags & 1)                          /* Verify bit on... */
519                 pc->buf[1] ^= 0x20;             /* ... turn off DCRT bit */
520         pc->buf[3] = 8;
521
522         put_unaligned(cpu_to_be32(b), (unsigned int *)(&pc->buf[4]));
523         put_unaligned(cpu_to_be32(l), (unsigned int *)(&pc->buf[8]));
524         pc->buf_size = 12;
525         pc->flags |= PC_FLAG_WRITING;
526 }
527
528 /* A mode sense command is used to "sense" floppy parameters. */
529 static void idefloppy_create_mode_sense_cmd(struct ide_atapi_pc *pc,
530                 u8 page_code, u8 type)
531 {
532         u16 length = 8; /* sizeof(Mode Parameter Header) = 8 Bytes */
533
534         idefloppy_init_pc(pc);
535         pc->c[0] = GPCMD_MODE_SENSE_10;
536         pc->c[1] = 0;
537         pc->c[2] = page_code + (type << 6);
538
539         switch (page_code) {
540         case IDEFLOPPY_CAPABILITIES_PAGE:
541                 length += 12;
542                 break;
543         case IDEFLOPPY_FLEXIBLE_DISK_PAGE:
544                 length += 32;
545                 break;
546         default:
547                 printk(KERN_ERR "ide-floppy: unsupported page code "
548                                 "in create_mode_sense_cmd\n");
549         }
550         put_unaligned(cpu_to_be16(length), (u16 *) &pc->c[7]);
551         pc->req_xfer = length;
552 }
553
554 static void idefloppy_create_start_stop_cmd(struct ide_atapi_pc *pc, int start)
555 {
556         idefloppy_init_pc(pc);
557         pc->c[0] = GPCMD_START_STOP_UNIT;
558         pc->c[4] = start;
559 }
560
561 static void idefloppy_create_rw_cmd(idefloppy_floppy_t *floppy,
562                                     struct ide_atapi_pc *pc, struct request *rq,
563                                     unsigned long sector)
564 {
565         int block = sector / floppy->bs_factor;
566         int blocks = rq->nr_sectors / floppy->bs_factor;
567         int cmd = rq_data_dir(rq);
568
569         debug_log("create_rw10_cmd: block == %d, blocks == %d\n",
570                 block, blocks);
571
572         idefloppy_init_pc(pc);
573         pc->c[0] = cmd == READ ? GPCMD_READ_10 : GPCMD_WRITE_10;
574         put_unaligned(cpu_to_be16(blocks), (unsigned short *)&pc->c[7]);
575         put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[2]);
576
577         memcpy(rq->cmd, pc->c, 12);
578
579         pc->rq = rq;
580         pc->b_count = cmd == READ ? 0 : rq->bio->bi_size;
581         if (rq->cmd_flags & REQ_RW)
582                 pc->flags |= PC_FLAG_WRITING;
583         pc->buf = NULL;
584         pc->req_xfer = pc->buf_size = blocks * floppy->block_size;
585         pc->flags |= PC_FLAG_DMA_OK;
586 }
587
588 static void idefloppy_blockpc_cmd(idefloppy_floppy_t *floppy,
589                 struct ide_atapi_pc *pc, struct request *rq)
590 {
591         idefloppy_init_pc(pc);
592         memcpy(pc->c, rq->cmd, sizeof(pc->c));
593         pc->rq = rq;
594         pc->b_count = rq->data_len;
595         if (rq->data_len && rq_data_dir(rq) == WRITE)
596                 pc->flags |= PC_FLAG_WRITING;
597         pc->buf = rq->data;
598         if (rq->bio)
599                 pc->flags |= PC_FLAG_DMA_OK;
600         /*
601          * possibly problematic, doesn't look like ide-floppy correctly
602          * handled scattered requests if dma fails...
603          */
604         pc->req_xfer = pc->buf_size = rq->data_len;
605 }
606
607 static ide_startstop_t idefloppy_do_request(ide_drive_t *drive,
608                 struct request *rq, sector_t block_s)
609 {
610         idefloppy_floppy_t *floppy = drive->driver_data;
611         struct ide_atapi_pc *pc;
612         unsigned long block = (unsigned long)block_s;
613
614         debug_log("dev: %s, cmd_type: %x, errors: %d\n",
615                         rq->rq_disk ? rq->rq_disk->disk_name : "?",
616                         rq->cmd_type, rq->errors);
617         debug_log("sector: %ld, nr_sectors: %ld, "
618                         "current_nr_sectors: %d\n", (long)rq->sector,
619                         rq->nr_sectors, rq->current_nr_sectors);
620
621         if (rq->errors >= ERROR_MAX) {
622                 if (floppy->failed_pc)
623                         ide_floppy_report_error(floppy, floppy->failed_pc);
624                 else
625                         printk(KERN_ERR "ide-floppy: %s: I/O error\n",
626                                 drive->name);
627                 idefloppy_end_request(drive, 0, 0);
628                 return ide_stopped;
629         }
630         if (blk_fs_request(rq)) {
631                 if (((long)rq->sector % floppy->bs_factor) ||
632                     (rq->nr_sectors % floppy->bs_factor)) {
633                         printk(KERN_ERR "%s: unsupported r/w request size\n",
634                                         drive->name);
635                         idefloppy_end_request(drive, 0, 0);
636                         return ide_stopped;
637                 }
638                 pc = idefloppy_next_pc_storage(drive);
639                 idefloppy_create_rw_cmd(floppy, pc, rq, block);
640         } else if (blk_special_request(rq)) {
641                 pc = (struct ide_atapi_pc *) rq->buffer;
642         } else if (blk_pc_request(rq)) {
643                 pc = idefloppy_next_pc_storage(drive);
644                 idefloppy_blockpc_cmd(floppy, pc, rq);
645         } else {
646                 blk_dump_rq_flags(rq,
647                         "ide-floppy: unsupported command in queue");
648                 idefloppy_end_request(drive, 0, 0);
649                 return ide_stopped;
650         }
651
652         if (floppy->flags & IDEFLOPPY_FLAG_DRQ_INTERRUPT)
653                 pc->flags |= PC_FLAG_DRQ_INTERRUPT;
654
655         if (floppy->flags & IDEFLOPPY_FLAG_ZIP_DRIVE)
656                 pc->flags |= PC_FLAG_ZIP_DRIVE;
657
658         pc->rq = rq;
659
660         return idefloppy_issue_pc(drive, pc);
661 }
662
663 /*
664  * Add a special packet command request to the tail of the request queue,
665  * and wait for it to be serviced.
666  */
667 static int idefloppy_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc)
668 {
669         struct ide_floppy_obj *floppy = drive->driver_data;
670         struct request *rq;
671         int error;
672
673         rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
674         rq->buffer = (char *) pc;
675         rq->cmd_type = REQ_TYPE_SPECIAL;
676         memcpy(rq->cmd, pc->c, 12);
677         error = blk_execute_rq(drive->queue, floppy->disk, rq, 0);
678         blk_put_request(rq);
679
680         return error;
681 }
682
683 /*
684  * Look at the flexible disk page parameters. We ignore the CHS capacity
685  * parameters and use the LBA parameters instead.
686  */
687 static int ide_floppy_get_flexible_disk_page(ide_drive_t *drive)
688 {
689         idefloppy_floppy_t *floppy = drive->driver_data;
690         struct ide_atapi_pc pc;
691         u8 *page;
692         int capacity, lba_capacity;
693         u16 transfer_rate, sector_size, cyls, rpm;
694         u8 heads, sectors;
695
696         idefloppy_create_mode_sense_cmd(&pc, IDEFLOPPY_FLEXIBLE_DISK_PAGE,
697                                         MODE_SENSE_CURRENT);
698
699         if (idefloppy_queue_pc_tail(drive, &pc)) {
700                 printk(KERN_ERR "ide-floppy: Can't get flexible disk page"
701                                 " parameters\n");
702                 return 1;
703         }
704         floppy->wp = !!(pc.buf[3] & 0x80);
705         set_disk_ro(floppy->disk, floppy->wp);
706         page = &pc.buf[8];
707
708         transfer_rate = be16_to_cpup((__be16 *)&pc.buf[8 + 2]);
709         sector_size   = be16_to_cpup((__be16 *)&pc.buf[8 + 6]);
710         cyls          = be16_to_cpup((__be16 *)&pc.buf[8 + 8]);
711         rpm           = be16_to_cpup((__be16 *)&pc.buf[8 + 28]);
712         heads         = pc.buf[8 + 4];
713         sectors       = pc.buf[8 + 5];
714
715         capacity = cyls * heads * sectors * sector_size;
716
717         if (memcmp(page, &floppy->flexible_disk_page, 32))
718                 printk(KERN_INFO "%s: %dkB, %d/%d/%d CHS, %d kBps, "
719                                 "%d sector size, %d rpm\n",
720                                 drive->name, capacity / 1024, cyls, heads,
721                                 sectors, transfer_rate / 8, sector_size, rpm);
722
723         memcpy(&floppy->flexible_disk_page, page, 32);
724         drive->bios_cyl = cyls;
725         drive->bios_head = heads;
726         drive->bios_sect = sectors;
727         lba_capacity = floppy->blocks * floppy->block_size;
728
729         if (capacity < lba_capacity) {
730                 printk(KERN_NOTICE "%s: The disk reports a capacity of %d "
731                         "bytes, but the drive only handles %d\n",
732                         drive->name, lba_capacity, capacity);
733                 floppy->blocks = floppy->block_size ?
734                         capacity / floppy->block_size : 0;
735         }
736         return 0;
737 }
738
739 static int idefloppy_get_sfrp_bit(ide_drive_t *drive)
740 {
741         idefloppy_floppy_t *floppy = drive->driver_data;
742         struct ide_atapi_pc pc;
743
744         floppy->srfp = 0;
745         idefloppy_create_mode_sense_cmd(&pc, IDEFLOPPY_CAPABILITIES_PAGE,
746                                                  MODE_SENSE_CURRENT);
747
748         pc.flags |= PC_FLAG_SUPPRESS_ERROR;
749         if (idefloppy_queue_pc_tail(drive, &pc))
750                 return 1;
751
752         floppy->srfp = pc.buf[8 + 2] & 0x40;
753         return (0);
754 }
755
756 /*
757  * Determine if a media is present in the floppy drive, and if so, its LBA
758  * capacity.
759  */
760 static int ide_floppy_get_capacity(ide_drive_t *drive)
761 {
762         idefloppy_floppy_t *floppy = drive->driver_data;
763         struct ide_atapi_pc pc;
764         u8 *cap_desc;
765         u8 header_len, desc_cnt;
766         int i, rc = 1, blocks, length;
767
768         drive->bios_cyl = 0;
769         drive->bios_head = drive->bios_sect = 0;
770         floppy->blocks = 0;
771         floppy->bs_factor = 1;
772         set_capacity(floppy->disk, 0);
773
774         idefloppy_create_read_capacity_cmd(&pc);
775         if (idefloppy_queue_pc_tail(drive, &pc)) {
776                 printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n");
777                 return 1;
778         }
779         header_len = pc.buf[3];
780         cap_desc = &pc.buf[4];
781         desc_cnt = header_len / 8; /* capacity descriptor of 8 bytes */
782
783         for (i = 0; i < desc_cnt; i++) {
784                 unsigned int desc_start = 4 + i*8;
785
786                 blocks = be32_to_cpup((__be32 *)&pc.buf[desc_start]);
787                 length = be16_to_cpup((__be16 *)&pc.buf[desc_start + 6]);
788
789                 debug_log("Descriptor %d: %dkB, %d blocks, %d sector size\n",
790                                 i, blocks * length / 1024, blocks, length);
791
792                 if (i)
793                         continue;
794                 /*
795                  * the code below is valid only for the 1st descriptor, ie i=0
796                  */
797
798                 switch (pc.buf[desc_start + 4] & 0x03) {
799                 /* Clik! drive returns this instead of CAPACITY_CURRENT */
800                 case CAPACITY_UNFORMATTED:
801                         if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE))
802                                 /*
803                                  * If it is not a clik drive, break out
804                                  * (maintains previous driver behaviour)
805                                  */
806                                 break;
807                 case CAPACITY_CURRENT:
808                         /* Normal Zip/LS-120 disks */
809                         if (memcmp(cap_desc, &floppy->cap_desc, 8))
810                                 printk(KERN_INFO "%s: %dkB, %d blocks, %d "
811                                         "sector size\n", drive->name,
812                                         blocks * length / 1024, blocks, length);
813                         memcpy(&floppy->cap_desc, cap_desc, 8);
814
815                         if (!length || length % 512) {
816                                 printk(KERN_NOTICE "%s: %d bytes block size "
817                                         "not supported\n", drive->name, length);
818                         } else {
819                                 floppy->blocks = blocks;
820                                 floppy->block_size = length;
821                                 floppy->bs_factor = length / 512;
822                                 if (floppy->bs_factor != 1)
823                                         printk(KERN_NOTICE "%s: warning: non "
824                                                 "512 bytes block size not "
825                                                 "fully supported\n",
826                                                 drive->name);
827                                 rc = 0;
828                         }
829                         break;
830                 case CAPACITY_NO_CARTRIDGE:
831                         /*
832                          * This is a KERN_ERR so it appears on screen
833                          * for the user to see
834                          */
835                         printk(KERN_ERR "%s: No disk in drive\n", drive->name);
836                         break;
837                 case CAPACITY_INVALID:
838                         printk(KERN_ERR "%s: Invalid capacity for disk "
839                                 "in drive\n", drive->name);
840                         break;
841                 }
842                 debug_log("Descriptor 0 Code: %d\n",
843                           pc.buf[desc_start + 4] & 0x03);
844         }
845
846         /* Clik! disk does not support get_flexible_disk_page */
847         if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE))
848                 (void) ide_floppy_get_flexible_disk_page(drive);
849
850         set_capacity(floppy->disk, floppy->blocks * floppy->bs_factor);
851         return rc;
852 }
853
854 /*
855  * Obtain the list of formattable capacities.
856  * Very similar to ide_floppy_get_capacity, except that we push the capacity
857  * descriptors to userland, instead of our own structures.
858  *
859  * Userland gives us the following structure:
860  *
861  * struct idefloppy_format_capacities {
862  *      int nformats;
863  *      struct {
864  *              int nblocks;
865  *              int blocksize;
866  *      } formats[];
867  * };
868  *
869  * userland initializes nformats to the number of allocated formats[] records.
870  * On exit we set nformats to the number of records we've actually initialized.
871  */
872
873 static int ide_floppy_get_format_capacities(ide_drive_t *drive, int __user *arg)
874 {
875         struct ide_atapi_pc pc;
876         u8 header_len, desc_cnt;
877         int i, blocks, length, u_array_size, u_index;
878         int __user *argp;
879
880         if (get_user(u_array_size, arg))
881                 return (-EFAULT);
882
883         if (u_array_size <= 0)
884                 return (-EINVAL);
885
886         idefloppy_create_read_capacity_cmd(&pc);
887         if (idefloppy_queue_pc_tail(drive, &pc)) {
888                 printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n");
889                 return (-EIO);
890         }
891         header_len = pc.buf[3];
892         desc_cnt = header_len / 8; /* capacity descriptor of 8 bytes */
893
894         u_index = 0;
895         argp = arg + 1;
896
897         /*
898          * We always skip the first capacity descriptor.  That's the current
899          * capacity.  We are interested in the remaining descriptors, the
900          * formattable capacities.
901          */
902         for (i = 1; i < desc_cnt; i++) {
903                 unsigned int desc_start = 4 + i*8;
904
905                 if (u_index >= u_array_size)
906                         break;  /* User-supplied buffer too small */
907
908                 blocks = be32_to_cpup((__be32 *)&pc.buf[desc_start]);
909                 length = be16_to_cpup((__be16 *)&pc.buf[desc_start + 6]);
910
911                 if (put_user(blocks, argp))
912                         return(-EFAULT);
913                 ++argp;
914
915                 if (put_user(length, argp))
916                         return (-EFAULT);
917                 ++argp;
918
919                 ++u_index;
920         }
921
922         if (put_user(u_index, arg))
923                 return (-EFAULT);
924         return (0);
925 }
926
927 /*
928  * Get ATAPI_FORMAT_UNIT progress indication.
929  *
930  * Userland gives a pointer to an int.  The int is set to a progress
931  * indicator 0-65536, with 65536=100%.
932  *
933  * If the drive does not support format progress indication, we just check
934  * the dsc bit, and return either 0 or 65536.
935  */
936
937 static int idefloppy_get_format_progress(ide_drive_t *drive, int __user *arg)
938 {
939         idefloppy_floppy_t *floppy = drive->driver_data;
940         struct ide_atapi_pc pc;
941         int progress_indication = 0x10000;
942
943         if (floppy->srfp) {
944                 idefloppy_create_request_sense_cmd(&pc);
945                 if (idefloppy_queue_pc_tail(drive, &pc))
946                         return (-EIO);
947
948                 if (floppy->sense_key == 2 &&
949                     floppy->asc == 4 &&
950                     floppy->ascq == 4)
951                         progress_indication = floppy->progress_indication;
952
953                 /* Else assume format_unit has finished, and we're at 0x10000 */
954         } else {
955                 ide_hwif_t *hwif = drive->hwif;
956                 unsigned long flags;
957                 u8 stat;
958
959                 local_irq_save(flags);
960                 stat = hwif->tp_ops->read_status(hwif);
961                 local_irq_restore(flags);
962
963                 progress_indication = ((stat & SEEK_STAT) == 0) ? 0 : 0x10000;
964         }
965         if (put_user(progress_indication, arg))
966                 return (-EFAULT);
967
968         return (0);
969 }
970
971 static sector_t idefloppy_capacity(ide_drive_t *drive)
972 {
973         idefloppy_floppy_t *floppy = drive->driver_data;
974         unsigned long capacity = floppy->blocks * floppy->bs_factor;
975
976         return capacity;
977 }
978
979 /*
980  * Check whether we can support a drive, based on the ATAPI IDENTIFY command
981  * results.
982  */
983 static int idefloppy_identify_device(ide_drive_t *drive, struct hd_driveid *id)
984 {
985         u8 gcw[2];
986         u8 device_type, protocol, removable, drq_type, packet_size;
987
988         *((u16 *) &gcw) = id->config;
989
990         device_type =  gcw[1] & 0x1F;
991         removable   = (gcw[0] & 0x80) >> 7;
992         protocol    = (gcw[1] & 0xC0) >> 6;
993         drq_type    = (gcw[0] & 0x60) >> 5;
994         packet_size =  gcw[0] & 0x03;
995
996 #ifdef CONFIG_PPC
997         /* kludge for Apple PowerBook internal zip */
998         if (device_type == 5 &&
999             !strstr(id->model, "CD-ROM") && strstr(id->model, "ZIP"))
1000                 device_type = 0;
1001 #endif
1002
1003         if (protocol != 2)
1004                 printk(KERN_ERR "ide-floppy: Protocol (0x%02x) is not ATAPI\n",
1005                         protocol);
1006         else if (device_type != 0)
1007                 printk(KERN_ERR "ide-floppy: Device type (0x%02x) is not set "
1008                                 "to floppy\n", device_type);
1009         else if (!removable)
1010                 printk(KERN_ERR "ide-floppy: The removable flag is not set\n");
1011         else if (drq_type == 3)
1012                 printk(KERN_ERR "ide-floppy: Sorry, DRQ type (0x%02x) not "
1013                                 "supported\n", drq_type);
1014         else if (packet_size != 0)
1015                 printk(KERN_ERR "ide-floppy: Packet size (0x%02x) is not 12 "
1016                                 "bytes\n", packet_size);
1017         else
1018                 return 1;
1019         return 0;
1020 }
1021
1022 #ifdef CONFIG_IDE_PROC_FS
1023 static void idefloppy_add_settings(ide_drive_t *drive)
1024 {
1025         idefloppy_floppy_t *floppy = drive->driver_data;
1026
1027         ide_add_setting(drive, "bios_cyl", SETTING_RW, TYPE_INT, 0, 1023, 1, 1,
1028                         &drive->bios_cyl, NULL);
1029         ide_add_setting(drive, "bios_head", SETTING_RW, TYPE_BYTE, 0, 255, 1, 1,
1030                         &drive->bios_head, NULL);
1031         ide_add_setting(drive, "bios_sect", SETTING_RW, TYPE_BYTE, 0,  63, 1, 1,
1032                         &drive->bios_sect, NULL);
1033         ide_add_setting(drive, "ticks",    SETTING_RW, TYPE_BYTE, 0, 255, 1, 1,
1034                         &floppy->ticks,  NULL);
1035 }
1036 #else
1037 static inline void idefloppy_add_settings(ide_drive_t *drive) { ; }
1038 #endif
1039
1040 static void idefloppy_setup(ide_drive_t *drive, idefloppy_floppy_t *floppy)
1041 {
1042         u8 gcw[2];
1043
1044         *((u16 *) &gcw) = drive->id->config;
1045         floppy->pc = floppy->pc_stack;
1046         drive->pc_callback = ide_floppy_callback;
1047
1048         if (((gcw[0] & 0x60) >> 5) == 1)
1049                 floppy->flags |= IDEFLOPPY_FLAG_DRQ_INTERRUPT;
1050         /*
1051          * We used to check revisions here. At this point however I'm giving up.
1052          * Just assume they are all broken, its easier.
1053          *
1054          * The actual reason for the workarounds was likely a driver bug after
1055          * all rather than a firmware bug, and the workaround below used to hide
1056          * it. It should be fixed as of version 1.9, but to be on the safe side
1057          * we'll leave the limitation below for the 2.2.x tree.
1058          */
1059         if (!strncmp(drive->id->model, "IOMEGA ZIP 100 ATAPI", 20)) {
1060                 floppy->flags |= IDEFLOPPY_FLAG_ZIP_DRIVE;
1061                 /* This value will be visible in the /proc/ide/hdx/settings */
1062                 floppy->ticks = IDEFLOPPY_TICKS_DELAY;
1063                 blk_queue_max_sectors(drive->queue, 64);
1064         }
1065
1066         /*
1067          * Guess what? The IOMEGA Clik! drive also needs the above fix. It makes
1068          * nasty clicking noises without it, so please don't remove this.
1069          */
1070         if (strncmp(drive->id->model, "IOMEGA Clik!", 11) == 0) {
1071                 blk_queue_max_sectors(drive->queue, 64);
1072                 floppy->flags |= IDEFLOPPY_FLAG_CLIK_DRIVE;
1073         }
1074
1075         (void) ide_floppy_get_capacity(drive);
1076         idefloppy_add_settings(drive);
1077 }
1078
1079 static void ide_floppy_remove(ide_drive_t *drive)
1080 {
1081         idefloppy_floppy_t *floppy = drive->driver_data;
1082         struct gendisk *g = floppy->disk;
1083
1084         ide_proc_unregister_driver(drive, floppy->driver);
1085
1086         del_gendisk(g);
1087
1088         ide_floppy_put(floppy);
1089 }
1090
1091 static void idefloppy_cleanup_obj(struct kref *kref)
1092 {
1093         struct ide_floppy_obj *floppy = to_ide_floppy(kref);
1094         ide_drive_t *drive = floppy->drive;
1095         struct gendisk *g = floppy->disk;
1096
1097         drive->driver_data = NULL;
1098         g->private_data = NULL;
1099         put_disk(g);
1100         kfree(floppy);
1101 }
1102
1103 #ifdef CONFIG_IDE_PROC_FS
1104 static int proc_idefloppy_read_capacity(char *page, char **start, off_t off,
1105                 int count, int *eof, void *data)
1106 {
1107         ide_drive_t*drive = (ide_drive_t *)data;
1108         int len;
1109
1110         len = sprintf(page, "%llu\n", (long long)idefloppy_capacity(drive));
1111         PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1112 }
1113
1114 static ide_proc_entry_t idefloppy_proc[] = {
1115         { "capacity",   S_IFREG|S_IRUGO, proc_idefloppy_read_capacity,  NULL },
1116         { "geometry",   S_IFREG|S_IRUGO, proc_ide_read_geometry,        NULL },
1117         { NULL, 0, NULL, NULL }
1118 };
1119 #endif  /* CONFIG_IDE_PROC_FS */
1120
1121 static int ide_floppy_probe(ide_drive_t *);
1122
1123 static ide_driver_t idefloppy_driver = {
1124         .gen_driver = {
1125                 .owner          = THIS_MODULE,
1126                 .name           = "ide-floppy",
1127                 .bus            = &ide_bus_type,
1128         },
1129         .probe                  = ide_floppy_probe,
1130         .remove                 = ide_floppy_remove,
1131         .version                = IDEFLOPPY_VERSION,
1132         .media                  = ide_floppy,
1133         .supports_dsc_overlap   = 0,
1134         .do_request             = idefloppy_do_request,
1135         .end_request            = idefloppy_end_request,
1136         .error                  = __ide_error,
1137 #ifdef CONFIG_IDE_PROC_FS
1138         .proc                   = idefloppy_proc,
1139 #endif
1140 };
1141
1142 static int idefloppy_open(struct inode *inode, struct file *filp)
1143 {
1144         struct gendisk *disk = inode->i_bdev->bd_disk;
1145         struct ide_floppy_obj *floppy;
1146         ide_drive_t *drive;
1147         struct ide_atapi_pc pc;
1148         int ret = 0;
1149
1150         debug_log("Reached %s\n", __func__);
1151
1152         floppy = ide_floppy_get(disk);
1153         if (!floppy)
1154                 return -ENXIO;
1155
1156         drive = floppy->drive;
1157
1158         floppy->openers++;
1159
1160         if (floppy->openers == 1) {
1161                 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
1162                 /* Just in case */
1163
1164                 idefloppy_init_pc(&pc);
1165                 pc.c[0] = GPCMD_TEST_UNIT_READY;
1166
1167                 if (idefloppy_queue_pc_tail(drive, &pc)) {
1168                         idefloppy_create_start_stop_cmd(&pc, 1);
1169                         (void) idefloppy_queue_pc_tail(drive, &pc);
1170                 }
1171
1172                 if (ide_floppy_get_capacity(drive)
1173                    && (filp->f_flags & O_NDELAY) == 0
1174                     /*
1175                      * Allow O_NDELAY to open a drive without a disk, or with an
1176                      * unreadable disk, so that we can get the format capacity
1177                      * of the drive or begin the format - Sam
1178                      */
1179                     ) {
1180                         ret = -EIO;
1181                         goto out_put_floppy;
1182                 }
1183
1184                 if (floppy->wp && (filp->f_mode & 2)) {
1185                         ret = -EROFS;
1186                         goto out_put_floppy;
1187                 }
1188                 floppy->flags |= IDEFLOPPY_FLAG_MEDIA_CHANGED;
1189                 /* IOMEGA Clik! drives do not support lock/unlock commands */
1190                 if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE)) {
1191                         idefloppy_create_prevent_cmd(&pc, 1);
1192                         (void) idefloppy_queue_pc_tail(drive, &pc);
1193                 }
1194                 check_disk_change(inode->i_bdev);
1195         } else if (floppy->flags & IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS) {
1196                 ret = -EBUSY;
1197                 goto out_put_floppy;
1198         }
1199         return 0;
1200
1201 out_put_floppy:
1202         floppy->openers--;
1203         ide_floppy_put(floppy);
1204         return ret;
1205 }
1206
1207 static int idefloppy_release(struct inode *inode, struct file *filp)
1208 {
1209         struct gendisk *disk = inode->i_bdev->bd_disk;
1210         struct ide_floppy_obj *floppy = ide_floppy_g(disk);
1211         ide_drive_t *drive = floppy->drive;
1212         struct ide_atapi_pc pc;
1213
1214         debug_log("Reached %s\n", __func__);
1215
1216         if (floppy->openers == 1) {
1217                 /* IOMEGA Clik! drives do not support lock/unlock commands */
1218                 if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE)) {
1219                         idefloppy_create_prevent_cmd(&pc, 0);
1220                         (void) idefloppy_queue_pc_tail(drive, &pc);
1221                 }
1222
1223                 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
1224         }
1225
1226         floppy->openers--;
1227
1228         ide_floppy_put(floppy);
1229
1230         return 0;
1231 }
1232
1233 static int idefloppy_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1234 {
1235         struct ide_floppy_obj *floppy = ide_floppy_g(bdev->bd_disk);
1236         ide_drive_t *drive = floppy->drive;
1237
1238         geo->heads = drive->bios_head;
1239         geo->sectors = drive->bios_sect;
1240         geo->cylinders = (u16)drive->bios_cyl; /* truncate */
1241         return 0;
1242 }
1243
1244 static int ide_floppy_lockdoor(idefloppy_floppy_t *floppy,
1245                 struct ide_atapi_pc *pc, unsigned long arg, unsigned int cmd)
1246 {
1247         if (floppy->openers > 1)
1248                 return -EBUSY;
1249
1250         /* The IOMEGA Clik! Drive doesn't support this command -
1251          * no room for an eject mechanism */
1252         if (!(floppy->flags & IDEFLOPPY_FLAG_CLIK_DRIVE)) {
1253                 int prevent = arg ? 1 : 0;
1254
1255                 if (cmd == CDROMEJECT)
1256                         prevent = 0;
1257
1258                 idefloppy_create_prevent_cmd(pc, prevent);
1259                 (void) idefloppy_queue_pc_tail(floppy->drive, pc);
1260         }
1261
1262         if (cmd == CDROMEJECT) {
1263                 idefloppy_create_start_stop_cmd(pc, 2);
1264                 (void) idefloppy_queue_pc_tail(floppy->drive, pc);
1265         }
1266
1267         return 0;
1268 }
1269
1270 static int ide_floppy_format_unit(idefloppy_floppy_t *floppy,
1271                                   int __user *arg)
1272 {
1273         int blocks, length, flags, err = 0;
1274         struct ide_atapi_pc pc;
1275
1276         if (floppy->openers > 1) {
1277                 /* Don't format if someone is using the disk */
1278                 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
1279                 return -EBUSY;
1280         }
1281
1282         floppy->flags |= IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
1283
1284         /*
1285          * Send ATAPI_FORMAT_UNIT to the drive.
1286          *
1287          * Userland gives us the following structure:
1288          *
1289          * struct idefloppy_format_command {
1290          *        int nblocks;
1291          *        int blocksize;
1292          *        int flags;
1293          *        } ;
1294          *
1295          * flags is a bitmask, currently, the only defined flag is:
1296          *
1297          *        0x01 - verify media after format.
1298          */
1299         if (get_user(blocks, arg) ||
1300                         get_user(length, arg+1) ||
1301                         get_user(flags, arg+2)) {
1302                 err = -EFAULT;
1303                 goto out;
1304         }
1305
1306         (void) idefloppy_get_sfrp_bit(floppy->drive);
1307         idefloppy_create_format_unit_cmd(&pc, blocks, length, flags);
1308
1309         if (idefloppy_queue_pc_tail(floppy->drive, &pc))
1310                 err = -EIO;
1311
1312 out:
1313         if (err)
1314                 floppy->flags &= ~IDEFLOPPY_FLAG_FORMAT_IN_PROGRESS;
1315         return err;
1316 }
1317
1318
1319 static int idefloppy_ioctl(struct inode *inode, struct file *file,
1320                         unsigned int cmd, unsigned long arg)
1321 {
1322         struct block_device *bdev = inode->i_bdev;
1323         struct ide_floppy_obj *floppy = ide_floppy_g(bdev->bd_disk);
1324         ide_drive_t *drive = floppy->drive;
1325         struct ide_atapi_pc pc;
1326         void __user *argp = (void __user *)arg;
1327         int err;
1328
1329         switch (cmd) {
1330         case CDROMEJECT:
1331                 /* fall through */
1332         case CDROM_LOCKDOOR:
1333                 return ide_floppy_lockdoor(floppy, &pc, arg, cmd);
1334         case IDEFLOPPY_IOCTL_FORMAT_SUPPORTED:
1335                 return 0;
1336         case IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY:
1337                 return ide_floppy_get_format_capacities(drive, argp);
1338         case IDEFLOPPY_IOCTL_FORMAT_START:
1339                 if (!(file->f_mode & 2))
1340                         return -EPERM;
1341
1342                 return ide_floppy_format_unit(floppy, (int __user *)arg);
1343         case IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS:
1344                 return idefloppy_get_format_progress(drive, argp);
1345         }
1346
1347         /*
1348          * skip SCSI_IOCTL_SEND_COMMAND (deprecated)
1349          * and CDROM_SEND_PACKET (legacy) ioctls
1350          */
1351         if (cmd != CDROM_SEND_PACKET && cmd != SCSI_IOCTL_SEND_COMMAND)
1352                 err = scsi_cmd_ioctl(file, bdev->bd_disk->queue,
1353                                         bdev->bd_disk, cmd, argp);
1354         else
1355                 err = -ENOTTY;
1356
1357         if (err == -ENOTTY)
1358                 err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
1359
1360         return err;
1361 }
1362
1363 static int idefloppy_media_changed(struct gendisk *disk)
1364 {
1365         struct ide_floppy_obj *floppy = ide_floppy_g(disk);
1366         ide_drive_t *drive = floppy->drive;
1367         int ret;
1368
1369         /* do not scan partitions twice if this is a removable device */
1370         if (drive->attach) {
1371                 drive->attach = 0;
1372                 return 0;
1373         }
1374         ret = !!(floppy->flags & IDEFLOPPY_FLAG_MEDIA_CHANGED);
1375         floppy->flags &= ~IDEFLOPPY_FLAG_MEDIA_CHANGED;
1376         return ret;
1377 }
1378
1379 static int idefloppy_revalidate_disk(struct gendisk *disk)
1380 {
1381         struct ide_floppy_obj *floppy = ide_floppy_g(disk);
1382         set_capacity(disk, idefloppy_capacity(floppy->drive));
1383         return 0;
1384 }
1385
1386 static struct block_device_operations idefloppy_ops = {
1387         .owner                  = THIS_MODULE,
1388         .open                   = idefloppy_open,
1389         .release                = idefloppy_release,
1390         .ioctl                  = idefloppy_ioctl,
1391         .getgeo                 = idefloppy_getgeo,
1392         .media_changed          = idefloppy_media_changed,
1393         .revalidate_disk        = idefloppy_revalidate_disk
1394 };
1395
1396 static int ide_floppy_probe(ide_drive_t *drive)
1397 {
1398         idefloppy_floppy_t *floppy;
1399         struct gendisk *g;
1400
1401         if (!strstr("ide-floppy", drive->driver_req))
1402                 goto failed;
1403         if (!drive->present)
1404                 goto failed;
1405         if (drive->media != ide_floppy)
1406                 goto failed;
1407         if (!idefloppy_identify_device(drive, drive->id)) {
1408                 printk(KERN_ERR "ide-floppy: %s: not supported by this version"
1409                                 " of ide-floppy\n", drive->name);
1410                 goto failed;
1411         }
1412         floppy = kzalloc(sizeof(idefloppy_floppy_t), GFP_KERNEL);
1413         if (!floppy) {
1414                 printk(KERN_ERR "ide-floppy: %s: Can't allocate a floppy"
1415                                 " structure\n", drive->name);
1416                 goto failed;
1417         }
1418
1419         g = alloc_disk(1 << PARTN_BITS);
1420         if (!g)
1421                 goto out_free_floppy;
1422
1423         ide_init_disk(g, drive);
1424
1425         ide_proc_register_driver(drive, &idefloppy_driver);
1426
1427         kref_init(&floppy->kref);
1428
1429         floppy->drive = drive;
1430         floppy->driver = &idefloppy_driver;
1431         floppy->disk = g;
1432
1433         g->private_data = &floppy->driver;
1434
1435         drive->driver_data = floppy;
1436
1437         idefloppy_setup(drive, floppy);
1438
1439         g->minors = 1 << PARTN_BITS;
1440         g->driverfs_dev = &drive->gendev;
1441         g->flags = drive->removable ? GENHD_FL_REMOVABLE : 0;
1442         g->fops = &idefloppy_ops;
1443         drive->attach = 1;
1444         add_disk(g);
1445         return 0;
1446
1447 out_free_floppy:
1448         kfree(floppy);
1449 failed:
1450         return -ENODEV;
1451 }
1452
1453 static void __exit idefloppy_exit(void)
1454 {
1455         driver_unregister(&idefloppy_driver.gen_driver);
1456 }
1457
1458 static int __init idefloppy_init(void)
1459 {
1460         printk("ide-floppy driver " IDEFLOPPY_VERSION "\n");
1461         return driver_register(&idefloppy_driver.gen_driver);
1462 }
1463
1464 MODULE_ALIAS("ide:*m-floppy*");
1465 module_init(idefloppy_init);
1466 module_exit(idefloppy_exit);
1467 MODULE_LICENSE("GPL");
1468 MODULE_DESCRIPTION("ATAPI FLOPPY Driver");
1469