blob: c0cefe5becf342a3a9af3c370f2fcc632fbf3dbc [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>
7 * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * May be copied or modified under the terms of the GNU General Public
10 * License. See linux/COPYING for more information.
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * See Documentation/cdrom/ide-cd for usage information.
13 *
14 * Suggestions are welcome. Patches that work are more welcome though. ;-)
Bartlomiej Zolnierkiewicz116e6902009-03-31 20:14:59 +020015 *
16 * Documentation:
17 * Mt. Fuji (SFF8090 version 4) and ATAPI (SFF-8020i rev 2.6) standards.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
Bartlomiej Zolnierkiewicz03553352008-02-01 23:09:18 +010019 * For historical changelog please see:
20 * Documentation/ide/ChangeLog.ide-cd.1994-2004
21 */
22
Borislav Petkovfc8323f2008-10-13 21:39:48 +020023#define DRV_NAME "ide-cd"
24#define PFX DRV_NAME ": "
25
Bartlomiej Zolnierkiewicz3bb46632008-02-01 23:09:28 +010026#define IDECD_VERSION "5.00"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/types.h>
30#include <linux/kernel.h>
31#include <linux/delay.h>
32#include <linux/timer.h>
33#include <linux/slab.h>
34#include <linux/interrupt.h>
35#include <linux/errno.h>
36#include <linux/cdrom.h>
37#include <linux/ide.h>
38#include <linux/completion.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080039#include <linux/mutex.h>
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +010040#include <linux/bcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020042/* For SCSI -> ATAPI command conversion */
43#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Borislav Petkov9aba4682008-04-26 22:25:15 +020045#include <linux/irq.h>
46#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/byteorder.h>
Borislav Petkov9aba4682008-04-26 22:25:15 +020048#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/unaligned.h>
50
51#include "ide-cd.h"
52
Arjan van de Vencf8b8972006-03-23 03:00:45 -080053static DEFINE_MUTEX(idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010055static void ide_cd_release(struct device *);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct cdrom_info *ide_cd_get(struct gendisk *disk)
58{
59 struct cdrom_info *cd = NULL;
60
Arjan van de Vencf8b8972006-03-23 03:00:45 -080061 mutex_lock(&idecd_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +020062 cd = ide_drv_g(disk, cdrom_info);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020063 if (cd) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020064 if (ide_device_get(cd->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020065 cd = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020066 else
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010067 get_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020068
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020069 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -080070 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return cd;
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static void ide_cd_put(struct cdrom_info *cd)
75{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020076 ide_drive_t *drive = cd->drive;
77
Arjan van de Vencf8b8972006-03-23 03:00:45 -080078 mutex_lock(&idecd_ref_mutex);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010079 put_device(&cd->dev);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020080 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080081 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * Generic packet command support and error handling routines.
86 */
87
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020088/* Mark that we've seen a media change and invalidate our internal buffers. */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020089static void cdrom_saw_media_change(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +020091 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
Borislav Petkov570f89e2008-07-23 19:56:02 +020092 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
96 struct request_sense *sense)
97{
98 int log = 0;
99
Borislav Petkov088b1b82009-01-02 13:34:47 +0100100 ide_debug_log(IDE_DBG_SENSE, "sense_key: 0x%x", sense->sense_key);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200101
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
105 switch (sense->sense_key) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200106 case NO_SENSE:
107 case RECOVERED_ERROR:
108 break;
109 case NOT_READY:
110 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200111 * don't care about tray state messages for e.g. capacity
112 * commands or in-progress or becoming ready
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200113 */
114 if (sense->asc == 0x3a || sense->asc == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200116 log = 1;
117 break;
118 case ILLEGAL_REQUEST:
119 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200120 * don't log START_STOP unit with LoEj set, since we cannot
121 * reliably check if drive can auto-close
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200122 */
123 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200125 log = 1;
126 break;
127 case UNIT_ATTENTION:
128 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200129 * Make good and sure we've seen this potential media change.
130 * Some drives (i.e. Creative) fail to present the correct sense
131 * key in the error register.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200132 */
133 cdrom_saw_media_change(drive);
134 break;
135 default:
136 log = 1;
137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 return log;
140}
141
Borislav Petkove5e076a2008-04-26 22:25:15 +0200142static void cdrom_analyze_sense_data(ide_drive_t *drive,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct request *failed_command,
144 struct request_sense *sense)
145{
Alan Coxdbe217a2006-06-25 05:47:44 -0700146 unsigned long sector;
147 unsigned long bio_sectors;
Alan Coxdbe217a2006-06-25 05:47:44 -0700148 struct cdrom_info *info = drive->driver_data;
149
Borislav Petkov088b1b82009-01-02 13:34:47 +0100150 ide_debug_log(IDE_DBG_SENSE, "error_code: 0x%x, sense_key: 0x%x",
151 sense->error_code, sense->sense_key);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200152
153 if (failed_command)
Borislav Petkov088b1b82009-01-02 13:34:47 +0100154 ide_debug_log(IDE_DBG_SENSE, "failed cmd: 0x%x",
155 failed_command->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (!cdrom_log_sense(drive, failed_command, sense))
158 return;
159
160 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200161 * If a read toc is executed for a CD-R or CD-RW medium where the first
162 * toc has not been recorded yet, it will fail with 05/24/00 (which is a
163 * confusing error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
165 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
166 if (sense->sense_key == 0x05 && sense->asc == 0x24)
167 return;
168
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200169 /* current error */
170 if (sense->error_code == 0x70) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200171 switch (sense->sense_key) {
Alan Coxdbe217a2006-06-25 05:47:44 -0700172 case MEDIUM_ERROR:
173 case VOLUME_OVERFLOW:
174 case ILLEGAL_REQUEST:
175 if (!sense->valid)
176 break;
177 if (failed_command == NULL ||
178 !blk_fs_request(failed_command))
179 break;
180 sector = (sense->information[0] << 24) |
181 (sense->information[1] << 16) |
182 (sense->information[2] << 8) |
183 (sense->information[3]);
184
Alan Coxdbe217a2006-06-25 05:47:44 -0700185 if (drive->queue->hardsect_size == 2048)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200186 /* device sector size is 2K */
187 sector <<= 2;
Roel Kluineee49292008-04-28 23:44:43 +0200188
189 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200190 sector &= ~(bio_sectors - 1);
Alan Coxdbe217a2006-06-25 05:47:44 -0700191
Bartlomiej Zolnierkiewiczd3dd7102009-02-25 20:28:23 +0100192 /*
193 * The SCSI specification allows for the value
194 * returned by READ CAPACITY to be up to 75 2K
195 * sectors past the last readable block.
196 * Therefore, if we hit a medium error within the
197 * last 75 2K sectors, we decrease the saved size
198 * value.
199 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700200 if (sector < get_capacity(info->disk) &&
Borislav Petkove5e076a2008-04-26 22:25:15 +0200201 drive->probed_capacity - sector < 4 * 75)
Alan Coxdbe217a2006-06-25 05:47:44 -0700202 set_capacity(info->disk, sector);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200203 }
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100206 ide_cd_log_error(drive->name, failed_command, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense,
210 struct request *failed_command)
211{
212 struct cdrom_info *info = drive->driver_data;
Borislav Petkov3f2154d2009-01-27 17:42:28 +0100213 struct request *rq = &drive->request_sense_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Borislav Petkov088b1b82009-01-02 13:34:47 +0100215 ide_debug_log(IDE_DBG_SENSE, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (sense == NULL)
218 sense = &info->sense_data;
219
220 /* stuff the sense request in front of our current request */
FUJITA Tomonoried820f12008-07-15 21:21:45 +0200221 blk_rq_init(NULL, rq);
222 rq->cmd_type = REQ_TYPE_ATA_PC;
223 rq->rq_disk = info->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 rq->data = sense;
226 rq->cmd[0] = GPCMD_REQUEST_SENSE;
Borislav Petkove5e076a2008-04-26 22:25:15 +0200227 rq->cmd[4] = 18;
228 rq->data_len = 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Jens Axboe4aff5e22006-08-10 08:44:47 +0200230 rq->cmd_type = REQ_TYPE_SENSE;
Bartlomiej Zolnierkiewicze8a96aa2008-07-15 21:21:41 +0200231 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* NOTE! Save the failed command in "rq->buffer" */
234 rq->buffer = (void *) failed_command;
235
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200236 if (failed_command)
Borislav Petkov088b1b82009-01-02 13:34:47 +0100237 ide_debug_log(IDE_DBG_SENSE, "failed_cmd: 0x%x",
238 failed_command->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200239
Bartlomiej Zolnierkiewicz18660822009-03-24 23:22:44 +0100240 drive->hwif->rq = NULL;
241
242 elv_add_request(drive->queue, rq, ELEVATOR_INSERT_FRONT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Bartlomiej Zolnierkiewicz299c4852009-03-31 20:15:01 +0200245static void ide_cd_complete_failed_rq(ide_drive_t *drive, struct request *rq)
246{
247 /*
248 * For REQ_TYPE_SENSE, "rq->buffer" points to the original
249 * failed request
250 */
251 struct request *failed = (struct request *)rq->buffer;
252 struct cdrom_info *info = drive->driver_data;
253 void *sense = &info->sense_data;
254
255 if (failed) {
256 if (failed->sense) {
257 sense = failed->sense;
258 failed->sense_len = rq->sense_len;
259 }
260 cdrom_analyze_sense_data(drive, failed, sense);
261
262 if (ide_end_rq(drive, failed, -EIO, blk_rq_bytes(failed)))
263 BUG();
264 } else
265 cdrom_analyze_sense_data(drive, NULL, sense);
266}
267
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200268/*
269 * Returns:
270 * 0: if the request should be continued.
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200271 * 1: if the request will be going through error recovery.
272 * 2: if the request should be ended.
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200273 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret)
275{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200276 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100277 struct request *rq = hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int stat, err, sense_key;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200279
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200280 /* check for errors */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200281 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (stat_ret)
284 *stat_ret = stat;
285
286 if (OK_STAT(stat, good_stat, BAD_R_STAT))
287 return 0;
288
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200289 /* get the IDE error register */
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100290 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 sense_key = err >> 4;
292
Borislav Petkov088b1b82009-01-02 13:34:47 +0100293 ide_debug_log(IDE_DBG_RQ, "stat: 0x%x, good_stat: 0x%x, cmd[0]: 0x%x, "
294 "rq->cmd_type: 0x%x, err: 0x%x",
295 stat, good_stat, rq->cmd[0], rq->cmd_type,
296 err);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200297
Jens Axboe4aff5e22006-08-10 08:44:47 +0200298 if (blk_sense_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200299 /*
300 * We got an error trying to get sense info from the drive
301 * (probably while trying to recover from a former error).
302 * Just give up.
303 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200304 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200305 return 2;
Jens Axboe8770c012006-10-12 17:24:52 +0200306 } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* All other functions, except for READ. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /*
310 * if we have an error, pass back CHECK_CONDITION as the
311 * scsi status byte
312 */
Jens Axboeb7156732006-11-13 18:05:02 +0100313 if (blk_pc_request(rq) && !rq->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 rq->errors = SAM_STAT_CHECK_CONDITION;
315
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200316 /* check for tray open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (sense_key == NOT_READY) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200318 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 } else if (sense_key == UNIT_ATTENTION) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200320 /* check for media change */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200321 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return 0;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200323 } else if (sense_key == ILLEGAL_REQUEST &&
324 rq->cmd[0] == GPCMD_START_STOP_UNIT) {
325 /*
326 * Don't print error message for this condition--
327 * SFF8090i indicates that 5/24/00 is the correct
328 * response to a request to close the tray if the
329 * drive doesn't have that capability.
330 * cdrom_log_sense() knows this!
331 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200332 } else if (!(rq->cmd_flags & REQ_QUIET)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200333 /* otherwise, print an error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 ide_dump_status(drive, "packet command error", stat);
335 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200336
Jens Axboe4aff5e22006-08-10 08:44:47 +0200337 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /*
340 * instead of playing games with moving completions around,
341 * remove failed request completely and end it when the
342 * request sense has completed
343 */
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100344 goto end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 } else if (blk_fs_request(rq)) {
347 int do_end_request = 0;
348
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200349 /* handle errors from READ and WRITE requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 if (blk_noretry_request(rq))
352 do_end_request = 1;
353
354 if (sense_key == NOT_READY) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200355 /* tray open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (rq_data_dir(rq) == READ) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200357 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200359 /* fail the request */
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200360 printk(KERN_ERR PFX "%s: tray open\n",
361 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 do_end_request = 1;
363 } else {
364 struct cdrom_info *info = drive->driver_data;
365
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200366 /*
367 * Allow the drive 5 seconds to recover, some
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * devices will return this error while flushing
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200369 * data from cache.
370 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (!rq->errors)
Borislav Petkov83c85652008-04-26 22:25:15 +0200372 info->write_timeout = jiffies +
373 ATAPI_WAIT_WRITE_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 rq->errors = 1;
375 if (time_after(jiffies, info->write_timeout))
376 do_end_request = 1;
377 else {
Bartlomiej Zolnierkiewicz6ea52222008-12-29 20:27:31 +0100378 struct request_queue *q = drive->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 unsigned long flags;
380
381 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200382 * take a breather relying on the unplug
383 * timer to kick us again
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 */
Bartlomiej Zolnierkiewicz6ea52222008-12-29 20:27:31 +0100385 spin_lock_irqsave(q->queue_lock, flags);
386 blk_plug_device(q);
387 spin_unlock_irqrestore(q->queue_lock, flags);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 1;
390 }
391 }
392 } else if (sense_key == UNIT_ATTENTION) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200393 /* media change */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200394 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200396 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200397 * Arrange to retry the request but be sure to give up
398 * if we've retried too many times.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (++rq->errors > ERROR_MAX)
401 do_end_request = 1;
402 } else if (sense_key == ILLEGAL_REQUEST ||
403 sense_key == DATA_PROTECT) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200404 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200405 * No point in retrying after an illegal request or data
406 * protect error.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200407 */
Bartlomiej Zolnierkiewicz1ab6d742009-03-31 20:15:00 +0200408 ide_dump_status(drive, "command error", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 do_end_request = 1;
410 } else if (sense_key == MEDIUM_ERROR) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200411 /*
412 * No point in re-trying a zillion times on a bad
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200413 * sector. If we got here the error is not correctable.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200414 */
Bartlomiej Zolnierkiewicz1ab6d742009-03-31 20:15:00 +0200415 ide_dump_status(drive, "media error (bad sector)",
416 stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 do_end_request = 1;
418 } else if (sense_key == BLANK_CHECK) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200419 /* disk appears blank ?? */
Bartlomiej Zolnierkiewicz1ab6d742009-03-31 20:15:00 +0200420 ide_dump_status(drive, "media error (blank)", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 do_end_request = 1;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200422 } else if ((err & ~ATA_ABORTED) != 0) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200423 /* go to the default handler for other errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 ide_error(drive, "cdrom_decode_status", stat);
425 return 1;
426 } else if ((++rq->errors > ERROR_MAX)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200427 /* we've racked up too many retries, abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 do_end_request = 1;
429 }
430
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200431 /*
432 * End a request through request sense analysis when we have
433 * sense data. We need this in order to perform end of media
434 * processing.
435 */
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100436 if (do_end_request)
437 goto end_request;
Alan Coxdbe217a2006-06-25 05:47:44 -0700438
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100439 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200440 * If we got a CHECK_CONDITION status, queue
441 * a request sense command.
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100442 */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200443 if (stat & ATA_ERR)
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100444 cdrom_queue_request_sense(drive, NULL, NULL);
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200445 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 } else {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200447 blk_dump_rq_flags(rq, PFX "bad rq");
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200448 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100451end_request:
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200452 if (stat & ATA_ERR) {
Bartlomiej Zolnierkiewicz6ea52222008-12-29 20:27:31 +0100453 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100454 unsigned long flags;
455
Bartlomiej Zolnierkiewicz6ea52222008-12-29 20:27:31 +0100456 spin_lock_irqsave(q->queue_lock, flags);
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100457 blkdev_dequeue_request(rq);
Bartlomiej Zolnierkiewicz6ea52222008-12-29 20:27:31 +0100458 spin_unlock_irqrestore(q->queue_lock, flags);
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100459
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100460 hwif->rq = NULL;
Bartlomiej Zolnierkiewicz1d0bf582008-12-29 20:27:30 +0100461
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100462 cdrom_queue_request_sense(drive, rq->sense, rq);
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200463 return 1;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100464 } else
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200465 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200468/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * Check the contents of the interrupt reason register from the cdrom
470 * and attempt to recover if there are problems. Returns 0 if everything's
471 * ok; nonzero if the request has been terminated.
472 */
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100473static int ide_cd_check_ireason(ide_drive_t *drive, struct request *rq,
474 int len, int ireason, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200476 ide_hwif_t *hwif = drive->hwif;
477
Borislav Petkov088b1b82009-01-02 13:34:47 +0100478 ide_debug_log(IDE_DBG_FUNC, "ireason: 0x%x, rw: 0x%x", ireason, rw);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200479
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100480 /*
481 * ireason == 0: the drive wants to receive data from us
482 * ireason == 2: the drive is expecting to transfer data to us
483 */
484 if (ireason == (!rw << 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return 0;
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100486 else if (ireason == (rw << 1)) {
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +0100487
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200488 /* whoops... */
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200489 printk(KERN_ERR PFX "%s: %s: wrong transfer direction!\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200490 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Borislav Petkovae8789f2008-07-16 20:33:45 +0200492 ide_pad_transfer(drive, rw, len);
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100493 } else if (rw == 0 && ireason == 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200494 /*
495 * Some drives (ASUS) seem to tell us that status info is
496 * available. Just get it and ignore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200498 (void)hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return 0;
500 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200501 /* drive wants a command packet, or invalid ireason... */
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200502 printk(KERN_ERR PFX "%s: %s: bad interrupt reason 0x%02x\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200503 drive->name, __func__, ireason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100506 if (rq->cmd_type == REQ_TYPE_ATA_PC)
507 rq->cmd_flags |= REQ_FAILED;
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return -1;
510}
511
Borislav Petkov90eb8082008-07-16 20:33:46 +0200512static ide_startstop_t ide_cd_prepare_rw_request(ide_drive_t *drive,
513 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Borislav Petkov088b1b82009-01-02 13:34:47 +0100515 ide_debug_log(IDE_DBG_RQ, "rq->cmd_flags: 0x%x", rq->cmd_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200516
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200517 /* set up the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 rq->timeout = ATAPI_WAIT_PC;
519
Borislav Petkov90eb8082008-07-16 20:33:46 +0200520 return ide_started;
521}
522
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200523static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct request *rq)
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100524{
Borislav Petkov088b1b82009-01-02 13:34:47 +0100525 ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200526
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100527 /*
528 * Some of the trailing request sense fields are optional,
529 * and some drives don't send them. Sigh.
530 */
531 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
532 rq->data_len > 0 && rq->data_len <= 5)
533 while (rq->data_len > 0) {
534 *(u8 *)rq->data++ = 0;
535 --rq->data_len;
536 }
537}
538
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200539int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
540 int write, void *buffer, unsigned *bufflen,
541 struct request_sense *sense, int timeout,
542 unsigned int cmd_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200544 struct cdrom_info *info = drive->driver_data;
545 struct request_sense local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int retries = 10;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200547 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200549 if (!sense)
550 sense = &local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Borislav Petkov088b1b82009-01-02 13:34:47 +0100552 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
553 "cmd_flags: 0x%x",
554 cmd[0], write, timeout, cmd_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200555
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200556 /* start of retry loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 do {
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200558 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200561 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
562
563 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
564 rq->cmd_type = REQ_TYPE_ATA_PC;
565 rq->sense = sense;
566 rq->cmd_flags |= cmd_flags;
567 rq->timeout = timeout;
568 if (buffer) {
569 rq->data = buffer;
570 rq->data_len = *bufflen;
571 }
572
573 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
574
575 if (buffer)
576 *bufflen = rq->data_len;
577
578 flags = rq->cmd_flags;
579 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200581 /*
582 * FIXME: we should probably abort/retry or something in case of
583 * failure.
584 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200585 if (flags & REQ_FAILED) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200586 /*
587 * The request failed. Retry if it was due to a unit
588 * attention status (usually means media was changed).
589 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200590 struct request_sense *reqbuf = sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (reqbuf->sense_key == UNIT_ATTENTION)
593 cdrom_saw_media_change(drive);
594 else if (reqbuf->sense_key == NOT_READY &&
595 reqbuf->asc == 4 && reqbuf->ascq != 4) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200596 /*
597 * The drive is in the process of loading
598 * a disk. Retry, but wait a little to give
599 * the drive time to complete the load.
600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 ssleep(2);
602 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200603 /* otherwise, don't retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 retries = 0;
605 }
606 --retries;
607 }
608
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200609 /* end of retry loop */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200610 } while ((flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200612 /* return an error if the command failed */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200613 return (flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200616static void ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
617{
618 unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
619
620 if (cmd->tf_flags & IDE_TFLAG_WRITE)
621 nr_bytes -= cmd->last_xfer_len;
622
623 if (nr_bytes > 0)
624 ide_complete_rq(drive, 0, nr_bytes);
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200628 * Called from blk_end_request_callback() after the data of the request is
629 * completed and before the request itself is completed. By returning value '1',
630 * blk_end_request_callback() returns immediately without completing it.
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500631 */
632static int cdrom_newpc_intr_dummy_cb(struct request *rq)
633{
634 return 1;
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
638{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200639 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200640 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100641 struct request *rq = hwif->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 xfer_func_t *xferfunc;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100643 ide_expiry_t *expiry = NULL;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200644 int dma_error = 0, dma, stat, thislen, uptodate = 0;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200645 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc, nsectors;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200646 int sense = blk_sense_request(rq);
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100647 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200648 u16 len;
649 u8 ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Borislav Petkov088b1b82009-01-02 13:34:47 +0100651 ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x",
652 rq->cmd[0], write);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200653
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200654 /* check for errors */
Borislav Petkov12469ac2008-10-13 21:39:49 +0200655 dma = drive->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (dma) {
Borislav Petkov12469ac2008-10-13 21:39:49 +0200657 drive->dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200658 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100659 if (dma_error) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200660 printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100661 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100662 ide_dma_off(drive);
663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200666 rc = cdrom_decode_status(drive, 0, &stat);
667 if (rc) {
668 if (rc == 2)
669 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return ide_stopped;
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200673 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100675 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100677 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100678 ide_complete_rq(drive, 0, rq->nr_sectors
679 ? (rq->nr_sectors << 9) : ide_rq_bytes(rq));
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100680 return ide_stopped;
Borislav Petkov9e772d02009-02-02 20:12:21 +0100681 } else if (rq->cmd_type == REQ_TYPE_ATA_PC && !rq->bio) {
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100682 ide_complete_rq(drive, 0, 512);
Borislav Petkov9e772d02009-02-02 20:12:21 +0100683 return ide_stopped;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100684 }
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200685 if (blk_pc_request(rq) == 0 && uptodate == 0)
686 rq->cmd_flags |= REQ_FAILED;
687 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200690 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100691
692 thislen = blk_fs_request(rq) ? len : rq->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (thislen > len)
694 thislen = len;
695
Borislav Petkov088b1b82009-01-02 13:34:47 +0100696 ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
697 stat, thislen);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200698
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200699 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200700 if ((stat & ATA_DRQ) == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100701 if (blk_fs_request(rq)) {
702 /*
703 * If we're not done reading/writing, complain.
704 * Otherwise, complete the command normally.
705 */
706 uptodate = 1;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200707 if (cmd->nleft > 0) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200708 printk(KERN_ERR PFX "%s: %s: data underrun "
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200709 "(%u bytes)\n", drive->name, __func__,
710 cmd->nleft);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100711 if (!write)
712 rq->cmd_flags |= REQ_FAILED;
713 uptodate = 0;
714 }
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100715 } else if (!blk_pc_request(rq)) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200716 ide_cd_request_sense_fixup(drive, rq);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200717 /* complain if we still have data left to transfer */
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100718 uptodate = rq->data_len ? 0 : 1;
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200719 if (uptodate == 0)
720 rq->cmd_flags |= REQ_FAILED;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100721 }
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200722 goto out_end;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200725 /* check which way to transfer data */
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200726 rc = ide_cd_check_ireason(drive, rq, len, ireason, write);
727 if (rc)
728 goto out_end;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100729
Bartlomiej Zolnierkiewicz06a449e2009-03-31 20:15:13 +0200730 cmd->last_xfer_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100732 if (ireason == 0) {
733 write = 1;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200734 xferfunc = hwif->tp_ops->output_data;
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100735 } else {
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100736 write = 0;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200737 xferfunc = hwif->tp_ops->input_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739
Borislav Petkov088b1b82009-01-02 13:34:47 +0100740 ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
741 "ireason: 0x%x",
742 rq->cmd_type, ireason);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200743
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200744 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 while (thislen > 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100746 u8 *ptr = blk_fs_request(rq) ? NULL : rq->data;
Bartlomiej Zolnierkiewicza11e77d2008-02-01 23:09:27 +0100747 int blen = rq->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200749 /* bio backed? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (rq->bio) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100751 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200752 blen = min_t(int, thislen, cmd->nleft);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100753 } else {
754 ptr = bio_data(rq->bio);
755 blen = bio_iovec(rq->bio)->bv_len;
756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200759 if ((blk_fs_request(rq) && cmd->nleft == 0) ||
760 (blk_fs_request(rq) == 0 && ptr == NULL)) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100761 if (blk_fs_request(rq) && !write)
762 /*
Borislav Petkov968c4962008-04-26 17:36:37 +0200763 * If the buffers are full, pipe the rest into
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200764 * oblivion.
765 */
Borislav Petkovae8789f2008-07-16 20:33:45 +0200766 ide_pad_transfer(drive, 0, thislen);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100767 else {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200768 printk(KERN_ERR PFX "%s: confused, missing data\n",
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100769 drive->name);
770 blk_dump_rq_flags(rq, rq_data_dir(rq)
771 ? "cdrom_newpc_intr, write"
772 : "cdrom_newpc_intr, read");
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 break;
775 }
776
777 if (blen > thislen)
778 blen = thislen;
779
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200780 if (blk_fs_request(rq)) {
781 ide_pio_bytes(drive, cmd, write, blen);
782 cmd->last_xfer_len += blen;
783 } else
784 xferfunc(drive, NULL, ptr, blen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 thislen -= blen;
787 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200789 if (blk_fs_request(rq) == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100790 rq->data_len -= blen;
791
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500792 /*
793 * The request can't be completed until DRQ is cleared.
794 * So complete the data, but don't complete the request
795 * using the dummy function for the callback feature
796 * of blk_end_request_callback().
797 */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100798 if (rq->bio)
799 blk_end_request_callback(rq, 0, blen,
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500800 cdrom_newpc_intr_dummy_cb);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100801 else
802 rq->data += blen;
803 }
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200804 if (sense && write == 0)
Andreas Schwabbcd88ac2008-02-26 21:50:35 +0100805 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200808 /* pad, if necessary */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100809 if (!blk_fs_request(rq) && len > 0)
Borislav Petkovae8789f2008-07-16 20:33:45 +0200810 ide_pad_transfer(drive, write, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100812 if (blk_pc_request(rq)) {
813 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100814 } else {
815 timeout = ATAPI_WAIT_PC;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100816 if (!blk_fs_request(rq))
Borislav Petkov4cad0852009-01-02 16:12:53 +0100817 expiry = ide_cd_expiry;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100818 }
819
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100820 hwif->expiry = expiry;
821 ide_set_handler(drive, cdrom_newpc_intr, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100823
Bartlomiej Zolnierkiewicz984c5e52009-03-31 20:15:03 +0200824out_end:
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200825 if (blk_pc_request(rq) && rc == 0) {
Kiyoshi Ueda14e04c32008-02-19 01:41:26 +0100826 unsigned int dlen = rq->data_len;
827
828 if (dma)
829 rq->data_len = 0;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100830
Bartlomiej Zolnierkiewicz3c8a2cc2008-12-29 20:27:31 +0100831 if (blk_end_request(rq, 0, dlen))
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100832 BUG();
Bartlomiej Zolnierkiewicz1d0bf582008-12-29 20:27:30 +0100833
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100834 hwif->rq = NULL;
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100835 } else {
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200836 if (sense && uptodate)
837 ide_cd_complete_failed_rq(drive, rq);
838
839 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200840 if (cmd->nleft == 0)
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200841 uptodate = 1;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200842 if (uptodate == 0)
843 ide_cd_error_cmd(drive, cmd);
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200844 } else {
845 if (uptodate <= 0 && rq->errors == 0)
846 rq->errors = -EIO;
847 }
848
849 /* make sure it's fully ended */
850 if (blk_pc_request(rq))
851 nsectors = (rq->data_len + 511) >> 9;
852 else
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200853 nsectors = rq->hard_nr_sectors;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200854
855 if (nsectors == 0)
856 nsectors = 1;
857
858 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
859
Bartlomiej Zolnierkiewicz8a116972009-03-31 20:15:03 +0200860 if (sense && rc == 2)
861 ide_error(drive, "request sense failure", stat);
Bartlomiej Zolnierkiewiczff1bfbc2008-02-01 23:09:25 +0100862 }
863 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100866static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100868 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200869 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100870 int write = rq_data_dir(rq) == WRITE;
871 unsigned short sectors_per_frame =
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200872 queue_hardsect_size(q) >> SECTOR_BITS;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100873
Borislav Petkov088b1b82009-01-02 13:34:47 +0100874 ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, write: 0x%x, "
875 "secs_per_frame: %u",
876 rq->cmd[0], write, sectors_per_frame);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200877
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100878 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200879 /* disk has become write protected */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200880 if (get_disk_ro(cd->disk))
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100881 return ide_stopped;
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100882 } else {
883 /*
884 * We may be retrying this request after an error. Fix up any
885 * weirdness which might be present in the request packet.
886 */
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200887 q->prep_rq_fn(q, rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200890 /* fs requests *must* be hardware frame aligned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200892 (rq->sector & (sectors_per_frame - 1)))
893 return ide_stopped;
894
895 /* use DMA, if possible */
896 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +0100898 if (write)
899 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200901 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200904static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Borislav Petkov088b1b82009-01-02 13:34:47 +0100907 ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
908 rq->cmd[0], rq->cmd_type);
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200909
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100910 if (blk_pc_request(rq))
911 rq->cmd_flags |= REQ_QUIET;
912 else
913 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Borislav Petkov12469ac2008-10-13 21:39:49 +0200915 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200917 /* sg request */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200918 if (rq->bio || ((rq->cmd_type == REQ_TYPE_ATA_PC) && rq->data_len)) {
919 struct request_queue *q = drive->queue;
920 unsigned int alignment;
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200921 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200923 if (rq->bio)
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200924 buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200925 else
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200926 buf = rq->data;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200927
Borislav Petkov12469ac2008-10-13 21:39:49 +0200928 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /*
931 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -0700932 *
933 * NOTE! The "len" and "addr" checks should possibly have
934 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +0200936 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Borislav Petkov9bd27cb2008-11-02 21:40:07 +0100937 if ((unsigned long)buf & alignment
938 || rq->data_len & q->dma_pad_mask
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +0200939 || object_is_on_stack(buf))
Borislav Petkov12469ac2008-10-13 21:39:49 +0200940 drive->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Borislav Petkov99384ae2008-07-16 20:33:45 +0200944static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +0200945 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100947 struct ide_cmd cmd;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200948 int uptodate = 0, nsectors;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100949
Borislav Petkov088b1b82009-01-02 13:34:47 +0100950 ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
951 rq->cmd[0], (unsigned long long)block);
952
953 if (drive->debug_mask & IDE_DBG_RQ)
954 blk_dump_rq_flags(rq, "ide_cd_do_request");
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200957 if (cdrom_start_rw(drive, rq) == ide_stopped ||
Bartlomiej Zolnierkiewicz5ed57ad2009-03-31 20:15:05 +0200958 ide_cd_prepare_rw_request(drive, rq) == ide_stopped) {
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200959 goto out_end;
Bartlomiej Zolnierkiewicz5ed57ad2009-03-31 20:15:05 +0200960 }
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +0100961 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
Jens Axboecea28852006-10-12 15:08:45 +0200962 rq->cmd_type == REQ_TYPE_ATA_PC) {
Borislav Petkov7fcebda2008-07-16 20:33:46 +0200963 if (!rq->timeout)
964 rq->timeout = ATAPI_WAIT_PC;
965
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200966 cdrom_do_block_pc(drive, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200967 } else if (blk_special_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200968 /* right now this can only be a reset... */
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200969 uptodate = 1;
970 goto out_end;
Borislav Petkovab9d6e32008-07-16 20:33:45 +0200971 } else {
Borislav Petkovfc8323f2008-10-13 21:39:48 +0200972 blk_dump_rq_flags(rq, DRV_NAME " bad flags");
Bartlomiej Zolnierkiewicz5ed57ad2009-03-31 20:15:05 +0200973 if (rq->errors == 0)
974 rq->errors = -EIO;
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200975 goto out_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
Borislav Petkovb6ca4402008-07-16 20:33:46 +0200977
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100978 memset(&cmd, 0, sizeof(cmd));
979
980 if (rq_data_dir(rq))
981 cmd.tf_flags |= IDE_TFLAG_WRITE;
982
983 cmd.rq = rq;
984
Bartlomiej Zolnierkiewicza08915b2009-03-31 20:15:13 +0200985 if (blk_fs_request(rq)) {
986 ide_init_sg_cmd(&cmd, rq->nr_sectors << 9);
987 ide_map_sg(drive, &cmd);
988 }
989
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100990 return ide_issue_pc(drive, &cmd);
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200991out_end:
Bartlomiej Zolnierkiewiczc4c69e22009-03-31 20:15:04 +0200992 nsectors = rq->hard_nr_sectors;
Bartlomiej Zolnierkiewiczf63174e2009-03-31 20:15:04 +0200993
994 if (nsectors == 0)
995 nsectors = 1;
996
997 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
998
Bartlomiej Zolnierkiewicze0458cc2009-03-31 20:15:02 +0200999 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 * Ioctl handling.
1004 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001005 * Routines which queue packet commands take as a final argument a pointer to a
1006 * request_sense struct. If execution of the command results in an error with a
1007 * CHECK CONDITION status, this structure will be filled with the results of the
1008 * subsequent request sense command. The pointer can also be NULL, in which case
1009 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
Borislav Petkove5e076a2008-04-26 22:25:15 +02001011static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001013 msf->minute = bcd2bin(msf->minute);
1014 msf->second = bcd2bin(msf->second);
1015 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Borislav Petkovf9afd182008-02-01 23:09:29 +01001018int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 struct cdrom_info *info = drive->driver_data;
1021 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001022 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Borislav Petkov088b1b82009-01-02 13:34:47 +01001024 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001025
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001026 memset(cmd, 0, BLK_MAX_CDB);
1027 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001029 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001030 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
1031 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001032 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001033 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Harvey Harrison141d3b22008-07-23 19:56:02 +02001035 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
1039 unsigned long *sectors_per_frame,
1040 struct request_sense *sense)
1041{
1042 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001043 __be32 lba;
1044 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 } capbuf;
1046
1047 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001048 unsigned char cmd[BLK_MAX_CDB];
1049 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +02001050 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Borislav Petkov088b1b82009-01-02 13:34:47 +01001052 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001053
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001054 memset(cmd, 0, BLK_MAX_CDB);
1055 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001057 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
1058 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001059 if (stat)
1060 return stat;
1061
1062 /*
1063 * Sanity check the given block size
1064 */
Petr Tesarik938bb032008-08-05 18:17:02 +02001065 blocklen = be32_to_cpu(capbuf.blocklen);
1066 switch (blocklen) {
1067 case 512:
1068 case 1024:
1069 case 2048:
1070 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001071 break;
1072 default:
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001073 printk(KERN_ERR PFX "%s: weird block size %u\n",
1074 drive->name, blocklen);
1075 printk(KERN_ERR PFX "%s: default to 2kb block size\n",
1076 drive->name);
Petr Tesarik938bb032008-08-05 18:17:02 +02001077 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001078 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001081 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +02001082 *sectors_per_frame = blocklen >> SECTOR_BITS;
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001083
Borislav Petkov088b1b82009-01-02 13:34:47 +01001084 ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
1085 *capacity, *sectors_per_frame);
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001086
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001087 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
1091 int format, char *buf, int buflen,
1092 struct request_sense *sense)
1093{
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001094 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Borislav Petkov088b1b82009-01-02 13:34:47 +01001096 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001097
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001098 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001100 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1101 cmd[6] = trackno;
1102 cmd[7] = (buflen >> 8);
1103 cmd[8] = (buflen & 0xff);
1104 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001107 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001109 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001113int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 int stat, ntracks, i;
1116 struct cdrom_info *info = drive->driver_data;
1117 struct cdrom_device_info *cdi = &info->devinfo;
1118 struct atapi_toc *toc = info->toc;
1119 struct {
1120 struct atapi_toc_header hdr;
1121 struct atapi_toc_entry ent;
1122 } ms_tmp;
1123 long last_written;
1124 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
1125
Borislav Petkov088b1b82009-01-02 13:34:47 +01001126 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001129 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001130 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (toc == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001132 printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001133 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return -ENOMEM;
1135 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001136 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
1138
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001139 /*
1140 * Check to see if the existing data is still valid. If it is,
1141 * just return.
1142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 (void) cdrom_check_status(drive, sense);
1144
Borislav Petkov570f89e2008-07-23 19:56:02 +02001145 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return 0;
1147
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001148 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
1150 sense);
1151 if (stat)
1152 toc->capacity = 0x1fffff;
1153
1154 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001155 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -07001156 drive->probed_capacity = toc->capacity * sectors_per_frame;
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 blk_queue_hardsect_size(drive->queue,
1159 sectors_per_frame << SECTOR_BITS);
1160
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001161 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1163 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001164 if (stat)
1165 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Borislav Petkov570f89e2008-07-23 19:56:02 +02001167 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001168 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1169 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1173 if (ntracks <= 0)
1174 return -EIO;
1175 if (ntracks > MAX_TRACKS)
1176 ntracks = MAX_TRACKS;
1177
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001178 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1180 (char *)&toc->hdr,
1181 sizeof(struct atapi_toc_header) +
1182 (ntracks + 1) *
1183 sizeof(struct atapi_toc_entry), sense);
1184
1185 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001186 /*
1187 * Cds with CDI tracks only don't have any TOC entries, despite
1188 * of this the returned values are
1189 * first_track == last_track = number of CDI tracks + 1,
1190 * so that this case is indistinguishable from the same layout
1191 * plus an additional audio track. If we get an error for the
1192 * regular case, we assume a CDI without additional audio
1193 * tracks. In this case the readable TOC is empty (CDI tracks
1194 * are not included) and only holds the Leadout entry.
1195 *
1196 * Heiko Eißfeldt.
1197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 ntracks = 0;
1199 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1200 (char *)&toc->hdr,
1201 sizeof(struct atapi_toc_header) +
1202 (ntracks + 1) *
1203 sizeof(struct atapi_toc_entry),
1204 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001205 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001207
Borislav Petkov570f89e2008-07-23 19:56:02 +02001208 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001209 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1210 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001211 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 toc->hdr.first_track = CDROM_LEADOUT;
1213 toc->hdr.last_track = CDROM_LEADOUT;
1214 }
1215 }
1216
1217 if (stat)
1218 return stat;
1219
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001220 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Borislav Petkov570f89e2008-07-23 19:56:02 +02001222 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001223 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1224 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001227 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001228 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1229 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001230 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 msf_from_bcd(&toc->ent[i].addr.msf);
1232 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001233 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1234 toc->ent[i].addr.msf.second,
1235 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001239 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1241 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001242 if (stat)
1243 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1246 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001247 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1248 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1250 }
1251
Borislav Petkov570f89e2008-07-23 19:56:02 +02001252 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001253 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1255 sizeof(ms_tmp), sense);
1256 if (stat)
1257 return stat;
1258
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001259 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001261 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 ms_tmp.ent.addr.msf.frame);
1263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1266
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001267 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 stat = cdrom_get_last_written(cdi, &last_written);
1269 if (!stat && (last_written > toc->capacity)) {
1270 toc->capacity = last_written;
1271 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001272 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274
1275 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001276 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 return 0;
1279}
1280
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001281int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001282{
1283 struct cdrom_info *info = drive->driver_data;
1284 struct cdrom_device_info *cdi = &info->devinfo;
1285 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001286 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001287
Borislav Petkov088b1b82009-01-02 13:34:47 +01001288 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001289
Borislav Petkov570f89e2008-07-23 19:56:02 +02001290 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001291 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001292
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001293 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001294 do {
1295 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001296 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1297 if (!stat)
1298 break;
1299 } while (--attempts);
1300 return stat;
1301}
1302
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001303void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001304{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001305 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001306 u16 curspeed, maxspeed;
1307
Borislav Petkov088b1b82009-01-02 13:34:47 +01001308 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001309
Borislav Petkov570f89e2008-07-23 19:56:02 +02001310 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001311 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1312 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001313 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001314 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1315 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001316 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001317
Borislav Petkov088b1b82009-01-02 13:34:47 +01001318 ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1319 curspeed, maxspeed);
Borislav Petkov71b429ca2008-10-17 18:09:14 +02001320
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001321 cd->current_speed = (curspeed + (176/2)) / 176;
1322 cd->max_speed = (maxspeed + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07001323}
1324
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001325#define IDE_CD_CAPABILITIES \
1326 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1327 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1328 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1329 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1330 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static struct cdrom_device_ops ide_cdrom_dops = {
1333 .open = ide_cdrom_open_real,
1334 .release = ide_cdrom_release_real,
1335 .drive_status = ide_cdrom_drive_status,
1336 .media_changed = ide_cdrom_check_media_change_real,
1337 .tray_move = ide_cdrom_tray_move,
1338 .lock_door = ide_cdrom_lock_door,
1339 .select_speed = ide_cdrom_select_speed,
1340 .get_last_session = ide_cdrom_get_last_session,
1341 .get_mcn = ide_cdrom_get_mcn,
1342 .reset = ide_cdrom_reset,
1343 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001344 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 .generic_packet = ide_cdrom_packet,
1346};
1347
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001348static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 struct cdrom_info *info = drive->driver_data;
1351 struct cdrom_device_info *devinfo = &info->devinfo;
1352
Borislav Petkov088b1b82009-01-02 13:34:47 +01001353 ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001356 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001358 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Borislav Petkov570f89e2008-07-23 19:56:02 +02001361 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001362 devinfo->mask |= CDC_SELECT_SPEED;
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 devinfo->disk = info->disk;
1365 return register_cdrom(devinfo);
1366}
1367
Borislav Petkove5e076a2008-04-26 22:25:15 +02001368static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001370 struct cdrom_info *cd = drive->driver_data;
1371 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001372 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1373 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 int nslots = 1;
1375
Borislav Petkov088b1b82009-01-02 13:34:47 +01001376 ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1377 drive->media, drive->atapi_flags);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001378
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001379 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1380 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1381 CDC_MO_DRIVE | CDC_RAM);
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001384 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001385 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001386 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return nslots;
1388 }
1389
Borislav Petkov570f89e2008-07-23 19:56:02 +02001390 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1391 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001392 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return nslots;
1394 }
1395
1396 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001397 * We have to cheat a little here. the packet will eventually be queued
1398 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1399 * Since this device hasn't been registered with the Uniform layer yet,
1400 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001402 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 cdi->ops = &ide_cdrom_dops;
1404
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001405 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return 0;
1407
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001408 if ((buf[8 + 6] & 0x01) == 0)
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +02001409 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001410 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001411 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001412 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001413 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001414 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001415 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001416 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001417 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001418 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001419 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001420 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001421 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001422 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001423 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001424
1425 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001426 if (mechtype == mechtype_caddy ||
1427 mechtype == mechtype_popup ||
1428 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001429 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001432 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001434 } else if (mechtype == mechtype_individual_changer ||
1435 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001436 nslots = cdrom_number_of_slots(cdi);
1437 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001438 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001441 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001442
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001443 printk(KERN_INFO PFX "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001444
1445 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001446 if (cd->max_speed)
1447 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001448
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001449 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001451 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1452 printk(KERN_CONT " DVD%s%s",
1453 (cdi->mask & CDC_DVD_R) ? "" : "-R",
Borislav Petkov419a5b62008-10-17 18:09:14 +02001454 (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001456 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1457 printk(KERN_CONT " CD%s%s",
1458 (cdi->mask & CDC_CD_R) ? "" : "-R",
1459 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001461 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1462 printk(KERN_CONT " changer w/%d slots", nslots);
1463 else
1464 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001466 printk(KERN_CONT ", %dkB Cache\n",
1467 be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 return nslots;
1470}
1471
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001472/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001473static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 int hard_sect = queue_hardsect_size(q);
1476 long block = (long)rq->hard_sector / (hard_sect >> 9);
1477 unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
1478
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001479 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 if (rq_data_dir(rq) == READ)
1482 rq->cmd[0] = GPCMD_READ_10;
1483 else
1484 rq->cmd[0] = GPCMD_WRITE_10;
1485
1486 /*
1487 * fill in lba
1488 */
1489 rq->cmd[2] = (block >> 24) & 0xff;
1490 rq->cmd[3] = (block >> 16) & 0xff;
1491 rq->cmd[4] = (block >> 8) & 0xff;
1492 rq->cmd[5] = block & 0xff;
1493
1494 /*
1495 * and transfer length
1496 */
1497 rq->cmd[7] = (blocks >> 8) & 0xff;
1498 rq->cmd[8] = blocks & 0xff;
1499 rq->cmd_len = 10;
1500 return BLKPREP_OK;
1501}
1502
1503/*
1504 * Most of the SCSI commands are supported directly by ATAPI devices.
1505 * This transform handles the few exceptions.
1506 */
1507static int ide_cdrom_prep_pc(struct request *rq)
1508{
1509 u8 *c = rq->cmd;
1510
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001511 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (c[0] == READ_6 || c[0] == WRITE_6) {
1513 c[8] = c[4];
1514 c[5] = c[3];
1515 c[4] = c[2];
1516 c[3] = c[1] & 0x1f;
1517 c[2] = 0;
1518 c[1] &= 0xe0;
1519 c[0] += (READ_10 - READ_6);
1520 rq->cmd_len = 10;
1521 return BLKPREP_OK;
1522 }
1523
1524 /*
1525 * it's silly to pretend we understand 6-byte sense commands, just
1526 * reject with ILLEGAL_REQUEST and the caller should take the
1527 * appropriate action
1528 */
1529 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1530 rq->errors = ILLEGAL_REQUEST;
1531 return BLKPREP_KILL;
1532 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return BLKPREP_OK;
1535}
1536
Jens Axboe165125e2007-07-24 09:28:11 +02001537static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001539 if (blk_fs_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return ide_cdrom_prep_fs(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001541 else if (blk_pc_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return ide_cdrom_prep_pc(rq);
1543
1544 return 0;
1545}
1546
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001547struct cd_list_entry {
1548 const char *id_model;
1549 const char *id_firmware;
1550 unsigned int cd_flags;
1551};
1552
Borislav Petkov5e657a92008-04-26 22:25:15 +02001553#ifdef CONFIG_IDE_PROC_FS
1554static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1555{
1556 unsigned long capacity, sectors_per_frame;
1557
1558 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1559 return 0;
1560
1561 return capacity * sectors_per_frame;
1562}
1563
Borislav Petkove5e076a2008-04-26 22:25:15 +02001564static int proc_idecd_read_capacity(char *page, char **start, off_t off,
1565 int count, int *eof, void *data)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001566{
1567 ide_drive_t *drive = data;
1568 int len;
1569
1570 len = sprintf(page, "%llu\n", (long long)ide_cdrom_capacity(drive));
1571 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1572}
1573
1574static ide_proc_entry_t idecd_proc[] = {
1575 { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
1576 { NULL, 0, NULL, NULL }
1577};
1578
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001579static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1580{
1581 return idecd_proc;
1582}
1583
1584static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1585{
Bartlomiej Zolnierkiewicz519d6802008-12-29 20:27:38 +01001586 return NULL;
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001587}
Borislav Petkov5e657a92008-04-26 22:25:15 +02001588#endif
1589
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001590static const struct cd_list_entry ide_cd_quirks_list[] = {
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001591 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001592 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001593 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001594 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1595 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001596 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001597 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001598 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001599 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001600 /*
1601 * Sanyo 3 CD changer uses a non-standard command for CD changing
1602 * (by default standard ATAPI support for CD changers is used).
1603 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001604 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1605 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1606 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001607 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001608 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001609 /*
1610 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1611 * mode sense page capabilities size, but older drives break.
1612 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001613 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1614 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001615 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001616 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001617 /*
1618 * Some drives used by Apple don't advertise audio play
1619 * but they do support reading TOC & audio datas.
1620 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001621 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1622 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1623 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1624 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1625 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001626 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001627 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Márton Németh64c2eae2008-10-23 23:22:09 +02001628 { "TEAC CD-ROM CD-224E", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001629 { NULL, NULL, 0 }
1630};
1631
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001632static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001633{
1634 const struct cd_list_entry *cle = ide_cd_quirks_list;
1635
1636 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001637 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001638 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001639 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001640 return cle->cd_flags;
1641 cle++;
1642 }
1643
1644 return 0;
1645}
1646
Borislav Petkove5e076a2008-04-26 22:25:15 +02001647static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001649 struct cdrom_info *cd = drive->driver_data;
1650 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001651 u16 *id = drive->id;
1652 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 int nslots;
1654
Borislav Petkov088b1b82009-01-02 13:34:47 +01001655 ide_debug_log(IDE_DBG_PROBE, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn);
1658 blk_queue_dma_alignment(drive->queue, 31);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001659 blk_queue_update_dma_pad(drive->queue, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 drive->queue->unplug_delay = (1 * HZ) / 1000;
1661 if (!drive->queue->unplug_delay)
1662 drive->queue->unplug_delay = 1;
1663
Bartlomiej Zolnierkiewiczfe11edf2008-10-17 18:09:11 +02001664 drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1665 drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Borislav Petkov570f89e2008-07-23 19:56:02 +02001667 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001668 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001669 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1670 IDE_AFLAG_TOCADDR_AS_BCD);
1671 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001672 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001673 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1674 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001675 /* 3 => use CD in slot 0 */
1676 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001678 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001680 /* set correct block size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE);
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001684 printk(KERN_ERR PFX "%s: %s failed to register device with the"
Borislav Petkov83c85652008-04-26 22:25:15 +02001685 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001686 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return 1;
1688 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001689
1690 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 return 0;
1692}
1693
Russell King4031bbe2006-01-06 11:41:00 +00001694static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
1696 struct cdrom_info *info = drive->driver_data;
1697
Borislav Petkov088b1b82009-01-02 13:34:47 +01001698 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001699
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001700 ide_proc_unregister_driver(drive, info->driver);
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001701 device_del(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 del_gendisk(info->disk);
1703
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001704 mutex_lock(&idecd_ref_mutex);
1705 put_device(&info->dev);
1706 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001709static void ide_cd_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001711 struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct cdrom_device_info *devinfo = &info->devinfo;
1713 ide_drive_t *drive = info->drive;
1714 struct gendisk *g = info->disk;
1715
Borislav Petkov088b1b82009-01-02 13:34:47 +01001716 ide_debug_log(IDE_DBG_FUNC, "enter");
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001717
Jesper Juhl6044ec82005-11-07 01:01:32 -08001718 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001719 if (devinfo->handle == drive)
1720 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 drive->driver_data = NULL;
1722 blk_queue_prep_rq(drive->queue, NULL);
1723 g->private_data = NULL;
1724 put_disk(g);
1725 kfree(info);
1726}
1727
Russell King4031bbe2006-01-06 11:41:00 +00001728static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +01001730static struct ide_driver ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001731 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001732 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001733 .name = "ide-cdrom",
1734 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001735 },
Russell King4031bbe2006-01-06 11:41:00 +00001736 .probe = ide_cd_probe,
1737 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 .version = IDECD_VERSION,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001739 .do_request = ide_cd_do_request,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001740#ifdef CONFIG_IDE_PROC_FS
Bartlomiej Zolnierkiewicz79cb3802008-10-17 18:09:13 +02001741 .proc_entries = ide_cd_proc_entries,
1742 .proc_devsets = ide_cd_proc_devsets,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001743#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744};
1745
Al Viro488ca602008-03-02 10:26:23 -05001746static int idecd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Al Viro488ca602008-03-02 10:26:23 -05001748 struct cdrom_info *info = ide_cd_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 int rc = -ENOMEM;
1750
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001751 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return -ENXIO;
1753
Al Viro488ca602008-03-02 10:26:23 -05001754 rc = cdrom_open(&info->devinfo, bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 if (rc < 0)
1757 ide_cd_put(info);
1758
1759 return rc;
1760}
1761
Al Viro488ca602008-03-02 10:26:23 -05001762static int idecd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001764 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Al Viro488ca602008-03-02 10:26:23 -05001766 cdrom_release(&info->devinfo, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 ide_cd_put(info);
1769
1770 return 0;
1771}
1772
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001773static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1774{
1775 struct packet_command cgc;
1776 char buffer[16];
1777 int stat;
1778 char spindown;
1779
1780 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1781 return -EFAULT;
1782
1783 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1784
1785 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1786 if (stat)
1787 return stat;
1788
1789 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1790 return cdrom_mode_select(cdi, &cgc);
1791}
1792
1793static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1794{
1795 struct packet_command cgc;
1796 char buffer[16];
1797 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001798 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001799
1800 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1801
1802 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1803 if (stat)
1804 return stat;
1805
1806 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001807 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001808 return -EFAULT;
1809 return 0;
1810}
1811
Al Viro488ca602008-03-02 10:26:23 -05001812static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 unsigned int cmd, unsigned long arg)
1814{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001815 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 int err;
1817
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001818 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001819 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001820 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001821 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001822 return idecd_get_spindown(&info->devinfo, arg);
1823 default:
1824 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001825 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08001826
Al Viro1bddd9e2008-09-02 17:19:43 -04001827 err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (err == -EINVAL)
Al Viro488ca602008-03-02 10:26:23 -05001829 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 return err;
1832}
1833
1834static int idecd_media_changed(struct gendisk *disk)
1835{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001836 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return cdrom_media_changed(&info->devinfo);
1838}
1839
1840static int idecd_revalidate_disk(struct gendisk *disk)
1841{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001842 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001844
1845 ide_cd_read_toc(info->drive, &sense);
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return 0;
1848}
1849
1850static struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001851 .owner = THIS_MODULE,
Al Viro488ca602008-03-02 10:26:23 -05001852 .open = idecd_open,
1853 .release = idecd_release,
1854 .locked_ioctl = idecd_ioctl,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001855 .media_changed = idecd_media_changed,
1856 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857};
1858
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001859/* module options */
Borislav Petkov35d9b172008-10-13 21:39:49 +02001860static unsigned long debug_mask;
1861module_param(debug_mask, ulong, 0644);
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1864
Russell King4031bbe2006-01-06 11:41:00 +00001865static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
1867 struct cdrom_info *info;
1868 struct gendisk *g;
1869 struct request_sense sense;
1870
Borislav Petkov088b1b82009-01-02 13:34:47 +01001871 ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1872 drive->driver_req, drive->media);
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (!strstr("ide-cdrom", drive->driver_req))
1875 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (drive->media != ide_cdrom && drive->media != ide_optical)
1878 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02001879
Borislav Petkov35d9b172008-10-13 21:39:49 +02001880 drive->debug_mask = debug_mask;
Borislav Petkovd6251d42009-01-06 17:20:58 +01001881 drive->irq_handler = cdrom_newpc_intr;
Borislav Petkov35d9b172008-10-13 21:39:49 +02001882
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08001883 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 if (info == NULL) {
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001885 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
Borislav Petkov83c85652008-04-26 22:25:15 +02001886 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 goto failed;
1888 }
1889
1890 g = alloc_disk(1 << PARTN_BITS);
1891 if (!g)
1892 goto out_free_cd;
1893
1894 ide_init_disk(g, drive);
1895
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001896 info->dev.parent = &drive->gendev;
1897 info->dev.release = ide_cd_release;
1898 dev_set_name(&info->dev, dev_name(&drive->gendev));
1899
1900 if (device_register(&info->dev))
1901 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 info->drive = drive;
1904 info->driver = &ide_cdrom_driver;
1905 info->disk = g;
1906
1907 g->private_data = &info->driver;
1908
1909 drive->driver_data = info;
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 g->driverfs_dev = &drive->gendev;
1913 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1914 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001915 put_device(&info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 goto failed;
1917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001919 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 g->fops = &idecd_ops;
1921 g->flags |= GENHD_FL_REMOVABLE;
1922 add_disk(g);
1923 return 0;
1924
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +01001925out_free_disk:
1926 put_disk(g);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927out_free_cd:
1928 kfree(info);
1929failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001930 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
1933static void __exit ide_cdrom_exit(void)
1934{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001935 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01001937
1938static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
Borislav Petkovfc8323f2008-10-13 21:39:48 +02001940 printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001941 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
Kay Sievers263756e2005-12-12 18:03:44 +01001944MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01001945MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946module_init(ide_cdrom_init);
1947module_exit(ide_cdrom_exit);
1948MODULE_LICENSE("GPL");