Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/ide/ide-cd.c |
| 3 | * |
| 4 | * Copyright (C) 1994, 1995, 1996 scott snyder <snyder@fnald0.fnal.gov> |
| 5 | * Copyright (C) 1996-1998 Erik Andersen <andersee@debian.org> |
| 6 | * Copyright (C) 1998-2000 Jens Axboe <axboe@suse.de> |
| 7 | * |
| 8 | * May be copied or modified under the terms of the GNU General Public |
| 9 | * License. See linux/COPYING for more information. |
| 10 | * |
| 11 | * ATAPI CD-ROM driver. To be used with ide.c. |
| 12 | * See Documentation/cdrom/ide-cd for usage information. |
| 13 | * |
| 14 | * Suggestions are welcome. Patches that work are more welcome though. ;-) |
| 15 | * For those wishing to work on this driver, please be sure you download |
| 16 | * and comply with the latest Mt. Fuji (SFF8090 version 4) and ATAPI |
| 17 | * (SFF-8020i rev 2.6) standards. These documents can be obtained by |
| 18 | * anonymous ftp from: |
| 19 | * ftp://fission.dt.wdc.com/pub/standards/SFF_atapi/spec/SFF8020-r2.6/PS/8020r26.ps |
| 20 | * ftp://ftp.avc-pioneer.com/Mtfuji4/Spec/Fuji4r10.pdf |
| 21 | * |
| 22 | * Drives that deviate from these standards will be accommodated as much |
| 23 | * as possible via compile time or command-line options. Since I only have |
| 24 | * a few drives, you generally need to send me patches... |
| 25 | * |
| 26 | * ---------------------------------- |
| 27 | * TO DO LIST: |
| 28 | * -Make it so that Pioneer CD DR-A24X and friends don't get screwed up on |
| 29 | * boot |
| 30 | * |
Bartlomiej Zolnierkiewicz | 0355335 | 2008-02-01 23:09:18 +0100 | [diff] [blame] | 31 | * For historical changelog please see: |
| 32 | * Documentation/ide/ChangeLog.ide-cd.1994-2004 |
| 33 | */ |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #define IDECD_VERSION "4.61" |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/module.h> |
| 38 | #include <linux/types.h> |
| 39 | #include <linux/kernel.h> |
| 40 | #include <linux/delay.h> |
| 41 | #include <linux/timer.h> |
| 42 | #include <linux/slab.h> |
| 43 | #include <linux/interrupt.h> |
| 44 | #include <linux/errno.h> |
| 45 | #include <linux/cdrom.h> |
| 46 | #include <linux/ide.h> |
| 47 | #include <linux/completion.h> |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 48 | #include <linux/mutex.h> |
Bartlomiej Zolnierkiewicz | 9a6dc66 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 49 | #include <linux/bcd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | #include <scsi/scsi.h> /* For SCSI -> ATAPI command conversion */ |
| 52 | |
| 53 | #include <asm/irq.h> |
| 54 | #include <asm/io.h> |
| 55 | #include <asm/byteorder.h> |
| 56 | #include <asm/uaccess.h> |
| 57 | #include <asm/unaligned.h> |
| 58 | |
| 59 | #include "ide-cd.h" |
| 60 | |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 61 | static DEFINE_MUTEX(idecd_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | #define to_ide_cd(obj) container_of(obj, struct cdrom_info, kref) |
| 64 | |
| 65 | #define ide_cd_g(disk) \ |
| 66 | container_of((disk)->private_data, struct cdrom_info, driver) |
| 67 | |
| 68 | static struct cdrom_info *ide_cd_get(struct gendisk *disk) |
| 69 | { |
| 70 | struct cdrom_info *cd = NULL; |
| 71 | |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 72 | mutex_lock(&idecd_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | cd = ide_cd_g(disk); |
| 74 | if (cd) |
| 75 | kref_get(&cd->kref); |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 76 | mutex_unlock(&idecd_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | return cd; |
| 78 | } |
| 79 | |
| 80 | static void ide_cd_release(struct kref *); |
| 81 | |
| 82 | static void ide_cd_put(struct cdrom_info *cd) |
| 83 | { |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 84 | mutex_lock(&idecd_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | kref_put(&cd->kref, ide_cd_release); |
Arjan van de Ven | cf8b897 | 2006-03-23 03:00:45 -0800 | [diff] [blame] | 86 | mutex_unlock(&idecd_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /**************************************************************************** |
| 90 | * Generic packet command support and error handling routines. |
| 91 | */ |
| 92 | |
| 93 | /* Mark that we've seen a media change, and invalidate our internal |
| 94 | buffers. */ |
| 95 | static void cdrom_saw_media_change (ide_drive_t *drive) |
| 96 | { |
Bartlomiej Zolnierkiewicz | 0ba1121 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 97 | struct cdrom_info *cd = drive->driver_data; |
| 98 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 99 | cd->cd_flags |= IDE_CD_FLAG_MEDIA_CHANGED; |
| 100 | cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID; |
Bartlomiej Zolnierkiewicz | 0ba1121 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 101 | cd->nsectors_buffered = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static int cdrom_log_sense(ide_drive_t *drive, struct request *rq, |
| 105 | struct request_sense *sense) |
| 106 | { |
| 107 | int log = 0; |
| 108 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 109 | if (!sense || !rq || (rq->cmd_flags & REQ_QUIET)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return 0; |
| 111 | |
| 112 | switch (sense->sense_key) { |
| 113 | case NO_SENSE: case RECOVERED_ERROR: |
| 114 | break; |
| 115 | case NOT_READY: |
| 116 | /* |
| 117 | * don't care about tray state messages for |
| 118 | * e.g. capacity commands or in-progress or |
| 119 | * becoming ready |
| 120 | */ |
| 121 | if (sense->asc == 0x3a || sense->asc == 0x04) |
| 122 | break; |
| 123 | log = 1; |
| 124 | break; |
| 125 | case ILLEGAL_REQUEST: |
| 126 | /* |
| 127 | * don't log START_STOP unit with LoEj set, since |
| 128 | * we cannot reliably check if drive can auto-close |
| 129 | */ |
| 130 | if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24) |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 131 | break; |
| 132 | log = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | break; |
| 134 | case UNIT_ATTENTION: |
| 135 | /* |
| 136 | * Make good and sure we've seen this potential media |
| 137 | * change. Some drives (i.e. Creative) fail to present |
| 138 | * the correct sense key in the error register. |
| 139 | */ |
| 140 | cdrom_saw_media_change(drive); |
| 141 | break; |
| 142 | default: |
| 143 | log = 1; |
| 144 | break; |
| 145 | } |
| 146 | return log; |
| 147 | } |
| 148 | |
| 149 | static |
| 150 | void cdrom_analyze_sense_data(ide_drive_t *drive, |
| 151 | struct request *failed_command, |
| 152 | struct request_sense *sense) |
| 153 | { |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 154 | unsigned long sector; |
| 155 | unsigned long bio_sectors; |
| 156 | unsigned long valid; |
| 157 | struct cdrom_info *info = drive->driver_data; |
| 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | if (!cdrom_log_sense(drive, failed_command, sense)) |
| 160 | return; |
| 161 | |
| 162 | /* |
| 163 | * If a read toc is executed for a CD-R or CD-RW medium where |
| 164 | * the first toc has not been recorded yet, it will fail with |
| 165 | * 05/24/00 (which is a confusing error) |
| 166 | */ |
| 167 | if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP) |
| 168 | if (sense->sense_key == 0x05 && sense->asc == 0x24) |
| 169 | return; |
| 170 | |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 171 | if (sense->error_code == 0x70) { /* Current Error */ |
| 172 | switch(sense->sense_key) { |
| 173 | case MEDIUM_ERROR: |
| 174 | case VOLUME_OVERFLOW: |
| 175 | case ILLEGAL_REQUEST: |
| 176 | if (!sense->valid) |
| 177 | break; |
| 178 | if (failed_command == NULL || |
| 179 | !blk_fs_request(failed_command)) |
| 180 | break; |
| 181 | sector = (sense->information[0] << 24) | |
| 182 | (sense->information[1] << 16) | |
| 183 | (sense->information[2] << 8) | |
| 184 | (sense->information[3]); |
| 185 | |
| 186 | bio_sectors = bio_sectors(failed_command->bio); |
| 187 | if (bio_sectors < 4) |
| 188 | bio_sectors = 4; |
| 189 | if (drive->queue->hardsect_size == 2048) |
| 190 | sector <<= 2; /* Device sector size is 2K */ |
| 191 | sector &= ~(bio_sectors -1); |
| 192 | valid = (sector - failed_command->sector) << 9; |
| 193 | |
| 194 | if (valid < 0) |
| 195 | valid = 0; |
| 196 | if (sector < get_capacity(info->disk) && |
| 197 | drive->probed_capacity - sector < 4 * 75) { |
| 198 | set_capacity(info->disk, sector); |
| 199 | } |
| 200 | } |
| 201 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Bartlomiej Zolnierkiewicz | 972560f | 2008-02-01 23:09:23 +0100 | [diff] [blame] | 203 | ide_cd_log_error(drive->name, failed_command, sense); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | /* |
| 207 | * Initialize a ide-cd packet command request |
| 208 | */ |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 209 | void ide_cd_init_rq(ide_drive_t *drive, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
| 211 | struct cdrom_info *cd = drive->driver_data; |
| 212 | |
| 213 | ide_init_drive_cmd(rq); |
Jens Axboe | cea2885 | 2006-10-12 15:08:45 +0200 | [diff] [blame] | 214 | rq->cmd_type = REQ_TYPE_ATA_PC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | rq->rq_disk = cd->disk; |
| 216 | } |
| 217 | |
| 218 | static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense, |
| 219 | struct request *failed_command) |
| 220 | { |
| 221 | struct cdrom_info *info = drive->driver_data; |
| 222 | struct request *rq = &info->request_sense_request; |
| 223 | |
| 224 | if (sense == NULL) |
| 225 | sense = &info->sense_data; |
| 226 | |
| 227 | /* stuff the sense request in front of our current request */ |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 228 | ide_cd_init_rq(drive, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
| 230 | rq->data = sense; |
| 231 | rq->cmd[0] = GPCMD_REQUEST_SENSE; |
| 232 | rq->cmd[4] = rq->data_len = 18; |
| 233 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 234 | rq->cmd_type = REQ_TYPE_SENSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
| 236 | /* NOTE! Save the failed command in "rq->buffer" */ |
| 237 | rq->buffer = (void *) failed_command; |
| 238 | |
| 239 | (void) ide_do_drive_cmd(drive, rq, ide_preempt); |
| 240 | } |
| 241 | |
| 242 | static void cdrom_end_request (ide_drive_t *drive, int uptodate) |
| 243 | { |
| 244 | struct request *rq = HWGROUP(drive)->rq; |
| 245 | int nsectors = rq->hard_cur_sectors; |
| 246 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 247 | if (blk_sense_request(rq) && uptodate) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | /* |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 249 | * For REQ_TYPE_SENSE, "rq->buffer" points to the original |
| 250 | * failed request |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | */ |
| 252 | struct request *failed = (struct request *) rq->buffer; |
| 253 | struct cdrom_info *info = drive->driver_data; |
| 254 | void *sense = &info->sense_data; |
| 255 | unsigned long flags; |
| 256 | |
| 257 | if (failed) { |
| 258 | if (failed->sense) { |
| 259 | sense = failed->sense; |
| 260 | failed->sense_len = rq->sense_len; |
| 261 | } |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 262 | cdrom_analyze_sense_data(drive, failed, sense); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | /* |
| 264 | * now end failed request |
| 265 | */ |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 266 | if (blk_fs_request(failed)) { |
| 267 | if (ide_end_dequeued_request(drive, failed, 0, |
| 268 | failed->hard_nr_sectors)) |
| 269 | BUG(); |
| 270 | } else { |
| 271 | spin_lock_irqsave(&ide_lock, flags); |
Kiyoshi Ueda | 5e36bb6 | 2008-01-28 10:34:20 +0100 | [diff] [blame] | 272 | if (__blk_end_request(failed, -EIO, |
| 273 | failed->data_len)) |
| 274 | BUG(); |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 275 | spin_unlock_irqrestore(&ide_lock, flags); |
| 276 | } |
| 277 | } else |
| 278 | cdrom_analyze_sense_data(drive, NULL, sense); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | if (!rq->current_nr_sectors && blk_fs_request(rq)) |
| 282 | uptodate = 1; |
| 283 | /* make sure it's fully ended */ |
| 284 | if (blk_pc_request(rq)) |
| 285 | nsectors = (rq->data_len + 511) >> 9; |
| 286 | if (!nsectors) |
| 287 | nsectors = 1; |
| 288 | |
| 289 | ide_end_request(drive, uptodate, nsectors); |
| 290 | } |
| 291 | |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 292 | static void ide_dump_status_no_sense(ide_drive_t *drive, const char *msg, u8 stat) |
| 293 | { |
| 294 | if (stat & 0x80) |
| 295 | return; |
| 296 | ide_dump_status(drive, msg, stat); |
| 297 | } |
| 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | /* Returns 0 if the request should be continued. |
| 300 | Returns 1 if the request was ended. */ |
| 301 | static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret) |
| 302 | { |
| 303 | struct request *rq = HWGROUP(drive)->rq; |
| 304 | int stat, err, sense_key; |
| 305 | |
| 306 | /* Check for errors. */ |
| 307 | stat = HWIF(drive)->INB(IDE_STATUS_REG); |
| 308 | if (stat_ret) |
| 309 | *stat_ret = stat; |
| 310 | |
| 311 | if (OK_STAT(stat, good_stat, BAD_R_STAT)) |
| 312 | return 0; |
| 313 | |
| 314 | /* Get the IDE error register. */ |
| 315 | err = HWIF(drive)->INB(IDE_ERROR_REG); |
| 316 | sense_key = err >> 4; |
| 317 | |
| 318 | if (rq == NULL) { |
| 319 | printk("%s: missing rq in cdrom_decode_status\n", drive->name); |
| 320 | return 1; |
| 321 | } |
| 322 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 323 | if (blk_sense_request(rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | /* We got an error trying to get sense info |
| 325 | from the drive (probably while trying |
| 326 | to recover from a former error). Just give up. */ |
| 327 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 328 | rq->cmd_flags |= REQ_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | cdrom_end_request(drive, 0); |
| 330 | ide_error(drive, "request sense failure", stat); |
| 331 | return 1; |
| 332 | |
Jens Axboe | 8770c01 | 2006-10-12 17:24:52 +0200 | [diff] [blame] | 333 | } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | /* All other functions, except for READ. */ |
| 335 | unsigned long flags; |
| 336 | |
| 337 | /* |
| 338 | * if we have an error, pass back CHECK_CONDITION as the |
| 339 | * scsi status byte |
| 340 | */ |
Jens Axboe | b715673 | 2006-11-13 18:05:02 +0100 | [diff] [blame] | 341 | if (blk_pc_request(rq) && !rq->errors) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | rq->errors = SAM_STAT_CHECK_CONDITION; |
| 343 | |
| 344 | /* Check for tray open. */ |
| 345 | if (sense_key == NOT_READY) { |
| 346 | cdrom_saw_media_change (drive); |
| 347 | } else if (sense_key == UNIT_ATTENTION) { |
| 348 | /* Check for media change. */ |
| 349 | cdrom_saw_media_change (drive); |
| 350 | /*printk("%s: media changed\n",drive->name);*/ |
| 351 | return 0; |
Stuart Hayes | 76ca1af | 2007-04-10 22:38:43 +0200 | [diff] [blame] | 352 | } else if ((sense_key == ILLEGAL_REQUEST) && |
| 353 | (rq->cmd[0] == GPCMD_START_STOP_UNIT)) { |
| 354 | /* |
| 355 | * Don't print error message for this condition-- |
| 356 | * SFF8090i indicates that 5/24/00 is the correct |
| 357 | * response to a request to close the tray if the |
| 358 | * drive doesn't have that capability. |
| 359 | * cdrom_log_sense() knows this! |
| 360 | */ |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 361 | } else if (!(rq->cmd_flags & REQ_QUIET)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | /* Otherwise, print an error. */ |
| 363 | ide_dump_status(drive, "packet command error", stat); |
| 364 | } |
| 365 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 366 | rq->cmd_flags |= REQ_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
| 368 | /* |
| 369 | * instead of playing games with moving completions around, |
| 370 | * remove failed request completely and end it when the |
| 371 | * request sense has completed |
| 372 | */ |
| 373 | if (stat & ERR_STAT) { |
| 374 | spin_lock_irqsave(&ide_lock, flags); |
| 375 | blkdev_dequeue_request(rq); |
| 376 | HWGROUP(drive)->rq = NULL; |
| 377 | spin_unlock_irqrestore(&ide_lock, flags); |
| 378 | |
| 379 | cdrom_queue_request_sense(drive, rq->sense, rq); |
| 380 | } else |
| 381 | cdrom_end_request(drive, 0); |
| 382 | |
| 383 | } else if (blk_fs_request(rq)) { |
| 384 | int do_end_request = 0; |
| 385 | |
| 386 | /* Handle errors from READ and WRITE requests. */ |
| 387 | |
| 388 | if (blk_noretry_request(rq)) |
| 389 | do_end_request = 1; |
| 390 | |
| 391 | if (sense_key == NOT_READY) { |
| 392 | /* Tray open. */ |
| 393 | if (rq_data_dir(rq) == READ) { |
| 394 | cdrom_saw_media_change (drive); |
| 395 | |
| 396 | /* Fail the request. */ |
| 397 | printk ("%s: tray open\n", drive->name); |
| 398 | do_end_request = 1; |
| 399 | } else { |
| 400 | struct cdrom_info *info = drive->driver_data; |
| 401 | |
| 402 | /* allow the drive 5 seconds to recover, some |
| 403 | * devices will return this error while flushing |
| 404 | * data from cache */ |
| 405 | if (!rq->errors) |
| 406 | info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY; |
| 407 | rq->errors = 1; |
| 408 | if (time_after(jiffies, info->write_timeout)) |
| 409 | do_end_request = 1; |
| 410 | else { |
| 411 | unsigned long flags; |
| 412 | |
| 413 | /* |
| 414 | * take a breather relying on the |
| 415 | * unplug timer to kick us again |
| 416 | */ |
| 417 | spin_lock_irqsave(&ide_lock, flags); |
| 418 | blk_plug_device(drive->queue); |
| 419 | spin_unlock_irqrestore(&ide_lock,flags); |
| 420 | return 1; |
| 421 | } |
| 422 | } |
| 423 | } else if (sense_key == UNIT_ATTENTION) { |
| 424 | /* Media change. */ |
| 425 | cdrom_saw_media_change (drive); |
| 426 | |
| 427 | /* Arrange to retry the request. |
| 428 | But be sure to give up if we've retried |
| 429 | too many times. */ |
| 430 | if (++rq->errors > ERROR_MAX) |
| 431 | do_end_request = 1; |
| 432 | } else if (sense_key == ILLEGAL_REQUEST || |
| 433 | sense_key == DATA_PROTECT) { |
| 434 | /* No point in retrying after an illegal |
| 435 | request or data protect error.*/ |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 436 | ide_dump_status_no_sense (drive, "command error", stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | do_end_request = 1; |
| 438 | } else if (sense_key == MEDIUM_ERROR) { |
| 439 | /* No point in re-trying a zillion times on a bad |
| 440 | * sector... If we got here the error is not correctable */ |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 441 | ide_dump_status_no_sense (drive, "media error (bad sector)", stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | do_end_request = 1; |
| 443 | } else if (sense_key == BLANK_CHECK) { |
| 444 | /* Disk appears blank ?? */ |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 445 | ide_dump_status_no_sense (drive, "media error (blank)", stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | do_end_request = 1; |
| 447 | } else if ((err & ~ABRT_ERR) != 0) { |
| 448 | /* Go to the default handler |
| 449 | for other errors. */ |
| 450 | ide_error(drive, "cdrom_decode_status", stat); |
| 451 | return 1; |
| 452 | } else if ((++rq->errors > ERROR_MAX)) { |
| 453 | /* We've racked up too many retries. Abort. */ |
| 454 | do_end_request = 1; |
| 455 | } |
| 456 | |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 457 | /* End a request through request sense analysis when we have |
| 458 | sense data. We need this in order to perform end of media |
| 459 | processing */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 461 | if (do_end_request) { |
| 462 | if (stat & ERR_STAT) { |
| 463 | unsigned long flags; |
| 464 | spin_lock_irqsave(&ide_lock, flags); |
| 465 | blkdev_dequeue_request(rq); |
| 466 | HWGROUP(drive)->rq = NULL; |
| 467 | spin_unlock_irqrestore(&ide_lock, flags); |
| 468 | |
| 469 | cdrom_queue_request_sense(drive, rq->sense, rq); |
| 470 | } else |
| 471 | cdrom_end_request(drive, 0); |
| 472 | } else { |
| 473 | /* If we got a CHECK_CONDITION status, |
| 474 | queue a request sense command. */ |
| 475 | if (stat & ERR_STAT) |
| 476 | cdrom_queue_request_sense(drive, NULL, NULL); |
| 477 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | } else { |
| 479 | blk_dump_rq_flags(rq, "ide-cd: bad rq"); |
| 480 | cdrom_end_request(drive, 0); |
| 481 | } |
| 482 | |
| 483 | /* Retry, or handle the next request. */ |
| 484 | return 1; |
| 485 | } |
| 486 | |
| 487 | static int cdrom_timer_expiry(ide_drive_t *drive) |
| 488 | { |
| 489 | struct request *rq = HWGROUP(drive)->rq; |
| 490 | unsigned long wait = 0; |
| 491 | |
| 492 | /* |
| 493 | * Some commands are *slow* and normally take a long time to |
| 494 | * complete. Usually we can use the ATAPI "disconnect" to bypass |
| 495 | * this, but not all commands/drives support that. Let |
| 496 | * ide_timer_expiry keep polling us for these. |
| 497 | */ |
| 498 | switch (rq->cmd[0]) { |
| 499 | case GPCMD_BLANK: |
| 500 | case GPCMD_FORMAT_UNIT: |
| 501 | case GPCMD_RESERVE_RZONE_TRACK: |
| 502 | case GPCMD_CLOSE_TRACK: |
| 503 | case GPCMD_FLUSH_CACHE: |
| 504 | wait = ATAPI_WAIT_PC; |
| 505 | break; |
| 506 | default: |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 507 | if (!(rq->cmd_flags & REQ_QUIET)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | printk(KERN_INFO "ide-cd: cmd 0x%x timed out\n", rq->cmd[0]); |
| 509 | wait = 0; |
| 510 | break; |
| 511 | } |
| 512 | return wait; |
| 513 | } |
| 514 | |
| 515 | /* Set up the device registers for transferring a packet command on DEV, |
| 516 | expecting to later transfer XFERLEN bytes. HANDLER is the routine |
| 517 | which actually transfers the command to the drive. If this is a |
| 518 | drq_interrupt device, this routine will arrange for HANDLER to be |
| 519 | called when the interrupt from the drive arrives. Otherwise, HANDLER |
| 520 | will be called immediately after the drive is prepared for the transfer. */ |
| 521 | |
| 522 | static ide_startstop_t cdrom_start_packet_command(ide_drive_t *drive, |
| 523 | int xferlen, |
| 524 | ide_handler_t *handler) |
| 525 | { |
| 526 | ide_startstop_t startstop; |
| 527 | struct cdrom_info *info = drive->driver_data; |
| 528 | ide_hwif_t *hwif = drive->hwif; |
| 529 | |
| 530 | /* Wait for the controller to be idle. */ |
| 531 | if (ide_wait_stat(&startstop, drive, 0, BUSY_STAT, WAIT_READY)) |
| 532 | return startstop; |
| 533 | |
Bartlomiej Zolnierkiewicz | 3a6a354 | 2008-01-25 22:17:13 +0100 | [diff] [blame] | 534 | /* FIXME: for Virtual DMA we must check harder */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | if (info->dma) |
| 536 | info->dma = !hwif->dma_setup(drive); |
| 537 | |
| 538 | /* Set up the controller registers. */ |
Bartlomiej Zolnierkiewicz | 2fc5738 | 2008-01-25 22:17:13 +0100 | [diff] [blame] | 539 | ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL | |
| 540 | IDE_TFLAG_NO_SELECT_MASK, xferlen, info->dma); |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 541 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 542 | if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) { |
Albert Lee | f0dd871 | 2007-02-17 02:40:21 +0100 | [diff] [blame] | 543 | /* waiting for CDB interrupt, not DMA yet. */ |
| 544 | if (info->dma) |
| 545 | drive->waiting_for_dma = 0; |
| 546 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | /* packet command */ |
| 548 | ide_execute_command(drive, WIN_PACKETCMD, handler, ATAPI_WAIT_PC, cdrom_timer_expiry); |
| 549 | return ide_started; |
| 550 | } else { |
| 551 | unsigned long flags; |
| 552 | |
| 553 | /* packet command */ |
| 554 | spin_lock_irqsave(&ide_lock, flags); |
| 555 | hwif->OUTBSYNC(drive, WIN_PACKETCMD, IDE_COMMAND_REG); |
| 556 | ndelay(400); |
| 557 | spin_unlock_irqrestore(&ide_lock, flags); |
| 558 | |
| 559 | return (*handler) (drive); |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | /* Send a packet command to DRIVE described by CMD_BUF and CMD_LEN. |
| 564 | The device registers must have already been prepared |
| 565 | by cdrom_start_packet_command. |
| 566 | HANDLER is the interrupt handler to call when the command completes |
| 567 | or there's data ready. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | #define ATAPI_MIN_CDB_BYTES 12 |
| 569 | static ide_startstop_t cdrom_transfer_packet_command (ide_drive_t *drive, |
| 570 | struct request *rq, |
| 571 | ide_handler_t *handler) |
| 572 | { |
| 573 | ide_hwif_t *hwif = drive->hwif; |
| 574 | int cmd_len; |
| 575 | struct cdrom_info *info = drive->driver_data; |
| 576 | ide_startstop_t startstop; |
| 577 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 578 | if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | /* Here we should have been called after receiving an interrupt |
| 580 | from the device. DRQ should how be set. */ |
| 581 | |
| 582 | /* Check for errors. */ |
| 583 | if (cdrom_decode_status(drive, DRQ_STAT, NULL)) |
| 584 | return ide_stopped; |
Albert Lee | f0dd871 | 2007-02-17 02:40:21 +0100 | [diff] [blame] | 585 | |
| 586 | /* Ok, next interrupt will be DMA interrupt. */ |
| 587 | if (info->dma) |
| 588 | drive->waiting_for_dma = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | } else { |
| 590 | /* Otherwise, we must wait for DRQ to get set. */ |
| 591 | if (ide_wait_stat(&startstop, drive, DRQ_STAT, |
| 592 | BUSY_STAT, WAIT_READY)) |
| 593 | return startstop; |
| 594 | } |
| 595 | |
| 596 | /* Arm the interrupt handler. */ |
| 597 | ide_set_handler(drive, handler, rq->timeout, cdrom_timer_expiry); |
| 598 | |
| 599 | /* ATAPI commands get padded out to 12 bytes minimum */ |
| 600 | cmd_len = COMMAND_SIZE(rq->cmd[0]); |
| 601 | if (cmd_len < ATAPI_MIN_CDB_BYTES) |
| 602 | cmd_len = ATAPI_MIN_CDB_BYTES; |
| 603 | |
| 604 | /* Send the command to the device. */ |
| 605 | HWIF(drive)->atapi_output_bytes(drive, rq->cmd, cmd_len); |
| 606 | |
| 607 | /* Start the DMA if need be */ |
| 608 | if (info->dma) |
| 609 | hwif->dma_start(drive); |
| 610 | |
| 611 | return ide_started; |
| 612 | } |
| 613 | |
| 614 | /**************************************************************************** |
| 615 | * Block read functions. |
| 616 | */ |
| 617 | |
Bartlomiej Zolnierkiewicz | 68661c5 | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 618 | typedef void (xfer_func_t)(ide_drive_t *, void *, u32); |
| 619 | |
Bartlomiej Zolnierkiewicz | 5a5222d | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 620 | static void ide_cd_pad_transfer(ide_drive_t *drive, xfer_func_t *xf, int len) |
| 621 | { |
| 622 | while (len > 0) { |
| 623 | int dum = 0; |
| 624 | xf(drive, &dum, sizeof(dum)); |
| 625 | len -= sizeof(dum); |
| 626 | } |
| 627 | } |
| 628 | |
Bartlomiej Zolnierkiewicz | b4ab726 | 2008-02-01 23:09:26 +0100 | [diff] [blame] | 629 | static void ide_cd_drain_data(ide_drive_t *drive, int nsects) |
| 630 | { |
| 631 | while (nsects > 0) { |
| 632 | static char dum[SECTOR_SIZE]; |
| 633 | |
| 634 | drive->hwif->atapi_input_bytes(drive, dum, sizeof(dum)); |
| 635 | nsects--; |
| 636 | } |
| 637 | } |
| 638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | /* |
| 640 | * Buffer up to SECTORS_TO_TRANSFER sectors from the drive in our sector |
| 641 | * buffer. Once the first sector is added, any subsequent sectors are |
| 642 | * assumed to be continuous (until the buffer is cleared). For the first |
| 643 | * sector added, SECTOR is its sector number. (SECTOR is then ignored until |
| 644 | * the buffer is cleared.) |
| 645 | */ |
| 646 | static void cdrom_buffer_sectors (ide_drive_t *drive, unsigned long sector, |
| 647 | int sectors_to_transfer) |
| 648 | { |
| 649 | struct cdrom_info *info = drive->driver_data; |
| 650 | |
| 651 | /* Number of sectors to read into the buffer. */ |
| 652 | int sectors_to_buffer = min_t(int, sectors_to_transfer, |
| 653 | (SECTOR_BUFFER_SIZE >> SECTOR_BITS) - |
| 654 | info->nsectors_buffered); |
| 655 | |
| 656 | char *dest; |
| 657 | |
| 658 | /* If we couldn't get a buffer, don't try to buffer anything... */ |
| 659 | if (info->buffer == NULL) |
| 660 | sectors_to_buffer = 0; |
| 661 | |
| 662 | /* If this is the first sector in the buffer, remember its number. */ |
| 663 | if (info->nsectors_buffered == 0) |
| 664 | info->sector_buffered = sector; |
| 665 | |
| 666 | /* Read the data into the buffer. */ |
| 667 | dest = info->buffer + info->nsectors_buffered * SECTOR_SIZE; |
| 668 | while (sectors_to_buffer > 0) { |
| 669 | HWIF(drive)->atapi_input_bytes(drive, dest, SECTOR_SIZE); |
| 670 | --sectors_to_buffer; |
| 671 | --sectors_to_transfer; |
| 672 | ++info->nsectors_buffered; |
| 673 | dest += SECTOR_SIZE; |
| 674 | } |
| 675 | |
| 676 | /* Throw away any remaining data. */ |
Bartlomiej Zolnierkiewicz | b4ab726 | 2008-02-01 23:09:26 +0100 | [diff] [blame] | 677 | ide_cd_drain_data(drive, sectors_to_transfer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | /* |
| 681 | * Check the contents of the interrupt reason register from the cdrom |
| 682 | * and attempt to recover if there are problems. Returns 0 if everything's |
| 683 | * ok; nonzero if the request has been terminated. |
| 684 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 685 | static |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | int cdrom_read_check_ireason (ide_drive_t *drive, int len, int ireason) |
| 687 | { |
| 688 | if (ireason == 2) |
| 689 | return 0; |
| 690 | else if (ireason == 0) { |
Bartlomiej Zolnierkiewicz | 5a5222d | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 691 | ide_hwif_t *hwif = drive->hwif; |
| 692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | /* Whoops... The drive is expecting to receive data from us! */ |
Bartlomiej Zolnierkiewicz | 35379c0 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 694 | printk(KERN_ERR "%s: %s: wrong transfer direction!\n", |
| 695 | drive->name, __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
| 697 | /* Throw some data at the drive so it doesn't hang |
| 698 | and quit this request. */ |
Bartlomiej Zolnierkiewicz | 5a5222d | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 699 | ide_cd_pad_transfer(drive, hwif->atapi_output_bytes, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } else if (ireason == 1) { |
| 701 | /* Some drives (ASUS) seem to tell us that status |
| 702 | * info is available. just get it and ignore. |
| 703 | */ |
| 704 | (void) HWIF(drive)->INB(IDE_STATUS_REG); |
| 705 | return 0; |
| 706 | } else { |
| 707 | /* Drive wants a command packet, or invalid ireason... */ |
Bartlomiej Zolnierkiewicz | 35379c0 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 708 | printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n", |
| 709 | drive->name, __FUNCTION__, ireason); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | cdrom_end_request(drive, 0); |
| 713 | return -1; |
| 714 | } |
| 715 | |
| 716 | /* |
Bartlomiej Zolnierkiewicz | 64814f2 | 2008-02-01 23:09:26 +0100 | [diff] [blame^] | 717 | * Assume that the drive will always provide data in multiples of at least |
| 718 | * SECTOR_SIZE, as it gets hairy to keep track of the transfers otherwise. |
| 719 | */ |
| 720 | static int ide_cd_check_transfer_size(ide_drive_t *drive, int len) |
| 721 | { |
| 722 | struct cdrom_info *cd = drive->driver_data; |
| 723 | |
| 724 | if ((len % SECTOR_SIZE) == 0) |
| 725 | return 0; |
| 726 | |
| 727 | printk(KERN_ERR "%s: %s: Bad transfer size %d\n", |
| 728 | drive->name, __FUNCTION__, len); |
| 729 | |
| 730 | if (cd->cd_flags & IDE_CD_FLAG_LIMIT_NFRAMES) |
| 731 | printk(KERN_ERR " This drive is not supported by " |
| 732 | "this version of the driver\n"); |
| 733 | else { |
| 734 | printk(KERN_ERR " Trying to limit transfer sizes\n"); |
| 735 | cd->cd_flags |= IDE_CD_FLAG_LIMIT_NFRAMES; |
| 736 | } |
| 737 | |
| 738 | return 1; |
| 739 | } |
| 740 | |
| 741 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | * Interrupt routine. Called when a read request has completed. |
| 743 | */ |
| 744 | static ide_startstop_t cdrom_read_intr (ide_drive_t *drive) |
| 745 | { |
| 746 | int stat; |
| 747 | int ireason, len, sectors_to_transfer, nskip; |
| 748 | struct cdrom_info *info = drive->driver_data; |
| 749 | u8 lowcyl = 0, highcyl = 0; |
| 750 | int dma = info->dma, dma_error = 0; |
| 751 | |
| 752 | struct request *rq = HWGROUP(drive)->rq; |
| 753 | |
| 754 | /* |
| 755 | * handle dma case |
| 756 | */ |
| 757 | if (dma) { |
| 758 | info->dma = 0; |
Bartlomiej Zolnierkiewicz | 52ef2ed | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 759 | dma_error = HWIF(drive)->ide_dma_end(drive); |
| 760 | if (dma_error) { |
| 761 | printk(KERN_ERR "%s: DMA read error\n", drive->name); |
Bartlomiej Zolnierkiewicz | 7469aaf | 2007-02-17 02:40:26 +0100 | [diff] [blame] | 762 | ide_dma_off(drive); |
Bartlomiej Zolnierkiewicz | 52ef2ed | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 763 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | if (cdrom_decode_status(drive, 0, &stat)) |
| 767 | return ide_stopped; |
| 768 | |
| 769 | if (dma) { |
| 770 | if (!dma_error) { |
| 771 | ide_end_request(drive, 1, rq->nr_sectors); |
| 772 | return ide_stopped; |
| 773 | } else |
| 774 | return ide_error(drive, "dma error", stat); |
| 775 | } |
| 776 | |
| 777 | /* Read the interrupt reason and the transfer length. */ |
| 778 | ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3; |
| 779 | lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG); |
| 780 | highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG); |
| 781 | |
| 782 | len = lowcyl + (256 * highcyl); |
| 783 | |
| 784 | /* If DRQ is clear, the command has completed. */ |
| 785 | if ((stat & DRQ_STAT) == 0) { |
| 786 | /* If we're not done filling the current buffer, complain. |
| 787 | Otherwise, complete the command normally. */ |
| 788 | if (rq->current_nr_sectors > 0) { |
| 789 | printk (KERN_ERR "%s: cdrom_read_intr: data underrun (%d blocks)\n", |
| 790 | drive->name, rq->current_nr_sectors); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 791 | rq->cmd_flags |= REQ_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | cdrom_end_request(drive, 0); |
| 793 | } else |
| 794 | cdrom_end_request(drive, 1); |
| 795 | return ide_stopped; |
| 796 | } |
| 797 | |
| 798 | /* Check that the drive is expecting to do the same thing we are. */ |
| 799 | if (cdrom_read_check_ireason (drive, len, ireason)) |
| 800 | return ide_stopped; |
| 801 | |
Bartlomiej Zolnierkiewicz | 64814f2 | 2008-02-01 23:09:26 +0100 | [diff] [blame^] | 802 | if (ide_cd_check_transfer_size(drive, len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | cdrom_end_request(drive, 0); |
| 804 | return ide_stopped; |
| 805 | } |
| 806 | |
| 807 | /* The number of sectors we need to read from the drive. */ |
| 808 | sectors_to_transfer = len / SECTOR_SIZE; |
| 809 | |
| 810 | /* First, figure out if we need to bit-bucket |
| 811 | any of the leading sectors. */ |
| 812 | nskip = min_t(int, rq->current_nr_sectors - bio_cur_sectors(rq->bio), sectors_to_transfer); |
| 813 | |
Bartlomiej Zolnierkiewicz | b4ab726 | 2008-02-01 23:09:26 +0100 | [diff] [blame] | 814 | if (nskip > 0) { |
| 815 | ide_cd_drain_data(drive, nskip); |
| 816 | rq->current_nr_sectors -= nskip; |
| 817 | sectors_to_transfer -= nskip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | /* Now loop while we still have data to read from the drive. */ |
| 821 | while (sectors_to_transfer > 0) { |
| 822 | int this_transfer; |
| 823 | |
| 824 | /* If we've filled the present buffer but there's another |
| 825 | chained buffer after it, move on. */ |
| 826 | if (rq->current_nr_sectors == 0 && rq->nr_sectors) |
| 827 | cdrom_end_request(drive, 1); |
| 828 | |
| 829 | /* If the buffers are full, cache the rest of the data in our |
| 830 | internal buffer. */ |
| 831 | if (rq->current_nr_sectors == 0) { |
| 832 | cdrom_buffer_sectors(drive, rq->sector, sectors_to_transfer); |
| 833 | sectors_to_transfer = 0; |
| 834 | } else { |
| 835 | /* Transfer data to the buffers. |
| 836 | Figure out how many sectors we can transfer |
| 837 | to the current buffer. */ |
| 838 | this_transfer = min_t(int, sectors_to_transfer, |
| 839 | rq->current_nr_sectors); |
| 840 | |
| 841 | /* Read this_transfer sectors |
| 842 | into the current buffer. */ |
| 843 | while (this_transfer > 0) { |
| 844 | HWIF(drive)->atapi_input_bytes(drive, rq->buffer, SECTOR_SIZE); |
| 845 | rq->buffer += SECTOR_SIZE; |
| 846 | --rq->nr_sectors; |
| 847 | --rq->current_nr_sectors; |
| 848 | ++rq->sector; |
| 849 | --this_transfer; |
| 850 | --sectors_to_transfer; |
| 851 | } |
| 852 | } |
| 853 | } |
| 854 | |
| 855 | /* Done moving data! Wait for another interrupt. */ |
| 856 | ide_set_handler(drive, &cdrom_read_intr, ATAPI_WAIT_PC, NULL); |
| 857 | return ide_started; |
| 858 | } |
| 859 | |
| 860 | /* |
| 861 | * Try to satisfy some of the current read request from our cached data. |
| 862 | * Returns nonzero if the request has been completed, zero otherwise. |
| 863 | */ |
| 864 | static int cdrom_read_from_buffer (ide_drive_t *drive) |
| 865 | { |
| 866 | struct cdrom_info *info = drive->driver_data; |
| 867 | struct request *rq = HWGROUP(drive)->rq; |
| 868 | unsigned short sectors_per_frame; |
| 869 | |
| 870 | sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS; |
| 871 | |
| 872 | /* Can't do anything if there's no buffer. */ |
| 873 | if (info->buffer == NULL) return 0; |
| 874 | |
| 875 | /* Loop while this request needs data and the next block is present |
| 876 | in our cache. */ |
| 877 | while (rq->nr_sectors > 0 && |
| 878 | rq->sector >= info->sector_buffered && |
| 879 | rq->sector < info->sector_buffered + info->nsectors_buffered) { |
| 880 | if (rq->current_nr_sectors == 0) |
| 881 | cdrom_end_request(drive, 1); |
| 882 | |
| 883 | memcpy (rq->buffer, |
| 884 | info->buffer + |
| 885 | (rq->sector - info->sector_buffered) * SECTOR_SIZE, |
| 886 | SECTOR_SIZE); |
| 887 | rq->buffer += SECTOR_SIZE; |
| 888 | --rq->current_nr_sectors; |
| 889 | --rq->nr_sectors; |
| 890 | ++rq->sector; |
| 891 | } |
| 892 | |
| 893 | /* If we've satisfied the current request, |
| 894 | terminate it successfully. */ |
| 895 | if (rq->nr_sectors == 0) { |
| 896 | cdrom_end_request(drive, 1); |
| 897 | return -1; |
| 898 | } |
| 899 | |
| 900 | /* Move on to the next buffer if needed. */ |
| 901 | if (rq->current_nr_sectors == 0) |
| 902 | cdrom_end_request(drive, 1); |
| 903 | |
| 904 | /* If this condition does not hold, then the kluge i use to |
| 905 | represent the number of sectors to skip at the start of a transfer |
| 906 | will fail. I think that this will never happen, but let's be |
| 907 | paranoid and check. */ |
| 908 | if (rq->current_nr_sectors < bio_cur_sectors(rq->bio) && |
| 909 | (rq->sector & (sectors_per_frame - 1))) { |
| 910 | printk(KERN_ERR "%s: cdrom_read_from_buffer: buffer botch (%ld)\n", |
| 911 | drive->name, (long)rq->sector); |
| 912 | cdrom_end_request(drive, 0); |
| 913 | return -1; |
| 914 | } |
| 915 | |
| 916 | return 0; |
| 917 | } |
| 918 | |
| 919 | /* |
| 920 | * Routine to send a read packet command to the drive. |
| 921 | * This is usually called directly from cdrom_start_read. |
| 922 | * However, for drq_interrupt devices, it is called from an interrupt |
| 923 | * when the drive is ready to accept the command. |
| 924 | */ |
| 925 | static ide_startstop_t cdrom_start_read_continuation (ide_drive_t *drive) |
| 926 | { |
| 927 | struct request *rq = HWGROUP(drive)->rq; |
| 928 | unsigned short sectors_per_frame; |
| 929 | int nskip; |
| 930 | |
| 931 | sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS; |
| 932 | |
| 933 | /* If the requested sector doesn't start on a cdrom block boundary, |
| 934 | we must adjust the start of the transfer so that it does, |
| 935 | and remember to skip the first few sectors. |
| 936 | If the CURRENT_NR_SECTORS field is larger than the size |
| 937 | of the buffer, it will mean that we're to skip a number |
| 938 | of sectors equal to the amount by which CURRENT_NR_SECTORS |
| 939 | is larger than the buffer size. */ |
| 940 | nskip = rq->sector & (sectors_per_frame - 1); |
| 941 | if (nskip > 0) { |
| 942 | /* Sanity check... */ |
| 943 | if (rq->current_nr_sectors != bio_cur_sectors(rq->bio) && |
| 944 | (rq->sector & (sectors_per_frame - 1))) { |
| 945 | printk(KERN_ERR "%s: cdrom_start_read_continuation: buffer botch (%u)\n", |
| 946 | drive->name, rq->current_nr_sectors); |
| 947 | cdrom_end_request(drive, 0); |
| 948 | return ide_stopped; |
| 949 | } |
| 950 | rq->current_nr_sectors += nskip; |
| 951 | } |
| 952 | |
| 953 | /* Set up the command */ |
| 954 | rq->timeout = ATAPI_WAIT_PC; |
| 955 | |
| 956 | /* Send the command to the drive and return. */ |
| 957 | return cdrom_transfer_packet_command(drive, rq, &cdrom_read_intr); |
| 958 | } |
| 959 | |
| 960 | |
| 961 | #define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */ |
| 962 | #define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */ |
| 963 | #define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */ |
| 964 | |
| 965 | static ide_startstop_t cdrom_seek_intr (ide_drive_t *drive) |
| 966 | { |
| 967 | struct cdrom_info *info = drive->driver_data; |
| 968 | int stat; |
| 969 | static int retry = 10; |
| 970 | |
| 971 | if (cdrom_decode_status(drive, 0, &stat)) |
| 972 | return ide_stopped; |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 973 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 974 | info->cd_flags |= IDE_CD_FLAG_SEEKING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
| 976 | if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) { |
| 977 | if (--retry == 0) { |
| 978 | /* |
| 979 | * this condition is far too common, to bother |
| 980 | * users about it |
| 981 | */ |
| 982 | /* printk("%s: disabled DSC seek overlap\n", drive->name);*/ |
| 983 | drive->dsc_overlap = 0; |
| 984 | } |
| 985 | } |
| 986 | return ide_stopped; |
| 987 | } |
| 988 | |
| 989 | static ide_startstop_t cdrom_start_seek_continuation (ide_drive_t *drive) |
| 990 | { |
| 991 | struct request *rq = HWGROUP(drive)->rq; |
| 992 | sector_t frame = rq->sector; |
| 993 | |
| 994 | sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS); |
| 995 | |
| 996 | memset(rq->cmd, 0, sizeof(rq->cmd)); |
| 997 | rq->cmd[0] = GPCMD_SEEK; |
| 998 | put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]); |
| 999 | |
| 1000 | rq->timeout = ATAPI_WAIT_PC; |
| 1001 | return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr); |
| 1002 | } |
| 1003 | |
| 1004 | static ide_startstop_t cdrom_start_seek (ide_drive_t *drive, unsigned int block) |
| 1005 | { |
| 1006 | struct cdrom_info *info = drive->driver_data; |
| 1007 | |
| 1008 | info->dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | info->start_seek = jiffies; |
| 1010 | return cdrom_start_packet_command(drive, 0, cdrom_start_seek_continuation); |
| 1011 | } |
| 1012 | |
| 1013 | /* Fix up a possibly partially-processed request so that we can |
| 1014 | start it over entirely, or even put it back on the request queue. */ |
| 1015 | static void restore_request (struct request *rq) |
| 1016 | { |
| 1017 | if (rq->buffer != bio_data(rq->bio)) { |
| 1018 | sector_t n = (rq->buffer - (char *) bio_data(rq->bio)) / SECTOR_SIZE; |
| 1019 | |
| 1020 | rq->buffer = bio_data(rq->bio); |
| 1021 | rq->nr_sectors += n; |
| 1022 | rq->sector -= n; |
| 1023 | } |
| 1024 | rq->hard_cur_sectors = rq->current_nr_sectors = bio_cur_sectors(rq->bio); |
| 1025 | rq->hard_nr_sectors = rq->nr_sectors; |
| 1026 | rq->hard_sector = rq->sector; |
| 1027 | rq->q->prep_rq_fn(rq->q, rq); |
| 1028 | } |
| 1029 | |
| 1030 | /* |
| 1031 | * Start a read request from the CD-ROM. |
| 1032 | */ |
| 1033 | static ide_startstop_t cdrom_start_read (ide_drive_t *drive, unsigned int block) |
| 1034 | { |
| 1035 | struct cdrom_info *info = drive->driver_data; |
| 1036 | struct request *rq = HWGROUP(drive)->rq; |
| 1037 | unsigned short sectors_per_frame; |
| 1038 | |
| 1039 | sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS; |
| 1040 | |
| 1041 | /* We may be retrying this request after an error. Fix up |
| 1042 | any weirdness which might be present in the request packet. */ |
| 1043 | restore_request(rq); |
| 1044 | |
| 1045 | /* Satisfy whatever we can of this request from our cached sector. */ |
| 1046 | if (cdrom_read_from_buffer(drive)) |
| 1047 | return ide_stopped; |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | /* Clear the local sector buffer. */ |
| 1050 | info->nsectors_buffered = 0; |
| 1051 | |
| 1052 | /* use dma, if possible. */ |
| 1053 | info->dma = drive->using_dma; |
| 1054 | if ((rq->sector & (sectors_per_frame - 1)) || |
| 1055 | (rq->nr_sectors & (sectors_per_frame - 1))) |
| 1056 | info->dma = 0; |
| 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | /* Start sending the read request to the drive. */ |
| 1059 | return cdrom_start_packet_command(drive, 32768, cdrom_start_read_continuation); |
| 1060 | } |
| 1061 | |
| 1062 | /**************************************************************************** |
| 1063 | * Execute all other packet commands. |
| 1064 | */ |
| 1065 | |
Bartlomiej Zolnierkiewicz | 8ee69f5 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1066 | static void ide_cd_request_sense_fixup(struct request *rq) |
| 1067 | { |
| 1068 | /* |
| 1069 | * Some of the trailing request sense fields are optional, |
| 1070 | * and some drives don't send them. Sigh. |
| 1071 | */ |
| 1072 | if (rq->cmd[0] == GPCMD_REQUEST_SENSE && |
| 1073 | rq->data_len > 0 && rq->data_len <= 5) |
| 1074 | while (rq->data_len > 0) { |
| 1075 | *(u8 *)rq->data++ = 0; |
| 1076 | --rq->data_len; |
| 1077 | } |
| 1078 | } |
| 1079 | |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1080 | int ide_cd_queue_pc(ide_drive_t *drive, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | { |
| 1082 | struct request_sense sense; |
| 1083 | int retries = 10; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1084 | unsigned int flags = rq->cmd_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | |
| 1086 | if (rq->sense == NULL) |
| 1087 | rq->sense = &sense; |
| 1088 | |
| 1089 | /* Start of retry loop. */ |
| 1090 | do { |
| 1091 | int error; |
| 1092 | unsigned long time = jiffies; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1093 | rq->cmd_flags = flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | |
| 1095 | error = ide_do_drive_cmd(drive, rq, ide_wait); |
| 1096 | time = jiffies - time; |
| 1097 | |
| 1098 | /* FIXME: we should probably abort/retry or something |
| 1099 | * in case of failure */ |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1100 | if (rq->cmd_flags & REQ_FAILED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | /* The request failed. Retry if it was due to a unit |
| 1102 | attention status |
| 1103 | (usually means media was changed). */ |
| 1104 | struct request_sense *reqbuf = rq->sense; |
| 1105 | |
| 1106 | if (reqbuf->sense_key == UNIT_ATTENTION) |
| 1107 | cdrom_saw_media_change(drive); |
| 1108 | else if (reqbuf->sense_key == NOT_READY && |
| 1109 | reqbuf->asc == 4 && reqbuf->ascq != 4) { |
| 1110 | /* The drive is in the process of loading |
| 1111 | a disk. Retry, but wait a little to give |
| 1112 | the drive time to complete the load. */ |
| 1113 | ssleep(2); |
| 1114 | } else { |
| 1115 | /* Otherwise, don't retry. */ |
| 1116 | retries = 0; |
| 1117 | } |
| 1118 | --retries; |
| 1119 | } |
| 1120 | |
| 1121 | /* End of retry loop. */ |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1122 | } while ((rq->cmd_flags & REQ_FAILED) && retries >= 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | |
| 1124 | /* Return an error if the command failed. */ |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1125 | return (rq->cmd_flags & REQ_FAILED) ? -EIO : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | /* |
| 1129 | * Write handling |
| 1130 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 1131 | static int cdrom_write_check_ireason(ide_drive_t *drive, int len, int ireason) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | { |
| 1133 | /* Two notes about IDE interrupt reason here - 0 means that |
| 1134 | * the drive wants to receive data from us, 2 means that |
| 1135 | * the drive is expecting to transfer data to us. |
| 1136 | */ |
| 1137 | if (ireason == 0) |
| 1138 | return 0; |
| 1139 | else if (ireason == 2) { |
Bartlomiej Zolnierkiewicz | 5a5222d | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 1140 | ide_hwif_t *hwif = drive->hwif; |
| 1141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | /* Whoops... The drive wants to send data. */ |
Bartlomiej Zolnierkiewicz | 35379c0 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 1143 | printk(KERN_ERR "%s: %s: wrong transfer direction!\n", |
| 1144 | drive->name, __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
Bartlomiej Zolnierkiewicz | 5a5222d | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 1146 | ide_cd_pad_transfer(drive, hwif->atapi_input_bytes, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | } else { |
| 1148 | /* Drive wants a command packet, or invalid ireason... */ |
Bartlomiej Zolnierkiewicz | 35379c0 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 1149 | printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n", |
| 1150 | drive->name, __FUNCTION__, ireason); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | cdrom_end_request(drive, 0); |
| 1154 | return 1; |
| 1155 | } |
| 1156 | |
Kiyoshi Ueda | aaa04c2 | 2007-12-11 17:51:23 -0500 | [diff] [blame] | 1157 | /* |
| 1158 | * Called from blk_end_request_callback() after the data of the request |
| 1159 | * is completed and before the request is completed. |
| 1160 | * By returning value '1', blk_end_request_callback() returns immediately |
| 1161 | * without completing the request. |
| 1162 | */ |
| 1163 | static int cdrom_newpc_intr_dummy_cb(struct request *rq) |
| 1164 | { |
| 1165 | return 1; |
| 1166 | } |
| 1167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | /* |
| 1169 | * best way to deal with dma that is not sector aligned right now... note |
| 1170 | * that in this path we are not using ->data or ->buffer at all. this irs |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1171 | * can replace cdrom_read_intr() and cdrom_write_intr() in the future. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | */ |
| 1173 | static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive) |
| 1174 | { |
| 1175 | struct cdrom_info *info = drive->driver_data; |
| 1176 | struct request *rq = HWGROUP(drive)->rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | xfer_func_t *xferfunc; |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1178 | ide_expiry_t *expiry; |
| 1179 | int dma_error = 0, dma, stat, ireason, len, thislen, uptodate = 0; |
| 1180 | int write = (rq_data_dir(rq) == WRITE) ? 1 : 0; |
| 1181 | unsigned int timeout; |
| 1182 | u8 lowcyl, highcyl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | |
| 1184 | /* Check for errors. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | dma = info->dma; |
| 1186 | if (dma) { |
| 1187 | info->dma = 0; |
| 1188 | dma_error = HWIF(drive)->ide_dma_end(drive); |
Bartlomiej Zolnierkiewicz | eba15fb | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 1189 | if (dma_error) { |
| 1190 | printk(KERN_ERR "%s: DMA %s error\n", drive->name, |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1191 | write ? "write" : "read"); |
Bartlomiej Zolnierkiewicz | eba15fb | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 1192 | ide_dma_off(drive); |
| 1193 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | } |
| 1195 | |
| 1196 | if (cdrom_decode_status(drive, 0, &stat)) |
| 1197 | return ide_stopped; |
| 1198 | |
| 1199 | /* |
| 1200 | * using dma, transfer is complete now |
| 1201 | */ |
| 1202 | if (dma) { |
Bartlomiej Zolnierkiewicz | eba15fb | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 1203 | if (dma_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | return ide_error(drive, "dma error", stat); |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1205 | goto end_request; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | } |
| 1207 | |
| 1208 | /* |
| 1209 | * ok we fall to pio :/ |
| 1210 | */ |
| 1211 | ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3; |
| 1212 | lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG); |
| 1213 | highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG); |
| 1214 | |
| 1215 | len = lowcyl + (256 * highcyl); |
| 1216 | thislen = rq->data_len; |
| 1217 | if (thislen > len) |
| 1218 | thislen = len; |
| 1219 | |
| 1220 | /* |
| 1221 | * If DRQ is clear, the command has completed. |
| 1222 | */ |
Kiyoshi Ueda | aaa04c2 | 2007-12-11 17:51:23 -0500 | [diff] [blame] | 1223 | if ((stat & DRQ_STAT) == 0) { |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1224 | if (!blk_pc_request(rq)) { |
| 1225 | ide_cd_request_sense_fixup(rq); |
| 1226 | /* Complain if we still have data left to transfer. */ |
| 1227 | uptodate = rq->data_len ? 0 : 1; |
| 1228 | } |
| 1229 | goto end_request; |
Kiyoshi Ueda | aaa04c2 | 2007-12-11 17:51:23 -0500 | [diff] [blame] | 1230 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | |
| 1232 | /* |
| 1233 | * check which way to transfer data |
| 1234 | */ |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1235 | if (blk_pc_request(rq) && rq_data_dir(rq) == WRITE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | /* |
| 1237 | * write to drive |
| 1238 | */ |
| 1239 | if (cdrom_write_check_ireason(drive, len, ireason)) |
| 1240 | return ide_stopped; |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1241 | } else if (blk_pc_request(rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | /* |
| 1243 | * read from drive |
| 1244 | */ |
| 1245 | if (cdrom_read_check_ireason(drive, len, ireason)) |
| 1246 | return ide_stopped; |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1247 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1249 | if (ireason == 0) { |
| 1250 | write = 1; |
| 1251 | xferfunc = HWIF(drive)->atapi_output_bytes; |
| 1252 | } else if (ireason == 2 || (ireason == 1 && blk_pc_request(rq))) { |
| 1253 | write = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | xferfunc = HWIF(drive)->atapi_input_bytes; |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1255 | } else { |
| 1256 | printk(KERN_ERR "%s: %s: The drive " |
| 1257 | "appears confused (ireason = 0x%02x). " |
| 1258 | "Trying to recover by ending request.\n", |
| 1259 | drive->name, __FUNCTION__, ireason); |
| 1260 | goto end_request; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | } |
| 1262 | |
| 1263 | /* |
| 1264 | * transfer data |
| 1265 | */ |
| 1266 | while (thislen > 0) { |
| 1267 | int blen = blen = rq->data_len; |
| 1268 | char *ptr = rq->data; |
| 1269 | |
| 1270 | /* |
| 1271 | * bio backed? |
| 1272 | */ |
| 1273 | if (rq->bio) { |
| 1274 | ptr = bio_data(rq->bio); |
| 1275 | blen = bio_iovec(rq->bio)->bv_len; |
| 1276 | } |
| 1277 | |
| 1278 | if (!ptr) { |
Bartlomiej Zolnierkiewicz | 03f537d | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1279 | printk(KERN_ERR "%s: confused, missing data\n", |
| 1280 | drive->name); |
| 1281 | blk_dump_rq_flags(rq, rq_data_dir(rq) |
| 1282 | ? "cdrom_newpc_intr, write" |
| 1283 | : "cdrom_newpc_intr, read"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | break; |
| 1285 | } |
| 1286 | |
| 1287 | if (blen > thislen) |
| 1288 | blen = thislen; |
| 1289 | |
| 1290 | xferfunc(drive, ptr, blen); |
| 1291 | |
| 1292 | thislen -= blen; |
| 1293 | len -= blen; |
| 1294 | rq->data_len -= blen; |
| 1295 | |
| 1296 | if (rq->bio) |
Kiyoshi Ueda | aaa04c2 | 2007-12-11 17:51:23 -0500 | [diff] [blame] | 1297 | /* |
| 1298 | * The request can't be completed until DRQ is cleared. |
| 1299 | * So complete the data, but don't complete the request |
| 1300 | * using the dummy function for the callback feature |
| 1301 | * of blk_end_request_callback(). |
| 1302 | */ |
| 1303 | blk_end_request_callback(rq, 0, blen, |
| 1304 | cdrom_newpc_intr_dummy_cb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | else |
| 1306 | rq->data += blen; |
| 1307 | } |
| 1308 | |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1309 | if (write && blk_sense_request(rq)) |
| 1310 | rq->sense_len += thislen; |
| 1311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | /* |
| 1313 | * pad, if necessary |
| 1314 | */ |
Bartlomiej Zolnierkiewicz | 5a5222d | 2008-02-01 23:09:17 +0100 | [diff] [blame] | 1315 | if (len > 0) |
| 1316 | ide_cd_pad_transfer(drive, xferfunc, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1318 | if (blk_pc_request(rq)) { |
| 1319 | timeout = rq->timeout; |
| 1320 | expiry = NULL; |
| 1321 | } else { |
| 1322 | timeout = ATAPI_WAIT_PC; |
| 1323 | expiry = cdrom_timer_expiry; |
| 1324 | } |
| 1325 | |
| 1326 | ide_set_handler(drive, cdrom_newpc_intr, timeout, expiry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | return ide_started; |
Bartlomiej Zolnierkiewicz | ff1bfbc1 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1328 | |
| 1329 | end_request: |
| 1330 | if (blk_pc_request(rq)) { |
| 1331 | unsigned long flags; |
| 1332 | |
| 1333 | spin_lock_irqsave(&ide_lock, flags); |
| 1334 | if (__blk_end_request(rq, 0, rq->data_len)) |
| 1335 | BUG(); |
| 1336 | HWGROUP(drive)->rq = NULL; |
| 1337 | spin_unlock_irqrestore(&ide_lock, flags); |
| 1338 | } else { |
| 1339 | if (!uptodate) |
| 1340 | rq->cmd_flags |= REQ_FAILED; |
| 1341 | cdrom_end_request(drive, uptodate); |
| 1342 | } |
| 1343 | return ide_stopped; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | } |
| 1345 | |
| 1346 | static ide_startstop_t cdrom_write_intr(ide_drive_t *drive) |
| 1347 | { |
| 1348 | int stat, ireason, len, sectors_to_transfer, uptodate; |
| 1349 | struct cdrom_info *info = drive->driver_data; |
| 1350 | int dma_error = 0, dma = info->dma; |
| 1351 | u8 lowcyl = 0, highcyl = 0; |
| 1352 | |
| 1353 | struct request *rq = HWGROUP(drive)->rq; |
| 1354 | |
| 1355 | /* Check for errors. */ |
| 1356 | if (dma) { |
| 1357 | info->dma = 0; |
Bartlomiej Zolnierkiewicz | b481b23 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 1358 | dma_error = HWIF(drive)->ide_dma_end(drive); |
| 1359 | if (dma_error) { |
| 1360 | printk(KERN_ERR "%s: DMA write error\n", drive->name); |
Bartlomiej Zolnierkiewicz | 7469aaf | 2007-02-17 02:40:26 +0100 | [diff] [blame] | 1361 | ide_dma_off(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | } |
| 1363 | } |
| 1364 | |
| 1365 | if (cdrom_decode_status(drive, 0, &stat)) |
| 1366 | return ide_stopped; |
| 1367 | |
| 1368 | /* |
| 1369 | * using dma, transfer is complete now |
| 1370 | */ |
| 1371 | if (dma) { |
| 1372 | if (dma_error) |
| 1373 | return ide_error(drive, "dma error", stat); |
| 1374 | |
| 1375 | ide_end_request(drive, 1, rq->nr_sectors); |
| 1376 | return ide_stopped; |
| 1377 | } |
| 1378 | |
| 1379 | /* Read the interrupt reason and the transfer length. */ |
Bartlomiej Zolnierkiewicz | 31a7119 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 1380 | ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG); |
| 1382 | highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG); |
| 1383 | |
| 1384 | len = lowcyl + (256 * highcyl); |
| 1385 | |
| 1386 | /* If DRQ is clear, the command has completed. */ |
| 1387 | if ((stat & DRQ_STAT) == 0) { |
| 1388 | /* If we're not done writing, complain. |
| 1389 | * Otherwise, complete the command normally. |
| 1390 | */ |
| 1391 | uptodate = 1; |
| 1392 | if (rq->current_nr_sectors > 0) { |
Bartlomiej Zolnierkiewicz | b481b23 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 1393 | printk(KERN_ERR "%s: %s: data underrun (%d blocks)\n", |
| 1394 | drive->name, __FUNCTION__, |
| 1395 | rq->current_nr_sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | uptodate = 0; |
| 1397 | } |
| 1398 | cdrom_end_request(drive, uptodate); |
| 1399 | return ide_stopped; |
| 1400 | } |
| 1401 | |
| 1402 | /* Check that the drive is expecting to do the same thing we are. */ |
| 1403 | if (cdrom_write_check_ireason(drive, len, ireason)) |
| 1404 | return ide_stopped; |
| 1405 | |
| 1406 | sectors_to_transfer = len / SECTOR_SIZE; |
| 1407 | |
| 1408 | /* |
| 1409 | * now loop and write out the data |
| 1410 | */ |
| 1411 | while (sectors_to_transfer > 0) { |
| 1412 | int this_transfer; |
| 1413 | |
| 1414 | if (!rq->current_nr_sectors) { |
Bartlomiej Zolnierkiewicz | b481b23 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 1415 | printk(KERN_ERR "%s: %s: confused, missing data\n", |
| 1416 | drive->name, __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | break; |
| 1418 | } |
| 1419 | |
| 1420 | /* |
| 1421 | * Figure out how many sectors we can transfer |
| 1422 | */ |
| 1423 | this_transfer = min_t(int, sectors_to_transfer, rq->current_nr_sectors); |
| 1424 | |
| 1425 | while (this_transfer > 0) { |
| 1426 | HWIF(drive)->atapi_output_bytes(drive, rq->buffer, SECTOR_SIZE); |
| 1427 | rq->buffer += SECTOR_SIZE; |
| 1428 | --rq->nr_sectors; |
| 1429 | --rq->current_nr_sectors; |
| 1430 | ++rq->sector; |
| 1431 | --this_transfer; |
| 1432 | --sectors_to_transfer; |
| 1433 | } |
| 1434 | |
| 1435 | /* |
| 1436 | * current buffer complete, move on |
| 1437 | */ |
| 1438 | if (rq->current_nr_sectors == 0 && rq->nr_sectors) |
| 1439 | cdrom_end_request(drive, 1); |
| 1440 | } |
| 1441 | |
| 1442 | /* re-arm handler */ |
| 1443 | ide_set_handler(drive, &cdrom_write_intr, ATAPI_WAIT_PC, NULL); |
| 1444 | return ide_started; |
| 1445 | } |
| 1446 | |
| 1447 | static ide_startstop_t cdrom_start_write_cont(ide_drive_t *drive) |
| 1448 | { |
| 1449 | struct request *rq = HWGROUP(drive)->rq; |
| 1450 | |
| 1451 | #if 0 /* the immediate bit */ |
| 1452 | rq->cmd[1] = 1 << 3; |
| 1453 | #endif |
| 1454 | rq->timeout = ATAPI_WAIT_PC; |
| 1455 | |
| 1456 | return cdrom_transfer_packet_command(drive, rq, cdrom_write_intr); |
| 1457 | } |
| 1458 | |
| 1459 | static ide_startstop_t cdrom_start_write(ide_drive_t *drive, struct request *rq) |
| 1460 | { |
| 1461 | struct cdrom_info *info = drive->driver_data; |
| 1462 | struct gendisk *g = info->disk; |
| 1463 | unsigned short sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS; |
| 1464 | |
| 1465 | /* |
| 1466 | * writes *must* be hardware frame aligned |
| 1467 | */ |
| 1468 | if ((rq->nr_sectors & (sectors_per_frame - 1)) || |
| 1469 | (rq->sector & (sectors_per_frame - 1))) { |
| 1470 | cdrom_end_request(drive, 0); |
| 1471 | return ide_stopped; |
| 1472 | } |
| 1473 | |
| 1474 | /* |
| 1475 | * disk has become write protected |
| 1476 | */ |
| 1477 | if (g->policy) { |
| 1478 | cdrom_end_request(drive, 0); |
| 1479 | return ide_stopped; |
| 1480 | } |
| 1481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | info->nsectors_buffered = 0; |
| 1483 | |
| 1484 | /* use dma, if possible. we don't need to check more, since we |
| 1485 | * know that the transfer is always (at least!) frame aligned */ |
| 1486 | info->dma = drive->using_dma ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | |
| 1488 | info->devinfo.media_written = 1; |
| 1489 | |
| 1490 | /* Start sending the write request to the drive. */ |
| 1491 | return cdrom_start_packet_command(drive, 32768, cdrom_start_write_cont); |
| 1492 | } |
| 1493 | |
| 1494 | static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive) |
| 1495 | { |
| 1496 | struct request *rq = HWGROUP(drive)->rq; |
| 1497 | |
| 1498 | if (!rq->timeout) |
| 1499 | rq->timeout = ATAPI_WAIT_PC; |
| 1500 | |
| 1501 | return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr); |
| 1502 | } |
| 1503 | |
| 1504 | static ide_startstop_t cdrom_do_block_pc(ide_drive_t *drive, struct request *rq) |
| 1505 | { |
| 1506 | struct cdrom_info *info = drive->driver_data; |
| 1507 | |
Bartlomiej Zolnierkiewicz | c9f56a8 | 2008-02-01 23:09:26 +0100 | [diff] [blame] | 1508 | if (blk_pc_request(rq)) |
| 1509 | rq->cmd_flags |= REQ_QUIET; |
| 1510 | else |
| 1511 | rq->cmd_flags &= ~REQ_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | |
| 1513 | info->dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | |
| 1515 | /* |
| 1516 | * sg request |
| 1517 | */ |
| 1518 | if (rq->bio) { |
| 1519 | int mask = drive->queue->dma_alignment; |
| 1520 | unsigned long addr = (unsigned long) page_address(bio_page(rq->bio)); |
| 1521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | info->dma = drive->using_dma; |
| 1523 | |
| 1524 | /* |
| 1525 | * check if dma is safe |
Linus Torvalds | 5d9e4ea | 2005-05-27 07:36:17 -0700 | [diff] [blame] | 1526 | * |
| 1527 | * NOTE! The "len" and "addr" checks should possibly have |
| 1528 | * separate masks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | */ |
Jens Axboe | 4e7c681 | 2005-05-31 17:47:36 +0200 | [diff] [blame] | 1530 | if ((rq->data_len & 15) || (addr & mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | info->dma = 0; |
| 1532 | } |
| 1533 | |
| 1534 | /* Start sending the command to the drive. */ |
| 1535 | return cdrom_start_packet_command(drive, rq->data_len, cdrom_do_newpc_cont); |
| 1536 | } |
| 1537 | |
| 1538 | /**************************************************************************** |
| 1539 | * cdrom driver request routine. |
| 1540 | */ |
| 1541 | static ide_startstop_t |
| 1542 | ide_do_rw_cdrom (ide_drive_t *drive, struct request *rq, sector_t block) |
| 1543 | { |
| 1544 | ide_startstop_t action; |
| 1545 | struct cdrom_info *info = drive->driver_data; |
| 1546 | |
| 1547 | if (blk_fs_request(rq)) { |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1548 | if (info->cd_flags & IDE_CD_FLAG_SEEKING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | unsigned long elapsed = jiffies - info->start_seek; |
| 1550 | int stat = HWIF(drive)->INB(IDE_STATUS_REG); |
| 1551 | |
| 1552 | if ((stat & SEEK_STAT) != SEEK_STAT) { |
| 1553 | if (elapsed < IDECD_SEEK_TIMEOUT) { |
| 1554 | ide_stall_queue(drive, IDECD_SEEK_TIMER); |
| 1555 | return ide_stopped; |
| 1556 | } |
| 1557 | printk (KERN_ERR "%s: DSC timeout\n", drive->name); |
| 1558 | } |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1559 | info->cd_flags &= ~IDE_CD_FLAG_SEEKING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | } |
| 1561 | if ((rq_data_dir(rq) == READ) && IDE_LARGE_SEEK(info->last_block, block, IDECD_SEEK_THRESHOLD) && drive->dsc_overlap) { |
| 1562 | action = cdrom_start_seek(drive, block); |
| 1563 | } else { |
| 1564 | if (rq_data_dir(rq) == READ) |
| 1565 | action = cdrom_start_read(drive, block); |
| 1566 | else |
| 1567 | action = cdrom_start_write(drive, rq); |
| 1568 | } |
| 1569 | info->last_block = block; |
| 1570 | return action; |
Bartlomiej Zolnierkiewicz | c9f56a8 | 2008-02-01 23:09:26 +0100 | [diff] [blame] | 1571 | } else if (blk_sense_request(rq) || blk_pc_request(rq) || |
Jens Axboe | cea2885 | 2006-10-12 15:08:45 +0200 | [diff] [blame] | 1572 | rq->cmd_type == REQ_TYPE_ATA_PC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | return cdrom_do_block_pc(drive, rq); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1574 | } else if (blk_special_request(rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | /* |
| 1576 | * right now this can only be a reset... |
| 1577 | */ |
| 1578 | cdrom_end_request(drive, 1); |
| 1579 | return ide_stopped; |
| 1580 | } |
| 1581 | |
| 1582 | blk_dump_rq_flags(rq, "ide-cd bad flags"); |
| 1583 | cdrom_end_request(drive, 0); |
| 1584 | return ide_stopped; |
| 1585 | } |
| 1586 | |
| 1587 | |
| 1588 | |
| 1589 | /**************************************************************************** |
| 1590 | * Ioctl handling. |
| 1591 | * |
| 1592 | * Routines which queue packet commands take as a final argument a pointer |
| 1593 | * to a request_sense struct. If execution of the command results |
| 1594 | * in an error with a CHECK CONDITION status, this structure will be filled |
| 1595 | * with the results of the subsequent request sense command. The pointer |
| 1596 | * can also be NULL, in which case no sense information is returned. |
| 1597 | */ |
| 1598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | static |
| 1600 | void msf_from_bcd (struct atapi_msf *msf) |
| 1601 | { |
Bartlomiej Zolnierkiewicz | 9a6dc66 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1602 | msf->minute = BCD2BIN(msf->minute); |
| 1603 | msf->second = BCD2BIN(msf->second); |
| 1604 | msf->frame = BCD2BIN(msf->frame); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | } |
| 1606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | static int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense) |
| 1608 | { |
| 1609 | struct request req; |
| 1610 | struct cdrom_info *info = drive->driver_data; |
| 1611 | struct cdrom_device_info *cdi = &info->devinfo; |
| 1612 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1613 | ide_cd_init_rq(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | |
| 1615 | req.sense = sense; |
| 1616 | req.cmd[0] = GPCMD_TEST_UNIT_READY; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1617 | req.cmd_flags |= REQ_QUIET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | |
Bartlomiej Zolnierkiewicz | cdf6000 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1619 | /* |
| 1620 | * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to |
| 1621 | * switch CDs instead of supporting the LOAD_UNLOAD opcode. |
| 1622 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | req.cmd[7] = cdi->sanyo_slot % 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1625 | return ide_cd_queue_pc(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | } |
| 1627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | /* Lock the door if LOCKFLAG is nonzero; unlock it otherwise. */ |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1629 | int ide_cd_lockdoor(ide_drive_t *drive, int lockflag, |
| 1630 | struct request_sense *sense) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | { |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1632 | struct cdrom_info *cd = drive->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | struct request_sense my_sense; |
| 1634 | struct request req; |
| 1635 | int stat; |
| 1636 | |
| 1637 | if (sense == NULL) |
| 1638 | sense = &my_sense; |
| 1639 | |
| 1640 | /* If the drive cannot lock the door, just pretend. */ |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1641 | if (cd->cd_flags & IDE_CD_FLAG_NO_DOORLOCK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | stat = 0; |
| 1643 | } else { |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1644 | ide_cd_init_rq(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | req.sense = sense; |
| 1646 | req.cmd[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL; |
| 1647 | req.cmd[4] = lockflag ? 1 : 0; |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1648 | stat = ide_cd_queue_pc(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | /* If we got an illegal field error, the drive |
| 1652 | probably cannot lock the door. */ |
| 1653 | if (stat != 0 && |
| 1654 | sense->sense_key == ILLEGAL_REQUEST && |
| 1655 | (sense->asc == 0x24 || sense->asc == 0x20)) { |
| 1656 | printk (KERN_ERR "%s: door locking not supported\n", |
| 1657 | drive->name); |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1658 | cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | stat = 0; |
| 1660 | } |
| 1661 | |
| 1662 | /* no medium, that's alright. */ |
| 1663 | if (stat != 0 && sense->sense_key == NOT_READY && sense->asc == 0x3a) |
| 1664 | stat = 0; |
| 1665 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1666 | if (stat == 0) { |
| 1667 | if (lockflag) |
| 1668 | cd->cd_flags |= IDE_CD_FLAG_DOOR_LOCKED; |
| 1669 | else |
| 1670 | cd->cd_flags &= ~IDE_CD_FLAG_DOOR_LOCKED; |
| 1671 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | |
| 1673 | return stat; |
| 1674 | } |
| 1675 | |
| 1676 | |
| 1677 | /* Eject the disk if EJECTFLAG is 0. |
| 1678 | If EJECTFLAG is 1, try to reload the disk. */ |
| 1679 | static int cdrom_eject(ide_drive_t *drive, int ejectflag, |
| 1680 | struct request_sense *sense) |
| 1681 | { |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 1682 | struct cdrom_info *cd = drive->driver_data; |
| 1683 | struct cdrom_device_info *cdi = &cd->devinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | struct request req; |
| 1685 | char loej = 0x02; |
| 1686 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1687 | if ((cd->cd_flags & IDE_CD_FLAG_NO_EJECT) && !ejectflag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | return -EDRIVE_CANT_DO_THIS; |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1689 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | /* reload fails on some drives, if the tray is locked */ |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1691 | if ((cd->cd_flags & IDE_CD_FLAG_DOOR_LOCKED) && ejectflag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | return 0; |
| 1693 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1694 | ide_cd_init_rq(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | |
| 1696 | /* only tell drive to close tray if open, if it can do that */ |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 1697 | if (ejectflag && (cdi->mask & CDC_CLOSE_TRAY)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | loej = 0; |
| 1699 | |
| 1700 | req.sense = sense; |
| 1701 | req.cmd[0] = GPCMD_START_STOP_UNIT; |
| 1702 | req.cmd[4] = loej | (ejectflag != 0); |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1703 | |
| 1704 | return ide_cd_queue_pc(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | } |
| 1706 | |
| 1707 | static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity, |
| 1708 | unsigned long *sectors_per_frame, |
| 1709 | struct request_sense *sense) |
| 1710 | { |
| 1711 | struct { |
| 1712 | __u32 lba; |
| 1713 | __u32 blocklen; |
| 1714 | } capbuf; |
| 1715 | |
| 1716 | int stat; |
| 1717 | struct request req; |
| 1718 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1719 | ide_cd_init_rq(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | |
| 1721 | req.sense = sense; |
| 1722 | req.cmd[0] = GPCMD_READ_CDVD_CAPACITY; |
| 1723 | req.data = (char *)&capbuf; |
| 1724 | req.data_len = sizeof(capbuf); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1725 | req.cmd_flags |= REQ_QUIET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1727 | stat = ide_cd_queue_pc(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | if (stat == 0) { |
| 1729 | *capacity = 1 + be32_to_cpu(capbuf.lba); |
| 1730 | *sectors_per_frame = |
| 1731 | be32_to_cpu(capbuf.blocklen) >> SECTOR_BITS; |
| 1732 | } |
| 1733 | |
| 1734 | return stat; |
| 1735 | } |
| 1736 | |
| 1737 | static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag, |
| 1738 | int format, char *buf, int buflen, |
| 1739 | struct request_sense *sense) |
| 1740 | { |
| 1741 | struct request req; |
| 1742 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1743 | ide_cd_init_rq(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | |
| 1745 | req.sense = sense; |
| 1746 | req.data = buf; |
| 1747 | req.data_len = buflen; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1748 | req.cmd_flags |= REQ_QUIET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | req.cmd[0] = GPCMD_READ_TOC_PMA_ATIP; |
| 1750 | req.cmd[6] = trackno; |
| 1751 | req.cmd[7] = (buflen >> 8); |
| 1752 | req.cmd[8] = (buflen & 0xff); |
| 1753 | req.cmd[9] = (format << 6); |
| 1754 | |
| 1755 | if (msf_flag) |
| 1756 | req.cmd[1] = 2; |
| 1757 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1758 | return ide_cd_queue_pc(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | } |
| 1760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | /* Try to read the entire TOC for the disk into our internal buffer. */ |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1762 | int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | { |
| 1764 | int stat, ntracks, i; |
| 1765 | struct cdrom_info *info = drive->driver_data; |
| 1766 | struct cdrom_device_info *cdi = &info->devinfo; |
| 1767 | struct atapi_toc *toc = info->toc; |
| 1768 | struct { |
| 1769 | struct atapi_toc_header hdr; |
| 1770 | struct atapi_toc_entry ent; |
| 1771 | } ms_tmp; |
| 1772 | long last_written; |
| 1773 | unsigned long sectors_per_frame = SECTORS_PER_FRAME; |
| 1774 | |
| 1775 | if (toc == NULL) { |
| 1776 | /* Try to allocate space. */ |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 1777 | toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | if (toc == NULL) { |
| 1779 | printk (KERN_ERR "%s: No cdrom TOC buffer!\n", drive->name); |
| 1780 | return -ENOMEM; |
| 1781 | } |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 1782 | info->toc = toc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | } |
| 1784 | |
| 1785 | /* Check to see if the existing data is still valid. |
| 1786 | If it is, just return. */ |
| 1787 | (void) cdrom_check_status(drive, sense); |
| 1788 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1789 | if (info->cd_flags & IDE_CD_FLAG_TOC_VALID) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | return 0; |
| 1791 | |
| 1792 | /* Try to get the total cdrom capacity and sector size. */ |
| 1793 | stat = cdrom_read_capacity(drive, &toc->capacity, §ors_per_frame, |
| 1794 | sense); |
| 1795 | if (stat) |
| 1796 | toc->capacity = 0x1fffff; |
| 1797 | |
| 1798 | set_capacity(info->disk, toc->capacity * sectors_per_frame); |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 1799 | /* Save a private copy of te TOC capacity for error handling */ |
| 1800 | drive->probed_capacity = toc->capacity * sectors_per_frame; |
| 1801 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | blk_queue_hardsect_size(drive->queue, |
| 1803 | sectors_per_frame << SECTOR_BITS); |
| 1804 | |
| 1805 | /* First read just the header, so we know how long the TOC is. */ |
| 1806 | stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr, |
| 1807 | sizeof(struct atapi_toc_header), sense); |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 1808 | if (stat) |
| 1809 | return stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1811 | if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) { |
Bartlomiej Zolnierkiewicz | 9a6dc66 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1812 | toc->hdr.first_track = BCD2BIN(toc->hdr.first_track); |
| 1813 | toc->hdr.last_track = BCD2BIN(toc->hdr.last_track); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | |
| 1816 | ntracks = toc->hdr.last_track - toc->hdr.first_track + 1; |
| 1817 | if (ntracks <= 0) |
| 1818 | return -EIO; |
| 1819 | if (ntracks > MAX_TRACKS) |
| 1820 | ntracks = MAX_TRACKS; |
| 1821 | |
| 1822 | /* Now read the whole schmeer. */ |
| 1823 | stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0, |
| 1824 | (char *)&toc->hdr, |
| 1825 | sizeof(struct atapi_toc_header) + |
| 1826 | (ntracks + 1) * |
| 1827 | sizeof(struct atapi_toc_entry), sense); |
| 1828 | |
| 1829 | if (stat && toc->hdr.first_track > 1) { |
| 1830 | /* Cds with CDI tracks only don't have any TOC entries, |
| 1831 | despite of this the returned values are |
| 1832 | first_track == last_track = number of CDI tracks + 1, |
| 1833 | so that this case is indistinguishable from the same |
| 1834 | layout plus an additional audio track. |
| 1835 | If we get an error for the regular case, we assume |
| 1836 | a CDI without additional audio tracks. In this case |
| 1837 | the readable TOC is empty (CDI tracks are not included) |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 1838 | and only holds the Leadout entry. Heiko Eißfeldt */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | ntracks = 0; |
| 1840 | stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0, |
| 1841 | (char *)&toc->hdr, |
| 1842 | sizeof(struct atapi_toc_header) + |
| 1843 | (ntracks + 1) * |
| 1844 | sizeof(struct atapi_toc_entry), |
| 1845 | sense); |
Bartlomiej Zolnierkiewicz | cdf6000 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1846 | if (stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | return stat; |
Bartlomiej Zolnierkiewicz | cdf6000 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1848 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1849 | if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) { |
Bartlomiej Zolnierkiewicz | 9a6dc66 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1850 | toc->hdr.first_track = (u8)BIN2BCD(CDROM_LEADOUT); |
| 1851 | toc->hdr.last_track = (u8)BIN2BCD(CDROM_LEADOUT); |
Bartlomiej Zolnierkiewicz | cdf6000 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1852 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | toc->hdr.first_track = CDROM_LEADOUT; |
| 1854 | toc->hdr.last_track = CDROM_LEADOUT; |
| 1855 | } |
| 1856 | } |
| 1857 | |
| 1858 | if (stat) |
| 1859 | return stat; |
| 1860 | |
| 1861 | toc->hdr.toc_length = ntohs (toc->hdr.toc_length); |
| 1862 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1863 | if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) { |
Bartlomiej Zolnierkiewicz | 9a6dc66 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1864 | toc->hdr.first_track = BCD2BIN(toc->hdr.first_track); |
| 1865 | toc->hdr.last_track = BCD2BIN(toc->hdr.last_track); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | |
Bartlomiej Zolnierkiewicz | cdf6000 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1868 | for (i = 0; i <= ntracks; i++) { |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1869 | if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) { |
| 1870 | if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) |
Bartlomiej Zolnierkiewicz | 9a6dc66 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1871 | toc->ent[i].track = BCD2BIN(toc->ent[i].track); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | msf_from_bcd(&toc->ent[i].addr.msf); |
| 1873 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | toc->ent[i].addr.lba = msf_to_lba (toc->ent[i].addr.msf.minute, |
| 1875 | toc->ent[i].addr.msf.second, |
| 1876 | toc->ent[i].addr.msf.frame); |
| 1877 | } |
| 1878 | |
| 1879 | /* Read the multisession information. */ |
| 1880 | if (toc->hdr.first_track != CDROM_LEADOUT) { |
| 1881 | /* Read the multisession information. */ |
| 1882 | stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp, |
| 1883 | sizeof(ms_tmp), sense); |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 1884 | if (stat) |
| 1885 | return stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | |
| 1887 | toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba); |
| 1888 | } else { |
| 1889 | ms_tmp.hdr.first_track = ms_tmp.hdr.last_track = CDROM_LEADOUT; |
| 1890 | toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */ |
| 1891 | } |
| 1892 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1893 | if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | /* Re-read multisession information using MSF format */ |
| 1895 | stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp, |
| 1896 | sizeof(ms_tmp), sense); |
| 1897 | if (stat) |
| 1898 | return stat; |
| 1899 | |
| 1900 | msf_from_bcd (&ms_tmp.ent.addr.msf); |
| 1901 | toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute, |
| 1902 | ms_tmp.ent.addr.msf.second, |
| 1903 | ms_tmp.ent.addr.msf.frame); |
| 1904 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | |
| 1906 | toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track); |
| 1907 | |
| 1908 | /* Now try to get the total cdrom capacity. */ |
| 1909 | stat = cdrom_get_last_written(cdi, &last_written); |
| 1910 | if (!stat && (last_written > toc->capacity)) { |
| 1911 | toc->capacity = last_written; |
| 1912 | set_capacity(info->disk, toc->capacity * sectors_per_frame); |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 1913 | drive->probed_capacity = toc->capacity * sectors_per_frame; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | } |
| 1915 | |
| 1916 | /* Remember that we've read this stuff. */ |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1917 | info->cd_flags |= IDE_CD_FLAG_TOC_VALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | |
| 1919 | return 0; |
| 1920 | } |
| 1921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | /* the generic packet interface to cdrom.c */ |
| 1923 | static int ide_cdrom_packet(struct cdrom_device_info *cdi, |
| 1924 | struct packet_command *cgc) |
| 1925 | { |
| 1926 | struct request req; |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 1927 | ide_drive_t *drive = cdi->handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | |
| 1929 | if (cgc->timeout <= 0) |
| 1930 | cgc->timeout = ATAPI_WAIT_PC; |
| 1931 | |
| 1932 | /* here we queue the commands from the uniform CD-ROM |
| 1933 | layer. the packet must be complete, as we do not |
| 1934 | touch it at all. */ |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1935 | ide_cd_init_rq(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | memcpy(req.cmd, cgc->cmd, CDROM_PACKET_SIZE); |
| 1937 | if (cgc->sense) |
| 1938 | memset(cgc->sense, 0, sizeof(struct request_sense)); |
| 1939 | req.data = cgc->buffer; |
| 1940 | req.data_len = cgc->buflen; |
| 1941 | req.timeout = cgc->timeout; |
| 1942 | |
| 1943 | if (cgc->quiet) |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1944 | req.cmd_flags |= REQ_QUIET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | |
| 1946 | req.sense = cgc->sense; |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1947 | cgc->stat = ide_cd_queue_pc(drive, &req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | if (!cgc->stat) |
| 1949 | cgc->buflen -= req.data_len; |
| 1950 | return cgc->stat; |
| 1951 | } |
| 1952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | static |
| 1954 | int ide_cdrom_tray_move (struct cdrom_device_info *cdi, int position) |
| 1955 | { |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 1956 | ide_drive_t *drive = cdi->handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | struct request_sense sense; |
| 1958 | |
| 1959 | if (position) { |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 1960 | int stat = ide_cd_lockdoor(drive, 0, &sense); |
| 1961 | |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 1962 | if (stat) |
| 1963 | return stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | } |
| 1965 | |
| 1966 | return cdrom_eject(drive, !position, &sense); |
| 1967 | } |
| 1968 | |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1969 | int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf) |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 1970 | { |
| 1971 | struct cdrom_info *info = drive->driver_data; |
| 1972 | struct cdrom_device_info *cdi = &info->devinfo; |
| 1973 | struct packet_command cgc; |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1974 | int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE; |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 1975 | |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1976 | if ((info->cd_flags & IDE_CD_FLAG_FULL_CAPS_PAGE) == 0) |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1977 | size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE; |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 1978 | |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1979 | init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN); |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 1980 | do { /* we seem to get stat=0x01,err=0x00 the first time (??) */ |
| 1981 | stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0); |
| 1982 | if (!stat) |
| 1983 | break; |
| 1984 | } while (--attempts); |
| 1985 | return stat; |
| 1986 | } |
| 1987 | |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 1988 | void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf) |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 1989 | { |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1990 | struct cdrom_info *cd = drive->driver_data; |
Bartlomiej Zolnierkiewicz | 481c8c6 | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 1991 | u16 curspeed, maxspeed; |
| 1992 | |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1993 | curspeed = *(u16 *)&buf[8 + 14]; |
| 1994 | maxspeed = *(u16 *)&buf[8 + 8]; |
| 1995 | |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 1996 | if (cd->cd_flags & IDE_CD_FLAG_LE_SPEED_FIELDS) { |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 1997 | curspeed = le16_to_cpu(curspeed); |
| 1998 | maxspeed = le16_to_cpu(maxspeed); |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 1999 | } else { |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2000 | curspeed = be16_to_cpu(curspeed); |
| 2001 | maxspeed = be16_to_cpu(maxspeed); |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 2002 | } |
Bartlomiej Zolnierkiewicz | 481c8c6 | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2003 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2004 | cd->current_speed = (curspeed + (176/2)) / 176; |
| 2005 | cd->max_speed = (maxspeed + (176/2)) / 176; |
Eric Piel | 9235e68 | 2005-06-23 00:10:29 -0700 | [diff] [blame] | 2006 | } |
| 2007 | |
Bartlomiej Zolnierkiewicz | 5c68429 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 2008 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | * add logic to try GET_EVENT command first to check for media and tray |
| 2010 | * status. this should be supported by newer cd-r/w and all DVD etc |
| 2011 | * drives |
| 2012 | */ |
| 2013 | static |
| 2014 | int ide_cdrom_drive_status (struct cdrom_device_info *cdi, int slot_nr) |
| 2015 | { |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 2016 | ide_drive_t *drive = cdi->handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | struct media_event_desc med; |
| 2018 | struct request_sense sense; |
| 2019 | int stat; |
| 2020 | |
| 2021 | if (slot_nr != CDSL_CURRENT) |
| 2022 | return -EINVAL; |
| 2023 | |
| 2024 | stat = cdrom_check_status(drive, &sense); |
| 2025 | if (!stat || sense.sense_key == UNIT_ATTENTION) |
| 2026 | return CDS_DISC_OK; |
| 2027 | |
| 2028 | if (!cdrom_get_media_event(cdi, &med)) { |
| 2029 | if (med.media_present) |
| 2030 | return CDS_DISC_OK; |
| 2031 | else if (med.door_open) |
| 2032 | return CDS_TRAY_OPEN; |
| 2033 | else |
| 2034 | return CDS_NO_DISC; |
| 2035 | } |
| 2036 | |
| 2037 | if (sense.sense_key == NOT_READY && sense.asc == 0x04 && sense.ascq == 0x04) |
| 2038 | return CDS_DISC_OK; |
| 2039 | |
| 2040 | /* |
| 2041 | * If not using Mt Fuji extended media tray reports, |
| 2042 | * just return TRAY_OPEN since ATAPI doesn't provide |
| 2043 | * any other way to detect this... |
| 2044 | */ |
| 2045 | if (sense.sense_key == NOT_READY) { |
Alan Cox | dbe217a | 2006-06-25 05:47:44 -0700 | [diff] [blame] | 2046 | if (sense.asc == 0x3a && sense.ascq == 1) |
| 2047 | return CDS_NO_DISC; |
| 2048 | else |
| 2049 | return CDS_TRAY_OPEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | return CDS_DRIVE_NOT_READY; |
| 2052 | } |
| 2053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | /**************************************************************************** |
| 2055 | * Other driver requests (open, close, check media change). |
| 2056 | */ |
| 2057 | |
| 2058 | static |
| 2059 | int ide_cdrom_check_media_change_real (struct cdrom_device_info *cdi, |
| 2060 | int slot_nr) |
| 2061 | { |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 2062 | ide_drive_t *drive = cdi->handle; |
Bartlomiej Zolnierkiewicz | 0ba1121 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2063 | struct cdrom_info *cd = drive->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | int retval; |
Bartlomiej Zolnierkiewicz | 0ba1121 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | if (slot_nr == CDSL_CURRENT) { |
| 2067 | (void) cdrom_check_status(drive, NULL); |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2068 | retval = (cd->cd_flags & IDE_CD_FLAG_MEDIA_CHANGED) ? 1 : 0; |
| 2069 | cd->cd_flags &= ~IDE_CD_FLAG_MEDIA_CHANGED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | return retval; |
| 2071 | } else { |
| 2072 | return -EINVAL; |
| 2073 | } |
| 2074 | } |
| 2075 | |
| 2076 | |
| 2077 | static |
| 2078 | int ide_cdrom_open_real (struct cdrom_device_info *cdi, int purpose) |
| 2079 | { |
| 2080 | return 0; |
| 2081 | } |
| 2082 | |
| 2083 | /* |
| 2084 | * Close down the device. Invalidate all cached blocks. |
| 2085 | */ |
| 2086 | |
| 2087 | static |
| 2088 | void ide_cdrom_release_real (struct cdrom_device_info *cdi) |
| 2089 | { |
| 2090 | ide_drive_t *drive = cdi->handle; |
Bartlomiej Zolnierkiewicz | 0ba1121 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2091 | struct cdrom_info *cd = drive->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | |
| 2093 | if (!cdi->use_count) |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2094 | cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | } |
| 2096 | |
Bartlomiej Zolnierkiewicz | 20e7f7e | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2097 | #define IDE_CD_CAPABILITIES \ |
| 2098 | (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \ |
| 2099 | CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \ |
| 2100 | CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \ |
| 2101 | CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \ |
| 2102 | CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 | static struct cdrom_device_ops ide_cdrom_dops = { |
| 2105 | .open = ide_cdrom_open_real, |
| 2106 | .release = ide_cdrom_release_real, |
| 2107 | .drive_status = ide_cdrom_drive_status, |
| 2108 | .media_changed = ide_cdrom_check_media_change_real, |
| 2109 | .tray_move = ide_cdrom_tray_move, |
| 2110 | .lock_door = ide_cdrom_lock_door, |
| 2111 | .select_speed = ide_cdrom_select_speed, |
| 2112 | .get_last_session = ide_cdrom_get_last_session, |
| 2113 | .get_mcn = ide_cdrom_get_mcn, |
| 2114 | .reset = ide_cdrom_reset, |
| 2115 | .audio_ioctl = ide_cdrom_audio_ioctl, |
Bartlomiej Zolnierkiewicz | 20e7f7e | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2116 | .capability = IDE_CD_CAPABILITIES, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | .generic_packet = ide_cdrom_packet, |
| 2118 | }; |
| 2119 | |
| 2120 | static int ide_cdrom_register (ide_drive_t *drive, int nslots) |
| 2121 | { |
| 2122 | struct cdrom_info *info = drive->driver_data; |
| 2123 | struct cdrom_device_info *devinfo = &info->devinfo; |
| 2124 | |
| 2125 | devinfo->ops = &ide_cdrom_dops; |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2126 | devinfo->speed = info->current_speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | devinfo->capacity = nslots; |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 2128 | devinfo->handle = drive; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | strcpy(devinfo->name, drive->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2131 | if (info->cd_flags & IDE_CD_FLAG_NO_SPEED_SELECT) |
Bartlomiej Zolnierkiewicz | 3cbd814 | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 2132 | devinfo->mask |= CDC_SELECT_SPEED; |
| 2133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | devinfo->disk = info->disk; |
| 2135 | return register_cdrom(devinfo); |
| 2136 | } |
| 2137 | |
| 2138 | static |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | int ide_cdrom_probe_capabilities (ide_drive_t *drive) |
| 2140 | { |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2141 | struct cdrom_info *cd = drive->driver_data; |
| 2142 | struct cdrom_device_info *cdi = &cd->devinfo; |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2143 | u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE]; |
| 2144 | mechtype_t mechtype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | int nslots = 1; |
| 2146 | |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2147 | cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R | |
| 2148 | CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO | |
| 2149 | CDC_MO_DRIVE | CDC_RAM); |
| 2150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | if (drive->media == ide_optical) { |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2152 | cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | printk(KERN_ERR "%s: ATAPI magneto-optical drive\n", drive->name); |
| 2154 | return nslots; |
| 2155 | } |
| 2156 | |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2157 | if (cd->cd_flags & IDE_CD_FLAG_PRE_ATAPI12) { |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2158 | cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT; |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2159 | cdi->mask &= ~CDC_PLAY_AUDIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | return nslots; |
| 2161 | } |
| 2162 | |
| 2163 | /* |
| 2164 | * we have to cheat a little here. the packet will eventually |
| 2165 | * be queued with ide_cdrom_packet(), which extracts the |
| 2166 | * drive from cdi->handle. Since this device hasn't been |
| 2167 | * registered with the Uniform layer yet, it can't do this. |
| 2168 | * Same goes for cdi->ops. |
| 2169 | */ |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 2170 | cdi->handle = drive; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | cdi->ops = &ide_cdrom_dops; |
| 2172 | |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2173 | if (ide_cdrom_get_capabilities(drive, buf)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | return 0; |
| 2175 | |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2176 | if ((buf[8 + 6] & 0x01) == 0) |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2177 | cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK; |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2178 | if (buf[8 + 6] & 0x08) |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2179 | cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT; |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2180 | if (buf[8 + 3] & 0x01) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2181 | cdi->mask &= ~CDC_CD_R; |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2182 | if (buf[8 + 3] & 0x02) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2183 | cdi->mask &= ~(CDC_CD_RW | CDC_RAM); |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2184 | if (buf[8 + 2] & 0x38) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2185 | cdi->mask &= ~CDC_DVD; |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2186 | if (buf[8 + 3] & 0x20) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2187 | cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM); |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2188 | if (buf[8 + 3] & 0x10) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2189 | cdi->mask &= ~CDC_DVD_R; |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2190 | if ((buf[8 + 4] & 0x01) || (cd->cd_flags & IDE_CD_FLAG_PLAY_AUDIO_OK)) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2191 | cdi->mask &= ~CDC_PLAY_AUDIO; |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2192 | |
| 2193 | mechtype = buf[8 + 6] >> 5; |
| 2194 | if (mechtype == mechtype_caddy || mechtype == mechtype_popup) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2195 | cdi->mask |= CDC_CLOSE_TRAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | if (cdi->sanyo_slot > 0) { |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2198 | cdi->mask &= ~CDC_SELECT_DISC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | nslots = 3; |
Bartlomiej Zolnierkiewicz | cdf6000 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2200 | } else if (mechtype == mechtype_individual_changer || |
| 2201 | mechtype == mechtype_cartridge_changer) { |
Bartlomiej Zolnierkiewicz | 2609d06 | 2008-02-01 23:09:19 +0100 | [diff] [blame] | 2202 | nslots = cdrom_number_of_slots(cdi); |
| 2203 | if (nslots > 1) |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2204 | cdi->mask &= ~CDC_SELECT_DISC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | } |
| 2206 | |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2207 | ide_cdrom_update_speed(drive, buf); |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | printk(KERN_INFO "%s: ATAPI", drive->name); |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2210 | |
| 2211 | /* don't print speed if the drive reported 0 */ |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2212 | if (cd->max_speed) |
| 2213 | printk(KERN_CONT " %dX", cd->max_speed); |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2214 | |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2215 | printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2217 | if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0) |
| 2218 | printk(KERN_CONT " DVD%s%s", |
| 2219 | (cdi->mask & CDC_DVD_R) ? "" : "-R", |
| 2220 | (cdi->mask & CDC_DVD_RAM) ? "" : "-RAM"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2222 | if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0) |
| 2223 | printk(KERN_CONT " CD%s%s", |
| 2224 | (cdi->mask & CDC_CD_R) ? "" : "-R", |
| 2225 | (cdi->mask & CDC_CD_RW) ? "" : "/RW"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | |
Bartlomiej Zolnierkiewicz | 3f1b86d | 2008-02-01 23:09:20 +0100 | [diff] [blame] | 2227 | if ((cdi->mask & CDC_SELECT_DISC) == 0) |
| 2228 | printk(KERN_CONT " changer w/%d slots", nslots); |
| 2229 | else |
| 2230 | printk(KERN_CONT " drive"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2232 | printk(KERN_CONT ", %dkB Cache\n", be16_to_cpu(*(u16 *)&buf[8 + 12])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | |
| 2234 | return nslots; |
| 2235 | } |
| 2236 | |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2237 | #ifdef CONFIG_IDE_PROC_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | static void ide_cdrom_add_settings(ide_drive_t *drive) |
| 2239 | { |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2240 | ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->dsc_overlap, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | } |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2242 | #else |
| 2243 | static inline void ide_cdrom_add_settings(ide_drive_t *drive) { ; } |
| 2244 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | |
| 2246 | /* |
| 2247 | * standard prep_rq_fn that builds 10 byte cmds |
| 2248 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2249 | static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | { |
| 2251 | int hard_sect = queue_hardsect_size(q); |
| 2252 | long block = (long)rq->hard_sector / (hard_sect >> 9); |
| 2253 | unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9); |
| 2254 | |
| 2255 | memset(rq->cmd, 0, sizeof(rq->cmd)); |
| 2256 | |
| 2257 | if (rq_data_dir(rq) == READ) |
| 2258 | rq->cmd[0] = GPCMD_READ_10; |
| 2259 | else |
| 2260 | rq->cmd[0] = GPCMD_WRITE_10; |
| 2261 | |
| 2262 | /* |
| 2263 | * fill in lba |
| 2264 | */ |
| 2265 | rq->cmd[2] = (block >> 24) & 0xff; |
| 2266 | rq->cmd[3] = (block >> 16) & 0xff; |
| 2267 | rq->cmd[4] = (block >> 8) & 0xff; |
| 2268 | rq->cmd[5] = block & 0xff; |
| 2269 | |
| 2270 | /* |
| 2271 | * and transfer length |
| 2272 | */ |
| 2273 | rq->cmd[7] = (blocks >> 8) & 0xff; |
| 2274 | rq->cmd[8] = blocks & 0xff; |
| 2275 | rq->cmd_len = 10; |
| 2276 | return BLKPREP_OK; |
| 2277 | } |
| 2278 | |
| 2279 | /* |
| 2280 | * Most of the SCSI commands are supported directly by ATAPI devices. |
| 2281 | * This transform handles the few exceptions. |
| 2282 | */ |
| 2283 | static int ide_cdrom_prep_pc(struct request *rq) |
| 2284 | { |
| 2285 | u8 *c = rq->cmd; |
| 2286 | |
| 2287 | /* |
| 2288 | * Transform 6-byte read/write commands to the 10-byte version |
| 2289 | */ |
| 2290 | if (c[0] == READ_6 || c[0] == WRITE_6) { |
| 2291 | c[8] = c[4]; |
| 2292 | c[5] = c[3]; |
| 2293 | c[4] = c[2]; |
| 2294 | c[3] = c[1] & 0x1f; |
| 2295 | c[2] = 0; |
| 2296 | c[1] &= 0xe0; |
| 2297 | c[0] += (READ_10 - READ_6); |
| 2298 | rq->cmd_len = 10; |
| 2299 | return BLKPREP_OK; |
| 2300 | } |
| 2301 | |
| 2302 | /* |
| 2303 | * it's silly to pretend we understand 6-byte sense commands, just |
| 2304 | * reject with ILLEGAL_REQUEST and the caller should take the |
| 2305 | * appropriate action |
| 2306 | */ |
| 2307 | if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) { |
| 2308 | rq->errors = ILLEGAL_REQUEST; |
| 2309 | return BLKPREP_KILL; |
| 2310 | } |
| 2311 | |
| 2312 | return BLKPREP_OK; |
| 2313 | } |
| 2314 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2315 | static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2317 | if (blk_fs_request(rq)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | return ide_cdrom_prep_fs(q, rq); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2319 | else if (blk_pc_request(rq)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | return ide_cdrom_prep_pc(rq); |
| 2321 | |
| 2322 | return 0; |
| 2323 | } |
| 2324 | |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2325 | struct cd_list_entry { |
| 2326 | const char *id_model; |
| 2327 | const char *id_firmware; |
| 2328 | unsigned int cd_flags; |
| 2329 | }; |
| 2330 | |
| 2331 | static const struct cd_list_entry ide_cd_quirks_list[] = { |
| 2332 | /* Limit transfer size per interrupt. */ |
| 2333 | { "SAMSUNG CD-ROM SCR-2430", NULL, IDE_CD_FLAG_LIMIT_NFRAMES }, |
| 2334 | { "SAMSUNG CD-ROM SCR-2432", NULL, IDE_CD_FLAG_LIMIT_NFRAMES }, |
| 2335 | /* SCR-3231 doesn't support the SET_CD_SPEED command. */ |
| 2336 | { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_CD_FLAG_NO_SPEED_SELECT }, |
| 2337 | /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */ |
| 2338 | { "NEC CD-ROM DRIVE:260", "1.01", IDE_CD_FLAG_TOCADDR_AS_BCD | |
| 2339 | IDE_CD_FLAG_PRE_ATAPI12, }, |
| 2340 | /* Vertos 300, some versions of this drive like to talk BCD. */ |
| 2341 | { "V003S0DS", NULL, IDE_CD_FLAG_VERTOS_300_SSD, }, |
| 2342 | /* Vertos 600 ESD. */ |
| 2343 | { "V006E0DS", NULL, IDE_CD_FLAG_VERTOS_600_ESD, }, |
| 2344 | /* |
| 2345 | * Sanyo 3 CD changer uses a non-standard command for CD changing |
| 2346 | * (by default standard ATAPI support for CD changers is used). |
| 2347 | */ |
| 2348 | { "CD-ROM CDR-C3 G", NULL, IDE_CD_FLAG_SANYO_3CD }, |
| 2349 | { "CD-ROM CDR-C3G", NULL, IDE_CD_FLAG_SANYO_3CD }, |
| 2350 | { "CD-ROM CDR_C36", NULL, IDE_CD_FLAG_SANYO_3CD }, |
| 2351 | /* Stingray 8X CD-ROM. */ |
| 2352 | { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_CD_FLAG_PRE_ATAPI12}, |
| 2353 | /* |
| 2354 | * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length |
| 2355 | * mode sense page capabilities size, but older drives break. |
| 2356 | */ |
| 2357 | { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE }, |
| 2358 | { "WPI CDS-32X", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE }, |
| 2359 | /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */ |
| 2360 | { "", "241N", IDE_CD_FLAG_LE_SPEED_FIELDS }, |
| 2361 | /* |
| 2362 | * Some drives used by Apple don't advertise audio play |
| 2363 | * but they do support reading TOC & audio datas. |
| 2364 | */ |
| 2365 | { "MATSHITADVD-ROM SR-8187", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK }, |
| 2366 | { "MATSHITADVD-ROM SR-8186", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK }, |
| 2367 | { "MATSHITADVD-ROM SR-8176", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK }, |
| 2368 | { "MATSHITADVD-ROM SR-8174", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK }, |
| 2369 | { NULL, NULL, 0 } |
| 2370 | }; |
| 2371 | |
| 2372 | static unsigned int ide_cd_flags(struct hd_driveid *id) |
| 2373 | { |
| 2374 | const struct cd_list_entry *cle = ide_cd_quirks_list; |
| 2375 | |
| 2376 | while (cle->id_model) { |
| 2377 | if (strcmp(cle->id_model, id->model) == 0 && |
| 2378 | (cle->id_firmware == NULL || |
| 2379 | strstr(id->fw_rev, cle->id_firmware))) |
| 2380 | return cle->cd_flags; |
| 2381 | cle++; |
| 2382 | } |
| 2383 | |
| 2384 | return 0; |
| 2385 | } |
| 2386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | static |
| 2388 | int ide_cdrom_setup (ide_drive_t *drive) |
| 2389 | { |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2390 | struct cdrom_info *cd = drive->driver_data; |
| 2391 | struct cdrom_device_info *cdi = &cd->devinfo; |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2392 | struct hd_driveid *id = drive->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | int nslots; |
| 2394 | |
| 2395 | blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn); |
| 2396 | blk_queue_dma_alignment(drive->queue, 31); |
| 2397 | drive->queue->unplug_delay = (1 * HZ) / 1000; |
| 2398 | if (!drive->queue->unplug_delay) |
| 2399 | drive->queue->unplug_delay = 1; |
| 2400 | |
| 2401 | drive->special.all = 0; |
| 2402 | |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2403 | cd->cd_flags = IDE_CD_FLAG_MEDIA_CHANGED | IDE_CD_FLAG_NO_EJECT | |
| 2404 | ide_cd_flags(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2406 | if ((id->config & 0x0060) == 0x20) |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2407 | cd->cd_flags |= IDE_CD_FLAG_DRQ_INTERRUPT; |
Bartlomiej Zolnierkiewicz | b8d25de | 2008-02-01 23:09:19 +0100 | [diff] [blame] | 2408 | |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2409 | if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_300_SSD) && |
| 2410 | id->fw_rev[4] == '1' && id->fw_rev[6] <= '2') |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2411 | cd->cd_flags |= (IDE_CD_FLAG_TOCTRACKS_AS_BCD | |
| 2412 | IDE_CD_FLAG_TOCADDR_AS_BCD); |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2413 | else if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_600_ESD) && |
| 2414 | id->fw_rev[4] == '1' && id->fw_rev[6] <= '2') |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2415 | cd->cd_flags |= IDE_CD_FLAG_TOCTRACKS_AS_BCD; |
Bartlomiej Zolnierkiewicz | e59724c | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 2416 | else if (cd->cd_flags & IDE_CD_FLAG_SANYO_3CD) |
| 2417 | cdi->sanyo_slot = 3; /* 3 => use CD in slot 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | nslots = ide_cdrom_probe_capabilities (drive); |
| 2420 | |
| 2421 | /* |
| 2422 | * set correct block size |
| 2423 | */ |
| 2424 | blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE); |
| 2425 | |
| 2426 | if (drive->autotune == IDE_TUNE_DEFAULT || |
| 2427 | drive->autotune == IDE_TUNE_AUTO) |
| 2428 | drive->dsc_overlap = (drive->next != drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2429 | |
| 2430 | if (ide_cdrom_register(drive, nslots)) { |
| 2431 | printk (KERN_ERR "%s: ide_cdrom_setup failed to register device with the cdrom driver.\n", drive->name); |
Bartlomiej Zolnierkiewicz | 4fe6717 | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 2432 | cd->devinfo.handle = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | return 1; |
| 2434 | } |
| 2435 | ide_cdrom_add_settings(drive); |
| 2436 | return 0; |
| 2437 | } |
| 2438 | |
Bartlomiej Zolnierkiewicz | ecfd80e | 2007-05-10 00:01:09 +0200 | [diff] [blame] | 2439 | #ifdef CONFIG_IDE_PROC_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | static |
| 2441 | sector_t ide_cdrom_capacity (ide_drive_t *drive) |
| 2442 | { |
| 2443 | unsigned long capacity, sectors_per_frame; |
| 2444 | |
| 2445 | if (cdrom_read_capacity(drive, &capacity, §ors_per_frame, NULL)) |
| 2446 | return 0; |
| 2447 | |
| 2448 | return capacity * sectors_per_frame; |
| 2449 | } |
Amos Waterland | d97b3214 | 2005-10-30 15:02:10 -0800 | [diff] [blame] | 2450 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2451 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 2452 | static void ide_cd_remove(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | { |
| 2454 | struct cdrom_info *info = drive->driver_data; |
| 2455 | |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2456 | ide_proc_unregister_driver(drive, info->driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | |
| 2458 | del_gendisk(info->disk); |
| 2459 | |
| 2460 | ide_cd_put(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | } |
| 2462 | |
| 2463 | static void ide_cd_release(struct kref *kref) |
| 2464 | { |
| 2465 | struct cdrom_info *info = to_ide_cd(kref); |
| 2466 | struct cdrom_device_info *devinfo = &info->devinfo; |
| 2467 | ide_drive_t *drive = info->drive; |
| 2468 | struct gendisk *g = info->disk; |
| 2469 | |
Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 2470 | kfree(info->buffer); |
| 2471 | kfree(info->toc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | if (devinfo->handle == drive && unregister_cdrom(devinfo)) |
| 2473 | printk(KERN_ERR "%s: %s failed to unregister device from the cdrom " |
| 2474 | "driver.\n", __FUNCTION__, drive->name); |
| 2475 | drive->dsc_overlap = 0; |
| 2476 | drive->driver_data = NULL; |
| 2477 | blk_queue_prep_rq(drive->queue, NULL); |
| 2478 | g->private_data = NULL; |
| 2479 | put_disk(g); |
| 2480 | kfree(info); |
| 2481 | } |
| 2482 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 2483 | static int ide_cd_probe(ide_drive_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | |
Bartlomiej Zolnierkiewicz | ecfd80e | 2007-05-10 00:01:09 +0200 | [diff] [blame] | 2485 | #ifdef CONFIG_IDE_PROC_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | static int proc_idecd_read_capacity |
| 2487 | (char *page, char **start, off_t off, int count, int *eof, void *data) |
| 2488 | { |
Jesper Juhl | 2a91f3e | 2005-10-30 15:02:45 -0800 | [diff] [blame] | 2489 | ide_drive_t *drive = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2490 | int len; |
| 2491 | |
| 2492 | len = sprintf(page,"%llu\n", (long long)ide_cdrom_capacity(drive)); |
| 2493 | PROC_IDE_READ_RETURN(page,start,off,count,eof,len); |
| 2494 | } |
| 2495 | |
| 2496 | static ide_proc_entry_t idecd_proc[] = { |
| 2497 | { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL }, |
| 2498 | { NULL, 0, NULL, NULL } |
| 2499 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | #endif |
| 2501 | |
| 2502 | static ide_driver_t ide_cdrom_driver = { |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 2503 | .gen_driver = { |
Laurent Riffard | 4ef3b8f | 2005-11-18 22:15:40 +0100 | [diff] [blame] | 2504 | .owner = THIS_MODULE, |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 2505 | .name = "ide-cdrom", |
| 2506 | .bus = &ide_bus_type, |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 2507 | }, |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 2508 | .probe = ide_cd_probe, |
| 2509 | .remove = ide_cd_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | .version = IDECD_VERSION, |
| 2511 | .media = ide_cdrom, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2512 | .supports_dsc_overlap = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | .do_request = ide_do_rw_cdrom, |
| 2514 | .end_request = ide_end_request, |
| 2515 | .error = __ide_error, |
| 2516 | .abort = __ide_abort, |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2517 | #ifdef CONFIG_IDE_PROC_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2518 | .proc = idecd_proc, |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2519 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | }; |
| 2521 | |
| 2522 | static int idecd_open(struct inode * inode, struct file * file) |
| 2523 | { |
| 2524 | struct gendisk *disk = inode->i_bdev->bd_disk; |
| 2525 | struct cdrom_info *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | int rc = -ENOMEM; |
| 2527 | |
| 2528 | if (!(info = ide_cd_get(disk))) |
| 2529 | return -ENXIO; |
| 2530 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | if (!info->buffer) |
Bartlomiej Zolnierkiewicz | c94964a | 2007-02-17 02:40:24 +0100 | [diff] [blame] | 2532 | info->buffer = kmalloc(SECTOR_BUFFER_SIZE, GFP_KERNEL|__GFP_REPEAT); |
| 2533 | |
| 2534 | if (info->buffer) |
| 2535 | rc = cdrom_open(&info->devinfo, inode, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | |
| 2537 | if (rc < 0) |
| 2538 | ide_cd_put(info); |
| 2539 | |
| 2540 | return rc; |
| 2541 | } |
| 2542 | |
| 2543 | static int idecd_release(struct inode * inode, struct file * file) |
| 2544 | { |
| 2545 | struct gendisk *disk = inode->i_bdev->bd_disk; |
| 2546 | struct cdrom_info *info = ide_cd_g(disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2547 | |
| 2548 | cdrom_release (&info->devinfo, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2549 | |
| 2550 | ide_cd_put(info); |
| 2551 | |
| 2552 | return 0; |
| 2553 | } |
| 2554 | |
Christoph Hellwig | 6a2900b | 2006-03-23 03:00:15 -0800 | [diff] [blame] | 2555 | static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg) |
| 2556 | { |
| 2557 | struct packet_command cgc; |
| 2558 | char buffer[16]; |
| 2559 | int stat; |
| 2560 | char spindown; |
| 2561 | |
| 2562 | if (copy_from_user(&spindown, (void __user *)arg, sizeof(char))) |
| 2563 | return -EFAULT; |
| 2564 | |
| 2565 | init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN); |
| 2566 | |
| 2567 | stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0); |
| 2568 | if (stat) |
| 2569 | return stat; |
| 2570 | |
| 2571 | buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f); |
| 2572 | return cdrom_mode_select(cdi, &cgc); |
| 2573 | } |
| 2574 | |
| 2575 | static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg) |
| 2576 | { |
| 2577 | struct packet_command cgc; |
| 2578 | char buffer[16]; |
| 2579 | int stat; |
| 2580 | char spindown; |
| 2581 | |
| 2582 | init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN); |
| 2583 | |
| 2584 | stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0); |
| 2585 | if (stat) |
| 2586 | return stat; |
| 2587 | |
| 2588 | spindown = buffer[11] & 0x0f; |
| 2589 | if (copy_to_user((void __user *)arg, &spindown, sizeof (char))) |
| 2590 | return -EFAULT; |
| 2591 | return 0; |
| 2592 | } |
| 2593 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | static int idecd_ioctl (struct inode *inode, struct file *file, |
| 2595 | unsigned int cmd, unsigned long arg) |
| 2596 | { |
| 2597 | struct block_device *bdev = inode->i_bdev; |
| 2598 | struct cdrom_info *info = ide_cd_g(bdev->bd_disk); |
| 2599 | int err; |
| 2600 | |
Christoph Hellwig | 6a2900b | 2006-03-23 03:00:15 -0800 | [diff] [blame] | 2601 | switch (cmd) { |
| 2602 | case CDROMSETSPINDOWN: |
| 2603 | return idecd_set_spindown(&info->devinfo, arg); |
| 2604 | case CDROMGETSPINDOWN: |
| 2605 | return idecd_get_spindown(&info->devinfo, arg); |
| 2606 | default: |
| 2607 | break; |
| 2608 | } |
| 2609 | |
| 2610 | err = generic_ide_ioctl(info->drive, file, bdev, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | if (err == -EINVAL) |
| 2612 | err = cdrom_ioctl(file, &info->devinfo, inode, cmd, arg); |
| 2613 | |
| 2614 | return err; |
| 2615 | } |
| 2616 | |
| 2617 | static int idecd_media_changed(struct gendisk *disk) |
| 2618 | { |
| 2619 | struct cdrom_info *info = ide_cd_g(disk); |
| 2620 | return cdrom_media_changed(&info->devinfo); |
| 2621 | } |
| 2622 | |
| 2623 | static int idecd_revalidate_disk(struct gendisk *disk) |
| 2624 | { |
| 2625 | struct cdrom_info *info = ide_cd_g(disk); |
| 2626 | struct request_sense sense; |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 2627 | |
| 2628 | ide_cd_read_toc(info->drive, &sense); |
| 2629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | return 0; |
| 2631 | } |
| 2632 | |
| 2633 | static struct block_device_operations idecd_ops = { |
| 2634 | .owner = THIS_MODULE, |
| 2635 | .open = idecd_open, |
| 2636 | .release = idecd_release, |
| 2637 | .ioctl = idecd_ioctl, |
| 2638 | .media_changed = idecd_media_changed, |
| 2639 | .revalidate_disk= idecd_revalidate_disk |
| 2640 | }; |
| 2641 | |
| 2642 | /* options */ |
| 2643 | static char *ignore = NULL; |
| 2644 | |
| 2645 | module_param(ignore, charp, 0400); |
| 2646 | MODULE_DESCRIPTION("ATAPI CD-ROM Driver"); |
| 2647 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 2648 | static int ide_cd_probe(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2649 | { |
| 2650 | struct cdrom_info *info; |
| 2651 | struct gendisk *g; |
| 2652 | struct request_sense sense; |
| 2653 | |
| 2654 | if (!strstr("ide-cdrom", drive->driver_req)) |
| 2655 | goto failed; |
| 2656 | if (!drive->present) |
| 2657 | goto failed; |
| 2658 | if (drive->media != ide_cdrom && drive->media != ide_optical) |
| 2659 | goto failed; |
| 2660 | /* skip drives that we were told to ignore */ |
| 2661 | if (ignore != NULL) { |
| 2662 | if (strstr(ignore, drive->name)) { |
| 2663 | printk(KERN_INFO "ide-cd: ignoring drive %s\n", drive->name); |
| 2664 | goto failed; |
| 2665 | } |
| 2666 | } |
| 2667 | if (drive->scsi) { |
| 2668 | printk(KERN_INFO "ide-cd: passing drive %s to ide-scsi emulation.\n", drive->name); |
| 2669 | goto failed; |
| 2670 | } |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 2671 | info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2672 | if (info == NULL) { |
| 2673 | printk(KERN_ERR "%s: Can't allocate a cdrom structure\n", drive->name); |
| 2674 | goto failed; |
| 2675 | } |
| 2676 | |
| 2677 | g = alloc_disk(1 << PARTN_BITS); |
| 2678 | if (!g) |
| 2679 | goto out_free_cd; |
| 2680 | |
| 2681 | ide_init_disk(g, drive); |
| 2682 | |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2683 | ide_proc_register_driver(drive, &ide_cdrom_driver); |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 2684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | kref_init(&info->kref); |
| 2686 | |
| 2687 | info->drive = drive; |
| 2688 | info->driver = &ide_cdrom_driver; |
| 2689 | info->disk = g; |
| 2690 | |
| 2691 | g->private_data = &info->driver; |
| 2692 | |
| 2693 | drive->driver_data = info; |
| 2694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | g->minors = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | g->driverfs_dev = &drive->gendev; |
| 2697 | g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE; |
| 2698 | if (ide_cdrom_setup(drive)) { |
Bartlomiej Zolnierkiewicz | 7662d04 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 2699 | ide_proc_unregister_driver(drive, &ide_cdrom_driver); |
Bartlomiej Zolnierkiewicz | 05017db | 2007-12-24 15:23:43 +0100 | [diff] [blame] | 2700 | ide_cd_release(&info->kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | goto failed; |
| 2702 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2703 | |
Bartlomiej Zolnierkiewicz | 139c829 | 2008-02-01 23:09:24 +0100 | [diff] [blame] | 2704 | ide_cd_read_toc(drive, &sense); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2705 | g->fops = &idecd_ops; |
| 2706 | g->flags |= GENHD_FL_REMOVABLE; |
| 2707 | add_disk(g); |
| 2708 | return 0; |
| 2709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | out_free_cd: |
| 2711 | kfree(info); |
| 2712 | failed: |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 2713 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | } |
| 2715 | |
| 2716 | static void __exit ide_cdrom_exit(void) |
| 2717 | { |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 2718 | driver_unregister(&ide_cdrom_driver.gen_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | } |
Bartlomiej Zolnierkiewicz | 17514e8 | 2005-11-19 22:24:35 +0100 | [diff] [blame] | 2720 | |
| 2721 | static int __init ide_cdrom_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | { |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 2723 | return driver_register(&ide_cdrom_driver.gen_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2724 | } |
| 2725 | |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 2726 | MODULE_ALIAS("ide:*m-cdrom*"); |
Bartlomiej Zolnierkiewicz | 972560f | 2008-02-01 23:09:23 +0100 | [diff] [blame] | 2727 | MODULE_ALIAS("ide-cd"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | module_init(ide_cdrom_init); |
| 2729 | module_exit(ide_cdrom_exit); |
| 2730 | MODULE_LICENSE("GPL"); |