blob: 8650ad43b3245b92ff1f0d35aa4877e547dcd00d [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
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020055static void ide_cd_release(struct kref *);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct cdrom_info *ide_cd_get(struct gendisk *disk)
58{
59 struct cdrom_info *cd = NULL;
60
Arjan van de Vencf8b8972006-03-23 03:00:45 -080061 mutex_lock(&idecd_ref_mutex);
Borislav Petkov5aeddf92008-10-13 21:39:34 +020062 cd = ide_drv_g(disk, cdrom_info);
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020063 if (cd) {
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020064 if (ide_device_get(cd->drive))
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020065 cd = NULL;
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020066 else
67 kref_get(&cd->kref);
68
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +020069 }
Arjan van de Vencf8b8972006-03-23 03:00:45 -080070 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return cd;
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static void ide_cd_put(struct cdrom_info *cd)
75{
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020076 ide_drive_t *drive = cd->drive;
77
Arjan van de Vencf8b8972006-03-23 03:00:45 -080078 mutex_lock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 kref_put(&cd->kref, ide_cd_release);
Bartlomiej Zolnierkiewiczd3e33ff2008-08-05 18:16:59 +020080 ide_device_put(drive);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080081 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * Generic packet command support and error handling routines.
86 */
87
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +020088/* Mark that we've seen a media change and invalidate our internal buffers. */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +020089static void cdrom_saw_media_change(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Borislav Petkov570f89e2008-07-23 19:56:02 +020091 drive->atapi_flags |= IDE_AFLAG_MEDIA_CHANGED;
92 drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
96 struct request_sense *sense)
97{
98 int log = 0;
99
Jens Axboe4aff5e22006-08-10 08:44:47 +0200100 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 0;
102
103 switch (sense->sense_key) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200104 case NO_SENSE:
105 case RECOVERED_ERROR:
106 break;
107 case NOT_READY:
108 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200109 * don't care about tray state messages for e.g. capacity
110 * commands or in-progress or becoming ready
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200111 */
112 if (sense->asc == 0x3a || sense->asc == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200114 log = 1;
115 break;
116 case ILLEGAL_REQUEST:
117 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200118 * don't log START_STOP unit with LoEj set, since we cannot
119 * reliably check if drive can auto-close
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200120 */
121 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200123 log = 1;
124 break;
125 case UNIT_ATTENTION:
126 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200127 * Make good and sure we've seen this potential media change.
128 * Some drives (i.e. Creative) fail to present the correct sense
129 * key in the error register.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200130 */
131 cdrom_saw_media_change(drive);
132 break;
133 default:
134 log = 1;
135 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137 return log;
138}
139
Borislav Petkove5e076a2008-04-26 22:25:15 +0200140static void cdrom_analyze_sense_data(ide_drive_t *drive,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct request *failed_command,
142 struct request_sense *sense)
143{
Alan Coxdbe217a2006-06-25 05:47:44 -0700144 unsigned long sector;
145 unsigned long bio_sectors;
Alan Coxdbe217a2006-06-25 05:47:44 -0700146 struct cdrom_info *info = drive->driver_data;
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (!cdrom_log_sense(drive, failed_command, sense))
149 return;
150
151 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200152 * If a read toc is executed for a CD-R or CD-RW medium where the first
153 * toc has not been recorded yet, it will fail with 05/24/00 (which is a
154 * confusing error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
157 if (sense->sense_key == 0x05 && sense->asc == 0x24)
158 return;
159
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200160 /* current error */
161 if (sense->error_code == 0x70) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200162 switch (sense->sense_key) {
Alan Coxdbe217a2006-06-25 05:47:44 -0700163 case MEDIUM_ERROR:
164 case VOLUME_OVERFLOW:
165 case ILLEGAL_REQUEST:
166 if (!sense->valid)
167 break;
168 if (failed_command == NULL ||
169 !blk_fs_request(failed_command))
170 break;
171 sector = (sense->information[0] << 24) |
172 (sense->information[1] << 16) |
173 (sense->information[2] << 8) |
174 (sense->information[3]);
175
Alan Coxdbe217a2006-06-25 05:47:44 -0700176 if (drive->queue->hardsect_size == 2048)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200177 /* device sector size is 2K */
178 sector <<= 2;
Roel Kluineee49292008-04-28 23:44:43 +0200179
180 bio_sectors = max(bio_sectors(failed_command->bio), 4U);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200181 sector &= ~(bio_sectors - 1);
Alan Coxdbe217a2006-06-25 05:47:44 -0700182
Alan Coxdbe217a2006-06-25 05:47:44 -0700183 if (sector < get_capacity(info->disk) &&
Borislav Petkove5e076a2008-04-26 22:25:15 +0200184 drive->probed_capacity - sector < 4 * 75)
Alan Coxdbe217a2006-06-25 05:47:44 -0700185 set_capacity(info->disk, sector);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200186 }
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100189 ide_cd_log_error(drive->name, failed_command, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense,
193 struct request *failed_command)
194{
195 struct cdrom_info *info = drive->driver_data;
196 struct request *rq = &info->request_sense_request;
197
198 if (sense == NULL)
199 sense = &info->sense_data;
200
201 /* stuff the sense request in front of our current request */
FUJITA Tomonoried820f12008-07-15 21:21:45 +0200202 blk_rq_init(NULL, rq);
203 rq->cmd_type = REQ_TYPE_ATA_PC;
204 rq->rq_disk = info->disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 rq->data = sense;
207 rq->cmd[0] = GPCMD_REQUEST_SENSE;
Borislav Petkove5e076a2008-04-26 22:25:15 +0200208 rq->cmd[4] = 18;
209 rq->data_len = 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Jens Axboe4aff5e22006-08-10 08:44:47 +0200211 rq->cmd_type = REQ_TYPE_SENSE;
Bartlomiej Zolnierkiewicze8a96aa2008-07-15 21:21:41 +0200212 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* NOTE! Save the failed command in "rq->buffer" */
215 rq->buffer = (void *) failed_command;
216
FUJITA Tomonori63f5abb2008-07-15 21:21:51 +0200217 ide_do_drive_cmd(drive, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200220static void cdrom_end_request(ide_drive_t *drive, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 struct request *rq = HWGROUP(drive)->rq;
223 int nsectors = rq->hard_cur_sectors;
224
Jens Axboe4aff5e22006-08-10 08:44:47 +0200225 if (blk_sense_request(rq) && uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200227 * For REQ_TYPE_SENSE, "rq->buffer" points to the original
228 * failed request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 */
230 struct request *failed = (struct request *) rq->buffer;
231 struct cdrom_info *info = drive->driver_data;
232 void *sense = &info->sense_data;
233 unsigned long flags;
234
235 if (failed) {
236 if (failed->sense) {
237 sense = failed->sense;
238 failed->sense_len = rq->sense_len;
239 }
Alan Coxdbe217a2006-06-25 05:47:44 -0700240 cdrom_analyze_sense_data(drive, failed, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200242 * now end the failed request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700244 if (blk_fs_request(failed)) {
245 if (ide_end_dequeued_request(drive, failed, 0,
246 failed->hard_nr_sectors))
247 BUG();
248 } else {
249 spin_lock_irqsave(&ide_lock, flags);
Kiyoshi Ueda5e36bb62008-01-28 10:34:20 +0100250 if (__blk_end_request(failed, -EIO,
251 failed->data_len))
252 BUG();
Alan Coxdbe217a2006-06-25 05:47:44 -0700253 spin_unlock_irqrestore(&ide_lock, flags);
254 }
255 } else
256 cdrom_analyze_sense_data(drive, NULL, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258
259 if (!rq->current_nr_sectors && blk_fs_request(rq))
260 uptodate = 1;
261 /* make sure it's fully ended */
262 if (blk_pc_request(rq))
263 nsectors = (rq->data_len + 511) >> 9;
264 if (!nsectors)
265 nsectors = 1;
266
267 ide_end_request(drive, uptodate, nsectors);
268}
269
Borislav Petkov83c85652008-04-26 22:25:15 +0200270static void ide_dump_status_no_sense(ide_drive_t *drive, const char *msg, u8 st)
Alan Coxdbe217a2006-06-25 05:47:44 -0700271{
Borislav Petkov83c85652008-04-26 22:25:15 +0200272 if (st & 0x80)
Alan Coxdbe217a2006-06-25 05:47:44 -0700273 return;
Borislav Petkov83c85652008-04-26 22:25:15 +0200274 ide_dump_status(drive, msg, st);
Alan Coxdbe217a2006-06-25 05:47:44 -0700275}
276
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200277/*
278 * Returns:
279 * 0: if the request should be continued.
280 * 1: if the request was ended.
281 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret)
283{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200284 ide_hwif_t *hwif = drive->hwif;
285 struct request *rq = hwif->hwgroup->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 int stat, err, sense_key;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200287
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200288 /* check for errors */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200289 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (stat_ret)
292 *stat_ret = stat;
293
294 if (OK_STAT(stat, good_stat, BAD_R_STAT))
295 return 0;
296
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200297 /* get the IDE error register */
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100298 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 sense_key = err >> 4;
300
301 if (rq == NULL) {
Borislav Petkove5e076a2008-04-26 22:25:15 +0200302 printk(KERN_ERR "%s: missing rq in %s\n",
303 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return 1;
305 }
306
Jens Axboe4aff5e22006-08-10 08:44:47 +0200307 if (blk_sense_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200308 /*
309 * We got an error trying to get sense info from the drive
310 * (probably while trying to recover from a former error).
311 * Just give up.
312 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200313 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 cdrom_end_request(drive, 0);
315 ide_error(drive, "request sense failure", stat);
316 return 1;
317
Jens Axboe8770c012006-10-12 17:24:52 +0200318 } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* All other functions, except for READ. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /*
322 * if we have an error, pass back CHECK_CONDITION as the
323 * scsi status byte
324 */
Jens Axboeb7156732006-11-13 18:05:02 +0100325 if (blk_pc_request(rq) && !rq->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 rq->errors = SAM_STAT_CHECK_CONDITION;
327
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200328 /* check for tray open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (sense_key == NOT_READY) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200330 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 } else if (sense_key == UNIT_ATTENTION) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200332 /* check for media change */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200333 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return 0;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200335 } else if (sense_key == ILLEGAL_REQUEST &&
336 rq->cmd[0] == GPCMD_START_STOP_UNIT) {
337 /*
338 * Don't print error message for this condition--
339 * SFF8090i indicates that 5/24/00 is the correct
340 * response to a request to close the tray if the
341 * drive doesn't have that capability.
342 * cdrom_log_sense() knows this!
343 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200344 } else if (!(rq->cmd_flags & REQ_QUIET)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200345 /* otherwise, print an error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 ide_dump_status(drive, "packet command error", stat);
347 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200348
Jens Axboe4aff5e22006-08-10 08:44:47 +0200349 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /*
352 * instead of playing games with moving completions around,
353 * remove failed request completely and end it when the
354 * request sense has completed
355 */
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100356 goto end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 } else if (blk_fs_request(rq)) {
359 int do_end_request = 0;
360
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200361 /* handle errors from READ and WRITE requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 if (blk_noretry_request(rq))
364 do_end_request = 1;
365
366 if (sense_key == NOT_READY) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200367 /* tray open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (rq_data_dir(rq) == READ) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200369 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200371 /* fail the request */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200372 printk(KERN_ERR "%s: tray open\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 do_end_request = 1;
374 } else {
375 struct cdrom_info *info = drive->driver_data;
376
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200377 /*
378 * Allow the drive 5 seconds to recover, some
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * devices will return this error while flushing
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200380 * data from cache.
381 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (!rq->errors)
Borislav Petkov83c85652008-04-26 22:25:15 +0200383 info->write_timeout = jiffies +
384 ATAPI_WAIT_WRITE_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 rq->errors = 1;
386 if (time_after(jiffies, info->write_timeout))
387 do_end_request = 1;
388 else {
389 unsigned long flags;
390
391 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200392 * take a breather relying on the unplug
393 * timer to kick us again
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
395 spin_lock_irqsave(&ide_lock, flags);
396 blk_plug_device(drive->queue);
Borislav Petkov83c85652008-04-26 22:25:15 +0200397 spin_unlock_irqrestore(&ide_lock,
398 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 1;
400 }
401 }
402 } else if (sense_key == UNIT_ATTENTION) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200403 /* media change */
Borislav Petkove5e076a2008-04-26 22:25:15 +0200404 cdrom_saw_media_change(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200406 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200407 * Arrange to retry the request but be sure to give up
408 * if we've retried too many times.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200409 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (++rq->errors > ERROR_MAX)
411 do_end_request = 1;
412 } else if (sense_key == ILLEGAL_REQUEST ||
413 sense_key == DATA_PROTECT) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200414 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200415 * No point in retrying after an illegal request or data
416 * protect error.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200417 */
418 ide_dump_status_no_sense(drive, "command error", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 do_end_request = 1;
420 } else if (sense_key == MEDIUM_ERROR) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200421 /*
422 * No point in re-trying a zillion times on a bad
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200423 * sector. If we got here the error is not correctable.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200424 */
Borislav Petkov83c85652008-04-26 22:25:15 +0200425 ide_dump_status_no_sense(drive,
426 "media error (bad sector)",
427 stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 do_end_request = 1;
429 } else if (sense_key == BLANK_CHECK) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200430 /* disk appears blank ?? */
Borislav Petkov83c85652008-04-26 22:25:15 +0200431 ide_dump_status_no_sense(drive, "media error (blank)",
432 stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 do_end_request = 1;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200434 } else if ((err & ~ATA_ABORTED) != 0) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200435 /* go to the default handler for other errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 ide_error(drive, "cdrom_decode_status", stat);
437 return 1;
438 } else if ((++rq->errors > ERROR_MAX)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200439 /* we've racked up too many retries, abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 do_end_request = 1;
441 }
442
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200443 /*
444 * End a request through request sense analysis when we have
445 * sense data. We need this in order to perform end of media
446 * processing.
447 */
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100448 if (do_end_request)
449 goto end_request;
Alan Coxdbe217a2006-06-25 05:47:44 -0700450
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100451 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200452 * If we got a CHECK_CONDITION status, queue
453 * a request sense command.
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100454 */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200455 if (stat & ATA_ERR)
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100456 cdrom_queue_request_sense(drive, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 } else {
458 blk_dump_rq_flags(rq, "ide-cd: bad rq");
459 cdrom_end_request(drive, 0);
460 }
461
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200462 /* retry, or handle the next request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 1;
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100464
465end_request:
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200466 if (stat & ATA_ERR) {
Bartlomiej Zolnierkiewiczbbb89e32008-02-01 23:09:28 +0100467 unsigned long flags;
468
469 spin_lock_irqsave(&ide_lock, flags);
470 blkdev_dequeue_request(rq);
471 HWGROUP(drive)->rq = NULL;
472 spin_unlock_irqrestore(&ide_lock, flags);
473
474 cdrom_queue_request_sense(drive, rq->sense, rq);
475 } else
476 cdrom_end_request(drive, 0);
477
478 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481static int cdrom_timer_expiry(ide_drive_t *drive)
482{
483 struct request *rq = HWGROUP(drive)->rq;
484 unsigned long wait = 0;
485
486 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200487 * Some commands are *slow* and normally take a long time to complete.
488 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
489 * commands/drives support that. Let ide_timer_expiry keep polling us
490 * for these.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
492 switch (rq->cmd[0]) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200493 case GPCMD_BLANK:
494 case GPCMD_FORMAT_UNIT:
495 case GPCMD_RESERVE_RZONE_TRACK:
496 case GPCMD_CLOSE_TRACK:
497 case GPCMD_FLUSH_CACHE:
498 wait = ATAPI_WAIT_PC;
499 break;
500 default:
501 if (!(rq->cmd_flags & REQ_QUIET))
Borislav Petkov83c85652008-04-26 22:25:15 +0200502 printk(KERN_INFO "ide-cd: cmd 0x%x timed out\n",
503 rq->cmd[0]);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200504 wait = 0;
505 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507 return wait;
508}
509
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200510/*
511 * Set up the device registers for transferring a packet command on DEV,
512 * expecting to later transfer XFERLEN bytes. HANDLER is the routine
513 * which actually transfers the command to the drive. If this is a
514 * drq_interrupt device, this routine will arrange for HANDLER to be
515 * called when the interrupt from the drive arrives. Otherwise, HANDLER
516 * will be called immediately after the drive is prepared for the transfer.
517 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518static ide_startstop_t cdrom_start_packet_command(ide_drive_t *drive,
519 int xferlen,
520 ide_handler_t *handler)
521{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct cdrom_info *info = drive->driver_data;
523 ide_hwif_t *hwif = drive->hwif;
524
Bartlomiej Zolnierkiewicz3a6a3542008-01-25 22:17:13 +0100525 /* FIXME: for Virtual DMA we must check harder */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (info->dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200527 info->dma = !hwif->dma_ops->dma_setup(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200529 /* set up the controller registers */
Bartlomiej Zolnierkiewicz9a410e72008-07-15 21:21:48 +0200530 ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL,
531 xferlen, info->dma);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +0100532
Borislav Petkov570f89e2008-07-23 19:56:02 +0200533 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
Albert Leef0dd8712007-02-17 02:40:21 +0100534 /* waiting for CDB interrupt, not DMA yet. */
535 if (info->dma)
536 drive->waiting_for_dma = 0;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /* packet command */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200539 ide_execute_command(drive, ATA_CMD_PACKET, handler,
Borislav Petkov83c85652008-04-26 22:25:15 +0200540 ATAPI_WAIT_PC, cdrom_timer_expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return ide_started;
542 } else {
Bartlomiej Zolnierkiewicz1fc14252008-04-28 23:44:39 +0200543 ide_execute_pkt_cmd(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 return (*handler) (drive);
546 }
547}
548
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200549/*
550 * Send a packet command to DRIVE described by CMD_BUF and CMD_LEN. The device
551 * registers must have already been prepared by cdrom_start_packet_command.
552 * HANDLER is the interrupt handler to call when the command completes or
553 * there's data ready.
554 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#define ATAPI_MIN_CDB_BYTES 12
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200556static ide_startstop_t cdrom_transfer_packet_command(ide_drive_t *drive,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct request *rq,
558 ide_handler_t *handler)
559{
560 ide_hwif_t *hwif = drive->hwif;
561 int cmd_len;
562 struct cdrom_info *info = drive->driver_data;
563 ide_startstop_t startstop;
564
Borislav Petkov570f89e2008-07-23 19:56:02 +0200565 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200566 /*
567 * Here we should have been called after receiving an interrupt
568 * from the device. DRQ should how be set.
569 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200571 /* check for errors */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200572 if (cdrom_decode_status(drive, ATA_DRQ, NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return ide_stopped;
Albert Leef0dd8712007-02-17 02:40:21 +0100574
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200575 /* ok, next interrupt will be DMA interrupt */
Albert Leef0dd8712007-02-17 02:40:21 +0100576 if (info->dma)
577 drive->waiting_for_dma = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200579 /* otherwise, we must wait for DRQ to get set */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200580 if (ide_wait_stat(&startstop, drive, ATA_DRQ,
581 ATA_BUSY, WAIT_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return startstop;
583 }
584
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200585 /* arm the interrupt handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 ide_set_handler(drive, handler, rq->timeout, cdrom_timer_expiry);
587
588 /* ATAPI commands get padded out to 12 bytes minimum */
589 cmd_len = COMMAND_SIZE(rq->cmd[0]);
590 if (cmd_len < ATAPI_MIN_CDB_BYTES)
591 cmd_len = ATAPI_MIN_CDB_BYTES;
592
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200593 /* send the command to the device */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200594 hwif->tp_ops->output_data(drive, NULL, rq->cmd, cmd_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200596 /* start the DMA if need be */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (info->dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200598 hwif->dma_ops->dma_start(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 return ide_started;
601}
602
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200603/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * Check the contents of the interrupt reason register from the cdrom
605 * and attempt to recover if there are problems. Returns 0 if everything's
606 * ok; nonzero if the request has been terminated.
607 */
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100608static int ide_cd_check_ireason(ide_drive_t *drive, struct request *rq,
609 int len, int ireason, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200611 ide_hwif_t *hwif = drive->hwif;
612
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100613 /*
614 * ireason == 0: the drive wants to receive data from us
615 * ireason == 2: the drive is expecting to transfer data to us
616 */
617 if (ireason == (!rw << 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 0;
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100619 else if (ireason == (rw << 1)) {
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +0100620
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200621 /* whoops... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +0100622 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200623 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Borislav Petkovae8789f2008-07-16 20:33:45 +0200625 ide_pad_transfer(drive, rw, len);
Bartlomiej Zolnierkiewicz0d6f7e32008-02-01 23:09:28 +0100626 } else if (rw == 0 && ireason == 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200627 /*
628 * Some drives (ASUS) seem to tell us that status info is
629 * available. Just get it and ignore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200631 (void)hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
633 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200634 /* drive wants a command packet, or invalid ireason... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +0100635 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200636 drive->name, __func__, ireason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100639 if (rq->cmd_type == REQ_TYPE_ATA_PC)
640 rq->cmd_flags |= REQ_FAILED;
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 cdrom_end_request(drive, 0);
643 return -1;
644}
645
646/*
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100647 * Assume that the drive will always provide data in multiples of at least
648 * SECTOR_SIZE, as it gets hairy to keep track of the transfers otherwise.
649 */
650static int ide_cd_check_transfer_size(ide_drive_t *drive, int len)
651{
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100652 if ((len % SECTOR_SIZE) == 0)
653 return 0;
654
655 printk(KERN_ERR "%s: %s: Bad transfer size %d\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200656 drive->name, __func__, len);
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100657
Borislav Petkov570f89e2008-07-23 19:56:02 +0200658 if (drive->atapi_flags & IDE_AFLAG_LIMIT_NFRAMES)
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100659 printk(KERN_ERR " This drive is not supported by "
660 "this version of the driver\n");
661 else {
662 printk(KERN_ERR " Trying to limit transfer sizes\n");
Borislav Petkov570f89e2008-07-23 19:56:02 +0200663 drive->atapi_flags |= IDE_AFLAG_LIMIT_NFRAMES;
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100664 }
665
666 return 1;
667}
668
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100669static ide_startstop_t cdrom_newpc_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +0100670
Borislav Petkov90eb8082008-07-16 20:33:46 +0200671static ide_startstop_t ide_cd_prepare_rw_request(ide_drive_t *drive,
672 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100674 if (rq_data_dir(rq) == READ) {
675 unsigned short sectors_per_frame =
676 queue_hardsect_size(drive->queue) >> SECTOR_BITS;
677 int nskip = rq->sector & (sectors_per_frame - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100679 /*
680 * If the requested sector doesn't start on a frame boundary,
681 * we must adjust the start of the transfer so that it does,
682 * and remember to skip the first few sectors.
683 *
684 * If the rq->current_nr_sectors field is larger than the size
685 * of the buffer, it will mean that we're to skip a number of
686 * sectors equal to the amount by which rq->current_nr_sectors
687 * is larger than the buffer size.
688 */
689 if (nskip > 0) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200690 /* sanity check... */
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100691 if (rq->current_nr_sectors !=
692 bio_cur_sectors(rq->bio)) {
693 printk(KERN_ERR "%s: %s: buffer botch (%u)\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200694 drive->name, __func__,
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100695 rq->current_nr_sectors);
696 cdrom_end_request(drive, 0);
697 return ide_stopped;
698 }
699 rq->current_nr_sectors += nskip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100702#if 0
703 else
704 /* the immediate bit */
705 rq->cmd[1] = 1 << 3;
706#endif
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200707 /* set up the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 rq->timeout = ATAPI_WAIT_PC;
709
Borislav Petkov90eb8082008-07-16 20:33:46 +0200710 return ide_started;
711}
712
713/*
714 * Routine to send a read/write packet command to the drive. This is usually
715 * called directly from cdrom_start_{read,write}(). However, for drq_interrupt
716 * devices, it is called from an interrupt when the drive is ready to accept
717 * the command.
718 */
719static ide_startstop_t cdrom_start_rw_cont(ide_drive_t *drive)
720{
721 struct request *rq = drive->hwif->hwgroup->rq;
722
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200723 /* send the command to the drive and return */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100724 return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727#define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
728#define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
729#define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */
730
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200731static ide_startstop_t cdrom_seek_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 struct cdrom_info *info = drive->driver_data;
734 int stat;
735 static int retry = 10;
736
737 if (cdrom_decode_status(drive, 0, &stat))
738 return ide_stopped;
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +0100739
Borislav Petkov570f89e2008-07-23 19:56:02 +0200740 drive->atapi_flags |= IDE_AFLAG_SEEKING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200743 if (--retry == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 drive->dsc_overlap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746 return ide_stopped;
747}
748
Borislav Petkove529c602008-07-16 20:33:46 +0200749static void ide_cd_prepare_seek_request(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 sector_t frame = rq->sector;
752
753 sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS);
754
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200755 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 rq->cmd[0] = GPCMD_SEEK;
757 put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]);
758
759 rq->timeout = ATAPI_WAIT_PC;
Borislav Petkove529c602008-07-16 20:33:46 +0200760}
761
762static ide_startstop_t cdrom_start_seek_continuation(ide_drive_t *drive)
763{
764 struct request *rq = drive->hwif->hwgroup->rq;
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr);
767}
768
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200769/*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200770 * Fix up a possibly partially-processed request so that we can start it over
771 * entirely, or even put it back on the request queue.
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +0200772 */
773static void restore_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 if (rq->buffer != bio_data(rq->bio)) {
Borislav Petkov83c85652008-04-26 22:25:15 +0200776 sector_t n =
777 (rq->buffer - (char *)bio_data(rq->bio)) / SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 rq->buffer = bio_data(rq->bio);
780 rq->nr_sectors += n;
781 rq->sector -= n;
782 }
Borislav Petkov83c85652008-04-26 22:25:15 +0200783 rq->current_nr_sectors = bio_cur_sectors(rq->bio);
784 rq->hard_cur_sectors = rq->current_nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 rq->hard_nr_sectors = rq->nr_sectors;
786 rq->hard_sector = rq->sector;
787 rq->q->prep_rq_fn(rq->q, rq);
788}
789
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200790/*
791 * All other packet commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 */
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100793static void ide_cd_request_sense_fixup(struct request *rq)
794{
795 /*
796 * Some of the trailing request sense fields are optional,
797 * and some drives don't send them. Sigh.
798 */
799 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
800 rq->data_len > 0 && rq->data_len <= 5)
801 while (rq->data_len > 0) {
802 *(u8 *)rq->data++ = 0;
803 --rq->data_len;
804 }
805}
806
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200807int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
808 int write, void *buffer, unsigned *bufflen,
809 struct request_sense *sense, int timeout,
810 unsigned int cmd_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200812 struct cdrom_info *info = drive->driver_data;
813 struct request_sense local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 int retries = 10;
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200815 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200817 if (!sense)
818 sense = &local_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200820 /* start of retry loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 do {
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200822 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200825 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
826
827 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
828 rq->cmd_type = REQ_TYPE_ATA_PC;
829 rq->sense = sense;
830 rq->cmd_flags |= cmd_flags;
831 rq->timeout = timeout;
832 if (buffer) {
833 rq->data = buffer;
834 rq->data_len = *bufflen;
835 }
836
837 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
838
839 if (buffer)
840 *bufflen = rq->data_len;
841
842 flags = rq->cmd_flags;
843 blk_put_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200845 /*
846 * FIXME: we should probably abort/retry or something in case of
847 * failure.
848 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200849 if (flags & REQ_FAILED) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200850 /*
851 * The request failed. Retry if it was due to a unit
852 * attention status (usually means media was changed).
853 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200854 struct request_sense *reqbuf = sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 if (reqbuf->sense_key == UNIT_ATTENTION)
857 cdrom_saw_media_change(drive);
858 else if (reqbuf->sense_key == NOT_READY &&
859 reqbuf->asc == 4 && reqbuf->ascq != 4) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200860 /*
861 * The drive is in the process of loading
862 * a disk. Retry, but wait a little to give
863 * the drive time to complete the load.
864 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 ssleep(2);
866 } else {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200867 /* otherwise, don't retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 retries = 0;
869 }
870 --retries;
871 }
872
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200873 /* end of retry loop */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200874 } while ((flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200876 /* return an error if the command failed */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200877 return (flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880/*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200881 * Called from blk_end_request_callback() after the data of the request is
882 * completed and before the request itself is completed. By returning value '1',
883 * blk_end_request_callback() returns immediately without completing it.
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500884 */
885static int cdrom_newpc_intr_dummy_cb(struct request *rq)
886{
887 return 1;
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
891{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200892 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 struct cdrom_info *info = drive->driver_data;
894 struct request *rq = HWGROUP(drive)->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 xfer_func_t *xferfunc;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100896 ide_expiry_t *expiry = NULL;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200897 int dma_error = 0, dma, stat, thislen, uptodate = 0;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100898 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0;
899 unsigned int timeout;
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200900 u16 len;
901 u8 ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200903 /* check for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 dma = info->dma;
905 if (dma) {
906 info->dma = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200907 dma_error = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100908 if (dma_error) {
909 printk(KERN_ERR "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100910 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100911 ide_dma_off(drive);
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914
915 if (cdrom_decode_status(drive, 0, &stat))
916 return ide_stopped;
917
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200918 /* using dma, transfer is complete now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +0100920 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100922 if (blk_fs_request(rq)) {
923 ide_end_request(drive, 1, rq->nr_sectors);
924 return ide_stopped;
925 }
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100926 goto end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200929 ide_read_bcount_and_ireason(drive, &len, &ireason);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100930
931 thislen = blk_fs_request(rq) ? len : rq->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (thislen > len)
933 thislen = len;
934
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200935 /* If DRQ is clear, the command has completed. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200936 if ((stat & ATA_DRQ) == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100937 if (blk_fs_request(rq)) {
938 /*
939 * If we're not done reading/writing, complain.
940 * Otherwise, complete the command normally.
941 */
942 uptodate = 1;
943 if (rq->current_nr_sectors > 0) {
944 printk(KERN_ERR "%s: %s: data underrun "
945 "(%d blocks)\n",
Paolo Ciarrocchi177773e2008-04-26 17:36:42 +0200946 drive->name, __func__,
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100947 rq->current_nr_sectors);
948 if (!write)
949 rq->cmd_flags |= REQ_FAILED;
950 uptodate = 0;
951 }
952 cdrom_end_request(drive, uptodate);
953 return ide_stopped;
954 } else if (!blk_pc_request(rq)) {
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100955 ide_cd_request_sense_fixup(rq);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200956 /* complain if we still have data left to transfer */
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100957 uptodate = rq->data_len ? 0 : 1;
958 }
959 goto end_request;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -0500960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200962 /* check which way to transfer data */
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100963 if (ide_cd_check_ireason(drive, rq, len, ireason, write))
964 return ide_stopped;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100965
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100966 if (blk_fs_request(rq)) {
967 if (write == 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100968 int nskip;
969
970 if (ide_cd_check_transfer_size(drive, len)) {
971 cdrom_end_request(drive, 0);
972 return ide_stopped;
973 }
974
975 /*
976 * First, figure out if we need to bit-bucket
977 * any of the leading sectors.
978 */
979 nskip = min_t(int, rq->current_nr_sectors
980 - bio_cur_sectors(rq->bio),
981 thislen >> 9);
982 if (nskip > 0) {
Borislav Petkovae8789f2008-07-16 20:33:45 +0200983 ide_pad_transfer(drive, write, nskip << 9);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +0100984 rq->current_nr_sectors -= nskip;
985 thislen -= (nskip << 9);
986 }
987 }
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100990 if (ireason == 0) {
991 write = 1;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200992 xferfunc = hwif->tp_ops->output_data;
Bartlomiej Zolnierkiewicz9f10d9e2008-02-26 21:50:35 +0100993 } else {
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +0100994 write = 0;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200995 xferfunc = hwif->tp_ops->input_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +0200998 /* transfer data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 while (thislen > 0) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001000 u8 *ptr = blk_fs_request(rq) ? NULL : rq->data;
Bartlomiej Zolnierkiewicza11e77d2008-02-01 23:09:27 +01001001 int blen = rq->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001003 /* bio backed? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (rq->bio) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001005 if (blk_fs_request(rq)) {
1006 ptr = rq->buffer;
1007 blen = rq->current_nr_sectors << 9;
1008 } else {
1009 ptr = bio_data(rq->bio);
1010 blen = bio_iovec(rq->bio)->bv_len;
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
1013
1014 if (!ptr) {
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001015 if (blk_fs_request(rq) && !write)
1016 /*
Borislav Petkov968c4962008-04-26 17:36:37 +02001017 * If the buffers are full, pipe the rest into
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001018 * oblivion.
1019 */
Borislav Petkovae8789f2008-07-16 20:33:45 +02001020 ide_pad_transfer(drive, 0, thislen);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001021 else {
1022 printk(KERN_ERR "%s: confused, missing data\n",
1023 drive->name);
1024 blk_dump_rq_flags(rq, rq_data_dir(rq)
1025 ? "cdrom_newpc_intr, write"
1026 : "cdrom_newpc_intr, read");
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 break;
1029 }
1030
1031 if (blen > thislen)
1032 blen = thislen;
1033
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +02001034 xferfunc(drive, NULL, ptr, blen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 thislen -= blen;
1037 len -= blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001039 if (blk_fs_request(rq)) {
1040 rq->buffer += blen;
1041 rq->nr_sectors -= (blen >> 9);
1042 rq->current_nr_sectors -= (blen >> 9);
1043 rq->sector += (blen >> 9);
1044
1045 if (rq->current_nr_sectors == 0 && rq->nr_sectors)
1046 cdrom_end_request(drive, 1);
1047 } else {
1048 rq->data_len -= blen;
1049
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001050 /*
1051 * The request can't be completed until DRQ is cleared.
1052 * So complete the data, but don't complete the request
1053 * using the dummy function for the callback feature
1054 * of blk_end_request_callback().
1055 */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001056 if (rq->bio)
1057 blk_end_request_callback(rq, 0, blen,
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001058 cdrom_newpc_intr_dummy_cb);
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001059 else
1060 rq->data += blen;
1061 }
Andreas Schwabbcd88ac2008-02-26 21:50:35 +01001062 if (!write && blk_sense_request(rq))
1063 rq->sense_len += blen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001066 /* pad, if necessary */
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001067 if (!blk_fs_request(rq) && len > 0)
Borislav Petkovae8789f2008-07-16 20:33:45 +02001068 ide_pad_transfer(drive, write, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001070 if (blk_pc_request(rq)) {
1071 timeout = rq->timeout;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001072 } else {
1073 timeout = ATAPI_WAIT_PC;
Bartlomiej Zolnierkiewicz0041e7c2008-02-01 23:09:28 +01001074 if (!blk_fs_request(rq))
1075 expiry = cdrom_timer_expiry;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001076 }
1077
1078 ide_set_handler(drive, cdrom_newpc_intr, timeout, expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001080
1081end_request:
1082 if (blk_pc_request(rq)) {
1083 unsigned long flags;
Kiyoshi Ueda14e04c32008-02-19 01:41:26 +01001084 unsigned int dlen = rq->data_len;
1085
1086 if (dma)
1087 rq->data_len = 0;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001088
1089 spin_lock_irqsave(&ide_lock, flags);
Kiyoshi Ueda14e04c32008-02-19 01:41:26 +01001090 if (__blk_end_request(rq, 0, dlen))
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001091 BUG();
1092 HWGROUP(drive)->rq = NULL;
1093 spin_unlock_irqrestore(&ide_lock, flags);
1094 } else {
1095 if (!uptodate)
1096 rq->cmd_flags |= REQ_FAILED;
1097 cdrom_end_request(drive, uptodate);
1098 }
1099 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001102static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001104 struct cdrom_info *cd = drive->driver_data;
1105 int write = rq_data_dir(rq) == WRITE;
1106 unsigned short sectors_per_frame =
1107 queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1108
1109 if (write) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001110 /* disk has become write protected */
Tejun Heob7db9952008-08-25 19:56:10 +09001111 if (get_disk_ro(cd->disk)) {
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001112 cdrom_end_request(drive, 0);
1113 return ide_stopped;
1114 }
1115 } else {
1116 /*
1117 * We may be retrying this request after an error. Fix up any
1118 * weirdness which might be present in the request packet.
1119 */
1120 restore_request(rq);
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001123 /* use DMA, if possible / writes *must* be hardware frame aligned */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
1125 (rq->sector & (sectors_per_frame - 1))) {
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001126 if (write) {
1127 cdrom_end_request(drive, 0);
1128 return ide_stopped;
1129 }
1130 cd->dma = 0;
1131 } else
1132 cd->dma = drive->using_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Bartlomiej Zolnierkiewicz21ea1f02008-02-01 23:09:27 +01001134 if (write)
1135 cd->devinfo.media_written = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001137 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive)
1141{
1142 struct request *rq = HWGROUP(drive)->rq;
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
1145}
1146
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001147static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 struct cdrom_info *info = drive->driver_data;
1150
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +01001151 if (blk_pc_request(rq))
1152 rq->cmd_flags |= REQ_QUIET;
1153 else
1154 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001158 /* sg request */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001159 if (rq->bio || ((rq->cmd_type == REQ_TYPE_ATA_PC) && rq->data_len)) {
1160 struct request_queue *q = drive->queue;
1161 unsigned int alignment;
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001162 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001164 if (rq->bio)
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001165 buf = bio_data(rq->bio);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001166 else
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001167 buf = rq->data;
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 info->dma = drive->using_dma;
1170
1171 /*
1172 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -07001173 *
1174 * NOTE! The "len" and "addr" checks should possibly have
1175 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 */
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001177 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
FUJITA Tomonoriefa402d2008-10-10 22:39:22 +02001178 if ((unsigned long)buf & alignment || rq->data_len & alignment
1179 || object_is_on_stack(buf))
FUJITA Tomonori0b6abc12008-07-16 20:33:35 +02001180 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001184/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 * cdrom driver request routine.
1186 */
Borislav Petkov99384ae2008-07-16 20:33:45 +02001187static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
Borislav Petkove5e076a2008-04-26 22:25:15 +02001188 sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 struct cdrom_info *info = drive->driver_data;
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001191 ide_handler_t *fn;
1192 int xferlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 if (blk_fs_request(rq)) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001195 if (drive->atapi_flags & IDE_AFLAG_SEEKING) {
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +02001196 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 unsigned long elapsed = jiffies - info->start_seek;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +02001198 int stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +02001200 if ((stat & ATA_DSC) != ATA_DSC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (elapsed < IDECD_SEEK_TIMEOUT) {
Borislav Petkov83c85652008-04-26 22:25:15 +02001202 ide_stall_queue(drive,
1203 IDECD_SEEK_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return ide_stopped;
1205 }
Borislav Petkov83c85652008-04-26 22:25:15 +02001206 printk(KERN_ERR "%s: DSC timeout\n",
1207 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
Borislav Petkov570f89e2008-07-23 19:56:02 +02001209 drive->atapi_flags &= ~IDE_AFLAG_SEEKING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
Borislav Petkov83c85652008-04-26 22:25:15 +02001211 if (rq_data_dir(rq) == READ &&
1212 IDE_LARGE_SEEK(info->last_block, block,
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001213 IDECD_SEEK_THRESHOLD) &&
1214 drive->dsc_overlap) {
1215 xferlen = 0;
1216 fn = cdrom_start_seek_continuation;
Borislav Petkove529c602008-07-16 20:33:46 +02001217
Borislav Petkov4b01fcb2008-07-16 20:33:46 +02001218 info->dma = 0;
1219 info->start_seek = jiffies;
Borislav Petkove529c602008-07-16 20:33:46 +02001220
1221 ide_cd_prepare_seek_request(drive, rq);
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001222 } else {
1223 xferlen = 32768;
1224 fn = cdrom_start_rw_cont;
Borislav Petkov90eb8082008-07-16 20:33:46 +02001225
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001226 if (cdrom_start_rw(drive, rq) == ide_stopped)
1227 return ide_stopped;
Borislav Petkov90eb8082008-07-16 20:33:46 +02001228
1229 if (ide_cd_prepare_rw_request(drive, rq) == ide_stopped)
1230 return ide_stopped;
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 info->last_block = block;
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +01001233 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
Jens Axboecea28852006-10-12 15:08:45 +02001234 rq->cmd_type == REQ_TYPE_ATA_PC) {
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001235 xferlen = rq->data_len;
1236 fn = cdrom_do_newpc_cont;
Borislav Petkov7fcebda2008-07-16 20:33:46 +02001237
1238 if (!rq->timeout)
1239 rq->timeout = ATAPI_WAIT_PC;
1240
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001241 cdrom_do_block_pc(drive, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001242 } else if (blk_special_request(rq)) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001243 /* right now this can only be a reset... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 cdrom_end_request(drive, 1);
1245 return ide_stopped;
Borislav Petkovab9d6e32008-07-16 20:33:45 +02001246 } else {
1247 blk_dump_rq_flags(rq, "ide-cd bad flags");
1248 cdrom_end_request(drive, 0);
1249 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
Borislav Petkovb6ca4402008-07-16 20:33:46 +02001251
1252 return cdrom_start_packet_command(drive, xferlen, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001255/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 * Ioctl handling.
1257 *
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001258 * Routines which queue packet commands take as a final argument a pointer to a
1259 * request_sense struct. If execution of the command results in an error with a
1260 * CHECK CONDITION status, this structure will be filled with the results of the
1261 * subsequent request sense command. The pointer can also be NULL, in which case
1262 * no sense information is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 */
Borislav Petkove5e076a2008-04-26 22:25:15 +02001264static void msf_from_bcd(struct atapi_msf *msf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001266 msf->minute = bcd2bin(msf->minute);
1267 msf->second = bcd2bin(msf->second);
1268 msf->frame = bcd2bin(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Borislav Petkovf9afd182008-02-01 23:09:29 +01001271int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct cdrom_info *info = drive->driver_data;
1274 struct cdrom_device_info *cdi = &info->devinfo;
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001275 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001277 memset(cmd, 0, BLK_MAX_CDB);
1278 cmd[0] = GPCMD_TEST_UNIT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001280 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001281 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
1282 * instead of supporting the LOAD_UNLOAD opcode.
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001283 */
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001284 cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Harvey Harrison141d3b22008-07-23 19:56:02 +02001286 return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
1290 unsigned long *sectors_per_frame,
1291 struct request_sense *sense)
1292{
1293 struct {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001294 __be32 lba;
1295 __be32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 } capbuf;
1297
1298 int stat;
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001299 unsigned char cmd[BLK_MAX_CDB];
1300 unsigned len = sizeof(capbuf);
Petr Tesarik938bb032008-08-05 18:17:02 +02001301 u32 blocklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001303 memset(cmd, 0, BLK_MAX_CDB);
1304 cmd[0] = GPCMD_READ_CDVD_CAPACITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001306 stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
1307 REQ_QUIET);
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001308 if (stat)
1309 return stat;
1310
1311 /*
1312 * Sanity check the given block size
1313 */
Petr Tesarik938bb032008-08-05 18:17:02 +02001314 blocklen = be32_to_cpu(capbuf.blocklen);
1315 switch (blocklen) {
1316 case 512:
1317 case 1024:
1318 case 2048:
1319 case 4096:
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001320 break;
1321 default:
1322 printk(KERN_ERR "%s: weird block size %u\n",
Petr Tesarik938bb032008-08-05 18:17:02 +02001323 drive->name, blocklen);
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001324 printk(KERN_ERR "%s: default to 2kb block size\n",
1325 drive->name);
Petr Tesarik938bb032008-08-05 18:17:02 +02001326 blocklen = 2048;
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001327 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
1329
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001330 *capacity = 1 + be32_to_cpu(capbuf.lba);
Petr Tesarik938bb032008-08-05 18:17:02 +02001331 *sectors_per_frame = blocklen >> SECTOR_BITS;
Jens Axboee8e7b9e2008-07-24 22:53:35 +02001332 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
1335static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
1336 int format, char *buf, int buflen,
1337 struct request_sense *sense)
1338{
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001339 unsigned char cmd[BLK_MAX_CDB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001341 memset(cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001343 cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1344 cmd[6] = trackno;
1345 cmd[7] = (buflen >> 8);
1346 cmd[8] = (buflen & 0xff);
1347 cmd[9] = (format << 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 if (msf_flag)
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001350 cmd[1] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
FUJITA Tomonori5f828542008-07-15 21:21:42 +02001352 return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001356int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 int stat, ntracks, i;
1359 struct cdrom_info *info = drive->driver_data;
1360 struct cdrom_device_info *cdi = &info->devinfo;
1361 struct atapi_toc *toc = info->toc;
1362 struct {
1363 struct atapi_toc_header hdr;
1364 struct atapi_toc_entry ent;
1365 } ms_tmp;
1366 long last_written;
1367 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
1368
1369 if (toc == NULL) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001370 /* try to allocate space */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001371 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (toc == NULL) {
Borislav Petkov83c85652008-04-26 22:25:15 +02001373 printk(KERN_ERR "%s: No cdrom TOC buffer!\n",
1374 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return -ENOMEM;
1376 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001377 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001380 /*
1381 * Check to see if the existing data is still valid. If it is,
1382 * just return.
1383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 (void) cdrom_check_status(drive, sense);
1385
Borislav Petkov570f89e2008-07-23 19:56:02 +02001386 if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return 0;
1388
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001389 /* try to get the total cdrom capacity and sector size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
1391 sense);
1392 if (stat)
1393 toc->capacity = 0x1fffff;
1394
1395 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001396 /* save a private copy of the TOC capacity for error handling */
Alan Coxdbe217a2006-06-25 05:47:44 -07001397 drive->probed_capacity = toc->capacity * sectors_per_frame;
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 blk_queue_hardsect_size(drive->queue,
1400 sectors_per_frame << SECTOR_BITS);
1401
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001402 /* first read just the header, so we know how long the TOC is */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1404 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001405 if (stat)
1406 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Borislav Petkov570f89e2008-07-23 19:56:02 +02001408 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001409 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1410 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1414 if (ntracks <= 0)
1415 return -EIO;
1416 if (ntracks > MAX_TRACKS)
1417 ntracks = MAX_TRACKS;
1418
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001419 /* now read the whole schmeer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1421 (char *)&toc->hdr,
1422 sizeof(struct atapi_toc_header) +
1423 (ntracks + 1) *
1424 sizeof(struct atapi_toc_entry), sense);
1425
1426 if (stat && toc->hdr.first_track > 1) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001427 /*
1428 * Cds with CDI tracks only don't have any TOC entries, despite
1429 * of this the returned values are
1430 * first_track == last_track = number of CDI tracks + 1,
1431 * so that this case is indistinguishable from the same layout
1432 * plus an additional audio track. If we get an error for the
1433 * regular case, we assume a CDI without additional audio
1434 * tracks. In this case the readable TOC is empty (CDI tracks
1435 * are not included) and only holds the Leadout entry.
1436 *
1437 * Heiko Eißfeldt.
1438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 ntracks = 0;
1440 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1441 (char *)&toc->hdr,
1442 sizeof(struct atapi_toc_header) +
1443 (ntracks + 1) *
1444 sizeof(struct atapi_toc_entry),
1445 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001446 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001448
Borislav Petkov570f89e2008-07-23 19:56:02 +02001449 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001450 toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1451 toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001452 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 toc->hdr.first_track = CDROM_LEADOUT;
1454 toc->hdr.last_track = CDROM_LEADOUT;
1455 }
1456 }
1457
1458 if (stat)
1459 return stat;
1460
Borislav Petkov7eb43fd2008-02-11 00:32:13 +01001461 toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Borislav Petkov570f89e2008-07-23 19:56:02 +02001463 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001464 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1465 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001468 for (i = 0; i <= ntracks; i++) {
Borislav Petkov570f89e2008-07-23 19:56:02 +02001469 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1470 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
Adrian Bunkfc99856a2008-08-18 21:40:04 +02001471 toc->ent[i].track = bcd2bin(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 msf_from_bcd(&toc->ent[i].addr.msf);
1473 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001474 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1475 toc->ent[i].addr.msf.second,
1476 toc->ent[i].addr.msf.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 if (toc->hdr.first_track != CDROM_LEADOUT) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001480 /* read the multisession information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1482 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001483 if (stat)
1484 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1487 } else {
Borislav Petkove5e076a2008-04-26 22:25:15 +02001488 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1489 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1491 }
1492
Borislav Petkov570f89e2008-07-23 19:56:02 +02001493 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001494 /* re-read multisession information using MSF format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1496 sizeof(ms_tmp), sense);
1497 if (stat)
1498 return stat;
1499
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001500 msf_from_bcd(&ms_tmp.ent.addr.msf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001502 ms_tmp.ent.addr.msf.second,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 ms_tmp.ent.addr.msf.frame);
1504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1507
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001508 /* now try to get the total cdrom capacity */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 stat = cdrom_get_last_written(cdi, &last_written);
1510 if (!stat && (last_written > toc->capacity)) {
1511 toc->capacity = last_written;
1512 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001513 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515
1516 /* Remember that we've read this stuff. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001517 drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 return 0;
1520}
1521
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001522int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001523{
1524 struct cdrom_info *info = drive->driver_data;
1525 struct cdrom_device_info *cdi = &info->devinfo;
1526 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001527 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001528
Borislav Petkov570f89e2008-07-23 19:56:02 +02001529 if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001530 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001531
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001532 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001533 do {
1534 /* we seem to get stat=0x01,err=0x00 the first time (??) */
Eric Piel9235e682005-06-23 00:10:29 -07001535 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1536 if (!stat)
1537 break;
1538 } while (--attempts);
1539 return stat;
1540}
1541
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001542void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001543{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001544 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001545 u16 curspeed, maxspeed;
1546
Borislav Petkov570f89e2008-07-23 19:56:02 +02001547 if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001548 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1549 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001550 } else {
Harvey Harrison141d3b22008-07-23 19:56:02 +02001551 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1552 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
Eric Piel9235e682005-06-23 00:10:29 -07001553 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001554
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001555 cd->current_speed = (curspeed + (176/2)) / 176;
1556 cd->max_speed = (maxspeed + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07001557}
1558
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001559#define IDE_CD_CAPABILITIES \
1560 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1561 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1562 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1563 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1564 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566static struct cdrom_device_ops ide_cdrom_dops = {
1567 .open = ide_cdrom_open_real,
1568 .release = ide_cdrom_release_real,
1569 .drive_status = ide_cdrom_drive_status,
1570 .media_changed = ide_cdrom_check_media_change_real,
1571 .tray_move = ide_cdrom_tray_move,
1572 .lock_door = ide_cdrom_lock_door,
1573 .select_speed = ide_cdrom_select_speed,
1574 .get_last_session = ide_cdrom_get_last_session,
1575 .get_mcn = ide_cdrom_get_mcn,
1576 .reset = ide_cdrom_reset,
1577 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01001578 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 .generic_packet = ide_cdrom_packet,
1580};
1581
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001582static int ide_cdrom_register(ide_drive_t *drive, int nslots)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
1584 struct cdrom_info *info = drive->driver_data;
1585 struct cdrom_device_info *devinfo = &info->devinfo;
1586
1587 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001588 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001590 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Borislav Petkov570f89e2008-07-23 19:56:02 +02001593 if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01001594 devinfo->mask |= CDC_SELECT_SPEED;
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 devinfo->disk = info->disk;
1597 return register_cdrom(devinfo);
1598}
1599
Borislav Petkove5e076a2008-04-26 22:25:15 +02001600static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001602 struct cdrom_info *cd = drive->driver_data;
1603 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001604 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1605 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 int nslots = 1;
1607
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001608 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1609 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1610 CDC_MO_DRIVE | CDC_RAM);
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001613 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Borislav Petkov83c85652008-04-26 22:25:15 +02001614 printk(KERN_ERR "%s: ATAPI magneto-optical drive\n",
1615 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return nslots;
1617 }
1618
Borislav Petkov570f89e2008-07-23 19:56:02 +02001619 if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1620 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001621 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return nslots;
1623 }
1624
1625 /*
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001626 * We have to cheat a little here. the packet will eventually be queued
1627 * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1628 * Since this device hasn't been registered with the Uniform layer yet,
1629 * it can't do this. Same goes for cdi->ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001631 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 cdi->ops = &ide_cdrom_dops;
1633
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001634 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return 0;
1636
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001637 if ((buf[8 + 6] & 0x01) == 0)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001638 drive->atapi_flags |= IDE_AFLAG_NO_DOORLOCK;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001639 if (buf[8 + 6] & 0x08)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001640 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001641 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001642 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001643 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001644 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001645 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001646 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001647 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001648 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001649 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001650 cdi->mask &= ~CDC_DVD_R;
Borislav Petkov570f89e2008-07-23 19:56:02 +02001651 if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001652 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001653
1654 mechtype = buf[8 + 6] >> 5;
Borislav Petkovf20f2582008-10-05 18:23:27 +02001655 if (mechtype == mechtype_caddy ||
1656 mechtype == mechtype_popup ||
1657 (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001658 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001661 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001663 } else if (mechtype == mechtype_individual_changer ||
1664 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01001665 nslots = cdrom_number_of_slots(cdi);
1666 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001667 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001670 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 printk(KERN_INFO "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001673
1674 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001675 if (cd->max_speed)
1676 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001677
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001678 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001680 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1681 printk(KERN_CONT " DVD%s%s",
1682 (cdi->mask & CDC_DVD_R) ? "" : "-R",
1683 (cdi->mask & CDC_DVD_RAM) ? "" : "-RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001685 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1686 printk(KERN_CONT " CD%s%s",
1687 (cdi->mask & CDC_CD_R) ? "" : "-R",
1688 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001690 if ((cdi->mask & CDC_SELECT_DISC) == 0)
1691 printk(KERN_CONT " changer w/%d slots", nslots);
1692 else
1693 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Harvey Harrison141d3b22008-07-23 19:56:02 +02001695 printk(KERN_CONT ", %dkB Cache\n", be16_to_cpup((__be16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 return nslots;
1698}
1699
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001700/* standard prep_rq_fn that builds 10 byte cmds */
Jens Axboe165125e2007-07-24 09:28:11 +02001701static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 int hard_sect = queue_hardsect_size(q);
1704 long block = (long)rq->hard_sector / (hard_sect >> 9);
1705 unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
1706
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +02001707 memset(rq->cmd, 0, BLK_MAX_CDB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 if (rq_data_dir(rq) == READ)
1710 rq->cmd[0] = GPCMD_READ_10;
1711 else
1712 rq->cmd[0] = GPCMD_WRITE_10;
1713
1714 /*
1715 * fill in lba
1716 */
1717 rq->cmd[2] = (block >> 24) & 0xff;
1718 rq->cmd[3] = (block >> 16) & 0xff;
1719 rq->cmd[4] = (block >> 8) & 0xff;
1720 rq->cmd[5] = block & 0xff;
1721
1722 /*
1723 * and transfer length
1724 */
1725 rq->cmd[7] = (blocks >> 8) & 0xff;
1726 rq->cmd[8] = blocks & 0xff;
1727 rq->cmd_len = 10;
1728 return BLKPREP_OK;
1729}
1730
1731/*
1732 * Most of the SCSI commands are supported directly by ATAPI devices.
1733 * This transform handles the few exceptions.
1734 */
1735static int ide_cdrom_prep_pc(struct request *rq)
1736{
1737 u8 *c = rq->cmd;
1738
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001739 /* transform 6-byte read/write commands to the 10-byte version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (c[0] == READ_6 || c[0] == WRITE_6) {
1741 c[8] = c[4];
1742 c[5] = c[3];
1743 c[4] = c[2];
1744 c[3] = c[1] & 0x1f;
1745 c[2] = 0;
1746 c[1] &= 0xe0;
1747 c[0] += (READ_10 - READ_6);
1748 rq->cmd_len = 10;
1749 return BLKPREP_OK;
1750 }
1751
1752 /*
1753 * it's silly to pretend we understand 6-byte sense commands, just
1754 * reject with ILLEGAL_REQUEST and the caller should take the
1755 * appropriate action
1756 */
1757 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1758 rq->errors = ILLEGAL_REQUEST;
1759 return BLKPREP_KILL;
1760 }
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return BLKPREP_OK;
1763}
1764
Jens Axboe165125e2007-07-24 09:28:11 +02001765static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001767 if (blk_fs_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 return ide_cdrom_prep_fs(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001769 else if (blk_pc_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 return ide_cdrom_prep_pc(rq);
1771
1772 return 0;
1773}
1774
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001775struct cd_list_entry {
1776 const char *id_model;
1777 const char *id_firmware;
1778 unsigned int cd_flags;
1779};
1780
Borislav Petkov5e657a92008-04-26 22:25:15 +02001781#ifdef CONFIG_IDE_PROC_FS
1782static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1783{
1784 unsigned long capacity, sectors_per_frame;
1785
1786 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1787 return 0;
1788
1789 return capacity * sectors_per_frame;
1790}
1791
Borislav Petkove5e076a2008-04-26 22:25:15 +02001792static int proc_idecd_read_capacity(char *page, char **start, off_t off,
1793 int count, int *eof, void *data)
Borislav Petkov5e657a92008-04-26 22:25:15 +02001794{
1795 ide_drive_t *drive = data;
1796 int len;
1797
1798 len = sprintf(page, "%llu\n", (long long)ide_cdrom_capacity(drive));
1799 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1800}
1801
1802static ide_proc_entry_t idecd_proc[] = {
1803 { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
1804 { NULL, 0, NULL, NULL }
1805};
1806
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001807ide_devset_rw_field(dsc_overlap, dsc_overlap);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001808
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +02001809static const struct ide_proc_devset idecd_settings[] = {
1810 IDE_PROC_DEVSET(dsc_overlap, 0, 1),
1811 { 0 },
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001812};
Borislav Petkov5e657a92008-04-26 22:25:15 +02001813#endif
1814
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001815static const struct cd_list_entry ide_cd_quirks_list[] = {
1816 /* Limit transfer size per interrupt. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001817 { "SAMSUNG CD-ROM SCR-2430", NULL, IDE_AFLAG_LIMIT_NFRAMES },
1818 { "SAMSUNG CD-ROM SCR-2432", NULL, IDE_AFLAG_LIMIT_NFRAMES },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001819 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001820 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_AFLAG_NO_SPEED_SELECT },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001821 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001822 { "NEC CD-ROM DRIVE:260", "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1823 IDE_AFLAG_PRE_ATAPI12, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001824 /* Vertos 300, some versions of this drive like to talk BCD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001825 { "V003S0DS", NULL, IDE_AFLAG_VERTOS_300_SSD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001826 /* Vertos 600 ESD. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001827 { "V006E0DS", NULL, IDE_AFLAG_VERTOS_600_ESD, },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001828 /*
1829 * Sanyo 3 CD changer uses a non-standard command for CD changing
1830 * (by default standard ATAPI support for CD changers is used).
1831 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001832 { "CD-ROM CDR-C3 G", NULL, IDE_AFLAG_SANYO_3CD },
1833 { "CD-ROM CDR-C3G", NULL, IDE_AFLAG_SANYO_3CD },
1834 { "CD-ROM CDR_C36", NULL, IDE_AFLAG_SANYO_3CD },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001835 /* Stingray 8X CD-ROM. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001836 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001837 /*
1838 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1839 * mode sense page capabilities size, but older drives break.
1840 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001841 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
1842 { "WPI CDS-32X", NULL, IDE_AFLAG_FULL_CAPS_PAGE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001843 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001844 { "", "241N", IDE_AFLAG_LE_SPEED_FIELDS },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001845 /*
1846 * Some drives used by Apple don't advertise audio play
1847 * but they do support reading TOC & audio datas.
1848 */
Borislav Petkov570f89e2008-07-23 19:56:02 +02001849 { "MATSHITADVD-ROM SR-8187", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1850 { "MATSHITADVD-ROM SR-8186", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1851 { "MATSHITADVD-ROM SR-8176", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1852 { "MATSHITADVD-ROM SR-8174", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
1853 { "Optiarc DVD RW AD-5200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Bodo Eggertf3e85ee2008-10-05 18:23:28 +02001854 { "Optiarc DVD RW AD-7200A", NULL, IDE_AFLAG_PLAY_AUDIO_OK },
Borislav Petkovf20f2582008-10-05 18:23:27 +02001855 { "Optiarc DVD RW AD-7543A", NULL, IDE_AFLAG_NO_AUTOCLOSE },
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001856 { NULL, NULL, 0 }
1857};
1858
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001859static unsigned int ide_cd_flags(u16 *id)
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001860{
1861 const struct cd_list_entry *cle = ide_cd_quirks_list;
1862
1863 while (cle->id_model) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001864 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001865 (cle->id_firmware == NULL ||
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001866 strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001867 return cle->cd_flags;
1868 cle++;
1869 }
1870
1871 return 0;
1872}
1873
Borislav Petkove5e076a2008-04-26 22:25:15 +02001874static int ide_cdrom_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001876 struct cdrom_info *cd = drive->driver_data;
1877 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001878 u16 *id = drive->id;
1879 char *fw_rev = (char *)&id[ATA_ID_FW_REV];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 int nslots;
1881
1882 blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn);
1883 blk_queue_dma_alignment(drive->queue, 31);
FUJITA Tomonorie5318b52008-07-16 20:33:35 +02001884 blk_queue_update_dma_pad(drive->queue, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 drive->queue->unplug_delay = (1 * HZ) / 1000;
1886 if (!drive->queue->unplug_delay)
1887 drive->queue->unplug_delay = 1;
1888
1889 drive->special.all = 0;
1890
Borislav Petkov570f89e2008-07-23 19:56:02 +02001891 drive->atapi_flags = IDE_AFLAG_MEDIA_CHANGED | IDE_AFLAG_NO_EJECT |
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001892 ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001894 if ((id[ATA_ID_CONFIG] & 0x0060) == 0x20)
Borislav Petkov570f89e2008-07-23 19:56:02 +02001895 drive->atapi_flags |= IDE_AFLAG_DRQ_INTERRUPT;
Bartlomiej Zolnierkiewiczb8d25de2008-02-01 23:09:19 +01001896
Borislav Petkov570f89e2008-07-23 19:56:02 +02001897 if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001898 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001899 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1900 IDE_AFLAG_TOCADDR_AS_BCD);
1901 else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +02001902 fw_rev[4] == '1' && fw_rev[6] <= '2')
Borislav Petkov570f89e2008-07-23 19:56:02 +02001903 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1904 else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001905 /* 3 => use CD in slot 0 */
1906 cdi->sanyo_slot = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001908 nslots = ide_cdrom_probe_capabilities(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02001910 /* set correct block size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE);
1912
Bartlomiej Zolnierkiewiczcc121752008-04-27 15:38:24 +02001913 drive->dsc_overlap = (drive->next != drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 if (ide_cdrom_register(drive, nslots)) {
Borislav Petkov83c85652008-04-26 22:25:15 +02001916 printk(KERN_ERR "%s: %s failed to register device with the"
1917 " cdrom driver.\n", drive->name, __func__);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001918 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return 1;
1920 }
Bartlomiej Zolnierkiewicz1e874f42008-10-10 22:39:27 +02001921
1922 ide_proc_register_driver(drive, cd->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return 0;
1924}
1925
Russell King4031bbe2006-01-06 11:41:00 +00001926static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 struct cdrom_info *info = drive->driver_data;
1929
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001930 ide_proc_unregister_driver(drive, info->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 del_gendisk(info->disk);
1933
1934 ide_cd_put(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937static void ide_cd_release(struct kref *kref)
1938{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001939 struct cdrom_info *info = to_ide_drv(kref, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 struct cdrom_device_info *devinfo = &info->devinfo;
1941 ide_drive_t *drive = info->drive;
1942 struct gendisk *g = info->disk;
1943
Jesper Juhl6044ec82005-11-07 01:01:32 -08001944 kfree(info->toc);
Akinobu Mita0a0c4112008-03-26 12:09:02 +01001945 if (devinfo->handle == drive)
1946 unregister_cdrom(devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 drive->dsc_overlap = 0;
1948 drive->driver_data = NULL;
1949 blk_queue_prep_rq(drive->queue, NULL);
1950 g->private_data = NULL;
1951 put_disk(g);
1952 kfree(info);
1953}
1954
Russell King4031bbe2006-01-06 11:41:00 +00001955static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957static ide_driver_t ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001958 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01001959 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001960 .name = "ide-cdrom",
1961 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001962 },
Russell King4031bbe2006-01-06 11:41:00 +00001963 .probe = ide_cd_probe,
1964 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 .version = IDECD_VERSION,
1966 .media = ide_cdrom,
Borislav Petkov99384ae2008-07-16 20:33:45 +02001967 .do_request = ide_cd_do_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 .end_request = ide_end_request,
1969 .error = __ide_error,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001970#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 .proc = idecd_proc,
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +02001972 .settings = idecd_settings,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001973#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974};
1975
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001976static int idecd_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
1978 struct gendisk *disk = inode->i_bdev->bd_disk;
1979 struct cdrom_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 int rc = -ENOMEM;
1981
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001982 info = ide_cd_get(disk);
1983 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 return -ENXIO;
1985
Borislav Petkov968c4962008-04-26 17:36:37 +02001986 rc = cdrom_open(&info->devinfo, inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 if (rc < 0)
1989 ide_cd_put(info);
1990
1991 return rc;
1992}
1993
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001994static int idecd_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 struct gendisk *disk = inode->i_bdev->bd_disk;
Borislav Petkov5aeddf92008-10-13 21:39:34 +02001997 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02001999 cdrom_release(&info->devinfo, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 ide_cd_put(info);
2002
2003 return 0;
2004}
2005
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002006static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2007{
2008 struct packet_command cgc;
2009 char buffer[16];
2010 int stat;
2011 char spindown;
2012
2013 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
2014 return -EFAULT;
2015
2016 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2017
2018 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2019 if (stat)
2020 return stat;
2021
2022 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
2023 return cdrom_mode_select(cdi, &cgc);
2024}
2025
2026static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2027{
2028 struct packet_command cgc;
2029 char buffer[16];
2030 int stat;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002031 char spindown;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002032
2033 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2034
2035 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2036 if (stat)
2037 return stat;
2038
2039 spindown = buffer[11] & 0x0f;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002040 if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002041 return -EFAULT;
2042 return 0;
2043}
2044
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002045static int idecd_ioctl(struct inode *inode, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 unsigned int cmd, unsigned long arg)
2047{
2048 struct block_device *bdev = inode->i_bdev;
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002049 struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 int err;
2051
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002052 switch (cmd) {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002053 case CDROMSETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002054 return idecd_set_spindown(&info->devinfo, arg);
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002055 case CDROMGETSPINDOWN:
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002056 return idecd_get_spindown(&info->devinfo, arg);
2057 default:
2058 break;
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002059 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002060
2061 err = generic_ide_ioctl(info->drive, file, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 if (err == -EINVAL)
2063 err = cdrom_ioctl(file, &info->devinfo, inode, cmd, arg);
2064
2065 return err;
2066}
2067
2068static int idecd_media_changed(struct gendisk *disk)
2069{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002070 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return cdrom_media_changed(&info->devinfo);
2072}
2073
2074static int idecd_revalidate_disk(struct gendisk *disk)
2075{
Borislav Petkov5aeddf92008-10-13 21:39:34 +02002076 struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01002078
2079 ide_cd_read_toc(info->drive, &sense);
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 return 0;
2082}
2083
2084static struct block_device_operations idecd_ops = {
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002085 .owner = THIS_MODULE,
2086 .open = idecd_open,
2087 .release = idecd_release,
2088 .ioctl = idecd_ioctl,
2089 .media_changed = idecd_media_changed,
2090 .revalidate_disk = idecd_revalidate_disk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091};
2092
Borislav Petkov5a3ea3b2008-04-26 22:25:15 +02002093/* module options */
Paolo Ciarrocchi9ce70fb2008-04-26 17:36:42 +02002094static char *ignore;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096module_param(ignore, charp, 0400);
2097MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
2098
Russell King4031bbe2006-01-06 11:41:00 +00002099static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
2101 struct cdrom_info *info;
2102 struct gendisk *g;
2103 struct request_sense sense;
2104
2105 if (!strstr("ide-cdrom", drive->driver_req))
2106 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 if (drive->media != ide_cdrom && drive->media != ide_optical)
2109 goto failed;
Bartlomiej Zolnierkiewicz2a924662008-10-10 22:39:24 +02002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /* skip drives that we were told to ignore */
2112 if (ignore != NULL) {
2113 if (strstr(ignore, drive->name)) {
Borislav Petkov83c85652008-04-26 22:25:15 +02002114 printk(KERN_INFO "ide-cd: ignoring drive %s\n",
2115 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 goto failed;
2117 }
2118 }
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08002119 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (info == NULL) {
Borislav Petkov83c85652008-04-26 22:25:15 +02002121 printk(KERN_ERR "%s: Can't allocate a cdrom structure\n",
2122 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 goto failed;
2124 }
2125
2126 g = alloc_disk(1 << PARTN_BITS);
2127 if (!g)
2128 goto out_free_cd;
2129
2130 ide_init_disk(g, drive);
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 kref_init(&info->kref);
2133
2134 info->drive = drive;
2135 info->driver = &ide_cdrom_driver;
2136 info->disk = g;
2137
2138 g->private_data = &info->driver;
2139
2140 drive->driver_data = info;
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 g->driverfs_dev = &drive->gendev;
2144 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
2145 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz05017db2007-12-24 15:23:43 +01002146 ide_cd_release(&info->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 goto failed;
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01002150 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 g->fops = &idecd_ops;
2152 g->flags |= GENHD_FL_REMOVABLE;
2153 add_disk(g);
2154 return 0;
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156out_free_cd:
2157 kfree(info);
2158failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002159 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
2162static void __exit ide_cdrom_exit(void)
2163{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002164 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002166
2167static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002169 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170}
2171
Kay Sievers263756e2005-12-12 18:03:44 +01002172MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01002173MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174module_init(ide_cdrom_init);
2175module_exit(ide_cdrom_exit);
2176MODULE_LICENSE("GPL");