Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Borislav Petkov | d3f2084 | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 2 | * IDE ATAPI floppy driver. |
| 3 | * |
Bartlomiej Zolnierkiewicz | 59bca8c | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 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 |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Borislav Petkov | d3f2084 | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 14 | * For a historical changelog see |
| 15 | * Documentation/ide/ChangeLog.ide-floppy.1996-2002 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | */ |
| 17 | |
Bartlomiej Zolnierkiewicz | 51509ee | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 18 | #define DRV_NAME "ide-floppy" |
| 19 | |
Borislav Petkov | fc6c5bc | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 20 | #define IDEFLOPPY_VERSION "1.00" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/types.h> |
| 24 | #include <linux/string.h> |
| 25 | #include <linux/kernel.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/timer.h> |
| 28 | #include <linux/mm.h> |
| 29 | #include <linux/interrupt.h> |
| 30 | #include <linux/major.h> |
| 31 | #include <linux/errno.h> |
| 32 | #include <linux/genhd.h> |
| 33 | #include <linux/slab.h> |
| 34 | #include <linux/cdrom.h> |
| 35 | #include <linux/ide.h> |
Bartlomiej Zolnierkiewicz | 3ceca72 | 2008-10-10 22:39:27 +0200 | [diff] [blame] | 36 | #include <linux/hdreg.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/bitops.h> |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 38 | #include <linux/mutex.h> |
Borislav Petkov | b98b340 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 39 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Bartlomiej Zolnierkiewicz | 89636af | 2007-07-20 01:11:59 +0200 | [diff] [blame] | 41 | #include <scsi/scsi_ioctl.h> |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/byteorder.h> |
Borislav Petkov | 7e8b163 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 44 | #include <linux/irq.h> |
| 45 | #include <linux/uaccess.h> |
| 46 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <asm/unaligned.h> |
| 48 | |
Borislav Petkov | f373bd8 | 2008-02-02 19:56:36 +0100 | [diff] [blame] | 49 | /* define to see debug info */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #define IDEFLOPPY_DEBUG_LOG 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /* #define IDEFLOPPY_DEBUG(fmt, args...) printk(KERN_INFO fmt, ## args) */ |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 53 | #define IDEFLOPPY_DEBUG(fmt, args...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | #if IDEFLOPPY_DEBUG_LOG |
Borislav Petkov | bcc77d9 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 56 | #define debug_log(fmt, args...) \ |
| 57 | printk(KERN_INFO "ide-floppy: " fmt, ## args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #else |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 59 | #define debug_log(fmt, args...) do {} while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #endif |
| 61 | |
| 62 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 63 | /* Some drives require a longer irq timeout. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #define IDEFLOPPY_WAIT_CMD (5 * WAIT_CMD) |
| 65 | |
| 66 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 67 | * After each failed packet command we issue a request sense command and retry |
| 68 | * the packet command IDEFLOPPY_MAX_PC_RETRIES times. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | */ |
| 70 | #define IDEFLOPPY_MAX_PC_RETRIES 3 |
| 71 | |
| 72 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 73 | * With each packet command, we allocate a buffer of IDEFLOPPY_PC_BUFFER_SIZE |
| 74 | * bytes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | */ |
| 76 | #define IDEFLOPPY_PC_BUFFER_SIZE 256 |
| 77 | |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 78 | /* format capacities descriptor codes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #define CAPACITY_INVALID 0x00 |
| 80 | #define CAPACITY_UNFORMATTED 0x01 |
| 81 | #define CAPACITY_CURRENT 0x02 |
| 82 | #define CAPACITY_NO_CARTRIDGE 0x03 |
| 83 | |
| 84 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 85 | * Most of our global data which we need to save even as we leave the driver |
| 86 | * due to an interrupt or a timer event is stored in a variable of type |
| 87 | * idefloppy_floppy_t, defined below. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | */ |
| 89 | typedef struct ide_floppy_obj { |
| 90 | ide_drive_t *drive; |
| 91 | ide_driver_t *driver; |
| 92 | struct gendisk *disk; |
| 93 | struct kref kref; |
Bartlomiej Zolnierkiewicz | c94964a | 2007-02-17 02:40:24 +0100 | [diff] [blame] | 94 | unsigned int openers; /* protected by BKL for now */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | /* Current packet command */ |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 97 | struct ide_atapi_pc *pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | /* Last failed packet command */ |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 99 | struct ide_atapi_pc *failed_pc; |
Bartlomiej Zolnierkiewicz | 2e8a6f8 | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 100 | /* used for blk_{fs,pc}_request() requests */ |
| 101 | struct ide_atapi_pc queued_pc; |
Bartlomiej Zolnierkiewicz | 394a4c2 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 102 | |
Bartlomiej Zolnierkiewicz | 2e8a6f8 | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 103 | struct ide_atapi_pc request_sense_pc; |
Bartlomiej Zolnierkiewicz | 394a4c2 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 104 | struct request request_sense_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 106 | /* Last error information */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | u8 sense_key, asc, ascq; |
| 108 | /* delay this long before sending packet command */ |
| 109 | u8 ticks; |
| 110 | int progress_indication; |
| 111 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 112 | /* Device information */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | /* Current format */ |
| 114 | int blocks, block_size, bs_factor; |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 115 | /* Last format capacity descriptor */ |
| 116 | u8 cap_desc[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | /* Copy of the flexible disk page */ |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 118 | u8 flexible_disk_page[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /* Write protect */ |
| 120 | int wp; |
| 121 | /* Supports format progress report */ |
| 122 | int srfp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | } idefloppy_floppy_t; |
| 124 | |
Bartlomiej Zolnierkiewicz | c40d3d3 | 2005-08-18 22:09:21 +0200 | [diff] [blame] | 125 | #define IDEFLOPPY_TICKS_DELAY HZ/20 /* default delay for ZIP 100 (50ms) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 127 | /* IOCTLs used in low-level formatting. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | #define IDEFLOPPY_IOCTL_FORMAT_SUPPORTED 0x4600 |
| 129 | #define IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY 0x4601 |
| 130 | #define IDEFLOPPY_IOCTL_FORMAT_START 0x4602 |
| 131 | #define IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS 0x4603 |
| 132 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 133 | /* Error code returned in rq->errors to the higher part of the driver. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | #define IDEFLOPPY_ERROR_GENERAL 101 |
| 135 | |
| 136 | /* |
Borislav Petkov | 948391d | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 137 | * Pages of the SELECT SENSE / MODE SENSE packet commands. |
| 138 | * See SFF-8070i spec. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | */ |
| 140 | #define IDEFLOPPY_CAPABILITIES_PAGE 0x1b |
| 141 | #define IDEFLOPPY_FLEXIBLE_DISK_PAGE 0x05 |
| 142 | |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 143 | static DEFINE_MUTEX(idefloppy_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | #define to_ide_floppy(obj) container_of(obj, struct ide_floppy_obj, kref) |
| 146 | |
| 147 | #define ide_floppy_g(disk) \ |
| 148 | container_of((disk)->private_data, struct ide_floppy_obj, driver) |
| 149 | |
Bartlomiej Zolnierkiewicz | 08da591 | 2008-07-24 22:53:15 +0200 | [diff] [blame] | 150 | static void idefloppy_cleanup_obj(struct kref *); |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | static struct ide_floppy_obj *ide_floppy_get(struct gendisk *disk) |
| 153 | { |
| 154 | struct ide_floppy_obj *floppy = NULL; |
| 155 | |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 156 | mutex_lock(&idefloppy_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | floppy = ide_floppy_g(disk); |
Bartlomiej Zolnierkiewicz | 08da591 | 2008-07-24 22:53:15 +0200 | [diff] [blame] | 158 | if (floppy) { |
Bartlomiej Zolnierkiewicz | d3e33ff | 2008-08-05 18:16:59 +0200 | [diff] [blame] | 159 | if (ide_device_get(floppy->drive)) |
Bartlomiej Zolnierkiewicz | 08da591 | 2008-07-24 22:53:15 +0200 | [diff] [blame] | 160 | floppy = NULL; |
Bartlomiej Zolnierkiewicz | d3e33ff | 2008-08-05 18:16:59 +0200 | [diff] [blame] | 161 | else |
| 162 | kref_get(&floppy->kref); |
Bartlomiej Zolnierkiewicz | 08da591 | 2008-07-24 22:53:15 +0200 | [diff] [blame] | 163 | } |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 164 | mutex_unlock(&idefloppy_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | return floppy; |
| 166 | } |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | static void ide_floppy_put(struct ide_floppy_obj *floppy) |
| 169 | { |
Bartlomiej Zolnierkiewicz | d3e33ff | 2008-08-05 18:16:59 +0200 | [diff] [blame] | 170 | ide_drive_t *drive = floppy->drive; |
| 171 | |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 172 | mutex_lock(&idefloppy_ref_mutex); |
Borislav Petkov | 9a24b63 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 173 | kref_put(&floppy->kref, idefloppy_cleanup_obj); |
Bartlomiej Zolnierkiewicz | d3e33ff | 2008-08-05 18:16:59 +0200 | [diff] [blame] | 174 | ide_device_put(drive); |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 175 | mutex_unlock(&idefloppy_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 179 | * Used to finish servicing a request. For read/write requests, we will call |
| 180 | * ide_end_request to pass to the next buffer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | */ |
Borislav Petkov | c2b2b29 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 182 | static int idefloppy_end_request(ide_drive_t *drive, int uptodate, int nsecs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
| 184 | idefloppy_floppy_t *floppy = drive->driver_data; |
| 185 | struct request *rq = HWGROUP(drive)->rq; |
| 186 | int error; |
| 187 | |
Borislav Petkov | bcc77d9 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 188 | debug_log("Reached %s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | switch (uptodate) { |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 191 | case 0: error = IDEFLOPPY_ERROR_GENERAL; break; |
| 192 | case 1: error = 0; break; |
| 193 | default: error = uptodate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | if (error) |
| 196 | floppy->failed_pc = NULL; |
| 197 | /* Why does this happen? */ |
| 198 | if (!rq) |
| 199 | return 0; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 200 | if (!blk_special_request(rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /* our real local end request function */ |
| 202 | ide_end_request(drive, uptodate, nsecs); |
| 203 | return 0; |
| 204 | } |
| 205 | rq->errors = error; |
| 206 | /* fixme: need to move this local also */ |
| 207 | ide_end_drive_cmd(drive, 0, 0); |
| 208 | return 0; |
| 209 | } |
| 210 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 211 | static void idefloppy_update_buffers(ide_drive_t *drive, |
| 212 | struct ide_atapi_pc *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
| 214 | struct request *rq = pc->rq; |
| 215 | struct bio *bio = rq->bio; |
| 216 | |
| 217 | while ((bio = rq->bio) != NULL) |
Borislav Petkov | c2b2b29 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 218 | idefloppy_end_request(drive, 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 222 | * Generate a new packet command request in front of the request queue, before |
| 223 | * the current request so that it will be processed immediately, on the next |
| 224 | * pass through the driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | */ |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 226 | static void idefloppy_queue_pc_head(ide_drive_t *drive, struct ide_atapi_pc *pc, |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 227 | struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
| 229 | struct ide_floppy_obj *floppy = drive->driver_data; |
| 230 | |
FUJITA Tomonori | 124cafc | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 231 | blk_rq_init(NULL, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | rq->buffer = (char *) pc; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 233 | rq->cmd_type = REQ_TYPE_SPECIAL; |
Bartlomiej Zolnierkiewicz | e8a96aa | 2008-07-15 21:21:41 +0200 | [diff] [blame] | 234 | rq->cmd_flags |= REQ_PREEMPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | rq->rq_disk = floppy->disk; |
Borislav Petkov | 20cd93be67 | 2008-07-23 19:56:00 +0200 | [diff] [blame] | 236 | memcpy(rq->cmd, pc->c, 12); |
FUJITA Tomonori | 63f5abb | 2008-07-15 21:21:51 +0200 | [diff] [blame] | 237 | ide_do_drive_cmd(drive, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Borislav Petkov | 81f4938 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 240 | static void ide_floppy_callback(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | { |
| 242 | idefloppy_floppy_t *floppy = drive->driver_data; |
Borislav Petkov | 81f4938 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 243 | struct ide_atapi_pc *pc = floppy->pc; |
| 244 | int uptodate = pc->error ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Borislav Petkov | bcc77d9 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 246 | debug_log("Reached %s\n", __func__); |
| 247 | |
Bartlomiej Zolnierkiewicz | dd2e9a0 | 2008-07-15 21:22:01 +0200 | [diff] [blame] | 248 | if (floppy->failed_pc == pc) |
| 249 | floppy->failed_pc = NULL; |
| 250 | |
Borislav Petkov | 81f4938 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 251 | if (pc->c[0] == GPCMD_READ_10 || pc->c[0] == GPCMD_WRITE_10 || |
| 252 | (pc->rq && blk_pc_request(pc->rq))) |
| 253 | uptodate = 1; /* FIXME */ |
| 254 | else if (pc->c[0] == GPCMD_REQUEST_SENSE) { |
| 255 | u8 *buf = floppy->pc->buf; |
Borislav Petkov | a6ff2d3 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 256 | |
Borislav Petkov | 81f4938 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 257 | if (!pc->error) { |
| 258 | floppy->sense_key = buf[2] & 0x0F; |
| 259 | floppy->asc = buf[12]; |
| 260 | floppy->ascq = buf[13]; |
| 261 | floppy->progress_indication = buf[15] & 0x80 ? |
| 262 | (u16)get_unaligned((u16 *)&buf[16]) : 0x10000; |
| 263 | |
| 264 | if (floppy->failed_pc) |
| 265 | debug_log("pc = %x, ", floppy->failed_pc->c[0]); |
| 266 | |
Borislav Petkov | a6ff2d3 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 267 | debug_log("sense key = %x, asc = %x, ascq = %x\n", |
Borislav Petkov | 81f4938 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 268 | floppy->sense_key, floppy->asc, floppy->ascq); |
| 269 | } else |
| 270 | printk(KERN_ERR "Error in REQUEST SENSE itself - " |
| 271 | "Aborting request!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Borislav Petkov | 81f4938 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 274 | idefloppy_end_request(drive, uptodate, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | } |
| 276 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 277 | static void idefloppy_init_pc(struct ide_atapi_pc *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { |
Borislav Petkov | 68dc357 | 2008-07-16 20:33:47 +0200 | [diff] [blame] | 279 | memset(pc, 0, sizeof(*pc)); |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 280 | pc->buf = pc->pc_buf; |
| 281 | pc->buf_size = IDEFLOPPY_PC_BUFFER_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 284 | static void idefloppy_create_request_sense_cmd(struct ide_atapi_pc *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | { |
Borislav Petkov | 30d6709 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 286 | idefloppy_init_pc(pc); |
| 287 | pc->c[0] = GPCMD_REQUEST_SENSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | pc->c[4] = 255; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 289 | pc->req_xfer = 18; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 293 | * Called when an error was detected during the last packet command. We queue a |
| 294 | * request sense packet command in the head of the request list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | */ |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 296 | static void idefloppy_retry_pc(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | { |
Bartlomiej Zolnierkiewicz | 394a4c2 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 298 | struct ide_floppy_obj *floppy = drive->driver_data; |
| 299 | struct request *rq = &floppy->request_sense_rq; |
Bartlomiej Zolnierkiewicz | 2e8a6f8 | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 300 | struct ide_atapi_pc *pc = &floppy->request_sense_pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Bartlomiej Zolnierkiewicz | 64a57fe | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 302 | (void)ide_read_error(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | idefloppy_create_request_sense_cmd(pc); |
| 304 | idefloppy_queue_pc_head(drive, pc, rq); |
| 305 | } |
| 306 | |
Borislav Petkov | 0eea645 | 2008-02-02 19:56:36 +0100 | [diff] [blame] | 307 | /* The usual interrupt handler called during a packet command. */ |
Paolo Ciarrocchi | 52d3ccf | 2008-04-26 17:36:41 +0200 | [diff] [blame] | 308 | static ide_startstop_t idefloppy_pc_intr(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | { |
| 310 | idefloppy_floppy_t *floppy = drive->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
Bartlomiej Zolnierkiewicz | 646c0cb | 2008-07-15 21:22:03 +0200 | [diff] [blame] | 312 | return ide_pc_intr(drive, floppy->pc, idefloppy_pc_intr, |
| 313 | IDEFLOPPY_WAIT_CMD, NULL, idefloppy_update_buffers, |
Bartlomiej Zolnierkiewicz | acaa0f5 | 2008-10-10 22:39:36 +0200 | [diff] [blame^] | 314 | idefloppy_retry_pc, NULL, ide_io_buffers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 318 | * What we have here is a classic case of a top half / bottom half interrupt |
| 319 | * service routine. In interrupt mode, the device sends an interrupt to signal |
| 320 | * that it is ready to receive a packet. However, we need to delay about 2-3 |
| 321 | * ticks before issuing the packet or we gets in trouble. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | */ |
Borislav Petkov | cbbc4e8 | 2008-07-15 21:22:03 +0200 | [diff] [blame] | 323 | static int idefloppy_transfer_pc(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | { |
| 325 | idefloppy_floppy_t *floppy = drive->driver_data; |
| 326 | |
| 327 | /* Send the actual packet */ |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 328 | drive->hwif->tp_ops->output_data(drive, NULL, floppy->pc->c, 12); |
Bartlomiej Zolnierkiewicz | 9567b34 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | /* Timeout for the packet command */ |
| 331 | return IDEFLOPPY_WAIT_CMD; |
| 332 | } |
| 333 | |
Borislav Petkov | cbbc4e8 | 2008-07-15 21:22:03 +0200 | [diff] [blame] | 334 | |
| 335 | /* |
| 336 | * Called as an interrupt (or directly). When the device says it's ready for a |
| 337 | * packet, we schedule the packet transfer to occur about 2-3 ticks later in |
| 338 | * transfer_pc. |
| 339 | */ |
| 340 | static ide_startstop_t idefloppy_start_pc_transfer(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | { |
| 342 | idefloppy_floppy_t *floppy = drive->driver_data; |
Bartlomiej Zolnierkiewicz | 6ffb6641 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 343 | struct ide_atapi_pc *pc = floppy->pc; |
Bartlomiej Zolnierkiewicz | 0b2eea4 | 2008-07-15 21:21:54 +0200 | [diff] [blame] | 344 | ide_expiry_t *expiry; |
| 345 | unsigned int timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 347 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | * The following delay solves a problem with ATAPI Zip 100 drives |
| 349 | * where the Busy flag was apparently being deasserted before the |
| 350 | * unit was ready to receive data. This was happening on a |
| 351 | * 1200 MHz Athlon system. 10/26/01 25msec is too short, |
| 352 | * 40 and 50msec work well. idefloppy_pc_intr will not be actually |
| 353 | * used until after the packet is moved in about 50 msec. |
| 354 | */ |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 355 | if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) { |
Bartlomiej Zolnierkiewicz | 0b2eea4 | 2008-07-15 21:21:54 +0200 | [diff] [blame] | 356 | timeout = floppy->ticks; |
Borislav Petkov | cbbc4e8 | 2008-07-15 21:22:03 +0200 | [diff] [blame] | 357 | expiry = &idefloppy_transfer_pc; |
Bartlomiej Zolnierkiewicz | 0b2eea4 | 2008-07-15 21:21:54 +0200 | [diff] [blame] | 358 | } else { |
| 359 | timeout = IDEFLOPPY_WAIT_CMD; |
| 360 | expiry = NULL; |
| 361 | } |
Borislav Petkov | 0078df2 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 362 | |
Bartlomiej Zolnierkiewicz | 594c16d | 2008-07-15 21:21:58 +0200 | [diff] [blame] | 363 | return ide_transfer_pc(drive, pc, idefloppy_pc_intr, timeout, expiry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Borislav Petkov | d652c13 | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 366 | static void ide_floppy_report_error(idefloppy_floppy_t *floppy, |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 367 | struct ide_atapi_pc *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | { |
Borislav Petkov | d652c13 | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 369 | /* supress error messages resulting from Medium not present */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | if (floppy->sense_key == 0x02 && |
| 371 | floppy->asc == 0x3a && |
| 372 | floppy->ascq == 0x00) |
Borislav Petkov | d652c13 | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 373 | return; |
| 374 | |
| 375 | printk(KERN_ERR "ide-floppy: %s: I/O error, pc = %2x, key = %2x, " |
| 376 | "asc = %2x, ascq = %2x\n", |
| 377 | floppy->drive->name, pc->c[0], floppy->sense_key, |
| 378 | floppy->asc, floppy->ascq); |
| 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 382 | static ide_startstop_t idefloppy_issue_pc(ide_drive_t *drive, |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 383 | struct ide_atapi_pc *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | { |
| 385 | idefloppy_floppy_t *floppy = drive->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | if (floppy->failed_pc == NULL && |
Borislav Petkov | 30d6709 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 388 | pc->c[0] != GPCMD_REQUEST_SENSE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | floppy->failed_pc = pc; |
| 390 | /* Set the current packet command */ |
| 391 | floppy->pc = pc; |
| 392 | |
Borislav Petkov | 757ced8 | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 393 | if (pc->retries > IDEFLOPPY_MAX_PC_RETRIES) { |
Borislav Petkov | 6e5fa7b | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 394 | if (!(pc->flags & PC_FLAG_SUPPRESS_ERROR)) |
Borislav Petkov | 757ced8 | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 395 | ide_floppy_report_error(floppy, pc); |
| 396 | /* Giving up */ |
| 397 | pc->error = IDEFLOPPY_ERROR_GENERAL; |
| 398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | floppy->failed_pc = NULL; |
Borislav Petkov | 2207fa5 | 2008-07-23 19:55:59 +0200 | [diff] [blame] | 400 | drive->pc_callback(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | return ide_stopped; |
| 402 | } |
| 403 | |
Borislav Petkov | bcc77d9 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 404 | debug_log("Retry number - %d\n", pc->retries); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
| 406 | pc->retries++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
Borislav Petkov | cbbc4e8 | 2008-07-15 21:22:03 +0200 | [diff] [blame] | 408 | return ide_issue_pc(drive, pc, idefloppy_start_pc_transfer, |
Bartlomiej Zolnierkiewicz | 6bf1641 | 2008-07-15 21:22:00 +0200 | [diff] [blame] | 409 | IDEFLOPPY_WAIT_CMD, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | } |
| 411 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 412 | static void idefloppy_create_prevent_cmd(struct ide_atapi_pc *pc, int prevent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | { |
Borislav Petkov | bcc77d9 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 414 | debug_log("creating prevent removal command, prevent = %d\n", prevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
| 416 | idefloppy_init_pc(pc); |
Borislav Petkov | 30d6709 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 417 | pc->c[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | pc->c[4] = prevent; |
| 419 | } |
| 420 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 421 | static void idefloppy_create_read_capacity_cmd(struct ide_atapi_pc *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { |
| 423 | idefloppy_init_pc(pc); |
Borislav Petkov | 30d6709 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 424 | pc->c[0] = GPCMD_READ_FORMAT_CAPACITIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | pc->c[7] = 255; |
| 426 | pc->c[8] = 255; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 427 | pc->req_xfer = 255; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | } |
| 429 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 430 | static void idefloppy_create_format_unit_cmd(struct ide_atapi_pc *pc, int b, |
| 431 | int l, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | { |
| 433 | idefloppy_init_pc(pc); |
Borislav Petkov | 30d6709 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 434 | pc->c[0] = GPCMD_FORMAT_UNIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | pc->c[1] = 0x17; |
| 436 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 437 | memset(pc->buf, 0, 12); |
| 438 | pc->buf[1] = 0xA2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | /* Default format list header, u8 1: FOV/DCRT/IMM bits set */ |
| 440 | |
| 441 | if (flags & 1) /* Verify bit on... */ |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 442 | pc->buf[1] ^= 0x20; /* ... turn off DCRT bit */ |
| 443 | pc->buf[3] = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 445 | put_unaligned(cpu_to_be32(b), (unsigned int *)(&pc->buf[4])); |
| 446 | put_unaligned(cpu_to_be32(l), (unsigned int *)(&pc->buf[8])); |
| 447 | pc->buf_size = 12; |
Borislav Petkov | 6e5fa7b | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 448 | pc->flags |= PC_FLAG_WRITING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 451 | /* A mode sense command is used to "sense" floppy parameters. */ |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 452 | static void idefloppy_create_mode_sense_cmd(struct ide_atapi_pc *pc, |
Bartlomiej Zolnierkiewicz | 4de4b9e | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 453 | u8 page_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | { |
Borislav Petkov | 24a5d70 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 455 | u16 length = 8; /* sizeof(Mode Parameter Header) = 8 Bytes */ |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 456 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | idefloppy_init_pc(pc); |
Borislav Petkov | 30d6709 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 458 | pc->c[0] = GPCMD_MODE_SENSE_10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | pc->c[1] = 0; |
Bartlomiej Zolnierkiewicz | 4de4b9e | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 460 | pc->c[2] = page_code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | switch (page_code) { |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 463 | case IDEFLOPPY_CAPABILITIES_PAGE: |
| 464 | length += 12; |
| 465 | break; |
| 466 | case IDEFLOPPY_FLEXIBLE_DISK_PAGE: |
| 467 | length += 32; |
| 468 | break; |
| 469 | default: |
| 470 | printk(KERN_ERR "ide-floppy: unsupported page code " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | "in create_mode_sense_cmd\n"); |
| 472 | } |
Borislav Petkov | 8f62243 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 473 | put_unaligned(cpu_to_be16(length), (u16 *) &pc->c[7]); |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 474 | pc->req_xfer = length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 477 | static void idefloppy_create_start_stop_cmd(struct ide_atapi_pc *pc, int start) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
| 479 | idefloppy_init_pc(pc); |
Borislav Petkov | 30d6709 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 480 | pc->c[0] = GPCMD_START_STOP_UNIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | pc->c[4] = start; |
| 482 | } |
| 483 | |
Borislav Petkov | ae7e8dd | 2008-02-02 19:56:36 +0100 | [diff] [blame] | 484 | static void idefloppy_create_rw_cmd(idefloppy_floppy_t *floppy, |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 485 | struct ide_atapi_pc *pc, struct request *rq, |
Borislav Petkov | ae7e8dd | 2008-02-02 19:56:36 +0100 | [diff] [blame] | 486 | unsigned long sector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | { |
| 488 | int block = sector / floppy->bs_factor; |
| 489 | int blocks = rq->nr_sectors / floppy->bs_factor; |
| 490 | int cmd = rq_data_dir(rq); |
| 491 | |
Borislav Petkov | ae7e8dd | 2008-02-02 19:56:36 +0100 | [diff] [blame] | 492 | debug_log("create_rw10_cmd: block == %d, blocks == %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | block, blocks); |
| 494 | |
| 495 | idefloppy_init_pc(pc); |
Borislav Petkov | ae7e8dd | 2008-02-02 19:56:36 +0100 | [diff] [blame] | 496 | pc->c[0] = cmd == READ ? GPCMD_READ_10 : GPCMD_WRITE_10; |
| 497 | put_unaligned(cpu_to_be16(blocks), (unsigned short *)&pc->c[7]); |
Borislav Petkov | 8f62243 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 498 | put_unaligned(cpu_to_be32(block), (unsigned int *) &pc->c[2]); |
Borislav Petkov | ae7e8dd | 2008-02-02 19:56:36 +0100 | [diff] [blame] | 499 | |
Borislav Petkov | 20cd93be67 | 2008-07-23 19:56:00 +0200 | [diff] [blame] | 500 | memcpy(rq->cmd, pc->c, 12); |
| 501 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | pc->rq = rq; |
Borislav Petkov | b98b340 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 503 | pc->b_count = 0; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 504 | if (rq->cmd_flags & REQ_RW) |
Borislav Petkov | 6e5fa7b | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 505 | pc->flags |= PC_FLAG_WRITING; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 506 | pc->buf = NULL; |
| 507 | pc->req_xfer = pc->buf_size = blocks * floppy->block_size; |
Bartlomiej Zolnierkiewicz | 5e33109 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 508 | pc->flags |= PC_FLAG_DMA_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } |
| 510 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 511 | static void idefloppy_blockpc_cmd(idefloppy_floppy_t *floppy, |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 512 | struct ide_atapi_pc *pc, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | idefloppy_init_pc(pc); |
| 515 | memcpy(pc->c, rq->cmd, sizeof(pc->c)); |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 516 | pc->rq = rq; |
Borislav Petkov | b98b340 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 517 | pc->b_count = 0; |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 518 | if (rq->data_len && rq_data_dir(rq) == WRITE) |
Borislav Petkov | 6e5fa7b | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 519 | pc->flags |= PC_FLAG_WRITING; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 520 | pc->buf = rq->data; |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 521 | if (rq->bio) |
Bartlomiej Zolnierkiewicz | 5e33109 | 2008-07-15 21:21:56 +0200 | [diff] [blame] | 522 | pc->flags |= PC_FLAG_DMA_OK; |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 523 | /* |
| 524 | * possibly problematic, doesn't look like ide-floppy correctly |
| 525 | * handled scattered requests if dma fails... |
| 526 | */ |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 527 | pc->req_xfer = pc->buf_size = rq->data_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 530 | static ide_startstop_t idefloppy_do_request(ide_drive_t *drive, |
| 531 | struct request *rq, sector_t block_s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | { |
| 533 | idefloppy_floppy_t *floppy = drive->driver_data; |
Borislav Petkov | b98b340 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 534 | ide_hwif_t *hwif = drive->hwif; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 535 | struct ide_atapi_pc *pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | unsigned long block = (unsigned long)block_s; |
| 537 | |
Borislav Petkov | b98b340 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 538 | debug_log("%s: dev: %s, cmd: 0x%x, cmd_type: %x, errors: %d\n", |
| 539 | __func__, rq->rq_disk ? rq->rq_disk->disk_name : "?", |
| 540 | rq->cmd[0], rq->cmd_type, rq->errors); |
| 541 | |
| 542 | debug_log("%s: sector: %ld, nr_sectors: %ld, current_nr_sectors: %d\n", |
| 543 | __func__, (long)rq->sector, rq->nr_sectors, |
| 544 | rq->current_nr_sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
| 546 | if (rq->errors >= ERROR_MAX) { |
Borislav Petkov | d652c13 | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 547 | if (floppy->failed_pc) |
| 548 | ide_floppy_report_error(floppy, floppy->failed_pc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | else |
| 550 | printk(KERN_ERR "ide-floppy: %s: I/O error\n", |
| 551 | drive->name); |
Borislav Petkov | c2b2b29 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 552 | idefloppy_end_request(drive, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | return ide_stopped; |
| 554 | } |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 555 | if (blk_fs_request(rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | if (((long)rq->sector % floppy->bs_factor) || |
| 557 | (rq->nr_sectors % floppy->bs_factor)) { |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 558 | printk(KERN_ERR "%s: unsupported r/w request size\n", |
| 559 | drive->name); |
Borislav Petkov | c2b2b29 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 560 | idefloppy_end_request(drive, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | return ide_stopped; |
| 562 | } |
Bartlomiej Zolnierkiewicz | 2e8a6f8 | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 563 | pc = &floppy->queued_pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | idefloppy_create_rw_cmd(floppy, pc, rq, block); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 565 | } else if (blk_special_request(rq)) { |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 566 | pc = (struct ide_atapi_pc *) rq->buffer; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 567 | } else if (blk_pc_request(rq)) { |
Bartlomiej Zolnierkiewicz | 2e8a6f8 | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 568 | pc = &floppy->queued_pc; |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 569 | idefloppy_blockpc_cmd(floppy, pc, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } else { |
| 571 | blk_dump_rq_flags(rq, |
| 572 | "ide-floppy: unsupported command in queue"); |
Borislav Petkov | c2b2b29 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 573 | idefloppy_end_request(drive, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | return ide_stopped; |
| 575 | } |
| 576 | |
Borislav Petkov | b98b340 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 577 | ide_init_sg_cmd(drive, rq); |
| 578 | ide_map_sg(drive, rq); |
| 579 | |
| 580 | pc->sg = hwif->sg_table; |
| 581 | pc->sg_cnt = hwif->sg_nents; |
| 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | pc->rq = rq; |
Bartlomiej Zolnierkiewicz | 5d41893 | 2008-07-15 21:21:57 +0200 | [diff] [blame] | 584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | return idefloppy_issue_pc(drive, pc); |
| 586 | } |
| 587 | |
| 588 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 589 | * Add a special packet command request to the tail of the request queue, |
| 590 | * and wait for it to be serviced. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | */ |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 592 | static int idefloppy_queue_pc_tail(ide_drive_t *drive, struct ide_atapi_pc *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
| 594 | struct ide_floppy_obj *floppy = drive->driver_data; |
FUJITA Tomonori | 6fe1623 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 595 | struct request *rq; |
| 596 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
FUJITA Tomonori | 6fe1623 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 598 | rq = blk_get_request(drive->queue, READ, __GFP_WAIT); |
| 599 | rq->buffer = (char *) pc; |
| 600 | rq->cmd_type = REQ_TYPE_SPECIAL; |
Borislav Petkov | 20cd93be67 | 2008-07-23 19:56:00 +0200 | [diff] [blame] | 601 | memcpy(rq->cmd, pc->c, 12); |
FUJITA Tomonori | 6fe1623 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 602 | error = blk_execute_rq(drive->queue, floppy->disk, rq, 0); |
| 603 | blk_put_request(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
FUJITA Tomonori | 6fe1623 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 605 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | /* |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 609 | * Look at the flexible disk page parameters. We ignore the CHS capacity |
| 610 | * parameters and use the LBA parameters instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | */ |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 612 | static int ide_floppy_get_flexible_disk_page(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
| 614 | idefloppy_floppy_t *floppy = drive->driver_data; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 615 | struct ide_atapi_pc pc; |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 616 | u8 *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | int capacity, lba_capacity; |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 618 | u16 transfer_rate, sector_size, cyls, rpm; |
| 619 | u8 heads, sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
Bartlomiej Zolnierkiewicz | 4de4b9e | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 621 | idefloppy_create_mode_sense_cmd(&pc, IDEFLOPPY_FLEXIBLE_DISK_PAGE); |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 622 | |
| 623 | if (idefloppy_queue_pc_tail(drive, &pc)) { |
| 624 | printk(KERN_ERR "ide-floppy: Can't get flexible disk page" |
| 625 | " parameters\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | return 1; |
| 627 | } |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 628 | floppy->wp = !!(pc.buf[3] & 0x80); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | set_disk_ro(floppy->disk, floppy->wp); |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 630 | page = &pc.buf[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
Harvey Harrison | 85ae98a3 | 2008-07-16 20:33:47 +0200 | [diff] [blame] | 632 | transfer_rate = be16_to_cpup((__be16 *)&pc.buf[8 + 2]); |
| 633 | sector_size = be16_to_cpup((__be16 *)&pc.buf[8 + 6]); |
| 634 | cyls = be16_to_cpup((__be16 *)&pc.buf[8 + 8]); |
| 635 | rpm = be16_to_cpup((__be16 *)&pc.buf[8 + 28]); |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 636 | heads = pc.buf[8 + 4]; |
| 637 | sectors = pc.buf[8 + 5]; |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 638 | |
| 639 | capacity = cyls * heads * sectors * sector_size; |
| 640 | |
| 641 | if (memcmp(page, &floppy->flexible_disk_page, 32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | printk(KERN_INFO "%s: %dkB, %d/%d/%d CHS, %d kBps, " |
| 643 | "%d sector size, %d rpm\n", |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 644 | drive->name, capacity / 1024, cyls, heads, |
| 645 | sectors, transfer_rate / 8, sector_size, rpm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 647 | memcpy(&floppy->flexible_disk_page, page, 32); |
| 648 | drive->bios_cyl = cyls; |
| 649 | drive->bios_head = heads; |
| 650 | drive->bios_sect = sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | lba_capacity = floppy->blocks * floppy->block_size; |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | if (capacity < lba_capacity) { |
| 654 | printk(KERN_NOTICE "%s: The disk reports a capacity of %d " |
| 655 | "bytes, but the drive only handles %d\n", |
| 656 | drive->name, lba_capacity, capacity); |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 657 | floppy->blocks = floppy->block_size ? |
| 658 | capacity / floppy->block_size : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | } |
| 660 | return 0; |
| 661 | } |
| 662 | |
Borislav Petkov | 948391d | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 663 | static int idefloppy_get_sfrp_bit(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { |
| 665 | idefloppy_floppy_t *floppy = drive->driver_data; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 666 | struct ide_atapi_pc pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
| 668 | floppy->srfp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Bartlomiej Zolnierkiewicz | 4de4b9e | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 670 | idefloppy_create_mode_sense_cmd(&pc, IDEFLOPPY_CAPABILITIES_PAGE); |
Borislav Petkov | 6e5fa7b | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 671 | pc.flags |= PC_FLAG_SUPPRESS_ERROR; |
Bartlomiej Zolnierkiewicz | 4de4b9e | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 672 | |
Borislav Petkov | 948391d | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 673 | if (idefloppy_queue_pc_tail(drive, &pc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 676 | floppy->srfp = pc.buf[8 + 2] & 0x40; |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 677 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | /* |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 681 | * Determine if a media is present in the floppy drive, and if so, its LBA |
| 682 | * capacity. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | */ |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 684 | static int ide_floppy_get_capacity(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
| 686 | idefloppy_floppy_t *floppy = drive->driver_data; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 687 | struct ide_atapi_pc pc; |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 688 | u8 *cap_desc; |
| 689 | u8 header_len, desc_cnt; |
| 690 | int i, rc = 1, blocks, length; |
| 691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | drive->bios_cyl = 0; |
| 693 | drive->bios_head = drive->bios_sect = 0; |
Alan Cox | fdb77da | 2007-02-17 02:40:20 +0100 | [diff] [blame] | 694 | floppy->blocks = 0; |
| 695 | floppy->bs_factor = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | set_capacity(floppy->disk, 0); |
| 697 | |
| 698 | idefloppy_create_read_capacity_cmd(&pc); |
| 699 | if (idefloppy_queue_pc_tail(drive, &pc)) { |
| 700 | printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n"); |
| 701 | return 1; |
| 702 | } |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 703 | header_len = pc.buf[3]; |
| 704 | cap_desc = &pc.buf[4]; |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 705 | desc_cnt = header_len / 8; /* capacity descriptor of 8 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 707 | for (i = 0; i < desc_cnt; i++) { |
| 708 | unsigned int desc_start = 4 + i*8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Harvey Harrison | 85ae98a3 | 2008-07-16 20:33:47 +0200 | [diff] [blame] | 710 | blocks = be32_to_cpup((__be32 *)&pc.buf[desc_start]); |
| 711 | length = be16_to_cpup((__be16 *)&pc.buf[desc_start + 6]); |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 712 | |
| 713 | debug_log("Descriptor %d: %dkB, %d blocks, %d sector size\n", |
| 714 | i, blocks * length / 1024, blocks, length); |
| 715 | |
| 716 | if (i) |
| 717 | continue; |
| 718 | /* |
| 719 | * the code below is valid only for the 1st descriptor, ie i=0 |
| 720 | */ |
| 721 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 722 | switch (pc.buf[desc_start + 4] & 0x03) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | /* Clik! drive returns this instead of CAPACITY_CURRENT */ |
| 724 | case CAPACITY_UNFORMATTED: |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 725 | if (!(drive->atapi_flags & IDE_AFLAG_CLIK_DRIVE)) |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 726 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | * If it is not a clik drive, break out |
| 728 | * (maintains previous driver behaviour) |
| 729 | */ |
| 730 | break; |
| 731 | case CAPACITY_CURRENT: |
| 732 | /* Normal Zip/LS-120 disks */ |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 733 | if (memcmp(cap_desc, &floppy->cap_desc, 8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | printk(KERN_INFO "%s: %dkB, %d blocks, %d " |
| 735 | "sector size\n", drive->name, |
| 736 | blocks * length / 1024, blocks, length); |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 737 | memcpy(&floppy->cap_desc, cap_desc, 8); |
| 738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | if (!length || length % 512) { |
| 740 | printk(KERN_NOTICE "%s: %d bytes block size " |
| 741 | "not supported\n", drive->name, length); |
| 742 | } else { |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 743 | floppy->blocks = blocks; |
| 744 | floppy->block_size = length; |
| 745 | floppy->bs_factor = length / 512; |
| 746 | if (floppy->bs_factor != 1) |
| 747 | printk(KERN_NOTICE "%s: warning: non " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | "512 bytes block size not " |
| 749 | "fully supported\n", |
| 750 | drive->name); |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 751 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | } |
| 753 | break; |
| 754 | case CAPACITY_NO_CARTRIDGE: |
| 755 | /* |
| 756 | * This is a KERN_ERR so it appears on screen |
| 757 | * for the user to see |
| 758 | */ |
| 759 | printk(KERN_ERR "%s: No disk in drive\n", drive->name); |
| 760 | break; |
| 761 | case CAPACITY_INVALID: |
| 762 | printk(KERN_ERR "%s: Invalid capacity for disk " |
| 763 | "in drive\n", drive->name); |
| 764 | break; |
| 765 | } |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 766 | debug_log("Descriptor 0 Code: %d\n", |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 767 | pc.buf[desc_start + 4] & 0x03); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | /* Clik! disk does not support get_flexible_disk_page */ |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 771 | if (!(drive->atapi_flags & IDE_AFLAG_CLIK_DRIVE)) |
Borislav Petkov | 8e81bbb | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 772 | (void) ide_floppy_get_flexible_disk_page(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
| 774 | set_capacity(floppy->disk, floppy->blocks * floppy->bs_factor); |
| 775 | return rc; |
| 776 | } |
| 777 | |
| 778 | /* |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 779 | * Obtain the list of formattable capacities. |
| 780 | * Very similar to ide_floppy_get_capacity, except that we push the capacity |
| 781 | * descriptors to userland, instead of our own structures. |
| 782 | * |
| 783 | * Userland gives us the following structure: |
| 784 | * |
| 785 | * struct idefloppy_format_capacities { |
| 786 | * int nformats; |
| 787 | * struct { |
| 788 | * int nblocks; |
| 789 | * int blocksize; |
| 790 | * } formats[]; |
| 791 | * }; |
| 792 | * |
| 793 | * userland initializes nformats to the number of allocated formats[] records. |
| 794 | * On exit we set nformats to the number of records we've actually initialized. |
| 795 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 797 | static int ide_floppy_get_format_capacities(ide_drive_t *drive, int __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | { |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 799 | struct ide_atapi_pc pc; |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 800 | u8 header_len, desc_cnt; |
| 801 | int i, blocks, length, u_array_size, u_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | int __user *argp; |
| 803 | |
| 804 | if (get_user(u_array_size, arg)) |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 805 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
| 807 | if (u_array_size <= 0) |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 808 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
| 810 | idefloppy_create_read_capacity_cmd(&pc); |
| 811 | if (idefloppy_queue_pc_tail(drive, &pc)) { |
| 812 | printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n"); |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 813 | return -EIO; |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 814 | } |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 815 | |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 816 | header_len = pc.buf[3]; |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 817 | desc_cnt = header_len / 8; /* capacity descriptor of 8 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
| 819 | u_index = 0; |
| 820 | argp = arg + 1; |
| 821 | |
| 822 | /* |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 823 | * We always skip the first capacity descriptor. That's the current |
| 824 | * capacity. We are interested in the remaining descriptors, the |
| 825 | * formattable capacities. |
| 826 | */ |
| 827 | for (i = 1; i < desc_cnt; i++) { |
| 828 | unsigned int desc_start = 4 + i*8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | if (u_index >= u_array_size) |
| 831 | break; /* User-supplied buffer too small */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | |
Harvey Harrison | 85ae98a3 | 2008-07-16 20:33:47 +0200 | [diff] [blame] | 833 | blocks = be32_to_cpup((__be32 *)&pc.buf[desc_start]); |
| 834 | length = be16_to_cpup((__be16 *)&pc.buf[desc_start + 6]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | |
| 836 | if (put_user(blocks, argp)) |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 837 | return -EFAULT; |
| 838 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | ++argp; |
| 840 | |
| 841 | if (put_user(length, argp)) |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 842 | return -EFAULT; |
| 843 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | ++argp; |
| 845 | |
| 846 | ++u_index; |
| 847 | } |
| 848 | |
| 849 | if (put_user(u_index, arg)) |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 850 | return -EFAULT; |
| 851 | |
| 852 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | } |
| 854 | |
| 855 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 856 | * Get ATAPI_FORMAT_UNIT progress indication. |
| 857 | * |
| 858 | * Userland gives a pointer to an int. The int is set to a progress |
| 859 | * indicator 0-65536, with 65536=100%. |
| 860 | * |
| 861 | * If the drive does not support format progress indication, we just check |
| 862 | * the dsc bit, and return either 0 or 65536. |
| 863 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | |
Bartlomiej Zolnierkiewicz | d56c99e | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 865 | static int ide_floppy_get_format_progress(ide_drive_t *drive, int __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
| 867 | idefloppy_floppy_t *floppy = drive->driver_data; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 868 | struct ide_atapi_pc pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | int progress_indication = 0x10000; |
| 870 | |
| 871 | if (floppy->srfp) { |
| 872 | idefloppy_create_request_sense_cmd(&pc); |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 873 | if (idefloppy_queue_pc_tail(drive, &pc)) |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 874 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
| 876 | if (floppy->sense_key == 2 && |
| 877 | floppy->asc == 4 && |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 878 | floppy->ascq == 4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | progress_indication = floppy->progress_indication; |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 880 | |
| 881 | /* Else assume format_unit has finished, and we're at 0x10000 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } else { |
Bartlomiej Zolnierkiewicz | b73c7ee | 2008-07-23 19:55:52 +0200 | [diff] [blame] | 883 | ide_hwif_t *hwif = drive->hwif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | unsigned long flags; |
Bartlomiej Zolnierkiewicz | 22c525b | 2008-01-25 22:17:11 +0100 | [diff] [blame] | 885 | u8 stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
| 887 | local_irq_save(flags); |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 888 | stat = hwif->tp_ops->read_status(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | local_irq_restore(flags); |
| 890 | |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 891 | progress_indication = ((stat & ATA_DSC) == 0) ? 0 : 0x10000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Bartlomiej Zolnierkiewicz | e3faa24 | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 894 | if (put_user(progress_indication, arg)) |
| 895 | return -EFAULT; |
| 896 | |
| 897 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | } |
| 899 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 900 | static sector_t idefloppy_capacity(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | { |
| 902 | idefloppy_floppy_t *floppy = drive->driver_data; |
| 903 | unsigned long capacity = floppy->blocks * floppy->bs_factor; |
| 904 | |
| 905 | return capacity; |
| 906 | } |
| 907 | |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 908 | #ifdef CONFIG_IDE_PROC_FS |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 909 | ide_devset_rw(bios_cyl, 0, 1023, bios_cyl); |
| 910 | ide_devset_rw(bios_head, 0, 255, bios_head); |
| 911 | ide_devset_rw(bios_sect, 0, 63, bios_sect); |
| 912 | |
| 913 | static int get_ticks(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | { |
| 915 | idefloppy_floppy_t *floppy = drive->driver_data; |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 916 | return floppy->ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 918 | |
| 919 | static int set_ticks(ide_drive_t *drive, int arg) |
| 920 | { |
| 921 | idefloppy_floppy_t *floppy = drive->driver_data; |
| 922 | floppy->ticks = arg; |
| 923 | return 0; |
| 924 | } |
| 925 | |
| 926 | IDE_DEVSET(ticks, S_RW, 0, 255, get_ticks, set_ticks); |
| 927 | |
| 928 | static const struct ide_devset *idefloppy_settings[] = { |
| 929 | &ide_devset_bios_cyl, |
| 930 | &ide_devset_bios_head, |
| 931 | &ide_devset_bios_sect, |
| 932 | &ide_devset_ticks, |
| 933 | NULL |
| 934 | }; |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 935 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 937 | static void idefloppy_setup(ide_drive_t *drive, idefloppy_floppy_t *floppy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | { |
Bartlomiej Zolnierkiewicz | 4dde449 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 939 | u16 *id = drive->id; |
Borislav Petkov | 3ad6776 | 2008-04-18 00:46:25 +0200 | [diff] [blame] | 940 | u8 gcw[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | |
Bartlomiej Zolnierkiewicz | 4dde449 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 942 | *((u16 *)&gcw) = id[ATA_ID_CONFIG]; |
Bartlomiej Zolnierkiewicz | 2e8a6f8 | 2008-10-10 22:39:36 +0200 | [diff] [blame] | 943 | |
Borislav Petkov | 2207fa5 | 2008-07-23 19:55:59 +0200 | [diff] [blame] | 944 | drive->pc_callback = ide_floppy_callback; |
Borislav Petkov | 3ad6776 | 2008-04-18 00:46:25 +0200 | [diff] [blame] | 945 | |
| 946 | if (((gcw[0] & 0x60) >> 5) == 1) |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 947 | drive->atapi_flags |= IDE_AFLAG_DRQ_INTERRUPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 949 | * We used to check revisions here. At this point however I'm giving up. |
| 950 | * Just assume they are all broken, its easier. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | * |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 952 | * The actual reason for the workarounds was likely a driver bug after |
| 953 | * all rather than a firmware bug, and the workaround below used to hide |
| 954 | * it. It should be fixed as of version 1.9, but to be on the safe side |
| 955 | * we'll leave the limitation below for the 2.2.x tree. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | */ |
Bartlomiej Zolnierkiewicz | 4dde449 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 957 | if (!strncmp((char *)&id[ATA_ID_PROD], "IOMEGA ZIP 100 ATAPI", 20)) { |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 958 | drive->atapi_flags |= IDE_AFLAG_ZIP_DRIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | /* This value will be visible in the /proc/ide/hdx/settings */ |
| 960 | floppy->ticks = IDEFLOPPY_TICKS_DELAY; |
| 961 | blk_queue_max_sectors(drive->queue, 64); |
| 962 | } |
| 963 | |
| 964 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 965 | * Guess what? The IOMEGA Clik! drive also needs the above fix. It makes |
| 966 | * nasty clicking noises without it, so please don't remove this. |
| 967 | */ |
Bartlomiej Zolnierkiewicz | 4dde449 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 968 | if (strncmp((char *)&id[ATA_ID_PROD], "IOMEGA Clik!", 11) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | blk_queue_max_sectors(drive->queue, 64); |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 970 | drive->atapi_flags |= IDE_AFLAG_CLIK_DRIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } |
| 972 | |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 973 | (void) ide_floppy_get_capacity(drive); |
Bartlomiej Zolnierkiewicz | 1e874f4 | 2008-10-10 22:39:27 +0200 | [diff] [blame] | 974 | |
| 975 | ide_proc_register_driver(drive, floppy->driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } |
| 977 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 978 | static void ide_floppy_remove(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | { |
| 980 | idefloppy_floppy_t *floppy = drive->driver_data; |
| 981 | struct gendisk *g = floppy->disk; |
| 982 | |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 983 | ide_proc_unregister_driver(drive, floppy->driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
| 985 | del_gendisk(g); |
| 986 | |
| 987 | ide_floppy_put(floppy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | } |
| 989 | |
Borislav Petkov | 9a24b63 | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 990 | static void idefloppy_cleanup_obj(struct kref *kref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | { |
| 992 | struct ide_floppy_obj *floppy = to_ide_floppy(kref); |
| 993 | ide_drive_t *drive = floppy->drive; |
| 994 | struct gendisk *g = floppy->disk; |
| 995 | |
| 996 | drive->driver_data = NULL; |
| 997 | g->private_data = NULL; |
| 998 | put_disk(g); |
| 999 | kfree(floppy); |
| 1000 | } |
| 1001 | |
Bartlomiej Zolnierkiewicz | ecfd80e | 2007-05-10 00:01:09 +0200 | [diff] [blame] | 1002 | #ifdef CONFIG_IDE_PROC_FS |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1003 | static int proc_idefloppy_read_capacity(char *page, char **start, off_t off, |
| 1004 | int count, int *eof, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | { |
| 1006 | ide_drive_t*drive = (ide_drive_t *)data; |
| 1007 | int len; |
| 1008 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1009 | len = sprintf(page, "%llu\n", (long long)idefloppy_capacity(drive)); |
| 1010 | PROC_IDE_READ_RETURN(page, start, off, count, eof, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | static ide_proc_entry_t idefloppy_proc[] = { |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1014 | { "capacity", S_IFREG|S_IRUGO, proc_idefloppy_read_capacity, NULL }, |
| 1015 | { "geometry", S_IFREG|S_IRUGO, proc_ide_read_geometry, NULL }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | { NULL, 0, NULL, NULL } |
| 1017 | }; |
Bartlomiej Zolnierkiewicz | ecfd80e | 2007-05-10 00:01:09 +0200 | [diff] [blame] | 1018 | #endif /* CONFIG_IDE_PROC_FS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 1020 | static int ide_floppy_probe(ide_drive_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | static ide_driver_t idefloppy_driver = { |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1023 | .gen_driver = { |
Laurent Riffard | 4ef3b8f | 2005-11-18 22:15:40 +0100 | [diff] [blame] | 1024 | .owner = THIS_MODULE, |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1025 | .name = "ide-floppy", |
| 1026 | .bus = &ide_bus_type, |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1027 | }, |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 1028 | .probe = ide_floppy_probe, |
| 1029 | .remove = ide_floppy_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | .version = IDEFLOPPY_VERSION, |
| 1031 | .media = ide_floppy, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | .do_request = idefloppy_do_request, |
Borislav Petkov | c2b2b29 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 1033 | .end_request = idefloppy_end_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | .error = __ide_error, |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 1035 | #ifdef CONFIG_IDE_PROC_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | .proc = idefloppy_proc, |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 1037 | .settings = idefloppy_settings, |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 1038 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | }; |
| 1040 | |
| 1041 | static int idefloppy_open(struct inode *inode, struct file *filp) |
| 1042 | { |
| 1043 | struct gendisk *disk = inode->i_bdev->bd_disk; |
| 1044 | struct ide_floppy_obj *floppy; |
| 1045 | ide_drive_t *drive; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 1046 | struct ide_atapi_pc pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | int ret = 0; |
| 1048 | |
Borislav Petkov | bcc77d9 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 1049 | debug_log("Reached %s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1051 | floppy = ide_floppy_get(disk); |
| 1052 | if (!floppy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | return -ENXIO; |
| 1054 | |
| 1055 | drive = floppy->drive; |
| 1056 | |
Bartlomiej Zolnierkiewicz | c94964a | 2007-02-17 02:40:24 +0100 | [diff] [blame] | 1057 | floppy->openers++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | |
Bartlomiej Zolnierkiewicz | c94964a | 2007-02-17 02:40:24 +0100 | [diff] [blame] | 1059 | if (floppy->openers == 1) { |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1060 | drive->atapi_flags &= ~IDE_AFLAG_FORMAT_IN_PROGRESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | /* Just in case */ |
| 1062 | |
Borislav Petkov | c96a7df | 2008-07-16 20:33:46 +0200 | [diff] [blame] | 1063 | idefloppy_init_pc(&pc); |
| 1064 | pc.c[0] = GPCMD_TEST_UNIT_READY; |
| 1065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | if (idefloppy_queue_pc_tail(drive, &pc)) { |
| 1067 | idefloppy_create_start_stop_cmd(&pc, 1); |
| 1068 | (void) idefloppy_queue_pc_tail(drive, &pc); |
| 1069 | } |
| 1070 | |
Borislav Petkov | 194ec0c | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1071 | if (ide_floppy_get_capacity(drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | && (filp->f_flags & O_NDELAY) == 0 |
| 1073 | /* |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1074 | * Allow O_NDELAY to open a drive without a disk, or with an |
| 1075 | * unreadable disk, so that we can get the format capacity |
| 1076 | * of the drive or begin the format - Sam |
| 1077 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | ret = -EIO; |
| 1080 | goto out_put_floppy; |
| 1081 | } |
| 1082 | |
| 1083 | if (floppy->wp && (filp->f_mode & 2)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | ret = -EROFS; |
| 1085 | goto out_put_floppy; |
| 1086 | } |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1087 | drive->atapi_flags |= IDE_AFLAG_MEDIA_CHANGED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | /* IOMEGA Clik! drives do not support lock/unlock commands */ |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1089 | if (!(drive->atapi_flags & IDE_AFLAG_CLIK_DRIVE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | idefloppy_create_prevent_cmd(&pc, 1); |
| 1091 | (void) idefloppy_queue_pc_tail(drive, &pc); |
| 1092 | } |
| 1093 | check_disk_change(inode->i_bdev); |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1094 | } else if (drive->atapi_flags & IDE_AFLAG_FORMAT_IN_PROGRESS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | ret = -EBUSY; |
| 1096 | goto out_put_floppy; |
| 1097 | } |
| 1098 | return 0; |
| 1099 | |
| 1100 | out_put_floppy: |
Bartlomiej Zolnierkiewicz | c94964a | 2007-02-17 02:40:24 +0100 | [diff] [blame] | 1101 | floppy->openers--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | ide_floppy_put(floppy); |
| 1103 | return ret; |
| 1104 | } |
| 1105 | |
| 1106 | static int idefloppy_release(struct inode *inode, struct file *filp) |
| 1107 | { |
| 1108 | struct gendisk *disk = inode->i_bdev->bd_disk; |
| 1109 | struct ide_floppy_obj *floppy = ide_floppy_g(disk); |
| 1110 | ide_drive_t *drive = floppy->drive; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 1111 | struct ide_atapi_pc pc; |
Borislav Petkov | bcc77d9 | 2008-02-02 19:56:34 +0100 | [diff] [blame] | 1112 | |
| 1113 | debug_log("Reached %s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | |
Bartlomiej Zolnierkiewicz | c94964a | 2007-02-17 02:40:24 +0100 | [diff] [blame] | 1115 | if (floppy->openers == 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | /* IOMEGA Clik! drives do not support lock/unlock commands */ |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1117 | if (!(drive->atapi_flags & IDE_AFLAG_CLIK_DRIVE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | idefloppy_create_prevent_cmd(&pc, 0); |
| 1119 | (void) idefloppy_queue_pc_tail(drive, &pc); |
| 1120 | } |
| 1121 | |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1122 | drive->atapi_flags &= ~IDE_AFLAG_FORMAT_IN_PROGRESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | } |
Bartlomiej Zolnierkiewicz | c94964a | 2007-02-17 02:40:24 +0100 | [diff] [blame] | 1124 | |
| 1125 | floppy->openers--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | |
| 1127 | ide_floppy_put(floppy); |
| 1128 | |
| 1129 | return 0; |
| 1130 | } |
| 1131 | |
Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 1132 | static int idefloppy_getgeo(struct block_device *bdev, struct hd_geometry *geo) |
| 1133 | { |
| 1134 | struct ide_floppy_obj *floppy = ide_floppy_g(bdev->bd_disk); |
| 1135 | ide_drive_t *drive = floppy->drive; |
| 1136 | |
| 1137 | geo->heads = drive->bios_head; |
| 1138 | geo->sectors = drive->bios_sect; |
| 1139 | geo->cylinders = (u16)drive->bios_cyl; /* truncate */ |
| 1140 | return 0; |
| 1141 | } |
| 1142 | |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1143 | static int ide_floppy_lockdoor(ide_drive_t *drive, struct ide_atapi_pc *pc, |
| 1144 | unsigned long arg, unsigned int cmd) |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1145 | { |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1146 | idefloppy_floppy_t *floppy = drive->driver_data; |
| 1147 | |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1148 | if (floppy->openers > 1) |
| 1149 | return -EBUSY; |
| 1150 | |
| 1151 | /* The IOMEGA Clik! Drive doesn't support this command - |
| 1152 | * no room for an eject mechanism */ |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1153 | if (!(drive->atapi_flags & IDE_AFLAG_CLIK_DRIVE)) { |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1154 | int prevent = arg ? 1 : 0; |
| 1155 | |
| 1156 | if (cmd == CDROMEJECT) |
| 1157 | prevent = 0; |
| 1158 | |
| 1159 | idefloppy_create_prevent_cmd(pc, prevent); |
| 1160 | (void) idefloppy_queue_pc_tail(floppy->drive, pc); |
| 1161 | } |
| 1162 | |
| 1163 | if (cmd == CDROMEJECT) { |
| 1164 | idefloppy_create_start_stop_cmd(pc, 2); |
| 1165 | (void) idefloppy_queue_pc_tail(floppy->drive, pc); |
| 1166 | } |
| 1167 | |
| 1168 | return 0; |
| 1169 | } |
| 1170 | |
Bartlomiej Zolnierkiewicz | d56c99e | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 1171 | static int ide_floppy_format_unit(ide_drive_t *drive, int __user *arg) |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1172 | { |
Bartlomiej Zolnierkiewicz | d56c99e | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 1173 | idefloppy_floppy_t *floppy = drive->driver_data; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 1174 | struct ide_atapi_pc pc; |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1175 | int blocks, length, flags, err = 0; |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1176 | |
| 1177 | if (floppy->openers > 1) { |
| 1178 | /* Don't format if someone is using the disk */ |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1179 | drive->atapi_flags &= ~IDE_AFLAG_FORMAT_IN_PROGRESS; |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1180 | return -EBUSY; |
| 1181 | } |
| 1182 | |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1183 | drive->atapi_flags |= IDE_AFLAG_FORMAT_IN_PROGRESS; |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1184 | |
| 1185 | /* |
| 1186 | * Send ATAPI_FORMAT_UNIT to the drive. |
| 1187 | * |
| 1188 | * Userland gives us the following structure: |
| 1189 | * |
| 1190 | * struct idefloppy_format_command { |
| 1191 | * int nblocks; |
| 1192 | * int blocksize; |
| 1193 | * int flags; |
| 1194 | * } ; |
| 1195 | * |
| 1196 | * flags is a bitmask, currently, the only defined flag is: |
| 1197 | * |
| 1198 | * 0x01 - verify media after format. |
| 1199 | */ |
| 1200 | if (get_user(blocks, arg) || |
| 1201 | get_user(length, arg+1) || |
| 1202 | get_user(flags, arg+2)) { |
| 1203 | err = -EFAULT; |
| 1204 | goto out; |
| 1205 | } |
| 1206 | |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1207 | (void) idefloppy_get_sfrp_bit(drive); |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1208 | idefloppy_create_format_unit_cmd(&pc, blocks, length, flags); |
| 1209 | |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1210 | if (idefloppy_queue_pc_tail(drive, &pc)) |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1211 | err = -EIO; |
| 1212 | |
| 1213 | out: |
| 1214 | if (err) |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1215 | drive->atapi_flags &= ~IDE_AFLAG_FORMAT_IN_PROGRESS; |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1216 | return err; |
| 1217 | } |
| 1218 | |
Bartlomiej Zolnierkiewicz | d56c99e | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 1219 | static int ide_floppy_format_ioctl(ide_drive_t *drive, struct file *file, |
| 1220 | unsigned int cmd, void __user *argp) |
| 1221 | { |
| 1222 | switch (cmd) { |
| 1223 | case IDEFLOPPY_IOCTL_FORMAT_SUPPORTED: |
| 1224 | return 0; |
| 1225 | case IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY: |
| 1226 | return ide_floppy_get_format_capacities(drive, argp); |
| 1227 | case IDEFLOPPY_IOCTL_FORMAT_START: |
| 1228 | if (!(file->f_mode & 2)) |
| 1229 | return -EPERM; |
| 1230 | return ide_floppy_format_unit(drive, (int __user *)argp); |
| 1231 | case IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS: |
| 1232 | return ide_floppy_get_format_progress(drive, argp); |
| 1233 | default: |
| 1234 | return -ENOTTY; |
| 1235 | } |
| 1236 | } |
Borislav Petkov | 20bf7bd | 2008-02-02 19:56:35 +0100 | [diff] [blame] | 1237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | static int idefloppy_ioctl(struct inode *inode, struct file *file, |
| 1239 | unsigned int cmd, unsigned long arg) |
| 1240 | { |
| 1241 | struct block_device *bdev = inode->i_bdev; |
| 1242 | struct ide_floppy_obj *floppy = ide_floppy_g(bdev->bd_disk); |
| 1243 | ide_drive_t *drive = floppy->drive; |
Borislav Petkov | 8e55512 | 2008-04-18 00:46:27 +0200 | [diff] [blame] | 1244 | struct ide_atapi_pc pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | void __user *argp = (void __user *)arg; |
Ondrej Zary | 07203f6 | 2005-11-10 00:25:15 +0100 | [diff] [blame] | 1246 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | |
Bartlomiej Zolnierkiewicz | d56c99e | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 1248 | if (cmd == CDROMEJECT || cmd == CDROM_LOCKDOOR) |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1249 | return ide_floppy_lockdoor(drive, &pc, arg, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | |
Bartlomiej Zolnierkiewicz | d56c99e | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 1251 | err = ide_floppy_format_ioctl(drive, file, cmd, argp); |
| 1252 | if (err != -ENOTTY) |
| 1253 | return err; |
Bartlomiej Zolnierkiewicz | 89636af | 2007-07-20 01:11:59 +0200 | [diff] [blame] | 1254 | |
| 1255 | /* |
| 1256 | * skip SCSI_IOCTL_SEND_COMMAND (deprecated) |
| 1257 | * and CDROM_SEND_PACKET (legacy) ioctls |
| 1258 | */ |
| 1259 | if (cmd != CDROM_SEND_PACKET && cmd != SCSI_IOCTL_SEND_COMMAND) |
| 1260 | err = scsi_cmd_ioctl(file, bdev->bd_disk->queue, |
| 1261 | bdev->bd_disk, cmd, argp); |
Bartlomiej Zolnierkiewicz | 89636af | 2007-07-20 01:11:59 +0200 | [diff] [blame] | 1262 | |
| 1263 | if (err == -ENOTTY) |
| 1264 | err = generic_ide_ioctl(drive, file, bdev, cmd, arg); |
| 1265 | |
| 1266 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | } |
| 1268 | |
| 1269 | static int idefloppy_media_changed(struct gendisk *disk) |
| 1270 | { |
| 1271 | struct ide_floppy_obj *floppy = ide_floppy_g(disk); |
| 1272 | ide_drive_t *drive = floppy->drive; |
Borislav Petkov | 6e5fa7b | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 1273 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | |
| 1275 | /* do not scan partitions twice if this is a removable device */ |
| 1276 | if (drive->attach) { |
| 1277 | drive->attach = 0; |
| 1278 | return 0; |
| 1279 | } |
Borislav Petkov | ea68d27 | 2008-07-23 19:56:01 +0200 | [diff] [blame] | 1280 | ret = !!(drive->atapi_flags & IDE_AFLAG_MEDIA_CHANGED); |
| 1281 | drive->atapi_flags &= ~IDE_AFLAG_MEDIA_CHANGED; |
Borislav Petkov | 6e5fa7b | 2008-02-02 19:56:37 +0100 | [diff] [blame] | 1282 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | } |
| 1284 | |
| 1285 | static int idefloppy_revalidate_disk(struct gendisk *disk) |
| 1286 | { |
| 1287 | struct ide_floppy_obj *floppy = ide_floppy_g(disk); |
| 1288 | set_capacity(disk, idefloppy_capacity(floppy->drive)); |
| 1289 | return 0; |
| 1290 | } |
| 1291 | |
| 1292 | static struct block_device_operations idefloppy_ops = { |
Paolo Ciarrocchi | 52d3ccf | 2008-04-26 17:36:41 +0200 | [diff] [blame] | 1293 | .owner = THIS_MODULE, |
| 1294 | .open = idefloppy_open, |
| 1295 | .release = idefloppy_release, |
| 1296 | .ioctl = idefloppy_ioctl, |
| 1297 | .getgeo = idefloppy_getgeo, |
| 1298 | .media_changed = idefloppy_media_changed, |
| 1299 | .revalidate_disk = idefloppy_revalidate_disk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | }; |
| 1301 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 1302 | static int ide_floppy_probe(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | { |
| 1304 | idefloppy_floppy_t *floppy; |
| 1305 | struct gendisk *g; |
| 1306 | |
| 1307 | if (!strstr("ide-floppy", drive->driver_req)) |
| 1308 | goto failed; |
Bartlomiej Zolnierkiewicz | 2a92466 | 2008-10-10 22:39:24 +0200 | [diff] [blame] | 1309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | if (drive->media != ide_floppy) |
| 1311 | goto failed; |
Bartlomiej Zolnierkiewicz | 2a92466 | 2008-10-10 22:39:24 +0200 | [diff] [blame] | 1312 | |
Bartlomiej Zolnierkiewicz | 51509ee | 2008-10-10 22:39:34 +0200 | [diff] [blame] | 1313 | if (!ide_check_atapi_device(drive, DRV_NAME)) { |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1314 | printk(KERN_ERR "ide-floppy: %s: not supported by this version" |
| 1315 | " of ide-floppy\n", drive->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | goto failed; |
| 1317 | } |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1318 | floppy = kzalloc(sizeof(idefloppy_floppy_t), GFP_KERNEL); |
| 1319 | if (!floppy) { |
| 1320 | printk(KERN_ERR "ide-floppy: %s: Can't allocate a floppy" |
| 1321 | " structure\n", drive->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | goto failed; |
| 1323 | } |
| 1324 | |
| 1325 | g = alloc_disk(1 << PARTN_BITS); |
| 1326 | if (!g) |
| 1327 | goto out_free_floppy; |
| 1328 | |
| 1329 | ide_init_disk(g, drive); |
| 1330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | kref_init(&floppy->kref); |
| 1332 | |
| 1333 | floppy->drive = drive; |
| 1334 | floppy->driver = &idefloppy_driver; |
| 1335 | floppy->disk = g; |
| 1336 | |
| 1337 | g->private_data = &floppy->driver; |
| 1338 | |
| 1339 | drive->driver_data = floppy; |
| 1340 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1341 | idefloppy_setup(drive, floppy); |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | g->minors = 1 << PARTN_BITS; |
| 1344 | g->driverfs_dev = &drive->gendev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | g->flags = drive->removable ? GENHD_FL_REMOVABLE : 0; |
| 1346 | g->fops = &idefloppy_ops; |
| 1347 | drive->attach = 1; |
| 1348 | add_disk(g); |
| 1349 | return 0; |
| 1350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | out_free_floppy: |
| 1352 | kfree(floppy); |
| 1353 | failed: |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1354 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | } |
| 1356 | |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1357 | static void __exit idefloppy_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | { |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1359 | driver_unregister(&idefloppy_driver.gen_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | } |
| 1361 | |
Bartlomiej Zolnierkiewicz | 17514e8 | 2005-11-19 22:24:35 +0100 | [diff] [blame] | 1362 | static int __init idefloppy_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | { |
| 1364 | printk("ide-floppy driver " IDEFLOPPY_VERSION "\n"); |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1365 | return driver_register(&idefloppy_driver.gen_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | } |
| 1367 | |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 1368 | MODULE_ALIAS("ide:*m-floppy*"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | module_init(idefloppy_init); |
| 1370 | module_exit(idefloppy_exit); |
| 1371 | MODULE_LICENSE("GPL"); |
Borislav Petkov | 0571c7a | 2008-02-02 19:56:38 +0100 | [diff] [blame] | 1372 | MODULE_DESCRIPTION("ATAPI FLOPPY Driver"); |
| 1373 | |