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