blob: edcdc7432ddf579d26eaaea41d9898536eb19f9d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/ide/ide-cd.c
3 *
4 * Copyright (C) 1994, 1995, 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 *
8 * May be copied or modified under the terms of the GNU General Public
9 * License. See linux/COPYING for more information.
10 *
11 * ATAPI CD-ROM driver. To be used with ide.c.
12 * 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
16 * 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
18 * 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 *
22 * Drives that deviate from these standards will be accommodated as much
23 * as possible via compile time or command-line options. Since I only have
24 * a few drives, you generally need to send me patches...
25 *
26 * ----------------------------------
27 * TO DO LIST:
28 * -Make it so that Pioneer CD DR-A24X and friends don't get screwed up on
29 * boot
30 *
Bartlomiej Zolnierkiewicz03553352008-02-01 23:09:18 +010031 * For historical changelog please see:
32 * Documentation/ide/ChangeLog.ide-cd.1994-2004
33 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define IDECD_VERSION "4.61"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38#include <linux/types.h>
39#include <linux/kernel.h>
40#include <linux/delay.h>
41#include <linux/timer.h>
42#include <linux/slab.h>
43#include <linux/interrupt.h>
44#include <linux/errno.h>
45#include <linux/cdrom.h>
46#include <linux/ide.h>
47#include <linux/completion.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080048#include <linux/mutex.h>
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +010049#include <linux/bcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <scsi/scsi.h> /* For SCSI -> ATAPI command conversion */
52
53#include <asm/irq.h>
54#include <asm/io.h>
55#include <asm/byteorder.h>
56#include <asm/uaccess.h>
57#include <asm/unaligned.h>
58
59#include "ide-cd.h"
60
Arjan van de Vencf8b8972006-03-23 03:00:45 -080061static DEFINE_MUTEX(idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define to_ide_cd(obj) container_of(obj, struct cdrom_info, kref)
64
65#define ide_cd_g(disk) \
66 container_of((disk)->private_data, struct cdrom_info, driver)
67
68static struct cdrom_info *ide_cd_get(struct gendisk *disk)
69{
70 struct cdrom_info *cd = NULL;
71
Arjan van de Vencf8b8972006-03-23 03:00:45 -080072 mutex_lock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 cd = ide_cd_g(disk);
74 if (cd)
75 kref_get(&cd->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080076 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return cd;
78}
79
80static void ide_cd_release(struct kref *);
81
82static void ide_cd_put(struct cdrom_info *cd)
83{
Arjan van de Vencf8b8972006-03-23 03:00:45 -080084 mutex_lock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 kref_put(&cd->kref, ide_cd_release);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080086 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/****************************************************************************
90 * Generic packet command support and error handling routines.
91 */
92
93/* Mark that we've seen a media change, and invalidate our internal
94 buffers. */
95static void cdrom_saw_media_change (ide_drive_t *drive)
96{
Bartlomiej Zolnierkiewicz0ba11212008-02-01 23:09:21 +010097 struct cdrom_info *cd = drive->driver_data;
98
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +010099 cd->cd_flags |= IDE_CD_FLAG_MEDIA_CHANGED;
100 cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID;
Bartlomiej Zolnierkiewicz0ba11212008-02-01 23:09:21 +0100101 cd->nsectors_buffered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
105 struct request_sense *sense)
106{
107 int log = 0;
108
Jens Axboe4aff5e22006-08-10 08:44:47 +0200109 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return 0;
111
112 switch (sense->sense_key) {
113 case NO_SENSE: case RECOVERED_ERROR:
114 break;
115 case NOT_READY:
116 /*
117 * don't care about tray state messages for
118 * e.g. capacity commands or in-progress or
119 * becoming ready
120 */
121 if (sense->asc == 0x3a || sense->asc == 0x04)
122 break;
123 log = 1;
124 break;
125 case ILLEGAL_REQUEST:
126 /*
127 * don't log START_STOP unit with LoEj set, since
128 * we cannot reliably check if drive can auto-close
129 */
130 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Alan Coxdbe217a2006-06-25 05:47:44 -0700131 break;
132 log = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 break;
134 case UNIT_ATTENTION:
135 /*
136 * Make good and sure we've seen this potential media
137 * change. Some drives (i.e. Creative) fail to present
138 * the correct sense key in the error register.
139 */
140 cdrom_saw_media_change(drive);
141 break;
142 default:
143 log = 1;
144 break;
145 }
146 return log;
147}
148
149static
150void cdrom_analyze_sense_data(ide_drive_t *drive,
151 struct request *failed_command,
152 struct request_sense *sense)
153{
Alan Coxdbe217a2006-06-25 05:47:44 -0700154 unsigned long sector;
155 unsigned long bio_sectors;
156 unsigned long valid;
157 struct cdrom_info *info = drive->driver_data;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (!cdrom_log_sense(drive, failed_command, sense))
160 return;
161
162 /*
163 * If a read toc is executed for a CD-R or CD-RW medium where
164 * the first toc has not been recorded yet, it will fail with
165 * 05/24/00 (which is a confusing error)
166 */
167 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
168 if (sense->sense_key == 0x05 && sense->asc == 0x24)
169 return;
170
Alan Coxdbe217a2006-06-25 05:47:44 -0700171 if (sense->error_code == 0x70) { /* Current Error */
172 switch(sense->sense_key) {
173 case MEDIUM_ERROR:
174 case VOLUME_OVERFLOW:
175 case ILLEGAL_REQUEST:
176 if (!sense->valid)
177 break;
178 if (failed_command == NULL ||
179 !blk_fs_request(failed_command))
180 break;
181 sector = (sense->information[0] << 24) |
182 (sense->information[1] << 16) |
183 (sense->information[2] << 8) |
184 (sense->information[3]);
185
186 bio_sectors = bio_sectors(failed_command->bio);
187 if (bio_sectors < 4)
188 bio_sectors = 4;
189 if (drive->queue->hardsect_size == 2048)
190 sector <<= 2; /* Device sector size is 2K */
191 sector &= ~(bio_sectors -1);
192 valid = (sector - failed_command->sector) << 9;
193
194 if (valid < 0)
195 valid = 0;
196 if (sector < get_capacity(info->disk) &&
197 drive->probed_capacity - sector < 4 * 75) {
198 set_capacity(info->disk, sector);
199 }
200 }
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100203 ide_cd_log_error(drive->name, failed_command, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206/*
207 * Initialize a ide-cd packet command request
208 */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100209void ide_cd_init_rq(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct cdrom_info *cd = drive->driver_data;
212
213 ide_init_drive_cmd(rq);
Jens Axboecea28852006-10-12 15:08:45 +0200214 rq->cmd_type = REQ_TYPE_ATA_PC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 rq->rq_disk = cd->disk;
216}
217
218static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense,
219 struct request *failed_command)
220{
221 struct cdrom_info *info = drive->driver_data;
222 struct request *rq = &info->request_sense_request;
223
224 if (sense == NULL)
225 sense = &info->sense_data;
226
227 /* stuff the sense request in front of our current request */
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +0100228 ide_cd_init_rq(drive, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 rq->data = sense;
231 rq->cmd[0] = GPCMD_REQUEST_SENSE;
232 rq->cmd[4] = rq->data_len = 18;
233
Jens Axboe4aff5e22006-08-10 08:44:47 +0200234 rq->cmd_type = REQ_TYPE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 /* NOTE! Save the failed command in "rq->buffer" */
237 rq->buffer = (void *) failed_command;
238
239 (void) ide_do_drive_cmd(drive, rq, ide_preempt);
240}
241
242static void cdrom_end_request (ide_drive_t *drive, int uptodate)
243{
244 struct request *rq = HWGROUP(drive)->rq;
245 int nsectors = rq->hard_cur_sectors;
246
Jens Axboe4aff5e22006-08-10 08:44:47 +0200247 if (blk_sense_request(rq) && uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200249 * For REQ_TYPE_SENSE, "rq->buffer" points to the original
250 * failed request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
252 struct request *failed = (struct request *) rq->buffer;
253 struct cdrom_info *info = drive->driver_data;
254 void *sense = &info->sense_data;
255 unsigned long flags;
256
257 if (failed) {
258 if (failed->sense) {
259 sense = failed->sense;
260 failed->sense_len = rq->sense_len;
261 }
Alan Coxdbe217a2006-06-25 05:47:44 -0700262 cdrom_analyze_sense_data(drive, failed, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /*
264 * now end failed request
265 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700266 if (blk_fs_request(failed)) {
267 if (ide_end_dequeued_request(drive, failed, 0,
268 failed->hard_nr_sectors))
269 BUG();
270 } else {
271 spin_lock_irqsave(&ide_lock, flags);
Kiyoshi Ueda5e36bb62008-01-28 10:34:20 +0100272 if (__blk_end_request(failed, -EIO,
273 failed->data_len))
274 BUG();
Alan Coxdbe217a2006-06-25 05:47:44 -0700275 spin_unlock_irqrestore(&ide_lock, flags);
276 }
277 } else
278 cdrom_analyze_sense_data(drive, NULL, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
281 if (!rq->current_nr_sectors && blk_fs_request(rq))
282 uptodate = 1;
283 /* make sure it's fully ended */
284 if (blk_pc_request(rq))
285 nsectors = (rq->data_len + 511) >> 9;
286 if (!nsectors)
287 nsectors = 1;
288
289 ide_end_request(drive, uptodate, nsectors);
290}
291
Alan Coxdbe217a2006-06-25 05:47:44 -0700292static void ide_dump_status_no_sense(ide_drive_t *drive, const char *msg, u8 stat)
293{
294 if (stat & 0x80)
295 return;
296 ide_dump_status(drive, msg, stat);
297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/* Returns 0 if the request should be continued.
300 Returns 1 if the request was ended. */
301static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret)
302{
303 struct request *rq = HWGROUP(drive)->rq;
304 int stat, err, sense_key;
305
306 /* Check for errors. */
307 stat = HWIF(drive)->INB(IDE_STATUS_REG);
308 if (stat_ret)
309 *stat_ret = stat;
310
311 if (OK_STAT(stat, good_stat, BAD_R_STAT))
312 return 0;
313
314 /* Get the IDE error register. */
315 err = HWIF(drive)->INB(IDE_ERROR_REG);
316 sense_key = err >> 4;
317
318 if (rq == NULL) {
319 printk("%s: missing rq in cdrom_decode_status\n", drive->name);
320 return 1;
321 }
322
Jens Axboe4aff5e22006-08-10 08:44:47 +0200323 if (blk_sense_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* We got an error trying to get sense info
325 from the drive (probably while trying
326 to recover from a former error). Just give up. */
327
Jens Axboe4aff5e22006-08-10 08:44:47 +0200328 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 cdrom_end_request(drive, 0);
330 ide_error(drive, "request sense failure", stat);
331 return 1;
332
Jens Axboe8770c012006-10-12 17:24:52 +0200333 } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* All other functions, except for READ. */
335 unsigned long flags;
336
337 /*
338 * if we have an error, pass back CHECK_CONDITION as the
339 * scsi status byte
340 */
Jens Axboeb7156732006-11-13 18:05:02 +0100341 if (blk_pc_request(rq) && !rq->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 rq->errors = SAM_STAT_CHECK_CONDITION;
343
344 /* Check for tray open. */
345 if (sense_key == NOT_READY) {
346 cdrom_saw_media_change (drive);
347 } else if (sense_key == UNIT_ATTENTION) {
348 /* Check for media change. */
349 cdrom_saw_media_change (drive);
350 /*printk("%s: media changed\n",drive->name);*/
351 return 0;
Stuart Hayes76ca1af2007-04-10 22:38:43 +0200352 } else if ((sense_key == ILLEGAL_REQUEST) &&
353 (rq->cmd[0] == GPCMD_START_STOP_UNIT)) {
354 /*
355 * Don't print error message for this condition--
356 * SFF8090i indicates that 5/24/00 is the correct
357 * response to a request to close the tray if the
358 * drive doesn't have that capability.
359 * cdrom_log_sense() knows this!
360 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200361 } else if (!(rq->cmd_flags & REQ_QUIET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* Otherwise, print an error. */
363 ide_dump_status(drive, "packet command error", stat);
364 }
365
Jens Axboe4aff5e22006-08-10 08:44:47 +0200366 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /*
369 * instead of playing games with moving completions around,
370 * remove failed request completely and end it when the
371 * request sense has completed
372 */
373 if (stat & ERR_STAT) {
374 spin_lock_irqsave(&ide_lock, flags);
375 blkdev_dequeue_request(rq);
376 HWGROUP(drive)->rq = NULL;
377 spin_unlock_irqrestore(&ide_lock, flags);
378
379 cdrom_queue_request_sense(drive, rq->sense, rq);
380 } else
381 cdrom_end_request(drive, 0);
382
383 } else if (blk_fs_request(rq)) {
384 int do_end_request = 0;
385
386 /* Handle errors from READ and WRITE requests. */
387
388 if (blk_noretry_request(rq))
389 do_end_request = 1;
390
391 if (sense_key == NOT_READY) {
392 /* Tray open. */
393 if (rq_data_dir(rq) == READ) {
394 cdrom_saw_media_change (drive);
395
396 /* Fail the request. */
397 printk ("%s: tray open\n", drive->name);
398 do_end_request = 1;
399 } else {
400 struct cdrom_info *info = drive->driver_data;
401
402 /* allow the drive 5 seconds to recover, some
403 * devices will return this error while flushing
404 * data from cache */
405 if (!rq->errors)
406 info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY;
407 rq->errors = 1;
408 if (time_after(jiffies, info->write_timeout))
409 do_end_request = 1;
410 else {
411 unsigned long flags;
412
413 /*
414 * take a breather relying on the
415 * unplug timer to kick us again
416 */
417 spin_lock_irqsave(&ide_lock, flags);
418 blk_plug_device(drive->queue);
419 spin_unlock_irqrestore(&ide_lock,flags);
420 return 1;
421 }
422 }
423 } else if (sense_key == UNIT_ATTENTION) {
424 /* Media change. */
425 cdrom_saw_media_change (drive);
426
427 /* Arrange to retry the request.
428 But be sure to give up if we've retried
429 too many times. */
430 if (++rq->errors > ERROR_MAX)
431 do_end_request = 1;
432 } else if (sense_key == ILLEGAL_REQUEST ||
433 sense_key == DATA_PROTECT) {
434 /* No point in retrying after an illegal
435 request or data protect error.*/
Alan Coxdbe217a2006-06-25 05:47:44 -0700436 ide_dump_status_no_sense (drive, "command error", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 do_end_request = 1;
438 } else if (sense_key == MEDIUM_ERROR) {
439 /* No point in re-trying a zillion times on a bad
440 * sector... If we got here the error is not correctable */
Alan Coxdbe217a2006-06-25 05:47:44 -0700441 ide_dump_status_no_sense (drive, "media error (bad sector)", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 do_end_request = 1;
443 } else if (sense_key == BLANK_CHECK) {
444 /* Disk appears blank ?? */
Alan Coxdbe217a2006-06-25 05:47:44 -0700445 ide_dump_status_no_sense (drive, "media error (blank)", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 do_end_request = 1;
447 } else if ((err & ~ABRT_ERR) != 0) {
448 /* Go to the default handler
449 for other errors. */
450 ide_error(drive, "cdrom_decode_status", stat);
451 return 1;
452 } else if ((++rq->errors > ERROR_MAX)) {
453 /* We've racked up too many retries. Abort. */
454 do_end_request = 1;
455 }
456
Alan Coxdbe217a2006-06-25 05:47:44 -0700457 /* End a request through request sense analysis when we have
458 sense data. We need this in order to perform end of media
459 processing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Alan Coxdbe217a2006-06-25 05:47:44 -0700461 if (do_end_request) {
462 if (stat & ERR_STAT) {
463 unsigned long flags;
464 spin_lock_irqsave(&ide_lock, flags);
465 blkdev_dequeue_request(rq);
466 HWGROUP(drive)->rq = NULL;
467 spin_unlock_irqrestore(&ide_lock, flags);
468
469 cdrom_queue_request_sense(drive, rq->sense, rq);
470 } else
471 cdrom_end_request(drive, 0);
472 } else {
473 /* If we got a CHECK_CONDITION status,
474 queue a request sense command. */
475 if (stat & ERR_STAT)
476 cdrom_queue_request_sense(drive, NULL, NULL);
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 } else {
479 blk_dump_rq_flags(rq, "ide-cd: bad rq");
480 cdrom_end_request(drive, 0);
481 }
482
483 /* Retry, or handle the next request. */
484 return 1;
485}
486
487static int cdrom_timer_expiry(ide_drive_t *drive)
488{
489 struct request *rq = HWGROUP(drive)->rq;
490 unsigned long wait = 0;
491
492 /*
493 * Some commands are *slow* and normally take a long time to
494 * complete. Usually we can use the ATAPI "disconnect" to bypass
495 * this, but not all commands/drives support that. Let
496 * ide_timer_expiry keep polling us for these.
497 */
498 switch (rq->cmd[0]) {
499 case GPCMD_BLANK:
500 case GPCMD_FORMAT_UNIT:
501 case GPCMD_RESERVE_RZONE_TRACK:
502 case GPCMD_CLOSE_TRACK:
503 case GPCMD_FLUSH_CACHE:
504 wait = ATAPI_WAIT_PC;
505 break;
506 default:
Jens Axboe4aff5e22006-08-10 08:44:47 +0200507 if (!(rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 printk(KERN_INFO "ide-cd: cmd 0x%x timed out\n", rq->cmd[0]);
509 wait = 0;
510 break;
511 }
512 return wait;
513}
514
515/* Set up the device registers for transferring a packet command on DEV,
516 expecting to later transfer XFERLEN bytes. HANDLER is the routine
517 which actually transfers the command to the drive. If this is a
518 drq_interrupt device, this routine will arrange for HANDLER to be
519 called when the interrupt from the drive arrives. Otherwise, HANDLER
520 will be called immediately after the drive is prepared for the transfer. */
521
522static ide_startstop_t cdrom_start_packet_command(ide_drive_t *drive,
523 int xferlen,
524 ide_handler_t *handler)
525{
526 ide_startstop_t startstop;
527 struct cdrom_info *info = drive->driver_data;
528 ide_hwif_t *hwif = drive->hwif;
529
530 /* Wait for the controller to be idle. */
531 if (ide_wait_stat(&startstop, drive, 0, BUSY_STAT, WAIT_READY))
532 return startstop;
533
Bartlomiej Zolnierkiewicz3a6a3542008-01-25 22:17:13 +0100534 /* FIXME: for Virtual DMA we must check harder */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (info->dma)
536 info->dma = !hwif->dma_setup(drive);
537
538 /* Set up the controller registers. */
Bartlomiej Zolnierkiewicz2fc57382008-01-25 22:17:13 +0100539 ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL |
540 IDE_TFLAG_NO_SELECT_MASK, xferlen, info->dma);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +0100541
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +0100542 if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) {
Albert Leef0dd8712007-02-17 02:40:21 +0100543 /* waiting for CDB interrupt, not DMA yet. */
544 if (info->dma)
545 drive->waiting_for_dma = 0;
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* packet command */
548 ide_execute_command(drive, WIN_PACKETCMD, handler, ATAPI_WAIT_PC, cdrom_timer_expiry);
549 return ide_started;
550 } else {
551 unsigned long flags;
552
553 /* packet command */
554 spin_lock_irqsave(&ide_lock, flags);
555 hwif->OUTBSYNC(drive, WIN_PACKETCMD, IDE_COMMAND_REG);
556 ndelay(400);
557 spin_unlock_irqrestore(&ide_lock, flags);
558
559 return (*handler) (drive);
560 }
561}
562
563/* Send a packet command to DRIVE described by CMD_BUF and CMD_LEN.
564 The device registers must have already been prepared
565 by cdrom_start_packet_command.
566 HANDLER is the interrupt handler to call when the command completes
567 or there's data ready. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568#define ATAPI_MIN_CDB_BYTES 12
569static ide_startstop_t cdrom_transfer_packet_command (ide_drive_t *drive,
570 struct request *rq,
571 ide_handler_t *handler)
572{
573 ide_hwif_t *hwif = drive->hwif;
574 int cmd_len;
575 struct cdrom_info *info = drive->driver_data;
576 ide_startstop_t startstop;
577
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +0100578 if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* Here we should have been called after receiving an interrupt
580 from the device. DRQ should how be set. */
581
582 /* Check for errors. */
583 if (cdrom_decode_status(drive, DRQ_STAT, NULL))
584 return ide_stopped;
Albert Leef0dd8712007-02-17 02:40:21 +0100585
586 /* Ok, next interrupt will be DMA interrupt. */
587 if (info->dma)
588 drive->waiting_for_dma = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 } else {
590 /* Otherwise, we must wait for DRQ to get set. */
591 if (ide_wait_stat(&startstop, drive, DRQ_STAT,
592 BUSY_STAT, WAIT_READY))
593 return startstop;
594 }
595
596 /* Arm the interrupt handler. */
597 ide_set_handler(drive, handler, rq->timeout, cdrom_timer_expiry);
598
599 /* ATAPI commands get padded out to 12 bytes minimum */
600 cmd_len = COMMAND_SIZE(rq->cmd[0]);
601 if (cmd_len < ATAPI_MIN_CDB_BYTES)
602 cmd_len = ATAPI_MIN_CDB_BYTES;
603
604 /* Send the command to the device. */
605 HWIF(drive)->atapi_output_bytes(drive, rq->cmd, cmd_len);
606
607 /* Start the DMA if need be */
608 if (info->dma)
609 hwif->dma_start(drive);
610
611 return ide_started;
612}
613
614/****************************************************************************
615 * Block read functions.
616 */
617
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +0100618typedef void (xfer_func_t)(ide_drive_t *, void *, u32);
619
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +0100620static void ide_cd_pad_transfer(ide_drive_t *drive, xfer_func_t *xf, int len)
621{
622 while (len > 0) {
623 int dum = 0;
624 xf(drive, &dum, sizeof(dum));
625 len -= sizeof(dum);
626 }
627}
628
Bartlomiej Zolnierkiewiczb4ab7262008-02-01 23:09:26 +0100629static void ide_cd_drain_data(ide_drive_t *drive, int nsects)
630{
631 while (nsects > 0) {
632 static char dum[SECTOR_SIZE];
633
634 drive->hwif->atapi_input_bytes(drive, dum, sizeof(dum));
635 nsects--;
636 }
637}
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639/*
640 * Buffer up to SECTORS_TO_TRANSFER sectors from the drive in our sector
641 * buffer. Once the first sector is added, any subsequent sectors are
642 * assumed to be continuous (until the buffer is cleared). For the first
643 * sector added, SECTOR is its sector number. (SECTOR is then ignored until
644 * the buffer is cleared.)
645 */
646static void cdrom_buffer_sectors (ide_drive_t *drive, unsigned long sector,
647 int sectors_to_transfer)
648{
649 struct cdrom_info *info = drive->driver_data;
650
651 /* Number of sectors to read into the buffer. */
652 int sectors_to_buffer = min_t(int, sectors_to_transfer,
653 (SECTOR_BUFFER_SIZE >> SECTOR_BITS) -
654 info->nsectors_buffered);
655
656 char *dest;
657
658 /* If we couldn't get a buffer, don't try to buffer anything... */
659 if (info->buffer == NULL)
660 sectors_to_buffer = 0;
661
662 /* If this is the first sector in the buffer, remember its number. */
663 if (info->nsectors_buffered == 0)
664 info->sector_buffered = sector;
665
666 /* Read the data into the buffer. */
667 dest = info->buffer + info->nsectors_buffered * SECTOR_SIZE;
668 while (sectors_to_buffer > 0) {
669 HWIF(drive)->atapi_input_bytes(drive, dest, SECTOR_SIZE);
670 --sectors_to_buffer;
671 --sectors_to_transfer;
672 ++info->nsectors_buffered;
673 dest += SECTOR_SIZE;
674 }
675
676 /* Throw away any remaining data. */
Bartlomiej Zolnierkiewiczb4ab7262008-02-01 23:09:26 +0100677 ide_cd_drain_data(drive, sectors_to_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680/*
681 * Check the contents of the interrupt reason register from the cdrom
682 * and attempt to recover if there are problems. Returns 0 if everything's
683 * ok; nonzero if the request has been terminated.
684 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800685static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686int cdrom_read_check_ireason (ide_drive_t *drive, int len, int ireason)
687{
688 if (ireason == 2)
689 return 0;
690 else if (ireason == 0) {
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +0100691 ide_hwif_t *hwif = drive->hwif;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* Whoops... The drive is expecting to receive data from us! */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +0100694 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
695 drive->name, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 /* Throw some data at the drive so it doesn't hang
698 and quit this request. */
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +0100699 ide_cd_pad_transfer(drive, hwif->atapi_output_bytes, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 } else if (ireason == 1) {
701 /* Some drives (ASUS) seem to tell us that status
702 * info is available. just get it and ignore.
703 */
704 (void) HWIF(drive)->INB(IDE_STATUS_REG);
705 return 0;
706 } else {
707 /* Drive wants a command packet, or invalid ireason... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +0100708 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
709 drive->name, __FUNCTION__, ireason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
712 cdrom_end_request(drive, 0);
713 return -1;
714}
715
716/*
Bartlomiej Zolnierkiewicz64814f22008-02-01 23:09:26 +0100717 * Assume that the drive will always provide data in multiples of at least
718 * SECTOR_SIZE, as it gets hairy to keep track of the transfers otherwise.
719 */
720static int ide_cd_check_transfer_size(ide_drive_t *drive, int len)
721{
722 struct cdrom_info *cd = drive->driver_data;
723
724 if ((len % SECTOR_SIZE) == 0)
725 return 0;
726
727 printk(KERN_ERR "%s: %s: Bad transfer size %d\n",
728 drive->name, __FUNCTION__, len);
729
730 if (cd->cd_flags & IDE_CD_FLAG_LIMIT_NFRAMES)
731 printk(KERN_ERR " This drive is not supported by "
732 "this version of the driver\n");
733 else {
734 printk(KERN_ERR " Trying to limit transfer sizes\n");
735 cd->cd_flags |= IDE_CD_FLAG_LIMIT_NFRAMES;
736 }
737
738 return 1;
739}
740
741/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 * Try to satisfy some of the current read request from our cached data.
743 * Returns nonzero if the request has been completed, zero otherwise.
744 */
745static int cdrom_read_from_buffer (ide_drive_t *drive)
746{
747 struct cdrom_info *info = drive->driver_data;
748 struct request *rq = HWGROUP(drive)->rq;
749 unsigned short sectors_per_frame;
750
751 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
752
753 /* Can't do anything if there's no buffer. */
754 if (info->buffer == NULL) return 0;
755
756 /* Loop while this request needs data and the next block is present
757 in our cache. */
758 while (rq->nr_sectors > 0 &&
759 rq->sector >= info->sector_buffered &&
760 rq->sector < info->sector_buffered + info->nsectors_buffered) {
761 if (rq->current_nr_sectors == 0)
762 cdrom_end_request(drive, 1);
763
764 memcpy (rq->buffer,
765 info->buffer +
766 (rq->sector - info->sector_buffered) * SECTOR_SIZE,
767 SECTOR_SIZE);
768 rq->buffer += SECTOR_SIZE;
769 --rq->current_nr_sectors;
770 --rq->nr_sectors;
771 ++rq->sector;
772 }
773
774 /* If we've satisfied the current request,
775 terminate it successfully. */
776 if (rq->nr_sectors == 0) {
777 cdrom_end_request(drive, 1);
778 return -1;
779 }
780
781 /* Move on to the next buffer if needed. */
782 if (rq->current_nr_sectors == 0)
783 cdrom_end_request(drive, 1);
784
785 /* If this condition does not hold, then the kluge i use to
786 represent the number of sectors to skip at the start of a transfer
787 will fail. I think that this will never happen, but let's be
788 paranoid and check. */
789 if (rq->current_nr_sectors < bio_cur_sectors(rq->bio) &&
790 (rq->sector & (sectors_per_frame - 1))) {
791 printk(KERN_ERR "%s: cdrom_read_from_buffer: buffer botch (%ld)\n",
792 drive->name, (long)rq->sector);
793 cdrom_end_request(drive, 0);
794 return -1;
795 }
796
797 return 0;
798}
799
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +0100800static ide_startstop_t cdrom_rw_intr(ide_drive_t *);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802/*
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100803 * Routine to send a read/write packet command to the drive.
804 * This is usually called directly from cdrom_start_{read,write}().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * However, for drq_interrupt devices, it is called from an interrupt
806 * when the drive is ready to accept the command.
807 */
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100808static ide_startstop_t cdrom_start_rw_cont(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct request *rq = HWGROUP(drive)->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100812 if (rq_data_dir(rq) == READ) {
813 unsigned short sectors_per_frame =
814 queue_hardsect_size(drive->queue) >> SECTOR_BITS;
815 int nskip = rq->sector & (sectors_per_frame - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100817 /*
818 * If the requested sector doesn't start on a frame boundary,
819 * we must adjust the start of the transfer so that it does,
820 * and remember to skip the first few sectors.
821 *
822 * If the rq->current_nr_sectors field is larger than the size
823 * of the buffer, it will mean that we're to skip a number of
824 * sectors equal to the amount by which rq->current_nr_sectors
825 * is larger than the buffer size.
826 */
827 if (nskip > 0) {
828 /* Sanity check... */
829 if (rq->current_nr_sectors !=
830 bio_cur_sectors(rq->bio)) {
831 printk(KERN_ERR "%s: %s: buffer botch (%u)\n",
832 drive->name, __FUNCTION__,
833 rq->current_nr_sectors);
834 cdrom_end_request(drive, 0);
835 return ide_stopped;
836 }
837 rq->current_nr_sectors += nskip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100840#if 0
841 else
842 /* the immediate bit */
843 rq->cmd[1] = 1 << 3;
844#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /* Set up the command */
846 rq->timeout = ATAPI_WAIT_PC;
847
848 /* Send the command to the drive and return. */
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +0100849 return cdrom_transfer_packet_command(drive, rq, cdrom_rw_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852#define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
853#define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
854#define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */
855
856static ide_startstop_t cdrom_seek_intr (ide_drive_t *drive)
857{
858 struct cdrom_info *info = drive->driver_data;
859 int stat;
860 static int retry = 10;
861
862 if (cdrom_decode_status(drive, 0, &stat))
863 return ide_stopped;
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +0100864
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +0100865 info->cd_flags |= IDE_CD_FLAG_SEEKING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) {
868 if (--retry == 0) {
869 /*
870 * this condition is far too common, to bother
871 * users about it
872 */
873 /* printk("%s: disabled DSC seek overlap\n", drive->name);*/
874 drive->dsc_overlap = 0;
875 }
876 }
877 return ide_stopped;
878}
879
880static ide_startstop_t cdrom_start_seek_continuation (ide_drive_t *drive)
881{
882 struct request *rq = HWGROUP(drive)->rq;
883 sector_t frame = rq->sector;
884
885 sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS);
886
887 memset(rq->cmd, 0, sizeof(rq->cmd));
888 rq->cmd[0] = GPCMD_SEEK;
889 put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]);
890
891 rq->timeout = ATAPI_WAIT_PC;
892 return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr);
893}
894
895static ide_startstop_t cdrom_start_seek (ide_drive_t *drive, unsigned int block)
896{
897 struct cdrom_info *info = drive->driver_data;
898
899 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 info->start_seek = jiffies;
901 return cdrom_start_packet_command(drive, 0, cdrom_start_seek_continuation);
902}
903
904/* Fix up a possibly partially-processed request so that we can
905 start it over entirely, or even put it back on the request queue. */
906static void restore_request (struct request *rq)
907{
908 if (rq->buffer != bio_data(rq->bio)) {
909 sector_t n = (rq->buffer - (char *) bio_data(rq->bio)) / SECTOR_SIZE;
910
911 rq->buffer = bio_data(rq->bio);
912 rq->nr_sectors += n;
913 rq->sector -= n;
914 }
915 rq->hard_cur_sectors = rq->current_nr_sectors = bio_cur_sectors(rq->bio);
916 rq->hard_nr_sectors = rq->nr_sectors;
917 rq->hard_sector = rq->sector;
918 rq->q->prep_rq_fn(rq->q, rq);
919}
920
921/*
922 * Start a read request from the CD-ROM.
923 */
924static ide_startstop_t cdrom_start_read (ide_drive_t *drive, unsigned int block)
925{
926 struct cdrom_info *info = drive->driver_data;
927 struct request *rq = HWGROUP(drive)->rq;
928 unsigned short sectors_per_frame;
929
930 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
931
932 /* We may be retrying this request after an error. Fix up
933 any weirdness which might be present in the request packet. */
934 restore_request(rq);
935
936 /* Satisfy whatever we can of this request from our cached sector. */
937 if (cdrom_read_from_buffer(drive))
938 return ide_stopped;
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* Clear the local sector buffer. */
941 info->nsectors_buffered = 0;
942
943 /* use dma, if possible. */
944 info->dma = drive->using_dma;
945 if ((rq->sector & (sectors_per_frame - 1)) ||
946 (rq->nr_sectors & (sectors_per_frame - 1)))
947 info->dma = 0;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 /* Start sending the read request to the drive. */
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +0100950 return cdrom_start_packet_command(drive, 32768, cdrom_start_rw_cont);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
953/****************************************************************************
954 * Execute all other packet commands.
955 */
956
Bartlomiej Zolnierkiewicz8ee69f52008-02-01 23:09:25 +0100957static void ide_cd_request_sense_fixup(struct request *rq)
958{
959 /*
960 * Some of the trailing request sense fields are optional,
961 * and some drives don't send them. Sigh.
962 */
963 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
964 rq->data_len > 0 && rq->data_len <= 5)
965 while (rq->data_len > 0) {
966 *(u8 *)rq->data++ = 0;
967 --rq->data_len;
968 }
969}
970
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100971int ide_cd_queue_pc(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 struct request_sense sense;
974 int retries = 10;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200975 unsigned int flags = rq->cmd_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 if (rq->sense == NULL)
978 rq->sense = &sense;
979
980 /* Start of retry loop. */
981 do {
982 int error;
983 unsigned long time = jiffies;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200984 rq->cmd_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 error = ide_do_drive_cmd(drive, rq, ide_wait);
987 time = jiffies - time;
988
989 /* FIXME: we should probably abort/retry or something
990 * in case of failure */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200991 if (rq->cmd_flags & REQ_FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 /* The request failed. Retry if it was due to a unit
993 attention status
994 (usually means media was changed). */
995 struct request_sense *reqbuf = rq->sense;
996
997 if (reqbuf->sense_key == UNIT_ATTENTION)
998 cdrom_saw_media_change(drive);
999 else if (reqbuf->sense_key == NOT_READY &&
1000 reqbuf->asc == 4 && reqbuf->ascq != 4) {
1001 /* The drive is in the process of loading
1002 a disk. Retry, but wait a little to give
1003 the drive time to complete the load. */
1004 ssleep(2);
1005 } else {
1006 /* Otherwise, don't retry. */
1007 retries = 0;
1008 }
1009 --retries;
1010 }
1011
1012 /* End of retry loop. */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001013 } while ((rq->cmd_flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 /* Return an error if the command failed. */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001016 return (rq->cmd_flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
1019/*
1020 * Write handling
1021 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001022static int cdrom_write_check_ireason(ide_drive_t *drive, int len, int ireason)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
1024 /* Two notes about IDE interrupt reason here - 0 means that
1025 * the drive wants to receive data from us, 2 means that
1026 * the drive is expecting to transfer data to us.
1027 */
1028 if (ireason == 0)
1029 return 0;
1030 else if (ireason == 2) {
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001031 ide_hwif_t *hwif = drive->hwif;
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* Whoops... The drive wants to send data. */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +01001034 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
1035 drive->name, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001037 ide_cd_pad_transfer(drive, hwif->atapi_input_bytes, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 } else {
1039 /* Drive wants a command packet, or invalid ireason... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +01001040 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
1041 drive->name, __FUNCTION__, ireason);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
1044 cdrom_end_request(drive, 0);
1045 return 1;
1046}
1047
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001048/*
1049 * Called from blk_end_request_callback() after the data of the request
1050 * is completed and before the request is completed.
1051 * By returning value '1', blk_end_request_callback() returns immediately
1052 * without completing the request.
1053 */
1054static int cdrom_newpc_intr_dummy_cb(struct request *rq)
1055{
1056 return 1;
1057}
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059/*
1060 * best way to deal with dma that is not sector aligned right now... note
1061 * that in this path we are not using ->data or ->buffer at all. this irs
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001062 * can replace cdrom_rw_intr() in the future.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
1064static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
1065{
1066 struct cdrom_info *info = drive->driver_data;
1067 struct request *rq = HWGROUP(drive)->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 xfer_func_t *xferfunc;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001069 ide_expiry_t *expiry;
1070 int dma_error = 0, dma, stat, ireason, len, thislen, uptodate = 0;
1071 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0;
1072 unsigned int timeout;
1073 u8 lowcyl, highcyl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 /* Check for errors. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 dma = info->dma;
1077 if (dma) {
1078 info->dma = 0;
1079 dma_error = HWIF(drive)->ide_dma_end(drive);
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +01001080 if (dma_error) {
1081 printk(KERN_ERR "%s: DMA %s error\n", drive->name,
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001082 write ? "write" : "read");
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +01001083 ide_dma_off(drive);
1084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086
1087 if (cdrom_decode_status(drive, 0, &stat))
1088 return ide_stopped;
1089
1090 /*
1091 * using dma, transfer is complete now
1092 */
1093 if (dma) {
Bartlomiej Zolnierkiewiczeba15fb2008-02-01 23:09:17 +01001094 if (dma_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return ide_error(drive, "dma error", stat);
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001096 goto end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
1099 /*
1100 * ok we fall to pio :/
1101 */
1102 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
1103 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1104 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1105
1106 len = lowcyl + (256 * highcyl);
1107 thislen = rq->data_len;
1108 if (thislen > len)
1109 thislen = len;
1110
1111 /*
1112 * If DRQ is clear, the command has completed.
1113 */
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001114 if ((stat & DRQ_STAT) == 0) {
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001115 if (!blk_pc_request(rq)) {
1116 ide_cd_request_sense_fixup(rq);
1117 /* Complain if we still have data left to transfer. */
1118 uptodate = rq->data_len ? 0 : 1;
1119 }
1120 goto end_request;
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 /*
1124 * check which way to transfer data
1125 */
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001126 if (blk_pc_request(rq) && rq_data_dir(rq) == WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /*
1128 * write to drive
1129 */
1130 if (cdrom_write_check_ireason(drive, len, ireason))
1131 return ide_stopped;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001132 } else if (blk_pc_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 /*
1134 * read from drive
1135 */
1136 if (cdrom_read_check_ireason(drive, len, ireason))
1137 return ide_stopped;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001140 if (ireason == 0) {
1141 write = 1;
1142 xferfunc = HWIF(drive)->atapi_output_bytes;
1143 } else if (ireason == 2 || (ireason == 1 && blk_pc_request(rq))) {
1144 write = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 xferfunc = HWIF(drive)->atapi_input_bytes;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001146 } else {
1147 printk(KERN_ERR "%s: %s: The drive "
1148 "appears confused (ireason = 0x%02x). "
1149 "Trying to recover by ending request.\n",
1150 drive->name, __FUNCTION__, ireason);
1151 goto end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153
1154 /*
1155 * transfer data
1156 */
1157 while (thislen > 0) {
1158 int blen = blen = rq->data_len;
1159 char *ptr = rq->data;
1160
1161 /*
1162 * bio backed?
1163 */
1164 if (rq->bio) {
1165 ptr = bio_data(rq->bio);
1166 blen = bio_iovec(rq->bio)->bv_len;
1167 }
1168
1169 if (!ptr) {
Bartlomiej Zolnierkiewicz03f537d2008-02-01 23:09:25 +01001170 printk(KERN_ERR "%s: confused, missing data\n",
1171 drive->name);
1172 blk_dump_rq_flags(rq, rq_data_dir(rq)
1173 ? "cdrom_newpc_intr, write"
1174 : "cdrom_newpc_intr, read");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 break;
1176 }
1177
1178 if (blen > thislen)
1179 blen = thislen;
1180
1181 xferfunc(drive, ptr, blen);
1182
1183 thislen -= blen;
1184 len -= blen;
1185 rq->data_len -= blen;
1186
1187 if (rq->bio)
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001188 /*
1189 * The request can't be completed until DRQ is cleared.
1190 * So complete the data, but don't complete the request
1191 * using the dummy function for the callback feature
1192 * of blk_end_request_callback().
1193 */
1194 blk_end_request_callback(rq, 0, blen,
1195 cdrom_newpc_intr_dummy_cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 else
1197 rq->data += blen;
1198 }
1199
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001200 if (write && blk_sense_request(rq))
1201 rq->sense_len += thislen;
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /*
1204 * pad, if necessary
1205 */
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001206 if (len > 0)
1207 ide_cd_pad_transfer(drive, xferfunc, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001209 if (blk_pc_request(rq)) {
1210 timeout = rq->timeout;
1211 expiry = NULL;
1212 } else {
1213 timeout = ATAPI_WAIT_PC;
1214 expiry = cdrom_timer_expiry;
1215 }
1216
1217 ide_set_handler(drive, cdrom_newpc_intr, timeout, expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 return ide_started;
Bartlomiej Zolnierkiewiczff1bfbc12008-02-01 23:09:25 +01001219
1220end_request:
1221 if (blk_pc_request(rq)) {
1222 unsigned long flags;
1223
1224 spin_lock_irqsave(&ide_lock, flags);
1225 if (__blk_end_request(rq, 0, rq->data_len))
1226 BUG();
1227 HWGROUP(drive)->rq = NULL;
1228 spin_unlock_irqrestore(&ide_lock, flags);
1229 } else {
1230 if (!uptodate)
1231 rq->cmd_flags |= REQ_FAILED;
1232 cdrom_end_request(drive, uptodate);
1233 }
1234 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001237static ide_startstop_t cdrom_rw_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct cdrom_info *info = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001241 xfer_func_t *xferfunc;
1242 int stat, ireason, len, sectors_to_transfer, uptodate, nskip;
1243 int dma_error = 0, dma = info->dma, write = rq_data_dir(rq) == WRITE;
1244 u8 lowcyl = 0, highcyl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /* Check for errors. */
1247 if (dma) {
1248 info->dma = 0;
Bartlomiej Zolnierkiewiczb481b232007-12-24 15:23:43 +01001249 dma_error = HWIF(drive)->ide_dma_end(drive);
1250 if (dma_error) {
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001251 printk(KERN_ERR "%s: DMA %s error\n", drive->name,
1252 write ? "write" : "read");
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001253 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255 }
1256
1257 if (cdrom_decode_status(drive, 0, &stat))
1258 return ide_stopped;
1259
1260 /*
1261 * using dma, transfer is complete now
1262 */
1263 if (dma) {
1264 if (dma_error)
1265 return ide_error(drive, "dma error", stat);
1266
1267 ide_end_request(drive, 1, rq->nr_sectors);
1268 return ide_stopped;
1269 }
1270
1271 /* Read the interrupt reason and the transfer length. */
Bartlomiej Zolnierkiewicz31a71192007-12-24 15:23:43 +01001272 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1274 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1275
1276 len = lowcyl + (256 * highcyl);
1277
1278 /* If DRQ is clear, the command has completed. */
1279 if ((stat & DRQ_STAT) == 0) {
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001280 /*
1281 * If we're not done reading/writing, complain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * Otherwise, complete the command normally.
1283 */
1284 uptodate = 1;
1285 if (rq->current_nr_sectors > 0) {
Bartlomiej Zolnierkiewiczb481b232007-12-24 15:23:43 +01001286 printk(KERN_ERR "%s: %s: data underrun (%d blocks)\n",
1287 drive->name, __FUNCTION__,
1288 rq->current_nr_sectors);
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001289 if (!write)
1290 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 uptodate = 0;
1292 }
1293 cdrom_end_request(drive, uptodate);
1294 return ide_stopped;
1295 }
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 sectors_to_transfer = len / SECTOR_SIZE;
1298
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001299 /* Check that the drive is expecting to do the same thing we are. */
1300 if (write) {
1301 if (cdrom_write_check_ireason(drive, len, ireason))
1302 return ide_stopped;
1303
1304 xferfunc = HWIF(drive)->atapi_output_bytes;
1305 } else {
1306 if (cdrom_read_check_ireason(drive, len, ireason))
1307 return ide_stopped;
1308
1309 if (ide_cd_check_transfer_size(drive, len)) {
1310 cdrom_end_request(drive, 0);
1311 return ide_stopped;
1312 }
1313
1314 /*
1315 * First, figure out if we need to bit-bucket
1316 * any of the leading sectors.
1317 */
1318 nskip = min_t(int, rq->current_nr_sectors
1319 - bio_cur_sectors(rq->bio),
1320 sectors_to_transfer);
1321
1322 if (nskip > 0) {
1323 ide_cd_drain_data(drive, nskip);
1324 rq->current_nr_sectors -= nskip;
1325 sectors_to_transfer -= nskip;
1326 }
1327
1328 xferfunc = HWIF(drive)->atapi_input_bytes;
1329 }
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 /*
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001332 * now loop and read/write the data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 */
1334 while (sectors_to_transfer > 0) {
1335 int this_transfer;
1336
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001337 /*
1338 * If we've filled the present buffer but there's another
1339 * chained buffer after it, move on.
1340 */
1341 if (!write && rq->current_nr_sectors == 0 && rq->nr_sectors)
1342 cdrom_end_request(drive, 1);
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (!rq->current_nr_sectors) {
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001345 if (!write)
1346 /*
1347 * If the buffers are full, cache the rest
1348 * of the data in our internal buffer.
1349 */
1350 cdrom_buffer_sectors(drive, rq->sector,
1351 sectors_to_transfer);
1352 else
1353 printk(KERN_ERR "%s: %s: confused, missing "
1354 "data\n",
1355 drive->name, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 break;
1357 }
1358
1359 /*
1360 * Figure out how many sectors we can transfer
1361 */
1362 this_transfer = min_t(int, sectors_to_transfer, rq->current_nr_sectors);
1363
1364 while (this_transfer > 0) {
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001365 xferfunc(drive, rq->buffer, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 rq->buffer += SECTOR_SIZE;
1367 --rq->nr_sectors;
1368 --rq->current_nr_sectors;
1369 ++rq->sector;
1370 --this_transfer;
1371 --sectors_to_transfer;
1372 }
1373
1374 /*
1375 * current buffer complete, move on
1376 */
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001377 if (write && rq->current_nr_sectors == 0 && rq->nr_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 cdrom_end_request(drive, 1);
1379 }
1380
1381 /* re-arm handler */
Bartlomiej Zolnierkiewicz94f5a862008-02-01 23:09:26 +01001382 ide_set_handler(drive, cdrom_rw_intr, ATAPI_WAIT_PC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return ide_started;
1384}
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386static ide_startstop_t cdrom_start_write(ide_drive_t *drive, struct request *rq)
1387{
1388 struct cdrom_info *info = drive->driver_data;
1389 struct gendisk *g = info->disk;
1390 unsigned short sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1391
1392 /*
1393 * writes *must* be hardware frame aligned
1394 */
1395 if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
1396 (rq->sector & (sectors_per_frame - 1))) {
1397 cdrom_end_request(drive, 0);
1398 return ide_stopped;
1399 }
1400
1401 /*
1402 * disk has become write protected
1403 */
1404 if (g->policy) {
1405 cdrom_end_request(drive, 0);
1406 return ide_stopped;
1407 }
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 info->nsectors_buffered = 0;
1410
1411 /* use dma, if possible. we don't need to check more, since we
1412 * know that the transfer is always (at least!) frame aligned */
1413 info->dma = drive->using_dma ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 info->devinfo.media_written = 1;
1416
1417 /* Start sending the write request to the drive. */
Bartlomiej Zolnierkiewicz29f3aac2008-02-01 23:09:27 +01001418 return cdrom_start_packet_command(drive, 32768, cdrom_start_rw_cont);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
1421static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive)
1422{
1423 struct request *rq = HWGROUP(drive)->rq;
1424
1425 if (!rq->timeout)
1426 rq->timeout = ATAPI_WAIT_PC;
1427
1428 return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
1429}
1430
1431static ide_startstop_t cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
1432{
1433 struct cdrom_info *info = drive->driver_data;
1434
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +01001435 if (blk_pc_request(rq))
1436 rq->cmd_flags |= REQ_QUIET;
1437 else
1438 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 /*
1443 * sg request
1444 */
1445 if (rq->bio) {
1446 int mask = drive->queue->dma_alignment;
1447 unsigned long addr = (unsigned long) page_address(bio_page(rq->bio));
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 info->dma = drive->using_dma;
1450
1451 /*
1452 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -07001453 *
1454 * NOTE! The "len" and "addr" checks should possibly have
1455 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 */
Jens Axboe4e7c6812005-05-31 17:47:36 +02001457 if ((rq->data_len & 15) || (addr & mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 info->dma = 0;
1459 }
1460
1461 /* Start sending the command to the drive. */
1462 return cdrom_start_packet_command(drive, rq->data_len, cdrom_do_newpc_cont);
1463}
1464
1465/****************************************************************************
1466 * cdrom driver request routine.
1467 */
1468static ide_startstop_t
1469ide_do_rw_cdrom (ide_drive_t *drive, struct request *rq, sector_t block)
1470{
1471 ide_startstop_t action;
1472 struct cdrom_info *info = drive->driver_data;
1473
1474 if (blk_fs_request(rq)) {
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001475 if (info->cd_flags & IDE_CD_FLAG_SEEKING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 unsigned long elapsed = jiffies - info->start_seek;
1477 int stat = HWIF(drive)->INB(IDE_STATUS_REG);
1478
1479 if ((stat & SEEK_STAT) != SEEK_STAT) {
1480 if (elapsed < IDECD_SEEK_TIMEOUT) {
1481 ide_stall_queue(drive, IDECD_SEEK_TIMER);
1482 return ide_stopped;
1483 }
1484 printk (KERN_ERR "%s: DSC timeout\n", drive->name);
1485 }
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001486 info->cd_flags &= ~IDE_CD_FLAG_SEEKING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 }
1488 if ((rq_data_dir(rq) == READ) && IDE_LARGE_SEEK(info->last_block, block, IDECD_SEEK_THRESHOLD) && drive->dsc_overlap) {
1489 action = cdrom_start_seek(drive, block);
1490 } else {
1491 if (rq_data_dir(rq) == READ)
1492 action = cdrom_start_read(drive, block);
1493 else
1494 action = cdrom_start_write(drive, rq);
1495 }
1496 info->last_block = block;
1497 return action;
Bartlomiej Zolnierkiewiczc9f56a82008-02-01 23:09:26 +01001498 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
Jens Axboecea28852006-10-12 15:08:45 +02001499 rq->cmd_type == REQ_TYPE_ATA_PC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 return cdrom_do_block_pc(drive, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001501 } else if (blk_special_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 /*
1503 * right now this can only be a reset...
1504 */
1505 cdrom_end_request(drive, 1);
1506 return ide_stopped;
1507 }
1508
1509 blk_dump_rq_flags(rq, "ide-cd bad flags");
1510 cdrom_end_request(drive, 0);
1511 return ide_stopped;
1512}
1513
1514
1515
1516/****************************************************************************
1517 * Ioctl handling.
1518 *
1519 * Routines which queue packet commands take as a final argument a pointer
1520 * to a request_sense struct. If execution of the command results
1521 * in an error with a CHECK CONDITION status, this structure will be filled
1522 * with the results of the subsequent request sense command. The pointer
1523 * can also be NULL, in which case no sense information is returned.
1524 */
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526static
1527void msf_from_bcd (struct atapi_msf *msf)
1528{
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +01001529 msf->minute = BCD2BIN(msf->minute);
1530 msf->second = BCD2BIN(msf->second);
1531 msf->frame = BCD2BIN(msf->frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534static int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
1535{
1536 struct request req;
1537 struct cdrom_info *info = drive->driver_data;
1538 struct cdrom_device_info *cdi = &info->devinfo;
1539
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001540 ide_cd_init_rq(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 req.sense = sense;
1543 req.cmd[0] = GPCMD_TEST_UNIT_READY;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001544 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001546 /*
1547 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to
1548 * switch CDs instead of supporting the LOAD_UNLOAD opcode.
1549 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 req.cmd[7] = cdi->sanyo_slot % 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001552 return ide_cd_queue_pc(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555/* Lock the door if LOCKFLAG is nonzero; unlock it otherwise. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001556int ide_cd_lockdoor(ide_drive_t *drive, int lockflag,
1557 struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001559 struct cdrom_info *cd = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 struct request_sense my_sense;
1561 struct request req;
1562 int stat;
1563
1564 if (sense == NULL)
1565 sense = &my_sense;
1566
1567 /* If the drive cannot lock the door, just pretend. */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001568 if (cd->cd_flags & IDE_CD_FLAG_NO_DOORLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 stat = 0;
1570 } else {
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001571 ide_cd_init_rq(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 req.sense = sense;
1573 req.cmd[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
1574 req.cmd[4] = lockflag ? 1 : 0;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001575 stat = ide_cd_queue_pc(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
1577
1578 /* If we got an illegal field error, the drive
1579 probably cannot lock the door. */
1580 if (stat != 0 &&
1581 sense->sense_key == ILLEGAL_REQUEST &&
1582 (sense->asc == 0x24 || sense->asc == 0x20)) {
1583 printk (KERN_ERR "%s: door locking not supported\n",
1584 drive->name);
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001585 cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 stat = 0;
1587 }
1588
1589 /* no medium, that's alright. */
1590 if (stat != 0 && sense->sense_key == NOT_READY && sense->asc == 0x3a)
1591 stat = 0;
1592
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001593 if (stat == 0) {
1594 if (lockflag)
1595 cd->cd_flags |= IDE_CD_FLAG_DOOR_LOCKED;
1596 else
1597 cd->cd_flags &= ~IDE_CD_FLAG_DOOR_LOCKED;
1598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 return stat;
1601}
1602
1603
1604/* Eject the disk if EJECTFLAG is 0.
1605 If EJECTFLAG is 1, try to reload the disk. */
1606static int cdrom_eject(ide_drive_t *drive, int ejectflag,
1607 struct request_sense *sense)
1608{
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001609 struct cdrom_info *cd = drive->driver_data;
1610 struct cdrom_device_info *cdi = &cd->devinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 struct request req;
1612 char loej = 0x02;
1613
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001614 if ((cd->cd_flags & IDE_CD_FLAG_NO_EJECT) && !ejectflag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return -EDRIVE_CANT_DO_THIS;
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 /* reload fails on some drives, if the tray is locked */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001618 if ((cd->cd_flags & IDE_CD_FLAG_DOOR_LOCKED) && ejectflag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return 0;
1620
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001621 ide_cd_init_rq(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 /* only tell drive to close tray if open, if it can do that */
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01001624 if (ejectflag && (cdi->mask & CDC_CLOSE_TRAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 loej = 0;
1626
1627 req.sense = sense;
1628 req.cmd[0] = GPCMD_START_STOP_UNIT;
1629 req.cmd[4] = loej | (ejectflag != 0);
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001630
1631 return ide_cd_queue_pc(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
1634static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
1635 unsigned long *sectors_per_frame,
1636 struct request_sense *sense)
1637{
1638 struct {
1639 __u32 lba;
1640 __u32 blocklen;
1641 } capbuf;
1642
1643 int stat;
1644 struct request req;
1645
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001646 ide_cd_init_rq(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 req.sense = sense;
1649 req.cmd[0] = GPCMD_READ_CDVD_CAPACITY;
1650 req.data = (char *)&capbuf;
1651 req.data_len = sizeof(capbuf);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001652 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001654 stat = ide_cd_queue_pc(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (stat == 0) {
1656 *capacity = 1 + be32_to_cpu(capbuf.lba);
1657 *sectors_per_frame =
1658 be32_to_cpu(capbuf.blocklen) >> SECTOR_BITS;
1659 }
1660
1661 return stat;
1662}
1663
1664static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
1665 int format, char *buf, int buflen,
1666 struct request_sense *sense)
1667{
1668 struct request req;
1669
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001670 ide_cd_init_rq(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 req.sense = sense;
1673 req.data = buf;
1674 req.data_len = buflen;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001675 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 req.cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1677 req.cmd[6] = trackno;
1678 req.cmd[7] = (buflen >> 8);
1679 req.cmd[8] = (buflen & 0xff);
1680 req.cmd[9] = (format << 6);
1681
1682 if (msf_flag)
1683 req.cmd[1] = 2;
1684
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001685 return ide_cd_queue_pc(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688/* Try to read the entire TOC for the disk into our internal buffer. */
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001689int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
1691 int stat, ntracks, i;
1692 struct cdrom_info *info = drive->driver_data;
1693 struct cdrom_device_info *cdi = &info->devinfo;
1694 struct atapi_toc *toc = info->toc;
1695 struct {
1696 struct atapi_toc_header hdr;
1697 struct atapi_toc_entry ent;
1698 } ms_tmp;
1699 long last_written;
1700 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
1701
1702 if (toc == NULL) {
1703 /* Try to allocate space. */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001704 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (toc == NULL) {
1706 printk (KERN_ERR "%s: No cdrom TOC buffer!\n", drive->name);
1707 return -ENOMEM;
1708 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001709 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711
1712 /* Check to see if the existing data is still valid.
1713 If it is, just return. */
1714 (void) cdrom_check_status(drive, sense);
1715
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001716 if (info->cd_flags & IDE_CD_FLAG_TOC_VALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return 0;
1718
1719 /* Try to get the total cdrom capacity and sector size. */
1720 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
1721 sense);
1722 if (stat)
1723 toc->capacity = 0x1fffff;
1724
1725 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001726 /* Save a private copy of te TOC capacity for error handling */
1727 drive->probed_capacity = toc->capacity * sectors_per_frame;
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 blk_queue_hardsect_size(drive->queue,
1730 sectors_per_frame << SECTOR_BITS);
1731
1732 /* First read just the header, so we know how long the TOC is. */
1733 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1734 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001735 if (stat)
1736 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001738 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +01001739 toc->hdr.first_track = BCD2BIN(toc->hdr.first_track);
1740 toc->hdr.last_track = BCD2BIN(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1744 if (ntracks <= 0)
1745 return -EIO;
1746 if (ntracks > MAX_TRACKS)
1747 ntracks = MAX_TRACKS;
1748
1749 /* Now read the whole schmeer. */
1750 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1751 (char *)&toc->hdr,
1752 sizeof(struct atapi_toc_header) +
1753 (ntracks + 1) *
1754 sizeof(struct atapi_toc_entry), sense);
1755
1756 if (stat && toc->hdr.first_track > 1) {
1757 /* Cds with CDI tracks only don't have any TOC entries,
1758 despite of this the returned values are
1759 first_track == last_track = number of CDI tracks + 1,
1760 so that this case is indistinguishable from the same
1761 layout plus an additional audio track.
1762 If we get an error for the regular case, we assume
1763 a CDI without additional audio tracks. In this case
1764 the readable TOC is empty (CDI tracks are not included)
Jan Engelhardt96de0e22007-10-19 23:21:04 +02001765 and only holds the Leadout entry. Heiko Eißfeldt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 ntracks = 0;
1767 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1768 (char *)&toc->hdr,
1769 sizeof(struct atapi_toc_header) +
1770 (ntracks + 1) *
1771 sizeof(struct atapi_toc_entry),
1772 sense);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001773 if (stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return stat;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001775
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001776 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +01001777 toc->hdr.first_track = (u8)BIN2BCD(CDROM_LEADOUT);
1778 toc->hdr.last_track = (u8)BIN2BCD(CDROM_LEADOUT);
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001779 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 toc->hdr.first_track = CDROM_LEADOUT;
1781 toc->hdr.last_track = CDROM_LEADOUT;
1782 }
1783 }
1784
1785 if (stat)
1786 return stat;
1787
1788 toc->hdr.toc_length = ntohs (toc->hdr.toc_length);
1789
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001790 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +01001791 toc->hdr.first_track = BCD2BIN(toc->hdr.first_track);
1792 toc->hdr.last_track = BCD2BIN(toc->hdr.last_track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01001795 for (i = 0; i <= ntracks; i++) {
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001796 if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) {
1797 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD)
Bartlomiej Zolnierkiewicz9a6dc662008-02-01 23:09:22 +01001798 toc->ent[i].track = BCD2BIN(toc->ent[i].track);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 msf_from_bcd(&toc->ent[i].addr.msf);
1800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 toc->ent[i].addr.lba = msf_to_lba (toc->ent[i].addr.msf.minute,
1802 toc->ent[i].addr.msf.second,
1803 toc->ent[i].addr.msf.frame);
1804 }
1805
1806 /* Read the multisession information. */
1807 if (toc->hdr.first_track != CDROM_LEADOUT) {
1808 /* Read the multisession information. */
1809 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1810 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001811 if (stat)
1812 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1815 } else {
1816 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track = CDROM_LEADOUT;
1817 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1818 }
1819
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001820 if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 /* Re-read multisession information using MSF format */
1822 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1823 sizeof(ms_tmp), sense);
1824 if (stat)
1825 return stat;
1826
1827 msf_from_bcd (&ms_tmp.ent.addr.msf);
1828 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
1829 ms_tmp.ent.addr.msf.second,
1830 ms_tmp.ent.addr.msf.frame);
1831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1834
1835 /* Now try to get the total cdrom capacity. */
1836 stat = cdrom_get_last_written(cdi, &last_written);
1837 if (!stat && (last_written > toc->capacity)) {
1838 toc->capacity = last_written;
1839 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07001840 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842
1843 /* Remember that we've read this stuff. */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001844 info->cd_flags |= IDE_CD_FLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
1846 return 0;
1847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849/* the generic packet interface to cdrom.c */
1850static int ide_cdrom_packet(struct cdrom_device_info *cdi,
1851 struct packet_command *cgc)
1852{
1853 struct request req;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001854 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 if (cgc->timeout <= 0)
1857 cgc->timeout = ATAPI_WAIT_PC;
1858
1859 /* here we queue the commands from the uniform CD-ROM
1860 layer. the packet must be complete, as we do not
1861 touch it at all. */
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001862 ide_cd_init_rq(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 memcpy(req.cmd, cgc->cmd, CDROM_PACKET_SIZE);
1864 if (cgc->sense)
1865 memset(cgc->sense, 0, sizeof(struct request_sense));
1866 req.data = cgc->buffer;
1867 req.data_len = cgc->buflen;
1868 req.timeout = cgc->timeout;
1869
1870 if (cgc->quiet)
Jens Axboe4aff5e22006-08-10 08:44:47 +02001871 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 req.sense = cgc->sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001874 cgc->stat = ide_cd_queue_pc(drive, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (!cgc->stat)
1876 cgc->buflen -= req.data_len;
1877 return cgc->stat;
1878}
1879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880static
1881int ide_cdrom_tray_move (struct cdrom_device_info *cdi, int position)
1882{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001883 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 struct request_sense sense;
1885
1886 if (position) {
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01001887 int stat = ide_cd_lockdoor(drive, 0, &sense);
1888
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001889 if (stat)
1890 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892
1893 return cdrom_eject(drive, !position, &sense);
1894}
1895
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001896int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001897{
1898 struct cdrom_info *info = drive->driver_data;
1899 struct cdrom_device_info *cdi = &info->devinfo;
1900 struct packet_command cgc;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001901 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001902
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001903 if ((info->cd_flags & IDE_CD_FLAG_FULL_CAPS_PAGE) == 0)
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001904 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
Eric Piel9235e682005-06-23 00:10:29 -07001905
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001906 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
Eric Piel9235e682005-06-23 00:10:29 -07001907 do { /* we seem to get stat=0x01,err=0x00 the first time (??) */
1908 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1909 if (!stat)
1910 break;
1911 } while (--attempts);
1912 return stat;
1913}
1914
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +01001915void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
Eric Piel9235e682005-06-23 00:10:29 -07001916{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01001917 struct cdrom_info *cd = drive->driver_data;
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001918 u16 curspeed, maxspeed;
1919
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001920 curspeed = *(u16 *)&buf[8 + 14];
1921 maxspeed = *(u16 *)&buf[8 + 8];
1922
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01001923 if (cd->cd_flags & IDE_CD_FLAG_LE_SPEED_FIELDS) {
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001924 curspeed = le16_to_cpu(curspeed);
1925 maxspeed = le16_to_cpu(maxspeed);
Eric Piel9235e682005-06-23 00:10:29 -07001926 } else {
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01001927 curspeed = be16_to_cpu(curspeed);
1928 maxspeed = be16_to_cpu(maxspeed);
Eric Piel9235e682005-06-23 00:10:29 -07001929 }
Bartlomiej Zolnierkiewicz481c8c62008-02-01 23:09:20 +01001930
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001931 cd->current_speed = (curspeed + (176/2)) / 176;
1932 cd->max_speed = (maxspeed + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07001933}
1934
Bartlomiej Zolnierkiewicz5c684292008-02-01 23:09:24 +01001935/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 * add logic to try GET_EVENT command first to check for media and tray
1937 * status. this should be supported by newer cd-r/w and all DVD etc
1938 * drives
1939 */
1940static
1941int ide_cdrom_drive_status (struct cdrom_device_info *cdi, int slot_nr)
1942{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001943 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 struct media_event_desc med;
1945 struct request_sense sense;
1946 int stat;
1947
1948 if (slot_nr != CDSL_CURRENT)
1949 return -EINVAL;
1950
1951 stat = cdrom_check_status(drive, &sense);
1952 if (!stat || sense.sense_key == UNIT_ATTENTION)
1953 return CDS_DISC_OK;
1954
1955 if (!cdrom_get_media_event(cdi, &med)) {
1956 if (med.media_present)
1957 return CDS_DISC_OK;
1958 else if (med.door_open)
1959 return CDS_TRAY_OPEN;
1960 else
1961 return CDS_NO_DISC;
1962 }
1963
1964 if (sense.sense_key == NOT_READY && sense.asc == 0x04 && sense.ascq == 0x04)
1965 return CDS_DISC_OK;
1966
1967 /*
1968 * If not using Mt Fuji extended media tray reports,
1969 * just return TRAY_OPEN since ATAPI doesn't provide
1970 * any other way to detect this...
1971 */
1972 if (sense.sense_key == NOT_READY) {
Alan Coxdbe217a2006-06-25 05:47:44 -07001973 if (sense.asc == 0x3a && sense.ascq == 1)
1974 return CDS_NO_DISC;
1975 else
1976 return CDS_TRAY_OPEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return CDS_DRIVE_NOT_READY;
1979}
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981/****************************************************************************
1982 * Other driver requests (open, close, check media change).
1983 */
1984
1985static
1986int ide_cdrom_check_media_change_real (struct cdrom_device_info *cdi,
1987 int slot_nr)
1988{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08001989 ide_drive_t *drive = cdi->handle;
Bartlomiej Zolnierkiewicz0ba11212008-02-01 23:09:21 +01001990 struct cdrom_info *cd = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 int retval;
Bartlomiej Zolnierkiewicz0ba11212008-02-01 23:09:21 +01001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (slot_nr == CDSL_CURRENT) {
1994 (void) cdrom_check_status(drive, NULL);
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01001995 retval = (cd->cd_flags & IDE_CD_FLAG_MEDIA_CHANGED) ? 1 : 0;
1996 cd->cd_flags &= ~IDE_CD_FLAG_MEDIA_CHANGED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return retval;
1998 } else {
1999 return -EINVAL;
2000 }
2001}
2002
2003
2004static
2005int ide_cdrom_open_real (struct cdrom_device_info *cdi, int purpose)
2006{
2007 return 0;
2008}
2009
2010/*
2011 * Close down the device. Invalidate all cached blocks.
2012 */
2013
2014static
2015void ide_cdrom_release_real (struct cdrom_device_info *cdi)
2016{
2017 ide_drive_t *drive = cdi->handle;
Bartlomiej Zolnierkiewicz0ba11212008-02-01 23:09:21 +01002018 struct cdrom_info *cd = drive->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 if (!cdi->use_count)
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002021 cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01002024#define IDE_CD_CAPABILITIES \
2025 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
2026 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
2027 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
2028 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
2029 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031static struct cdrom_device_ops ide_cdrom_dops = {
2032 .open = ide_cdrom_open_real,
2033 .release = ide_cdrom_release_real,
2034 .drive_status = ide_cdrom_drive_status,
2035 .media_changed = ide_cdrom_check_media_change_real,
2036 .tray_move = ide_cdrom_tray_move,
2037 .lock_door = ide_cdrom_lock_door,
2038 .select_speed = ide_cdrom_select_speed,
2039 .get_last_session = ide_cdrom_get_last_session,
2040 .get_mcn = ide_cdrom_get_mcn,
2041 .reset = ide_cdrom_reset,
2042 .audio_ioctl = ide_cdrom_audio_ioctl,
Bartlomiej Zolnierkiewicz20e7f7e2008-02-01 23:09:20 +01002043 .capability = IDE_CD_CAPABILITIES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 .generic_packet = ide_cdrom_packet,
2045};
2046
2047static int ide_cdrom_register (ide_drive_t *drive, int nslots)
2048{
2049 struct cdrom_info *info = drive->driver_data;
2050 struct cdrom_device_info *devinfo = &info->devinfo;
2051
2052 devinfo->ops = &ide_cdrom_dops;
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002053 devinfo->speed = info->current_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002055 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 strcpy(devinfo->name, drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002058 if (info->cd_flags & IDE_CD_FLAG_NO_SPEED_SELECT)
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01002059 devinfo->mask |= CDC_SELECT_SPEED;
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 devinfo->disk = info->disk;
2062 return register_cdrom(devinfo);
2063}
2064
2065static
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066int ide_cdrom_probe_capabilities (ide_drive_t *drive)
2067{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01002068 struct cdrom_info *cd = drive->driver_data;
2069 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002070 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
2071 mechtype_t mechtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 int nslots = 1;
2073
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002074 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
2075 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
2076 CDC_MO_DRIVE | CDC_RAM);
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (drive->media == ide_optical) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002079 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 printk(KERN_ERR "%s: ATAPI magneto-optical drive\n", drive->name);
2081 return nslots;
2082 }
2083
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002084 if (cd->cd_flags & IDE_CD_FLAG_PRE_ATAPI12) {
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002085 cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002086 cdi->mask &= ~CDC_PLAY_AUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 return nslots;
2088 }
2089
2090 /*
2091 * we have to cheat a little here. the packet will eventually
2092 * be queued with ide_cdrom_packet(), which extracts the
2093 * drive from cdi->handle. Since this device hasn't been
2094 * registered with the Uniform layer yet, it can't do this.
2095 * Same goes for cdi->ops.
2096 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002097 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 cdi->ops = &ide_cdrom_dops;
2099
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002100 if (ide_cdrom_get_capabilities(drive, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return 0;
2102
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002103 if ((buf[8 + 6] & 0x01) == 0)
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002104 cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002105 if (buf[8 + 6] & 0x08)
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002106 cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002107 if (buf[8 + 3] & 0x01)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002108 cdi->mask &= ~CDC_CD_R;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002109 if (buf[8 + 3] & 0x02)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002110 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002111 if (buf[8 + 2] & 0x38)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002112 cdi->mask &= ~CDC_DVD;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002113 if (buf[8 + 3] & 0x20)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002114 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002115 if (buf[8 + 3] & 0x10)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002116 cdi->mask &= ~CDC_DVD_R;
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002117 if ((buf[8 + 4] & 0x01) || (cd->cd_flags & IDE_CD_FLAG_PLAY_AUDIO_OK))
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002118 cdi->mask &= ~CDC_PLAY_AUDIO;
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002119
2120 mechtype = buf[8 + 6] >> 5;
2121 if (mechtype == mechtype_caddy || mechtype == mechtype_popup)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002122 cdi->mask |= CDC_CLOSE_TRAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 if (cdi->sanyo_slot > 0) {
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002125 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 nslots = 3;
Bartlomiej Zolnierkiewiczcdf60002008-02-01 23:09:22 +01002127 } else if (mechtype == mechtype_individual_changer ||
2128 mechtype == mechtype_cartridge_changer) {
Bartlomiej Zolnierkiewicz2609d062008-02-01 23:09:19 +01002129 nslots = cdrom_number_of_slots(cdi);
2130 if (nslots > 1)
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002131 cdi->mask &= ~CDC_SELECT_DISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002134 ide_cdrom_update_speed(drive, buf);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 printk(KERN_INFO "%s: ATAPI", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01002137
2138 /* don't print speed if the drive reported 0 */
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002139 if (cd->max_speed)
2140 printk(KERN_CONT " %dX", cd->max_speed);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01002141
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002142 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002144 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
2145 printk(KERN_CONT " DVD%s%s",
2146 (cdi->mask & CDC_DVD_R) ? "" : "-R",
2147 (cdi->mask & CDC_DVD_RAM) ? "" : "-RAM");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002149 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
2150 printk(KERN_CONT " CD%s%s",
2151 (cdi->mask & CDC_CD_R) ? "" : "-R",
2152 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Bartlomiej Zolnierkiewicz3f1b86d2008-02-01 23:09:20 +01002154 if ((cdi->mask & CDC_SELECT_DISC) == 0)
2155 printk(KERN_CONT " changer w/%d slots", nslots);
2156 else
2157 printk(KERN_CONT " drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +01002159 printk(KERN_CONT ", %dkB Cache\n", be16_to_cpu(*(u16 *)&buf[8 + 12]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161 return nslots;
2162}
2163
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002164#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165static void ide_cdrom_add_settings(ide_drive_t *drive)
2166{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02002167 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->dsc_overlap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002169#else
2170static inline void ide_cdrom_add_settings(ide_drive_t *drive) { ; }
2171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173/*
2174 * standard prep_rq_fn that builds 10 byte cmds
2175 */
Jens Axboe165125e2007-07-24 09:28:11 +02002176static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
2178 int hard_sect = queue_hardsect_size(q);
2179 long block = (long)rq->hard_sector / (hard_sect >> 9);
2180 unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
2181
2182 memset(rq->cmd, 0, sizeof(rq->cmd));
2183
2184 if (rq_data_dir(rq) == READ)
2185 rq->cmd[0] = GPCMD_READ_10;
2186 else
2187 rq->cmd[0] = GPCMD_WRITE_10;
2188
2189 /*
2190 * fill in lba
2191 */
2192 rq->cmd[2] = (block >> 24) & 0xff;
2193 rq->cmd[3] = (block >> 16) & 0xff;
2194 rq->cmd[4] = (block >> 8) & 0xff;
2195 rq->cmd[5] = block & 0xff;
2196
2197 /*
2198 * and transfer length
2199 */
2200 rq->cmd[7] = (blocks >> 8) & 0xff;
2201 rq->cmd[8] = blocks & 0xff;
2202 rq->cmd_len = 10;
2203 return BLKPREP_OK;
2204}
2205
2206/*
2207 * Most of the SCSI commands are supported directly by ATAPI devices.
2208 * This transform handles the few exceptions.
2209 */
2210static int ide_cdrom_prep_pc(struct request *rq)
2211{
2212 u8 *c = rq->cmd;
2213
2214 /*
2215 * Transform 6-byte read/write commands to the 10-byte version
2216 */
2217 if (c[0] == READ_6 || c[0] == WRITE_6) {
2218 c[8] = c[4];
2219 c[5] = c[3];
2220 c[4] = c[2];
2221 c[3] = c[1] & 0x1f;
2222 c[2] = 0;
2223 c[1] &= 0xe0;
2224 c[0] += (READ_10 - READ_6);
2225 rq->cmd_len = 10;
2226 return BLKPREP_OK;
2227 }
2228
2229 /*
2230 * it's silly to pretend we understand 6-byte sense commands, just
2231 * reject with ILLEGAL_REQUEST and the caller should take the
2232 * appropriate action
2233 */
2234 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
2235 rq->errors = ILLEGAL_REQUEST;
2236 return BLKPREP_KILL;
2237 }
2238
2239 return BLKPREP_OK;
2240}
2241
Jens Axboe165125e2007-07-24 09:28:11 +02002242static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
Jens Axboe4aff5e22006-08-10 08:44:47 +02002244 if (blk_fs_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 return ide_cdrom_prep_fs(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02002246 else if (blk_pc_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 return ide_cdrom_prep_pc(rq);
2248
2249 return 0;
2250}
2251
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002252struct cd_list_entry {
2253 const char *id_model;
2254 const char *id_firmware;
2255 unsigned int cd_flags;
2256};
2257
2258static const struct cd_list_entry ide_cd_quirks_list[] = {
2259 /* Limit transfer size per interrupt. */
2260 { "SAMSUNG CD-ROM SCR-2430", NULL, IDE_CD_FLAG_LIMIT_NFRAMES },
2261 { "SAMSUNG CD-ROM SCR-2432", NULL, IDE_CD_FLAG_LIMIT_NFRAMES },
2262 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
2263 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_CD_FLAG_NO_SPEED_SELECT },
2264 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
2265 { "NEC CD-ROM DRIVE:260", "1.01", IDE_CD_FLAG_TOCADDR_AS_BCD |
2266 IDE_CD_FLAG_PRE_ATAPI12, },
2267 /* Vertos 300, some versions of this drive like to talk BCD. */
2268 { "V003S0DS", NULL, IDE_CD_FLAG_VERTOS_300_SSD, },
2269 /* Vertos 600 ESD. */
2270 { "V006E0DS", NULL, IDE_CD_FLAG_VERTOS_600_ESD, },
2271 /*
2272 * Sanyo 3 CD changer uses a non-standard command for CD changing
2273 * (by default standard ATAPI support for CD changers is used).
2274 */
2275 { "CD-ROM CDR-C3 G", NULL, IDE_CD_FLAG_SANYO_3CD },
2276 { "CD-ROM CDR-C3G", NULL, IDE_CD_FLAG_SANYO_3CD },
2277 { "CD-ROM CDR_C36", NULL, IDE_CD_FLAG_SANYO_3CD },
2278 /* Stingray 8X CD-ROM. */
2279 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_CD_FLAG_PRE_ATAPI12},
2280 /*
2281 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
2282 * mode sense page capabilities size, but older drives break.
2283 */
2284 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE },
2285 { "WPI CDS-32X", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE },
2286 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
2287 { "", "241N", IDE_CD_FLAG_LE_SPEED_FIELDS },
2288 /*
2289 * Some drives used by Apple don't advertise audio play
2290 * but they do support reading TOC & audio datas.
2291 */
2292 { "MATSHITADVD-ROM SR-8187", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2293 { "MATSHITADVD-ROM SR-8186", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2294 { "MATSHITADVD-ROM SR-8176", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2295 { "MATSHITADVD-ROM SR-8174", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2296 { NULL, NULL, 0 }
2297};
2298
2299static unsigned int ide_cd_flags(struct hd_driveid *id)
2300{
2301 const struct cd_list_entry *cle = ide_cd_quirks_list;
2302
2303 while (cle->id_model) {
2304 if (strcmp(cle->id_model, id->model) == 0 &&
2305 (cle->id_firmware == NULL ||
2306 strstr(id->fw_rev, cle->id_firmware)))
2307 return cle->cd_flags;
2308 cle++;
2309 }
2310
2311 return 0;
2312}
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314static
2315int ide_cdrom_setup (ide_drive_t *drive)
2316{
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01002317 struct cdrom_info *cd = drive->driver_data;
2318 struct cdrom_device_info *cdi = &cd->devinfo;
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002319 struct hd_driveid *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 int nslots;
2321
2322 blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn);
2323 blk_queue_dma_alignment(drive->queue, 31);
2324 drive->queue->unplug_delay = (1 * HZ) / 1000;
2325 if (!drive->queue->unplug_delay)
2326 drive->queue->unplug_delay = 1;
2327
2328 drive->special.all = 0;
2329
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002330 cd->cd_flags = IDE_CD_FLAG_MEDIA_CHANGED | IDE_CD_FLAG_NO_EJECT |
2331 ide_cd_flags(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002333 if ((id->config & 0x0060) == 0x20)
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002334 cd->cd_flags |= IDE_CD_FLAG_DRQ_INTERRUPT;
Bartlomiej Zolnierkiewiczb8d25de2008-02-01 23:09:19 +01002335
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002336 if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_300_SSD) &&
2337 id->fw_rev[4] == '1' && id->fw_rev[6] <= '2')
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002338 cd->cd_flags |= (IDE_CD_FLAG_TOCTRACKS_AS_BCD |
2339 IDE_CD_FLAG_TOCADDR_AS_BCD);
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002340 else if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_600_ESD) &&
2341 id->fw_rev[4] == '1' && id->fw_rev[6] <= '2')
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +01002342 cd->cd_flags |= IDE_CD_FLAG_TOCTRACKS_AS_BCD;
Bartlomiej Zolnierkiewicze59724c2008-02-01 23:09:22 +01002343 else if (cd->cd_flags & IDE_CD_FLAG_SANYO_3CD)
2344 cdi->sanyo_slot = 3; /* 3 => use CD in slot 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 nslots = ide_cdrom_probe_capabilities (drive);
2347
2348 /*
2349 * set correct block size
2350 */
2351 blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE);
2352
2353 if (drive->autotune == IDE_TUNE_DEFAULT ||
2354 drive->autotune == IDE_TUNE_AUTO)
2355 drive->dsc_overlap = (drive->next != drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357 if (ide_cdrom_register(drive, nslots)) {
2358 printk (KERN_ERR "%s: ide_cdrom_setup failed to register device with the cdrom driver.\n", drive->name);
Bartlomiej Zolnierkiewicz4fe67172008-02-01 23:09:21 +01002359 cd->devinfo.handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 return 1;
2361 }
2362 ide_cdrom_add_settings(drive);
2363 return 0;
2364}
2365
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002366#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367static
2368sector_t ide_cdrom_capacity (ide_drive_t *drive)
2369{
2370 unsigned long capacity, sectors_per_frame;
2371
2372 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
2373 return 0;
2374
2375 return capacity * sectors_per_frame;
2376}
Amos Waterlandd97b32142005-10-30 15:02:10 -08002377#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Russell King4031bbe2006-01-06 11:41:00 +00002379static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
2381 struct cdrom_info *info = drive->driver_data;
2382
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002383 ide_proc_unregister_driver(drive, info->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 del_gendisk(info->disk);
2386
2387 ide_cd_put(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388}
2389
2390static void ide_cd_release(struct kref *kref)
2391{
2392 struct cdrom_info *info = to_ide_cd(kref);
2393 struct cdrom_device_info *devinfo = &info->devinfo;
2394 ide_drive_t *drive = info->drive;
2395 struct gendisk *g = info->disk;
2396
Jesper Juhl6044ec82005-11-07 01:01:32 -08002397 kfree(info->buffer);
2398 kfree(info->toc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if (devinfo->handle == drive && unregister_cdrom(devinfo))
2400 printk(KERN_ERR "%s: %s failed to unregister device from the cdrom "
2401 "driver.\n", __FUNCTION__, drive->name);
2402 drive->dsc_overlap = 0;
2403 drive->driver_data = NULL;
2404 blk_queue_prep_rq(drive->queue, NULL);
2405 g->private_data = NULL;
2406 put_disk(g);
2407 kfree(info);
2408}
2409
Russell King4031bbe2006-01-06 11:41:00 +00002410static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02002412#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413static int proc_idecd_read_capacity
2414 (char *page, char **start, off_t off, int count, int *eof, void *data)
2415{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002416 ide_drive_t *drive = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 int len;
2418
2419 len = sprintf(page,"%llu\n", (long long)ide_cdrom_capacity(drive));
2420 PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
2421}
2422
2423static ide_proc_entry_t idecd_proc[] = {
2424 { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
2425 { NULL, 0, NULL, NULL }
2426};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427#endif
2428
2429static ide_driver_t ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002430 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01002431 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002432 .name = "ide-cdrom",
2433 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002434 },
Russell King4031bbe2006-01-06 11:41:00 +00002435 .probe = ide_cd_probe,
2436 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 .version = IDECD_VERSION,
2438 .media = ide_cdrom,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 .supports_dsc_overlap = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 .do_request = ide_do_rw_cdrom,
2441 .end_request = ide_end_request,
2442 .error = __ide_error,
2443 .abort = __ide_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002444#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 .proc = idecd_proc,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002446#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447};
2448
2449static int idecd_open(struct inode * inode, struct file * file)
2450{
2451 struct gendisk *disk = inode->i_bdev->bd_disk;
2452 struct cdrom_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 int rc = -ENOMEM;
2454
2455 if (!(info = ide_cd_get(disk)))
2456 return -ENXIO;
2457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 if (!info->buffer)
Bartlomiej Zolnierkiewiczc94964a2007-02-17 02:40:24 +01002459 info->buffer = kmalloc(SECTOR_BUFFER_SIZE, GFP_KERNEL|__GFP_REPEAT);
2460
2461 if (info->buffer)
2462 rc = cdrom_open(&info->devinfo, inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
2464 if (rc < 0)
2465 ide_cd_put(info);
2466
2467 return rc;
2468}
2469
2470static int idecd_release(struct inode * inode, struct file * file)
2471{
2472 struct gendisk *disk = inode->i_bdev->bd_disk;
2473 struct cdrom_info *info = ide_cd_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475 cdrom_release (&info->devinfo, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
2477 ide_cd_put(info);
2478
2479 return 0;
2480}
2481
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002482static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2483{
2484 struct packet_command cgc;
2485 char buffer[16];
2486 int stat;
2487 char spindown;
2488
2489 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
2490 return -EFAULT;
2491
2492 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2493
2494 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2495 if (stat)
2496 return stat;
2497
2498 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
2499 return cdrom_mode_select(cdi, &cgc);
2500}
2501
2502static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2503{
2504 struct packet_command cgc;
2505 char buffer[16];
2506 int stat;
2507 char spindown;
2508
2509 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2510
2511 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2512 if (stat)
2513 return stat;
2514
2515 spindown = buffer[11] & 0x0f;
2516 if (copy_to_user((void __user *)arg, &spindown, sizeof (char)))
2517 return -EFAULT;
2518 return 0;
2519}
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521static int idecd_ioctl (struct inode *inode, struct file *file,
2522 unsigned int cmd, unsigned long arg)
2523{
2524 struct block_device *bdev = inode->i_bdev;
2525 struct cdrom_info *info = ide_cd_g(bdev->bd_disk);
2526 int err;
2527
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002528 switch (cmd) {
2529 case CDROMSETSPINDOWN:
2530 return idecd_set_spindown(&info->devinfo, arg);
2531 case CDROMGETSPINDOWN:
2532 return idecd_get_spindown(&info->devinfo, arg);
2533 default:
2534 break;
2535 }
2536
2537 err = generic_ide_ioctl(info->drive, file, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 if (err == -EINVAL)
2539 err = cdrom_ioctl(file, &info->devinfo, inode, cmd, arg);
2540
2541 return err;
2542}
2543
2544static int idecd_media_changed(struct gendisk *disk)
2545{
2546 struct cdrom_info *info = ide_cd_g(disk);
2547 return cdrom_media_changed(&info->devinfo);
2548}
2549
2550static int idecd_revalidate_disk(struct gendisk *disk)
2551{
2552 struct cdrom_info *info = ide_cd_g(disk);
2553 struct request_sense sense;
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01002554
2555 ide_cd_read_toc(info->drive, &sense);
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 return 0;
2558}
2559
2560static struct block_device_operations idecd_ops = {
2561 .owner = THIS_MODULE,
2562 .open = idecd_open,
2563 .release = idecd_release,
2564 .ioctl = idecd_ioctl,
2565 .media_changed = idecd_media_changed,
2566 .revalidate_disk= idecd_revalidate_disk
2567};
2568
2569/* options */
2570static char *ignore = NULL;
2571
2572module_param(ignore, charp, 0400);
2573MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
2574
Russell King4031bbe2006-01-06 11:41:00 +00002575static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576{
2577 struct cdrom_info *info;
2578 struct gendisk *g;
2579 struct request_sense sense;
2580
2581 if (!strstr("ide-cdrom", drive->driver_req))
2582 goto failed;
2583 if (!drive->present)
2584 goto failed;
2585 if (drive->media != ide_cdrom && drive->media != ide_optical)
2586 goto failed;
2587 /* skip drives that we were told to ignore */
2588 if (ignore != NULL) {
2589 if (strstr(ignore, drive->name)) {
2590 printk(KERN_INFO "ide-cd: ignoring drive %s\n", drive->name);
2591 goto failed;
2592 }
2593 }
2594 if (drive->scsi) {
2595 printk(KERN_INFO "ide-cd: passing drive %s to ide-scsi emulation.\n", drive->name);
2596 goto failed;
2597 }
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08002598 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (info == NULL) {
2600 printk(KERN_ERR "%s: Can't allocate a cdrom structure\n", drive->name);
2601 goto failed;
2602 }
2603
2604 g = alloc_disk(1 << PARTN_BITS);
2605 if (!g)
2606 goto out_free_cd;
2607
2608 ide_init_disk(g, drive);
2609
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002610 ide_proc_register_driver(drive, &ide_cdrom_driver);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 kref_init(&info->kref);
2613
2614 info->drive = drive;
2615 info->driver = &ide_cdrom_driver;
2616 info->disk = g;
2617
2618 g->private_data = &info->driver;
2619
2620 drive->driver_data = info;
2621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 g->driverfs_dev = &drive->gendev;
2624 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
2625 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02002626 ide_proc_unregister_driver(drive, &ide_cdrom_driver);
Bartlomiej Zolnierkiewicz05017db2007-12-24 15:23:43 +01002627 ide_cd_release(&info->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 goto failed;
2629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Bartlomiej Zolnierkiewicz139c8292008-02-01 23:09:24 +01002631 ide_cd_read_toc(drive, &sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 g->fops = &idecd_ops;
2633 g->flags |= GENHD_FL_REMOVABLE;
2634 add_disk(g);
2635 return 0;
2636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637out_free_cd:
2638 kfree(info);
2639failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002640 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641}
2642
2643static void __exit ide_cdrom_exit(void)
2644{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002645 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01002647
2648static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02002650 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651}
2652
Kay Sievers263756e2005-12-12 18:03:44 +01002653MODULE_ALIAS("ide:*m-cdrom*");
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +01002654MODULE_ALIAS("ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655module_init(ide_cdrom_init);
2656module_exit(ide_cdrom_exit);
2657MODULE_LICENSE("GPL");