blob: bf9f61a5c2f8651769c500c89212d0c7ff9d8a2c [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 Petkov239f7e22009-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 Petkov239f7e22009-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 Petkov239f7e22009-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 Petkov239f7e22009-04-23 08:30:29 +0200145 struct request *failed_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Borislav Petkov239f7e22009-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 Petkov239f7e22009-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 Petkov239f7e22009-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 Petkov239f7e22009-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
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200511static void ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
512{
513 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
514
515 if (cmd->tf_flags & IDE_TFLAG_WRITE)
516 nr_bytes -= cmd->last_xfer_len;
517
518 if (nr_bytes > 0)
519 ide_complete_rq(drive, 0, nr_bytes);
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
523{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200524 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200525 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100526 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100527 ide_expiry_t *expiry = NULL;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200528 int dma_error = 0, dma, thislen, uptodate = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900529 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200530 int sense = (rq->cmd_type == REQ_TYPE_SENSE);
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100531 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200532 u16 len;
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200533 u8 ireason, stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Borislav Petkov98036ab2009-04-08 14:12:53 +0200535 ide_debug_log(IDE_DBG_PC, "cmd: 0x%x, write: 0x%x", rq->cmd[0], write);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200536
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200537 /* check for errors */
Borislav Petkov12469ac2008-10-13 21:39:49 +0200538 dma = drive->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (dma) {
Borislav Petkov12469ac2008-10-13 21:39:49 +0200540 drive->dma = 0;
Bartlomiej Zolnierkiewicz88b41322009-03-31 20:15:22 +0200541 drive->waiting_for_dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200542 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczf094d4d2009-03-31 20:15:24 +0200543 ide_dma_unmap_sg(drive, cmd);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100544 if (dma_error) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200545 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100546 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100547 ide_dma_off(drive);
548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
Borislav Petkov8e59bfd2009-04-08 14:12:51 +0200551 /* check status */
552 stat = hwif->tp_ops->read_status(hwif);
553
554 if (!OK_STAT(stat, 0, BAD_R_STAT)) {
555 rc = cdrom_decode_status(drive, stat);
556 if (rc) {
557 if (rc == 2)
558 goto out_end;
559 return ide_stopped;
560 }
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200563 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100565 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz4a3d8cf2009-03-31 20:15:15 +0200567 uptodate = 1;
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200568 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200571 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100572
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200573 thislen = (rq->cmd_type == REQ_TYPE_FS) ? len : cmd->nleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (thislen > len)
575 thislen = len;
576
Borislav Petkov088b1b82009-01-02 13:34:47 +0100577 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
578 stat, thislen);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200579
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200580 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200581 if ((stat & ATA_DRQ) == 0) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200582 if (rq->cmd_type == REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100583 /*
584 * If we're not done reading/writing, complain.
585 * Otherwise, complete the command normally.
586 */
587 uptodate = 1;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200588 if (cmd->nleft > 0) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200589 printk(KERN_ERR PFX "%s: %s: data underrun "
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200590 "(%u bytes)\n", drive->name, __func__,
591 cmd->nleft);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100592 if (!write)
593 rq->cmd_flags |= REQ_FAILED;
594 uptodate = 0;
595 }
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200596 } else if (rq->cmd_type != REQ_TYPE_BLOCK_PC) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200597 ide_cd_request_sense_fixup(drive, cmd);
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700598
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200599 uptodate = cmd->nleft ? 0 : 1;
Borislav Petkov9c72ebe2009-06-26 11:22:37 -0700600
601 /*
602 * suck out the remaining bytes from the drive in an
603 * attempt to complete the data xfer. (see BZ#13399)
604 */
605 if (!(stat & ATA_ERR) && !uptodate && thislen) {
606 ide_pio_bytes(drive, cmd, write, thislen);
607 uptodate = cmd->nleft ? 0 : 1;
608 }
609
610 if (!uptodate)
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200611 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100612 }
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200613 goto out_end;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Borislav Petkov103f7032009-04-26 10:39:07 +0200616 rc = ide_check_ireason(drive, rq, len, ireason, write);
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200617 if (rc)
618 goto out_end;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100619
Bartlomiej Zolnierkiewicz06a449e2009-03-31 20:15:13 +0200620 cmd->last_xfer_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Borislav Petkov088b1b82009-01-02 13:34:47 +0100622 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
623 "ireason: 0x%x",
624 rq->cmd_type, ireason);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200625
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200626 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 while (thislen > 0) {
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200628 int blen = min_t(int, thislen, cmd->nleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200630 if (cmd->nleft == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200633 ide_pio_bytes(drive, cmd, write, blen);
634 cmd->last_xfer_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 thislen -= blen;
637 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200639 if (sense && write == 0)
Andreas Schwabbcd88ac2008-02-26 21:50:35 +0100640 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200643 /* pad, if necessary */
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200644 if (len > 0) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200645 if (rq->cmd_type != REQ_TYPE_FS || write == 0)
Bartlomiej Zolnierkiewicz14fa91c2009-03-31 20:15:16 +0200646 ide_pad_transfer(drive, write, len);
647 else {
648 printk(KERN_ERR PFX "%s: confused, missing data\n",
649 drive->name);
650 blk_dump_rq_flags(rq, "cdrom_newpc_intr");
651 }
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200654 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100655 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100656 } else {
657 timeout = ATAPI_WAIT_PC;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200658 if (rq->cmd_type != REQ_TYPE_FS)
Borislav Petkov4cad0852009-01-02 16:12:53 +0100659 expiry = ide_cd_expiry;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100660 }
661
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100662 hwif->expiry = expiry;
663 ide_set_handler(drive, cdrom_newpc_intr, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100665
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200666out_end:
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200667 if (rq->cmd_type == REQ_TYPE_BLOCK_PC && rc == 0) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900668 rq->resid_len = 0;
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900669 blk_end_request_all(rq, 0);
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100670 hwif->rq = NULL;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100671 } else {
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200672 if (sense && uptodate)
673 ide_cd_complete_failed_rq(drive, rq);
674
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200675 if (rq->cmd_type == REQ_TYPE_FS) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200676 if (cmd->nleft == 0)
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200677 uptodate = 1;
678 } else {
679 if (uptodate <= 0 && rq->errors == 0)
680 rq->errors = -EIO;
681 }
682
Rainer Weikusat39c58f32009-06-18 17:04:00 +0200683 if (uptodate == 0 && rq->bio)
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200684 ide_cd_error_cmd(drive, cmd);
685
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200686 /* make sure it's fully ended */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200687 if (rq->cmd_type != REQ_TYPE_FS) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900688 rq->resid_len -= cmd->nbytes - cmd->nleft;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200689 if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
Tejun Heoc3a4d782009-05-07 22:24:37 +0900690 rq->resid_len += cmd->last_xfer_len;
Bartlomiej Zolnierkiewiczc7ec8992009-03-31 20:15:15 +0200691 }
692
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900693 ide_complete_rq(drive, uptodate ? 0 : -EIO, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200694
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200695 if (sense && rc == 2)
696 ide_error(drive, "request sense failure", stat);
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100697 }
698 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100701static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100703 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200704 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100705 int write = rq_data_dir(rq) == WRITE;
706 unsigned short sectors_per_frame =
Martin K. Petersene1defc42009-05-22 17:17:49 -0400707 queue_logical_block_size(q) >> SECTOR_BITS;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100708
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200709 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
Borislav Petkov088b1b82009-01-02 13:34:47 +0100710 "secs_per_frame: %u",
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200711 rq->cmd[0], rq->cmd_flags, sectors_per_frame);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200712
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100713 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200714 /* disk has become write protected */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200715 if (get_disk_ro(cd->disk))
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100716 return ide_stopped;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100717 } else {
718 /*
719 * We may be retrying this request after an error. Fix up any
720 * weirdness which might be present in the request packet.
721 */
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200722 q->prep_rq_fn(q, rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200725 /* fs requests *must* be hardware frame aligned */
Tejun Heo9780e2d2009-05-07 22:24:40 +0900726 if ((blk_rq_sectors(rq) & (sectors_per_frame - 1)) ||
727 (blk_rq_pos(rq) & (sectors_per_frame - 1)))
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200728 return ide_stopped;
729
730 /* use DMA, if possible */
731 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100733 if (write)
734 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200736 rq->timeout = ATAPI_WAIT_PC;
737
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200738 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200741static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Borislav Petkov088b1b82009-01-02 13:34:47 +0100744 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
745 rq->cmd[0], rq->cmd_type);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200746
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200747 if (rq->cmd_type == REQ_TYPE_BLOCK_PC)
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100748 rq->cmd_flags |= REQ_QUIET;
749 else
750 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Borislav Petkov12469ac2008-10-13 21:39:49 +0200752 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200754 /* sg request */
Tejun Heo02e7cf82009-04-19 07:00:42 +0900755 if (rq->bio) {
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200756 struct request_queue *q = drive->queue;
Tejun Heo02e7cf82009-04-19 07:00:42 +0900757 char *buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200758 unsigned int alignment;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200759
Borislav Petkov12469ac2008-10-13 21:39:49 +0200760 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /*
763 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -0700764 *
765 * NOTE! The "len" and "addr" checks should possibly have
766 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200768 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Borislav Petkov9bd27cb2008-11-02 21:40:07 +0100769 if ((unsigned long)buf & alignment
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900770 || blk_rq_bytes(rq) & q->dma_pad_mask
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200771 || object_is_on_stack(buf))
Borislav Petkov12469ac2008-10-13 21:39:49 +0200772 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Borislav Petkov99384ae2008-07-16 20:33:45 +0200776static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +0200777 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100779 struct ide_cmd cmd;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200780 int uptodate = 0, nsectors;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100781
Borislav Petkov088b1b82009-01-02 13:34:47 +0100782 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
783 rq->cmd[0], (unsigned long long)block);
784
785 if (drive->debug_mask & IDE_DBG_RQ)
786 blk_dump_rq_flags(rq, "ide_cd_do_request");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200787
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200788 switch (rq->cmd_type) {
789 case REQ_TYPE_FS:
Bartlomiej Zolnierkiewicz8652b312009-03-31 20:15:14 +0200790 if (cdrom_start_rw(drive, rq) == ide_stopped)
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200791 goto out_end;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200792 break;
793 case REQ_TYPE_SENSE:
794 case REQ_TYPE_BLOCK_PC:
795 case REQ_TYPE_ATA_PC:
Borislav Petkov7fcebda2008-07-16 20:33:46 +0200796 if (!rq->timeout)
797 rq->timeout = ATAPI_WAIT_PC;
798
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200799 cdrom_do_block_pc(drive, rq);
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200800 break;
801 case REQ_TYPE_SPECIAL:
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200802 /* right now this can only be a reset... */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200803 uptodate = 1;
804 goto out_end;
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200805 default:
Bartlomiej Zolnierkiewicz2c7eaa42009-06-15 22:16:10 +0200806 BUG();
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200807 }
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200808
Borislav Petkovc457ce82009-04-19 07:00:42 +0900809 /* prepare sense request for this command */
810 ide_prep_sense(drive, rq);
811
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100812 memset(&cmd, 0, sizeof(cmd));
813
814 if (rq_data_dir(rq))
815 cmd.tf_flags |= IDE_TFLAG_WRITE;
816
817 cmd.rq = rq;
818
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200819 if (rq->cmd_type == REQ_TYPE_FS || blk_rq_bytes(rq)) {
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900820 ide_init_sg_cmd(&cmd, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200821 ide_map_sg(drive, &cmd);
822 }
823
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100824 return ide_issue_pc(drive, &cmd);
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200825out_end:
Tejun Heo5b936292009-05-07 22:24:38 +0900826 nsectors = blk_rq_sectors(rq);
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200827
828 if (nsectors == 0)
829 nsectors = 1;
830
831 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
832
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200833 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200836/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * Ioctl handling.
838 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200839 * Routines which queue packet commands take as a final argument a pointer to a
840 * request_sense struct. If execution of the command results in an error with a
841 * CHECK CONDITION status, this structure will be filled with the results of the
842 * subsequent request sense command. The pointer can also be NULL, in which case
843 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200845static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Adrian Bunkfc99856a2008-08-18 21:40:04 +0200847 msf->minute = bcd2bin(msf->minute);
848 msf->second = bcd2bin(msf->second);
849 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Borislav Petkovf9afd182008-02-01 23:09:29 +0100852int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct cdrom_info *info = drive->driver_data;
855 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200856 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Borislav Petkov088b1b82009-01-02 13:34:47 +0100858 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200859
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200860 memset(cmd, 0, BLK_MAX_CDB);
861 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100863 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200864 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
865 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +0100866 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200867 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Harvey Harrison141d3b22008-07-23 19:56:02 +0200869 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
873 unsigned long *sectors_per_frame,
874 struct request_sense *sense)
875{
876 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +0200877 __be32 lba;
878 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 } capbuf;
880
881 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200882 unsigned char cmd[BLK_MAX_CDB];
883 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +0200884 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Borislav Petkov088b1b82009-01-02 13:34:47 +0100886 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200887
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200888 memset(cmd, 0, BLK_MAX_CDB);
889 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200891 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
892 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200893 if (stat)
894 return stat;
895
896 /*
David S. Milleraf054ed2009-06-23 16:01:06 -0700897 * Sanity check the given block size, in so far as making
898 * sure the sectors_per_frame we give to the caller won't
899 * end up being bogus.
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200900 */
Petr Tesarik938bb032008-08-05 18:17:02 +0200901 blocklen = be32_to_cpu(capbuf.blocklen);
David S. Milleraf054ed2009-06-23 16:01:06 -0700902 blocklen = (blocklen >> SECTOR_BITS) << SECTOR_BITS;
Petr Tesarik938bb032008-08-05 18:17:02 +0200903 switch (blocklen) {
904 case 512:
905 case 1024:
906 case 2048:
907 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200908 break;
909 default:
Frans Popd9ae6242009-06-23 16:02:58 -0700910 printk_once(KERN_ERR PFX "%s: weird block size %u; "
911 "setting default block size to 2048\n",
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200912 drive->name, blocklen);
Petr Tesarik938bb032008-08-05 18:17:02 +0200913 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200914 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200917 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +0200918 *sectors_per_frame = blocklen >> SECTOR_BITS;
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200919
Borislav Petkov088b1b82009-01-02 13:34:47 +0100920 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
921 *capacity, *sectors_per_frame);
Borislav Petkov71b429ca2008-10-17 18:09:14 +0200922
Jens Axboee8e7b9e2008-07-24 22:53:35 +0200923 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
926static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
927 int format, char *buf, int buflen,
928 struct request_sense *sense)
929{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200930 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Borislav Petkov088b1b82009-01-02 13:34:47 +0100932 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200933
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200934 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200936 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
937 cmd[6] = trackno;
938 cmd[7] = (buflen >> 8);
939 cmd[8] = (buflen & 0xff);
940 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200943 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200945 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100949int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 int stat, ntracks, i;
952 struct cdrom_info *info = drive->driver_data;
953 struct cdrom_device_info *cdi = &info->devinfo;
954 struct atapi_toc *toc = info->toc;
955 struct {
956 struct atapi_toc_header hdr;
957 struct atapi_toc_entry ent;
958 } ms_tmp;
959 long last_written;
960 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
961
Borislav Petkov088b1b82009-01-02 13:34:47 +0100962 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200965 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800966 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (toc == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200968 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
Borislav Petkov83c85652008-04-26 22:25:15 +0200969 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return -ENOMEM;
971 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -0800972 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200975 /*
976 * Check to see if the existing data is still valid. If it is,
977 * just return.
978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 (void) cdrom_check_status(drive, sense);
980
Borislav Petkov570f89e2008-07-23 19:56:02 +0200981 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return 0;
983
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200984 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
986 sense);
987 if (stat)
988 toc->capacity = 0x1fffff;
989
990 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200991 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -0700992 drive->probed_capacity = toc->capacity * sectors_per_frame;
993
Martin K. Petersene1defc42009-05-22 17:17:49 -0400994 blk_queue_logical_block_size(drive->queue,
995 sectors_per_frame << SECTOR_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200997 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
999 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001000 if (stat)
1001 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Borislav Petkov570f89e2008-07-23 19:56:02 +02001003 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001004 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1005 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1009 if (ntracks <= 0)
1010 return -EIO;
1011 if (ntracks > MAX_TRACKS)
1012 ntracks = MAX_TRACKS;
1013
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001014 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1016 (char *)&toc->hdr,
1017 sizeof(struct atapi_toc_header) +
1018 (ntracks + 1) *
1019 sizeof(struct atapi_toc_entry), sense);
1020
1021 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001022 /*
1023 * Cds with CDI tracks only don't have any TOC entries, despite
1024 * of this the returned values are
1025 * first_track == last_track = number of CDI tracks + 1,
1026 * so that this case is indistinguishable from the same layout
1027 * plus an additional audio track. If we get an error for the
1028 * regular case, we assume a CDI without additional audio
1029 * tracks. In this case the readable TOC is empty (CDI tracks
1030 * are not included) and only holds the Leadout entry.
1031 *
1032 * Heiko Eißfeldt.
1033 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 ntracks = 0;
1035 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1036 (char *)&toc->hdr,
1037 sizeof(struct atapi_toc_header) +
1038 (ntracks + 1) *
1039 sizeof(struct atapi_toc_entry),
1040 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001041 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001043
Borislav Petkov570f89e2008-07-23 19:56:02 +02001044 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001045 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1046 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001047 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 toc->hdr.first_track = CDROM_LEADOUT;
1049 toc->hdr.last_track = CDROM_LEADOUT;
1050 }
1051 }
1052
1053 if (stat)
1054 return stat;
1055
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001056 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Borislav Petkov570f89e2008-07-23 19:56:02 +02001058 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001059 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1060 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001063 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001064 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1065 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001066 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 msf_from_bcd(&toc->ent[i].addr.msf);
1068 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001069 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1070 toc->ent[i].addr.msf.second,
1071 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001075 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1077 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001078 if (stat)
1079 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1082 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001083 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1084 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1086 }
1087
Borislav Petkov570f89e2008-07-23 19:56:02 +02001088 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001089 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1091 sizeof(ms_tmp), sense);
1092 if (stat)
1093 return stat;
1094
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001095 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001097 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 ms_tmp.ent.addr.msf.frame);
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1102
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001103 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 stat = cdrom_get_last_written(cdi, &last_written);
1105 if (!stat && (last_written > toc->capacity)) {
1106 toc->capacity = last_written;
1107 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001108 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
1111 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001112 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 return 0;
1115}
1116
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001117int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001118{
1119 struct cdrom_info *info = drive->driver_data;
1120 struct cdrom_device_info *cdi = &info->devinfo;
1121 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001122 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001123
Borislav Petkov088b1b82009-01-02 13:34:47 +01001124 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001125
Borislav Petkov570f89e2008-07-23 19:56:02 +02001126 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001127 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001128
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001129 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001130 do {
1131 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001132 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1133 if (!stat)
1134 break;
1135 } while (--attempts);
1136 return stat;
1137}
1138
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001139void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001140{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001141 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001142 u16 curspeed, maxspeed;
1143
Borislav Petkov088b1b82009-01-02 13:34:47 +01001144 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001145
Borislav Petkov570f89e2008-07-23 19:56:02 +02001146 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001147 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1148 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001149 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001150 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1151 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001152 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001153
Borislav Petkov088b1b82009-01-02 13:34:47 +01001154 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1155 curspeed, maxspeed);
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001156
Julia Lawall72db37b2009-08-02 13:19:05 -07001157 cd->current_speed = DIV_ROUND_CLOSEST(curspeed, 176);
1158 cd->max_speed = DIV_ROUND_CLOSEST(maxspeed, 176);
Eric Piel9235e682005-06-23 00:10:29 -07001159}
1160
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001161#define IDE_CD_CAPABILITIES \
1162 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1163 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1164 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1165 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1166 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168static struct cdrom_device_ops ide_cdrom_dops = {
1169 .open = ide_cdrom_open_real,
1170 .release = ide_cdrom_release_real,
1171 .drive_status = ide_cdrom_drive_status,
1172 .media_changed = ide_cdrom_check_media_change_real,
1173 .tray_move = ide_cdrom_tray_move,
1174 .lock_door = ide_cdrom_lock_door,
1175 .select_speed = ide_cdrom_select_speed,
1176 .get_last_session = ide_cdrom_get_last_session,
1177 .get_mcn = ide_cdrom_get_mcn,
1178 .reset = ide_cdrom_reset,
1179 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001180 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 .generic_packet = ide_cdrom_packet,
1182};
1183
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001184static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 struct cdrom_info *info = drive->driver_data;
1187 struct cdrom_device_info *devinfo = &info->devinfo;
1188
Borislav Petkov088b1b82009-01-02 13:34:47 +01001189 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001192 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001194 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Borislav Petkov570f89e2008-07-23 19:56:02 +02001197 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001198 devinfo->mask |= CDC_SELECT_SPEED;
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 devinfo->disk = info->disk;
1201 return register_cdrom(devinfo);
1202}
1203
Borislav Petkove5e076a2008-04-26 22:25:15 +02001204static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001206 struct cdrom_info *cd = drive->driver_data;
1207 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001208 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1209 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 int nslots = 1;
1211
Borislav Petkov088b1b82009-01-02 13:34:47 +01001212 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1213 drive->media, drive->atapi_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001214
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001215 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1216 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1217 CDC_MO_DRIVE | CDC_RAM);
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001220 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001221 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001222 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return nslots;
1224 }
1225
Borislav Petkov570f89e2008-07-23 19:56:02 +02001226 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1227 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001228 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return nslots;
1230 }
1231
1232 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001233 * We have to cheat a little here. the packet will eventually be queued
1234 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1235 * Since this device hasn't been registered with the Uniform layer yet,
1236 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001238 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 cdi->ops = &ide_cdrom_dops;
1240
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001241 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return 0;
1243
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001244 if ((buf[8 + 6] & 0x01) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001245 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001246 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001247 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001248 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001249 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001250 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001251 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001252 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001253 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001254 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001255 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001256 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001257 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001258 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001259 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001260
1261 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001262 if (mechtype == mechtype_caddy ||
1263 mechtype == mechtype_popup ||
1264 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001265 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001268 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001270 } else if (mechtype == mechtype_individual_changer ||
1271 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001272 nslots = cdrom_number_of_slots(cdi);
1273 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001274 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001277 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001278
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001279 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001280
1281 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001282 if (cd->max_speed)
1283 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001284
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001285 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001287 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1288 printk(KERN_CONT " DVD%s%s",
1289 (cdi->mask & CDC_DVD_R) ? "" : "-R",
Borislav Petkov419a5b62008-10-17 18:09:14 +02001290 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001292 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1293 printk(KERN_CONT " CD%s%s",
1294 (cdi->mask & CDC_CD_R) ? "" : "-R",
1295 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001297 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1298 printk(KERN_CONT " changer w/%d slots", nslots);
1299 else
1300 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001302 printk(KERN_CONT ", %dkB Cache\n",
1303 be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 return nslots;
1306}
1307
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001308/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001309static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001311 int hard_sect = queue_logical_block_size(q);
Tejun Heo5b936292009-05-07 22:24:38 +09001312 long block = (long)blk_rq_pos(rq) / (hard_sect >> 9);
1313 unsigned long blocks = blk_rq_sectors(rq) / (hard_sect >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001315 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 if (rq_data_dir(rq) == READ)
1318 rq->cmd[0] = GPCMD_READ_10;
1319 else
1320 rq->cmd[0] = GPCMD_WRITE_10;
1321
1322 /*
1323 * fill in lba
1324 */
1325 rq->cmd[2] = (block >> 24) & 0xff;
1326 rq->cmd[3] = (block >> 16) & 0xff;
1327 rq->cmd[4] = (block >> 8) & 0xff;
1328 rq->cmd[5] = block & 0xff;
1329
1330 /*
1331 * and transfer length
1332 */
1333 rq->cmd[7] = (blocks >> 8) & 0xff;
1334 rq->cmd[8] = blocks & 0xff;
1335 rq->cmd_len = 10;
1336 return BLKPREP_OK;
1337}
1338
1339/*
1340 * Most of the SCSI commands are supported directly by ATAPI devices.
1341 * This transform handles the few exceptions.
1342 */
1343static int ide_cdrom_prep_pc(struct request *rq)
1344{
1345 u8 *c = rq->cmd;
1346
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001347 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (c[0] == READ_6 || c[0] == WRITE_6) {
1349 c[8] = c[4];
1350 c[5] = c[3];
1351 c[4] = c[2];
1352 c[3] = c[1] & 0x1f;
1353 c[2] = 0;
1354 c[1] &= 0xe0;
1355 c[0] += (READ_10 - READ_6);
1356 rq->cmd_len = 10;
1357 return BLKPREP_OK;
1358 }
1359
1360 /*
1361 * it's silly to pretend we understand 6-byte sense commands, just
1362 * reject with ILLEGAL_REQUEST and the caller should take the
1363 * appropriate action
1364 */
1365 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1366 rq->errors = ILLEGAL_REQUEST;
1367 return BLKPREP_KILL;
1368 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return BLKPREP_OK;
1371}
1372
Jens Axboe165125e2007-07-24 09:28:11 +02001373static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001375 if (rq->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return ide_cdrom_prep_fs(q, rq);
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001377 else if (rq->cmd_type == REQ_TYPE_BLOCK_PC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return ide_cdrom_prep_pc(rq);
1379
1380 return 0;
1381}
1382
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001383struct cd_list_entry {
1384 const char *id_model;
1385 const char *id_firmware;
1386 unsigned int cd_flags;
1387};
1388
Borislav Petkov5e657a92008-04-26 22:25:15 +02001389#ifdef CONFIG_IDE_PROC_FS
1390static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1391{
1392 unsigned long capacity, sectors_per_frame;
1393
1394 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1395 return 0;
1396
1397 return capacity * sectors_per_frame;
1398}
1399
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001400static int idecd_capacity_proc_show(struct seq_file *m, void *v)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001401{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001402 ide_drive_t *drive = m->private;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001403
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001404 seq_printf(m, "%llu\n", (long long)ide_cdrom_capacity(drive));
1405 return 0;
Borislav Petkov5e657a92008-04-26 22:25:15 +02001406}
1407
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001408static int idecd_capacity_proc_open(struct inode *inode, struct file *file)
1409{
1410 return single_open(file, idecd_capacity_proc_show, PDE(inode)->data);
1411}
1412
1413static const struct file_operations idecd_capacity_proc_fops = {
1414 .owner = THIS_MODULE,
1415 .open = idecd_capacity_proc_open,
1416 .read = seq_read,
1417 .llseek = seq_lseek,
1418 .release = single_release,
1419};
1420
Borislav Petkov5e657a92008-04-26 22:25:15 +02001421static ide_proc_entry_t idecd_proc[] = {
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07001422 { "capacity", S_IFREG|S_IRUGO, &idecd_capacity_proc_fops },
1423 {}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001424};
1425
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001426static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1427{
1428 return idecd_proc;
1429}
1430
1431static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1432{
Bartlomiej Zolnierkiewicz519d6802008-12-29 20:27:38 +01001433 return NULL;
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001434}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001435#endif
1436
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001437static const struct cd_list_entry ide_cd_quirks_list[] = {
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001438 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001439 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001440 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001441 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1442 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001443 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001444 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001445 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001446 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001447 /*
1448 * Sanyo 3 CD changer uses a non-standard command for CD changing
1449 * (by default standard ATAPI support for CD changers is used).
1450 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001451 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1452 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1453 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001454 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001455 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001456 /*
1457 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1458 * mode sense page capabilities size, but older drives break.
1459 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001460 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1461 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001462 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001463 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001464 /*
1465 * Some drives used by Apple don't advertise audio play
1466 * but they do support reading TOC & audio datas.
1467 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001468 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1469 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1470 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1471 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1472 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001473 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001474 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Márton Németh64c2eae2008-10-23 23:22:09 +02001475 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001476 { NULL, NULL, 0 }
1477};
1478
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001479static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001480{
1481 const struct cd_list_entry *cle = ide_cd_quirks_list;
1482
1483 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001484 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001485 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001486 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001487 return cle->cd_flags;
1488 cle++;
1489 }
1490
1491 return 0;
1492}
1493
Borislav Petkove5e076a2008-04-26 22:25:15 +02001494static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001496 struct cdrom_info *cd = drive->driver_data;
1497 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001498 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001499 u16 *id = drive->id;
1500 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 int nslots;
1502
Borislav Petkov088b1b82009-01-02 13:34:47 +01001503 ide_debug_log(IDE_DBG_PROBE, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001504
Bartlomiej Zolnierkiewicze698ea82009-03-31 20:15:16 +02001505 blk_queue_prep_rq(q, ide_cdrom_prep_fn);
1506 blk_queue_dma_alignment(q, 31);
1507 blk_queue_update_dma_pad(q, 15);
1508
1509 q->unplug_delay = max((1 * HZ) / 1000, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +02001511 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1512 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Borislav Petkov570f89e2008-07-23 19:56:02 +02001514 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001515 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001516 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1517 IDE_AFLAG_TOCADDR_AS_BCD);
1518 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001519 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001520 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1521 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001522 /* 3 => use CD in slot 0 */
1523 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001525 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Martin K. Petersene1defc42009-05-22 17:17:49 -04001527 blk_queue_logical_block_size(q, CD_FRAMESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001530 printk(KERN_ERR PFX "%s: %s failed to register device with the"
Borislav Petkov83c85652008-04-26 22:25:15 +02001531 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001532 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 return 1;
1534 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001535
1536 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return 0;
1538}
1539
Russell King4031bbe2006-01-06 11:41:00 +00001540static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 struct cdrom_info *info = drive->driver_data;
1543
Borislav Petkov088b1b82009-01-02 13:34:47 +01001544 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001545
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001546 ide_proc_unregister_driver(drive, info->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001547 device_del(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 del_gendisk(info->disk);
1549
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001550 mutex_lock(&idecd_ref_mutex);
1551 put_device(&info->dev);
1552 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001555static void ide_cd_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001557 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 struct cdrom_device_info *devinfo = &info->devinfo;
1559 ide_drive_t *drive = info->drive;
1560 struct gendisk *g = info->disk;
1561
Borislav Petkov088b1b82009-01-02 13:34:47 +01001562 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001563
Jesper Juhl6044ec82005-11-07 01:01:32 -08001564 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001565 if (devinfo->handle == drive)
1566 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 drive->driver_data = NULL;
1568 blk_queue_prep_rq(drive->queue, NULL);
1569 g->private_data = NULL;
1570 put_disk(g);
1571 kfree(info);
1572}
1573
Russell King4031bbe2006-01-06 11:41:00 +00001574static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001576static struct ide_driver ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001577 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001578 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001579 .name = "ide-cdrom",
1580 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001581 },
Russell King4031bbe2006-01-06 11:41:00 +00001582 .probe = ide_cd_probe,
1583 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 .version = IDECD_VERSION,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001585 .do_request = ide_cd_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001586#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001587 .proc_entries = ide_cd_proc_entries,
1588 .proc_devsets = ide_cd_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001589#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590};
1591
Al Viro488ca602008-03-02 10:26:23 -05001592static int idecd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Al Viro488ca602008-03-02 10:26:23 -05001594 struct cdrom_info *info = ide_cd_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 int rc = -ENOMEM;
1596
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001597 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return -ENXIO;
1599
Al Viro488ca602008-03-02 10:26:23 -05001600 rc = cdrom_open(&info->devinfo, bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 if (rc < 0)
1603 ide_cd_put(info);
1604
1605 return rc;
1606}
1607
Al Viro488ca602008-03-02 10:26:23 -05001608static int idecd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001610 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Al Viro488ca602008-03-02 10:26:23 -05001612 cdrom_release(&info->devinfo, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 ide_cd_put(info);
1615
1616 return 0;
1617}
1618
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001619static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1620{
1621 struct packet_command cgc;
1622 char buffer[16];
1623 int stat;
1624 char spindown;
1625
1626 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1627 return -EFAULT;
1628
1629 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1630
1631 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1632 if (stat)
1633 return stat;
1634
1635 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1636 return cdrom_mode_select(cdi, &cgc);
1637}
1638
1639static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1640{
1641 struct packet_command cgc;
1642 char buffer[16];
1643 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001644 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001645
1646 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1647
1648 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1649 if (stat)
1650 return stat;
1651
1652 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001653 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001654 return -EFAULT;
1655 return 0;
1656}
1657
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001658static int idecd_locked_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 unsigned int cmd, unsigned long arg)
1660{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001661 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 int err;
1663
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001664 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001665 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001666 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001667 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001668 return idecd_get_spindown(&info->devinfo, arg);
1669 default:
1670 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001671 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001672
Al Viro1bddd9e2008-09-02 17:19:43 -04001673 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (err == -EINVAL)
Al Viro488ca602008-03-02 10:26:23 -05001675 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 return err;
1678}
1679
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001680static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
1681 unsigned int cmd, unsigned long arg)
1682{
1683 int ret;
1684
1685 lock_kernel();
1686 ret = idecd_locked_ioctl(bdev, mode, cmd, arg);
1687 unlock_kernel();
1688
1689 return ret;
1690}
1691
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693static int idecd_media_changed(struct gendisk *disk)
1694{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001695 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return cdrom_media_changed(&info->devinfo);
1697}
1698
1699static int idecd_revalidate_disk(struct gendisk *disk)
1700{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001701 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001703
1704 ide_cd_read_toc(info->drive, &sense);
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 return 0;
1707}
1708
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001709static const struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001710 .owner = THIS_MODULE,
Al Viro488ca602008-03-02 10:26:23 -05001711 .open = idecd_open,
1712 .release = idecd_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001713 .ioctl = idecd_ioctl,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001714 .media_changed = idecd_media_changed,
1715 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716};
1717
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001718/* module options */
Borislav Petkov35d9b172008-10-13 21:39:49 +02001719static unsigned long debug_mask;
1720module_param(debug_mask, ulong, 0644);
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1723
Russell King4031bbe2006-01-06 11:41:00 +00001724static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
1726 struct cdrom_info *info;
1727 struct gendisk *g;
1728 struct request_sense sense;
1729
Borislav Petkov088b1b82009-01-02 13:34:47 +01001730 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1731 drive->driver_req, drive->media);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (!strstr("ide-cdrom", drive->driver_req))
1734 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (drive->media != ide_cdrom && drive->media != ide_optical)
1737 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001738
Borislav Petkov35d9b172008-10-13 21:39:49 +02001739 drive->debug_mask = debug_mask;
Borislav Petkovd6251d42009-01-06 17:20:58 +01001740 drive->irq_handler = cdrom_newpc_intr;
Borislav Petkov35d9b172008-10-13 21:39:49 +02001741
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08001742 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (info == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001744 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001745 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 goto failed;
1747 }
1748
1749 g = alloc_disk(1 << PARTN_BITS);
1750 if (!g)
1751 goto out_free_cd;
1752
1753 ide_init_disk(g, drive);
1754
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001755 info->dev.parent = &drive->gendev;
1756 info->dev.release = ide_cd_release;
1757 dev_set_name(&info->dev, dev_name(&drive->gendev));
1758
1759 if (device_register(&info->dev))
1760 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 info->drive = drive;
1763 info->driver = &ide_cdrom_driver;
1764 info->disk = g;
1765
1766 g->private_data = &info->driver;
1767
1768 drive->driver_data = info;
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 g->driverfs_dev = &drive->gendev;
1772 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1773 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001774 put_device(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 goto failed;
1776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001778 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 g->fops = &idecd_ops;
1780 g->flags |= GENHD_FL_REMOVABLE;
1781 add_disk(g);
1782 return 0;
1783
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001784out_free_disk:
1785 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786out_free_cd:
1787 kfree(info);
1788failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001789 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
1792static void __exit ide_cdrom_exit(void)
1793{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001794 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01001796
1797static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001799 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001800 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
Kay Sievers263756e2005-12-12 18:03:44 +01001803MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01001804MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805module_init(ide_cdrom_init);
1806module_exit(ide_cdrom_exit);
1807MODULE_LICENSE("GPL");