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.rst for usage information.
14 * Suggestions are welcome. Patches that work are more welcome though. ;-)
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/compat.h>
29 #include <linux/module.h>
30 #include <linux/types.h>
31 #include <linux/kernel.h>
32 #include <linux/sched/task_stack.h>
33 #include <linux/delay.h>
34 #include <linux/timer.h>
35 #include <linux/seq_file.h>
36 #include <linux/slab.h>
37 #include <linux/interrupt.h>
38 #include <linux/errno.h>
39 #include <linux/cdrom.h>
40 #include <linux/ide.h>
41 #include <linux/completion.h>
42 #include <linux/mutex.h>
43 #include <linux/bcd.h>
45 /* For SCSI -> ATAPI command conversion */
46 #include <scsi/scsi.h>
49 #include <asm/byteorder.h>
50 #include <linux/uaccess.h>
51 #include <asm/unaligned.h>
55 static DEFINE_MUTEX(ide_cd_mutex);
56 static DEFINE_MUTEX(idecd_ref_mutex);
58 static void ide_cd_release(struct device *);
60 static struct cdrom_info *ide_cd_get(struct gendisk *disk)
62 struct cdrom_info *cd = NULL;
64 mutex_lock(&idecd_ref_mutex);
65 cd = ide_drv_g(disk, cdrom_info);
67 if (ide_device_get(cd->drive))
73 mutex_unlock(&idecd_ref_mutex);
77 static void ide_cd_put(struct cdrom_info *cd)
79 ide_drive_t *drive = cd->drive;
81 mutex_lock(&idecd_ref_mutex);
83 ide_device_put(drive);
84 mutex_unlock(&idecd_ref_mutex);
88 * Generic packet command support and error handling routines.
91 /* Mark that we've seen a media change and invalidate our internal buffers. */
92 static void cdrom_saw_media_change(ide_drive_t *drive)
94 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
95 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
98 static int cdrom_log_sense(ide_drive_t *drive, struct request *rq)
100 struct request_sense *sense = &drive->sense_data;
103 if (!sense || !rq || (rq->rq_flags & RQF_QUIET))
106 ide_debug_log(IDE_DBG_SENSE, "sense_key: 0x%x", sense->sense_key);
108 switch (sense->sense_key) {
110 case RECOVERED_ERROR:
114 * don't care about tray state messages for e.g. capacity
115 * commands or in-progress or becoming ready
117 if (sense->asc == 0x3a || sense->asc == 0x04)
121 case ILLEGAL_REQUEST:
123 * don't log START_STOP unit with LoEj set, since we cannot
124 * reliably check if drive can auto-close
126 if (scsi_req(rq)->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
132 * Make good and sure we've seen this potential media change.
133 * Some drives (i.e. Creative) fail to present the correct sense
134 * key in the error register.
136 cdrom_saw_media_change(drive);
145 static void cdrom_analyze_sense_data(ide_drive_t *drive,
146 struct request *failed_command)
148 struct request_sense *sense = &drive->sense_data;
149 struct cdrom_info *info = drive->driver_data;
150 unsigned long sector;
151 unsigned long bio_sectors;
153 ide_debug_log(IDE_DBG_SENSE, "error_code: 0x%x, sense_key: 0x%x",
154 sense->error_code, sense->sense_key);
157 ide_debug_log(IDE_DBG_SENSE, "failed cmd: 0x%x",
158 failed_command->cmd[0]);
160 if (!cdrom_log_sense(drive, failed_command))
164 * If a read toc is executed for a CD-R or CD-RW medium where the first
165 * toc has not been recorded yet, it will fail with 05/24/00 (which is a
168 if (failed_command && scsi_req(failed_command)->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
169 if (sense->sense_key == 0x05 && sense->asc == 0x24)
173 if (sense->error_code == 0x70) {
174 switch (sense->sense_key) {
176 case VOLUME_OVERFLOW:
177 case ILLEGAL_REQUEST:
180 if (failed_command == NULL ||
181 blk_rq_is_passthrough(failed_command))
183 sector = (sense->information[0] << 24) |
184 (sense->information[1] << 16) |
185 (sense->information[2] << 8) |
186 (sense->information[3]);
188 if (queue_logical_block_size(drive->queue) == 2048)
189 /* device sector size is 2K */
192 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
193 sector &= ~(bio_sectors - 1);
196 * The SCSI specification allows for the value
197 * returned by READ CAPACITY to be up to 75 2K
198 * sectors past the last readable block.
199 * Therefore, if we hit a medium error within the
200 * last 75 2K sectors, we decrease the saved size
203 if (sector < get_capacity(info->disk) &&
204 drive->probed_capacity - sector < 4 * 75)
205 set_capacity(info->disk, sector);
209 ide_cd_log_error(drive->name, failed_command, sense);
212 static void ide_cd_complete_failed_rq(ide_drive_t *drive, struct request *rq)
215 * For ATA_PRIV_SENSE, "ide_req(rq)->special" points to the original
216 * failed request. Also, the sense data should be read
217 * directly from rq which might be different from the original
218 * sense buffer if it got copied during mapping.
220 struct request *failed = ide_req(rq)->special;
221 void *sense = bio_data(rq->bio);
225 * Sense is always read into drive->sense_data, copy back to the
228 memcpy(scsi_req(failed)->sense, sense, 18);
229 scsi_req(failed)->sense_len = scsi_req(rq)->sense_len;
230 cdrom_analyze_sense_data(drive, failed);
232 if (ide_end_rq(drive, failed, BLK_STS_IOERR, blk_rq_bytes(failed)))
235 cdrom_analyze_sense_data(drive, NULL);
240 * Allow the drive 5 seconds to recover; some devices will return NOT_READY
241 * while flushing data from cache.
243 * returns: 0 failed (write timeout expired)
246 static int ide_cd_breathe(ide_drive_t *drive, struct request *rq)
249 struct cdrom_info *info = drive->driver_data;
251 if (!scsi_req(rq)->result)
252 info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY;
254 scsi_req(rq)->result = 1;
256 if (time_after(jiffies, info->write_timeout))
262 blk_mq_requeue_request(rq, false);
263 blk_mq_delay_kick_requeue_list(drive->queue, 1);
268 static void ide_cd_free_sense(ide_drive_t *drive)
270 if (!drive->sense_rq)
273 blk_mq_free_request(drive->sense_rq);
274 drive->sense_rq = NULL;
275 drive->sense_rq_armed = false;
280 * 0: if the request should be continued.
281 * 1: if the request will be going through error recovery.
282 * 2: if the request should be ended.
284 static int cdrom_decode_status(ide_drive_t *drive, u8 stat)
286 ide_hwif_t *hwif = drive->hwif;
287 struct request *rq = hwif->rq;
288 int err, sense_key, do_end_request = 0;
290 /* get the IDE error register */
291 err = ide_read_error(drive);
292 sense_key = err >> 4;
294 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, rq->cmd_type: 0x%x, err: 0x%x, "
296 rq->cmd[0], rq->cmd_type, err, stat);
298 if (ata_sense_request(rq)) {
300 * We got an error trying to get sense info from the drive
301 * (probably while trying to recover from a former error).
304 rq->rq_flags |= RQF_FAILED;
308 /* if we have an error, pass CHECK_CONDITION as the SCSI status byte */
309 if (blk_rq_is_scsi(rq) && !scsi_req(rq)->result)
310 scsi_req(rq)->result = SAM_STAT_CHECK_CONDITION;
312 if (blk_noretry_request(rq))
317 if (req_op(rq) == REQ_OP_WRITE) {
318 if (ide_cd_breathe(drive, rq))
321 cdrom_saw_media_change(drive);
323 if (!blk_rq_is_passthrough(rq) &&
324 !(rq->rq_flags & RQF_QUIET))
325 printk(KERN_ERR PFX "%s: tray open\n",
331 cdrom_saw_media_change(drive);
333 if (blk_rq_is_passthrough(rq))
337 * Arrange to retry the request but be sure to give up if we've
338 * retried too many times.
340 if (++scsi_req(rq)->result > ERROR_MAX)
343 case ILLEGAL_REQUEST:
345 * Don't print error message for this condition -- SFF8090i
346 * indicates that 5/24/00 is the correct response to a request
347 * to close the tray if the drive doesn't have that capability.
349 * cdrom_log_sense() knows this!
351 if (scsi_req(rq)->cmd[0] == GPCMD_START_STOP_UNIT)
356 * No point in retrying after an illegal request or data
359 if (!(rq->rq_flags & RQF_QUIET))
360 ide_dump_status(drive, "command error", stat);
365 * No point in re-trying a zillion times on a bad sector.
366 * If we got here the error is not correctable.
368 if (!(rq->rq_flags & RQF_QUIET))
369 ide_dump_status(drive, "media error "
370 "(bad sector)", stat);
374 /* disk appears blank? */
375 if (!(rq->rq_flags & RQF_QUIET))
376 ide_dump_status(drive, "media error (blank)",
381 if (blk_rq_is_passthrough(rq))
383 if (err & ~ATA_ABORTED) {
384 /* go to the default handler for other errors */
385 ide_error(drive, "cdrom_decode_status", stat);
387 } else if (++scsi_req(rq)->result > ERROR_MAX)
388 /* we've racked up too many retries, abort */
392 if (blk_rq_is_passthrough(rq)) {
393 rq->rq_flags |= RQF_FAILED;
398 * End a request through request sense analysis when we have sense data.
399 * We need this in order to perform end of media processing.
404 /* if we got a CHECK_CONDITION status, queue a request sense command */
406 return ide_queue_sense_rq(drive, NULL) ? 2 : 1;
410 if (stat & ATA_ERR) {
412 return ide_queue_sense_rq(drive, rq) ? 2 : 1;
417 static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct ide_cmd *cmd)
419 struct request *rq = cmd->rq;
421 ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
424 * Some of the trailing request sense fields are optional,
425 * and some drives don't send them. Sigh.
427 if (scsi_req(rq)->cmd[0] == GPCMD_REQUEST_SENSE &&
428 cmd->nleft > 0 && cmd->nleft <= 5)
432 int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
433 int write, void *buffer, unsigned *bufflen,
434 struct scsi_sense_hdr *sshdr, int timeout,
435 req_flags_t rq_flags)
437 struct cdrom_info *info = drive->driver_data;
438 struct scsi_sense_hdr local_sshdr;
442 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
444 cmd[0], write, timeout, rq_flags);
447 sshdr = &local_sshdr;
449 /* start of retry loop */
455 rq = blk_get_request(drive->queue,
456 write ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN, 0);
457 memcpy(scsi_req(rq)->cmd, cmd, BLK_MAX_CDB);
458 ide_req(rq)->type = ATA_PRIV_PC;
459 rq->rq_flags |= rq_flags;
460 rq->timeout = timeout;
462 error = blk_rq_map_kern(drive->queue, rq, buffer,
470 blk_execute_rq(drive->queue, info->disk, rq, 0);
471 error = scsi_req(rq)->result ? -EIO : 0;
474 *bufflen = scsi_req(rq)->resid_len;
475 scsi_normalize_sense(scsi_req(rq)->sense,
476 scsi_req(rq)->sense_len, sshdr);
479 * FIXME: we should probably abort/retry or something in case of
482 failed = (rq->rq_flags & RQF_FAILED) != 0;
485 * The request failed. Retry if it was due to a unit
486 * attention status (usually means media was changed).
488 if (sshdr->sense_key == UNIT_ATTENTION)
489 cdrom_saw_media_change(drive);
490 else if (sshdr->sense_key == NOT_READY &&
491 sshdr->asc == 4 && sshdr->ascq != 4) {
493 * The drive is in the process of loading
494 * a disk. Retry, but wait a little to give
495 * the drive time to complete the load.
499 /* otherwise, don't retry */
507 } while (failed && retries >= 0);
509 /* return an error if the command failed */
510 return failed ? -EIO : 0;
514 * returns true if rq has been completed
516 static bool ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
518 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
520 if (cmd->tf_flags & IDE_TFLAG_WRITE)
521 nr_bytes -= cmd->last_xfer_len;
524 ide_complete_rq(drive, BLK_STS_OK, nr_bytes);
531 /* standard prep_rq that builds 10 byte cmds */
532 static bool ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
534 int hard_sect = queue_logical_block_size(q);
535 long block = (long)blk_rq_pos(rq) / (hard_sect >> 9);
536 unsigned long blocks = blk_rq_sectors(rq) / (hard_sect >> 9);
537 struct scsi_request *req = scsi_req(rq);
539 if (rq_data_dir(rq) == READ)
540 req->cmd[0] = GPCMD_READ_10;
542 req->cmd[0] = GPCMD_WRITE_10;
547 req->cmd[2] = (block >> 24) & 0xff;
548 req->cmd[3] = (block >> 16) & 0xff;
549 req->cmd[4] = (block >> 8) & 0xff;
550 req->cmd[5] = block & 0xff;
553 * and transfer length
555 req->cmd[7] = (blocks >> 8) & 0xff;
556 req->cmd[8] = blocks & 0xff;
562 * Most of the SCSI commands are supported directly by ATAPI devices.
563 * This transform handles the few exceptions.
565 static bool ide_cdrom_prep_pc(struct request *rq)
567 u8 *c = scsi_req(rq)->cmd;
569 /* transform 6-byte read/write commands to the 10-byte version */
570 if (c[0] == READ_6 || c[0] == WRITE_6) {
577 c[0] += (READ_10 - READ_6);
578 scsi_req(rq)->cmd_len = 10;
583 * it's silly to pretend we understand 6-byte sense commands, just
584 * reject with ILLEGAL_REQUEST and the caller should take the
587 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
588 scsi_req(rq)->result = ILLEGAL_REQUEST;
595 static bool ide_cdrom_prep_rq(ide_drive_t *drive, struct request *rq)
597 if (!blk_rq_is_passthrough(rq)) {
598 scsi_req_init(scsi_req(rq));
600 return ide_cdrom_prep_fs(drive->queue, rq);
601 } else if (blk_rq_is_scsi(rq))
602 return ide_cdrom_prep_pc(rq);
607 static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
609 ide_hwif_t *hwif = drive->hwif;
610 struct ide_cmd *cmd = &hwif->cmd;
611 struct request *rq = hwif->rq;
612 ide_expiry_t *expiry = NULL;
613 int dma_error = 0, dma, thislen, uptodate = 0;
614 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0;
615 int sense = ata_sense_request(rq);
616 unsigned int timeout;
620 ide_debug_log(IDE_DBG_PC, "cmd: 0x%x, write: 0x%x", rq->cmd[0], write);
622 /* check for errors */
626 drive->waiting_for_dma = 0;
627 dma_error = hwif->dma_ops->dma_end(drive);
628 ide_dma_unmap_sg(drive, cmd);
630 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
631 write ? "write" : "read");
637 stat = hwif->tp_ops->read_status(hwif);
639 if (!OK_STAT(stat, 0, BAD_R_STAT)) {
640 rc = cdrom_decode_status(drive, stat);
648 /* using dma, transfer is complete now */
651 return ide_error(drive, "dma error", stat);
656 ide_read_bcount_and_ireason(drive, &len, &ireason);
658 thislen = !blk_rq_is_passthrough(rq) ? len : cmd->nleft;
662 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
665 /* If DRQ is clear, the command has completed. */
666 if ((stat & ATA_DRQ) == 0) {
667 switch (req_op(rq)) {
670 * If we're not done reading/writing, complain.
671 * Otherwise, complete the command normally.
674 if (cmd->nleft > 0) {
675 printk(KERN_ERR PFX "%s: %s: data underrun "
676 "(%u bytes)\n", drive->name, __func__,
679 rq->rq_flags |= RQF_FAILED;
685 ide_cd_request_sense_fixup(drive, cmd);
687 uptodate = cmd->nleft ? 0 : 1;
690 * suck out the remaining bytes from the drive in an
691 * attempt to complete the data xfer. (see BZ#13399)
693 if (!(stat & ATA_ERR) && !uptodate && thislen) {
694 ide_pio_bytes(drive, cmd, write, thislen);
695 uptodate = cmd->nleft ? 0 : 1;
699 rq->rq_flags |= RQF_FAILED;
702 case REQ_OP_SCSI_OUT:
707 rc = ide_check_ireason(drive, rq, len, ireason, write);
711 cmd->last_xfer_len = 0;
713 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
715 rq->cmd_type, ireason);
718 while (thislen > 0) {
719 int blen = min_t(int, thislen, cmd->nleft);
724 ide_pio_bytes(drive, cmd, write, blen);
725 cmd->last_xfer_len += blen;
730 if (sense && write == 0)
731 scsi_req(rq)->sense_len += blen;
734 /* pad, if necessary */
736 if (blk_rq_is_passthrough(rq) || write == 0)
737 ide_pad_transfer(drive, write, len);
739 printk(KERN_ERR PFX "%s: confused, missing data\n",
741 blk_dump_rq_flags(rq, "cdrom_newpc_intr");
745 switch (req_op(rq)) {
747 case REQ_OP_SCSI_OUT:
748 timeout = rq->timeout;
752 expiry = ide_cd_expiry;
755 timeout = ATAPI_WAIT_PC;
759 hwif->expiry = expiry;
760 ide_set_handler(drive, cdrom_newpc_intr, timeout);
764 if (blk_rq_is_scsi(rq) && rc == 0) {
765 scsi_req(rq)->resid_len = 0;
766 blk_mq_end_request(rq, BLK_STS_OK);
769 if (sense && uptodate)
770 ide_cd_complete_failed_rq(drive, rq);
772 if (!blk_rq_is_passthrough(rq)) {
776 if (uptodate <= 0 && scsi_req(rq)->result == 0)
777 scsi_req(rq)->result = -EIO;
780 if (uptodate == 0 && rq->bio)
781 if (ide_cd_error_cmd(drive, cmd))
784 /* make sure it's fully ended */
785 if (blk_rq_is_passthrough(rq)) {
786 scsi_req(rq)->resid_len -= cmd->nbytes - cmd->nleft;
787 if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
788 scsi_req(rq)->resid_len += cmd->last_xfer_len;
791 ide_complete_rq(drive, uptodate ? BLK_STS_OK : BLK_STS_IOERR, blk_rq_bytes(rq));
793 if (sense && rc == 2)
794 ide_error(drive, "request sense failure", stat);
797 ide_cd_free_sense(drive);
801 static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
803 struct cdrom_info *cd = drive->driver_data;
804 struct request_queue *q = drive->queue;
805 int write = rq_data_dir(rq) == WRITE;
806 unsigned short sectors_per_frame =
807 queue_logical_block_size(q) >> SECTOR_SHIFT;
809 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
810 "secs_per_frame: %u",
811 rq->cmd[0], rq->cmd_flags, sectors_per_frame);
814 /* disk has become write protected */
815 if (get_disk_ro(cd->disk))
819 * We may be retrying this request after an error. Fix up any
820 * weirdness which might be present in the request packet.
822 ide_cdrom_prep_rq(drive, rq);
825 /* fs requests *must* be hardware frame aligned */
826 if ((blk_rq_sectors(rq) & (sectors_per_frame - 1)) ||
827 (blk_rq_pos(rq) & (sectors_per_frame - 1)))
830 /* use DMA, if possible */
831 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
834 cd->devinfo.media_written = 1;
836 rq->timeout = ATAPI_WAIT_PC;
841 static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
844 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
845 rq->cmd[0], rq->cmd_type);
847 if (blk_rq_is_scsi(rq))
848 rq->rq_flags |= RQF_QUIET;
850 rq->rq_flags &= ~RQF_FAILED;
856 struct request_queue *q = drive->queue;
857 char *buf = bio_data(rq->bio);
858 unsigned int alignment;
860 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
863 * check if dma is safe
865 * NOTE! The "len" and "addr" checks should possibly have
868 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
869 if ((unsigned long)buf & alignment
870 || blk_rq_bytes(rq) & q->dma_pad_mask
871 || object_is_on_stack(buf))
876 static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
881 unsigned int nsectors;
883 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
884 rq->cmd[0], (unsigned long long)block);
886 if (drive->debug_mask & IDE_DBG_RQ)
887 blk_dump_rq_flags(rq, "ide_cd_do_request");
889 switch (req_op(rq)) {
891 if (cdrom_start_rw(drive, rq) == ide_stopped)
895 case REQ_OP_SCSI_OUT:
898 rq->timeout = ATAPI_WAIT_PC;
899 cdrom_do_block_pc(drive, rq);
903 switch (ide_req(rq)->type) {
905 /* right now this can only be a reset... */
916 /* prepare sense request for this command */
917 ide_prep_sense(drive, rq);
919 memset(&cmd, 0, sizeof(cmd));
922 cmd.tf_flags |= IDE_TFLAG_WRITE;
926 if (!blk_rq_is_passthrough(rq) || blk_rq_bytes(rq)) {
927 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
928 ide_map_sg(drive, &cmd);
931 return ide_issue_pc(drive, &cmd);
933 nsectors = blk_rq_sectors(rq);
938 ide_complete_rq(drive, uptodate ? BLK_STS_OK : BLK_STS_IOERR, nsectors << 9);
946 * Routines which queue packet commands take as a final argument a pointer to a
947 * request_sense struct. If execution of the command results in an error with a
948 * CHECK CONDITION status, this structure will be filled with the results of the
949 * subsequent request sense command. The pointer can also be NULL, in which case
950 * no sense information is returned.
952 static void msf_from_bcd(struct atapi_msf *msf)
954 msf->minute = bcd2bin(msf->minute);
955 msf->second = bcd2bin(msf->second);
956 msf->frame = bcd2bin(msf->frame);
959 int cdrom_check_status(ide_drive_t *drive, struct scsi_sense_hdr *sshdr)
961 struct cdrom_info *info = drive->driver_data;
962 struct cdrom_device_info *cdi;
963 unsigned char cmd[BLK_MAX_CDB];
965 ide_debug_log(IDE_DBG_FUNC, "enter");
970 cdi = &info->devinfo;
972 memset(cmd, 0, BLK_MAX_CDB);
973 cmd[0] = GPCMD_TEST_UNIT_READY;
976 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
977 * instead of supporting the LOAD_UNLOAD opcode.
979 cmd[7] = cdi->sanyo_slot % 3;
981 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sshdr, 0, RQF_QUIET);
984 static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
985 unsigned long *sectors_per_frame)
993 unsigned char cmd[BLK_MAX_CDB];
994 unsigned len = sizeof(capbuf);
997 ide_debug_log(IDE_DBG_FUNC, "enter");
999 memset(cmd, 0, BLK_MAX_CDB);
1000 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
1002 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, NULL, 0,
1008 * Sanity check the given block size, in so far as making
1009 * sure the sectors_per_frame we give to the caller won't
1010 * end up being bogus.
1012 blocklen = be32_to_cpu(capbuf.blocklen);
1013 blocklen = (blocklen >> SECTOR_SHIFT) << SECTOR_SHIFT;
1021 printk_once(KERN_ERR PFX "%s: weird block size %u; "
1022 "setting default block size to 2048\n",
1023 drive->name, blocklen);
1028 *capacity = 1 + be32_to_cpu(capbuf.lba);
1029 *sectors_per_frame = blocklen >> SECTOR_SHIFT;
1031 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
1032 *capacity, *sectors_per_frame);
1037 static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
1038 int format, char *buf, int buflen)
1040 unsigned char cmd[BLK_MAX_CDB];
1042 ide_debug_log(IDE_DBG_FUNC, "enter");
1044 memset(cmd, 0, BLK_MAX_CDB);
1046 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1048 cmd[7] = (buflen >> 8);
1049 cmd[8] = (buflen & 0xff);
1050 cmd[9] = (format << 6);
1055 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, NULL, 0, RQF_QUIET);
1058 /* Try to read the entire TOC for the disk into our internal buffer. */
1059 int ide_cd_read_toc(ide_drive_t *drive)
1061 int stat, ntracks, i;
1062 struct cdrom_info *info = drive->driver_data;
1063 struct cdrom_device_info *cdi = &info->devinfo;
1064 struct atapi_toc *toc = info->toc;
1066 struct atapi_toc_header hdr;
1067 struct atapi_toc_entry ent;
1070 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
1072 ide_debug_log(IDE_DBG_FUNC, "enter");
1075 /* try to allocate space */
1076 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
1078 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
1086 * Check to see if the existing data is still valid. If it is,
1089 (void) cdrom_check_status(drive, NULL);
1091 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
1094 /* try to get the total cdrom capacity and sector size */
1095 stat = cdrom_read_capacity(drive, &toc->capacity, §ors_per_frame);
1097 toc->capacity = 0x1fffff;
1099 set_capacity(info->disk, toc->capacity * sectors_per_frame);
1100 /* save a private copy of the TOC capacity for error handling */
1101 drive->probed_capacity = toc->capacity * sectors_per_frame;
1103 blk_queue_logical_block_size(drive->queue,
1104 sectors_per_frame << SECTOR_SHIFT);
1106 /* first read just the header, so we know how long the TOC is */
1107 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1108 sizeof(struct atapi_toc_header));
1112 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1113 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1114 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
1117 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1120 if (ntracks > MAX_TRACKS)
1121 ntracks = MAX_TRACKS;
1123 /* now read the whole schmeer */
1124 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1126 sizeof(struct atapi_toc_header) +
1128 sizeof(struct atapi_toc_entry));
1130 if (stat && toc->hdr.first_track > 1) {
1132 * Cds with CDI tracks only don't have any TOC entries, despite
1133 * of this the returned values are
1134 * first_track == last_track = number of CDI tracks + 1,
1135 * so that this case is indistinguishable from the same layout
1136 * plus an additional audio track. If we get an error for the
1137 * regular case, we assume a CDI without additional audio
1138 * tracks. In this case the readable TOC is empty (CDI tracks
1139 * are not included) and only holds the Leadout entry.
1144 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1146 sizeof(struct atapi_toc_header) +
1148 sizeof(struct atapi_toc_entry));
1152 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1153 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1154 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
1156 toc->hdr.first_track = CDROM_LEADOUT;
1157 toc->hdr.last_track = CDROM_LEADOUT;
1164 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
1166 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1167 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1168 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
1171 for (i = 0; i <= ntracks; i++) {
1172 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1173 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
1174 toc->ent[i].track = bcd2bin(toc->ent[i].track);
1175 msf_from_bcd(&toc->ent[i].addr.msf);
1177 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1178 toc->ent[i].addr.msf.second,
1179 toc->ent[i].addr.msf.frame);
1182 if (toc->hdr.first_track != CDROM_LEADOUT) {
1183 /* read the multisession information */
1184 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1189 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1191 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1192 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
1193 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1196 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1197 /* re-read multisession information using MSF format */
1198 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1203 msf_from_bcd(&ms_tmp.ent.addr.msf);
1204 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
1205 ms_tmp.ent.addr.msf.second,
1206 ms_tmp.ent.addr.msf.frame);
1209 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1211 /* now try to get the total cdrom capacity */
1212 stat = cdrom_get_last_written(cdi, &last_written);
1213 if (!stat && (last_written > toc->capacity)) {
1214 toc->capacity = last_written;
1215 set_capacity(info->disk, toc->capacity * sectors_per_frame);
1216 drive->probed_capacity = toc->capacity * sectors_per_frame;
1219 /* Remember that we've read this stuff. */
1220 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
1225 int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
1227 struct cdrom_info *info = drive->driver_data;
1228 struct cdrom_device_info *cdi = &info->devinfo;
1229 struct packet_command cgc;
1230 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
1232 ide_debug_log(IDE_DBG_FUNC, "enter");
1234 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
1235 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
1237 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
1239 /* we seem to get stat=0x01,err=0x00 the first time (??) */
1240 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1243 } while (--attempts);
1247 void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
1249 struct cdrom_info *cd = drive->driver_data;
1250 u16 curspeed, maxspeed;
1252 ide_debug_log(IDE_DBG_FUNC, "enter");
1254 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
1255 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1256 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
1258 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1259 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
1262 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1263 curspeed, maxspeed);
1265 cd->current_speed = DIV_ROUND_CLOSEST(curspeed, 176);
1266 cd->max_speed = DIV_ROUND_CLOSEST(maxspeed, 176);
1269 #define IDE_CD_CAPABILITIES \
1270 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1271 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1272 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1273 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1274 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
1276 static const struct cdrom_device_ops ide_cdrom_dops = {
1277 .open = ide_cdrom_open_real,
1278 .release = ide_cdrom_release_real,
1279 .drive_status = ide_cdrom_drive_status,
1280 .check_events = ide_cdrom_check_events_real,
1281 .tray_move = ide_cdrom_tray_move,
1282 .lock_door = ide_cdrom_lock_door,
1283 .select_speed = ide_cdrom_select_speed,
1284 .get_last_session = ide_cdrom_get_last_session,
1285 .get_mcn = ide_cdrom_get_mcn,
1286 .reset = ide_cdrom_reset,
1287 .audio_ioctl = ide_cdrom_audio_ioctl,
1288 .capability = IDE_CD_CAPABILITIES,
1289 .generic_packet = ide_cdrom_packet,
1292 static int ide_cdrom_register(ide_drive_t *drive, int nslots)
1294 struct cdrom_info *info = drive->driver_data;
1295 struct cdrom_device_info *devinfo = &info->devinfo;
1297 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
1299 devinfo->ops = &ide_cdrom_dops;
1300 devinfo->speed = info->current_speed;
1301 devinfo->capacity = nslots;
1302 devinfo->handle = drive;
1303 strcpy(devinfo->name, drive->name);
1305 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
1306 devinfo->mask |= CDC_SELECT_SPEED;
1308 devinfo->disk = info->disk;
1309 return register_cdrom(devinfo);
1312 static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
1314 struct cdrom_info *cd = drive->driver_data;
1315 struct cdrom_device_info *cdi = &cd->devinfo;
1316 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1317 mechtype_t mechtype;
1320 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1321 drive->media, drive->atapi_flags);
1323 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1324 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1325 CDC_MO_DRIVE | CDC_RAM);
1327 if (drive->media == ide_optical) {
1328 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
1329 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
1334 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1335 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
1336 cdi->mask &= ~CDC_PLAY_AUDIO;
1341 * We have to cheat a little here. the packet will eventually be queued
1342 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1343 * Since this device hasn't been registered with the Uniform layer yet,
1344 * it can't do this. Same goes for cdi->ops.
1346 cdi->handle = drive;
1347 cdi->ops = &ide_cdrom_dops;
1349 if (ide_cdrom_get_capabilities(drive, buf))
1352 if ((buf[8 + 6] & 0x01) == 0)
1353 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
1354 if (buf[8 + 6] & 0x08)
1355 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
1356 if (buf[8 + 3] & 0x01)
1357 cdi->mask &= ~CDC_CD_R;
1358 if (buf[8 + 3] & 0x02)
1359 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
1360 if (buf[8 + 2] & 0x38)
1361 cdi->mask &= ~CDC_DVD;
1362 if (buf[8 + 3] & 0x20)
1363 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
1364 if (buf[8 + 3] & 0x10)
1365 cdi->mask &= ~CDC_DVD_R;
1366 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
1367 cdi->mask &= ~CDC_PLAY_AUDIO;
1369 mechtype = buf[8 + 6] >> 5;
1370 if (mechtype == mechtype_caddy ||
1371 mechtype == mechtype_popup ||
1372 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
1373 cdi->mask |= CDC_CLOSE_TRAY;
1375 if (cdi->sanyo_slot > 0) {
1376 cdi->mask &= ~CDC_SELECT_DISC;
1378 } else if (mechtype == mechtype_individual_changer ||
1379 mechtype == mechtype_cartridge_changer) {
1380 nslots = cdrom_number_of_slots(cdi);
1382 cdi->mask &= ~CDC_SELECT_DISC;
1385 ide_cdrom_update_speed(drive, buf);
1387 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
1389 /* don't print speed if the drive reported 0 */
1391 printk(KERN_CONT " %dX", cd->max_speed);
1393 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
1395 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1396 printk(KERN_CONT " DVD%s%s",
1397 (cdi->mask & CDC_DVD_R) ? "" : "-R",
1398 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
1400 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1401 printk(KERN_CONT " CD%s%s",
1402 (cdi->mask & CDC_CD_R) ? "" : "-R",
1403 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
1405 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1406 printk(KERN_CONT " changer w/%d slots", nslots);
1408 printk(KERN_CONT " drive");
1410 printk(KERN_CONT ", %dkB Cache\n",
1411 be16_to_cpup((__be16 *)&buf[8 + 12]));
1416 struct cd_list_entry {
1417 const char *id_model;
1418 const char *id_firmware;
1419 unsigned int cd_flags;
1422 #ifdef CONFIG_IDE_PROC_FS
1423 static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1425 unsigned long capacity, sectors_per_frame;
1427 if (cdrom_read_capacity(drive, &capacity, §ors_per_frame))
1430 return capacity * sectors_per_frame;
1433 static int idecd_capacity_proc_show(struct seq_file *m, void *v)
1435 ide_drive_t *drive = m->private;
1437 seq_printf(m, "%llu\n", (long long)ide_cdrom_capacity(drive));
1441 static ide_proc_entry_t idecd_proc[] = {
1442 { "capacity", S_IFREG|S_IRUGO, idecd_capacity_proc_show },
1446 static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1451 static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1457 static const struct cd_list_entry ide_cd_quirks_list[] = {
1458 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
1459 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
1460 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
1461 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1462 IDE_AFLAG_PRE_ATAPI12, },
1463 /* Vertos 300, some versions of this drive like to talk BCD. */
1464 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
1465 /* Vertos 600 ESD. */
1466 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
1468 * Sanyo 3 CD changer uses a non-standard command for CD changing
1469 * (by default standard ATAPI support for CD changers is used).
1471 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1472 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1473 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
1474 /* Stingray 8X CD-ROM. */
1475 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
1477 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1478 * mode sense page capabilities size, but older drives break.
1480 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1481 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1482 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
1483 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
1485 * Some drives used by Apple don't advertise audio play
1486 * but they do support reading TOC & audio datas.
1488 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1489 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1490 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1491 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1492 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1493 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1494 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
1495 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
1499 static unsigned int ide_cd_flags(u16 *id)
1501 const struct cd_list_entry *cle = ide_cd_quirks_list;
1503 while (cle->id_model) {
1504 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
1505 (cle->id_firmware == NULL ||
1506 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
1507 return cle->cd_flags;
1514 static int ide_cdrom_setup(ide_drive_t *drive)
1516 struct cdrom_info *cd = drive->driver_data;
1517 struct cdrom_device_info *cdi = &cd->devinfo;
1518 struct request_queue *q = drive->queue;
1519 u16 *id = drive->id;
1520 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
1523 ide_debug_log(IDE_DBG_PROBE, "enter");
1525 drive->prep_rq = ide_cdrom_prep_rq;
1526 blk_queue_dma_alignment(q, 31);
1527 blk_queue_update_dma_pad(q, 15);
1529 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1530 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
1532 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
1533 fw_rev[4] == '1' && fw_rev[6] <= '2')
1534 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1535 IDE_AFLAG_TOCADDR_AS_BCD);
1536 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
1537 fw_rev[4] == '1' && fw_rev[6] <= '2')
1538 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1539 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
1540 /* 3 => use CD in slot 0 */
1541 cdi->sanyo_slot = 3;
1543 nslots = ide_cdrom_probe_capabilities(drive);
1545 blk_queue_logical_block_size(q, CD_FRAMESIZE);
1547 if (ide_cdrom_register(drive, nslots)) {
1548 printk(KERN_ERR PFX "%s: %s failed to register device with the"
1549 " cdrom driver.\n", drive->name, __func__);
1550 cd->devinfo.handle = NULL;
1554 ide_proc_register_driver(drive, cd->driver);
1558 static void ide_cd_remove(ide_drive_t *drive)
1560 struct cdrom_info *info = drive->driver_data;
1562 ide_debug_log(IDE_DBG_FUNC, "enter");
1564 ide_proc_unregister_driver(drive, info->driver);
1565 device_del(&info->dev);
1566 del_gendisk(info->disk);
1568 mutex_lock(&idecd_ref_mutex);
1569 put_device(&info->dev);
1570 mutex_unlock(&idecd_ref_mutex);
1573 static void ide_cd_release(struct device *dev)
1575 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
1576 struct cdrom_device_info *devinfo = &info->devinfo;
1577 ide_drive_t *drive = info->drive;
1578 struct gendisk *g = info->disk;
1580 ide_debug_log(IDE_DBG_FUNC, "enter");
1583 if (devinfo->handle == drive)
1584 unregister_cdrom(devinfo);
1585 drive->driver_data = NULL;
1586 drive->prep_rq = NULL;
1587 g->private_data = NULL;
1592 static int ide_cd_probe(ide_drive_t *);
1594 static struct ide_driver ide_cdrom_driver = {
1596 .owner = THIS_MODULE,
1597 .name = "ide-cdrom",
1598 .bus = &ide_bus_type,
1600 .probe = ide_cd_probe,
1601 .remove = ide_cd_remove,
1602 .version = IDECD_VERSION,
1603 .do_request = ide_cd_do_request,
1604 #ifdef CONFIG_IDE_PROC_FS
1605 .proc_entries = ide_cd_proc_entries,
1606 .proc_devsets = ide_cd_proc_devsets,
1610 static int idecd_open(struct block_device *bdev, fmode_t mode)
1612 struct cdrom_info *info;
1615 check_disk_change(bdev);
1617 mutex_lock(&ide_cd_mutex);
1618 info = ide_cd_get(bdev->bd_disk);
1622 rc = cdrom_open(&info->devinfo, bdev, mode);
1626 mutex_unlock(&ide_cd_mutex);
1630 static void idecd_release(struct gendisk *disk, fmode_t mode)
1632 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1634 mutex_lock(&ide_cd_mutex);
1635 cdrom_release(&info->devinfo, mode);
1638 mutex_unlock(&ide_cd_mutex);
1641 static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1643 struct packet_command cgc;
1648 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1651 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1653 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1657 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1658 return cdrom_mode_select(cdi, &cgc);
1661 static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1663 struct packet_command cgc;
1668 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1670 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1674 spindown = buffer[11] & 0x0f;
1675 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
1680 static int idecd_locked_ioctl(struct block_device *bdev, fmode_t mode,
1681 unsigned int cmd, unsigned long arg)
1683 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
1687 case CDROMSETSPINDOWN:
1688 return idecd_set_spindown(&info->devinfo, arg);
1689 case CDROMGETSPINDOWN:
1690 return idecd_get_spindown(&info->devinfo, arg);
1695 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
1697 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
1702 static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
1703 unsigned int cmd, unsigned long arg)
1707 mutex_lock(&ide_cd_mutex);
1708 ret = idecd_locked_ioctl(bdev, mode, cmd, arg);
1709 mutex_unlock(&ide_cd_mutex);
1714 static int idecd_locked_compat_ioctl(struct block_device *bdev, fmode_t mode,
1715 unsigned int cmd, unsigned long arg)
1717 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
1718 void __user *argp = compat_ptr(arg);
1722 case CDROMSETSPINDOWN:
1723 return idecd_set_spindown(&info->devinfo, (unsigned long)argp);
1724 case CDROMGETSPINDOWN:
1725 return idecd_get_spindown(&info->devinfo, (unsigned long)argp);
1730 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
1732 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd,
1733 (unsigned long)argp);
1738 static int idecd_compat_ioctl(struct block_device *bdev, fmode_t mode,
1739 unsigned int cmd, unsigned long arg)
1743 mutex_lock(&ide_cd_mutex);
1744 ret = idecd_locked_compat_ioctl(bdev, mode, cmd, arg);
1745 mutex_unlock(&ide_cd_mutex);
1750 static unsigned int idecd_check_events(struct gendisk *disk,
1751 unsigned int clearing)
1753 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1754 return cdrom_check_events(&info->devinfo, clearing);
1757 static int idecd_revalidate_disk(struct gendisk *disk)
1759 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1761 ide_cd_read_toc(info->drive);
1766 static const struct block_device_operations idecd_ops = {
1767 .owner = THIS_MODULE,
1769 .release = idecd_release,
1770 .ioctl = idecd_ioctl,
1771 .compat_ioctl = IS_ENABLED(CONFIG_COMPAT) ?
1772 idecd_compat_ioctl : NULL,
1773 .check_events = idecd_check_events,
1774 .revalidate_disk = idecd_revalidate_disk
1777 /* module options */
1778 static unsigned long debug_mask;
1779 module_param(debug_mask, ulong, 0644);
1781 MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1783 static int ide_cd_probe(ide_drive_t *drive)
1785 struct cdrom_info *info;
1788 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1789 drive->driver_req, drive->media);
1791 if (!strstr("ide-cdrom", drive->driver_req))
1794 if (drive->media != ide_cdrom && drive->media != ide_optical)
1797 drive->debug_mask = debug_mask;
1798 drive->irq_handler = cdrom_newpc_intr;
1800 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
1802 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
1807 g = alloc_disk(1 << PARTN_BITS);
1811 ide_init_disk(g, drive);
1813 info->dev.parent = &drive->gendev;
1814 info->dev.release = ide_cd_release;
1815 dev_set_name(&info->dev, "%s", dev_name(&drive->gendev));
1817 if (device_register(&info->dev))
1820 info->drive = drive;
1821 info->driver = &ide_cdrom_driver;
1824 g->private_data = &info->driver;
1826 drive->driver_data = info;
1829 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1830 if (ide_cdrom_setup(drive)) {
1831 put_device(&info->dev);
1835 ide_cd_read_toc(drive);
1836 g->fops = &idecd_ops;
1837 g->flags |= GENHD_FL_REMOVABLE | GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE;
1838 g->events = DISK_EVENT_MEDIA_CHANGE;
1839 device_add_disk(&drive->gendev, g, NULL);
1850 static void __exit ide_cdrom_exit(void)
1852 driver_unregister(&ide_cdrom_driver.gen_driver);
1855 static int __init ide_cdrom_init(void)
1857 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
1858 return driver_register(&ide_cdrom_driver.gen_driver);
1861 MODULE_ALIAS("ide:*m-cdrom*");
1862 MODULE_ALIAS("ide-cd");
1863 module_init(ide_cdrom_init);
1864 module_exit(ide_cdrom_exit);
1865 MODULE_LICENSE("GPL");