blob: ef7e3a9bee5182790978870141c69023b6c2e205 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz3bb46632008-02-01 23:09:28 +01002 * ATAPI CD-ROM driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * 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>
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +02007 * Copyright (C) 2005, 2007-2009 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * May be copied or modified under the terms of the GNU General Public
10 * License. See linux/COPYING for more information.
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * See Documentation/cdrom/ide-cd for usage information.
13 *
14 * Suggestions are welcome. Patches that work are more welcome though. ;-)
Bartlomiej Zolnierkiewicz116e6902009-03-31 20:14:59 +020015 *
16 * Documentation:
17 * Mt. Fuji (SFF8090 version 4) and ATAPI (SFF-8020i rev 2.6) standards.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
Bartlomiej Zolnierkiewicz03553352008-02-01 23:09:18 +010019 * For historical changelog please see:
20 * Documentation/ide/ChangeLog.ide-cd.1994-2004
21 */
22
Borislav Petkovfc8323f2008-10-13 21:39:48 +020023#define DRV_NAME "ide-cd"
24#define PFX DRV_NAME ": "
25
Bartlomiej Zolnierkiewicz3bb46632008-02-01 23:09:28 +010026#define IDECD_VERSION "5.00"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/types.h>
30#include <linux/kernel.h>
31#include <linux/delay.h>
32#include <linux/timer.h>
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070033#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#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>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080040#include <linux/mutex.h>
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +010041#include <linux/bcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020043/* For SCSI -> ATAPI command conversion */
44#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Borislav Petkov9aba4682008-04-26 22:25:15 +020046#include <linux/irq.h>
47#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/byteorder.h>
Borislav Petkov9aba4682008-04-26 22:25:15 +020049#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/unaligned.h>
51
52#include "ide-cd.h"
53
Arjan van de Vencf8b8972006-03-23 03:00:45 -080054static DEFINE_MUTEX(idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010056static void ide_cd_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static struct cdrom_info *ide_cd_get(struct gendisk *disk)
59{
60 struct cdrom_info *cd = NULL;
61
Arjan van de Vencf8b8972006-03-23 03:00:45 -080062 mutex_lock(&idecd_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +020063 cd = ide_drv_g(disk, cdrom_info);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020064 if (cd) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020065 if (ide_device_get(cd->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020066 cd = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020067 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010068 get_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020069
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020070 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -080071 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return cd;
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static void ide_cd_put(struct cdrom_info *cd)
76{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020077 ide_drive_t *drive = cd->drive;
78
Arjan van de Vencf8b8972006-03-23 03:00:45 -080079 mutex_lock(&idecd_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010080 put_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020081 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080082 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020085/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * Generic packet command support and error handling routines.
87 */
88
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020089/* Mark that we've seen a media change and invalidate our internal buffers. */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020090static void cdrom_saw_media_change(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +020092 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
Borislav Petkov570f89e2008-07-23 19:56:02 +020093 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
Borislav Petkov239f7e22009-04-23 08:30:29 +020096static int cdrom_log_sense(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Borislav Petkov239f7e22009-04-23 08:30:29 +020098 struct request_sense *sense = &drive->sense_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 int log = 0;
100
Jens Axboe4aff5e22006-08-10 08:44:47 +0200101 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return 0;
103
Borislav Petkov239f7e22009-04-23 08:30:29 +0200104 ide_debug_log(IDE_DBG_SENSE, "sense_key: 0x%x", sense->sense_key);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 switch (sense->sense_key) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200107 case NO_SENSE:
108 case RECOVERED_ERROR:
109 break;
110 case NOT_READY:
111 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200112 * don't care about tray state messages for e.g. capacity
113 * commands or in-progress or becoming ready
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200114 */
115 if (sense->asc == 0x3a || sense->asc == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200117 log = 1;
118 break;
119 case ILLEGAL_REQUEST:
120 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200121 * don't log START_STOP unit with LoEj set, since we cannot
122 * reliably check if drive can auto-close
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200123 */
124 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200126 log = 1;
127 break;
128 case UNIT_ATTENTION:
129 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200130 * 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.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200133 */
134 cdrom_saw_media_change(drive);
135 break;
136 default:
137 log = 1;
138 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 return log;
141}
142
Borislav Petkove5e076a2008-04-26 22:25:15 +0200143static void cdrom_analyze_sense_data(ide_drive_t *drive,
Borislav Petkov239f7e22009-04-23 08:30:29 +0200144 struct request *failed_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Borislav Petkov239f7e22009-04-23 08:30:29 +0200146 struct request_sense *sense = &drive->sense_data;
147 struct cdrom_info *info = drive->driver_data;
Alan Coxdbe217a2006-06-25 05:47:44 -0700148 unsigned long sector;
149 unsigned long bio_sectors;
Alan Coxdbe217a2006-06-25 05:47:44 -0700150
Borislav Petkov088b1b82009-01-02 13:34:47 +0100151 ide_debug_log(IDE_DBG_SENSE, "error_code: 0x%x, sense_key: 0x%x",
152 sense->error_code, sense->sense_key);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200153
154 if (failed_command)
Borislav Petkov088b1b82009-01-02 13:34:47 +0100155 ide_debug_log(IDE_DBG_SENSE, "failed cmd: 0x%x",
156 failed_command->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200157
Borislav Petkov239f7e22009-04-23 08:30:29 +0200158 if (!cdrom_log_sense(drive, failed_command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return;
160
161 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200162 * 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
166 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
167 if (sense->sense_key == 0x05 && sense->asc == 0x24)
168 return;
169
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200170 /* current error */
171 if (sense->error_code == 0x70) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200172 switch (sense->sense_key) {
Alan Coxdbe217a2006-06-25 05:47:44 -0700173 case MEDIUM_ERROR:
174 case VOLUME_OVERFLOW:
175 case ILLEGAL_REQUEST:
176 if (!sense->valid)
177 break;
178 if (failed_command == NULL ||
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200179 failed_command->cmd_type != REQ_TYPE_FS)
Alan Coxdbe217a2006-06-25 05:47:44 -0700180 break;
181 sector = (sense->information[0] << 24) |
182 (sense->information[1] << 16) |
183 (sense->information[2] << 8) |
184 (sense->information[3]);
185
Martin K. Petersene1defc42009-05-22 17:17:49 -0400186 if (queue_logical_block_size(drive->queue) == 2048)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200187 /* device sector size is 2K */
188 sector <<= 2;
Roel Kluineee49292008-04-28 23:44:43 +0200189
190 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200191 sector &= ~(bio_sectors - 1);
Alan Coxdbe217a2006-06-25 05:47:44 -0700192
Bartlomiej Zolnierkiewiczd3dd7102009-02-25 20:28:23 +0100193 /*
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.
200 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700201 if (sector < get_capacity(info->disk) &&
Borislav Petkove5e076a2008-04-26 22:25:15 +0200202 drive->probed_capacity - sector < 4 * 75)
Alan Coxdbe217a2006-06-25 05:47:44 -0700203 set_capacity(info->disk, sector);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200204 }
205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100207 ide_cd_log_error(drive->name, failed_command, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200210static void ide_cd_complete_failed_rq(ide_drive_t *drive, struct request *rq)
211{
212 /*
Tejun Heo1f181d22009-04-19 07:00:42 +0900213 * For REQ_TYPE_SENSE, "rq->special" points to the original
Tejun Heo02e7cf82009-04-19 07:00:42 +0900214 * 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.
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200217 */
Tejun Heo1f181d22009-04-19 07:00:42 +0900218 struct request *failed = (struct request *)rq->special;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900219 void *sense = bio_data(rq->bio);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200220
221 if (failed) {
222 if (failed->sense) {
Borislav Petkovc457ce82009-04-19 07:00:42 +0900223 /*
224 * Sense is always read into drive->sense_data.
225 * Copy back if the failed request has its
226 * sense pointer set.
227 */
228 memcpy(failed->sense, sense, 18);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200229 failed->sense_len = rq->sense_len;
230 }
Borislav Petkov239f7e22009-04-23 08:30:29 +0200231 cdrom_analyze_sense_data(drive, failed);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200232
233 if (ide_end_rq(drive, failed, -EIO, blk_rq_bytes(failed)))
234 BUG();
235 } else
Borislav Petkov239f7e22009-04-23 08:30:29 +0200236 cdrom_analyze_sense_data(drive, NULL);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200237}
238
Borislav Petkov805ec582009-04-08 14:12:52 +0200239
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200240/*
Borislav Petkov805ec582009-04-08 14:12:52 +0200241 * Allow the drive 5 seconds to recover; some devices will return NOT_READY
242 * while flushing data from cache.
243 *
244 * returns: 0 failed (write timeout expired)
245 * 1 success
246 */
247static int ide_cd_breathe(ide_drive_t *drive, struct request *rq)
248{
249
250 struct cdrom_info *info = drive->driver_data;
251
252 if (!rq->errors)
253 info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY;
254
255 rq->errors = 1;
256
257 if (time_after(jiffies, info->write_timeout))
258 return 0;
259 else {
260 struct request_queue *q = drive->queue;
261 unsigned long flags;
262
263 /*
264 * take a breather relying on the unplug timer to kick us again
265 */
266
267 spin_lock_irqsave(q->queue_lock, flags);
268 blk_plug_device(q);
269 spin_unlock_irqrestore(q->queue_lock, flags);
270
271 return 1;
272 }
273}
274
275/**
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200276 * Returns:
277 * 0: if the request should be continued.
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200278 * 1: if the request will be going through error recovery.
279 * 2: if the request should be ended.
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200280 */
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200281static int cdrom_decode_status(ide_drive_t *drive, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200283 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100284 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200285 int err, sense_key, do_end_request = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200287 /* get the IDE error register */
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100288 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 sense_key = err >> 4;
290
Borislav Petkov98036ab2009-04-08 14:12:53 +0200291 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);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200294
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200295 if (rq->cmd_type == REQ_TYPE_SENSE) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200296 /*
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.
300 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200301 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200302 return 2;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200305 /* if we have an error, pass CHECK_CONDITION as the SCSI status byte */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200306 if (rq->cmd_type == REQ_TYPE_BLOCK_PC && !rq->errors)
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200307 rq->errors = SAM_STAT_CHECK_CONDITION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200309 if (blk_noretry_request(rq))
310 do_end_request = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200312 switch (sense_key) {
313 case NOT_READY:
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200314 if (rq->cmd_type == REQ_TYPE_FS && rq_data_dir(rq) == WRITE) {
Borislav Petkov3c8a48e2009-04-08 14:13:03 +0200315 if (ide_cd_breathe(drive, rq))
316 return 1;
317 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +0200318 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200320 if (rq->cmd_type == REQ_TYPE_FS &&
Christoph Hellwig4c4762d2010-06-19 17:26:47 +0200321 !(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200322 printk(KERN_ERR PFX "%s: tray open\n",
323 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200325 do_end_request = 1;
326 break;
327 case UNIT_ATTENTION:
328 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200330 if (rq->cmd_type != REQ_TYPE_FS)
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200331 return 0;
332
333 /*
334 * Arrange to retry the request but be sure to give up if we've
335 * retried too many times.
336 */
337 if (++rq->errors > ERROR_MAX)
Bartlomiej Zolnierkiewicz1920c482009-04-08 14:12:54 +0200338 do_end_request = 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200339 break;
340 case ILLEGAL_REQUEST:
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200341 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200342 * Don't print error message for this condition -- SFF8090i
343 * indicates that 5/24/00 is the correct response to a request
344 * to close the tray if the drive doesn't have that capability.
345 *
346 * cdrom_log_sense() knows this!
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200347 */
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200348 if (rq->cmd[0] == GPCMD_START_STOP_UNIT)
349 break;
350 /* fall-through */
351 case DATA_PROTECT:
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100352 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200353 * No point in retrying after an illegal request or data
354 * protect error.
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100355 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200356 if (!(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200357 ide_dump_status(drive, "command error", stat);
358 do_end_request = 1;
359 break;
360 case MEDIUM_ERROR:
361 /*
362 * No point in re-trying a zillion times on a bad sector.
363 * If we got here the error is not correctable.
364 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200365 if (!(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200366 ide_dump_status(drive, "media error "
367 "(bad sector)", stat);
368 do_end_request = 1;
369 break;
370 case BLANK_CHECK:
371 /* disk appears blank? */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200372 if (!(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200373 ide_dump_status(drive, "media error (blank)",
374 stat);
375 do_end_request = 1;
376 break;
377 default:
Christoph Hellwig4c4762d2010-06-19 17:26:47 +0200378 if (rq->cmd_type != REQ_TYPE_FS)
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200379 break;
380 if (err & ~ATA_ABORTED) {
381 /* go to the default handler for other errors */
382 ide_error(drive, "cdrom_decode_status", stat);
383 return 1;
384 } else if (++rq->errors > ERROR_MAX)
385 /* we've racked up too many retries, abort */
386 do_end_request = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200389 if (rq->cmd_type != REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200390 rq->cmd_flags |= REQ_FAILED;
391 do_end_request = 1;
392 }
393
394 /*
395 * End a request through request sense analysis when we have sense data.
396 * We need this in order to perform end of media processing.
397 */
398 if (do_end_request)
399 goto end_request;
400
401 /* if we got a CHECK_CONDITION status, queue a request sense command */
402 if (stat & ATA_ERR)
Tejun Heo02e7cf82009-04-19 07:00:42 +0900403 return ide_queue_sense_rq(drive, NULL) ? 2 : 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200404 return 1;
405
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100406end_request:
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200407 if (stat & ATA_ERR) {
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100408 hwif->rq = NULL;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900409 return ide_queue_sense_rq(drive, rq) ? 2 : 1;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100410 } else
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200411 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200414static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100415{
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200416 struct request *rq = cmd->rq;
417
Borislav Petkov088b1b82009-01-02 13:34:47 +0100418 ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200419
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100420 /*
421 * Some of the trailing request sense fields are optional,
422 * and some drives don't send them. Sigh.
423 */
424 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
Tejun Heo59a4f6f2009-04-19 07:00:41 +0900425 cmd->nleft > 0 && cmd->nleft <= 5)
426 cmd->nleft = 0;
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100427}
428
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200429int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
430 int write, void *buffer, unsigned *bufflen,
431 struct request_sense *sense, int timeout,
432 unsigned int cmd_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200434 struct cdrom_info *info = drive->driver_data;
435 struct request_sense local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 int retries = 10;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200437 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200439 if (!sense)
440 sense = &local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Borislav Petkov088b1b82009-01-02 13:34:47 +0100442 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
443 "cmd_flags: 0x%x",
444 cmd[0], write, timeout, cmd_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200445
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200446 /* start of retry loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 do {
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200448 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200451 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
452
453 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
454 rq->cmd_type = REQ_TYPE_ATA_PC;
455 rq->sense = sense;
456 rq->cmd_flags |= cmd_flags;
457 rq->timeout = timeout;
458 if (buffer) {
Tejun Heo02e7cf82009-04-19 07:00:42 +0900459 error = blk_rq_map_kern(drive->queue, rq, buffer,
460 *bufflen, GFP_NOIO);
461 if (error) {
462 blk_put_request(rq);
463 return error;
464 }
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200465 }
466
467 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
468
469 if (buffer)
Tejun Heoc3a4d782009-05-07 22:24:37 +0900470 *bufflen = rq->resid_len;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200471
472 flags = rq->cmd_flags;
473 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200475 /*
476 * FIXME: we should probably abort/retry or something in case of
477 * failure.
478 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200479 if (flags & REQ_FAILED) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200480 /*
481 * The request failed. Retry if it was due to a unit
482 * attention status (usually means media was changed).
483 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200484 struct request_sense *reqbuf = sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 if (reqbuf->sense_key == UNIT_ATTENTION)
487 cdrom_saw_media_change(drive);
488 else if (reqbuf->sense_key == NOT_READY &&
489 reqbuf->asc == 4 && reqbuf->ascq != 4) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200490 /*
491 * The drive is in the process of loading
492 * a disk. Retry, but wait a little to give
493 * the drive time to complete the load.
494 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 ssleep(2);
496 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200497 /* otherwise, don't retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 retries = 0;
499 }
500 --retries;
501 }
502
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200503 /* end of retry loop */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200504 } while ((flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200506 /* return an error if the command failed */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200507 return (flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200510static void ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
511{
512 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
513
514 if (cmd->tf_flags & IDE_TFLAG_WRITE)
515 nr_bytes -= cmd->last_xfer_len;
516
517 if (nr_bytes > 0)
518 ide_complete_rq(drive, 0, nr_bytes);
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
522{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200523 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200524 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100525 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100526 ide_expiry_t *expiry = NULL;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200527 int dma_error = 0, dma, thislen, uptodate = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900528 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200529 int sense = (rq->cmd_type == REQ_TYPE_SENSE);
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100530 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200531 u16 len;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200532 u8 ireason, stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Borislav Petkov98036ab2009-04-08 14:12:53 +0200534 ide_debug_log(IDE_DBG_PC, "cmd: 0x%x, write: 0x%x", rq->cmd[0], write);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200535
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200536 /* check for errors */
Borislav Petkov12469ac2008-10-13 21:39:49 +0200537 dma = drive->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (dma) {
Borislav Petkov12469ac2008-10-13 21:39:49 +0200539 drive->dma = 0;
Bartlomiej Zolnierkiewicz88b41322009-03-31 20:15:22 +0200540 drive->waiting_for_dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200541 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczf094d4d2009-03-31 20:15:24 +0200542 ide_dma_unmap_sg(drive, cmd);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100543 if (dma_error) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200544 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100545 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100546 ide_dma_off(drive);
547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200550 /* check status */
551 stat = hwif->tp_ops->read_status(hwif);
552
553 if (!OK_STAT(stat, 0, BAD_R_STAT)) {
554 rc = cdrom_decode_status(drive, stat);
555 if (rc) {
556 if (rc == 2)
557 goto out_end;
558 return ide_stopped;
559 }
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200562 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100564 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz4a3d8cf2009-03-31 20:15:15 +0200566 uptodate = 1;
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200567 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200570 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100571
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200572 thislen = (rq->cmd_type == REQ_TYPE_FS) ? len : cmd->nleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (thislen > len)
574 thislen = len;
575
Borislav Petkov088b1b82009-01-02 13:34:47 +0100576 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
577 stat, thislen);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200578
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200579 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200580 if ((stat & ATA_DRQ) == 0) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200581 if (rq->cmd_type == REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100582 /*
583 * If we're not done reading/writing, complain.
584 * Otherwise, complete the command normally.
585 */
586 uptodate = 1;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200587 if (cmd->nleft > 0) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200588 printk(KERN_ERR PFX "%s: %s: data underrun "
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200589 "(%u bytes)\n", drive->name, __func__,
590 cmd->nleft);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100591 if (!write)
592 rq->cmd_flags |= REQ_FAILED;
593 uptodate = 0;
594 }
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200595 } else if (rq->cmd_type != REQ_TYPE_BLOCK_PC) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200596 ide_cd_request_sense_fixup(drive, cmd);
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700597
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200598 uptodate = cmd->nleft ? 0 : 1;
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700599
600 /*
601 * suck out the remaining bytes from the drive in an
602 * attempt to complete the data xfer. (see BZ#13399)
603 */
604 if (!(stat & ATA_ERR) && !uptodate && thislen) {
605 ide_pio_bytes(drive, cmd, write, thislen);
606 uptodate = cmd->nleft ? 0 : 1;
607 }
608
609 if (!uptodate)
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200610 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100611 }
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200612 goto out_end;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Borislav Petkov103f7032009-04-26 10:39:07 +0200615 rc = ide_check_ireason(drive, rq, len, ireason, write);
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200616 if (rc)
617 goto out_end;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100618
Bartlomiej Zolnierkiewicz06a449e2009-03-31 20:15:13 +0200619 cmd->last_xfer_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Borislav Petkov088b1b82009-01-02 13:34:47 +0100621 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
622 "ireason: 0x%x",
623 rq->cmd_type, ireason);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200624
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200625 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 while (thislen > 0) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200627 int blen = min_t(int, thislen, cmd->nleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200629 if (cmd->nleft == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200632 ide_pio_bytes(drive, cmd, write, blen);
633 cmd->last_xfer_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 thislen -= blen;
636 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200638 if (sense && write == 0)
Andreas Schwabbcd88ac2008-02-26 21:50:35 +0100639 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200642 /* pad, if necessary */
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200643 if (len > 0) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200644 if (rq->cmd_type != REQ_TYPE_FS || write == 0)
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200645 ide_pad_transfer(drive, write, len);
646 else {
647 printk(KERN_ERR PFX "%s: confused, missing data\n",
648 drive->name);
649 blk_dump_rq_flags(rq, "cdrom_newpc_intr");
650 }
651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200653 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100654 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100655 } else {
656 timeout = ATAPI_WAIT_PC;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200657 if (rq->cmd_type != REQ_TYPE_FS)
Borislav Petkov4cad0852009-01-02 16:12:53 +0100658 expiry = ide_cd_expiry;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100659 }
660
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100661 hwif->expiry = expiry;
662 ide_set_handler(drive, cdrom_newpc_intr, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100664
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200665out_end:
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200666 if (rq->cmd_type == REQ_TYPE_BLOCK_PC && rc == 0) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900667 rq->resid_len = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900668 blk_end_request_all(rq, 0);
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100669 hwif->rq = NULL;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100670 } else {
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200671 if (sense && uptodate)
672 ide_cd_complete_failed_rq(drive, rq);
673
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200674 if (rq->cmd_type == REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200675 if (cmd->nleft == 0)
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200676 uptodate = 1;
677 } else {
678 if (uptodate <= 0 && rq->errors == 0)
679 rq->errors = -EIO;
680 }
681
Rainer Weikusat39c58f32009-06-18 17:04:00 +0200682 if (uptodate == 0 && rq->bio)
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200683 ide_cd_error_cmd(drive, cmd);
684
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200685 /* make sure it's fully ended */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200686 if (rq->cmd_type != REQ_TYPE_FS) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900687 rq->resid_len -= cmd->nbytes - cmd->nleft;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200688 if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
Tejun Heoc3a4d782009-05-07 22:24:37 +0900689 rq->resid_len += cmd->last_xfer_len;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200690 }
691
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900692 ide_complete_rq(drive, uptodate ? 0 : -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200693
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200694 if (sense && rc == 2)
695 ide_error(drive, "request sense failure", stat);
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100696 }
697 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100700static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100702 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200703 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100704 int write = rq_data_dir(rq) == WRITE;
705 unsigned short sectors_per_frame =
Martin K. Petersene1defc42009-05-22 17:17:49 -0400706 queue_logical_block_size(q) >> SECTOR_BITS;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100707
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200708 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
Borislav Petkov088b1b82009-01-02 13:34:47 +0100709 "secs_per_frame: %u",
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200710 rq->cmd[0], rq->cmd_flags, sectors_per_frame);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200711
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100712 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200713 /* disk has become write protected */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200714 if (get_disk_ro(cd->disk))
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100715 return ide_stopped;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100716 } else {
717 /*
718 * We may be retrying this request after an error. Fix up any
719 * weirdness which might be present in the request packet.
720 */
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200721 q->prep_rq_fn(q, rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200724 /* fs requests *must* be hardware frame aligned */
Tejun Heo9780e2d2009-05-07 22:24:40 +0900725 if ((blk_rq_sectors(rq) & (sectors_per_frame - 1)) ||
726 (blk_rq_pos(rq) & (sectors_per_frame - 1)))
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200727 return ide_stopped;
728
729 /* use DMA, if possible */
730 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100732 if (write)
733 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200735 rq->timeout = ATAPI_WAIT_PC;
736
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200737 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200740static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Borislav Petkov088b1b82009-01-02 13:34:47 +0100743 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
744 rq->cmd[0], rq->cmd_type);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200745
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200746 if (rq->cmd_type == REQ_TYPE_BLOCK_PC)
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100747 rq->cmd_flags |= REQ_QUIET;
748 else
749 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Borislav Petkov12469ac2008-10-13 21:39:49 +0200751 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200753 /* sg request */
Tejun Heo02e7cf82009-04-19 07:00:42 +0900754 if (rq->bio) {
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200755 struct request_queue *q = drive->queue;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900756 char *buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200757 unsigned int alignment;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200758
Borislav Petkov12469ac2008-10-13 21:39:49 +0200759 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /*
762 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -0700763 *
764 * NOTE! The "len" and "addr" checks should possibly have
765 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200767 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Borislav Petkov9bd27cb2008-11-02 21:40:07 +0100768 if ((unsigned long)buf & alignment
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900769 || blk_rq_bytes(rq) & q->dma_pad_mask
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200770 || object_is_on_stack(buf))
Borislav Petkov12469ac2008-10-13 21:39:49 +0200771 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Borislav Petkov99384ae2008-07-16 20:33:45 +0200775static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +0200776 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100778 struct ide_cmd cmd;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200779 int uptodate = 0, nsectors;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100780
Borislav Petkov088b1b82009-01-02 13:34:47 +0100781 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
782 rq->cmd[0], (unsigned long long)block);
783
784 if (drive->debug_mask & IDE_DBG_RQ)
785 blk_dump_rq_flags(rq, "ide_cd_do_request");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200786
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200787 switch (rq->cmd_type) {
788 case REQ_TYPE_FS:
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200789 if (cdrom_start_rw(drive, rq) == ide_stopped)
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200790 goto out_end;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200791 break;
792 case REQ_TYPE_SENSE:
793 case REQ_TYPE_BLOCK_PC:
794 case REQ_TYPE_ATA_PC:
Borislav Petkov7fcebda2008-07-16 20:33:46 +0200795 if (!rq->timeout)
796 rq->timeout = ATAPI_WAIT_PC;
797
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200798 cdrom_do_block_pc(drive, rq);
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200799 break;
800 case REQ_TYPE_SPECIAL:
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200801 /* right now this can only be a reset... */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200802 uptodate = 1;
803 goto out_end;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200804 default:
Bartlomiej Zolnierkiewicz2c7eaa42009-06-15 22:16:10 +0200805 BUG();
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200806 }
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200807
Borislav Petkovc457ce82009-04-19 07:00:42 +0900808 /* prepare sense request for this command */
809 ide_prep_sense(drive, rq);
810
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100811 memset(&cmd, 0, sizeof(cmd));
812
813 if (rq_data_dir(rq))
814 cmd.tf_flags |= IDE_TFLAG_WRITE;
815
816 cmd.rq = rq;
817
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200818 if (rq->cmd_type == REQ_TYPE_FS || blk_rq_bytes(rq)) {
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900819 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200820 ide_map_sg(drive, &cmd);
821 }
822
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100823 return ide_issue_pc(drive, &cmd);
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200824out_end:
Tejun Heo5b936292009-05-07 22:24:38 +0900825 nsectors = blk_rq_sectors(rq);
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200826
827 if (nsectors == 0)
828 nsectors = 1;
829
830 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
831
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200832 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200835/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 * Ioctl handling.
837 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200838 * Routines which queue packet commands take as a final argument a pointer to a
839 * request_sense struct. If execution of the command results in an error with a
840 * CHECK CONDITION status, this structure will be filled with the results of the
841 * subsequent request sense command. The pointer can also be NULL, in which case
842 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200844static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Adrian Bunkfc99856a2008-08-18 21:40:04 +0200846 msf->minute = bcd2bin(msf->minute);
847 msf->second = bcd2bin(msf->second);
848 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Borislav Petkovf9afd182008-02-01 23:09:29 +0100851int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 struct cdrom_info *info = drive->driver_data;
854 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200855 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Borislav Petkov088b1b82009-01-02 13:34:47 +0100857 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200858
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200859 memset(cmd, 0, BLK_MAX_CDB);
860 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100862 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200863 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
864 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100865 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200866 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Harvey Harrison141d3b22008-07-23 19:56:02 +0200868 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
872 unsigned long *sectors_per_frame,
873 struct request_sense *sense)
874{
875 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +0200876 __be32 lba;
877 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 } capbuf;
879
880 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200881 unsigned char cmd[BLK_MAX_CDB];
882 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +0200883 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Borislav Petkov088b1b82009-01-02 13:34:47 +0100885 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200886
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200887 memset(cmd, 0, BLK_MAX_CDB);
888 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200890 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
891 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200892 if (stat)
893 return stat;
894
895 /*
David S. Milleraf054ed2009-06-23 16:01:06 -0700896 * Sanity check the given block size, in so far as making
897 * sure the sectors_per_frame we give to the caller won't
898 * end up being bogus.
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200899 */
Petr Tesarik938bb032008-08-05 18:17:02 +0200900 blocklen = be32_to_cpu(capbuf.blocklen);
David S. Milleraf054ed2009-06-23 16:01:06 -0700901 blocklen = (blocklen >> SECTOR_BITS) << SECTOR_BITS;
Petr Tesarik938bb032008-08-05 18:17:02 +0200902 switch (blocklen) {
903 case 512:
904 case 1024:
905 case 2048:
906 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200907 break;
908 default:
Frans Popd9ae6242009-06-23 16:02:58 -0700909 printk_once(KERN_ERR PFX "%s: weird block size %u; "
910 "setting default block size to 2048\n",
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200911 drive->name, blocklen);
Petr Tesarik938bb032008-08-05 18:17:02 +0200912 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200913 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200916 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +0200917 *sectors_per_frame = blocklen >> SECTOR_BITS;
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200918
Borislav Petkov088b1b82009-01-02 13:34:47 +0100919 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
920 *capacity, *sectors_per_frame);
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200921
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
925static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
926 int format, char *buf, int buflen,
927 struct request_sense *sense)
928{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200929 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Borislav Petkov088b1b82009-01-02 13:34:47 +0100931 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200932
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200933 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200935 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
936 cmd[6] = trackno;
937 cmd[7] = (buflen >> 8);
938 cmd[8] = (buflen & 0xff);
939 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200942 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200944 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100948int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
950 int stat, ntracks, i;
951 struct cdrom_info *info = drive->driver_data;
952 struct cdrom_device_info *cdi = &info->devinfo;
953 struct atapi_toc *toc = info->toc;
954 struct {
955 struct atapi_toc_header hdr;
956 struct atapi_toc_entry ent;
957 } ms_tmp;
958 long last_written;
959 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
960
Borislav Petkov088b1b82009-01-02 13:34:47 +0100961 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200964 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800965 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (toc == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200967 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
Borislav Petkov83c85652008-04-26 22:25:15 +0200968 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return -ENOMEM;
970 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800971 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200974 /*
975 * Check to see if the existing data is still valid. If it is,
976 * just return.
977 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 (void) cdrom_check_status(drive, sense);
979
Borislav Petkov570f89e2008-07-23 19:56:02 +0200980 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return 0;
982
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200983 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
985 sense);
986 if (stat)
987 toc->capacity = 0x1fffff;
988
989 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200990 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -0700991 drive->probed_capacity = toc->capacity * sectors_per_frame;
992
Martin K. Petersene1defc42009-05-22 17:17:49 -0400993 blk_queue_logical_block_size(drive->queue,
994 sectors_per_frame << SECTOR_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200996 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
998 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800999 if (stat)
1000 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Borislav Petkov570f89e2008-07-23 19:56:02 +02001002 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001003 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1004 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1008 if (ntracks <= 0)
1009 return -EIO;
1010 if (ntracks > MAX_TRACKS)
1011 ntracks = MAX_TRACKS;
1012
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001013 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1015 (char *)&toc->hdr,
1016 sizeof(struct atapi_toc_header) +
1017 (ntracks + 1) *
1018 sizeof(struct atapi_toc_entry), sense);
1019
1020 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001021 /*
1022 * Cds with CDI tracks only don't have any TOC entries, despite
1023 * of this the returned values are
1024 * first_track == last_track = number of CDI tracks + 1,
1025 * so that this case is indistinguishable from the same layout
1026 * plus an additional audio track. If we get an error for the
1027 * regular case, we assume a CDI without additional audio
1028 * tracks. In this case the readable TOC is empty (CDI tracks
1029 * are not included) and only holds the Leadout entry.
1030 *
1031 * Heiko Eißfeldt.
1032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 ntracks = 0;
1034 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1035 (char *)&toc->hdr,
1036 sizeof(struct atapi_toc_header) +
1037 (ntracks + 1) *
1038 sizeof(struct atapi_toc_entry),
1039 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001040 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001042
Borislav Petkov570f89e2008-07-23 19:56:02 +02001043 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001044 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1045 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001046 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 toc->hdr.first_track = CDROM_LEADOUT;
1048 toc->hdr.last_track = CDROM_LEADOUT;
1049 }
1050 }
1051
1052 if (stat)
1053 return stat;
1054
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001055 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Borislav Petkov570f89e2008-07-23 19:56:02 +02001057 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001058 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1059 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001062 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001063 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1064 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001065 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 msf_from_bcd(&toc->ent[i].addr.msf);
1067 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001068 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1069 toc->ent[i].addr.msf.second,
1070 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001074 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1076 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001077 if (stat)
1078 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1081 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001082 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1083 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1085 }
1086
Borislav Petkov570f89e2008-07-23 19:56:02 +02001087 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001088 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1090 sizeof(ms_tmp), sense);
1091 if (stat)
1092 return stat;
1093
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001094 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001096 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 ms_tmp.ent.addr.msf.frame);
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1101
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001102 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 stat = cdrom_get_last_written(cdi, &last_written);
1104 if (!stat && (last_written > toc->capacity)) {
1105 toc->capacity = last_written;
1106 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001107 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
1109
1110 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001111 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 return 0;
1114}
1115
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001116int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001117{
1118 struct cdrom_info *info = drive->driver_data;
1119 struct cdrom_device_info *cdi = &info->devinfo;
1120 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001121 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001122
Borislav Petkov088b1b82009-01-02 13:34:47 +01001123 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001124
Borislav Petkov570f89e2008-07-23 19:56:02 +02001125 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001126 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001127
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001128 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001129 do {
1130 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001131 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1132 if (!stat)
1133 break;
1134 } while (--attempts);
1135 return stat;
1136}
1137
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001138void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001139{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001140 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001141 u16 curspeed, maxspeed;
1142
Borislav Petkov088b1b82009-01-02 13:34:47 +01001143 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001144
Borislav Petkov570f89e2008-07-23 19:56:02 +02001145 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001146 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1147 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001148 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001149 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1150 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001151 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001152
Borislav Petkov088b1b82009-01-02 13:34:47 +01001153 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1154 curspeed, maxspeed);
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001155
Julia Lawall72db37b2009-08-02 13:19:05 -07001156 cd->current_speed = DIV_ROUND_CLOSEST(curspeed, 176);
1157 cd->max_speed = DIV_ROUND_CLOSEST(maxspeed, 176);
Eric Piel9235e682005-06-23 00:10:29 -07001158}
1159
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001160#define IDE_CD_CAPABILITIES \
1161 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1162 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1163 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1164 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1165 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167static struct cdrom_device_ops ide_cdrom_dops = {
1168 .open = ide_cdrom_open_real,
1169 .release = ide_cdrom_release_real,
1170 .drive_status = ide_cdrom_drive_status,
1171 .media_changed = ide_cdrom_check_media_change_real,
1172 .tray_move = ide_cdrom_tray_move,
1173 .lock_door = ide_cdrom_lock_door,
1174 .select_speed = ide_cdrom_select_speed,
1175 .get_last_session = ide_cdrom_get_last_session,
1176 .get_mcn = ide_cdrom_get_mcn,
1177 .reset = ide_cdrom_reset,
1178 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001179 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 .generic_packet = ide_cdrom_packet,
1181};
1182
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001183static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
1185 struct cdrom_info *info = drive->driver_data;
1186 struct cdrom_device_info *devinfo = &info->devinfo;
1187
Borislav Petkov088b1b82009-01-02 13:34:47 +01001188 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001191 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001193 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Borislav Petkov570f89e2008-07-23 19:56:02 +02001196 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001197 devinfo->mask |= CDC_SELECT_SPEED;
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 devinfo->disk = info->disk;
1200 return register_cdrom(devinfo);
1201}
1202
Borislav Petkove5e076a2008-04-26 22:25:15 +02001203static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001205 struct cdrom_info *cd = drive->driver_data;
1206 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001207 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1208 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 int nslots = 1;
1210
Borislav Petkov088b1b82009-01-02 13:34:47 +01001211 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1212 drive->media, drive->atapi_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001213
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001214 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1215 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1216 CDC_MO_DRIVE | CDC_RAM);
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001219 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001220 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001221 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return nslots;
1223 }
1224
Borislav Petkov570f89e2008-07-23 19:56:02 +02001225 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1226 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001227 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return nslots;
1229 }
1230
1231 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001232 * We have to cheat a little here. the packet will eventually be queued
1233 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1234 * Since this device hasn't been registered with the Uniform layer yet,
1235 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001237 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 cdi->ops = &ide_cdrom_dops;
1239
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001240 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return 0;
1242
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001243 if ((buf[8 + 6] & 0x01) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001244 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001245 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001246 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001247 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001248 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001249 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001250 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001251 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001252 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001253 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001254 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001255 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001256 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001257 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001258 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001259
1260 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001261 if (mechtype == mechtype_caddy ||
1262 mechtype == mechtype_popup ||
1263 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001264 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001267 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001269 } else if (mechtype == mechtype_individual_changer ||
1270 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001271 nslots = cdrom_number_of_slots(cdi);
1272 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001273 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001276 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001277
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001278 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001279
1280 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001281 if (cd->max_speed)
1282 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001283
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001284 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001286 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1287 printk(KERN_CONT " DVD%s%s",
1288 (cdi->mask & CDC_DVD_R) ? "" : "-R",
Borislav Petkov419a5b62008-10-17 18:09:14 +02001289 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001291 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1292 printk(KERN_CONT " CD%s%s",
1293 (cdi->mask & CDC_CD_R) ? "" : "-R",
1294 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001296 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1297 printk(KERN_CONT " changer w/%d slots", nslots);
1298 else
1299 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001301 printk(KERN_CONT ", %dkB Cache\n",
1302 be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 return nslots;
1305}
1306
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001307/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001308static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001310 int hard_sect = queue_logical_block_size(q);
Tejun Heo5b936292009-05-07 22:24:38 +09001311 long block = (long)blk_rq_pos(rq) / (hard_sect >> 9);
1312 unsigned long blocks = blk_rq_sectors(rq) / (hard_sect >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001314 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 if (rq_data_dir(rq) == READ)
1317 rq->cmd[0] = GPCMD_READ_10;
1318 else
1319 rq->cmd[0] = GPCMD_WRITE_10;
1320
1321 /*
1322 * fill in lba
1323 */
1324 rq->cmd[2] = (block >> 24) & 0xff;
1325 rq->cmd[3] = (block >> 16) & 0xff;
1326 rq->cmd[4] = (block >> 8) & 0xff;
1327 rq->cmd[5] = block & 0xff;
1328
1329 /*
1330 * and transfer length
1331 */
1332 rq->cmd[7] = (blocks >> 8) & 0xff;
1333 rq->cmd[8] = blocks & 0xff;
1334 rq->cmd_len = 10;
1335 return BLKPREP_OK;
1336}
1337
1338/*
1339 * Most of the SCSI commands are supported directly by ATAPI devices.
1340 * This transform handles the few exceptions.
1341 */
1342static int ide_cdrom_prep_pc(struct request *rq)
1343{
1344 u8 *c = rq->cmd;
1345
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001346 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (c[0] == READ_6 || c[0] == WRITE_6) {
1348 c[8] = c[4];
1349 c[5] = c[3];
1350 c[4] = c[2];
1351 c[3] = c[1] & 0x1f;
1352 c[2] = 0;
1353 c[1] &= 0xe0;
1354 c[0] += (READ_10 - READ_6);
1355 rq->cmd_len = 10;
1356 return BLKPREP_OK;
1357 }
1358
1359 /*
1360 * it's silly to pretend we understand 6-byte sense commands, just
1361 * reject with ILLEGAL_REQUEST and the caller should take the
1362 * appropriate action
1363 */
1364 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1365 rq->errors = ILLEGAL_REQUEST;
1366 return BLKPREP_KILL;
1367 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return BLKPREP_OK;
1370}
1371
Jens Axboe165125e2007-07-24 09:28:11 +02001372static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001374 if (rq->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return ide_cdrom_prep_fs(q, rq);
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001376 else if (rq->cmd_type == REQ_TYPE_BLOCK_PC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return ide_cdrom_prep_pc(rq);
1378
1379 return 0;
1380}
1381
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001382struct cd_list_entry {
1383 const char *id_model;
1384 const char *id_firmware;
1385 unsigned int cd_flags;
1386};
1387
Borislav Petkov5e657a92008-04-26 22:25:15 +02001388#ifdef CONFIG_IDE_PROC_FS
1389static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1390{
1391 unsigned long capacity, sectors_per_frame;
1392
1393 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1394 return 0;
1395
1396 return capacity * sectors_per_frame;
1397}
1398
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001399static int idecd_capacity_proc_show(struct seq_file *m, void *v)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001400{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001401 ide_drive_t *drive = m->private;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001402
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001403 seq_printf(m, "%llu\n", (long long)ide_cdrom_capacity(drive));
1404 return 0;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001405}
1406
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001407static int idecd_capacity_proc_open(struct inode *inode, struct file *file)
1408{
1409 return single_open(file, idecd_capacity_proc_show, PDE(inode)->data);
1410}
1411
1412static const struct file_operations idecd_capacity_proc_fops = {
1413 .owner = THIS_MODULE,
1414 .open = idecd_capacity_proc_open,
1415 .read = seq_read,
1416 .llseek = seq_lseek,
1417 .release = single_release,
1418};
1419
Borislav Petkov5e657a92008-04-26 22:25:15 +02001420static ide_proc_entry_t idecd_proc[] = {
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001421 { "capacity", S_IFREG|S_IRUGO, &idecd_capacity_proc_fops },
1422 {}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001423};
1424
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001425static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1426{
1427 return idecd_proc;
1428}
1429
1430static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1431{
Bartlomiej Zolnierkiewicz519d6802008-12-29 20:27:38 +01001432 return NULL;
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001433}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001434#endif
1435
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001436static const struct cd_list_entry ide_cd_quirks_list[] = {
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001437 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001438 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001439 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001440 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1441 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001442 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001443 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001444 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001445 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001446 /*
1447 * Sanyo 3 CD changer uses a non-standard command for CD changing
1448 * (by default standard ATAPI support for CD changers is used).
1449 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001450 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1451 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1452 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001453 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001454 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001455 /*
1456 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1457 * mode sense page capabilities size, but older drives break.
1458 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001459 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1460 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001461 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001462 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001463 /*
1464 * Some drives used by Apple don't advertise audio play
1465 * but they do support reading TOC & audio datas.
1466 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001467 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1468 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1469 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1470 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1471 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001472 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001473 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Márton Németh64c2eae2008-10-23 23:22:09 +02001474 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001475 { NULL, NULL, 0 }
1476};
1477
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001478static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001479{
1480 const struct cd_list_entry *cle = ide_cd_quirks_list;
1481
1482 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001483 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001484 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001485 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001486 return cle->cd_flags;
1487 cle++;
1488 }
1489
1490 return 0;
1491}
1492
Borislav Petkove5e076a2008-04-26 22:25:15 +02001493static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001495 struct cdrom_info *cd = drive->driver_data;
1496 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001497 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001498 u16 *id = drive->id;
1499 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 int nslots;
1501
Borislav Petkov088b1b82009-01-02 13:34:47 +01001502 ide_debug_log(IDE_DBG_PROBE, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001503
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001504 blk_queue_prep_rq(q, ide_cdrom_prep_fn);
1505 blk_queue_dma_alignment(q, 31);
1506 blk_queue_update_dma_pad(q, 15);
1507
1508 q->unplug_delay = max((1 * HZ) / 1000, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +02001510 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1511 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Borislav Petkov570f89e2008-07-23 19:56:02 +02001513 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001514 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001515 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1516 IDE_AFLAG_TOCADDR_AS_BCD);
1517 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001518 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001519 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1520 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001521 /* 3 => use CD in slot 0 */
1522 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001524 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Martin K. Petersene1defc42009-05-22 17:17:49 -04001526 blk_queue_logical_block_size(q, CD_FRAMESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001529 printk(KERN_ERR PFX "%s: %s failed to register device with the"
Borislav Petkov83c85652008-04-26 22:25:15 +02001530 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001531 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return 1;
1533 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001534
1535 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 return 0;
1537}
1538
Russell King4031bbe2006-01-06 11:41:00 +00001539static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 struct cdrom_info *info = drive->driver_data;
1542
Borislav Petkov088b1b82009-01-02 13:34:47 +01001543 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001544
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001545 ide_proc_unregister_driver(drive, info->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001546 device_del(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 del_gendisk(info->disk);
1548
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001549 mutex_lock(&idecd_ref_mutex);
1550 put_device(&info->dev);
1551 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001554static void ide_cd_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001556 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 struct cdrom_device_info *devinfo = &info->devinfo;
1558 ide_drive_t *drive = info->drive;
1559 struct gendisk *g = info->disk;
1560
Borislav Petkov088b1b82009-01-02 13:34:47 +01001561 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001562
Jesper Juhl6044ec82005-11-07 01:01:32 -08001563 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001564 if (devinfo->handle == drive)
1565 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 drive->driver_data = NULL;
1567 blk_queue_prep_rq(drive->queue, NULL);
1568 g->private_data = NULL;
1569 put_disk(g);
1570 kfree(info);
1571}
1572
Russell King4031bbe2006-01-06 11:41:00 +00001573static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001575static struct ide_driver ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001576 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001577 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001578 .name = "ide-cdrom",
1579 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001580 },
Russell King4031bbe2006-01-06 11:41:00 +00001581 .probe = ide_cd_probe,
1582 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 .version = IDECD_VERSION,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001584 .do_request = ide_cd_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001585#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001586 .proc_entries = ide_cd_proc_entries,
1587 .proc_devsets = ide_cd_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001588#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589};
1590
Al Viro488ca602008-03-02 10:26:23 -05001591static int idecd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Al Viro488ca602008-03-02 10:26:23 -05001593 struct cdrom_info *info = ide_cd_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int rc = -ENOMEM;
1595
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001596 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 return -ENXIO;
1598
Al Viro488ca602008-03-02 10:26:23 -05001599 rc = cdrom_open(&info->devinfo, bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 if (rc < 0)
1602 ide_cd_put(info);
1603
1604 return rc;
1605}
1606
Al Viro488ca602008-03-02 10:26:23 -05001607static int idecd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001609 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Al Viro488ca602008-03-02 10:26:23 -05001611 cdrom_release(&info->devinfo, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 ide_cd_put(info);
1614
1615 return 0;
1616}
1617
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001618static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1619{
1620 struct packet_command cgc;
1621 char buffer[16];
1622 int stat;
1623 char spindown;
1624
1625 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1626 return -EFAULT;
1627
1628 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1629
1630 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1631 if (stat)
1632 return stat;
1633
1634 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1635 return cdrom_mode_select(cdi, &cgc);
1636}
1637
1638static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1639{
1640 struct packet_command cgc;
1641 char buffer[16];
1642 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001643 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001644
1645 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1646
1647 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1648 if (stat)
1649 return stat;
1650
1651 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001652 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001653 return -EFAULT;
1654 return 0;
1655}
1656
Al Viro488ca602008-03-02 10:26:23 -05001657static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 unsigned int cmd, unsigned long arg)
1659{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001660 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 int err;
1662
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001663 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001664 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001665 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001666 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001667 return idecd_get_spindown(&info->devinfo, arg);
1668 default:
1669 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001670 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001671
Al Viro1bddd9e2008-09-02 17:19:43 -04001672 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (err == -EINVAL)
Al Viro488ca602008-03-02 10:26:23 -05001674 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 return err;
1677}
1678
1679static int idecd_media_changed(struct gendisk *disk)
1680{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001681 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return cdrom_media_changed(&info->devinfo);
1683}
1684
1685static int idecd_revalidate_disk(struct gendisk *disk)
1686{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001687 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001689
1690 ide_cd_read_toc(info->drive, &sense);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return 0;
1693}
1694
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001695static const struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001696 .owner = THIS_MODULE,
Al Viro488ca602008-03-02 10:26:23 -05001697 .open = idecd_open,
1698 .release = idecd_release,
1699 .locked_ioctl = idecd_ioctl,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001700 .media_changed = idecd_media_changed,
1701 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702};
1703
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001704/* module options */
Borislav Petkov35d9b172008-10-13 21:39:49 +02001705static unsigned long debug_mask;
1706module_param(debug_mask, ulong, 0644);
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1709
Russell King4031bbe2006-01-06 11:41:00 +00001710static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
1712 struct cdrom_info *info;
1713 struct gendisk *g;
1714 struct request_sense sense;
1715
Borislav Petkov088b1b82009-01-02 13:34:47 +01001716 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1717 drive->driver_req, drive->media);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (!strstr("ide-cdrom", drive->driver_req))
1720 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (drive->media != ide_cdrom && drive->media != ide_optical)
1723 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001724
Borislav Petkov35d9b172008-10-13 21:39:49 +02001725 drive->debug_mask = debug_mask;
Borislav Petkovd6251d42009-01-06 17:20:58 +01001726 drive->irq_handler = cdrom_newpc_intr;
Borislav Petkov35d9b172008-10-13 21:39:49 +02001727
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08001728 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (info == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001730 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001731 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 goto failed;
1733 }
1734
1735 g = alloc_disk(1 << PARTN_BITS);
1736 if (!g)
1737 goto out_free_cd;
1738
1739 ide_init_disk(g, drive);
1740
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001741 info->dev.parent = &drive->gendev;
1742 info->dev.release = ide_cd_release;
1743 dev_set_name(&info->dev, dev_name(&drive->gendev));
1744
1745 if (device_register(&info->dev))
1746 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 info->drive = drive;
1749 info->driver = &ide_cdrom_driver;
1750 info->disk = g;
1751
1752 g->private_data = &info->driver;
1753
1754 drive->driver_data = info;
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 g->driverfs_dev = &drive->gendev;
1758 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1759 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001760 put_device(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 goto failed;
1762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001764 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 g->fops = &idecd_ops;
1766 g->flags |= GENHD_FL_REMOVABLE;
1767 add_disk(g);
1768 return 0;
1769
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001770out_free_disk:
1771 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772out_free_cd:
1773 kfree(info);
1774failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001775 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
1777
1778static void __exit ide_cdrom_exit(void)
1779{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001780 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01001782
1783static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001785 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001786 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
Kay Sievers263756e2005-12-12 18:03:44 +01001789MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01001790MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791module_init(ide_cdrom_init);
1792module_exit(ide_cdrom_exit);
1793MODULE_LICENSE("GPL");