blob: 1f5652326489f27ffdd7bac6eb6e33cb110c2540 [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. ;-)
15 * For those wishing to work on this driver, please be sure you download
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020016 * and comply with the latest Mt. Fuji (SFF8090 version 4) and ATAPI
17 * (SFF-8020i rev 2.6) standards. These documents can be obtained by
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * anonymous ftp from:
19 * ftp://fission.dt.wdc.com/pub/standards/SFF_atapi/spec/SFF8020-r2.6/PS/8020r26.ps
20 * ftp://ftp.avc-pioneer.com/Mtfuji4/Spec/Fuji4r10.pdf
21 *
Bartlomiej Zolnierkiewicz03553352008-02-01 23:09:18 +010022 * For historical changelog please see:
23 * Documentation/ide/ChangeLog.ide-cd.1994-2004
24 */
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
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020055#define to_ide_cd(obj) container_of(obj, struct cdrom_info, kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define ide_cd_g(disk) \
58 container_of((disk)->private_data, struct cdrom_info, driver)
59
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020060static void ide_cd_release(struct kref *);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static struct cdrom_info *ide_cd_get(struct gendisk *disk)
63{
64 struct cdrom_info *cd = NULL;
65
Arjan van de Vencf8b8972006-03-23 03:00:45 -080066 mutex_lock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 cd = ide_cd_g(disk);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020068 if (cd) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020069 if (ide_device_get(cd->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020070 cd = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020071 else
72 kref_get(&cd->kref);
73
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020074 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -080075 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return cd;
77}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static void ide_cd_put(struct cdrom_info *cd)
80{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020081 ide_drive_t *drive = cd->drive;
82
Arjan van de Vencf8b8972006-03-23 03:00:45 -080083 mutex_lock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 kref_put(&cd->kref, ide_cd_release);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020085 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080086 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020089/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * Generic packet command support and error handling routines.
91 */
92
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020093/* Mark that we've seen a media change and invalidate our internal buffers. */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020094static void cdrom_saw_media_change(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Borislav Petkov570f89e2008-07-23 19:56:02 +020096 drive->atapi_flags |= IDE_AFLAG_MEDIA_CHANGED;
97 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
101 struct request_sense *sense)
102{
103 int log = 0;
104
Jens Axboe4aff5e22006-08-10 08:44:47 +0200105 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 0;
107
108 switch (sense->sense_key) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200109 case NO_SENSE:
110 case RECOVERED_ERROR:
111 break;
112 case NOT_READY:
113 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200114 * don't care about tray state messages for e.g. capacity
115 * commands or in-progress or becoming ready
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200116 */
117 if (sense->asc == 0x3a || sense->asc == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200119 log = 1;
120 break;
121 case ILLEGAL_REQUEST:
122 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200123 * don't log START_STOP unit with LoEj set, since we cannot
124 * reliably check if drive can auto-close
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200125 */
126 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200128 log = 1;
129 break;
130 case UNIT_ATTENTION:
131 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200132 * Make good and sure we've seen this potential media change.
133 * Some drives (i.e. Creative) fail to present the correct sense
134 * key in the error register.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200135 */
136 cdrom_saw_media_change(drive);
137 break;
138 default:
139 log = 1;
140 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 return log;
143}
144
Borislav Petkove5e076a2008-04-26 22:25:15 +0200145static void cdrom_analyze_sense_data(ide_drive_t *drive,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct request *failed_command,
147 struct request_sense *sense)
148{
Alan Coxdbe217a2006-06-25 05:47:44 -0700149 unsigned long sector;
150 unsigned long bio_sectors;
Alan Coxdbe217a2006-06-25 05:47:44 -0700151 struct cdrom_info *info = drive->driver_data;
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!cdrom_log_sense(drive, failed_command, sense))
154 return;
155
156 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200157 * If a read toc is executed for a CD-R or CD-RW medium where the first
158 * toc has not been recorded yet, it will fail with 05/24/00 (which is a
159 * confusing error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 */
161 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
162 if (sense->sense_key == 0x05 && sense->asc == 0x24)
163 return;
164
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200165 /* current error */
166 if (sense->error_code == 0x70) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200167 switch (sense->sense_key) {
Alan Coxdbe217a2006-06-25 05:47:44 -0700168 case MEDIUM_ERROR:
169 case VOLUME_OVERFLOW:
170 case ILLEGAL_REQUEST:
171 if (!sense->valid)
172 break;
173 if (failed_command == NULL ||
174 !blk_fs_request(failed_command))
175 break;
176 sector = (sense->information[0] << 24) |
177 (sense->information[1] << 16) |
178 (sense->information[2] << 8) |
179 (sense->information[3]);
180
Alan Coxdbe217a2006-06-25 05:47:44 -0700181 if (drive->queue->hardsect_size == 2048)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200182 /* device sector size is 2K */
183 sector <<= 2;
Roel Kluineee49292008-04-28 23:44:43 +0200184
185 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200186 sector &= ~(bio_sectors - 1);
Alan Coxdbe217a2006-06-25 05:47:44 -0700187
Alan Coxdbe217a2006-06-25 05:47:44 -0700188 if (sector < get_capacity(info->disk) &&
Borislav Petkove5e076a2008-04-26 22:25:15 +0200189 drive->probed_capacity - sector < 4 * 75)
Alan Coxdbe217a2006-06-25 05:47:44 -0700190 set_capacity(info->disk, sector);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200191 }
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100194 ide_cd_log_error(drive->name, failed_command, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense,
198 struct request *failed_command)
199{
200 struct cdrom_info *info = drive->driver_data;
201 struct request *rq = &info->request_sense_request;
202
203 if (sense == NULL)
204 sense = &info->sense_data;
205
206 /* stuff the sense request in front of our current request */
FUJITA Tomonoried820f12008-07-15 21:21:45 +0200207 blk_rq_init(NULL, rq);
208 rq->cmd_type = REQ_TYPE_ATA_PC;
209 rq->rq_disk = info->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 rq->data = sense;
212 rq->cmd[0] = GPCMD_REQUEST_SENSE;
Borislav Petkove5e076a2008-04-26 22:25:15 +0200213 rq->cmd[4] = 18;
214 rq->data_len = 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jens Axboe4aff5e22006-08-10 08:44:47 +0200216 rq->cmd_type = REQ_TYPE_SENSE;
Bartlomiej Zolnierkiewicze8a96aa2008-07-15 21:21:41 +0200217 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 /* NOTE! Save the failed command in "rq->buffer" */
220 rq->buffer = (void *) failed_command;
221
FUJITA Tomonori63f5abb2008-07-15 21:21:51 +0200222 ide_do_drive_cmd(drive, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200225static void cdrom_end_request(ide_drive_t *drive, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 struct request *rq = HWGROUP(drive)->rq;
228 int nsectors = rq->hard_cur_sectors;
229
Jens Axboe4aff5e22006-08-10 08:44:47 +0200230 if (blk_sense_request(rq) && uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200232 * For REQ_TYPE_SENSE, "rq->buffer" points to the original
233 * failed request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
235 struct request *failed = (struct request *) rq->buffer;
236 struct cdrom_info *info = drive->driver_data;
237 void *sense = &info->sense_data;
238 unsigned long flags;
239
240 if (failed) {
241 if (failed->sense) {
242 sense = failed->sense;
243 failed->sense_len = rq->sense_len;
244 }
Alan Coxdbe217a2006-06-25 05:47:44 -0700245 cdrom_analyze_sense_data(drive, failed, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200247 * now end the failed request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700249 if (blk_fs_request(failed)) {
250 if (ide_end_dequeued_request(drive, failed, 0,
251 failed->hard_nr_sectors))
252 BUG();
253 } else {
254 spin_lock_irqsave(&ide_lock, flags);
Kiyoshi Ueda5e36bb62008-01-28 10:34:20 +0100255 if (__blk_end_request(failed, -EIO,
256 failed->data_len))
257 BUG();
Alan Coxdbe217a2006-06-25 05:47:44 -0700258 spin_unlock_irqrestore(&ide_lock, flags);
259 }
260 } else
261 cdrom_analyze_sense_data(drive, NULL, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
264 if (!rq->current_nr_sectors && blk_fs_request(rq))
265 uptodate = 1;
266 /* make sure it's fully ended */
267 if (blk_pc_request(rq))
268 nsectors = (rq->data_len + 511) >> 9;
269 if (!nsectors)
270 nsectors = 1;
271
272 ide_end_request(drive, uptodate, nsectors);
273}
274
Borislav Petkov83c85652008-04-26 22:25:15 +0200275static void ide_dump_status_no_sense(ide_drive_t *drive, const char *msg, u8 st)
Alan Coxdbe217a2006-06-25 05:47:44 -0700276{
Borislav Petkov83c85652008-04-26 22:25:15 +0200277 if (st & 0x80)
Alan Coxdbe217a2006-06-25 05:47:44 -0700278 return;
Borislav Petkov83c85652008-04-26 22:25:15 +0200279 ide_dump_status(drive, msg, st);
Alan Coxdbe217a2006-06-25 05:47:44 -0700280}
281
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200282/*
283 * Returns:
284 * 0: if the request should be continued.
285 * 1: if the request was ended.
286 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret)
288{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200289 ide_hwif_t *hwif = drive->hwif;
290 struct request *rq = hwif->hwgroup->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int stat, err, sense_key;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200292
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200293 /* check for errors */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200294 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (stat_ret)
297 *stat_ret = stat;
298
299 if (OK_STAT(stat, good_stat, BAD_R_STAT))
300 return 0;
301
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200302 /* get the IDE error register */
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100303 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 sense_key = err >> 4;
305
306 if (rq == NULL) {
Borislav Petkove5e076a2008-04-26 22:25:15 +0200307 printk(KERN_ERR "%s: missing rq in %s\n",
308 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return 1;
310 }
311
Jens Axboe4aff5e22006-08-10 08:44:47 +0200312 if (blk_sense_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200313 /*
314 * We got an error trying to get sense info from the drive
315 * (probably while trying to recover from a former error).
316 * Just give up.
317 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200318 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 cdrom_end_request(drive, 0);
320 ide_error(drive, "request sense failure", stat);
321 return 1;
322
Jens Axboe8770c012006-10-12 17:24:52 +0200323 } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* All other functions, except for READ. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /*
327 * if we have an error, pass back CHECK_CONDITION as the
328 * scsi status byte
329 */
Jens Axboeb7156732006-11-13 18:05:02 +0100330 if (blk_pc_request(rq) && !rq->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 rq->errors = SAM_STAT_CHECK_CONDITION;
332
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200333 /* check for tray open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (sense_key == NOT_READY) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200335 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 } else if (sense_key == UNIT_ATTENTION) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200337 /* check for media change */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200338 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return 0;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200340 } else if (sense_key == ILLEGAL_REQUEST &&
341 rq->cmd[0] == GPCMD_START_STOP_UNIT) {
342 /*
343 * Don't print error message for this condition--
344 * SFF8090i indicates that 5/24/00 is the correct
345 * response to a request to close the tray if the
346 * drive doesn't have that capability.
347 * cdrom_log_sense() knows this!
348 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200349 } else if (!(rq->cmd_flags & REQ_QUIET)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200350 /* otherwise, print an error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 ide_dump_status(drive, "packet command error", stat);
352 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200353
Jens Axboe4aff5e22006-08-10 08:44:47 +0200354 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 /*
357 * instead of playing games with moving completions around,
358 * remove failed request completely and end it when the
359 * request sense has completed
360 */
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100361 goto end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 } else if (blk_fs_request(rq)) {
364 int do_end_request = 0;
365
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200366 /* handle errors from READ and WRITE requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (blk_noretry_request(rq))
369 do_end_request = 1;
370
371 if (sense_key == NOT_READY) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200372 /* tray open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (rq_data_dir(rq) == READ) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200374 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200376 /* fail the request */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200377 printk(KERN_ERR "%s: tray open\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 do_end_request = 1;
379 } else {
380 struct cdrom_info *info = drive->driver_data;
381
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200382 /*
383 * Allow the drive 5 seconds to recover, some
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * devices will return this error while flushing
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200385 * data from cache.
386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!rq->errors)
Borislav Petkov83c85652008-04-26 22:25:15 +0200388 info->write_timeout = jiffies +
389 ATAPI_WAIT_WRITE_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 rq->errors = 1;
391 if (time_after(jiffies, info->write_timeout))
392 do_end_request = 1;
393 else {
394 unsigned long flags;
395
396 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200397 * take a breather relying on the unplug
398 * timer to kick us again
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 */
400 spin_lock_irqsave(&ide_lock, flags);
401 blk_plug_device(drive->queue);
Borislav Petkov83c85652008-04-26 22:25:15 +0200402 spin_unlock_irqrestore(&ide_lock,
403 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 1;
405 }
406 }
407 } else if (sense_key == UNIT_ATTENTION) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200408 /* media change */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200409 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200411 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200412 * Arrange to retry the request but be sure to give up
413 * if we've retried too many times.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (++rq->errors > ERROR_MAX)
416 do_end_request = 1;
417 } else if (sense_key == ILLEGAL_REQUEST ||
418 sense_key == DATA_PROTECT) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200419 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200420 * No point in retrying after an illegal request or data
421 * protect error.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200422 */
423 ide_dump_status_no_sense(drive, "command error", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 do_end_request = 1;
425 } else if (sense_key == MEDIUM_ERROR) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200426 /*
427 * No point in re-trying a zillion times on a bad
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200428 * sector. If we got here the error is not correctable.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200429 */
Borislav Petkov83c85652008-04-26 22:25:15 +0200430 ide_dump_status_no_sense(drive,
431 "media error (bad sector)",
432 stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 do_end_request = 1;
434 } else if (sense_key == BLANK_CHECK) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200435 /* disk appears blank ?? */
Borislav Petkov83c85652008-04-26 22:25:15 +0200436 ide_dump_status_no_sense(drive, "media error (blank)",
437 stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 do_end_request = 1;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200439 } else if ((err & ~ATA_ABORTED) != 0) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200440 /* go to the default handler for other errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 ide_error(drive, "cdrom_decode_status", stat);
442 return 1;
443 } else if ((++rq->errors > ERROR_MAX)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200444 /* we've racked up too many retries, abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 do_end_request = 1;
446 }
447
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200448 /*
449 * End a request through request sense analysis when we have
450 * sense data. We need this in order to perform end of media
451 * processing.
452 */
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100453 if (do_end_request)
454 goto end_request;
Alan Coxdbe217a2006-06-25 05:47:44 -0700455
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100456 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200457 * If we got a CHECK_CONDITION status, queue
458 * a request sense command.
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100459 */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200460 if (stat & ATA_ERR)
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100461 cdrom_queue_request_sense(drive, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 } else {
463 blk_dump_rq_flags(rq, "ide-cd: bad rq");
464 cdrom_end_request(drive, 0);
465 }
466
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200467 /* retry, or handle the next request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 1;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100469
470end_request:
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200471 if (stat & ATA_ERR) {
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100472 unsigned long flags;
473
474 spin_lock_irqsave(&ide_lock, flags);
475 blkdev_dequeue_request(rq);
476 HWGROUP(drive)->rq = NULL;
477 spin_unlock_irqrestore(&ide_lock, flags);
478
479 cdrom_queue_request_sense(drive, rq->sense, rq);
480 } else
481 cdrom_end_request(drive, 0);
482
483 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486static int cdrom_timer_expiry(ide_drive_t *drive)
487{
488 struct request *rq = HWGROUP(drive)->rq;
489 unsigned long wait = 0;
490
491 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200492 * Some commands are *slow* and normally take a long time to complete.
493 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
494 * commands/drives support that. Let ide_timer_expiry keep polling us
495 * for these.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 */
497 switch (rq->cmd[0]) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200498 case GPCMD_BLANK:
499 case GPCMD_FORMAT_UNIT:
500 case GPCMD_RESERVE_RZONE_TRACK:
501 case GPCMD_CLOSE_TRACK:
502 case GPCMD_FLUSH_CACHE:
503 wait = ATAPI_WAIT_PC;
504 break;
505 default:
506 if (!(rq->cmd_flags & REQ_QUIET))
Borislav Petkov83c85652008-04-26 22:25:15 +0200507 printk(KERN_INFO "ide-cd: cmd 0x%x timed out\n",
508 rq->cmd[0]);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200509 wait = 0;
510 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 return wait;
513}
514
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200515/*
516 * Set up the device registers for transferring a packet command on DEV,
517 * expecting to later transfer XFERLEN bytes. HANDLER is the routine
518 * which actually transfers the command to the drive. If this is a
519 * drq_interrupt device, this routine will arrange for HANDLER to be
520 * called when the interrupt from the drive arrives. Otherwise, HANDLER
521 * will be called immediately after the drive is prepared for the transfer.
522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523static ide_startstop_t cdrom_start_packet_command(ide_drive_t *drive,
524 int xferlen,
525 ide_handler_t *handler)
526{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct cdrom_info *info = drive->driver_data;
528 ide_hwif_t *hwif = drive->hwif;
529
Bartlomiej Zolnierkiewicz3a6a3542008-01-25 22:17:13 +0100530 /* FIXME: for Virtual DMA we must check harder */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (info->dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200532 info->dma = !hwif->dma_ops->dma_setup(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200534 /* set up the controller registers */
Bartlomiej Zolnierkiewicz9a410e72008-07-15 21:21:48 +0200535 ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL,
536 xferlen, info->dma);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +0100537
Borislav Petkov570f89e2008-07-23 19:56:02 +0200538 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
Albert Leef0dd8712007-02-17 02:40:21 +0100539 /* waiting for CDB interrupt, not DMA yet. */
540 if (info->dma)
541 drive->waiting_for_dma = 0;
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /* packet command */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200544 ide_execute_command(drive, ATA_CMD_PACKET, handler,
Borislav Petkov83c85652008-04-26 22:25:15 +0200545 ATAPI_WAIT_PC, cdrom_timer_expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return ide_started;
547 } else {
Bartlomiej Zolnierkiewicz1fc14252008-04-28 23:44:39 +0200548 ide_execute_pkt_cmd(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 return (*handler) (drive);
551 }
552}
553
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200554/*
555 * Send a packet command to DRIVE described by CMD_BUF and CMD_LEN. The device
556 * registers must have already been prepared by cdrom_start_packet_command.
557 * HANDLER is the interrupt handler to call when the command completes or
558 * there's data ready.
559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#define ATAPI_MIN_CDB_BYTES 12
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200561static ide_startstop_t cdrom_transfer_packet_command(ide_drive_t *drive,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct request *rq,
563 ide_handler_t *handler)
564{
565 ide_hwif_t *hwif = drive->hwif;
566 int cmd_len;
567 struct cdrom_info *info = drive->driver_data;
568 ide_startstop_t startstop;
569
Borislav Petkov570f89e2008-07-23 19:56:02 +0200570 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200571 /*
572 * Here we should have been called after receiving an interrupt
573 * from the device. DRQ should how be set.
574 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200576 /* check for errors */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200577 if (cdrom_decode_status(drive, ATA_DRQ, NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return ide_stopped;
Albert Leef0dd8712007-02-17 02:40:21 +0100579
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200580 /* ok, next interrupt will be DMA interrupt */
Albert Leef0dd8712007-02-17 02:40:21 +0100581 if (info->dma)
582 drive->waiting_for_dma = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200584 /* otherwise, we must wait for DRQ to get set */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200585 if (ide_wait_stat(&startstop, drive, ATA_DRQ,
586 ATA_BUSY, WAIT_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return startstop;
588 }
589
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200590 /* arm the interrupt handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 ide_set_handler(drive, handler, rq->timeout, cdrom_timer_expiry);
592
593 /* ATAPI commands get padded out to 12 bytes minimum */
594 cmd_len = COMMAND_SIZE(rq->cmd[0]);
595 if (cmd_len < ATAPI_MIN_CDB_BYTES)
596 cmd_len = ATAPI_MIN_CDB_BYTES;
597
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200598 /* send the command to the device */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200599 hwif->tp_ops->output_data(drive, NULL, rq->cmd, cmd_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200601 /* start the DMA if need be */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (info->dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200603 hwif->dma_ops->dma_start(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 return ide_started;
606}
607
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200608/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * Check the contents of the interrupt reason register from the cdrom
610 * and attempt to recover if there are problems. Returns 0 if everything's
611 * ok; nonzero if the request has been terminated.
612 */
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100613static int ide_cd_check_ireason(ide_drive_t *drive, struct request *rq,
614 int len, int ireason, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200616 ide_hwif_t *hwif = drive->hwif;
617
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100618 /*
619 * ireason == 0: the drive wants to receive data from us
620 * ireason == 2: the drive is expecting to transfer data to us
621 */
622 if (ireason == (!rw << 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return 0;
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100624 else if (ireason == (rw << 1)) {
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +0100625
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200626 /* whoops... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +0100627 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200628 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Borislav Petkovae8789f2008-07-16 20:33:45 +0200630 ide_pad_transfer(drive, rw, len);
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100631 } else if (rw == 0 && ireason == 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200632 /*
633 * Some drives (ASUS) seem to tell us that status info is
634 * available. Just get it and ignore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200636 (void)hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200639 /* drive wants a command packet, or invalid ireason... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +0100640 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200641 drive->name, __func__, ireason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100644 if (rq->cmd_type == REQ_TYPE_ATA_PC)
645 rq->cmd_flags |= REQ_FAILED;
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 cdrom_end_request(drive, 0);
648 return -1;
649}
650
651/*
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100652 * Assume that the drive will always provide data in multiples of at least
653 * SECTOR_SIZE, as it gets hairy to keep track of the transfers otherwise.
654 */
655static int ide_cd_check_transfer_size(ide_drive_t *drive, int len)
656{
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100657 if ((len % SECTOR_SIZE) == 0)
658 return 0;
659
660 printk(KERN_ERR "%s: %s: Bad transfer size %d\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200661 drive->name, __func__, len);
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100662
Borislav Petkov570f89e2008-07-23 19:56:02 +0200663 if (drive->atapi_flags & IDE_AFLAG_LIMIT_NFRAMES)
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100664 printk(KERN_ERR " This drive is not supported by "
665 "this version of the driver\n");
666 else {
667 printk(KERN_ERR " Trying to limit transfer sizes\n");
Borislav Petkov570f89e2008-07-23 19:56:02 +0200668 drive->atapi_flags |= IDE_AFLAG_LIMIT_NFRAMES;
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100669 }
670
671 return 1;
672}
673
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100674static ide_startstop_t cdrom_newpc_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +0100675
Borislav Petkov90eb8082008-07-16 20:33:46 +0200676static ide_startstop_t ide_cd_prepare_rw_request(ide_drive_t *drive,
677 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100679 if (rq_data_dir(rq) == READ) {
680 unsigned short sectors_per_frame =
681 queue_hardsect_size(drive->queue) >> SECTOR_BITS;
682 int nskip = rq->sector & (sectors_per_frame - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100684 /*
685 * If the requested sector doesn't start on a frame boundary,
686 * we must adjust the start of the transfer so that it does,
687 * and remember to skip the first few sectors.
688 *
689 * If the rq->current_nr_sectors field is larger than the size
690 * of the buffer, it will mean that we're to skip a number of
691 * sectors equal to the amount by which rq->current_nr_sectors
692 * is larger than the buffer size.
693 */
694 if (nskip > 0) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200695 /* sanity check... */
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100696 if (rq->current_nr_sectors !=
697 bio_cur_sectors(rq->bio)) {
698 printk(KERN_ERR "%s: %s: buffer botch (%u)\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200699 drive->name, __func__,
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100700 rq->current_nr_sectors);
701 cdrom_end_request(drive, 0);
702 return ide_stopped;
703 }
704 rq->current_nr_sectors += nskip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100707#if 0
708 else
709 /* the immediate bit */
710 rq->cmd[1] = 1 << 3;
711#endif
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200712 /* set up the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 rq->timeout = ATAPI_WAIT_PC;
714
Borislav Petkov90eb8082008-07-16 20:33:46 +0200715 return ide_started;
716}
717
718/*
719 * Routine to send a read/write packet command to the drive. This is usually
720 * called directly from cdrom_start_{read,write}(). However, for drq_interrupt
721 * devices, it is called from an interrupt when the drive is ready to accept
722 * the command.
723 */
724static ide_startstop_t cdrom_start_rw_cont(ide_drive_t *drive)
725{
726 struct request *rq = drive->hwif->hwgroup->rq;
727
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200728 /* send the command to the drive and return */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100729 return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
733#define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
734#define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */
735
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200736static ide_startstop_t cdrom_seek_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct cdrom_info *info = drive->driver_data;
739 int stat;
740 static int retry = 10;
741
742 if (cdrom_decode_status(drive, 0, &stat))
743 return ide_stopped;
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +0100744
Borislav Petkov570f89e2008-07-23 19:56:02 +0200745 drive->atapi_flags |= IDE_AFLAG_SEEKING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200748 if (--retry == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751 return ide_stopped;
752}
753
Borislav Petkove529c602008-07-16 20:33:46 +0200754static void ide_cd_prepare_seek_request(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 sector_t frame = rq->sector;
757
758 sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS);
759
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200760 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 rq->cmd[0] = GPCMD_SEEK;
762 put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]);
763
764 rq->timeout = ATAPI_WAIT_PC;
Borislav Petkove529c602008-07-16 20:33:46 +0200765}
766
767static ide_startstop_t cdrom_start_seek_continuation(ide_drive_t *drive)
768{
769 struct request *rq = drive->hwif->hwgroup->rq;
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr);
772}
773
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200774/*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200775 * Fix up a possibly partially-processed request so that we can start it over
776 * entirely, or even put it back on the request queue.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200777 */
778static void restore_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 if (rq->buffer != bio_data(rq->bio)) {
Borislav Petkov83c85652008-04-26 22:25:15 +0200781 sector_t n =
782 (rq->buffer - (char *)bio_data(rq->bio)) / SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 rq->buffer = bio_data(rq->bio);
785 rq->nr_sectors += n;
786 rq->sector -= n;
787 }
Borislav Petkov83c85652008-04-26 22:25:15 +0200788 rq->current_nr_sectors = bio_cur_sectors(rq->bio);
789 rq->hard_cur_sectors = rq->current_nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 rq->hard_nr_sectors = rq->nr_sectors;
791 rq->hard_sector = rq->sector;
792 rq->q->prep_rq_fn(rq->q, rq);
793}
794
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200795/*
796 * All other packet commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100798static void ide_cd_request_sense_fixup(struct request *rq)
799{
800 /*
801 * Some of the trailing request sense fields are optional,
802 * and some drives don't send them. Sigh.
803 */
804 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
805 rq->data_len > 0 && rq->data_len <= 5)
806 while (rq->data_len > 0) {
807 *(u8 *)rq->data++ = 0;
808 --rq->data_len;
809 }
810}
811
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200812int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
813 int write, void *buffer, unsigned *bufflen,
814 struct request_sense *sense, int timeout,
815 unsigned int cmd_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200817 struct cdrom_info *info = drive->driver_data;
818 struct request_sense local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 int retries = 10;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200820 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200822 if (!sense)
823 sense = &local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200825 /* start of retry loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 do {
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200827 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200830 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
831
832 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
833 rq->cmd_type = REQ_TYPE_ATA_PC;
834 rq->sense = sense;
835 rq->cmd_flags |= cmd_flags;
836 rq->timeout = timeout;
837 if (buffer) {
838 rq->data = buffer;
839 rq->data_len = *bufflen;
840 }
841
842 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
843
844 if (buffer)
845 *bufflen = rq->data_len;
846
847 flags = rq->cmd_flags;
848 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200850 /*
851 * FIXME: we should probably abort/retry or something in case of
852 * failure.
853 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200854 if (flags & REQ_FAILED) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200855 /*
856 * The request failed. Retry if it was due to a unit
857 * attention status (usually means media was changed).
858 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200859 struct request_sense *reqbuf = sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 if (reqbuf->sense_key == UNIT_ATTENTION)
862 cdrom_saw_media_change(drive);
863 else if (reqbuf->sense_key == NOT_READY &&
864 reqbuf->asc == 4 && reqbuf->ascq != 4) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200865 /*
866 * The drive is in the process of loading
867 * a disk. Retry, but wait a little to give
868 * the drive time to complete the load.
869 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 ssleep(2);
871 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200872 /* otherwise, don't retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 retries = 0;
874 }
875 --retries;
876 }
877
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200878 /* end of retry loop */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200879 } while ((flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200881 /* return an error if the command failed */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200882 return (flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885/*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200886 * Called from blk_end_request_callback() after the data of the request is
887 * completed and before the request itself is completed. By returning value '1',
888 * blk_end_request_callback() returns immediately without completing it.
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500889 */
890static int cdrom_newpc_intr_dummy_cb(struct request *rq)
891{
892 return 1;
893}
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
896{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200897 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct cdrom_info *info = drive->driver_data;
899 struct request *rq = HWGROUP(drive)->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 xfer_func_t *xferfunc;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100901 ide_expiry_t *expiry = NULL;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200902 int dma_error = 0, dma, stat, thislen, uptodate = 0;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100903 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0;
904 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200905 u16 len;
906 u8 ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200908 /* check for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 dma = info->dma;
910 if (dma) {
911 info->dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200912 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100913 if (dma_error) {
914 printk(KERN_ERR "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100915 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100916 ide_dma_off(drive);
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919
920 if (cdrom_decode_status(drive, 0, &stat))
921 return ide_stopped;
922
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200923 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100925 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100927 if (blk_fs_request(rq)) {
928 ide_end_request(drive, 1, rq->nr_sectors);
929 return ide_stopped;
930 }
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100931 goto end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200934 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100935
936 thislen = blk_fs_request(rq) ? len : rq->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (thislen > len)
938 thislen = len;
939
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200940 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200941 if ((stat & ATA_DRQ) == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100942 if (blk_fs_request(rq)) {
943 /*
944 * If we're not done reading/writing, complain.
945 * Otherwise, complete the command normally.
946 */
947 uptodate = 1;
948 if (rq->current_nr_sectors > 0) {
949 printk(KERN_ERR "%s: %s: data underrun "
950 "(%d blocks)\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200951 drive->name, __func__,
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100952 rq->current_nr_sectors);
953 if (!write)
954 rq->cmd_flags |= REQ_FAILED;
955 uptodate = 0;
956 }
957 cdrom_end_request(drive, uptodate);
958 return ide_stopped;
959 } else if (!blk_pc_request(rq)) {
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100960 ide_cd_request_sense_fixup(rq);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200961 /* complain if we still have data left to transfer */
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100962 uptodate = rq->data_len ? 0 : 1;
963 }
964 goto end_request;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200967 /* check which way to transfer data */
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100968 if (ide_cd_check_ireason(drive, rq, len, ireason, write))
969 return ide_stopped;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100970
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100971 if (blk_fs_request(rq)) {
972 if (write == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100973 int nskip;
974
975 if (ide_cd_check_transfer_size(drive, len)) {
976 cdrom_end_request(drive, 0);
977 return ide_stopped;
978 }
979
980 /*
981 * First, figure out if we need to bit-bucket
982 * any of the leading sectors.
983 */
984 nskip = min_t(int, rq->current_nr_sectors
985 - bio_cur_sectors(rq->bio),
986 thislen >> 9);
987 if (nskip > 0) {
Borislav Petkovae8789f2008-07-16 20:33:45 +0200988 ide_pad_transfer(drive, write, nskip << 9);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100989 rq->current_nr_sectors -= nskip;
990 thislen -= (nskip << 9);
991 }
992 }
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100995 if (ireason == 0) {
996 write = 1;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200997 xferfunc = hwif->tp_ops->output_data;
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100998 } else {
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100999 write = 0;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +02001000 xferfunc = hwif->tp_ops->input_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
1002
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001003 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 while (thislen > 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001005 u8 *ptr = blk_fs_request(rq) ? NULL : rq->data;
Bartlomiej Zolnierkiewicza11e77d2008-02-01 23:09:27 +01001006 int blen = rq->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001008 /* bio backed? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (rq->bio) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001010 if (blk_fs_request(rq)) {
1011 ptr = rq->buffer;
1012 blen = rq->current_nr_sectors << 9;
1013 } else {
1014 ptr = bio_data(rq->bio);
1015 blen = bio_iovec(rq->bio)->bv_len;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
1019 if (!ptr) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001020 if (blk_fs_request(rq) && !write)
1021 /*
Borislav Petkov968c4962008-04-26 17:36:37 +02001022 * If the buffers are full, pipe the rest into
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001023 * oblivion.
1024 */
Borislav Petkovae8789f2008-07-16 20:33:45 +02001025 ide_pad_transfer(drive, 0, thislen);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001026 else {
1027 printk(KERN_ERR "%s: confused, missing data\n",
1028 drive->name);
1029 blk_dump_rq_flags(rq, rq_data_dir(rq)
1030 ? "cdrom_newpc_intr, write"
1031 : "cdrom_newpc_intr, read");
1032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 break;
1034 }
1035
1036 if (blen > thislen)
1037 blen = thislen;
1038
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +02001039 xferfunc(drive, NULL, ptr, blen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 thislen -= blen;
1042 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001044 if (blk_fs_request(rq)) {
1045 rq->buffer += blen;
1046 rq->nr_sectors -= (blen >> 9);
1047 rq->current_nr_sectors -= (blen >> 9);
1048 rq->sector += (blen >> 9);
1049
1050 if (rq->current_nr_sectors == 0 && rq->nr_sectors)
1051 cdrom_end_request(drive, 1);
1052 } else {
1053 rq->data_len -= blen;
1054
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001055 /*
1056 * The request can't be completed until DRQ is cleared.
1057 * So complete the data, but don't complete the request
1058 * using the dummy function for the callback feature
1059 * of blk_end_request_callback().
1060 */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001061 if (rq->bio)
1062 blk_end_request_callback(rq, 0, blen,
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001063 cdrom_newpc_intr_dummy_cb);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001064 else
1065 rq->data += blen;
1066 }
Andreas Schwabbcd88ac2008-02-26 21:50:35 +01001067 if (!write && blk_sense_request(rq))
1068 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001071 /* pad, if necessary */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001072 if (!blk_fs_request(rq) && len > 0)
Borislav Petkovae8789f2008-07-16 20:33:45 +02001073 ide_pad_transfer(drive, write, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001075 if (blk_pc_request(rq)) {
1076 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001077 } else {
1078 timeout = ATAPI_WAIT_PC;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001079 if (!blk_fs_request(rq))
1080 expiry = cdrom_timer_expiry;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001081 }
1082
1083 ide_set_handler(drive, cdrom_newpc_intr, timeout, expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001085
1086end_request:
1087 if (blk_pc_request(rq)) {
1088 unsigned long flags;
Kiyoshi Ueda14e04c32008-02-19 01:41:26 +01001089 unsigned int dlen = rq->data_len;
1090
1091 if (dma)
1092 rq->data_len = 0;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001093
1094 spin_lock_irqsave(&ide_lock, flags);
Kiyoshi Ueda14e04c32008-02-19 01:41:26 +01001095 if (__blk_end_request(rq, 0, dlen))
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001096 BUG();
1097 HWGROUP(drive)->rq = NULL;
1098 spin_unlock_irqrestore(&ide_lock, flags);
1099 } else {
1100 if (!uptodate)
1101 rq->cmd_flags |= REQ_FAILED;
1102 cdrom_end_request(drive, uptodate);
1103 }
1104 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001107static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001109 struct cdrom_info *cd = drive->driver_data;
1110 int write = rq_data_dir(rq) == WRITE;
1111 unsigned short sectors_per_frame =
1112 queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1113
1114 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001115 /* disk has become write protected */
Tejun Heob7db9952008-08-25 19:56:10 +09001116 if (get_disk_ro(cd->disk)) {
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001117 cdrom_end_request(drive, 0);
1118 return ide_stopped;
1119 }
1120 } else {
1121 /*
1122 * We may be retrying this request after an error. Fix up any
1123 * weirdness which might be present in the request packet.
1124 */
1125 restore_request(rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001128 /* use DMA, if possible / writes *must* be hardware frame aligned */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
1130 (rq->sector & (sectors_per_frame - 1))) {
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001131 if (write) {
1132 cdrom_end_request(drive, 0);
1133 return ide_stopped;
1134 }
1135 cd->dma = 0;
1136 } else
1137 cd->dma = drive->using_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001139 if (write)
1140 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001142 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
1145static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive)
1146{
1147 struct request *rq = HWGROUP(drive)->rq;
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
1150}
1151
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001152static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 struct cdrom_info *info = drive->driver_data;
1155
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +01001156 if (blk_pc_request(rq))
1157 rq->cmd_flags |= REQ_QUIET;
1158 else
1159 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001163 /* sg request */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001164 if (rq->bio || ((rq->cmd_type == REQ_TYPE_ATA_PC) && rq->data_len)) {
1165 struct request_queue *q = drive->queue;
1166 unsigned int alignment;
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001167 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001169 if (rq->bio)
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001170 buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001171 else
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001172 buf = rq->data;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 info->dma = drive->using_dma;
1175
1176 /*
1177 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -07001178 *
1179 * NOTE! The "len" and "addr" checks should possibly have
1180 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001182 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001183 if ((unsigned long)buf & alignment || rq->data_len & alignment
1184 || object_is_on_stack(buf))
FUJITA Tomonori0b6abc12008-07-16 20:33:35 +02001185 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001189/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * cdrom driver request routine.
1191 */
Borislav Petkov99384ae2008-07-16 20:33:45 +02001192static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +02001193 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 struct cdrom_info *info = drive->driver_data;
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001196 ide_handler_t *fn;
1197 int xferlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if (blk_fs_request(rq)) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001200 if (drive->atapi_flags & IDE_AFLAG_SEEKING) {
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +02001201 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 unsigned long elapsed = jiffies - info->start_seek;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +02001203 int stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +02001205 if ((stat & ATA_DSC) != ATA_DSC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (elapsed < IDECD_SEEK_TIMEOUT) {
Borislav Petkov83c85652008-04-26 22:25:15 +02001207 ide_stall_queue(drive,
1208 IDECD_SEEK_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return ide_stopped;
1210 }
Borislav Petkov83c85652008-04-26 22:25:15 +02001211 printk(KERN_ERR "%s: DSC timeout\n",
1212 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
Borislav Petkov570f89e2008-07-23 19:56:02 +02001214 drive->atapi_flags &= ~IDE_AFLAG_SEEKING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
Borislav Petkov83c85652008-04-26 22:25:15 +02001216 if (rq_data_dir(rq) == READ &&
1217 IDE_LARGE_SEEK(info->last_block, block,
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001218 IDECD_SEEK_THRESHOLD) &&
1219 drive->dsc_overlap) {
1220 xferlen = 0;
1221 fn = cdrom_start_seek_continuation;
Borislav Petkove529c602008-07-16 20:33:46 +02001222
Borislav Petkov4b01fcb2008-07-16 20:33:46 +02001223 info->dma = 0;
1224 info->start_seek = jiffies;
Borislav Petkove529c602008-07-16 20:33:46 +02001225
1226 ide_cd_prepare_seek_request(drive, rq);
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001227 } else {
1228 xferlen = 32768;
1229 fn = cdrom_start_rw_cont;
Borislav Petkov90eb8082008-07-16 20:33:46 +02001230
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001231 if (cdrom_start_rw(drive, rq) == ide_stopped)
1232 return ide_stopped;
Borislav Petkov90eb8082008-07-16 20:33:46 +02001233
1234 if (ide_cd_prepare_rw_request(drive, rq) == ide_stopped)
1235 return ide_stopped;
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 info->last_block = block;
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +01001238 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
Jens Axboecea28852006-10-12 15:08:45 +02001239 rq->cmd_type == REQ_TYPE_ATA_PC) {
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001240 xferlen = rq->data_len;
1241 fn = cdrom_do_newpc_cont;
Borislav Petkov7fcebda2008-07-16 20:33:46 +02001242
1243 if (!rq->timeout)
1244 rq->timeout = ATAPI_WAIT_PC;
1245
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001246 cdrom_do_block_pc(drive, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001247 } else if (blk_special_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001248 /* right now this can only be a reset... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 cdrom_end_request(drive, 1);
1250 return ide_stopped;
Borislav Petkovab9d6e32008-07-16 20:33:45 +02001251 } else {
1252 blk_dump_rq_flags(rq, "ide-cd bad flags");
1253 cdrom_end_request(drive, 0);
1254 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001256
1257 return cdrom_start_packet_command(drive, xferlen, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001260/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 * Ioctl handling.
1262 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001263 * Routines which queue packet commands take as a final argument a pointer to a
1264 * request_sense struct. If execution of the command results in an error with a
1265 * CHECK CONDITION status, this structure will be filled with the results of the
1266 * subsequent request sense command. The pointer can also be NULL, in which case
1267 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 */
Borislav Petkove5e076a2008-04-26 22:25:15 +02001269static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001271 msf->minute = bcd2bin(msf->minute);
1272 msf->second = bcd2bin(msf->second);
1273 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Borislav Petkovf9afd182008-02-01 23:09:29 +01001276int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 struct cdrom_info *info = drive->driver_data;
1279 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001280 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001282 memset(cmd, 0, BLK_MAX_CDB);
1283 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001285 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001286 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
1287 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001288 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001289 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Harvey Harrison141d3b22008-07-23 19:56:02 +02001291 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
1295 unsigned long *sectors_per_frame,
1296 struct request_sense *sense)
1297{
1298 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001299 __be32 lba;
1300 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 } capbuf;
1302
1303 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001304 unsigned char cmd[BLK_MAX_CDB];
1305 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +02001306 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001308 memset(cmd, 0, BLK_MAX_CDB);
1309 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001311 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
1312 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001313 if (stat)
1314 return stat;
1315
1316 /*
1317 * Sanity check the given block size
1318 */
Petr Tesarik938bb032008-08-05 18:17:02 +02001319 blocklen = be32_to_cpu(capbuf.blocklen);
1320 switch (blocklen) {
1321 case 512:
1322 case 1024:
1323 case 2048:
1324 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001325 break;
1326 default:
1327 printk(KERN_ERR "%s: weird block size %u\n",
Petr Tesarik938bb032008-08-05 18:17:02 +02001328 drive->name, blocklen);
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001329 printk(KERN_ERR "%s: default to 2kb block size\n",
1330 drive->name);
Petr Tesarik938bb032008-08-05 18:17:02 +02001331 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001332 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
1334
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001335 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +02001336 *sectors_per_frame = blocklen >> SECTOR_BITS;
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
1340static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
1341 int format, char *buf, int buflen,
1342 struct request_sense *sense)
1343{
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001344 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001346 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001348 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1349 cmd[6] = trackno;
1350 cmd[7] = (buflen >> 8);
1351 cmd[8] = (buflen & 0xff);
1352 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001355 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001357 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001361int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
1363 int stat, ntracks, i;
1364 struct cdrom_info *info = drive->driver_data;
1365 struct cdrom_device_info *cdi = &info->devinfo;
1366 struct atapi_toc *toc = info->toc;
1367 struct {
1368 struct atapi_toc_header hdr;
1369 struct atapi_toc_entry ent;
1370 } ms_tmp;
1371 long last_written;
1372 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
1373
1374 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001375 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001376 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (toc == NULL) {
Borislav Petkov83c85652008-04-26 22:25:15 +02001378 printk(KERN_ERR "%s: No cdrom TOC buffer!\n",
1379 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return -ENOMEM;
1381 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001382 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001385 /*
1386 * Check to see if the existing data is still valid. If it is,
1387 * just return.
1388 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 (void) cdrom_check_status(drive, sense);
1390
Borislav Petkov570f89e2008-07-23 19:56:02 +02001391 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return 0;
1393
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001394 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
1396 sense);
1397 if (stat)
1398 toc->capacity = 0x1fffff;
1399
1400 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001401 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -07001402 drive->probed_capacity = toc->capacity * sectors_per_frame;
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 blk_queue_hardsect_size(drive->queue,
1405 sectors_per_frame << SECTOR_BITS);
1406
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001407 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1409 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001410 if (stat)
1411 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Borislav Petkov570f89e2008-07-23 19:56:02 +02001413 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001414 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1415 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1419 if (ntracks <= 0)
1420 return -EIO;
1421 if (ntracks > MAX_TRACKS)
1422 ntracks = MAX_TRACKS;
1423
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001424 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1426 (char *)&toc->hdr,
1427 sizeof(struct atapi_toc_header) +
1428 (ntracks + 1) *
1429 sizeof(struct atapi_toc_entry), sense);
1430
1431 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001432 /*
1433 * Cds with CDI tracks only don't have any TOC entries, despite
1434 * of this the returned values are
1435 * first_track == last_track = number of CDI tracks + 1,
1436 * so that this case is indistinguishable from the same layout
1437 * plus an additional audio track. If we get an error for the
1438 * regular case, we assume a CDI without additional audio
1439 * tracks. In this case the readable TOC is empty (CDI tracks
1440 * are not included) and only holds the Leadout entry.
1441 *
1442 * Heiko Eißfeldt.
1443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 ntracks = 0;
1445 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1446 (char *)&toc->hdr,
1447 sizeof(struct atapi_toc_header) +
1448 (ntracks + 1) *
1449 sizeof(struct atapi_toc_entry),
1450 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001451 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001453
Borislav Petkov570f89e2008-07-23 19:56:02 +02001454 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001455 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1456 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001457 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 toc->hdr.first_track = CDROM_LEADOUT;
1459 toc->hdr.last_track = CDROM_LEADOUT;
1460 }
1461 }
1462
1463 if (stat)
1464 return stat;
1465
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001466 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Borislav Petkov570f89e2008-07-23 19:56:02 +02001468 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001469 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1470 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001473 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001474 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1475 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001476 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 msf_from_bcd(&toc->ent[i].addr.msf);
1478 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001479 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1480 toc->ent[i].addr.msf.second,
1481 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001485 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1487 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001488 if (stat)
1489 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1492 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001493 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1494 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1496 }
1497
Borislav Petkov570f89e2008-07-23 19:56:02 +02001498 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001499 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1501 sizeof(ms_tmp), sense);
1502 if (stat)
1503 return stat;
1504
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001505 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001507 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 ms_tmp.ent.addr.msf.frame);
1509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1512
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001513 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 stat = cdrom_get_last_written(cdi, &last_written);
1515 if (!stat && (last_written > toc->capacity)) {
1516 toc->capacity = last_written;
1517 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001518 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
1520
1521 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001522 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 return 0;
1525}
1526
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001527int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001528{
1529 struct cdrom_info *info = drive->driver_data;
1530 struct cdrom_device_info *cdi = &info->devinfo;
1531 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001532 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001533
Borislav Petkov570f89e2008-07-23 19:56:02 +02001534 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001535 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001536
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001537 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001538 do {
1539 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001540 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1541 if (!stat)
1542 break;
1543 } while (--attempts);
1544 return stat;
1545}
1546
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001547void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001548{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001549 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001550 u16 curspeed, maxspeed;
1551
Borislav Petkov570f89e2008-07-23 19:56:02 +02001552 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001553 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1554 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001555 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001556 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1557 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001558 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001559
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001560 cd->current_speed = (curspeed + (176/2)) / 176;
1561 cd->max_speed = (maxspeed + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07001562}
1563
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001564#define IDE_CD_CAPABILITIES \
1565 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1566 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1567 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1568 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1569 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571static struct cdrom_device_ops ide_cdrom_dops = {
1572 .open = ide_cdrom_open_real,
1573 .release = ide_cdrom_release_real,
1574 .drive_status = ide_cdrom_drive_status,
1575 .media_changed = ide_cdrom_check_media_change_real,
1576 .tray_move = ide_cdrom_tray_move,
1577 .lock_door = ide_cdrom_lock_door,
1578 .select_speed = ide_cdrom_select_speed,
1579 .get_last_session = ide_cdrom_get_last_session,
1580 .get_mcn = ide_cdrom_get_mcn,
1581 .reset = ide_cdrom_reset,
1582 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001583 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 .generic_packet = ide_cdrom_packet,
1585};
1586
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001587static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 struct cdrom_info *info = drive->driver_data;
1590 struct cdrom_device_info *devinfo = &info->devinfo;
1591
1592 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001593 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001595 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Borislav Petkov570f89e2008-07-23 19:56:02 +02001598 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001599 devinfo->mask |= CDC_SELECT_SPEED;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 devinfo->disk = info->disk;
1602 return register_cdrom(devinfo);
1603}
1604
Borislav Petkove5e076a2008-04-26 22:25:15 +02001605static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001607 struct cdrom_info *cd = drive->driver_data;
1608 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001609 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1610 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int nslots = 1;
1612
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001613 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1614 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1615 CDC_MO_DRIVE | CDC_RAM);
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001618 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkov83c85652008-04-26 22:25:15 +02001619 printk(KERN_ERR "%s: ATAPI magneto-optical drive\n",
1620 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return nslots;
1622 }
1623
Borislav Petkov570f89e2008-07-23 19:56:02 +02001624 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1625 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001626 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return nslots;
1628 }
1629
1630 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001631 * We have to cheat a little here. the packet will eventually be queued
1632 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1633 * Since this device hasn't been registered with the Uniform layer yet,
1634 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001636 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 cdi->ops = &ide_cdrom_dops;
1638
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001639 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return 0;
1641
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001642 if ((buf[8 + 6] & 0x01) == 0)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001643 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001644 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001645 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001646 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001647 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001648 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001649 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001650 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001651 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001652 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001653 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001654 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001655 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001656 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001657 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001658
1659 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001660 if (mechtype == mechtype_caddy ||
1661 mechtype == mechtype_popup ||
1662 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001663 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001666 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001668 } else if (mechtype == mechtype_individual_changer ||
1669 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001670 nslots = cdrom_number_of_slots(cdi);
1671 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001672 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001675 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 printk(KERN_INFO "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001678
1679 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001680 if (cd->max_speed)
1681 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001682
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001683 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001685 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1686 printk(KERN_CONT " DVD%s%s",
1687 (cdi->mask & CDC_DVD_R) ? "" : "-R",
1688 (cdi->mask & CDC_DVD_RAM) ? "" : "-RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001690 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1691 printk(KERN_CONT " CD%s%s",
1692 (cdi->mask & CDC_CD_R) ? "" : "-R",
1693 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001695 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1696 printk(KERN_CONT " changer w/%d slots", nslots);
1697 else
1698 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Harvey Harrison141d3b22008-07-23 19:56:02 +02001700 printk(KERN_CONT ", %dkB Cache\n", be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 return nslots;
1703}
1704
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001705/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001706static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
1708 int hard_sect = queue_hardsect_size(q);
1709 long block = (long)rq->hard_sector / (hard_sect >> 9);
1710 unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
1711
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001712 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 if (rq_data_dir(rq) == READ)
1715 rq->cmd[0] = GPCMD_READ_10;
1716 else
1717 rq->cmd[0] = GPCMD_WRITE_10;
1718
1719 /*
1720 * fill in lba
1721 */
1722 rq->cmd[2] = (block >> 24) & 0xff;
1723 rq->cmd[3] = (block >> 16) & 0xff;
1724 rq->cmd[4] = (block >> 8) & 0xff;
1725 rq->cmd[5] = block & 0xff;
1726
1727 /*
1728 * and transfer length
1729 */
1730 rq->cmd[7] = (blocks >> 8) & 0xff;
1731 rq->cmd[8] = blocks & 0xff;
1732 rq->cmd_len = 10;
1733 return BLKPREP_OK;
1734}
1735
1736/*
1737 * Most of the SCSI commands are supported directly by ATAPI devices.
1738 * This transform handles the few exceptions.
1739 */
1740static int ide_cdrom_prep_pc(struct request *rq)
1741{
1742 u8 *c = rq->cmd;
1743
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001744 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (c[0] == READ_6 || c[0] == WRITE_6) {
1746 c[8] = c[4];
1747 c[5] = c[3];
1748 c[4] = c[2];
1749 c[3] = c[1] & 0x1f;
1750 c[2] = 0;
1751 c[1] &= 0xe0;
1752 c[0] += (READ_10 - READ_6);
1753 rq->cmd_len = 10;
1754 return BLKPREP_OK;
1755 }
1756
1757 /*
1758 * it's silly to pretend we understand 6-byte sense commands, just
1759 * reject with ILLEGAL_REQUEST and the caller should take the
1760 * appropriate action
1761 */
1762 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1763 rq->errors = ILLEGAL_REQUEST;
1764 return BLKPREP_KILL;
1765 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return BLKPREP_OK;
1768}
1769
Jens Axboe165125e2007-07-24 09:28:11 +02001770static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001772 if (blk_fs_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 return ide_cdrom_prep_fs(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001774 else if (blk_pc_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return ide_cdrom_prep_pc(rq);
1776
1777 return 0;
1778}
1779
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001780struct cd_list_entry {
1781 const char *id_model;
1782 const char *id_firmware;
1783 unsigned int cd_flags;
1784};
1785
Borislav Petkov5e657a92008-04-26 22:25:15 +02001786#ifdef CONFIG_IDE_PROC_FS
1787static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1788{
1789 unsigned long capacity, sectors_per_frame;
1790
1791 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1792 return 0;
1793
1794 return capacity * sectors_per_frame;
1795}
1796
Borislav Petkove5e076a2008-04-26 22:25:15 +02001797static int proc_idecd_read_capacity(char *page, char **start, off_t off,
1798 int count, int *eof, void *data)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001799{
1800 ide_drive_t *drive = data;
1801 int len;
1802
1803 len = sprintf(page, "%llu\n", (long long)ide_cdrom_capacity(drive));
1804 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1805}
1806
1807static ide_proc_entry_t idecd_proc[] = {
1808 { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
1809 { NULL, 0, NULL, NULL }
1810};
1811
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001812ide_devset_rw(dsc_overlap, 0, 1, dsc_overlap);
1813
1814static const struct ide_devset *idecd_settings[] = {
1815 &ide_devset_dsc_overlap,
1816 NULL
1817};
Borislav Petkov5e657a92008-04-26 22:25:15 +02001818#endif
1819
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001820static const struct cd_list_entry ide_cd_quirks_list[] = {
1821 /* Limit transfer size per interrupt. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001822 { "SAMSUNG CD-ROM SCR-2430", NULL, IDE_AFLAG_LIMIT_NFRAMES },
1823 { "SAMSUNG CD-ROM SCR-2432", NULL, IDE_AFLAG_LIMIT_NFRAMES },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001824 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001825 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001826 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001827 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1828 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001829 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001830 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001831 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001832 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001833 /*
1834 * Sanyo 3 CD changer uses a non-standard command for CD changing
1835 * (by default standard ATAPI support for CD changers is used).
1836 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001837 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1838 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1839 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001840 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001841 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001842 /*
1843 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1844 * mode sense page capabilities size, but older drives break.
1845 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001846 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1847 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001848 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001849 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001850 /*
1851 * Some drives used by Apple don't advertise audio play
1852 * but they do support reading TOC & audio datas.
1853 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001854 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1855 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1856 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1857 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1858 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001859 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001860 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001861 { NULL, NULL, 0 }
1862};
1863
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001864static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001865{
1866 const struct cd_list_entry *cle = ide_cd_quirks_list;
1867
1868 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001869 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001870 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001871 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001872 return cle->cd_flags;
1873 cle++;
1874 }
1875
1876 return 0;
1877}
1878
Borislav Petkove5e076a2008-04-26 22:25:15 +02001879static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001881 struct cdrom_info *cd = drive->driver_data;
1882 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001883 u16 *id = drive->id;
1884 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 int nslots;
1886
1887 blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn);
1888 blk_queue_dma_alignment(drive->queue, 31);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001889 blk_queue_update_dma_pad(drive->queue, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 drive->queue->unplug_delay = (1 * HZ) / 1000;
1891 if (!drive->queue->unplug_delay)
1892 drive->queue->unplug_delay = 1;
1893
1894 drive->special.all = 0;
1895
Borislav Petkov570f89e2008-07-23 19:56:02 +02001896 drive->atapi_flags = IDE_AFLAG_MEDIA_CHANGED | IDE_AFLAG_NO_EJECT |
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001897 ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001899 if ((id[ATA_ID_CONFIG] & 0x0060) == 0x20)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001900 drive->atapi_flags |= IDE_AFLAG_DRQ_INTERRUPT;
Bartlomiej Zolnierkiewiczb8d25de2008-02-01 23:09:19 +01001901
Borislav Petkov570f89e2008-07-23 19:56:02 +02001902 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001903 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001904 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1905 IDE_AFLAG_TOCADDR_AS_BCD);
1906 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001907 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001908 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1909 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001910 /* 3 => use CD in slot 0 */
1911 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001913 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001915 /* set correct block size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE);
1917
Bartlomiej Zolnierkiewiczcc121752008-04-27 15:38:24 +02001918 drive->dsc_overlap = (drive->next != drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkov83c85652008-04-26 22:25:15 +02001921 printk(KERN_ERR "%s: %s failed to register device with the"
1922 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001923 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 1;
1925 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001926
1927 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 return 0;
1929}
1930
Russell King4031bbe2006-01-06 11:41:00 +00001931static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
1933 struct cdrom_info *info = drive->driver_data;
1934
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001935 ide_proc_unregister_driver(drive, info->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 del_gendisk(info->disk);
1938
1939 ide_cd_put(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
1942static void ide_cd_release(struct kref *kref)
1943{
1944 struct cdrom_info *info = to_ide_cd(kref);
1945 struct cdrom_device_info *devinfo = &info->devinfo;
1946 ide_drive_t *drive = info->drive;
1947 struct gendisk *g = info->disk;
1948
Jesper Juhl6044ec82005-11-07 01:01:32 -08001949 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001950 if (devinfo->handle == drive)
1951 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 drive->dsc_overlap = 0;
1953 drive->driver_data = NULL;
1954 blk_queue_prep_rq(drive->queue, NULL);
1955 g->private_data = NULL;
1956 put_disk(g);
1957 kfree(info);
1958}
1959
Russell King4031bbe2006-01-06 11:41:00 +00001960static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962static ide_driver_t ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001963 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001964 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001965 .name = "ide-cdrom",
1966 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001967 },
Russell King4031bbe2006-01-06 11:41:00 +00001968 .probe = ide_cd_probe,
1969 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 .version = IDECD_VERSION,
1971 .media = ide_cdrom,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 .supports_dsc_overlap = 1,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001973 .do_request = ide_cd_do_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 .end_request = ide_end_request,
1975 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001976#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 .proc = idecd_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001978 .settings = idecd_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001979#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980};
1981
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001982static int idecd_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 struct gendisk *disk = inode->i_bdev->bd_disk;
1985 struct cdrom_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 int rc = -ENOMEM;
1987
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001988 info = ide_cd_get(disk);
1989 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 return -ENXIO;
1991
Borislav Petkov968c4962008-04-26 17:36:37 +02001992 rc = cdrom_open(&info->devinfo, inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 if (rc < 0)
1995 ide_cd_put(info);
1996
1997 return rc;
1998}
1999
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002000static int idecd_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
2002 struct gendisk *disk = inode->i_bdev->bd_disk;
2003 struct cdrom_info *info = ide_cd_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002005 cdrom_release(&info->devinfo, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 ide_cd_put(info);
2008
2009 return 0;
2010}
2011
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002012static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2013{
2014 struct packet_command cgc;
2015 char buffer[16];
2016 int stat;
2017 char spindown;
2018
2019 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
2020 return -EFAULT;
2021
2022 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2023
2024 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2025 if (stat)
2026 return stat;
2027
2028 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
2029 return cdrom_mode_select(cdi, &cgc);
2030}
2031
2032static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2033{
2034 struct packet_command cgc;
2035 char buffer[16];
2036 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002037 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002038
2039 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2040
2041 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2042 if (stat)
2043 return stat;
2044
2045 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002046 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002047 return -EFAULT;
2048 return 0;
2049}
2050
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002051static int idecd_ioctl(struct inode *inode, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 unsigned int cmd, unsigned long arg)
2053{
2054 struct block_device *bdev = inode->i_bdev;
2055 struct cdrom_info *info = ide_cd_g(bdev->bd_disk);
2056 int err;
2057
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002058 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002059 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002060 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002061 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002062 return idecd_get_spindown(&info->devinfo, arg);
2063 default:
2064 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002065 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002066
2067 err = generic_ide_ioctl(info->drive, file, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 if (err == -EINVAL)
2069 err = cdrom_ioctl(file, &info->devinfo, inode, cmd, arg);
2070
2071 return err;
2072}
2073
2074static int idecd_media_changed(struct gendisk *disk)
2075{
2076 struct cdrom_info *info = ide_cd_g(disk);
2077 return cdrom_media_changed(&info->devinfo);
2078}
2079
2080static int idecd_revalidate_disk(struct gendisk *disk)
2081{
2082 struct cdrom_info *info = ide_cd_g(disk);
2083 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01002084
2085 ide_cd_read_toc(info->drive, &sense);
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 return 0;
2088}
2089
2090static struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002091 .owner = THIS_MODULE,
2092 .open = idecd_open,
2093 .release = idecd_release,
2094 .ioctl = idecd_ioctl,
2095 .media_changed = idecd_media_changed,
2096 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097};
2098
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02002099/* module options */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002100static char *ignore;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102module_param(ignore, charp, 0400);
2103MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
2104
Russell King4031bbe2006-01-06 11:41:00 +00002105static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107 struct cdrom_info *info;
2108 struct gendisk *g;
2109 struct request_sense sense;
2110
2111 if (!strstr("ide-cdrom", drive->driver_req))
2112 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (drive->media != ide_cdrom && drive->media != ide_optical)
2115 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 /* skip drives that we were told to ignore */
2118 if (ignore != NULL) {
2119 if (strstr(ignore, drive->name)) {
Borislav Petkov83c85652008-04-26 22:25:15 +02002120 printk(KERN_INFO "ide-cd: ignoring drive %s\n",
2121 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 goto failed;
2123 }
2124 }
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08002125 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 if (info == NULL) {
Borislav Petkov83c85652008-04-26 22:25:15 +02002127 printk(KERN_ERR "%s: Can't allocate a cdrom structure\n",
2128 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 goto failed;
2130 }
2131
2132 g = alloc_disk(1 << PARTN_BITS);
2133 if (!g)
2134 goto out_free_cd;
2135
2136 ide_init_disk(g, drive);
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 kref_init(&info->kref);
2139
2140 info->drive = drive;
2141 info->driver = &ide_cdrom_driver;
2142 info->disk = g;
2143
2144 g->private_data = &info->driver;
2145
2146 drive->driver_data = info;
2147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 g->driverfs_dev = &drive->gendev;
2150 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
2151 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz05017db2007-12-24 15:23:43 +01002152 ide_cd_release(&info->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 goto failed;
2154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01002156 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 g->fops = &idecd_ops;
2158 g->flags |= GENHD_FL_REMOVABLE;
2159 add_disk(g);
2160 return 0;
2161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162out_free_cd:
2163 kfree(info);
2164failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002165 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167
2168static void __exit ide_cdrom_exit(void)
2169{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002170 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002172
2173static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002175 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
Kay Sievers263756e2005-12-12 18:03:44 +01002178MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01002179MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180module_init(ide_cdrom_init);
2181module_exit(ide_cdrom_exit);
2182MODULE_LICENSE("GPL");