blob: 6a9a769bffc1993736064c54570aeeeef0c1b989 [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>
33#include <linux/slab.h>
34#include <linux/interrupt.h>
35#include <linux/errno.h>
36#include <linux/cdrom.h>
37#include <linux/ide.h>
38#include <linux/completion.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080039#include <linux/mutex.h>
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +010040#include <linux/bcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020042/* For SCSI -> ATAPI command conversion */
43#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Borislav Petkov9aba4682008-04-26 22:25:15 +020045#include <linux/irq.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/byteorder.h>
Borislav Petkov9aba4682008-04-26 22:25:15 +020048#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/unaligned.h>
50
51#include "ide-cd.h"
52
Arjan van de Vencf8b8972006-03-23 03:00:45 -080053static DEFINE_MUTEX(idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010055static void ide_cd_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct cdrom_info *ide_cd_get(struct gendisk *disk)
58{
59 struct cdrom_info *cd = NULL;
60
Arjan van de Vencf8b8972006-03-23 03:00:45 -080061 mutex_lock(&idecd_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +020062 cd = ide_drv_g(disk, cdrom_info);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020063 if (cd) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020064 if (ide_device_get(cd->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020065 cd = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020066 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010067 get_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020068
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020069 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -080070 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return cd;
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static void ide_cd_put(struct cdrom_info *cd)
75{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020076 ide_drive_t *drive = cd->drive;
77
Arjan van de Vencf8b8972006-03-23 03:00:45 -080078 mutex_lock(&idecd_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010079 put_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020080 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080081 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * Generic packet command support and error handling routines.
86 */
87
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020088/* Mark that we've seen a media change and invalidate our internal buffers. */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020089static void cdrom_saw_media_change(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +020091 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
Borislav Petkov570f89e2008-07-23 19:56:02 +020092 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Borislav Petkov239f7e252009-04-23 08:30:29 +020095static int cdrom_log_sense(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Borislav Petkov239f7e252009-04-23 08:30:29 +020097 struct request_sense *sense = &drive->sense_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 int log = 0;
99
Jens Axboe4aff5e22006-08-10 08:44:47 +0200100 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 0;
102
Borislav Petkov239f7e252009-04-23 08:30:29 +0200103 ide_debug_log(IDE_DBG_SENSE, "sense_key: 0x%x", sense->sense_key);
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 switch (sense->sense_key) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200106 case NO_SENSE:
107 case RECOVERED_ERROR:
108 break;
109 case NOT_READY:
110 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200111 * don't care about tray state messages for e.g. capacity
112 * commands or in-progress or becoming ready
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200113 */
114 if (sense->asc == 0x3a || sense->asc == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200116 log = 1;
117 break;
118 case ILLEGAL_REQUEST:
119 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200120 * don't log START_STOP unit with LoEj set, since we cannot
121 * reliably check if drive can auto-close
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200122 */
123 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200125 log = 1;
126 break;
127 case UNIT_ATTENTION:
128 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200129 * Make good and sure we've seen this potential media change.
130 * Some drives (i.e. Creative) fail to present the correct sense
131 * key in the error register.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200132 */
133 cdrom_saw_media_change(drive);
134 break;
135 default:
136 log = 1;
137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 return log;
140}
141
Borislav Petkove5e076a2008-04-26 22:25:15 +0200142static void cdrom_analyze_sense_data(ide_drive_t *drive,
Borislav Petkov239f7e252009-04-23 08:30:29 +0200143 struct request *failed_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Borislav Petkov239f7e252009-04-23 08:30:29 +0200145 struct request_sense *sense = &drive->sense_data;
146 struct cdrom_info *info = drive->driver_data;
Alan Coxdbe217a2006-06-25 05:47:44 -0700147 unsigned long sector;
148 unsigned long bio_sectors;
Alan Coxdbe217a2006-06-25 05:47:44 -0700149
Borislav Petkov088b1b82009-01-02 13:34:47 +0100150 ide_debug_log(IDE_DBG_SENSE, "error_code: 0x%x, sense_key: 0x%x",
151 sense->error_code, sense->sense_key);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200152
153 if (failed_command)
Borislav Petkov088b1b82009-01-02 13:34:47 +0100154 ide_debug_log(IDE_DBG_SENSE, "failed cmd: 0x%x",
155 failed_command->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200156
Borislav Petkov239f7e252009-04-23 08:30:29 +0200157 if (!cdrom_log_sense(drive, failed_command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return;
159
160 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200161 * If a read toc is executed for a CD-R or CD-RW medium where the first
162 * toc has not been recorded yet, it will fail with 05/24/00 (which is a
163 * confusing error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
165 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
166 if (sense->sense_key == 0x05 && sense->asc == 0x24)
167 return;
168
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200169 /* current error */
170 if (sense->error_code == 0x70) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200171 switch (sense->sense_key) {
Alan Coxdbe217a2006-06-25 05:47:44 -0700172 case MEDIUM_ERROR:
173 case VOLUME_OVERFLOW:
174 case ILLEGAL_REQUEST:
175 if (!sense->valid)
176 break;
177 if (failed_command == NULL ||
178 !blk_fs_request(failed_command))
179 break;
180 sector = (sense->information[0] << 24) |
181 (sense->information[1] << 16) |
182 (sense->information[2] << 8) |
183 (sense->information[3]);
184
Martin K. Petersene1defc42009-05-22 17:17:49 -0400185 if (queue_logical_block_size(drive->queue) == 2048)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200186 /* device sector size is 2K */
187 sector <<= 2;
Roel Kluineee49292008-04-28 23:44:43 +0200188
189 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200190 sector &= ~(bio_sectors - 1);
Alan Coxdbe217a2006-06-25 05:47:44 -0700191
Bartlomiej Zolnierkiewiczd3dd7102009-02-25 20:28:23 +0100192 /*
193 * The SCSI specification allows for the value
194 * returned by READ CAPACITY to be up to 75 2K
195 * sectors past the last readable block.
196 * Therefore, if we hit a medium error within the
197 * last 75 2K sectors, we decrease the saved size
198 * value.
199 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700200 if (sector < get_capacity(info->disk) &&
Borislav Petkove5e076a2008-04-26 22:25:15 +0200201 drive->probed_capacity - sector < 4 * 75)
Alan Coxdbe217a2006-06-25 05:47:44 -0700202 set_capacity(info->disk, sector);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200203 }
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100206 ide_cd_log_error(drive->name, failed_command, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200209static void ide_cd_complete_failed_rq(ide_drive_t *drive, struct request *rq)
210{
211 /*
Tejun Heo1f181d22009-04-19 07:00:42 +0900212 * For REQ_TYPE_SENSE, "rq->special" points to the original
Tejun Heo02e7cf82009-04-19 07:00:42 +0900213 * failed request. Also, the sense data should be read
214 * directly from rq which might be different from the original
215 * sense buffer if it got copied during mapping.
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200216 */
Tejun Heo1f181d22009-04-19 07:00:42 +0900217 struct request *failed = (struct request *)rq->special;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900218 void *sense = bio_data(rq->bio);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200219
220 if (failed) {
221 if (failed->sense) {
Borislav Petkovc457ce82009-04-19 07:00:42 +0900222 /*
223 * Sense is always read into drive->sense_data.
224 * Copy back if the failed request has its
225 * sense pointer set.
226 */
227 memcpy(failed->sense, sense, 18);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200228 failed->sense_len = rq->sense_len;
229 }
Borislav Petkov239f7e252009-04-23 08:30:29 +0200230 cdrom_analyze_sense_data(drive, failed);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200231
232 if (ide_end_rq(drive, failed, -EIO, blk_rq_bytes(failed)))
233 BUG();
234 } else
Borislav Petkov239f7e252009-04-23 08:30:29 +0200235 cdrom_analyze_sense_data(drive, NULL);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200236}
237
Borislav Petkov805ec582009-04-08 14:12:52 +0200238
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200239/*
Borislav Petkov805ec582009-04-08 14:12:52 +0200240 * Allow the drive 5 seconds to recover; some devices will return NOT_READY
241 * while flushing data from cache.
242 *
243 * returns: 0 failed (write timeout expired)
244 * 1 success
245 */
246static int ide_cd_breathe(ide_drive_t *drive, struct request *rq)
247{
248
249 struct cdrom_info *info = drive->driver_data;
250
251 if (!rq->errors)
252 info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY;
253
254 rq->errors = 1;
255
256 if (time_after(jiffies, info->write_timeout))
257 return 0;
258 else {
259 struct request_queue *q = drive->queue;
260 unsigned long flags;
261
262 /*
263 * take a breather relying on the unplug timer to kick us again
264 */
265
266 spin_lock_irqsave(q->queue_lock, flags);
267 blk_plug_device(q);
268 spin_unlock_irqrestore(q->queue_lock, flags);
269
270 return 1;
271 }
272}
273
274/**
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200275 * Returns:
276 * 0: if the request should be continued.
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200277 * 1: if the request will be going through error recovery.
278 * 2: if the request should be ended.
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200279 */
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200280static int cdrom_decode_status(ide_drive_t *drive, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200282 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100283 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200284 int err, sense_key, do_end_request = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200286 /* get the IDE error register */
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100287 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 sense_key = err >> 4;
289
Borislav Petkov98036ab2009-04-08 14:12:53 +0200290 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, rq->cmd_type: 0x%x, err: 0x%x, "
291 "stat 0x%x",
292 rq->cmd[0], rq->cmd_type, err, stat);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200293
Jens Axboe4aff5e22006-08-10 08:44:47 +0200294 if (blk_sense_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200295 /*
296 * We got an error trying to get sense info from the drive
297 * (probably while trying to recover from a former error).
298 * Just give up.
299 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200300 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200301 return 2;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200304 /* if we have an error, pass CHECK_CONDITION as the SCSI status byte */
305 if (blk_pc_request(rq) && !rq->errors)
306 rq->errors = SAM_STAT_CHECK_CONDITION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200308 if (blk_noretry_request(rq))
309 do_end_request = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200311 switch (sense_key) {
312 case NOT_READY:
Borislav Petkov3c8a48e2009-04-08 14:13:03 +0200313 if (blk_fs_request(rq) && rq_data_dir(rq) == WRITE) {
314 if (ide_cd_breathe(drive, rq))
315 return 1;
316 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +0200317 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Borislav Petkov96c16742009-04-30 18:24:34 +0200319 if (blk_fs_request(rq) && !blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200320 printk(KERN_ERR PFX "%s: tray open\n",
321 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200323 do_end_request = 1;
324 break;
325 case UNIT_ATTENTION:
326 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200328 if (blk_fs_request(rq) == 0)
329 return 0;
330
331 /*
332 * Arrange to retry the request but be sure to give up if we've
333 * retried too many times.
334 */
335 if (++rq->errors > ERROR_MAX)
Bartlomiej Zolnierkiewicz1920c482009-04-08 14:12:54 +0200336 do_end_request = 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200337 break;
338 case ILLEGAL_REQUEST:
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200339 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200340 * Don't print error message for this condition -- SFF8090i
341 * indicates that 5/24/00 is the correct response to a request
342 * to close the tray if the drive doesn't have that capability.
343 *
344 * cdrom_log_sense() knows this!
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200345 */
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200346 if (rq->cmd[0] == GPCMD_START_STOP_UNIT)
347 break;
348 /* fall-through */
349 case DATA_PROTECT:
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100350 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200351 * No point in retrying after an illegal request or data
352 * protect error.
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100353 */
Borislav Petkov96c16742009-04-30 18:24:34 +0200354 if (!blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200355 ide_dump_status(drive, "command error", stat);
356 do_end_request = 1;
357 break;
358 case MEDIUM_ERROR:
359 /*
360 * No point in re-trying a zillion times on a bad sector.
361 * If we got here the error is not correctable.
362 */
Borislav Petkov96c16742009-04-30 18:24:34 +0200363 if (!blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200364 ide_dump_status(drive, "media error "
365 "(bad sector)", stat);
366 do_end_request = 1;
367 break;
368 case BLANK_CHECK:
369 /* disk appears blank? */
Borislav Petkov96c16742009-04-30 18:24:34 +0200370 if (!blk_rq_quiet(rq))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200371 ide_dump_status(drive, "media error (blank)",
372 stat);
373 do_end_request = 1;
374 break;
375 default:
376 if (blk_fs_request(rq) == 0)
377 break;
378 if (err & ~ATA_ABORTED) {
379 /* go to the default handler for other errors */
380 ide_error(drive, "cdrom_decode_status", stat);
381 return 1;
382 } else if (++rq->errors > ERROR_MAX)
383 /* we've racked up too many retries, abort */
384 do_end_request = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200387 if (blk_fs_request(rq) == 0) {
388 rq->cmd_flags |= REQ_FAILED;
389 do_end_request = 1;
390 }
391
392 /*
393 * End a request through request sense analysis when we have sense data.
394 * We need this in order to perform end of media processing.
395 */
396 if (do_end_request)
397 goto end_request;
398
399 /* if we got a CHECK_CONDITION status, queue a request sense command */
400 if (stat & ATA_ERR)
Tejun Heo02e7cf82009-04-19 07:00:42 +0900401 return ide_queue_sense_rq(drive, NULL) ? 2 : 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200402 return 1;
403
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100404end_request:
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200405 if (stat & ATA_ERR) {
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100406 hwif->rq = NULL;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900407 return ide_queue_sense_rq(drive, rq) ? 2 : 1;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100408 } else
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200409 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200412static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100413{
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200414 struct request *rq = cmd->rq;
415
Borislav Petkov088b1b82009-01-02 13:34:47 +0100416 ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200417
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100418 /*
419 * Some of the trailing request sense fields are optional,
420 * and some drives don't send them. Sigh.
421 */
422 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
Tejun Heo59a4f6f2009-04-19 07:00:41 +0900423 cmd->nleft > 0 && cmd->nleft <= 5)
424 cmd->nleft = 0;
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100425}
426
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200427int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
428 int write, void *buffer, unsigned *bufflen,
429 struct request_sense *sense, int timeout,
430 unsigned int cmd_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200432 struct cdrom_info *info = drive->driver_data;
433 struct request_sense local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int retries = 10;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200435 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200437 if (!sense)
438 sense = &local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Borislav Petkov088b1b82009-01-02 13:34:47 +0100440 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
441 "cmd_flags: 0x%x",
442 cmd[0], write, timeout, cmd_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200443
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200444 /* start of retry loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 do {
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200446 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200449 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
450
451 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
452 rq->cmd_type = REQ_TYPE_ATA_PC;
453 rq->sense = sense;
454 rq->cmd_flags |= cmd_flags;
455 rq->timeout = timeout;
456 if (buffer) {
Tejun Heo02e7cf82009-04-19 07:00:42 +0900457 error = blk_rq_map_kern(drive->queue, rq, buffer,
458 *bufflen, GFP_NOIO);
459 if (error) {
460 blk_put_request(rq);
461 return error;
462 }
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200463 }
464
465 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
466
467 if (buffer)
Tejun Heoc3a4d782009-05-07 22:24:37 +0900468 *bufflen = rq->resid_len;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200469
470 flags = rq->cmd_flags;
471 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200473 /*
474 * FIXME: we should probably abort/retry or something in case of
475 * failure.
476 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200477 if (flags & REQ_FAILED) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200478 /*
479 * The request failed. Retry if it was due to a unit
480 * attention status (usually means media was changed).
481 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200482 struct request_sense *reqbuf = sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if (reqbuf->sense_key == UNIT_ATTENTION)
485 cdrom_saw_media_change(drive);
486 else if (reqbuf->sense_key == NOT_READY &&
487 reqbuf->asc == 4 && reqbuf->ascq != 4) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200488 /*
489 * The drive is in the process of loading
490 * a disk. Retry, but wait a little to give
491 * the drive time to complete the load.
492 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 ssleep(2);
494 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200495 /* otherwise, don't retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 retries = 0;
497 }
498 --retries;
499 }
500
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200501 /* end of retry loop */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200502 } while ((flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200504 /* return an error if the command failed */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200505 return (flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200508static void ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
509{
510 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
511
512 if (cmd->tf_flags & IDE_TFLAG_WRITE)
513 nr_bytes -= cmd->last_xfer_len;
514
515 if (nr_bytes > 0)
516 ide_complete_rq(drive, 0, nr_bytes);
517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
520{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200521 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200522 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100523 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100524 ide_expiry_t *expiry = NULL;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200525 int dma_error = 0, dma, thislen, uptodate = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900526 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200527 int sense = blk_sense_request(rq);
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100528 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200529 u16 len;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200530 u8 ireason, stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Borislav Petkov98036ab2009-04-08 14:12:53 +0200532 ide_debug_log(IDE_DBG_PC, "cmd: 0x%x, write: 0x%x", rq->cmd[0], write);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200533
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200534 /* check for errors */
Borislav Petkov12469ac2008-10-13 21:39:49 +0200535 dma = drive->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (dma) {
Borislav Petkov12469ac2008-10-13 21:39:49 +0200537 drive->dma = 0;
Bartlomiej Zolnierkiewicz88b41322009-03-31 20:15:22 +0200538 drive->waiting_for_dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200539 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczf094d4d82009-03-31 20:15:24 +0200540 ide_dma_unmap_sg(drive, cmd);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100541 if (dma_error) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200542 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100543 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100544 ide_dma_off(drive);
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200548 /* check status */
549 stat = hwif->tp_ops->read_status(hwif);
550
551 if (!OK_STAT(stat, 0, BAD_R_STAT)) {
552 rc = cdrom_decode_status(drive, stat);
553 if (rc) {
554 if (rc == 2)
555 goto out_end;
556 return ide_stopped;
557 }
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200560 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100562 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz4a3d8cf2009-03-31 20:15:15 +0200564 uptodate = 1;
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200565 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200568 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100569
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200570 thislen = blk_fs_request(rq) ? len : cmd->nleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (thislen > len)
572 thislen = len;
573
Borislav Petkov088b1b82009-01-02 13:34:47 +0100574 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
575 stat, thislen);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200576
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200577 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200578 if ((stat & ATA_DRQ) == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100579 if (blk_fs_request(rq)) {
580 /*
581 * If we're not done reading/writing, complain.
582 * Otherwise, complete the command normally.
583 */
584 uptodate = 1;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200585 if (cmd->nleft > 0) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200586 printk(KERN_ERR PFX "%s: %s: data underrun "
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200587 "(%u bytes)\n", drive->name, __func__,
588 cmd->nleft);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100589 if (!write)
590 rq->cmd_flags |= REQ_FAILED;
591 uptodate = 0;
592 }
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100593 } else if (!blk_pc_request(rq)) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200594 ide_cd_request_sense_fixup(drive, cmd);
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700595
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200596 uptodate = cmd->nleft ? 0 : 1;
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700597
598 /*
599 * suck out the remaining bytes from the drive in an
600 * attempt to complete the data xfer. (see BZ#13399)
601 */
602 if (!(stat & ATA_ERR) && !uptodate && thislen) {
603 ide_pio_bytes(drive, cmd, write, thislen);
604 uptodate = cmd->nleft ? 0 : 1;
605 }
606
607 if (!uptodate)
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200608 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100609 }
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200610 goto out_end;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Borislav Petkov103f7032009-04-26 10:39:07 +0200613 rc = ide_check_ireason(drive, rq, len, ireason, write);
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200614 if (rc)
615 goto out_end;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100616
Bartlomiej Zolnierkiewicz06a449e2009-03-31 20:15:13 +0200617 cmd->last_xfer_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Borislav Petkov088b1b82009-01-02 13:34:47 +0100619 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
620 "ireason: 0x%x",
621 rq->cmd_type, ireason);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200622
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200623 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 while (thislen > 0) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200625 int blen = min_t(int, thislen, cmd->nleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200627 if (cmd->nleft == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200630 ide_pio_bytes(drive, cmd, write, blen);
631 cmd->last_xfer_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 thislen -= blen;
634 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200636 if (sense && write == 0)
Andreas Schwabbcd88ac2008-02-26 21:50:35 +0100637 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200640 /* pad, if necessary */
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200641 if (len > 0) {
642 if (blk_fs_request(rq) == 0 || write == 0)
643 ide_pad_transfer(drive, write, len);
644 else {
645 printk(KERN_ERR PFX "%s: confused, missing data\n",
646 drive->name);
647 blk_dump_rq_flags(rq, "cdrom_newpc_intr");
648 }
649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100651 if (blk_pc_request(rq)) {
652 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100653 } else {
654 timeout = ATAPI_WAIT_PC;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100655 if (!blk_fs_request(rq))
Borislav Petkov4cad0852009-01-02 16:12:53 +0100656 expiry = ide_cd_expiry;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100657 }
658
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100659 hwif->expiry = expiry;
660 ide_set_handler(drive, cdrom_newpc_intr, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100662
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200663out_end:
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200664 if (blk_pc_request(rq) && rc == 0) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900665 rq->resid_len = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900666 blk_end_request_all(rq, 0);
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100667 hwif->rq = NULL;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100668 } else {
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200669 if (sense && uptodate)
670 ide_cd_complete_failed_rq(drive, rq);
671
672 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200673 if (cmd->nleft == 0)
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200674 uptodate = 1;
675 } else {
676 if (uptodate <= 0 && rq->errors == 0)
677 rq->errors = -EIO;
678 }
679
Rainer Weikusat39c58f32009-06-18 17:04:00 +0200680 if (uptodate == 0 && rq->bio)
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200681 ide_cd_error_cmd(drive, cmd);
682
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200683 /* make sure it's fully ended */
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200684 if (blk_fs_request(rq) == 0) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900685 rq->resid_len -= cmd->nbytes - cmd->nleft;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200686 if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
Tejun Heoc3a4d782009-05-07 22:24:37 +0900687 rq->resid_len += cmd->last_xfer_len;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200688 }
689
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900690 ide_complete_rq(drive, uptodate ? 0 : -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200691
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200692 if (sense && rc == 2)
693 ide_error(drive, "request sense failure", stat);
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100694 }
695 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100698static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100700 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200701 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100702 int write = rq_data_dir(rq) == WRITE;
703 unsigned short sectors_per_frame =
Martin K. Petersene1defc42009-05-22 17:17:49 -0400704 queue_logical_block_size(q) >> SECTOR_BITS;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100705
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200706 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
Borislav Petkov088b1b82009-01-02 13:34:47 +0100707 "secs_per_frame: %u",
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200708 rq->cmd[0], rq->cmd_flags, sectors_per_frame);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200709
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100710 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200711 /* disk has become write protected */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200712 if (get_disk_ro(cd->disk))
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100713 return ide_stopped;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100714 } else {
715 /*
716 * We may be retrying this request after an error. Fix up any
717 * weirdness which might be present in the request packet.
718 */
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200719 q->prep_rq_fn(q, rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200722 /* fs requests *must* be hardware frame aligned */
Tejun Heo9780e2d2009-05-07 22:24:40 +0900723 if ((blk_rq_sectors(rq) & (sectors_per_frame - 1)) ||
724 (blk_rq_pos(rq) & (sectors_per_frame - 1)))
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200725 return ide_stopped;
726
727 /* use DMA, if possible */
728 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100730 if (write)
731 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200733 rq->timeout = ATAPI_WAIT_PC;
734
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200735 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200738static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Borislav Petkov088b1b82009-01-02 13:34:47 +0100741 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
742 rq->cmd[0], rq->cmd_type);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200743
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100744 if (blk_pc_request(rq))
745 rq->cmd_flags |= REQ_QUIET;
746 else
747 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Borislav Petkov12469ac2008-10-13 21:39:49 +0200749 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200751 /* sg request */
Tejun Heo02e7cf82009-04-19 07:00:42 +0900752 if (rq->bio) {
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200753 struct request_queue *q = drive->queue;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900754 char *buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200755 unsigned int alignment;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200756
Borislav Petkov12469ac2008-10-13 21:39:49 +0200757 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /*
760 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -0700761 *
762 * NOTE! The "len" and "addr" checks should possibly have
763 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200765 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Borislav Petkov9bd27cb2008-11-02 21:40:07 +0100766 if ((unsigned long)buf & alignment
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900767 || blk_rq_bytes(rq) & q->dma_pad_mask
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200768 || object_is_on_stack(buf))
Borislav Petkov12469ac2008-10-13 21:39:49 +0200769 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Borislav Petkov99384ae2008-07-16 20:33:45 +0200773static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +0200774 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100776 struct ide_cmd cmd;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200777 int uptodate = 0, nsectors;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100778
Borislav Petkov088b1b82009-01-02 13:34:47 +0100779 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
780 rq->cmd[0], (unsigned long long)block);
781
782 if (drive->debug_mask & IDE_DBG_RQ)
783 blk_dump_rq_flags(rq, "ide_cd_do_request");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200786 if (cdrom_start_rw(drive, rq) == ide_stopped)
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200787 goto out_end;
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100788 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
Jens Axboecea28852006-10-12 15:08:45 +0200789 rq->cmd_type == REQ_TYPE_ATA_PC) {
Borislav Petkov7fcebda2008-07-16 20:33:46 +0200790 if (!rq->timeout)
791 rq->timeout = ATAPI_WAIT_PC;
792
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200793 cdrom_do_block_pc(drive, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200794 } else if (blk_special_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200795 /* right now this can only be a reset... */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200796 uptodate = 1;
797 goto out_end;
Bartlomiej Zolnierkiewicz2c7eaa42009-06-15 22:16:10 +0200798 } else
799 BUG();
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200800
Borislav Petkovc457ce82009-04-19 07:00:42 +0900801 /* prepare sense request for this command */
802 ide_prep_sense(drive, rq);
803
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100804 memset(&cmd, 0, sizeof(cmd));
805
806 if (rq_data_dir(rq))
807 cmd.tf_flags |= IDE_TFLAG_WRITE;
808
809 cmd.rq = rq;
810
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900811 if (blk_fs_request(rq) || blk_rq_bytes(rq)) {
812 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200813 ide_map_sg(drive, &cmd);
814 }
815
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100816 return ide_issue_pc(drive, &cmd);
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200817out_end:
Tejun Heo5b936292009-05-07 22:24:38 +0900818 nsectors = blk_rq_sectors(rq);
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200819
820 if (nsectors == 0)
821 nsectors = 1;
822
823 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
824
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200825 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200828/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 * Ioctl handling.
830 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200831 * Routines which queue packet commands take as a final argument a pointer to a
832 * request_sense struct. If execution of the command results in an error with a
833 * CHECK CONDITION status, this structure will be filled with the results of the
834 * subsequent request sense command. The pointer can also be NULL, in which case
835 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200837static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Adrian Bunkfc99856a2008-08-18 21:40:04 +0200839 msf->minute = bcd2bin(msf->minute);
840 msf->second = bcd2bin(msf->second);
841 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Borislav Petkovf9afd182008-02-01 23:09:29 +0100844int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct cdrom_info *info = drive->driver_data;
847 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200848 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Borislav Petkov088b1b82009-01-02 13:34:47 +0100850 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200851
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200852 memset(cmd, 0, BLK_MAX_CDB);
853 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100855 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200856 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
857 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100858 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200859 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Harvey Harrison141d3b22008-07-23 19:56:02 +0200861 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
865 unsigned long *sectors_per_frame,
866 struct request_sense *sense)
867{
868 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +0200869 __be32 lba;
870 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 } capbuf;
872
873 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200874 unsigned char cmd[BLK_MAX_CDB];
875 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +0200876 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Borislav Petkov088b1b82009-01-02 13:34:47 +0100878 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200879
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200880 memset(cmd, 0, BLK_MAX_CDB);
881 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200883 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
884 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200885 if (stat)
886 return stat;
887
888 /*
David S. Milleraf054ed2009-06-23 16:01:06 -0700889 * Sanity check the given block size, in so far as making
890 * sure the sectors_per_frame we give to the caller won't
891 * end up being bogus.
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200892 */
Petr Tesarik938bb032008-08-05 18:17:02 +0200893 blocklen = be32_to_cpu(capbuf.blocklen);
David S. Milleraf054ed2009-06-23 16:01:06 -0700894 blocklen = (blocklen >> SECTOR_BITS) << SECTOR_BITS;
Petr Tesarik938bb032008-08-05 18:17:02 +0200895 switch (blocklen) {
896 case 512:
897 case 1024:
898 case 2048:
899 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200900 break;
901 default:
Frans Popd9ae6242009-06-23 16:02:58 -0700902 printk_once(KERN_ERR PFX "%s: weird block size %u; "
903 "setting default block size to 2048\n",
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200904 drive->name, blocklen);
Petr Tesarik938bb032008-08-05 18:17:02 +0200905 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200906 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200909 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +0200910 *sectors_per_frame = blocklen >> SECTOR_BITS;
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200911
Borislav Petkov088b1b82009-01-02 13:34:47 +0100912 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
913 *capacity, *sectors_per_frame);
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200914
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200915 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
919 int format, char *buf, int buflen,
920 struct request_sense *sense)
921{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200922 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Borislav Petkov088b1b82009-01-02 13:34:47 +0100924 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200925
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200926 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200928 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
929 cmd[6] = trackno;
930 cmd[7] = (buflen >> 8);
931 cmd[8] = (buflen & 0xff);
932 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200935 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200937 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100941int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 int stat, ntracks, i;
944 struct cdrom_info *info = drive->driver_data;
945 struct cdrom_device_info *cdi = &info->devinfo;
946 struct atapi_toc *toc = info->toc;
947 struct {
948 struct atapi_toc_header hdr;
949 struct atapi_toc_entry ent;
950 } ms_tmp;
951 long last_written;
952 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
953
Borislav Petkov088b1b82009-01-02 13:34:47 +0100954 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200957 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800958 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (toc == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200960 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
Borislav Petkov83c85652008-04-26 22:25:15 +0200961 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return -ENOMEM;
963 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800964 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200967 /*
968 * Check to see if the existing data is still valid. If it is,
969 * just return.
970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 (void) cdrom_check_status(drive, sense);
972
Borislav Petkov570f89e2008-07-23 19:56:02 +0200973 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return 0;
975
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200976 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
978 sense);
979 if (stat)
980 toc->capacity = 0x1fffff;
981
982 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200983 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -0700984 drive->probed_capacity = toc->capacity * sectors_per_frame;
985
Martin K. Petersene1defc42009-05-22 17:17:49 -0400986 blk_queue_logical_block_size(drive->queue,
987 sectors_per_frame << SECTOR_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200989 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
991 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800992 if (stat)
993 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Borislav Petkov570f89e2008-07-23 19:56:02 +0200995 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +0200996 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
997 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1001 if (ntracks <= 0)
1002 return -EIO;
1003 if (ntracks > MAX_TRACKS)
1004 ntracks = MAX_TRACKS;
1005
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001006 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1008 (char *)&toc->hdr,
1009 sizeof(struct atapi_toc_header) +
1010 (ntracks + 1) *
1011 sizeof(struct atapi_toc_entry), sense);
1012
1013 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001014 /*
1015 * Cds with CDI tracks only don't have any TOC entries, despite
1016 * of this the returned values are
1017 * first_track == last_track = number of CDI tracks + 1,
1018 * so that this case is indistinguishable from the same layout
1019 * plus an additional audio track. If we get an error for the
1020 * regular case, we assume a CDI without additional audio
1021 * tracks. In this case the readable TOC is empty (CDI tracks
1022 * are not included) and only holds the Leadout entry.
1023 *
1024 * Heiko Eißfeldt.
1025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 ntracks = 0;
1027 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1028 (char *)&toc->hdr,
1029 sizeof(struct atapi_toc_header) +
1030 (ntracks + 1) *
1031 sizeof(struct atapi_toc_entry),
1032 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001033 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001035
Borislav Petkov570f89e2008-07-23 19:56:02 +02001036 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001037 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1038 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001039 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 toc->hdr.first_track = CDROM_LEADOUT;
1041 toc->hdr.last_track = CDROM_LEADOUT;
1042 }
1043 }
1044
1045 if (stat)
1046 return stat;
1047
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001048 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Borislav Petkov570f89e2008-07-23 19:56:02 +02001050 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001051 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1052 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001055 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001056 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1057 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001058 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 msf_from_bcd(&toc->ent[i].addr.msf);
1060 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001061 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1062 toc->ent[i].addr.msf.second,
1063 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001067 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1069 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001070 if (stat)
1071 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1074 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001075 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1076 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1078 }
1079
Borislav Petkov570f89e2008-07-23 19:56:02 +02001080 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001081 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1083 sizeof(ms_tmp), sense);
1084 if (stat)
1085 return stat;
1086
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001087 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001089 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 ms_tmp.ent.addr.msf.frame);
1091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1094
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001095 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 stat = cdrom_get_last_written(cdi, &last_written);
1097 if (!stat && (last_written > toc->capacity)) {
1098 toc->capacity = last_written;
1099 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001100 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102
1103 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001104 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 return 0;
1107}
1108
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001109int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001110{
1111 struct cdrom_info *info = drive->driver_data;
1112 struct cdrom_device_info *cdi = &info->devinfo;
1113 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001114 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001115
Borislav Petkov088b1b82009-01-02 13:34:47 +01001116 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001117
Borislav Petkov570f89e2008-07-23 19:56:02 +02001118 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001119 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001120
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001121 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001122 do {
1123 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001124 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1125 if (!stat)
1126 break;
1127 } while (--attempts);
1128 return stat;
1129}
1130
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001131void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001132{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001133 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001134 u16 curspeed, maxspeed;
1135
Borislav Petkov088b1b82009-01-02 13:34:47 +01001136 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001137
Borislav Petkov570f89e2008-07-23 19:56:02 +02001138 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001139 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1140 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001141 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001142 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1143 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001144 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001145
Borislav Petkov088b1b82009-01-02 13:34:47 +01001146 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1147 curspeed, maxspeed);
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001148
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001149 cd->current_speed = (curspeed + (176/2)) / 176;
1150 cd->max_speed = (maxspeed + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07001151}
1152
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001153#define IDE_CD_CAPABILITIES \
1154 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1155 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1156 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1157 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1158 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160static struct cdrom_device_ops ide_cdrom_dops = {
1161 .open = ide_cdrom_open_real,
1162 .release = ide_cdrom_release_real,
1163 .drive_status = ide_cdrom_drive_status,
1164 .media_changed = ide_cdrom_check_media_change_real,
1165 .tray_move = ide_cdrom_tray_move,
1166 .lock_door = ide_cdrom_lock_door,
1167 .select_speed = ide_cdrom_select_speed,
1168 .get_last_session = ide_cdrom_get_last_session,
1169 .get_mcn = ide_cdrom_get_mcn,
1170 .reset = ide_cdrom_reset,
1171 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001172 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 .generic_packet = ide_cdrom_packet,
1174};
1175
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001176static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
1178 struct cdrom_info *info = drive->driver_data;
1179 struct cdrom_device_info *devinfo = &info->devinfo;
1180
Borislav Petkov088b1b82009-01-02 13:34:47 +01001181 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001184 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001186 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Borislav Petkov570f89e2008-07-23 19:56:02 +02001189 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001190 devinfo->mask |= CDC_SELECT_SPEED;
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 devinfo->disk = info->disk;
1193 return register_cdrom(devinfo);
1194}
1195
Borislav Petkove5e076a2008-04-26 22:25:15 +02001196static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001198 struct cdrom_info *cd = drive->driver_data;
1199 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001200 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1201 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 int nslots = 1;
1203
Borislav Petkov088b1b82009-01-02 13:34:47 +01001204 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1205 drive->media, drive->atapi_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001206
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001207 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1208 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1209 CDC_MO_DRIVE | CDC_RAM);
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001212 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001213 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001214 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return nslots;
1216 }
1217
Borislav Petkov570f89e2008-07-23 19:56:02 +02001218 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1219 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001220 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return nslots;
1222 }
1223
1224 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001225 * We have to cheat a little here. the packet will eventually be queued
1226 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1227 * Since this device hasn't been registered with the Uniform layer yet,
1228 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001230 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 cdi->ops = &ide_cdrom_dops;
1232
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001233 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return 0;
1235
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001236 if ((buf[8 + 6] & 0x01) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001237 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001238 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001239 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001240 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001241 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001242 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001243 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001244 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001245 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001246 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001247 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001248 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001249 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001250 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001251 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001252
1253 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001254 if (mechtype == mechtype_caddy ||
1255 mechtype == mechtype_popup ||
1256 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001257 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001260 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001262 } else if (mechtype == mechtype_individual_changer ||
1263 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001264 nslots = cdrom_number_of_slots(cdi);
1265 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001266 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001269 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001270
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001271 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001272
1273 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001274 if (cd->max_speed)
1275 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001276
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001277 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001279 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1280 printk(KERN_CONT " DVD%s%s",
1281 (cdi->mask & CDC_DVD_R) ? "" : "-R",
Borislav Petkov419a5b62008-10-17 18:09:14 +02001282 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001284 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1285 printk(KERN_CONT " CD%s%s",
1286 (cdi->mask & CDC_CD_R) ? "" : "-R",
1287 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001289 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1290 printk(KERN_CONT " changer w/%d slots", nslots);
1291 else
1292 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001294 printk(KERN_CONT ", %dkB Cache\n",
1295 be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 return nslots;
1298}
1299
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001300/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001301static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001303 int hard_sect = queue_logical_block_size(q);
Tejun Heo5b936292009-05-07 22:24:38 +09001304 long block = (long)blk_rq_pos(rq) / (hard_sect >> 9);
1305 unsigned long blocks = blk_rq_sectors(rq) / (hard_sect >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001307 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 if (rq_data_dir(rq) == READ)
1310 rq->cmd[0] = GPCMD_READ_10;
1311 else
1312 rq->cmd[0] = GPCMD_WRITE_10;
1313
1314 /*
1315 * fill in lba
1316 */
1317 rq->cmd[2] = (block >> 24) & 0xff;
1318 rq->cmd[3] = (block >> 16) & 0xff;
1319 rq->cmd[4] = (block >> 8) & 0xff;
1320 rq->cmd[5] = block & 0xff;
1321
1322 /*
1323 * and transfer length
1324 */
1325 rq->cmd[7] = (blocks >> 8) & 0xff;
1326 rq->cmd[8] = blocks & 0xff;
1327 rq->cmd_len = 10;
1328 return BLKPREP_OK;
1329}
1330
1331/*
1332 * Most of the SCSI commands are supported directly by ATAPI devices.
1333 * This transform handles the few exceptions.
1334 */
1335static int ide_cdrom_prep_pc(struct request *rq)
1336{
1337 u8 *c = rq->cmd;
1338
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001339 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (c[0] == READ_6 || c[0] == WRITE_6) {
1341 c[8] = c[4];
1342 c[5] = c[3];
1343 c[4] = c[2];
1344 c[3] = c[1] & 0x1f;
1345 c[2] = 0;
1346 c[1] &= 0xe0;
1347 c[0] += (READ_10 - READ_6);
1348 rq->cmd_len = 10;
1349 return BLKPREP_OK;
1350 }
1351
1352 /*
1353 * it's silly to pretend we understand 6-byte sense commands, just
1354 * reject with ILLEGAL_REQUEST and the caller should take the
1355 * appropriate action
1356 */
1357 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1358 rq->errors = ILLEGAL_REQUEST;
1359 return BLKPREP_KILL;
1360 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return BLKPREP_OK;
1363}
1364
Jens Axboe165125e2007-07-24 09:28:11 +02001365static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001367 if (blk_fs_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return ide_cdrom_prep_fs(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001369 else if (blk_pc_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return ide_cdrom_prep_pc(rq);
1371
1372 return 0;
1373}
1374
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001375struct cd_list_entry {
1376 const char *id_model;
1377 const char *id_firmware;
1378 unsigned int cd_flags;
1379};
1380
Borislav Petkov5e657a92008-04-26 22:25:15 +02001381#ifdef CONFIG_IDE_PROC_FS
1382static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1383{
1384 unsigned long capacity, sectors_per_frame;
1385
1386 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1387 return 0;
1388
1389 return capacity * sectors_per_frame;
1390}
1391
Borislav Petkove5e076a2008-04-26 22:25:15 +02001392static int proc_idecd_read_capacity(char *page, char **start, off_t off,
1393 int count, int *eof, void *data)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001394{
1395 ide_drive_t *drive = data;
1396 int len;
1397
1398 len = sprintf(page, "%llu\n", (long long)ide_cdrom_capacity(drive));
1399 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1400}
1401
1402static ide_proc_entry_t idecd_proc[] = {
1403 { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
1404 { NULL, 0, NULL, NULL }
1405};
1406
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001407static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1408{
1409 return idecd_proc;
1410}
1411
1412static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1413{
Bartlomiej Zolnierkiewicz519d6802008-12-29 20:27:38 +01001414 return NULL;
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001415}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001416#endif
1417
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001418static const struct cd_list_entry ide_cd_quirks_list[] = {
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001419 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001420 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001421 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001422 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1423 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001424 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001425 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001426 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001427 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001428 /*
1429 * Sanyo 3 CD changer uses a non-standard command for CD changing
1430 * (by default standard ATAPI support for CD changers is used).
1431 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001432 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1433 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1434 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001435 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001436 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001437 /*
1438 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1439 * mode sense page capabilities size, but older drives break.
1440 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001441 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1442 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001443 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001444 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001445 /*
1446 * Some drives used by Apple don't advertise audio play
1447 * but they do support reading TOC & audio datas.
1448 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001449 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1450 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1451 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1452 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1453 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001454 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001455 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Márton Németh64c2eae2008-10-23 23:22:09 +02001456 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001457 { NULL, NULL, 0 }
1458};
1459
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001460static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001461{
1462 const struct cd_list_entry *cle = ide_cd_quirks_list;
1463
1464 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001465 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001466 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001467 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001468 return cle->cd_flags;
1469 cle++;
1470 }
1471
1472 return 0;
1473}
1474
Borislav Petkove5e076a2008-04-26 22:25:15 +02001475static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001477 struct cdrom_info *cd = drive->driver_data;
1478 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001479 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001480 u16 *id = drive->id;
1481 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 int nslots;
1483
Borislav Petkov088b1b82009-01-02 13:34:47 +01001484 ide_debug_log(IDE_DBG_PROBE, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001485
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001486 blk_queue_prep_rq(q, ide_cdrom_prep_fn);
1487 blk_queue_dma_alignment(q, 31);
1488 blk_queue_update_dma_pad(q, 15);
1489
1490 q->unplug_delay = max((1 * HZ) / 1000, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +02001492 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1493 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Borislav Petkov570f89e2008-07-23 19:56:02 +02001495 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001496 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001497 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1498 IDE_AFLAG_TOCADDR_AS_BCD);
1499 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001500 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001501 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1502 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001503 /* 3 => use CD in slot 0 */
1504 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001506 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Martin K. Petersene1defc42009-05-22 17:17:49 -04001508 blk_queue_logical_block_size(q, CD_FRAMESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001511 printk(KERN_ERR PFX "%s: %s failed to register device with the"
Borislav Petkov83c85652008-04-26 22:25:15 +02001512 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001513 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return 1;
1515 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001516
1517 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 return 0;
1519}
1520
Russell King4031bbe2006-01-06 11:41:00 +00001521static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
1523 struct cdrom_info *info = drive->driver_data;
1524
Borislav Petkov088b1b82009-01-02 13:34:47 +01001525 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001526
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001527 ide_proc_unregister_driver(drive, info->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001528 device_del(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 del_gendisk(info->disk);
1530
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001531 mutex_lock(&idecd_ref_mutex);
1532 put_device(&info->dev);
1533 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001536static void ide_cd_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001538 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 struct cdrom_device_info *devinfo = &info->devinfo;
1540 ide_drive_t *drive = info->drive;
1541 struct gendisk *g = info->disk;
1542
Borislav Petkov088b1b82009-01-02 13:34:47 +01001543 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001544
Jesper Juhl6044ec82005-11-07 01:01:32 -08001545 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001546 if (devinfo->handle == drive)
1547 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 drive->driver_data = NULL;
1549 blk_queue_prep_rq(drive->queue, NULL);
1550 g->private_data = NULL;
1551 put_disk(g);
1552 kfree(info);
1553}
1554
Russell King4031bbe2006-01-06 11:41:00 +00001555static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001557static struct ide_driver ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001558 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001559 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001560 .name = "ide-cdrom",
1561 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001562 },
Russell King4031bbe2006-01-06 11:41:00 +00001563 .probe = ide_cd_probe,
1564 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 .version = IDECD_VERSION,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001566 .do_request = ide_cd_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001567#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001568 .proc_entries = ide_cd_proc_entries,
1569 .proc_devsets = ide_cd_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571};
1572
Al Viro488ca602008-03-02 10:26:23 -05001573static int idecd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Al Viro488ca602008-03-02 10:26:23 -05001575 struct cdrom_info *info = ide_cd_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 int rc = -ENOMEM;
1577
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001578 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return -ENXIO;
1580
Al Viro488ca602008-03-02 10:26:23 -05001581 rc = cdrom_open(&info->devinfo, bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 if (rc < 0)
1584 ide_cd_put(info);
1585
1586 return rc;
1587}
1588
Al Viro488ca602008-03-02 10:26:23 -05001589static int idecd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001591 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Al Viro488ca602008-03-02 10:26:23 -05001593 cdrom_release(&info->devinfo, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 ide_cd_put(info);
1596
1597 return 0;
1598}
1599
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001600static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1601{
1602 struct packet_command cgc;
1603 char buffer[16];
1604 int stat;
1605 char spindown;
1606
1607 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1608 return -EFAULT;
1609
1610 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1611
1612 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1613 if (stat)
1614 return stat;
1615
1616 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1617 return cdrom_mode_select(cdi, &cgc);
1618}
1619
1620static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1621{
1622 struct packet_command cgc;
1623 char buffer[16];
1624 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001625 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001626
1627 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1628
1629 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1630 if (stat)
1631 return stat;
1632
1633 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001634 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001635 return -EFAULT;
1636 return 0;
1637}
1638
Al Viro488ca602008-03-02 10:26:23 -05001639static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 unsigned int cmd, unsigned long arg)
1641{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001642 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 int err;
1644
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001645 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001646 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001647 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001648 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001649 return idecd_get_spindown(&info->devinfo, arg);
1650 default:
1651 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001652 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001653
Al Viro1bddd9e2008-09-02 17:19:43 -04001654 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (err == -EINVAL)
Al Viro488ca602008-03-02 10:26:23 -05001656 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 return err;
1659}
1660
1661static int idecd_media_changed(struct gendisk *disk)
1662{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001663 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return cdrom_media_changed(&info->devinfo);
1665}
1666
1667static int idecd_revalidate_disk(struct gendisk *disk)
1668{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001669 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001671
1672 ide_cd_read_toc(info->drive, &sense);
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 return 0;
1675}
1676
1677static struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001678 .owner = THIS_MODULE,
Al Viro488ca602008-03-02 10:26:23 -05001679 .open = idecd_open,
1680 .release = idecd_release,
1681 .locked_ioctl = idecd_ioctl,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001682 .media_changed = idecd_media_changed,
1683 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684};
1685
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001686/* module options */
Borislav Petkov35d9b172008-10-13 21:39:49 +02001687static unsigned long debug_mask;
1688module_param(debug_mask, ulong, 0644);
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1691
Russell King4031bbe2006-01-06 11:41:00 +00001692static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
1694 struct cdrom_info *info;
1695 struct gendisk *g;
1696 struct request_sense sense;
1697
Borislav Petkov088b1b82009-01-02 13:34:47 +01001698 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1699 drive->driver_req, drive->media);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (!strstr("ide-cdrom", drive->driver_req))
1702 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if (drive->media != ide_cdrom && drive->media != ide_optical)
1705 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001706
Borislav Petkov35d9b172008-10-13 21:39:49 +02001707 drive->debug_mask = debug_mask;
Borislav Petkovd6251d42009-01-06 17:20:58 +01001708 drive->irq_handler = cdrom_newpc_intr;
Borislav Petkov35d9b172008-10-13 21:39:49 +02001709
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08001710 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (info == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001712 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001713 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 goto failed;
1715 }
1716
1717 g = alloc_disk(1 << PARTN_BITS);
1718 if (!g)
1719 goto out_free_cd;
1720
1721 ide_init_disk(g, drive);
1722
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001723 info->dev.parent = &drive->gendev;
1724 info->dev.release = ide_cd_release;
1725 dev_set_name(&info->dev, dev_name(&drive->gendev));
1726
1727 if (device_register(&info->dev))
1728 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 info->drive = drive;
1731 info->driver = &ide_cdrom_driver;
1732 info->disk = g;
1733
1734 g->private_data = &info->driver;
1735
1736 drive->driver_data = info;
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 g->driverfs_dev = &drive->gendev;
1740 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1741 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001742 put_device(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 goto failed;
1744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001746 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 g->fops = &idecd_ops;
1748 g->flags |= GENHD_FL_REMOVABLE;
1749 add_disk(g);
1750 return 0;
1751
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001752out_free_disk:
1753 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754out_free_cd:
1755 kfree(info);
1756failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001757 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
1760static void __exit ide_cdrom_exit(void)
1761{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001762 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01001764
1765static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001767 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001768 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
1770
Kay Sievers263756e2005-12-12 18:03:44 +01001771MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01001772MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773module_init(ide_cdrom_init);
1774module_exit(ide_cdrom_exit);
1775MODULE_LICENSE("GPL");