ALSA: hda - Fix missing stream for second ADC on Realtek ALC260 HDA codec
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / ide / ide-cd.c
blob2de76cc08f61d335a816d752c0bf3d9f955ee1bc
1 /*
2 * ATAPI CD-ROM driver.
4 * Copyright (C) 1994-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 * Copyright (C) 2005, 2007-2009 Bartlomiej Zolnierkiewicz
9 * May be copied or modified under the terms of the GNU General Public
10 * License. See linux/COPYING for more information.
12 * See Documentation/cdrom/ide-cd for usage information.
14 * Suggestions are welcome. Patches that work are more welcome though. ;-)
16 * Documentation:
17 * Mt. Fuji (SFF8090 version 4) and ATAPI (SFF-8020i rev 2.6) standards.
19 * For historical changelog please see:
20 * Documentation/ide/ChangeLog.ide-cd.1994-2004
23 #define DRV_NAME "ide-cd"
24 #define PFX DRV_NAME ": "
26 #define IDECD_VERSION "5.00"
28 #include <linux/module.h>
29 #include <linux/types.h>
30 #include <linux/kernel.h>
31 #include <linux/delay.h>
32 #include <linux/timer.h>
33 #include <linux/seq_file.h>
34 #include <linux/slab.h>
35 #include <linux/interrupt.h>
36 #include <linux/errno.h>
37 #include <linux/cdrom.h>
38 #include <linux/ide.h>
39 #include <linux/completion.h>
40 #include <linux/mutex.h>
41 #include <linux/bcd.h>
43 /* For SCSI -> ATAPI command conversion */
44 #include <scsi/scsi.h>
46 #include <linux/irq.h>
47 #include <linux/io.h>
48 #include <asm/byteorder.h>
49 #include <linux/uaccess.h>
50 #include <asm/unaligned.h>
52 #include "ide-cd.h"
54 static DEFINE_MUTEX(idecd_ref_mutex);
56 static void ide_cd_release(struct device *);
58 static struct cdrom_info *ide_cd_get(struct gendisk *disk)
60 struct cdrom_info *cd = NULL;
62 mutex_lock(&idecd_ref_mutex);
63 cd = ide_drv_g(disk, cdrom_info);
64 if (cd) {
65 if (ide_device_get(cd->drive))
66 cd = NULL;
67 else
68 get_device(&cd->dev);
71 mutex_unlock(&idecd_ref_mutex);
72 return cd;
75 static void ide_cd_put(struct cdrom_info *cd)
77 ide_drive_t *drive = cd->drive;
79 mutex_lock(&idecd_ref_mutex);
80 put_device(&cd->dev);
81 ide_device_put(drive);
82 mutex_unlock(&idecd_ref_mutex);
86 * Generic packet command support and error handling routines.
89 /* Mark that we've seen a media change and invalidate our internal buffers. */
90 static void cdrom_saw_media_change(ide_drive_t *drive)
92 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
93 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
96 static int cdrom_log_sense(ide_drive_t *drive, struct request *rq)
98 struct request_sense *sense = &drive->sense_data;
99 int log = 0;
101 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
102 return 0;
104 ide_debug_log(IDE_DBG_SENSE, "sense_key: 0x%x", sense->sense_key);
106 switch (sense->sense_key) {
107 case NO_SENSE:
108 case RECOVERED_ERROR:
109 break;
110 case NOT_READY:
112 * don't care about tray state messages for e.g. capacity
113 * commands or in-progress or becoming ready
115 if (sense->asc == 0x3a || sense->asc == 0x04)
116 break;
117 log = 1;
118 break;
119 case ILLEGAL_REQUEST:
121 * don't log START_STOP unit with LoEj set, since we cannot
122 * reliably check if drive can auto-close
124 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
125 break;
126 log = 1;
127 break;
128 case UNIT_ATTENTION:
130 * Make good and sure we've seen this potential media change.
131 * Some drives (i.e. Creative) fail to present the correct sense
132 * key in the error register.
134 cdrom_saw_media_change(drive);
135 break;
136 default:
137 log = 1;
138 break;
140 return log;
143 static void cdrom_analyze_sense_data(ide_drive_t *drive,
144 struct request *failed_command)
146 struct request_sense *sense = &drive->sense_data;
147 struct cdrom_info *info = drive->driver_data;
148 unsigned long sector;
149 unsigned long bio_sectors;
151 ide_debug_log(IDE_DBG_SENSE, "error_code: 0x%x, sense_key: 0x%x",
152 sense->error_code, sense->sense_key);
154 if (failed_command)
155 ide_debug_log(IDE_DBG_SENSE, "failed cmd: 0x%x",
156 failed_command->cmd[0]);
158 if (!cdrom_log_sense(drive, failed_command))
159 return;
162 * If a read toc is executed for a CD-R or CD-RW medium where the first
163 * toc has not been recorded yet, it will fail with 05/24/00 (which is a
164 * confusing error)
166 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
167 if (sense->sense_key == 0x05 && sense->asc == 0x24)
168 return;
170 /* current error */
171 if (sense->error_code == 0x70) {
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]);
186 if (queue_logical_block_size(drive->queue) == 2048)
187 /* device sector size is 2K */
188 sector <<= 2;
190 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
191 sector &= ~(bio_sectors - 1);
194 * The SCSI specification allows for the value
195 * returned by READ CAPACITY to be up to 75 2K
196 * sectors past the last readable block.
197 * Therefore, if we hit a medium error within the
198 * last 75 2K sectors, we decrease the saved size
199 * value.
201 if (sector < get_capacity(info->disk) &&
202 drive->probed_capacity - sector < 4 * 75)
203 set_capacity(info->disk, sector);
207 ide_cd_log_error(drive->name, failed_command, sense);
210 static void ide_cd_complete_failed_rq(ide_drive_t *drive, struct request *rq)
213 * For REQ_TYPE_SENSE, "rq->special" points to the original
214 * failed request. Also, the sense data should be read
215 * directly from rq which might be different from the original
216 * sense buffer if it got copied during mapping.
218 struct request *failed = (struct request *)rq->special;
219 void *sense = bio_data(rq->bio);
221 if (failed) {
222 if (failed->sense) {
224 * Sense is always read into drive->sense_data.
225 * Copy back if the failed request has its
226 * sense pointer set.
228 memcpy(failed->sense, sense, 18);
229 failed->sense_len = rq->sense_len;
231 cdrom_analyze_sense_data(drive, failed);
233 if (ide_end_rq(drive, failed, -EIO, blk_rq_bytes(failed)))
234 BUG();
235 } else
236 cdrom_analyze_sense_data(drive, NULL);
241 * Allow the drive 5 seconds to recover; some devices will return NOT_READY
242 * while flushing data from cache.
244 * returns: 0 failed (write timeout expired)
245 * 1 success
247 static int ide_cd_breathe(ide_drive_t *drive, struct request *rq)
250 struct cdrom_info *info = drive->driver_data;
252 if (!rq->errors)
253 info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY;
255 rq->errors = 1;
257 if (time_after(jiffies, info->write_timeout))
258 return 0;
259 else {
260 struct request_queue *q = drive->queue;
261 unsigned long flags;
264 * take a breather relying on the unplug timer to kick us again
267 spin_lock_irqsave(q->queue_lock, flags);
268 blk_plug_device(q);
269 spin_unlock_irqrestore(q->queue_lock, flags);
271 return 1;
276 * Returns:
277 * 0: if the request should be continued.
278 * 1: if the request will be going through error recovery.
279 * 2: if the request should be ended.
281 static int cdrom_decode_status(ide_drive_t *drive, u8 stat)
283 ide_hwif_t *hwif = drive->hwif;
284 struct request *rq = hwif->rq;
285 int err, sense_key, do_end_request = 0;
287 /* get the IDE error register */
288 err = ide_read_error(drive);
289 sense_key = err >> 4;
291 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, rq->cmd_type: 0x%x, err: 0x%x, "
292 "stat 0x%x",
293 rq->cmd[0], rq->cmd_type, err, stat);
295 if (blk_sense_request(rq)) {
297 * We got an error trying to get sense info from the drive
298 * (probably while trying to recover from a former error).
299 * Just give up.
301 rq->cmd_flags |= REQ_FAILED;
302 return 2;
305 /* if we have an error, pass CHECK_CONDITION as the SCSI status byte */
306 if (blk_pc_request(rq) && !rq->errors)
307 rq->errors = SAM_STAT_CHECK_CONDITION;
309 if (blk_noretry_request(rq))
310 do_end_request = 1;
312 switch (sense_key) {
313 case NOT_READY:
314 if (blk_fs_request(rq) && rq_data_dir(rq) == WRITE) {
315 if (ide_cd_breathe(drive, rq))
316 return 1;
317 } else {
318 cdrom_saw_media_change(drive);
320 if (blk_fs_request(rq) && !blk_rq_quiet(rq))
321 printk(KERN_ERR PFX "%s: tray open\n",
322 drive->name);
324 do_end_request = 1;
325 break;
326 case UNIT_ATTENTION:
327 cdrom_saw_media_change(drive);
329 if (blk_fs_request(rq) == 0)
330 return 0;
333 * Arrange to retry the request but be sure to give up if we've
334 * retried too many times.
336 if (++rq->errors > ERROR_MAX)
337 do_end_request = 1;
338 break;
339 case ILLEGAL_REQUEST:
341 * Don't print error message for this condition -- SFF8090i
342 * indicates that 5/24/00 is the correct response to a request
343 * to close the tray if the drive doesn't have that capability.
345 * cdrom_log_sense() knows this!
347 if (rq->cmd[0] == GPCMD_START_STOP_UNIT)
348 break;
349 /* fall-through */
350 case DATA_PROTECT:
352 * No point in retrying after an illegal request or data
353 * protect error.
355 if (!blk_rq_quiet(rq))
356 ide_dump_status(drive, "command error", stat);
357 do_end_request = 1;
358 break;
359 case MEDIUM_ERROR:
361 * No point in re-trying a zillion times on a bad sector.
362 * If we got here the error is not correctable.
364 if (!blk_rq_quiet(rq))
365 ide_dump_status(drive, "media error "
366 "(bad sector)", stat);
367 do_end_request = 1;
368 break;
369 case BLANK_CHECK:
370 /* disk appears blank? */
371 if (!blk_rq_quiet(rq))
372 ide_dump_status(drive, "media error (blank)",
373 stat);
374 do_end_request = 1;
375 break;
376 default:
377 if (blk_fs_request(rq) == 0)
378 break;
379 if (err & ~ATA_ABORTED) {
380 /* go to the default handler for other errors */
381 ide_error(drive, "cdrom_decode_status", stat);
382 return 1;
383 } else if (++rq->errors > ERROR_MAX)
384 /* we've racked up too many retries, abort */
385 do_end_request = 1;
388 if (blk_fs_request(rq) == 0) {
389 rq->cmd_flags |= REQ_FAILED;
390 do_end_request = 1;
394 * End a request through request sense analysis when we have sense data.
395 * We need this in order to perform end of media processing.
397 if (do_end_request)
398 goto end_request;
400 /* if we got a CHECK_CONDITION status, queue a request sense command */
401 if (stat & ATA_ERR)
402 return ide_queue_sense_rq(drive, NULL) ? 2 : 1;
403 return 1;
405 end_request:
406 if (stat & ATA_ERR) {
407 hwif->rq = NULL;
408 return ide_queue_sense_rq(drive, rq) ? 2 : 1;
409 } else
410 return 2;
413 static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct ide_cmd *cmd)
415 struct request *rq = cmd->rq;
417 ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
420 * Some of the trailing request sense fields are optional,
421 * and some drives don't send them. Sigh.
423 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
424 cmd->nleft > 0 && cmd->nleft <= 5)
425 cmd->nleft = 0;
428 int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
429 int write, void *buffer, unsigned *bufflen,
430 struct request_sense *sense, int timeout,
431 unsigned int cmd_flags)
433 struct cdrom_info *info = drive->driver_data;
434 struct request_sense local_sense;
435 int retries = 10;
436 unsigned int flags = 0;
438 if (!sense)
439 sense = &local_sense;
441 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
442 "cmd_flags: 0x%x",
443 cmd[0], write, timeout, cmd_flags);
445 /* start of retry loop */
446 do {
447 struct request *rq;
448 int error;
450 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
452 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
453 rq->cmd_type = REQ_TYPE_ATA_PC;
454 rq->sense = sense;
455 rq->cmd_flags |= cmd_flags;
456 rq->timeout = timeout;
457 if (buffer) {
458 error = blk_rq_map_kern(drive->queue, rq, buffer,
459 *bufflen, GFP_NOIO);
460 if (error) {
461 blk_put_request(rq);
462 return error;
466 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
468 if (buffer)
469 *bufflen = rq->resid_len;
471 flags = rq->cmd_flags;
472 blk_put_request(rq);
475 * FIXME: we should probably abort/retry or something in case of
476 * failure.
478 if (flags & REQ_FAILED) {
480 * The request failed. Retry if it was due to a unit
481 * attention status (usually means media was changed).
483 struct request_sense *reqbuf = sense;
485 if (reqbuf->sense_key == UNIT_ATTENTION)
486 cdrom_saw_media_change(drive);
487 else if (reqbuf->sense_key == NOT_READY &&
488 reqbuf->asc == 4 && reqbuf->ascq != 4) {
490 * The drive is in the process of loading
491 * a disk. Retry, but wait a little to give
492 * the drive time to complete the load.
494 ssleep(2);
495 } else {
496 /* otherwise, don't retry */
497 retries = 0;
499 --retries;
502 /* end of retry loop */
503 } while ((flags & REQ_FAILED) && retries >= 0);
505 /* return an error if the command failed */
506 return (flags & REQ_FAILED) ? -EIO : 0;
510 * returns true if rq has been completed
512 static bool ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
514 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
516 if (cmd->tf_flags & IDE_TFLAG_WRITE)
517 nr_bytes -= cmd->last_xfer_len;
519 if (nr_bytes > 0) {
520 ide_complete_rq(drive, 0, nr_bytes);
521 return true;
524 return false;
527 static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
529 ide_hwif_t *hwif = drive->hwif;
530 struct ide_cmd *cmd = &hwif->cmd;
531 struct request *rq = hwif->rq;
532 ide_expiry_t *expiry = NULL;
533 int dma_error = 0, dma, thislen, uptodate = 0;
534 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0;
535 int sense = blk_sense_request(rq);
536 unsigned int timeout;
537 u16 len;
538 u8 ireason, stat;
540 ide_debug_log(IDE_DBG_PC, "cmd: 0x%x, write: 0x%x", rq->cmd[0], write);
542 /* check for errors */
543 dma = drive->dma;
544 if (dma) {
545 drive->dma = 0;
546 drive->waiting_for_dma = 0;
547 dma_error = hwif->dma_ops->dma_end(drive);
548 ide_dma_unmap_sg(drive, cmd);
549 if (dma_error) {
550 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
551 write ? "write" : "read");
552 ide_dma_off(drive);
556 /* check status */
557 stat = hwif->tp_ops->read_status(hwif);
559 if (!OK_STAT(stat, 0, BAD_R_STAT)) {
560 rc = cdrom_decode_status(drive, stat);
561 if (rc) {
562 if (rc == 2)
563 goto out_end;
564 return ide_stopped;
568 /* using dma, transfer is complete now */
569 if (dma) {
570 if (dma_error)
571 return ide_error(drive, "dma error", stat);
572 uptodate = 1;
573 goto out_end;
576 ide_read_bcount_and_ireason(drive, &len, &ireason);
578 thislen = blk_fs_request(rq) ? len : cmd->nleft;
579 if (thislen > len)
580 thislen = len;
582 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
583 stat, thislen);
585 /* If DRQ is clear, the command has completed. */
586 if ((stat & ATA_DRQ) == 0) {
587 if (blk_fs_request(rq)) {
589 * If we're not done reading/writing, complain.
590 * Otherwise, complete the command normally.
592 uptodate = 1;
593 if (cmd->nleft > 0) {
594 printk(KERN_ERR PFX "%s: %s: data underrun "
595 "(%u bytes)\n", drive->name, __func__,
596 cmd->nleft);
597 if (!write)
598 rq->cmd_flags |= REQ_FAILED;
599 uptodate = 0;
601 } else if (!blk_pc_request(rq)) {
602 ide_cd_request_sense_fixup(drive, cmd);
604 uptodate = cmd->nleft ? 0 : 1;
607 * suck out the remaining bytes from the drive in an
608 * attempt to complete the data xfer. (see BZ#13399)
610 if (!(stat & ATA_ERR) && !uptodate && thislen) {
611 ide_pio_bytes(drive, cmd, write, thislen);
612 uptodate = cmd->nleft ? 0 : 1;
615 if (!uptodate)
616 rq->cmd_flags |= REQ_FAILED;
618 goto out_end;
621 rc = ide_check_ireason(drive, rq, len, ireason, write);
622 if (rc)
623 goto out_end;
625 cmd->last_xfer_len = 0;
627 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
628 "ireason: 0x%x",
629 rq->cmd_type, ireason);
631 /* transfer data */
632 while (thislen > 0) {
633 int blen = min_t(int, thislen, cmd->nleft);
635 if (cmd->nleft == 0)
636 break;
638 ide_pio_bytes(drive, cmd, write, blen);
639 cmd->last_xfer_len += blen;
641 thislen -= blen;
642 len -= blen;
644 if (sense && write == 0)
645 rq->sense_len += blen;
648 /* pad, if necessary */
649 if (len > 0) {
650 if (blk_fs_request(rq) == 0 || write == 0)
651 ide_pad_transfer(drive, write, len);
652 else {
653 printk(KERN_ERR PFX "%s: confused, missing data\n",
654 drive->name);
655 blk_dump_rq_flags(rq, "cdrom_newpc_intr");
659 if (blk_pc_request(rq)) {
660 timeout = rq->timeout;
661 } else {
662 timeout = ATAPI_WAIT_PC;
663 if (!blk_fs_request(rq))
664 expiry = ide_cd_expiry;
667 hwif->expiry = expiry;
668 ide_set_handler(drive, cdrom_newpc_intr, timeout);
669 return ide_started;
671 out_end:
672 if (blk_pc_request(rq) && rc == 0) {
673 rq->resid_len = 0;
674 blk_end_request_all(rq, 0);
675 hwif->rq = NULL;
676 } else {
677 if (sense && uptodate)
678 ide_cd_complete_failed_rq(drive, rq);
680 if (blk_fs_request(rq)) {
681 if (cmd->nleft == 0)
682 uptodate = 1;
683 } else {
684 if (uptodate <= 0 && rq->errors == 0)
685 rq->errors = -EIO;
688 if (uptodate == 0 && rq->bio)
689 if (ide_cd_error_cmd(drive, cmd))
690 return ide_stopped;
692 /* make sure it's fully ended */
693 if (blk_fs_request(rq) == 0) {
694 rq->resid_len -= cmd->nbytes - cmd->nleft;
695 if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
696 rq->resid_len += cmd->last_xfer_len;
699 ide_complete_rq(drive, uptodate ? 0 : -EIO, blk_rq_bytes(rq));
701 if (sense && rc == 2)
702 ide_error(drive, "request sense failure", stat);
704 return ide_stopped;
707 static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
709 struct cdrom_info *cd = drive->driver_data;
710 struct request_queue *q = drive->queue;
711 int write = rq_data_dir(rq) == WRITE;
712 unsigned short sectors_per_frame =
713 queue_logical_block_size(q) >> SECTOR_BITS;
715 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
716 "secs_per_frame: %u",
717 rq->cmd[0], rq->cmd_flags, sectors_per_frame);
719 if (write) {
720 /* disk has become write protected */
721 if (get_disk_ro(cd->disk))
722 return ide_stopped;
723 } else {
725 * We may be retrying this request after an error. Fix up any
726 * weirdness which might be present in the request packet.
728 q->prep_rq_fn(q, rq);
731 /* fs requests *must* be hardware frame aligned */
732 if ((blk_rq_sectors(rq) & (sectors_per_frame - 1)) ||
733 (blk_rq_pos(rq) & (sectors_per_frame - 1)))
734 return ide_stopped;
736 /* use DMA, if possible */
737 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
739 if (write)
740 cd->devinfo.media_written = 1;
742 rq->timeout = ATAPI_WAIT_PC;
744 return ide_started;
747 static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
750 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
751 rq->cmd[0], rq->cmd_type);
753 if (blk_pc_request(rq))
754 rq->cmd_flags |= REQ_QUIET;
755 else
756 rq->cmd_flags &= ~REQ_FAILED;
758 drive->dma = 0;
760 /* sg request */
761 if (rq->bio) {
762 struct request_queue *q = drive->queue;
763 char *buf = bio_data(rq->bio);
764 unsigned int alignment;
766 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
769 * check if dma is safe
771 * NOTE! The "len" and "addr" checks should possibly have
772 * separate masks.
774 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
775 if ((unsigned long)buf & alignment
776 || blk_rq_bytes(rq) & q->dma_pad_mask
777 || object_is_on_stack(buf))
778 drive->dma = 0;
782 static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
783 sector_t block)
785 struct ide_cmd cmd;
786 int uptodate = 0, nsectors;
788 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
789 rq->cmd[0], (unsigned long long)block);
791 if (drive->debug_mask & IDE_DBG_RQ)
792 blk_dump_rq_flags(rq, "ide_cd_do_request");
794 if (blk_fs_request(rq)) {
795 if (cdrom_start_rw(drive, rq) == ide_stopped)
796 goto out_end;
797 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
798 rq->cmd_type == REQ_TYPE_ATA_PC) {
799 if (!rq->timeout)
800 rq->timeout = ATAPI_WAIT_PC;
802 cdrom_do_block_pc(drive, rq);
803 } else if (blk_special_request(rq)) {
804 /* right now this can only be a reset... */
805 uptodate = 1;
806 goto out_end;
807 } else
808 BUG();
810 /* prepare sense request for this command */
811 ide_prep_sense(drive, rq);
813 memset(&cmd, 0, sizeof(cmd));
815 if (rq_data_dir(rq))
816 cmd.tf_flags |= IDE_TFLAG_WRITE;
818 cmd.rq = rq;
820 if (blk_fs_request(rq) || blk_rq_bytes(rq)) {
821 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
822 ide_map_sg(drive, &cmd);
825 return ide_issue_pc(drive, &cmd);
826 out_end:
827 nsectors = blk_rq_sectors(rq);
829 if (nsectors == 0)
830 nsectors = 1;
832 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
834 return ide_stopped;
838 * Ioctl handling.
840 * Routines which queue packet commands take as a final argument a pointer to a
841 * request_sense struct. If execution of the command results in an error with a
842 * CHECK CONDITION status, this structure will be filled with the results of the
843 * subsequent request sense command. The pointer can also be NULL, in which case
844 * no sense information is returned.
846 static void msf_from_bcd(struct atapi_msf *msf)
848 msf->minute = bcd2bin(msf->minute);
849 msf->second = bcd2bin(msf->second);
850 msf->frame = bcd2bin(msf->frame);
853 int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
855 struct cdrom_info *info = drive->driver_data;
856 struct cdrom_device_info *cdi = &info->devinfo;
857 unsigned char cmd[BLK_MAX_CDB];
859 ide_debug_log(IDE_DBG_FUNC, "enter");
861 memset(cmd, 0, BLK_MAX_CDB);
862 cmd[0] = GPCMD_TEST_UNIT_READY;
865 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
866 * instead of supporting the LOAD_UNLOAD opcode.
868 cmd[7] = cdi->sanyo_slot % 3;
870 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
873 static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
874 unsigned long *sectors_per_frame,
875 struct request_sense *sense)
877 struct {
878 __be32 lba;
879 __be32 blocklen;
880 } capbuf;
882 int stat;
883 unsigned char cmd[BLK_MAX_CDB];
884 unsigned len = sizeof(capbuf);
885 u32 blocklen;
887 ide_debug_log(IDE_DBG_FUNC, "enter");
889 memset(cmd, 0, BLK_MAX_CDB);
890 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
892 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
893 REQ_QUIET);
894 if (stat)
895 return stat;
898 * Sanity check the given block size, in so far as making
899 * sure the sectors_per_frame we give to the caller won't
900 * end up being bogus.
902 blocklen = be32_to_cpu(capbuf.blocklen);
903 blocklen = (blocklen >> SECTOR_BITS) << SECTOR_BITS;
904 switch (blocklen) {
905 case 512:
906 case 1024:
907 case 2048:
908 case 4096:
909 break;
910 default:
911 printk_once(KERN_ERR PFX "%s: weird block size %u; "
912 "setting default block size to 2048\n",
913 drive->name, blocklen);
914 blocklen = 2048;
915 break;
918 *capacity = 1 + be32_to_cpu(capbuf.lba);
919 *sectors_per_frame = blocklen >> SECTOR_BITS;
921 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
922 *capacity, *sectors_per_frame);
924 return 0;
927 static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
928 int format, char *buf, int buflen,
929 struct request_sense *sense)
931 unsigned char cmd[BLK_MAX_CDB];
933 ide_debug_log(IDE_DBG_FUNC, "enter");
935 memset(cmd, 0, BLK_MAX_CDB);
937 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
938 cmd[6] = trackno;
939 cmd[7] = (buflen >> 8);
940 cmd[8] = (buflen & 0xff);
941 cmd[9] = (format << 6);
943 if (msf_flag)
944 cmd[1] = 2;
946 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
949 /* Try to read the entire TOC for the disk into our internal buffer. */
950 int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
952 int stat, ntracks, i;
953 struct cdrom_info *info = drive->driver_data;
954 struct cdrom_device_info *cdi = &info->devinfo;
955 struct atapi_toc *toc = info->toc;
956 struct {
957 struct atapi_toc_header hdr;
958 struct atapi_toc_entry ent;
959 } ms_tmp;
960 long last_written;
961 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
963 ide_debug_log(IDE_DBG_FUNC, "enter");
965 if (toc == NULL) {
966 /* try to allocate space */
967 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
968 if (toc == NULL) {
969 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
970 drive->name);
971 return -ENOMEM;
973 info->toc = toc;
977 * Check to see if the existing data is still valid. If it is,
978 * just return.
980 (void) cdrom_check_status(drive, sense);
982 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
983 return 0;
985 /* try to get the total cdrom capacity and sector size */
986 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
987 sense);
988 if (stat)
989 toc->capacity = 0x1fffff;
991 set_capacity(info->disk, toc->capacity * sectors_per_frame);
992 /* save a private copy of the TOC capacity for error handling */
993 drive->probed_capacity = toc->capacity * sectors_per_frame;
995 blk_queue_logical_block_size(drive->queue,
996 sectors_per_frame << SECTOR_BITS);
998 /* first read just the header, so we know how long the TOC is */
999 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1000 sizeof(struct atapi_toc_header), sense);
1001 if (stat)
1002 return stat;
1004 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1005 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1006 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
1009 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1010 if (ntracks <= 0)
1011 return -EIO;
1012 if (ntracks > MAX_TRACKS)
1013 ntracks = MAX_TRACKS;
1015 /* now read the whole schmeer */
1016 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1017 (char *)&toc->hdr,
1018 sizeof(struct atapi_toc_header) +
1019 (ntracks + 1) *
1020 sizeof(struct atapi_toc_entry), sense);
1022 if (stat && toc->hdr.first_track > 1) {
1024 * Cds with CDI tracks only don't have any TOC entries, despite
1025 * of this the returned values are
1026 * first_track == last_track = number of CDI tracks + 1,
1027 * so that this case is indistinguishable from the same layout
1028 * plus an additional audio track. If we get an error for the
1029 * regular case, we assume a CDI without additional audio
1030 * tracks. In this case the readable TOC is empty (CDI tracks
1031 * are not included) and only holds the Leadout entry.
1033 * Heiko Eißfeldt.
1035 ntracks = 0;
1036 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1037 (char *)&toc->hdr,
1038 sizeof(struct atapi_toc_header) +
1039 (ntracks + 1) *
1040 sizeof(struct atapi_toc_entry),
1041 sense);
1042 if (stat)
1043 return stat;
1045 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1046 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1047 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
1048 } else {
1049 toc->hdr.first_track = CDROM_LEADOUT;
1050 toc->hdr.last_track = CDROM_LEADOUT;
1054 if (stat)
1055 return stat;
1057 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
1059 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1060 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1061 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
1064 for (i = 0; i <= ntracks; i++) {
1065 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1066 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
1067 toc->ent[i].track = bcd2bin(toc->ent[i].track);
1068 msf_from_bcd(&toc->ent[i].addr.msf);
1070 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1071 toc->ent[i].addr.msf.second,
1072 toc->ent[i].addr.msf.frame);
1075 if (toc->hdr.first_track != CDROM_LEADOUT) {
1076 /* read the multisession information */
1077 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1078 sizeof(ms_tmp), sense);
1079 if (stat)
1080 return stat;
1082 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1083 } else {
1084 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1085 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
1086 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1089 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1090 /* re-read multisession information using MSF format */
1091 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1092 sizeof(ms_tmp), sense);
1093 if (stat)
1094 return stat;
1096 msf_from_bcd(&ms_tmp.ent.addr.msf);
1097 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
1098 ms_tmp.ent.addr.msf.second,
1099 ms_tmp.ent.addr.msf.frame);
1102 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1104 /* now try to get the total cdrom capacity */
1105 stat = cdrom_get_last_written(cdi, &last_written);
1106 if (!stat && (last_written > toc->capacity)) {
1107 toc->capacity = last_written;
1108 set_capacity(info->disk, toc->capacity * sectors_per_frame);
1109 drive->probed_capacity = toc->capacity * sectors_per_frame;
1112 /* Remember that we've read this stuff. */
1113 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
1115 return 0;
1118 int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
1120 struct cdrom_info *info = drive->driver_data;
1121 struct cdrom_device_info *cdi = &info->devinfo;
1122 struct packet_command cgc;
1123 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
1125 ide_debug_log(IDE_DBG_FUNC, "enter");
1127 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
1128 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
1130 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
1131 do {
1132 /* we seem to get stat=0x01,err=0x00 the first time (??) */
1133 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1134 if (!stat)
1135 break;
1136 } while (--attempts);
1137 return stat;
1140 void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
1142 struct cdrom_info *cd = drive->driver_data;
1143 u16 curspeed, maxspeed;
1145 ide_debug_log(IDE_DBG_FUNC, "enter");
1147 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
1148 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1149 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
1150 } else {
1151 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1152 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
1155 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1156 curspeed, maxspeed);
1158 cd->current_speed = DIV_ROUND_CLOSEST(curspeed, 176);
1159 cd->max_speed = DIV_ROUND_CLOSEST(maxspeed, 176);
1162 #define IDE_CD_CAPABILITIES \
1163 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1164 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1165 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1166 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1167 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
1169 static struct cdrom_device_ops ide_cdrom_dops = {
1170 .open = ide_cdrom_open_real,
1171 .release = ide_cdrom_release_real,
1172 .drive_status = ide_cdrom_drive_status,
1173 .media_changed = ide_cdrom_check_media_change_real,
1174 .tray_move = ide_cdrom_tray_move,
1175 .lock_door = ide_cdrom_lock_door,
1176 .select_speed = ide_cdrom_select_speed,
1177 .get_last_session = ide_cdrom_get_last_session,
1178 .get_mcn = ide_cdrom_get_mcn,
1179 .reset = ide_cdrom_reset,
1180 .audio_ioctl = ide_cdrom_audio_ioctl,
1181 .capability = IDE_CD_CAPABILITIES,
1182 .generic_packet = ide_cdrom_packet,
1185 static int ide_cdrom_register(ide_drive_t *drive, int nslots)
1187 struct cdrom_info *info = drive->driver_data;
1188 struct cdrom_device_info *devinfo = &info->devinfo;
1190 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
1192 devinfo->ops = &ide_cdrom_dops;
1193 devinfo->speed = info->current_speed;
1194 devinfo->capacity = nslots;
1195 devinfo->handle = drive;
1196 strcpy(devinfo->name, drive->name);
1198 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
1199 devinfo->mask |= CDC_SELECT_SPEED;
1201 devinfo->disk = info->disk;
1202 return register_cdrom(devinfo);
1205 static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
1207 struct cdrom_info *cd = drive->driver_data;
1208 struct cdrom_device_info *cdi = &cd->devinfo;
1209 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1210 mechtype_t mechtype;
1211 int nslots = 1;
1213 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1214 drive->media, drive->atapi_flags);
1216 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1217 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1218 CDC_MO_DRIVE | CDC_RAM);
1220 if (drive->media == ide_optical) {
1221 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
1222 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
1223 drive->name);
1224 return nslots;
1227 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1228 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
1229 cdi->mask &= ~CDC_PLAY_AUDIO;
1230 return nslots;
1234 * We have to cheat a little here. the packet will eventually be queued
1235 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1236 * Since this device hasn't been registered with the Uniform layer yet,
1237 * it can't do this. Same goes for cdi->ops.
1239 cdi->handle = drive;
1240 cdi->ops = &ide_cdrom_dops;
1242 if (ide_cdrom_get_capabilities(drive, buf))
1243 return 0;
1245 if ((buf[8 + 6] & 0x01) == 0)
1246 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
1247 if (buf[8 + 6] & 0x08)
1248 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
1249 if (buf[8 + 3] & 0x01)
1250 cdi->mask &= ~CDC_CD_R;
1251 if (buf[8 + 3] & 0x02)
1252 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
1253 if (buf[8 + 2] & 0x38)
1254 cdi->mask &= ~CDC_DVD;
1255 if (buf[8 + 3] & 0x20)
1256 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
1257 if (buf[8 + 3] & 0x10)
1258 cdi->mask &= ~CDC_DVD_R;
1259 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
1260 cdi->mask &= ~CDC_PLAY_AUDIO;
1262 mechtype = buf[8 + 6] >> 5;
1263 if (mechtype == mechtype_caddy ||
1264 mechtype == mechtype_popup ||
1265 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
1266 cdi->mask |= CDC_CLOSE_TRAY;
1268 if (cdi->sanyo_slot > 0) {
1269 cdi->mask &= ~CDC_SELECT_DISC;
1270 nslots = 3;
1271 } else if (mechtype == mechtype_individual_changer ||
1272 mechtype == mechtype_cartridge_changer) {
1273 nslots = cdrom_number_of_slots(cdi);
1274 if (nslots > 1)
1275 cdi->mask &= ~CDC_SELECT_DISC;
1278 ide_cdrom_update_speed(drive, buf);
1280 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
1282 /* don't print speed if the drive reported 0 */
1283 if (cd->max_speed)
1284 printk(KERN_CONT " %dX", cd->max_speed);
1286 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
1288 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1289 printk(KERN_CONT " DVD%s%s",
1290 (cdi->mask & CDC_DVD_R) ? "" : "-R",
1291 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
1293 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1294 printk(KERN_CONT " CD%s%s",
1295 (cdi->mask & CDC_CD_R) ? "" : "-R",
1296 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
1298 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1299 printk(KERN_CONT " changer w/%d slots", nslots);
1300 else
1301 printk(KERN_CONT " drive");
1303 printk(KERN_CONT ", %dkB Cache\n",
1304 be16_to_cpup((__be16 *)&buf[8 + 12]));
1306 return nslots;
1309 /* standard prep_rq_fn that builds 10 byte cmds */
1310 static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
1312 int hard_sect = queue_logical_block_size(q);
1313 long block = (long)blk_rq_pos(rq) / (hard_sect >> 9);
1314 unsigned long blocks = blk_rq_sectors(rq) / (hard_sect >> 9);
1316 memset(rq->cmd, 0, BLK_MAX_CDB);
1318 if (rq_data_dir(rq) == READ)
1319 rq->cmd[0] = GPCMD_READ_10;
1320 else
1321 rq->cmd[0] = GPCMD_WRITE_10;
1324 * fill in lba
1326 rq->cmd[2] = (block >> 24) & 0xff;
1327 rq->cmd[3] = (block >> 16) & 0xff;
1328 rq->cmd[4] = (block >> 8) & 0xff;
1329 rq->cmd[5] = block & 0xff;
1332 * and transfer length
1334 rq->cmd[7] = (blocks >> 8) & 0xff;
1335 rq->cmd[8] = blocks & 0xff;
1336 rq->cmd_len = 10;
1337 return BLKPREP_OK;
1341 * Most of the SCSI commands are supported directly by ATAPI devices.
1342 * This transform handles the few exceptions.
1344 static int ide_cdrom_prep_pc(struct request *rq)
1346 u8 *c = rq->cmd;
1348 /* transform 6-byte read/write commands to the 10-byte version */
1349 if (c[0] == READ_6 || c[0] == WRITE_6) {
1350 c[8] = c[4];
1351 c[5] = c[3];
1352 c[4] = c[2];
1353 c[3] = c[1] & 0x1f;
1354 c[2] = 0;
1355 c[1] &= 0xe0;
1356 c[0] += (READ_10 - READ_6);
1357 rq->cmd_len = 10;
1358 return BLKPREP_OK;
1362 * it's silly to pretend we understand 6-byte sense commands, just
1363 * reject with ILLEGAL_REQUEST and the caller should take the
1364 * appropriate action
1366 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1367 rq->errors = ILLEGAL_REQUEST;
1368 return BLKPREP_KILL;
1371 return BLKPREP_OK;
1374 static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
1376 if (blk_fs_request(rq))
1377 return ide_cdrom_prep_fs(q, rq);
1378 else if (blk_pc_request(rq))
1379 return ide_cdrom_prep_pc(rq);
1381 return 0;
1384 struct cd_list_entry {
1385 const char *id_model;
1386 const char *id_firmware;
1387 unsigned int cd_flags;
1390 #ifdef CONFIG_IDE_PROC_FS
1391 static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1393 unsigned long capacity, sectors_per_frame;
1395 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1396 return 0;
1398 return capacity * sectors_per_frame;
1401 static int idecd_capacity_proc_show(struct seq_file *m, void *v)
1403 ide_drive_t *drive = m->private;
1405 seq_printf(m, "%llu\n", (long long)ide_cdrom_capacity(drive));
1406 return 0;
1409 static int idecd_capacity_proc_open(struct inode *inode, struct file *file)
1411 return single_open(file, idecd_capacity_proc_show, PDE(inode)->data);
1414 static const struct file_operations idecd_capacity_proc_fops = {
1415 .owner = THIS_MODULE,
1416 .open = idecd_capacity_proc_open,
1417 .read = seq_read,
1418 .llseek = seq_lseek,
1419 .release = single_release,
1422 static ide_proc_entry_t idecd_proc[] = {
1423 { "capacity", S_IFREG|S_IRUGO, &idecd_capacity_proc_fops },
1427 static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1429 return idecd_proc;
1432 static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1434 return NULL;
1436 #endif
1438 static const struct cd_list_entry ide_cd_quirks_list[] = {
1439 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
1440 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
1441 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
1442 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1443 IDE_AFLAG_PRE_ATAPI12, },
1444 /* Vertos 300, some versions of this drive like to talk BCD. */
1445 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
1446 /* Vertos 600 ESD. */
1447 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
1449 * Sanyo 3 CD changer uses a non-standard command for CD changing
1450 * (by default standard ATAPI support for CD changers is used).
1452 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1453 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1454 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
1455 /* Stingray 8X CD-ROM. */
1456 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
1458 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1459 * mode sense page capabilities size, but older drives break.
1461 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1462 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1463 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
1464 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
1466 * Some drives used by Apple don't advertise audio play
1467 * but they do support reading TOC & audio datas.
1469 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1470 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1471 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1472 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1473 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1474 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1475 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
1476 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
1477 { NULL, NULL, 0 }
1480 static unsigned int ide_cd_flags(u16 *id)
1482 const struct cd_list_entry *cle = ide_cd_quirks_list;
1484 while (cle->id_model) {
1485 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
1486 (cle->id_firmware == NULL ||
1487 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
1488 return cle->cd_flags;
1489 cle++;
1492 return 0;
1495 static int ide_cdrom_setup(ide_drive_t *drive)
1497 struct cdrom_info *cd = drive->driver_data;
1498 struct cdrom_device_info *cdi = &cd->devinfo;
1499 struct request_queue *q = drive->queue;
1500 u16 *id = drive->id;
1501 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
1502 int nslots;
1504 ide_debug_log(IDE_DBG_PROBE, "enter");
1506 blk_queue_prep_rq(q, ide_cdrom_prep_fn);
1507 blk_queue_dma_alignment(q, 31);
1508 blk_queue_update_dma_pad(q, 15);
1510 q->unplug_delay = max((1 * HZ) / 1000, 1);
1512 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1513 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
1515 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
1516 fw_rev[4] == '1' && fw_rev[6] <= '2')
1517 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1518 IDE_AFLAG_TOCADDR_AS_BCD);
1519 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
1520 fw_rev[4] == '1' && fw_rev[6] <= '2')
1521 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1522 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
1523 /* 3 => use CD in slot 0 */
1524 cdi->sanyo_slot = 3;
1526 nslots = ide_cdrom_probe_capabilities(drive);
1528 blk_queue_logical_block_size(q, CD_FRAMESIZE);
1530 if (ide_cdrom_register(drive, nslots)) {
1531 printk(KERN_ERR PFX "%s: %s failed to register device with the"
1532 " cdrom driver.\n", drive->name, __func__);
1533 cd->devinfo.handle = NULL;
1534 return 1;
1537 ide_proc_register_driver(drive, cd->driver);
1538 return 0;
1541 static void ide_cd_remove(ide_drive_t *drive)
1543 struct cdrom_info *info = drive->driver_data;
1545 ide_debug_log(IDE_DBG_FUNC, "enter");
1547 ide_proc_unregister_driver(drive, info->driver);
1548 device_del(&info->dev);
1549 del_gendisk(info->disk);
1551 mutex_lock(&idecd_ref_mutex);
1552 put_device(&info->dev);
1553 mutex_unlock(&idecd_ref_mutex);
1556 static void ide_cd_release(struct device *dev)
1558 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
1559 struct cdrom_device_info *devinfo = &info->devinfo;
1560 ide_drive_t *drive = info->drive;
1561 struct gendisk *g = info->disk;
1563 ide_debug_log(IDE_DBG_FUNC, "enter");
1565 kfree(info->toc);
1566 if (devinfo->handle == drive)
1567 unregister_cdrom(devinfo);
1568 drive->driver_data = NULL;
1569 blk_queue_prep_rq(drive->queue, NULL);
1570 g->private_data = NULL;
1571 put_disk(g);
1572 kfree(info);
1575 static int ide_cd_probe(ide_drive_t *);
1577 static struct ide_driver ide_cdrom_driver = {
1578 .gen_driver = {
1579 .owner = THIS_MODULE,
1580 .name = "ide-cdrom",
1581 .bus = &ide_bus_type,
1583 .probe = ide_cd_probe,
1584 .remove = ide_cd_remove,
1585 .version = IDECD_VERSION,
1586 .do_request = ide_cd_do_request,
1587 #ifdef CONFIG_IDE_PROC_FS
1588 .proc_entries = ide_cd_proc_entries,
1589 .proc_devsets = ide_cd_proc_devsets,
1590 #endif
1593 static int idecd_open(struct block_device *bdev, fmode_t mode)
1595 struct cdrom_info *info = ide_cd_get(bdev->bd_disk);
1596 int rc = -ENOMEM;
1598 if (!info)
1599 return -ENXIO;
1601 rc = cdrom_open(&info->devinfo, bdev, mode);
1603 if (rc < 0)
1604 ide_cd_put(info);
1606 return rc;
1609 static int idecd_release(struct gendisk *disk, fmode_t mode)
1611 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1613 cdrom_release(&info->devinfo, mode);
1615 ide_cd_put(info);
1617 return 0;
1620 static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1622 struct packet_command cgc;
1623 char buffer[16];
1624 int stat;
1625 char spindown;
1627 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1628 return -EFAULT;
1630 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1632 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1633 if (stat)
1634 return stat;
1636 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1637 return cdrom_mode_select(cdi, &cgc);
1640 static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1642 struct packet_command cgc;
1643 char buffer[16];
1644 int stat;
1645 char spindown;
1647 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1649 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1650 if (stat)
1651 return stat;
1653 spindown = buffer[11] & 0x0f;
1654 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
1655 return -EFAULT;
1656 return 0;
1659 static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
1660 unsigned int cmd, unsigned long arg)
1662 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
1663 int err;
1665 switch (cmd) {
1666 case CDROMSETSPINDOWN:
1667 return idecd_set_spindown(&info->devinfo, arg);
1668 case CDROMGETSPINDOWN:
1669 return idecd_get_spindown(&info->devinfo, arg);
1670 default:
1671 break;
1674 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
1675 if (err == -EINVAL)
1676 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
1678 return err;
1681 static int idecd_media_changed(struct gendisk *disk)
1683 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1684 return cdrom_media_changed(&info->devinfo);
1687 static int idecd_revalidate_disk(struct gendisk *disk)
1689 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1690 struct request_sense sense;
1692 ide_cd_read_toc(info->drive, &sense);
1694 return 0;
1697 static const struct block_device_operations idecd_ops = {
1698 .owner = THIS_MODULE,
1699 .open = idecd_open,
1700 .release = idecd_release,
1701 .locked_ioctl = idecd_ioctl,
1702 .media_changed = idecd_media_changed,
1703 .revalidate_disk = idecd_revalidate_disk
1706 /* module options */
1707 static unsigned long debug_mask;
1708 module_param(debug_mask, ulong, 0644);
1710 MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1712 static int ide_cd_probe(ide_drive_t *drive)
1714 struct cdrom_info *info;
1715 struct gendisk *g;
1716 struct request_sense sense;
1718 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1719 drive->driver_req, drive->media);
1721 if (!strstr("ide-cdrom", drive->driver_req))
1722 goto failed;
1724 if (drive->media != ide_cdrom && drive->media != ide_optical)
1725 goto failed;
1727 drive->debug_mask = debug_mask;
1728 drive->irq_handler = cdrom_newpc_intr;
1730 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
1731 if (info == NULL) {
1732 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
1733 drive->name);
1734 goto failed;
1737 g = alloc_disk(1 << PARTN_BITS);
1738 if (!g)
1739 goto out_free_cd;
1741 ide_init_disk(g, drive);
1743 info->dev.parent = &drive->gendev;
1744 info->dev.release = ide_cd_release;
1745 dev_set_name(&info->dev, dev_name(&drive->gendev));
1747 if (device_register(&info->dev))
1748 goto out_free_disk;
1750 info->drive = drive;
1751 info->driver = &ide_cdrom_driver;
1752 info->disk = g;
1754 g->private_data = &info->driver;
1756 drive->driver_data = info;
1758 g->minors = 1;
1759 g->driverfs_dev = &drive->gendev;
1760 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1761 if (ide_cdrom_setup(drive)) {
1762 put_device(&info->dev);
1763 goto failed;
1766 ide_cd_read_toc(drive, &sense);
1767 g->fops = &idecd_ops;
1768 g->flags |= GENHD_FL_REMOVABLE;
1769 add_disk(g);
1770 return 0;
1772 out_free_disk:
1773 put_disk(g);
1774 out_free_cd:
1775 kfree(info);
1776 failed:
1777 return -ENODEV;
1780 static void __exit ide_cdrom_exit(void)
1782 driver_unregister(&ide_cdrom_driver.gen_driver);
1785 static int __init ide_cdrom_init(void)
1787 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
1788 return driver_register(&ide_cdrom_driver.gen_driver);
1791 MODULE_ALIAS("ide:*m-cdrom*");
1792 MODULE_ALIAS("ide-cd");
1793 module_init(ide_cdrom_init);
1794 module_exit(ide_cdrom_exit);
1795 MODULE_LICENSE("GPL");