blob: 31fc76960a8fd29e4e640f8b1636bca3b91d9730 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz3bb46632008-02-01 23:09:28 +01002 * ATAPI CD-ROM driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01004 * Copyright (C) 1994-1996 Scott Snyder <snyder@fnald0.fnal.gov>
5 * Copyright (C) 1996-1998 Erik Andersen <andersee@debian.org>
6 * Copyright (C) 1998-2000 Jens Axboe <axboe@suse.de>
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +02007 * Copyright (C) 2005, 2007-2009 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * May be copied or modified under the terms of the GNU General Public
10 * License. See linux/COPYING for more information.
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * See Documentation/cdrom/ide-cd for usage information.
13 *
14 * Suggestions are welcome. Patches that work are more welcome though. ;-)
Bartlomiej Zolnierkiewicz116e6902009-03-31 20:14:59 +020015 *
16 * Documentation:
17 * Mt. Fuji (SFF8090 version 4) and ATAPI (SFF-8020i rev 2.6) standards.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
Bartlomiej Zolnierkiewicz03553352008-02-01 23:09:18 +010019 * For historical changelog please see:
20 * Documentation/ide/ChangeLog.ide-cd.1994-2004
21 */
22
Borislav Petkovfc8323f2008-10-13 21:39:48 +020023#define DRV_NAME "ide-cd"
24#define PFX DRV_NAME ": "
25
Bartlomiej Zolnierkiewicz3bb46632008-02-01 23:09:28 +010026#define IDECD_VERSION "5.00"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/types.h>
30#include <linux/kernel.h>
31#include <linux/delay.h>
32#include <linux/timer.h>
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070033#include <linux/seq_file.h>
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +020034#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/slab.h>
36#include <linux/interrupt.h>
37#include <linux/errno.h>
38#include <linux/cdrom.h>
39#include <linux/ide.h>
40#include <linux/completion.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080041#include <linux/mutex.h>
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +010042#include <linux/bcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020044/* For SCSI -> ATAPI command conversion */
45#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Borislav Petkov9aba4682008-04-26 22:25:15 +020047#include <linux/irq.h>
48#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/byteorder.h>
Borislav Petkov9aba4682008-04-26 22:25:15 +020050#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/unaligned.h>
52
53#include "ide-cd.h"
54
Arjan van de Vencf8b8972006-03-23 03:00:45 -080055static DEFINE_MUTEX(idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010057static void ide_cd_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static struct cdrom_info *ide_cd_get(struct gendisk *disk)
60{
61 struct cdrom_info *cd = NULL;
62
Arjan van de Vencf8b8972006-03-23 03:00:45 -080063 mutex_lock(&idecd_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +020064 cd = ide_drv_g(disk, cdrom_info);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020065 if (cd) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020066 if (ide_device_get(cd->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020067 cd = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020068 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010069 get_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020070
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020071 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -080072 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return cd;
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static void ide_cd_put(struct cdrom_info *cd)
77{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020078 ide_drive_t *drive = cd->drive;
79
Arjan van de Vencf8b8972006-03-23 03:00:45 -080080 mutex_lock(&idecd_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010081 put_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020082 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080083 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020086/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * Generic packet command support and error handling routines.
88 */
89
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020090/* Mark that we've seen a media change and invalidate our internal buffers. */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020091static void cdrom_saw_media_change(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +020093 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
Borislav Petkov570f89e2008-07-23 19:56:02 +020094 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Borislav Petkov239f7e252009-04-23 08:30:29 +020097static int cdrom_log_sense(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Borislav Petkov239f7e252009-04-23 08:30:29 +020099 struct request_sense *sense = &drive->sense_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 int log = 0;
101
Jens Axboe4aff5e22006-08-10 08:44:47 +0200102 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return 0;
104
Borislav Petkov239f7e252009-04-23 08:30:29 +0200105 ide_debug_log(IDE_DBG_SENSE, "sense_key: 0x%x", sense->sense_key);
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 switch (sense->sense_key) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200108 case NO_SENSE:
109 case RECOVERED_ERROR:
110 break;
111 case NOT_READY:
112 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200113 * don't care about tray state messages for e.g. capacity
114 * commands or in-progress or becoming ready
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200115 */
116 if (sense->asc == 0x3a || sense->asc == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200118 log = 1;
119 break;
120 case ILLEGAL_REQUEST:
121 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200122 * don't log START_STOP unit with LoEj set, since we cannot
123 * reliably check if drive can auto-close
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200124 */
125 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200127 log = 1;
128 break;
129 case UNIT_ATTENTION:
130 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200131 * Make good and sure we've seen this potential media change.
132 * Some drives (i.e. Creative) fail to present the correct sense
133 * key in the error register.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200134 */
135 cdrom_saw_media_change(drive);
136 break;
137 default:
138 log = 1;
139 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141 return log;
142}
143
Borislav Petkove5e076a2008-04-26 22:25:15 +0200144static void cdrom_analyze_sense_data(ide_drive_t *drive,
Borislav Petkov239f7e252009-04-23 08:30:29 +0200145 struct request *failed_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Borislav Petkov239f7e252009-04-23 08:30:29 +0200147 struct request_sense *sense = &drive->sense_data;
148 struct cdrom_info *info = drive->driver_data;
Alan Coxdbe217a2006-06-25 05:47:44 -0700149 unsigned long sector;
150 unsigned long bio_sectors;
Alan Coxdbe217a2006-06-25 05:47:44 -0700151
Borislav Petkov088b1b82009-01-02 13:34:47 +0100152 ide_debug_log(IDE_DBG_SENSE, "error_code: 0x%x, sense_key: 0x%x",
153 sense->error_code, sense->sense_key);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200154
155 if (failed_command)
Borislav Petkov088b1b82009-01-02 13:34:47 +0100156 ide_debug_log(IDE_DBG_SENSE, "failed cmd: 0x%x",
157 failed_command->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200158
Borislav Petkov239f7e252009-04-23 08:30:29 +0200159 if (!cdrom_log_sense(drive, failed_command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return;
161
162 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200163 * If a read toc is executed for a CD-R or CD-RW medium where the first
164 * toc has not been recorded yet, it will fail with 05/24/00 (which is a
165 * confusing error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 */
167 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
168 if (sense->sense_key == 0x05 && sense->asc == 0x24)
169 return;
170
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200171 /* current error */
172 if (sense->error_code == 0x70) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200173 switch (sense->sense_key) {
Alan Coxdbe217a2006-06-25 05:47:44 -0700174 case MEDIUM_ERROR:
175 case VOLUME_OVERFLOW:
176 case ILLEGAL_REQUEST:
177 if (!sense->valid)
178 break;
179 if (failed_command == NULL ||
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200180 failed_command->cmd_type != REQ_TYPE_FS)
Alan Coxdbe217a2006-06-25 05:47:44 -0700181 break;
182 sector = (sense->information[0] << 24) |
183 (sense->information[1] << 16) |
184 (sense->information[2] << 8) |
185 (sense->information[3]);
186
Martin K. Petersene1defc42009-05-22 17:17:49 -0400187 if (queue_logical_block_size(drive->queue) == 2048)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200188 /* device sector size is 2K */
189 sector <<= 2;
Roel Kluineee49292008-04-28 23:44:43 +0200190
191 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200192 sector &= ~(bio_sectors - 1);
Alan Coxdbe217a2006-06-25 05:47:44 -0700193
Bartlomiej Zolnierkiewiczd3dd7102009-02-25 20:28:23 +0100194 /*
195 * The SCSI specification allows for the value
196 * returned by READ CAPACITY to be up to 75 2K
197 * sectors past the last readable block.
198 * Therefore, if we hit a medium error within the
199 * last 75 2K sectors, we decrease the saved size
200 * value.
201 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700202 if (sector < get_capacity(info->disk) &&
Borislav Petkove5e076a2008-04-26 22:25:15 +0200203 drive->probed_capacity - sector < 4 * 75)
Alan Coxdbe217a2006-06-25 05:47:44 -0700204 set_capacity(info->disk, sector);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200205 }
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100208 ide_cd_log_error(drive->name, failed_command, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200211static void ide_cd_complete_failed_rq(ide_drive_t *drive, struct request *rq)
212{
213 /*
Tejun Heo1f181d22009-04-19 07:00:42 +0900214 * For REQ_TYPE_SENSE, "rq->special" points to the original
Tejun Heo02e7cf82009-04-19 07:00:42 +0900215 * failed request. Also, the sense data should be read
216 * directly from rq which might be different from the original
217 * sense buffer if it got copied during mapping.
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200218 */
Tejun Heo1f181d22009-04-19 07:00:42 +0900219 struct request *failed = (struct request *)rq->special;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900220 void *sense = bio_data(rq->bio);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200221
222 if (failed) {
223 if (failed->sense) {
Borislav Petkovc457ce82009-04-19 07:00:42 +0900224 /*
225 * Sense is always read into drive->sense_data.
226 * Copy back if the failed request has its
227 * sense pointer set.
228 */
229 memcpy(failed->sense, sense, 18);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200230 failed->sense_len = rq->sense_len;
231 }
Borislav Petkov239f7e252009-04-23 08:30:29 +0200232 cdrom_analyze_sense_data(drive, failed);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200233
234 if (ide_end_rq(drive, failed, -EIO, blk_rq_bytes(failed)))
235 BUG();
236 } else
Borislav Petkov239f7e252009-04-23 08:30:29 +0200237 cdrom_analyze_sense_data(drive, NULL);
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200238}
239
Borislav Petkov805ec582009-04-08 14:12:52 +0200240
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200241/*
Borislav Petkov805ec582009-04-08 14:12:52 +0200242 * Allow the drive 5 seconds to recover; some devices will return NOT_READY
243 * while flushing data from cache.
244 *
245 * returns: 0 failed (write timeout expired)
246 * 1 success
247 */
248static int ide_cd_breathe(ide_drive_t *drive, struct request *rq)
249{
250
251 struct cdrom_info *info = drive->driver_data;
252
253 if (!rq->errors)
254 info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY;
255
256 rq->errors = 1;
257
258 if (time_after(jiffies, info->write_timeout))
259 return 0;
260 else {
261 struct request_queue *q = drive->queue;
262 unsigned long flags;
263
264 /*
265 * take a breather relying on the unplug timer to kick us again
266 */
267
268 spin_lock_irqsave(q->queue_lock, flags);
269 blk_plug_device(q);
270 spin_unlock_irqrestore(q->queue_lock, flags);
271
272 return 1;
273 }
274}
275
276/**
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200277 * Returns:
278 * 0: if the request should be continued.
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200279 * 1: if the request will be going through error recovery.
280 * 2: if the request should be ended.
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200281 */
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200282static int cdrom_decode_status(ide_drive_t *drive, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200284 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100285 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200286 int err, sense_key, do_end_request = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200288 /* get the IDE error register */
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100289 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 sense_key = err >> 4;
291
Borislav Petkov98036ab2009-04-08 14:12:53 +0200292 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, rq->cmd_type: 0x%x, err: 0x%x, "
293 "stat 0x%x",
294 rq->cmd[0], rq->cmd_type, err, stat);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200295
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200296 if (rq->cmd_type == REQ_TYPE_SENSE) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200297 /*
298 * We got an error trying to get sense info from the drive
299 * (probably while trying to recover from a former error).
300 * Just give up.
301 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200302 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200303 return 2;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200306 /* if we have an error, pass CHECK_CONDITION as the SCSI status byte */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200307 if (rq->cmd_type == REQ_TYPE_BLOCK_PC && !rq->errors)
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200308 rq->errors = SAM_STAT_CHECK_CONDITION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200310 if (blk_noretry_request(rq))
311 do_end_request = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200313 switch (sense_key) {
314 case NOT_READY:
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200315 if (rq->cmd_type == REQ_TYPE_FS && rq_data_dir(rq) == WRITE) {
Borislav Petkov3c8a48e2009-04-08 14:13:03 +0200316 if (ide_cd_breathe(drive, rq))
317 return 1;
318 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +0200319 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200321 if (rq->cmd_type == REQ_TYPE_FS &&
Christoph Hellwig4c4762d2010-06-19 17:26:47 +0200322 !(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200323 printk(KERN_ERR PFX "%s: tray open\n",
324 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200326 do_end_request = 1;
327 break;
328 case UNIT_ATTENTION:
329 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200331 if (rq->cmd_type != REQ_TYPE_FS)
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200332 return 0;
333
334 /*
335 * Arrange to retry the request but be sure to give up if we've
336 * retried too many times.
337 */
338 if (++rq->errors > ERROR_MAX)
Bartlomiej Zolnierkiewicz1920c482009-04-08 14:12:54 +0200339 do_end_request = 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200340 break;
341 case ILLEGAL_REQUEST:
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200342 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200343 * Don't print error message for this condition -- SFF8090i
344 * indicates that 5/24/00 is the correct response to a request
345 * to close the tray if the drive doesn't have that capability.
346 *
347 * cdrom_log_sense() knows this!
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200348 */
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200349 if (rq->cmd[0] == GPCMD_START_STOP_UNIT)
350 break;
351 /* fall-through */
352 case DATA_PROTECT:
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100353 /*
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200354 * No point in retrying after an illegal request or data
355 * protect error.
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100356 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200357 if (!(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200358 ide_dump_status(drive, "command error", stat);
359 do_end_request = 1;
360 break;
361 case MEDIUM_ERROR:
362 /*
363 * No point in re-trying a zillion times on a bad sector.
364 * If we got here the error is not correctable.
365 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200366 if (!(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200367 ide_dump_status(drive, "media error "
368 "(bad sector)", stat);
369 do_end_request = 1;
370 break;
371 case BLANK_CHECK:
372 /* disk appears blank? */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200373 if (!(rq->cmd_flags & REQ_QUIET))
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200374 ide_dump_status(drive, "media error (blank)",
375 stat);
376 do_end_request = 1;
377 break;
378 default:
Christoph Hellwig4c4762d2010-06-19 17:26:47 +0200379 if (rq->cmd_type != REQ_TYPE_FS)
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200380 break;
381 if (err & ~ATA_ABORTED) {
382 /* go to the default handler for other errors */
383 ide_error(drive, "cdrom_decode_status", stat);
384 return 1;
385 } else if (++rq->errors > ERROR_MAX)
386 /* we've racked up too many retries, abort */
387 do_end_request = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200390 if (rq->cmd_type != REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200391 rq->cmd_flags |= REQ_FAILED;
392 do_end_request = 1;
393 }
394
395 /*
396 * End a request through request sense analysis when we have sense data.
397 * We need this in order to perform end of media processing.
398 */
399 if (do_end_request)
400 goto end_request;
401
402 /* if we got a CHECK_CONDITION status, queue a request sense command */
403 if (stat & ATA_ERR)
Tejun Heo02e7cf82009-04-19 07:00:42 +0900404 return ide_queue_sense_rq(drive, NULL) ? 2 : 1;
Bartlomiej Zolnierkiewicz674f0ea2009-04-08 14:12:54 +0200405 return 1;
406
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100407end_request:
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200408 if (stat & ATA_ERR) {
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100409 hwif->rq = NULL;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900410 return ide_queue_sense_rq(drive, rq) ? 2 : 1;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100411 } else
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200412 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200415static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100416{
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200417 struct request *rq = cmd->rq;
418
Borislav Petkov088b1b82009-01-02 13:34:47 +0100419 ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200420
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100421 /*
422 * Some of the trailing request sense fields are optional,
423 * and some drives don't send them. Sigh.
424 */
425 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
Tejun Heo59a4f6f2009-04-19 07:00:41 +0900426 cmd->nleft > 0 && cmd->nleft <= 5)
427 cmd->nleft = 0;
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100428}
429
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200430int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
431 int write, void *buffer, unsigned *bufflen,
432 struct request_sense *sense, int timeout,
433 unsigned int cmd_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200435 struct cdrom_info *info = drive->driver_data;
436 struct request_sense local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int retries = 10;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200438 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200440 if (!sense)
441 sense = &local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Borislav Petkov088b1b82009-01-02 13:34:47 +0100443 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
444 "cmd_flags: 0x%x",
445 cmd[0], write, timeout, cmd_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200446
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200447 /* start of retry loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 do {
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200449 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200452 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
453
454 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
455 rq->cmd_type = REQ_TYPE_ATA_PC;
456 rq->sense = sense;
457 rq->cmd_flags |= cmd_flags;
458 rq->timeout = timeout;
459 if (buffer) {
Tejun Heo02e7cf82009-04-19 07:00:42 +0900460 error = blk_rq_map_kern(drive->queue, rq, buffer,
461 *bufflen, GFP_NOIO);
462 if (error) {
463 blk_put_request(rq);
464 return error;
465 }
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200466 }
467
468 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
469
470 if (buffer)
Tejun Heoc3a4d782009-05-07 22:24:37 +0900471 *bufflen = rq->resid_len;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200472
473 flags = rq->cmd_flags;
474 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200476 /*
477 * FIXME: we should probably abort/retry or something in case of
478 * failure.
479 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200480 if (flags & REQ_FAILED) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200481 /*
482 * The request failed. Retry if it was due to a unit
483 * attention status (usually means media was changed).
484 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200485 struct request_sense *reqbuf = sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if (reqbuf->sense_key == UNIT_ATTENTION)
488 cdrom_saw_media_change(drive);
489 else if (reqbuf->sense_key == NOT_READY &&
490 reqbuf->asc == 4 && reqbuf->ascq != 4) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200491 /*
492 * The drive is in the process of loading
493 * a disk. Retry, but wait a little to give
494 * the drive time to complete the load.
495 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 ssleep(2);
497 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200498 /* otherwise, don't retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 retries = 0;
500 }
501 --retries;
502 }
503
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200504 /* end of retry loop */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200505 } while ((flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200507 /* return an error if the command failed */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200508 return (flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Borislav Petkov11071282010-07-05 21:23:52 -0700511/*
512 * returns true if rq has been completed
513 */
514static bool ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200515{
516 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
517
518 if (cmd->tf_flags & IDE_TFLAG_WRITE)
519 nr_bytes -= cmd->last_xfer_len;
520
Borislav Petkov11071282010-07-05 21:23:52 -0700521 if (nr_bytes > 0) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200522 ide_complete_rq(drive, 0, nr_bytes);
Borislav Petkov11071282010-07-05 21:23:52 -0700523 return true;
524 }
525
526 return false;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200527}
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
530{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200531 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200532 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100533 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100534 ide_expiry_t *expiry = NULL;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200535 int dma_error = 0, dma, thislen, uptodate = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900536 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200537 int sense = (rq->cmd_type == REQ_TYPE_SENSE);
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100538 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200539 u16 len;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200540 u8 ireason, stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Borislav Petkov98036ab2009-04-08 14:12:53 +0200542 ide_debug_log(IDE_DBG_PC, "cmd: 0x%x, write: 0x%x", rq->cmd[0], write);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200543
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200544 /* check for errors */
Borislav Petkov12469ac2008-10-13 21:39:49 +0200545 dma = drive->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (dma) {
Borislav Petkov12469ac2008-10-13 21:39:49 +0200547 drive->dma = 0;
Bartlomiej Zolnierkiewicz88b41322009-03-31 20:15:22 +0200548 drive->waiting_for_dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200549 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczf094d4d82009-03-31 20:15:24 +0200550 ide_dma_unmap_sg(drive, cmd);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100551 if (dma_error) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200552 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100553 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100554 ide_dma_off(drive);
555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200558 /* check status */
559 stat = hwif->tp_ops->read_status(hwif);
560
561 if (!OK_STAT(stat, 0, BAD_R_STAT)) {
562 rc = cdrom_decode_status(drive, stat);
563 if (rc) {
564 if (rc == 2)
565 goto out_end;
566 return ide_stopped;
567 }
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200570 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100572 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz4a3d8cf2009-03-31 20:15:15 +0200574 uptodate = 1;
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200575 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200578 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100579
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200580 thislen = (rq->cmd_type == REQ_TYPE_FS) ? len : cmd->nleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (thislen > len)
582 thislen = len;
583
Borislav Petkov088b1b82009-01-02 13:34:47 +0100584 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
585 stat, thislen);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200586
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200587 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200588 if ((stat & ATA_DRQ) == 0) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200589 if (rq->cmd_type == REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100590 /*
591 * If we're not done reading/writing, complain.
592 * Otherwise, complete the command normally.
593 */
594 uptodate = 1;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200595 if (cmd->nleft > 0) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200596 printk(KERN_ERR PFX "%s: %s: data underrun "
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200597 "(%u bytes)\n", drive->name, __func__,
598 cmd->nleft);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100599 if (!write)
600 rq->cmd_flags |= REQ_FAILED;
601 uptodate = 0;
602 }
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200603 } else if (rq->cmd_type != REQ_TYPE_BLOCK_PC) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200604 ide_cd_request_sense_fixup(drive, cmd);
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700605
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200606 uptodate = cmd->nleft ? 0 : 1;
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700607
608 /*
609 * suck out the remaining bytes from the drive in an
610 * attempt to complete the data xfer. (see BZ#13399)
611 */
612 if (!(stat & ATA_ERR) && !uptodate && thislen) {
613 ide_pio_bytes(drive, cmd, write, thislen);
614 uptodate = cmd->nleft ? 0 : 1;
615 }
616
617 if (!uptodate)
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200618 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100619 }
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200620 goto out_end;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Borislav Petkov103f7032009-04-26 10:39:07 +0200623 rc = ide_check_ireason(drive, rq, len, ireason, write);
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200624 if (rc)
625 goto out_end;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100626
Bartlomiej Zolnierkiewicz06a449e2009-03-31 20:15:13 +0200627 cmd->last_xfer_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Borislav Petkov088b1b82009-01-02 13:34:47 +0100629 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
630 "ireason: 0x%x",
631 rq->cmd_type, ireason);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200632
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200633 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 while (thislen > 0) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200635 int blen = min_t(int, thislen, cmd->nleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200637 if (cmd->nleft == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200640 ide_pio_bytes(drive, cmd, write, blen);
641 cmd->last_xfer_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 thislen -= blen;
644 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200646 if (sense && write == 0)
Andreas Schwabbcd88ac2008-02-26 21:50:35 +0100647 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200650 /* pad, if necessary */
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200651 if (len > 0) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200652 if (rq->cmd_type != REQ_TYPE_FS || write == 0)
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200653 ide_pad_transfer(drive, write, len);
654 else {
655 printk(KERN_ERR PFX "%s: confused, missing data\n",
656 drive->name);
657 blk_dump_rq_flags(rq, "cdrom_newpc_intr");
658 }
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200661 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100662 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100663 } else {
664 timeout = ATAPI_WAIT_PC;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200665 if (rq->cmd_type != REQ_TYPE_FS)
Borislav Petkov4cad0852009-01-02 16:12:53 +0100666 expiry = ide_cd_expiry;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100667 }
668
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100669 hwif->expiry = expiry;
670 ide_set_handler(drive, cdrom_newpc_intr, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100672
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200673out_end:
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200674 if (rq->cmd_type == REQ_TYPE_BLOCK_PC && rc == 0) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900675 rq->resid_len = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900676 blk_end_request_all(rq, 0);
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100677 hwif->rq = NULL;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100678 } else {
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200679 if (sense && uptodate)
680 ide_cd_complete_failed_rq(drive, rq);
681
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200682 if (rq->cmd_type == REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200683 if (cmd->nleft == 0)
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200684 uptodate = 1;
685 } else {
686 if (uptodate <= 0 && rq->errors == 0)
687 rq->errors = -EIO;
688 }
689
Rainer Weikusat39c58f32009-06-18 17:04:00 +0200690 if (uptodate == 0 && rq->bio)
Borislav Petkov11071282010-07-05 21:23:52 -0700691 if (ide_cd_error_cmd(drive, cmd))
692 return ide_stopped;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200693
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200694 /* make sure it's fully ended */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200695 if (rq->cmd_type != REQ_TYPE_FS) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900696 rq->resid_len -= cmd->nbytes - cmd->nleft;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200697 if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
Tejun Heoc3a4d782009-05-07 22:24:37 +0900698 rq->resid_len += cmd->last_xfer_len;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200699 }
700
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900701 ide_complete_rq(drive, uptodate ? 0 : -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200702
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200703 if (sense && rc == 2)
704 ide_error(drive, "request sense failure", stat);
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100705 }
706 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100709static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100711 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200712 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100713 int write = rq_data_dir(rq) == WRITE;
714 unsigned short sectors_per_frame =
Martin K. Petersene1defc42009-05-22 17:17:49 -0400715 queue_logical_block_size(q) >> SECTOR_BITS;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100716
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200717 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
Borislav Petkov088b1b82009-01-02 13:34:47 +0100718 "secs_per_frame: %u",
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200719 rq->cmd[0], rq->cmd_flags, sectors_per_frame);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200720
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100721 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200722 /* disk has become write protected */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200723 if (get_disk_ro(cd->disk))
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100724 return ide_stopped;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100725 } else {
726 /*
727 * We may be retrying this request after an error. Fix up any
728 * weirdness which might be present in the request packet.
729 */
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200730 q->prep_rq_fn(q, rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200733 /* fs requests *must* be hardware frame aligned */
Tejun Heo9780e2d2009-05-07 22:24:40 +0900734 if ((blk_rq_sectors(rq) & (sectors_per_frame - 1)) ||
735 (blk_rq_pos(rq) & (sectors_per_frame - 1)))
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200736 return ide_stopped;
737
738 /* use DMA, if possible */
739 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100741 if (write)
742 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200744 rq->timeout = ATAPI_WAIT_PC;
745
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200746 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200749static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Borislav Petkov088b1b82009-01-02 13:34:47 +0100752 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
753 rq->cmd[0], rq->cmd_type);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200754
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200755 if (rq->cmd_type == REQ_TYPE_BLOCK_PC)
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100756 rq->cmd_flags |= REQ_QUIET;
757 else
758 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Borislav Petkov12469ac2008-10-13 21:39:49 +0200760 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200762 /* sg request */
Tejun Heo02e7cf82009-04-19 07:00:42 +0900763 if (rq->bio) {
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200764 struct request_queue *q = drive->queue;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900765 char *buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200766 unsigned int alignment;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200767
Borislav Petkov12469ac2008-10-13 21:39:49 +0200768 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /*
771 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -0700772 *
773 * NOTE! The "len" and "addr" checks should possibly have
774 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200776 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Borislav Petkov9bd27cb2008-11-02 21:40:07 +0100777 if ((unsigned long)buf & alignment
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900778 || blk_rq_bytes(rq) & q->dma_pad_mask
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200779 || object_is_on_stack(buf))
Borislav Petkov12469ac2008-10-13 21:39:49 +0200780 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Borislav Petkov99384ae2008-07-16 20:33:45 +0200784static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +0200785 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100787 struct ide_cmd cmd;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200788 int uptodate = 0, nsectors;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100789
Borislav Petkov088b1b82009-01-02 13:34:47 +0100790 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
791 rq->cmd[0], (unsigned long long)block);
792
793 if (drive->debug_mask & IDE_DBG_RQ)
794 blk_dump_rq_flags(rq, "ide_cd_do_request");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200795
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200796 switch (rq->cmd_type) {
797 case REQ_TYPE_FS:
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200798 if (cdrom_start_rw(drive, rq) == ide_stopped)
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200799 goto out_end;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200800 break;
801 case REQ_TYPE_SENSE:
802 case REQ_TYPE_BLOCK_PC:
803 case REQ_TYPE_ATA_PC:
Borislav Petkov7fcebda2008-07-16 20:33:46 +0200804 if (!rq->timeout)
805 rq->timeout = ATAPI_WAIT_PC;
806
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200807 cdrom_do_block_pc(drive, rq);
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200808 break;
809 case REQ_TYPE_SPECIAL:
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200810 /* right now this can only be a reset... */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200811 uptodate = 1;
812 goto out_end;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200813 default:
Bartlomiej Zolnierkiewicz2c7eaa42009-06-15 22:16:10 +0200814 BUG();
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200815 }
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200816
Borislav Petkovc457ce82009-04-19 07:00:42 +0900817 /* prepare sense request for this command */
818 ide_prep_sense(drive, rq);
819
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100820 memset(&cmd, 0, sizeof(cmd));
821
822 if (rq_data_dir(rq))
823 cmd.tf_flags |= IDE_TFLAG_WRITE;
824
825 cmd.rq = rq;
826
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200827 if (rq->cmd_type == REQ_TYPE_FS || blk_rq_bytes(rq)) {
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900828 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200829 ide_map_sg(drive, &cmd);
830 }
831
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100832 return ide_issue_pc(drive, &cmd);
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200833out_end:
Tejun Heo5b936292009-05-07 22:24:38 +0900834 nsectors = blk_rq_sectors(rq);
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200835
836 if (nsectors == 0)
837 nsectors = 1;
838
839 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
840
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200841 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200844/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * Ioctl handling.
846 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200847 * Routines which queue packet commands take as a final argument a pointer to a
848 * request_sense struct. If execution of the command results in an error with a
849 * CHECK CONDITION status, this structure will be filled with the results of the
850 * subsequent request sense command. The pointer can also be NULL, in which case
851 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200853static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Adrian Bunkfc99856a2008-08-18 21:40:04 +0200855 msf->minute = bcd2bin(msf->minute);
856 msf->second = bcd2bin(msf->second);
857 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Borislav Petkovf9afd182008-02-01 23:09:29 +0100860int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct cdrom_info *info = drive->driver_data;
863 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200864 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Borislav Petkov088b1b82009-01-02 13:34:47 +0100866 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200867
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200868 memset(cmd, 0, BLK_MAX_CDB);
869 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100871 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200872 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
873 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100874 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200875 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Harvey Harrison141d3b22008-07-23 19:56:02 +0200877 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
881 unsigned long *sectors_per_frame,
882 struct request_sense *sense)
883{
884 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +0200885 __be32 lba;
886 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 } capbuf;
888
889 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200890 unsigned char cmd[BLK_MAX_CDB];
891 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +0200892 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Borislav Petkov088b1b82009-01-02 13:34:47 +0100894 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200895
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200896 memset(cmd, 0, BLK_MAX_CDB);
897 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200899 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
900 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200901 if (stat)
902 return stat;
903
904 /*
David S. Milleraf054ed2009-06-23 16:01:06 -0700905 * Sanity check the given block size, in so far as making
906 * sure the sectors_per_frame we give to the caller won't
907 * end up being bogus.
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200908 */
Petr Tesarik938bb032008-08-05 18:17:02 +0200909 blocklen = be32_to_cpu(capbuf.blocklen);
David S. Milleraf054ed2009-06-23 16:01:06 -0700910 blocklen = (blocklen >> SECTOR_BITS) << SECTOR_BITS;
Petr Tesarik938bb032008-08-05 18:17:02 +0200911 switch (blocklen) {
912 case 512:
913 case 1024:
914 case 2048:
915 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200916 break;
917 default:
Frans Popd9ae6242009-06-23 16:02:58 -0700918 printk_once(KERN_ERR PFX "%s: weird block size %u; "
919 "setting default block size to 2048\n",
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200920 drive->name, blocklen);
Petr Tesarik938bb032008-08-05 18:17:02 +0200921 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200922 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200925 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +0200926 *sectors_per_frame = blocklen >> SECTOR_BITS;
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200927
Borislav Petkov088b1b82009-01-02 13:34:47 +0100928 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
929 *capacity, *sectors_per_frame);
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200930
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200931 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
935 int format, char *buf, int buflen,
936 struct request_sense *sense)
937{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200938 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Borislav Petkov088b1b82009-01-02 13:34:47 +0100940 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200941
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200942 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200944 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
945 cmd[6] = trackno;
946 cmd[7] = (buflen >> 8);
947 cmd[8] = (buflen & 0xff);
948 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200951 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200953 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100957int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 int stat, ntracks, i;
960 struct cdrom_info *info = drive->driver_data;
961 struct cdrom_device_info *cdi = &info->devinfo;
962 struct atapi_toc *toc = info->toc;
963 struct {
964 struct atapi_toc_header hdr;
965 struct atapi_toc_entry ent;
966 } ms_tmp;
967 long last_written;
968 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
969
Borislav Petkov088b1b82009-01-02 13:34:47 +0100970 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200973 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800974 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (toc == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200976 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
Borislav Petkov83c85652008-04-26 22:25:15 +0200977 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return -ENOMEM;
979 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800980 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200983 /*
984 * Check to see if the existing data is still valid. If it is,
985 * just return.
986 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 (void) cdrom_check_status(drive, sense);
988
Borislav Petkov570f89e2008-07-23 19:56:02 +0200989 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return 0;
991
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200992 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
994 sense);
995 if (stat)
996 toc->capacity = 0x1fffff;
997
998 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200999 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -07001000 drive->probed_capacity = toc->capacity * sectors_per_frame;
1001
Martin K. Petersene1defc42009-05-22 17:17:49 -04001002 blk_queue_logical_block_size(drive->queue,
1003 sectors_per_frame << SECTOR_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001005 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1007 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001008 if (stat)
1009 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Borislav Petkov570f89e2008-07-23 19:56:02 +02001011 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001012 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1013 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1017 if (ntracks <= 0)
1018 return -EIO;
1019 if (ntracks > MAX_TRACKS)
1020 ntracks = MAX_TRACKS;
1021
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001022 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1024 (char *)&toc->hdr,
1025 sizeof(struct atapi_toc_header) +
1026 (ntracks + 1) *
1027 sizeof(struct atapi_toc_entry), sense);
1028
1029 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001030 /*
1031 * Cds with CDI tracks only don't have any TOC entries, despite
1032 * of this the returned values are
1033 * first_track == last_track = number of CDI tracks + 1,
1034 * so that this case is indistinguishable from the same layout
1035 * plus an additional audio track. If we get an error for the
1036 * regular case, we assume a CDI without additional audio
1037 * tracks. In this case the readable TOC is empty (CDI tracks
1038 * are not included) and only holds the Leadout entry.
1039 *
1040 * Heiko Eißfeldt.
1041 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ntracks = 0;
1043 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1044 (char *)&toc->hdr,
1045 sizeof(struct atapi_toc_header) +
1046 (ntracks + 1) *
1047 sizeof(struct atapi_toc_entry),
1048 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001049 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001051
Borislav Petkov570f89e2008-07-23 19:56:02 +02001052 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001053 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1054 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001055 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 toc->hdr.first_track = CDROM_LEADOUT;
1057 toc->hdr.last_track = CDROM_LEADOUT;
1058 }
1059 }
1060
1061 if (stat)
1062 return stat;
1063
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001064 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Borislav Petkov570f89e2008-07-23 19:56:02 +02001066 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001067 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1068 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001071 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001072 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1073 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001074 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 msf_from_bcd(&toc->ent[i].addr.msf);
1076 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001077 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1078 toc->ent[i].addr.msf.second,
1079 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001083 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1085 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001086 if (stat)
1087 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1090 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001091 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1092 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1094 }
1095
Borislav Petkov570f89e2008-07-23 19:56:02 +02001096 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001097 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1099 sizeof(ms_tmp), sense);
1100 if (stat)
1101 return stat;
1102
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001103 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001105 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 ms_tmp.ent.addr.msf.frame);
1107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1110
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001111 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 stat = cdrom_get_last_written(cdi, &last_written);
1113 if (!stat && (last_written > toc->capacity)) {
1114 toc->capacity = last_written;
1115 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001116 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
1119 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001120 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 return 0;
1123}
1124
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001125int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001126{
1127 struct cdrom_info *info = drive->driver_data;
1128 struct cdrom_device_info *cdi = &info->devinfo;
1129 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001130 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001131
Borislav Petkov088b1b82009-01-02 13:34:47 +01001132 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001133
Borislav Petkov570f89e2008-07-23 19:56:02 +02001134 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001135 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001136
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001137 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001138 do {
1139 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001140 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1141 if (!stat)
1142 break;
1143 } while (--attempts);
1144 return stat;
1145}
1146
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001147void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001148{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001149 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001150 u16 curspeed, maxspeed;
1151
Borislav Petkov088b1b82009-01-02 13:34:47 +01001152 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001153
Borislav Petkov570f89e2008-07-23 19:56:02 +02001154 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001155 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1156 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001157 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001158 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1159 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001160 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001161
Borislav Petkov088b1b82009-01-02 13:34:47 +01001162 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1163 curspeed, maxspeed);
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001164
Julia Lawall72db37b2009-08-02 13:19:05 -07001165 cd->current_speed = DIV_ROUND_CLOSEST(curspeed, 176);
1166 cd->max_speed = DIV_ROUND_CLOSEST(maxspeed, 176);
Eric Piel9235e682005-06-23 00:10:29 -07001167}
1168
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001169#define IDE_CD_CAPABILITIES \
1170 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1171 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1172 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1173 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1174 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176static struct cdrom_device_ops ide_cdrom_dops = {
1177 .open = ide_cdrom_open_real,
1178 .release = ide_cdrom_release_real,
1179 .drive_status = ide_cdrom_drive_status,
1180 .media_changed = ide_cdrom_check_media_change_real,
1181 .tray_move = ide_cdrom_tray_move,
1182 .lock_door = ide_cdrom_lock_door,
1183 .select_speed = ide_cdrom_select_speed,
1184 .get_last_session = ide_cdrom_get_last_session,
1185 .get_mcn = ide_cdrom_get_mcn,
1186 .reset = ide_cdrom_reset,
1187 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001188 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 .generic_packet = ide_cdrom_packet,
1190};
1191
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001192static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 struct cdrom_info *info = drive->driver_data;
1195 struct cdrom_device_info *devinfo = &info->devinfo;
1196
Borislav Petkov088b1b82009-01-02 13:34:47 +01001197 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001200 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001202 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Borislav Petkov570f89e2008-07-23 19:56:02 +02001205 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001206 devinfo->mask |= CDC_SELECT_SPEED;
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 devinfo->disk = info->disk;
1209 return register_cdrom(devinfo);
1210}
1211
Borislav Petkove5e076a2008-04-26 22:25:15 +02001212static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001214 struct cdrom_info *cd = drive->driver_data;
1215 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001216 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1217 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 int nslots = 1;
1219
Borislav Petkov088b1b82009-01-02 13:34:47 +01001220 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1221 drive->media, drive->atapi_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001222
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001223 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1224 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1225 CDC_MO_DRIVE | CDC_RAM);
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001228 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001229 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001230 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return nslots;
1232 }
1233
Borislav Petkov570f89e2008-07-23 19:56:02 +02001234 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1235 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001236 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return nslots;
1238 }
1239
1240 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001241 * We have to cheat a little here. the packet will eventually be queued
1242 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1243 * Since this device hasn't been registered with the Uniform layer yet,
1244 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001246 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 cdi->ops = &ide_cdrom_dops;
1248
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001249 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return 0;
1251
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001252 if ((buf[8 + 6] & 0x01) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001253 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001254 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001255 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001256 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001257 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001258 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001259 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001260 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001261 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001262 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001263 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001264 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001265 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001266 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001267 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001268
1269 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001270 if (mechtype == mechtype_caddy ||
1271 mechtype == mechtype_popup ||
1272 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001273 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001276 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001278 } else if (mechtype == mechtype_individual_changer ||
1279 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001280 nslots = cdrom_number_of_slots(cdi);
1281 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001282 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001285 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001286
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001287 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001288
1289 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001290 if (cd->max_speed)
1291 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001292
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001293 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001295 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1296 printk(KERN_CONT " DVD%s%s",
1297 (cdi->mask & CDC_DVD_R) ? "" : "-R",
Borislav Petkov419a5b62008-10-17 18:09:14 +02001298 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001300 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1301 printk(KERN_CONT " CD%s%s",
1302 (cdi->mask & CDC_CD_R) ? "" : "-R",
1303 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001305 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1306 printk(KERN_CONT " changer w/%d slots", nslots);
1307 else
1308 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001310 printk(KERN_CONT ", %dkB Cache\n",
1311 be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 return nslots;
1314}
1315
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001316/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001317static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001319 int hard_sect = queue_logical_block_size(q);
Tejun Heo5b936292009-05-07 22:24:38 +09001320 long block = (long)blk_rq_pos(rq) / (hard_sect >> 9);
1321 unsigned long blocks = blk_rq_sectors(rq) / (hard_sect >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001323 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 if (rq_data_dir(rq) == READ)
1326 rq->cmd[0] = GPCMD_READ_10;
1327 else
1328 rq->cmd[0] = GPCMD_WRITE_10;
1329
1330 /*
1331 * fill in lba
1332 */
1333 rq->cmd[2] = (block >> 24) & 0xff;
1334 rq->cmd[3] = (block >> 16) & 0xff;
1335 rq->cmd[4] = (block >> 8) & 0xff;
1336 rq->cmd[5] = block & 0xff;
1337
1338 /*
1339 * and transfer length
1340 */
1341 rq->cmd[7] = (blocks >> 8) & 0xff;
1342 rq->cmd[8] = blocks & 0xff;
1343 rq->cmd_len = 10;
1344 return BLKPREP_OK;
1345}
1346
1347/*
1348 * Most of the SCSI commands are supported directly by ATAPI devices.
1349 * This transform handles the few exceptions.
1350 */
1351static int ide_cdrom_prep_pc(struct request *rq)
1352{
1353 u8 *c = rq->cmd;
1354
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001355 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (c[0] == READ_6 || c[0] == WRITE_6) {
1357 c[8] = c[4];
1358 c[5] = c[3];
1359 c[4] = c[2];
1360 c[3] = c[1] & 0x1f;
1361 c[2] = 0;
1362 c[1] &= 0xe0;
1363 c[0] += (READ_10 - READ_6);
1364 rq->cmd_len = 10;
1365 return BLKPREP_OK;
1366 }
1367
1368 /*
1369 * it's silly to pretend we understand 6-byte sense commands, just
1370 * reject with ILLEGAL_REQUEST and the caller should take the
1371 * appropriate action
1372 */
1373 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1374 rq->errors = ILLEGAL_REQUEST;
1375 return BLKPREP_KILL;
1376 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return BLKPREP_OK;
1379}
1380
Jens Axboe165125e2007-07-24 09:28:11 +02001381static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001383 if (rq->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return ide_cdrom_prep_fs(q, rq);
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001385 else if (rq->cmd_type == REQ_TYPE_BLOCK_PC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return ide_cdrom_prep_pc(rq);
1387
1388 return 0;
1389}
1390
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001391struct cd_list_entry {
1392 const char *id_model;
1393 const char *id_firmware;
1394 unsigned int cd_flags;
1395};
1396
Borislav Petkov5e657a92008-04-26 22:25:15 +02001397#ifdef CONFIG_IDE_PROC_FS
1398static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1399{
1400 unsigned long capacity, sectors_per_frame;
1401
1402 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1403 return 0;
1404
1405 return capacity * sectors_per_frame;
1406}
1407
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001408static int idecd_capacity_proc_show(struct seq_file *m, void *v)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001409{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001410 ide_drive_t *drive = m->private;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001411
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001412 seq_printf(m, "%llu\n", (long long)ide_cdrom_capacity(drive));
1413 return 0;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001414}
1415
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001416static int idecd_capacity_proc_open(struct inode *inode, struct file *file)
1417{
1418 return single_open(file, idecd_capacity_proc_show, PDE(inode)->data);
1419}
1420
1421static const struct file_operations idecd_capacity_proc_fops = {
1422 .owner = THIS_MODULE,
1423 .open = idecd_capacity_proc_open,
1424 .read = seq_read,
1425 .llseek = seq_lseek,
1426 .release = single_release,
1427};
1428
Borislav Petkov5e657a92008-04-26 22:25:15 +02001429static ide_proc_entry_t idecd_proc[] = {
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001430 { "capacity", S_IFREG|S_IRUGO, &idecd_capacity_proc_fops },
1431 {}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001432};
1433
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001434static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1435{
1436 return idecd_proc;
1437}
1438
1439static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1440{
Bartlomiej Zolnierkiewicz519d6802008-12-29 20:27:38 +01001441 return NULL;
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001442}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001443#endif
1444
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001445static const struct cd_list_entry ide_cd_quirks_list[] = {
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001446 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001447 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001448 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001449 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1450 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001451 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001452 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001453 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001454 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001455 /*
1456 * Sanyo 3 CD changer uses a non-standard command for CD changing
1457 * (by default standard ATAPI support for CD changers is used).
1458 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001459 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1460 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1461 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001462 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001463 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001464 /*
1465 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1466 * mode sense page capabilities size, but older drives break.
1467 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001468 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1469 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001470 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001471 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001472 /*
1473 * Some drives used by Apple don't advertise audio play
1474 * but they do support reading TOC & audio datas.
1475 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001476 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1477 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1478 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1479 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1480 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001481 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001482 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Márton Németh64c2eae2008-10-23 23:22:09 +02001483 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001484 { NULL, NULL, 0 }
1485};
1486
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001487static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001488{
1489 const struct cd_list_entry *cle = ide_cd_quirks_list;
1490
1491 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001492 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001493 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001494 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001495 return cle->cd_flags;
1496 cle++;
1497 }
1498
1499 return 0;
1500}
1501
Borislav Petkove5e076a2008-04-26 22:25:15 +02001502static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001504 struct cdrom_info *cd = drive->driver_data;
1505 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001506 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001507 u16 *id = drive->id;
1508 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 int nslots;
1510
Borislav Petkov088b1b82009-01-02 13:34:47 +01001511 ide_debug_log(IDE_DBG_PROBE, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001512
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001513 blk_queue_prep_rq(q, ide_cdrom_prep_fn);
1514 blk_queue_dma_alignment(q, 31);
1515 blk_queue_update_dma_pad(q, 15);
1516
1517 q->unplug_delay = max((1 * HZ) / 1000, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +02001519 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1520 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Borislav Petkov570f89e2008-07-23 19:56:02 +02001522 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001523 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001524 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1525 IDE_AFLAG_TOCADDR_AS_BCD);
1526 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001527 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001528 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1529 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001530 /* 3 => use CD in slot 0 */
1531 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001533 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Martin K. Petersene1defc42009-05-22 17:17:49 -04001535 blk_queue_logical_block_size(q, CD_FRAMESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001538 printk(KERN_ERR PFX "%s: %s failed to register device with the"
Borislav Petkov83c85652008-04-26 22:25:15 +02001539 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001540 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return 1;
1542 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001543
1544 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return 0;
1546}
1547
Russell King4031bbe2006-01-06 11:41:00 +00001548static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 struct cdrom_info *info = drive->driver_data;
1551
Borislav Petkov088b1b82009-01-02 13:34:47 +01001552 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001553
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001554 ide_proc_unregister_driver(drive, info->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001555 device_del(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 del_gendisk(info->disk);
1557
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001558 mutex_lock(&idecd_ref_mutex);
1559 put_device(&info->dev);
1560 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001563static void ide_cd_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001565 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 struct cdrom_device_info *devinfo = &info->devinfo;
1567 ide_drive_t *drive = info->drive;
1568 struct gendisk *g = info->disk;
1569
Borislav Petkov088b1b82009-01-02 13:34:47 +01001570 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001571
Jesper Juhl6044ec82005-11-07 01:01:32 -08001572 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001573 if (devinfo->handle == drive)
1574 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 drive->driver_data = NULL;
1576 blk_queue_prep_rq(drive->queue, NULL);
1577 g->private_data = NULL;
1578 put_disk(g);
1579 kfree(info);
1580}
1581
Russell King4031bbe2006-01-06 11:41:00 +00001582static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001584static struct ide_driver ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001585 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001586 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001587 .name = "ide-cdrom",
1588 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001589 },
Russell King4031bbe2006-01-06 11:41:00 +00001590 .probe = ide_cd_probe,
1591 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 .version = IDECD_VERSION,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001593 .do_request = ide_cd_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001594#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001595 .proc_entries = ide_cd_proc_entries,
1596 .proc_devsets = ide_cd_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598};
1599
Al Viro488ca602008-03-02 10:26:23 -05001600static int idecd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001602 struct cdrom_info *info;
1603 int rc = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001605 lock_kernel();
1606 info = ide_cd_get(bdev->bd_disk);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001607 if (!info)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001608 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Al Viro488ca602008-03-02 10:26:23 -05001610 rc = cdrom_open(&info->devinfo, bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (rc < 0)
1612 ide_cd_put(info);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001613out:
1614 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return rc;
1616}
1617
Al Viro488ca602008-03-02 10:26:23 -05001618static int idecd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001620 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001622 lock_kernel();
Al Viro488ca602008-03-02 10:26:23 -05001623 cdrom_release(&info->devinfo, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 ide_cd_put(info);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001626 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 return 0;
1629}
1630
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001631static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1632{
1633 struct packet_command cgc;
1634 char buffer[16];
1635 int stat;
1636 char spindown;
1637
1638 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1639 return -EFAULT;
1640
1641 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1642
1643 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1644 if (stat)
1645 return stat;
1646
1647 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1648 return cdrom_mode_select(cdi, &cgc);
1649}
1650
1651static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1652{
1653 struct packet_command cgc;
1654 char buffer[16];
1655 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001656 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001657
1658 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1659
1660 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1661 if (stat)
1662 return stat;
1663
1664 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001665 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001666 return -EFAULT;
1667 return 0;
1668}
1669
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001670static int idecd_locked_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 unsigned int cmd, unsigned long arg)
1672{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001673 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 int err;
1675
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001676 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001677 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001678 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001679 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001680 return idecd_get_spindown(&info->devinfo, arg);
1681 default:
1682 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001683 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001684
Al Viro1bddd9e2008-09-02 17:19:43 -04001685 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if (err == -EINVAL)
Al Viro488ca602008-03-02 10:26:23 -05001687 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 return err;
1690}
1691
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001692static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
1693 unsigned int cmd, unsigned long arg)
1694{
1695 int ret;
1696
1697 lock_kernel();
1698 ret = idecd_locked_ioctl(bdev, mode, cmd, arg);
1699 unlock_kernel();
1700
1701 return ret;
1702}
1703
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705static int idecd_media_changed(struct gendisk *disk)
1706{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001707 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return cdrom_media_changed(&info->devinfo);
1709}
1710
1711static int idecd_revalidate_disk(struct gendisk *disk)
1712{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001713 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001715
1716 ide_cd_read_toc(info->drive, &sense);
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return 0;
1719}
1720
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001721static const struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001722 .owner = THIS_MODULE,
Al Viro488ca602008-03-02 10:26:23 -05001723 .open = idecd_open,
1724 .release = idecd_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001725 .ioctl = idecd_ioctl,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001726 .media_changed = idecd_media_changed,
1727 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728};
1729
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001730/* module options */
Borislav Petkov35d9b172008-10-13 21:39:49 +02001731static unsigned long debug_mask;
1732module_param(debug_mask, ulong, 0644);
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1735
Russell King4031bbe2006-01-06 11:41:00 +00001736static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 struct cdrom_info *info;
1739 struct gendisk *g;
1740 struct request_sense sense;
1741
Borislav Petkov088b1b82009-01-02 13:34:47 +01001742 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1743 drive->driver_req, drive->media);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (!strstr("ide-cdrom", drive->driver_req))
1746 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (drive->media != ide_cdrom && drive->media != ide_optical)
1749 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001750
Borislav Petkov35d9b172008-10-13 21:39:49 +02001751 drive->debug_mask = debug_mask;
Borislav Petkovd6251d42009-01-06 17:20:58 +01001752 drive->irq_handler = cdrom_newpc_intr;
Borislav Petkov35d9b172008-10-13 21:39:49 +02001753
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08001754 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (info == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001756 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001757 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 goto failed;
1759 }
1760
1761 g = alloc_disk(1 << PARTN_BITS);
1762 if (!g)
1763 goto out_free_cd;
1764
1765 ide_init_disk(g, drive);
1766
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001767 info->dev.parent = &drive->gendev;
1768 info->dev.release = ide_cd_release;
1769 dev_set_name(&info->dev, dev_name(&drive->gendev));
1770
1771 if (device_register(&info->dev))
1772 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 info->drive = drive;
1775 info->driver = &ide_cdrom_driver;
1776 info->disk = g;
1777
1778 g->private_data = &info->driver;
1779
1780 drive->driver_data = info;
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 g->driverfs_dev = &drive->gendev;
1784 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1785 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001786 put_device(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 goto failed;
1788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001790 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 g->fops = &idecd_ops;
1792 g->flags |= GENHD_FL_REMOVABLE;
1793 add_disk(g);
1794 return 0;
1795
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001796out_free_disk:
1797 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798out_free_cd:
1799 kfree(info);
1800failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001801 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802}
1803
1804static void __exit ide_cdrom_exit(void)
1805{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001806 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01001808
1809static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001811 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001812 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
Kay Sievers263756e2005-12-12 18:03:44 +01001815MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01001816MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817module_init(ide_cdrom_init);
1818module_exit(ide_cdrom_exit);
1819MODULE_LICENSE("GPL");