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