blob: 64207df8da82fe5627664777518617bd0facc990 [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 Petkov239f7e252009-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 Petkov239f7e252009-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 Petkov239f7e252009-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 Petkov239f7e252009-04-23 08:30:29 +0200144 struct request *failed_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Borislav Petkov239f7e252009-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 Petkov239f7e252009-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 ||
179 !blk_fs_request(failed_command))
180 break;
181 sector = (sense->information[0] << 24) |
182 (sense->information[1] << 16) |
183 (sense->information[2] << 8) |
184 (sense->information[3]);
185
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 Petkov239f7e252009-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 Petkov239f7e252009-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
Jens Axboe4aff5e22006-08-10 08:44:47 +0200295 if (blk_sense_request(rq)) {
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 */
306 if (blk_pc_request(rq) && !rq->errors)
307 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:
Borislav Petkov3c8a48e2009-04-08 14:13:03 +0200314 if (blk_fs_request(rq) && rq_data_dir(rq) == WRITE) {
315 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
Borislav Petkov96c16742009-04-30 18:24:34 +0200320 if (blk_fs_request(rq) && !blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200321 printk(KERN_ERR PFX "%s: tray open\n",
322 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200324 do_end_request = 1;
325 break;
326 case UNIT_ATTENTION:
327 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200329 if (blk_fs_request(rq) == 0)
330 return 0;
331
332 /*
333 * Arrange to retry the request but be sure to give up if we've
334 * retried too many times.
335 */
336 if (++rq->errors > ERROR_MAX)
Bartlomiej Zolnierkiewicz1920c482009-04-08 14:12:54 +0200337 do_end_request = 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200338 break;
339 case ILLEGAL_REQUEST:
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200340 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200341 * Don't print error message for this condition -- SFF8090i
342 * indicates that 5/24/00 is the correct response to a request
343 * to close the tray if the drive doesn't have that capability.
344 *
345 * cdrom_log_sense() knows this!
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200346 */
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200347 if (rq->cmd[0] == GPCMD_START_STOP_UNIT)
348 break;
349 /* fall-through */
350 case DATA_PROTECT:
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100351 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200352 * No point in retrying after an illegal request or data
353 * protect error.
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100354 */
Borislav Petkov96c16742009-04-30 18:24:34 +0200355 if (!blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200356 ide_dump_status(drive, "command error", stat);
357 do_end_request = 1;
358 break;
359 case MEDIUM_ERROR:
360 /*
361 * No point in re-trying a zillion times on a bad sector.
362 * If we got here the error is not correctable.
363 */
Borislav Petkov96c16742009-04-30 18:24:34 +0200364 if (!blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200365 ide_dump_status(drive, "media error "
366 "(bad sector)", stat);
367 do_end_request = 1;
368 break;
369 case BLANK_CHECK:
370 /* disk appears blank? */
Borislav Petkov96c16742009-04-30 18:24:34 +0200371 if (!blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200372 ide_dump_status(drive, "media error (blank)",
373 stat);
374 do_end_request = 1;
375 break;
376 default:
377 if (blk_fs_request(rq) == 0)
378 break;
379 if (err & ~ATA_ABORTED) {
380 /* go to the default handler for other errors */
381 ide_error(drive, "cdrom_decode_status", stat);
382 return 1;
383 } else if (++rq->errors > ERROR_MAX)
384 /* we've racked up too many retries, abort */
385 do_end_request = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200388 if (blk_fs_request(rq) == 0) {
389 rq->cmd_flags |= REQ_FAILED;
390 do_end_request = 1;
391 }
392
393 /*
394 * End a request through request sense analysis when we have sense data.
395 * We need this in order to perform end of media processing.
396 */
397 if (do_end_request)
398 goto end_request;
399
400 /* if we got a CHECK_CONDITION status, queue a request sense command */
401 if (stat & ATA_ERR)
Tejun Heo02e7cf82009-04-19 07:00:42 +0900402 return ide_queue_sense_rq(drive, NULL) ? 2 : 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200403 return 1;
404
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100405end_request:
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200406 if (stat & ATA_ERR) {
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100407 hwif->rq = NULL;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900408 return ide_queue_sense_rq(drive, rq) ? 2 : 1;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100409 } else
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200410 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200413static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100414{
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200415 struct request *rq = cmd->rq;
416
Borislav Petkov088b1b82009-01-02 13:34:47 +0100417 ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200418
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100419 /*
420 * Some of the trailing request sense fields are optional,
421 * and some drives don't send them. Sigh.
422 */
423 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
Tejun Heo59a4f6f2009-04-19 07:00:41 +0900424 cmd->nleft > 0 && cmd->nleft <= 5)
425 cmd->nleft = 0;
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100426}
427
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200428int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
429 int write, void *buffer, unsigned *bufflen,
430 struct request_sense *sense, int timeout,
431 unsigned int cmd_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200433 struct cdrom_info *info = drive->driver_data;
434 struct request_sense local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 int retries = 10;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200436 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200438 if (!sense)
439 sense = &local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Borislav Petkov088b1b82009-01-02 13:34:47 +0100441 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
442 "cmd_flags: 0x%x",
443 cmd[0], write, timeout, cmd_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200444
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200445 /* start of retry loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 do {
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200447 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200450 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
451
452 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
453 rq->cmd_type = REQ_TYPE_ATA_PC;
454 rq->sense = sense;
455 rq->cmd_flags |= cmd_flags;
456 rq->timeout = timeout;
457 if (buffer) {
Tejun Heo02e7cf82009-04-19 07:00:42 +0900458 error = blk_rq_map_kern(drive->queue, rq, buffer,
459 *bufflen, GFP_NOIO);
460 if (error) {
461 blk_put_request(rq);
462 return error;
463 }
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200464 }
465
466 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
467
468 if (buffer)
Tejun Heoc3a4d782009-05-07 22:24:37 +0900469 *bufflen = rq->resid_len;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200470
471 flags = rq->cmd_flags;
472 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200474 /*
475 * FIXME: we should probably abort/retry or something in case of
476 * failure.
477 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200478 if (flags & REQ_FAILED) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200479 /*
480 * The request failed. Retry if it was due to a unit
481 * attention status (usually means media was changed).
482 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200483 struct request_sense *reqbuf = sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 if (reqbuf->sense_key == UNIT_ATTENTION)
486 cdrom_saw_media_change(drive);
487 else if (reqbuf->sense_key == NOT_READY &&
488 reqbuf->asc == 4 && reqbuf->ascq != 4) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200489 /*
490 * The drive is in the process of loading
491 * a disk. Retry, but wait a little to give
492 * the drive time to complete the load.
493 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 ssleep(2);
495 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200496 /* otherwise, don't retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 retries = 0;
498 }
499 --retries;
500 }
501
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200502 /* end of retry loop */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200503 } while ((flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200505 /* return an error if the command failed */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200506 return (flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200509static void ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
510{
511 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
512
513 if (cmd->tf_flags & IDE_TFLAG_WRITE)
514 nr_bytes -= cmd->last_xfer_len;
515
516 if (nr_bytes > 0)
517 ide_complete_rq(drive, 0, nr_bytes);
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
521{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200522 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200523 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100524 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100525 ide_expiry_t *expiry = NULL;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200526 int dma_error = 0, dma, thislen, uptodate = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900527 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200528 int sense = blk_sense_request(rq);
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100529 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200530 u16 len;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200531 u8 ireason, stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Borislav Petkov98036ab2009-04-08 14:12:53 +0200533 ide_debug_log(IDE_DBG_PC, "cmd: 0x%x, write: 0x%x", rq->cmd[0], write);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200534
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200535 /* check for errors */
Borislav Petkov12469ac2008-10-13 21:39:49 +0200536 dma = drive->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (dma) {
Borislav Petkov12469ac2008-10-13 21:39:49 +0200538 drive->dma = 0;
Bartlomiej Zolnierkiewicz88b41322009-03-31 20:15:22 +0200539 drive->waiting_for_dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200540 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczf094d4d82009-03-31 20:15:24 +0200541 ide_dma_unmap_sg(drive, cmd);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100542 if (dma_error) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200543 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100544 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100545 ide_dma_off(drive);
546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200549 /* check status */
550 stat = hwif->tp_ops->read_status(hwif);
551
552 if (!OK_STAT(stat, 0, BAD_R_STAT)) {
553 rc = cdrom_decode_status(drive, stat);
554 if (rc) {
555 if (rc == 2)
556 goto out_end;
557 return ide_stopped;
558 }
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200561 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100563 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz4a3d8cf2009-03-31 20:15:15 +0200565 uptodate = 1;
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200566 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200569 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100570
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200571 thislen = blk_fs_request(rq) ? len : cmd->nleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (thislen > len)
573 thislen = len;
574
Borislav Petkov088b1b82009-01-02 13:34:47 +0100575 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
576 stat, thislen);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200577
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200578 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200579 if ((stat & ATA_DRQ) == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100580 if (blk_fs_request(rq)) {
581 /*
582 * If we're not done reading/writing, complain.
583 * Otherwise, complete the command normally.
584 */
585 uptodate = 1;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200586 if (cmd->nleft > 0) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200587 printk(KERN_ERR PFX "%s: %s: data underrun "
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200588 "(%u bytes)\n", drive->name, __func__,
589 cmd->nleft);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100590 if (!write)
591 rq->cmd_flags |= REQ_FAILED;
592 uptodate = 0;
593 }
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100594 } else if (!blk_pc_request(rq)) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200595 ide_cd_request_sense_fixup(drive, cmd);
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700596
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200597 uptodate = cmd->nleft ? 0 : 1;
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700598
599 /*
600 * suck out the remaining bytes from the drive in an
601 * attempt to complete the data xfer. (see BZ#13399)
602 */
603 if (!(stat & ATA_ERR) && !uptodate && thislen) {
604 ide_pio_bytes(drive, cmd, write, thislen);
605 uptodate = cmd->nleft ? 0 : 1;
606 }
607
608 if (!uptodate)
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200609 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100610 }
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200611 goto out_end;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Borislav Petkov103f7032009-04-26 10:39:07 +0200614 rc = ide_check_ireason(drive, rq, len, ireason, write);
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200615 if (rc)
616 goto out_end;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100617
Bartlomiej Zolnierkiewicz06a449e2009-03-31 20:15:13 +0200618 cmd->last_xfer_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Borislav Petkov088b1b82009-01-02 13:34:47 +0100620 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
621 "ireason: 0x%x",
622 rq->cmd_type, ireason);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200623
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200624 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 while (thislen > 0) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200626 int blen = min_t(int, thislen, cmd->nleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200628 if (cmd->nleft == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200631 ide_pio_bytes(drive, cmd, write, blen);
632 cmd->last_xfer_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 thislen -= blen;
635 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200637 if (sense && write == 0)
Andreas Schwabbcd88ac2008-02-26 21:50:35 +0100638 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200641 /* pad, if necessary */
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200642 if (len > 0) {
643 if (blk_fs_request(rq) == 0 || write == 0)
644 ide_pad_transfer(drive, write, len);
645 else {
646 printk(KERN_ERR PFX "%s: confused, missing data\n",
647 drive->name);
648 blk_dump_rq_flags(rq, "cdrom_newpc_intr");
649 }
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100652 if (blk_pc_request(rq)) {
653 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100654 } else {
655 timeout = ATAPI_WAIT_PC;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100656 if (!blk_fs_request(rq))
Borislav Petkov4cad0852009-01-02 16:12:53 +0100657 expiry = ide_cd_expiry;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100658 }
659
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100660 hwif->expiry = expiry;
661 ide_set_handler(drive, cdrom_newpc_intr, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100663
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200664out_end:
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200665 if (blk_pc_request(rq) && rc == 0) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900666 rq->resid_len = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900667 blk_end_request_all(rq, 0);
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100668 hwif->rq = NULL;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100669 } else {
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200670 if (sense && uptodate)
671 ide_cd_complete_failed_rq(drive, rq);
672
673 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200674 if (cmd->nleft == 0)
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200675 uptodate = 1;
676 } else {
677 if (uptodate <= 0 && rq->errors == 0)
678 rq->errors = -EIO;
679 }
680
Rainer Weikusat39c58f32009-06-18 17:04:00 +0200681 if (uptodate == 0 && rq->bio)
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200682 ide_cd_error_cmd(drive, cmd);
683
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200684 /* make sure it's fully ended */
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200685 if (blk_fs_request(rq) == 0) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900686 rq->resid_len -= cmd->nbytes - cmd->nleft;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200687 if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
Tejun Heoc3a4d782009-05-07 22:24:37 +0900688 rq->resid_len += cmd->last_xfer_len;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200689 }
690
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900691 ide_complete_rq(drive, uptodate ? 0 : -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200692
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200693 if (sense && rc == 2)
694 ide_error(drive, "request sense failure", stat);
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100695 }
696 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100699static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100701 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200702 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100703 int write = rq_data_dir(rq) == WRITE;
704 unsigned short sectors_per_frame =
Martin K. Petersene1defc42009-05-22 17:17:49 -0400705 queue_logical_block_size(q) >> SECTOR_BITS;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100706
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200707 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
Borislav Petkov088b1b82009-01-02 13:34:47 +0100708 "secs_per_frame: %u",
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200709 rq->cmd[0], rq->cmd_flags, sectors_per_frame);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200710
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100711 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200712 /* disk has become write protected */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200713 if (get_disk_ro(cd->disk))
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100714 return ide_stopped;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100715 } else {
716 /*
717 * We may be retrying this request after an error. Fix up any
718 * weirdness which might be present in the request packet.
719 */
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200720 q->prep_rq_fn(q, rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200723 /* fs requests *must* be hardware frame aligned */
Tejun Heo9780e2d2009-05-07 22:24:40 +0900724 if ((blk_rq_sectors(rq) & (sectors_per_frame - 1)) ||
725 (blk_rq_pos(rq) & (sectors_per_frame - 1)))
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200726 return ide_stopped;
727
728 /* use DMA, if possible */
729 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100731 if (write)
732 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200734 rq->timeout = ATAPI_WAIT_PC;
735
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200736 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200739static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Borislav Petkov088b1b82009-01-02 13:34:47 +0100742 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
743 rq->cmd[0], rq->cmd_type);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200744
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100745 if (blk_pc_request(rq))
746 rq->cmd_flags |= REQ_QUIET;
747 else
748 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Borislav Petkov12469ac2008-10-13 21:39:49 +0200750 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200752 /* sg request */
Tejun Heo02e7cf82009-04-19 07:00:42 +0900753 if (rq->bio) {
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200754 struct request_queue *q = drive->queue;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900755 char *buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200756 unsigned int alignment;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200757
Borislav Petkov12469ac2008-10-13 21:39:49 +0200758 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /*
761 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -0700762 *
763 * NOTE! The "len" and "addr" checks should possibly have
764 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200766 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Borislav Petkov9bd27cb2008-11-02 21:40:07 +0100767 if ((unsigned long)buf & alignment
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900768 || blk_rq_bytes(rq) & q->dma_pad_mask
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200769 || object_is_on_stack(buf))
Borislav Petkov12469ac2008-10-13 21:39:49 +0200770 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Borislav Petkov99384ae2008-07-16 20:33:45 +0200774static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +0200775 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100777 struct ide_cmd cmd;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200778 int uptodate = 0, nsectors;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100779
Borislav Petkov088b1b82009-01-02 13:34:47 +0100780 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
781 rq->cmd[0], (unsigned long long)block);
782
783 if (drive->debug_mask & IDE_DBG_RQ)
784 blk_dump_rq_flags(rq, "ide_cd_do_request");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200787 if (cdrom_start_rw(drive, rq) == ide_stopped)
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200788 goto out_end;
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100789 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
Jens Axboecea28852006-10-12 15:08:45 +0200790 rq->cmd_type == REQ_TYPE_ATA_PC) {
Borislav Petkov7fcebda2008-07-16 20:33:46 +0200791 if (!rq->timeout)
792 rq->timeout = ATAPI_WAIT_PC;
793
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200794 cdrom_do_block_pc(drive, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200795 } else if (blk_special_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200796 /* right now this can only be a reset... */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200797 uptodate = 1;
798 goto out_end;
Bartlomiej Zolnierkiewicz2c7eaa42009-06-15 22:16:10 +0200799 } else
800 BUG();
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200801
Borislav Petkovc457ce82009-04-19 07:00:42 +0900802 /* prepare sense request for this command */
803 ide_prep_sense(drive, rq);
804
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100805 memset(&cmd, 0, sizeof(cmd));
806
807 if (rq_data_dir(rq))
808 cmd.tf_flags |= IDE_TFLAG_WRITE;
809
810 cmd.rq = rq;
811
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900812 if (blk_fs_request(rq) || blk_rq_bytes(rq)) {
813 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200814 ide_map_sg(drive, &cmd);
815 }
816
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100817 return ide_issue_pc(drive, &cmd);
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200818out_end:
Tejun Heo5b936292009-05-07 22:24:38 +0900819 nsectors = blk_rq_sectors(rq);
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200820
821 if (nsectors == 0)
822 nsectors = 1;
823
824 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
825
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200826 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200829/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * Ioctl handling.
831 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200832 * Routines which queue packet commands take as a final argument a pointer to a
833 * request_sense struct. If execution of the command results in an error with a
834 * CHECK CONDITION status, this structure will be filled with the results of the
835 * subsequent request sense command. The pointer can also be NULL, in which case
836 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200838static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Adrian Bunkfc99856a2008-08-18 21:40:04 +0200840 msf->minute = bcd2bin(msf->minute);
841 msf->second = bcd2bin(msf->second);
842 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Borislav Petkovf9afd182008-02-01 23:09:29 +0100845int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 struct cdrom_info *info = drive->driver_data;
848 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200849 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Borislav Petkov088b1b82009-01-02 13:34:47 +0100851 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200852
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200853 memset(cmd, 0, BLK_MAX_CDB);
854 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100856 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200857 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
858 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100859 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200860 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Harvey Harrison141d3b22008-07-23 19:56:02 +0200862 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
866 unsigned long *sectors_per_frame,
867 struct request_sense *sense)
868{
869 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +0200870 __be32 lba;
871 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 } capbuf;
873
874 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200875 unsigned char cmd[BLK_MAX_CDB];
876 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +0200877 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Borislav Petkov088b1b82009-01-02 13:34:47 +0100879 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200880
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200881 memset(cmd, 0, BLK_MAX_CDB);
882 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200884 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
885 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200886 if (stat)
887 return stat;
888
889 /*
David S. Milleraf054ed2009-06-23 16:01:06 -0700890 * Sanity check the given block size, in so far as making
891 * sure the sectors_per_frame we give to the caller won't
892 * end up being bogus.
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200893 */
Petr Tesarik938bb032008-08-05 18:17:02 +0200894 blocklen = be32_to_cpu(capbuf.blocklen);
David S. Milleraf054ed2009-06-23 16:01:06 -0700895 blocklen = (blocklen >> SECTOR_BITS) << SECTOR_BITS;
Petr Tesarik938bb032008-08-05 18:17:02 +0200896 switch (blocklen) {
897 case 512:
898 case 1024:
899 case 2048:
900 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200901 break;
902 default:
Frans Popd9ae6242009-06-23 16:02:58 -0700903 printk_once(KERN_ERR PFX "%s: weird block size %u; "
904 "setting default block size to 2048\n",
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200905 drive->name, blocklen);
Petr Tesarik938bb032008-08-05 18:17:02 +0200906 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200907 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200910 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +0200911 *sectors_per_frame = blocklen >> SECTOR_BITS;
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200912
Borislav Petkov088b1b82009-01-02 13:34:47 +0100913 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
914 *capacity, *sectors_per_frame);
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200915
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200916 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
919static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
920 int format, char *buf, int buflen,
921 struct request_sense *sense)
922{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200923 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Borislav Petkov088b1b82009-01-02 13:34:47 +0100925 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200926
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200927 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200929 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
930 cmd[6] = trackno;
931 cmd[7] = (buflen >> 8);
932 cmd[8] = (buflen & 0xff);
933 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200936 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200938 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100942int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 int stat, ntracks, i;
945 struct cdrom_info *info = drive->driver_data;
946 struct cdrom_device_info *cdi = &info->devinfo;
947 struct atapi_toc *toc = info->toc;
948 struct {
949 struct atapi_toc_header hdr;
950 struct atapi_toc_entry ent;
951 } ms_tmp;
952 long last_written;
953 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
954
Borislav Petkov088b1b82009-01-02 13:34:47 +0100955 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200958 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800959 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (toc == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200961 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
Borislav Petkov83c85652008-04-26 22:25:15 +0200962 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return -ENOMEM;
964 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800965 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200968 /*
969 * Check to see if the existing data is still valid. If it is,
970 * just return.
971 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 (void) cdrom_check_status(drive, sense);
973
Borislav Petkov570f89e2008-07-23 19:56:02 +0200974 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return 0;
976
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200977 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
979 sense);
980 if (stat)
981 toc->capacity = 0x1fffff;
982
983 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200984 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -0700985 drive->probed_capacity = toc->capacity * sectors_per_frame;
986
Martin K. Petersene1defc42009-05-22 17:17:49 -0400987 blk_queue_logical_block_size(drive->queue,
988 sectors_per_frame << SECTOR_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200990 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
992 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800993 if (stat)
994 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Borislav Petkov570f89e2008-07-23 19:56:02 +0200996 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +0200997 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
998 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1002 if (ntracks <= 0)
1003 return -EIO;
1004 if (ntracks > MAX_TRACKS)
1005 ntracks = MAX_TRACKS;
1006
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001007 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1009 (char *)&toc->hdr,
1010 sizeof(struct atapi_toc_header) +
1011 (ntracks + 1) *
1012 sizeof(struct atapi_toc_entry), sense);
1013
1014 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001015 /*
1016 * Cds with CDI tracks only don't have any TOC entries, despite
1017 * of this the returned values are
1018 * first_track == last_track = number of CDI tracks + 1,
1019 * so that this case is indistinguishable from the same layout
1020 * plus an additional audio track. If we get an error for the
1021 * regular case, we assume a CDI without additional audio
1022 * tracks. In this case the readable TOC is empty (CDI tracks
1023 * are not included) and only holds the Leadout entry.
1024 *
1025 * Heiko Eißfeldt.
1026 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 ntracks = 0;
1028 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1029 (char *)&toc->hdr,
1030 sizeof(struct atapi_toc_header) +
1031 (ntracks + 1) *
1032 sizeof(struct atapi_toc_entry),
1033 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001034 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001036
Borislav Petkov570f89e2008-07-23 19:56:02 +02001037 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001038 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1039 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001040 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 toc->hdr.first_track = CDROM_LEADOUT;
1042 toc->hdr.last_track = CDROM_LEADOUT;
1043 }
1044 }
1045
1046 if (stat)
1047 return stat;
1048
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001049 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Borislav Petkov570f89e2008-07-23 19:56:02 +02001051 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001052 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1053 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001056 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001057 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1058 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001059 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 msf_from_bcd(&toc->ent[i].addr.msf);
1061 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001062 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1063 toc->ent[i].addr.msf.second,
1064 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001068 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1070 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001071 if (stat)
1072 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1075 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001076 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1077 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1079 }
1080
Borislav Petkov570f89e2008-07-23 19:56:02 +02001081 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001082 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1084 sizeof(ms_tmp), sense);
1085 if (stat)
1086 return stat;
1087
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001088 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001090 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 ms_tmp.ent.addr.msf.frame);
1092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1095
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001096 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 stat = cdrom_get_last_written(cdi, &last_written);
1098 if (!stat && (last_written > toc->capacity)) {
1099 toc->capacity = last_written;
1100 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001101 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103
1104 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001105 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 return 0;
1108}
1109
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001110int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001111{
1112 struct cdrom_info *info = drive->driver_data;
1113 struct cdrom_device_info *cdi = &info->devinfo;
1114 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001115 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001116
Borislav Petkov088b1b82009-01-02 13:34:47 +01001117 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001118
Borislav Petkov570f89e2008-07-23 19:56:02 +02001119 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001120 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001121
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001122 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001123 do {
1124 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001125 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1126 if (!stat)
1127 break;
1128 } while (--attempts);
1129 return stat;
1130}
1131
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001132void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001133{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001134 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001135 u16 curspeed, maxspeed;
1136
Borislav Petkov088b1b82009-01-02 13:34:47 +01001137 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001138
Borislav Petkov570f89e2008-07-23 19:56:02 +02001139 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001140 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1141 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001142 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001143 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1144 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001145 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001146
Borislav Petkov088b1b82009-01-02 13:34:47 +01001147 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1148 curspeed, maxspeed);
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001149
Julia Lawall72db37b2009-08-02 13:19:05 -07001150 cd->current_speed = DIV_ROUND_CLOSEST(curspeed, 176);
1151 cd->max_speed = DIV_ROUND_CLOSEST(maxspeed, 176);
Eric Piel9235e682005-06-23 00:10:29 -07001152}
1153
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001154#define IDE_CD_CAPABILITIES \
1155 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1156 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1157 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1158 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1159 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161static struct cdrom_device_ops ide_cdrom_dops = {
1162 .open = ide_cdrom_open_real,
1163 .release = ide_cdrom_release_real,
1164 .drive_status = ide_cdrom_drive_status,
1165 .media_changed = ide_cdrom_check_media_change_real,
1166 .tray_move = ide_cdrom_tray_move,
1167 .lock_door = ide_cdrom_lock_door,
1168 .select_speed = ide_cdrom_select_speed,
1169 .get_last_session = ide_cdrom_get_last_session,
1170 .get_mcn = ide_cdrom_get_mcn,
1171 .reset = ide_cdrom_reset,
1172 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001173 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 .generic_packet = ide_cdrom_packet,
1175};
1176
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001177static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
1179 struct cdrom_info *info = drive->driver_data;
1180 struct cdrom_device_info *devinfo = &info->devinfo;
1181
Borislav Petkov088b1b82009-01-02 13:34:47 +01001182 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001185 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001187 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Borislav Petkov570f89e2008-07-23 19:56:02 +02001190 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001191 devinfo->mask |= CDC_SELECT_SPEED;
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 devinfo->disk = info->disk;
1194 return register_cdrom(devinfo);
1195}
1196
Borislav Petkove5e076a2008-04-26 22:25:15 +02001197static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001199 struct cdrom_info *cd = drive->driver_data;
1200 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001201 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1202 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 int nslots = 1;
1204
Borislav Petkov088b1b82009-01-02 13:34:47 +01001205 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1206 drive->media, drive->atapi_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001207
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001208 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1209 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1210 CDC_MO_DRIVE | CDC_RAM);
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001213 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001214 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001215 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return nslots;
1217 }
1218
Borislav Petkov570f89e2008-07-23 19:56:02 +02001219 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1220 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001221 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return nslots;
1223 }
1224
1225 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001226 * We have to cheat a little here. the packet will eventually be queued
1227 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1228 * Since this device hasn't been registered with the Uniform layer yet,
1229 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001231 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 cdi->ops = &ide_cdrom_dops;
1233
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001234 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return 0;
1236
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001237 if ((buf[8 + 6] & 0x01) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001238 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001239 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001240 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001241 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001242 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001243 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001244 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001245 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001246 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001247 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001248 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001249 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001250 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001251 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001252 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001253
1254 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001255 if (mechtype == mechtype_caddy ||
1256 mechtype == mechtype_popup ||
1257 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001258 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001261 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001263 } else if (mechtype == mechtype_individual_changer ||
1264 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001265 nslots = cdrom_number_of_slots(cdi);
1266 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001267 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001270 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001271
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001272 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001273
1274 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001275 if (cd->max_speed)
1276 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001277
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001278 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001280 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1281 printk(KERN_CONT " DVD%s%s",
1282 (cdi->mask & CDC_DVD_R) ? "" : "-R",
Borislav Petkov419a5b62008-10-17 18:09:14 +02001283 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001285 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1286 printk(KERN_CONT " CD%s%s",
1287 (cdi->mask & CDC_CD_R) ? "" : "-R",
1288 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001290 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1291 printk(KERN_CONT " changer w/%d slots", nslots);
1292 else
1293 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001295 printk(KERN_CONT ", %dkB Cache\n",
1296 be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 return nslots;
1299}
1300
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001301/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001302static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001304 int hard_sect = queue_logical_block_size(q);
Tejun Heo5b936292009-05-07 22:24:38 +09001305 long block = (long)blk_rq_pos(rq) / (hard_sect >> 9);
1306 unsigned long blocks = blk_rq_sectors(rq) / (hard_sect >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001308 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (rq_data_dir(rq) == READ)
1311 rq->cmd[0] = GPCMD_READ_10;
1312 else
1313 rq->cmd[0] = GPCMD_WRITE_10;
1314
1315 /*
1316 * fill in lba
1317 */
1318 rq->cmd[2] = (block >> 24) & 0xff;
1319 rq->cmd[3] = (block >> 16) & 0xff;
1320 rq->cmd[4] = (block >> 8) & 0xff;
1321 rq->cmd[5] = block & 0xff;
1322
1323 /*
1324 * and transfer length
1325 */
1326 rq->cmd[7] = (blocks >> 8) & 0xff;
1327 rq->cmd[8] = blocks & 0xff;
1328 rq->cmd_len = 10;
1329 return BLKPREP_OK;
1330}
1331
1332/*
1333 * Most of the SCSI commands are supported directly by ATAPI devices.
1334 * This transform handles the few exceptions.
1335 */
1336static int ide_cdrom_prep_pc(struct request *rq)
1337{
1338 u8 *c = rq->cmd;
1339
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001340 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (c[0] == READ_6 || c[0] == WRITE_6) {
1342 c[8] = c[4];
1343 c[5] = c[3];
1344 c[4] = c[2];
1345 c[3] = c[1] & 0x1f;
1346 c[2] = 0;
1347 c[1] &= 0xe0;
1348 c[0] += (READ_10 - READ_6);
1349 rq->cmd_len = 10;
1350 return BLKPREP_OK;
1351 }
1352
1353 /*
1354 * it's silly to pretend we understand 6-byte sense commands, just
1355 * reject with ILLEGAL_REQUEST and the caller should take the
1356 * appropriate action
1357 */
1358 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1359 rq->errors = ILLEGAL_REQUEST;
1360 return BLKPREP_KILL;
1361 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return BLKPREP_OK;
1364}
1365
Jens Axboe165125e2007-07-24 09:28:11 +02001366static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001368 if (blk_fs_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return ide_cdrom_prep_fs(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001370 else if (blk_pc_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return ide_cdrom_prep_pc(rq);
1372
1373 return 0;
1374}
1375
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001376struct cd_list_entry {
1377 const char *id_model;
1378 const char *id_firmware;
1379 unsigned int cd_flags;
1380};
1381
Borislav Petkov5e657a92008-04-26 22:25:15 +02001382#ifdef CONFIG_IDE_PROC_FS
1383static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1384{
1385 unsigned long capacity, sectors_per_frame;
1386
1387 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1388 return 0;
1389
1390 return capacity * sectors_per_frame;
1391}
1392
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001393static int idecd_capacity_proc_show(struct seq_file *m, void *v)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001394{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001395 ide_drive_t *drive = m->private;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001396
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001397 seq_printf(m, "%llu\n", (long long)ide_cdrom_capacity(drive));
1398 return 0;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001399}
1400
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001401static int idecd_capacity_proc_open(struct inode *inode, struct file *file)
1402{
1403 return single_open(file, idecd_capacity_proc_show, PDE(inode)->data);
1404}
1405
1406static const struct file_operations idecd_capacity_proc_fops = {
1407 .owner = THIS_MODULE,
1408 .open = idecd_capacity_proc_open,
1409 .read = seq_read,
1410 .llseek = seq_lseek,
1411 .release = single_release,
1412};
1413
Borislav Petkov5e657a92008-04-26 22:25:15 +02001414static ide_proc_entry_t idecd_proc[] = {
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001415 { "capacity", S_IFREG|S_IRUGO, &idecd_capacity_proc_fops },
1416 {}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001417};
1418
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001419static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1420{
1421 return idecd_proc;
1422}
1423
1424static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1425{
Bartlomiej Zolnierkiewicz519d6802008-12-29 20:27:38 +01001426 return NULL;
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001427}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001428#endif
1429
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001430static const struct cd_list_entry ide_cd_quirks_list[] = {
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001431 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001432 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001433 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001434 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1435 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001436 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001437 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001438 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001439 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001440 /*
1441 * Sanyo 3 CD changer uses a non-standard command for CD changing
1442 * (by default standard ATAPI support for CD changers is used).
1443 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001444 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1445 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1446 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001447 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001448 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001449 /*
1450 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1451 * mode sense page capabilities size, but older drives break.
1452 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001453 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1454 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001455 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001456 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001457 /*
1458 * Some drives used by Apple don't advertise audio play
1459 * but they do support reading TOC & audio datas.
1460 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001461 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1462 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1463 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1464 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1465 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001466 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001467 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Márton Németh64c2eae2008-10-23 23:22:09 +02001468 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001469 { NULL, NULL, 0 }
1470};
1471
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001472static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001473{
1474 const struct cd_list_entry *cle = ide_cd_quirks_list;
1475
1476 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001477 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001478 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001479 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001480 return cle->cd_flags;
1481 cle++;
1482 }
1483
1484 return 0;
1485}
1486
Borislav Petkove5e076a2008-04-26 22:25:15 +02001487static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001489 struct cdrom_info *cd = drive->driver_data;
1490 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001491 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001492 u16 *id = drive->id;
1493 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 int nslots;
1495
Borislav Petkov088b1b82009-01-02 13:34:47 +01001496 ide_debug_log(IDE_DBG_PROBE, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001497
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001498 blk_queue_prep_rq(q, ide_cdrom_prep_fn);
1499 blk_queue_dma_alignment(q, 31);
1500 blk_queue_update_dma_pad(q, 15);
1501
1502 q->unplug_delay = max((1 * HZ) / 1000, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +02001504 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1505 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Borislav Petkov570f89e2008-07-23 19:56:02 +02001507 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001508 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001509 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1510 IDE_AFLAG_TOCADDR_AS_BCD);
1511 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001512 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001513 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1514 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001515 /* 3 => use CD in slot 0 */
1516 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001518 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Martin K. Petersene1defc42009-05-22 17:17:49 -04001520 blk_queue_logical_block_size(q, CD_FRAMESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001523 printk(KERN_ERR PFX "%s: %s failed to register device with the"
Borislav Petkov83c85652008-04-26 22:25:15 +02001524 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001525 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return 1;
1527 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001528
1529 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 return 0;
1531}
1532
Russell King4031bbe2006-01-06 11:41:00 +00001533static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 struct cdrom_info *info = drive->driver_data;
1536
Borislav Petkov088b1b82009-01-02 13:34:47 +01001537 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001538
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001539 ide_proc_unregister_driver(drive, info->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001540 device_del(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 del_gendisk(info->disk);
1542
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001543 mutex_lock(&idecd_ref_mutex);
1544 put_device(&info->dev);
1545 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001548static void ide_cd_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001550 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 struct cdrom_device_info *devinfo = &info->devinfo;
1552 ide_drive_t *drive = info->drive;
1553 struct gendisk *g = info->disk;
1554
Borislav Petkov088b1b82009-01-02 13:34:47 +01001555 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001556
Jesper Juhl6044ec82005-11-07 01:01:32 -08001557 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001558 if (devinfo->handle == drive)
1559 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 drive->driver_data = NULL;
1561 blk_queue_prep_rq(drive->queue, NULL);
1562 g->private_data = NULL;
1563 put_disk(g);
1564 kfree(info);
1565}
1566
Russell King4031bbe2006-01-06 11:41:00 +00001567static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001569static struct ide_driver ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001570 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001571 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001572 .name = "ide-cdrom",
1573 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001574 },
Russell King4031bbe2006-01-06 11:41:00 +00001575 .probe = ide_cd_probe,
1576 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 .version = IDECD_VERSION,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001578 .do_request = ide_cd_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001579#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001580 .proc_entries = ide_cd_proc_entries,
1581 .proc_devsets = ide_cd_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001582#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583};
1584
Al Viro488ca602008-03-02 10:26:23 -05001585static int idecd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Al Viro488ca602008-03-02 10:26:23 -05001587 struct cdrom_info *info = ide_cd_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 int rc = -ENOMEM;
1589
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001590 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return -ENXIO;
1592
Al Viro488ca602008-03-02 10:26:23 -05001593 rc = cdrom_open(&info->devinfo, bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 if (rc < 0)
1596 ide_cd_put(info);
1597
1598 return rc;
1599}
1600
Al Viro488ca602008-03-02 10:26:23 -05001601static int idecd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001603 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Al Viro488ca602008-03-02 10:26:23 -05001605 cdrom_release(&info->devinfo, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 ide_cd_put(info);
1608
1609 return 0;
1610}
1611
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001612static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1613{
1614 struct packet_command cgc;
1615 char buffer[16];
1616 int stat;
1617 char spindown;
1618
1619 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1620 return -EFAULT;
1621
1622 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1623
1624 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1625 if (stat)
1626 return stat;
1627
1628 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1629 return cdrom_mode_select(cdi, &cgc);
1630}
1631
1632static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1633{
1634 struct packet_command cgc;
1635 char buffer[16];
1636 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001637 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001638
1639 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1640
1641 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1642 if (stat)
1643 return stat;
1644
1645 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001646 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001647 return -EFAULT;
1648 return 0;
1649}
1650
Al Viro488ca602008-03-02 10:26:23 -05001651static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 unsigned int cmd, unsigned long arg)
1653{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001654 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 int err;
1656
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001657 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001658 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001659 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001660 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001661 return idecd_get_spindown(&info->devinfo, arg);
1662 default:
1663 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001664 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001665
Al Viro1bddd9e2008-09-02 17:19:43 -04001666 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (err == -EINVAL)
Al Viro488ca602008-03-02 10:26:23 -05001668 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 return err;
1671}
1672
1673static int idecd_media_changed(struct gendisk *disk)
1674{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001675 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return cdrom_media_changed(&info->devinfo);
1677}
1678
1679static int idecd_revalidate_disk(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 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001683
1684 ide_cd_read_toc(info->drive, &sense);
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 return 0;
1687}
1688
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001689static const struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001690 .owner = THIS_MODULE,
Al Viro488ca602008-03-02 10:26:23 -05001691 .open = idecd_open,
1692 .release = idecd_release,
1693 .locked_ioctl = idecd_ioctl,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001694 .media_changed = idecd_media_changed,
1695 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696};
1697
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001698/* module options */
Borislav Petkov35d9b172008-10-13 21:39:49 +02001699static unsigned long debug_mask;
1700module_param(debug_mask, ulong, 0644);
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1703
Russell King4031bbe2006-01-06 11:41:00 +00001704static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 struct cdrom_info *info;
1707 struct gendisk *g;
1708 struct request_sense sense;
1709
Borislav Petkov088b1b82009-01-02 13:34:47 +01001710 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1711 drive->driver_req, drive->media);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (!strstr("ide-cdrom", drive->driver_req))
1714 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 if (drive->media != ide_cdrom && drive->media != ide_optical)
1717 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001718
Borislav Petkov35d9b172008-10-13 21:39:49 +02001719 drive->debug_mask = debug_mask;
Borislav Petkovd6251d42009-01-06 17:20:58 +01001720 drive->irq_handler = cdrom_newpc_intr;
Borislav Petkov35d9b172008-10-13 21:39:49 +02001721
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08001722 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (info == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001724 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001725 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 goto failed;
1727 }
1728
1729 g = alloc_disk(1 << PARTN_BITS);
1730 if (!g)
1731 goto out_free_cd;
1732
1733 ide_init_disk(g, drive);
1734
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001735 info->dev.parent = &drive->gendev;
1736 info->dev.release = ide_cd_release;
1737 dev_set_name(&info->dev, dev_name(&drive->gendev));
1738
1739 if (device_register(&info->dev))
1740 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 info->drive = drive;
1743 info->driver = &ide_cdrom_driver;
1744 info->disk = g;
1745
1746 g->private_data = &info->driver;
1747
1748 drive->driver_data = info;
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 g->driverfs_dev = &drive->gendev;
1752 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1753 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001754 put_device(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto failed;
1756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001758 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 g->fops = &idecd_ops;
1760 g->flags |= GENHD_FL_REMOVABLE;
1761 add_disk(g);
1762 return 0;
1763
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001764out_free_disk:
1765 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766out_free_cd:
1767 kfree(info);
1768failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001769 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
1772static void __exit ide_cdrom_exit(void)
1773{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001774 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01001776
1777static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001779 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001780 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782
Kay Sievers263756e2005-12-12 18:03:44 +01001783MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01001784MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785module_init(ide_cdrom_init);
1786module_exit(ide_cdrom_exit);
1787MODULE_LICENSE("GPL");