]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/ide/ide-cd.c
ide-cd: add ide_cd_drain_data() helper
[mirror_ubuntu-hirsute-kernel.git] / drivers / ide / ide-cd.c
CommitLineData
1da177e4
LT
1/*
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 *
03553353
BZ
31 * For historical changelog please see:
32 * Documentation/ide/ChangeLog.ide-cd.1994-2004
33 */
34
1da177e4
LT
35#define IDECD_VERSION "4.61"
36
1da177e4
LT
37#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>
cf8b8975 48#include <linux/mutex.h>
9a6dc668 49#include <linux/bcd.h>
1da177e4
LT
50
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
cf8b8975 61static DEFINE_MUTEX(idecd_ref_mutex);
1da177e4
LT
62
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
cf8b8975 72 mutex_lock(&idecd_ref_mutex);
1da177e4
LT
73 cd = ide_cd_g(disk);
74 if (cd)
75 kref_get(&cd->kref);
cf8b8975 76 mutex_unlock(&idecd_ref_mutex);
1da177e4
LT
77 return cd;
78}
79
80static void ide_cd_release(struct kref *);
81
82static void ide_cd_put(struct cdrom_info *cd)
83{
cf8b8975 84 mutex_lock(&idecd_ref_mutex);
1da177e4 85 kref_put(&cd->kref, ide_cd_release);
cf8b8975 86 mutex_unlock(&idecd_ref_mutex);
1da177e4
LT
87}
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{
0ba11211
BZ
97 struct cdrom_info *cd = drive->driver_data;
98
2bc4cf2d
BZ
99 cd->cd_flags |= IDE_CD_FLAG_MEDIA_CHANGED;
100 cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID;
0ba11211 101 cd->nsectors_buffered = 0;
1da177e4
LT
102}
103
104static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
105 struct request_sense *sense)
106{
107 int log = 0;
108
4aff5e23 109 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
1da177e4
LT
110 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)
dbe217af
AC
131 break;
132 log = 1;
1da177e4
LT
133 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{
dbe217af
AC
154 unsigned long sector;
155 unsigned long bio_sectors;
156 unsigned long valid;
157 struct cdrom_info *info = drive->driver_data;
158
1da177e4
LT
159 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
dbe217af
AC
171 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 }
1da177e4 202
972560fb 203 ide_cd_log_error(drive->name, failed_command, sense);
1da177e4
LT
204}
205
206/*
207 * Initialize a ide-cd packet command request
208 */
17802998 209void ide_cd_init_rq(ide_drive_t *drive, struct request *rq)
1da177e4
LT
210{
211 struct cdrom_info *cd = drive->driver_data;
212
213 ide_init_drive_cmd(rq);
cea2885a 214 rq->cmd_type = REQ_TYPE_ATA_PC;
1da177e4
LT
215 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 */
139c829d 228 ide_cd_init_rq(drive, rq);
1da177e4
LT
229
230 rq->data = sense;
231 rq->cmd[0] = GPCMD_REQUEST_SENSE;
232 rq->cmd[4] = rq->data_len = 18;
233
4aff5e23 234 rq->cmd_type = REQ_TYPE_SENSE;
1da177e4
LT
235
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
4aff5e23 247 if (blk_sense_request(rq) && uptodate) {
1da177e4 248 /*
4aff5e23
JA
249 * For REQ_TYPE_SENSE, "rq->buffer" points to the original
250 * failed request
1da177e4
LT
251 */
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 }
dbe217af 262 cdrom_analyze_sense_data(drive, failed, sense);
1da177e4
LT
263 /*
264 * now end failed request
265 */
dbe217af
AC
266 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);
5e36bb6e
KU
272 if (__blk_end_request(failed, -EIO,
273 failed->data_len))
274 BUG();
dbe217af
AC
275 spin_unlock_irqrestore(&ide_lock, flags);
276 }
277 } else
278 cdrom_analyze_sense_data(drive, NULL, sense);
1da177e4
LT
279 }
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
dbe217af
AC
292static 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
1da177e4
LT
299/* 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
4aff5e23 323 if (blk_sense_request(rq)) {
1da177e4
LT
324 /* 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
4aff5e23 328 rq->cmd_flags |= REQ_FAILED;
1da177e4
LT
329 cdrom_end_request(drive, 0);
330 ide_error(drive, "request sense failure", stat);
331 return 1;
332
8770c018 333 } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
1da177e4
LT
334 /* 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 */
b7156731 341 if (blk_pc_request(rq) && !rq->errors)
1da177e4
LT
342 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;
76ca1af1
SH
352 } 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 */
4aff5e23 361 } else if (!(rq->cmd_flags & REQ_QUIET)) {
1da177e4
LT
362 /* Otherwise, print an error. */
363 ide_dump_status(drive, "packet command error", stat);
364 }
365
4aff5e23 366 rq->cmd_flags |= REQ_FAILED;
1da177e4
LT
367
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.*/
dbe217af 436 ide_dump_status_no_sense (drive, "command error", stat);
1da177e4
LT
437 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 */
dbe217af 441 ide_dump_status_no_sense (drive, "media error (bad sector)", stat);
1da177e4
LT
442 do_end_request = 1;
443 } else if (sense_key == BLANK_CHECK) {
444 /* Disk appears blank ?? */
dbe217af 445 ide_dump_status_no_sense (drive, "media error (blank)", stat);
1da177e4
LT
446 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
dbe217af
AC
457 /* 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 */
460
461 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 }
1da177e4
LT
478 } 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:
4aff5e23 507 if (!(rq->cmd_flags & REQ_QUIET))
1da177e4
LT
508 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
3a6a3549 534 /* FIXME: for Virtual DMA we must check harder */
1da177e4
LT
535 if (info->dma)
536 info->dma = !hwif->dma_setup(drive);
537
538 /* Set up the controller registers. */
2fc57388
BZ
539 ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL |
540 IDE_TFLAG_NO_SELECT_MASK, xferlen, info->dma);
4fe67178 541
2bc4cf2d 542 if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) {
f0dd8712
AL
543 /* waiting for CDB interrupt, not DMA yet. */
544 if (info->dma)
545 drive->waiting_for_dma = 0;
546
1da177e4
LT
547 /* 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. */
1da177e4
LT
568#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
2bc4cf2d 578 if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) {
1da177e4
LT
579 /* 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;
f0dd8712
AL
585
586 /* Ok, next interrupt will be DMA interrupt. */
587 if (info->dma)
588 drive->waiting_for_dma = 1;
1da177e4
LT
589 } 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
68661c53
BZ
618typedef void (xfer_func_t)(ide_drive_t *, void *, u32);
619
5a5222d9
BZ
620static 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
b4ab726c
BZ
629static 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
1da177e4
LT
639/*
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. */
b4ab726c 677 ide_cd_drain_data(drive, sectors_to_transfer);
1da177e4
LT
678}
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 */
858119e1 685static
1da177e4
LT
686int 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) {
5a5222d9
BZ
691 ide_hwif_t *hwif = drive->hwif;
692
1da177e4 693 /* Whoops... The drive is expecting to receive data from us! */
35379c07
BZ
694 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
695 drive->name, __FUNCTION__);
1da177e4
LT
696
697 /* Throw some data at the drive so it doesn't hang
698 and quit this request. */
5a5222d9 699 ide_cd_pad_transfer(drive, hwif->atapi_output_bytes, len);
1da177e4
LT
700 } 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... */
35379c07
BZ
708 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
709 drive->name, __FUNCTION__, ireason);
1da177e4
LT
710 }
711
712 cdrom_end_request(drive, 0);
713 return -1;
714}
715
716/*
717 * Interrupt routine. Called when a read request has completed.
718 */
719static ide_startstop_t cdrom_read_intr (ide_drive_t *drive)
720{
721 int stat;
722 int ireason, len, sectors_to_transfer, nskip;
723 struct cdrom_info *info = drive->driver_data;
724 u8 lowcyl = 0, highcyl = 0;
725 int dma = info->dma, dma_error = 0;
726
727 struct request *rq = HWGROUP(drive)->rq;
728
729 /*
730 * handle dma case
731 */
732 if (dma) {
733 info->dma = 0;
52ef2ed0
BZ
734 dma_error = HWIF(drive)->ide_dma_end(drive);
735 if (dma_error) {
736 printk(KERN_ERR "%s: DMA read error\n", drive->name);
7469aaf6 737 ide_dma_off(drive);
52ef2ed0 738 }
1da177e4
LT
739 }
740
741 if (cdrom_decode_status(drive, 0, &stat))
742 return ide_stopped;
743
744 if (dma) {
745 if (!dma_error) {
746 ide_end_request(drive, 1, rq->nr_sectors);
747 return ide_stopped;
748 } else
749 return ide_error(drive, "dma error", stat);
750 }
751
752 /* Read the interrupt reason and the transfer length. */
753 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
754 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
755 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
756
757 len = lowcyl + (256 * highcyl);
758
759 /* If DRQ is clear, the command has completed. */
760 if ((stat & DRQ_STAT) == 0) {
761 /* If we're not done filling the current buffer, complain.
762 Otherwise, complete the command normally. */
763 if (rq->current_nr_sectors > 0) {
764 printk (KERN_ERR "%s: cdrom_read_intr: data underrun (%d blocks)\n",
765 drive->name, rq->current_nr_sectors);
4aff5e23 766 rq->cmd_flags |= REQ_FAILED;
1da177e4
LT
767 cdrom_end_request(drive, 0);
768 } else
769 cdrom_end_request(drive, 1);
770 return ide_stopped;
771 }
772
773 /* Check that the drive is expecting to do the same thing we are. */
774 if (cdrom_read_check_ireason (drive, len, ireason))
775 return ide_stopped;
776
777 /* Assume that the drive will always provide data in multiples
778 of at least SECTOR_SIZE, as it gets hairy to keep track
779 of the transfers otherwise. */
780 if ((len % SECTOR_SIZE) != 0) {
781 printk (KERN_ERR "%s: cdrom_read_intr: Bad transfer size %d\n",
782 drive->name, len);
2bc4cf2d 783 if (info->cd_flags & IDE_CD_FLAG_LIMIT_NFRAMES)
1da177e4
LT
784 printk (KERN_ERR " This drive is not supported by this version of the driver\n");
785 else {
786 printk (KERN_ERR " Trying to limit transfer sizes\n");
2bc4cf2d 787 info->cd_flags |= IDE_CD_FLAG_LIMIT_NFRAMES;
1da177e4
LT
788 }
789 cdrom_end_request(drive, 0);
790 return ide_stopped;
791 }
792
793 /* The number of sectors we need to read from the drive. */
794 sectors_to_transfer = len / SECTOR_SIZE;
795
796 /* First, figure out if we need to bit-bucket
797 any of the leading sectors. */
798 nskip = min_t(int, rq->current_nr_sectors - bio_cur_sectors(rq->bio), sectors_to_transfer);
799
b4ab726c
BZ
800 if (nskip > 0) {
801 ide_cd_drain_data(drive, nskip);
802 rq->current_nr_sectors -= nskip;
803 sectors_to_transfer -= nskip;
1da177e4
LT
804 }
805
806 /* Now loop while we still have data to read from the drive. */
807 while (sectors_to_transfer > 0) {
808 int this_transfer;
809
810 /* If we've filled the present buffer but there's another
811 chained buffer after it, move on. */
812 if (rq->current_nr_sectors == 0 && rq->nr_sectors)
813 cdrom_end_request(drive, 1);
814
815 /* If the buffers are full, cache the rest of the data in our
816 internal buffer. */
817 if (rq->current_nr_sectors == 0) {
818 cdrom_buffer_sectors(drive, rq->sector, sectors_to_transfer);
819 sectors_to_transfer = 0;
820 } else {
821 /* Transfer data to the buffers.
822 Figure out how many sectors we can transfer
823 to the current buffer. */
824 this_transfer = min_t(int, sectors_to_transfer,
825 rq->current_nr_sectors);
826
827 /* Read this_transfer sectors
828 into the current buffer. */
829 while (this_transfer > 0) {
830 HWIF(drive)->atapi_input_bytes(drive, rq->buffer, SECTOR_SIZE);
831 rq->buffer += SECTOR_SIZE;
832 --rq->nr_sectors;
833 --rq->current_nr_sectors;
834 ++rq->sector;
835 --this_transfer;
836 --sectors_to_transfer;
837 }
838 }
839 }
840
841 /* Done moving data! Wait for another interrupt. */
842 ide_set_handler(drive, &cdrom_read_intr, ATAPI_WAIT_PC, NULL);
843 return ide_started;
844}
845
846/*
847 * Try to satisfy some of the current read request from our cached data.
848 * Returns nonzero if the request has been completed, zero otherwise.
849 */
850static int cdrom_read_from_buffer (ide_drive_t *drive)
851{
852 struct cdrom_info *info = drive->driver_data;
853 struct request *rq = HWGROUP(drive)->rq;
854 unsigned short sectors_per_frame;
855
856 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
857
858 /* Can't do anything if there's no buffer. */
859 if (info->buffer == NULL) return 0;
860
861 /* Loop while this request needs data and the next block is present
862 in our cache. */
863 while (rq->nr_sectors > 0 &&
864 rq->sector >= info->sector_buffered &&
865 rq->sector < info->sector_buffered + info->nsectors_buffered) {
866 if (rq->current_nr_sectors == 0)
867 cdrom_end_request(drive, 1);
868
869 memcpy (rq->buffer,
870 info->buffer +
871 (rq->sector - info->sector_buffered) * SECTOR_SIZE,
872 SECTOR_SIZE);
873 rq->buffer += SECTOR_SIZE;
874 --rq->current_nr_sectors;
875 --rq->nr_sectors;
876 ++rq->sector;
877 }
878
879 /* If we've satisfied the current request,
880 terminate it successfully. */
881 if (rq->nr_sectors == 0) {
882 cdrom_end_request(drive, 1);
883 return -1;
884 }
885
886 /* Move on to the next buffer if needed. */
887 if (rq->current_nr_sectors == 0)
888 cdrom_end_request(drive, 1);
889
890 /* If this condition does not hold, then the kluge i use to
891 represent the number of sectors to skip at the start of a transfer
892 will fail. I think that this will never happen, but let's be
893 paranoid and check. */
894 if (rq->current_nr_sectors < bio_cur_sectors(rq->bio) &&
895 (rq->sector & (sectors_per_frame - 1))) {
896 printk(KERN_ERR "%s: cdrom_read_from_buffer: buffer botch (%ld)\n",
897 drive->name, (long)rq->sector);
898 cdrom_end_request(drive, 0);
899 return -1;
900 }
901
902 return 0;
903}
904
905/*
906 * Routine to send a read packet command to the drive.
907 * This is usually called directly from cdrom_start_read.
908 * However, for drq_interrupt devices, it is called from an interrupt
909 * when the drive is ready to accept the command.
910 */
911static ide_startstop_t cdrom_start_read_continuation (ide_drive_t *drive)
912{
913 struct request *rq = HWGROUP(drive)->rq;
914 unsigned short sectors_per_frame;
915 int nskip;
916
917 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
918
919 /* If the requested sector doesn't start on a cdrom block boundary,
920 we must adjust the start of the transfer so that it does,
921 and remember to skip the first few sectors.
922 If the CURRENT_NR_SECTORS field is larger than the size
923 of the buffer, it will mean that we're to skip a number
924 of sectors equal to the amount by which CURRENT_NR_SECTORS
925 is larger than the buffer size. */
926 nskip = rq->sector & (sectors_per_frame - 1);
927 if (nskip > 0) {
928 /* Sanity check... */
929 if (rq->current_nr_sectors != bio_cur_sectors(rq->bio) &&
930 (rq->sector & (sectors_per_frame - 1))) {
931 printk(KERN_ERR "%s: cdrom_start_read_continuation: buffer botch (%u)\n",
932 drive->name, rq->current_nr_sectors);
933 cdrom_end_request(drive, 0);
934 return ide_stopped;
935 }
936 rq->current_nr_sectors += nskip;
937 }
938
939 /* Set up the command */
940 rq->timeout = ATAPI_WAIT_PC;
941
942 /* Send the command to the drive and return. */
943 return cdrom_transfer_packet_command(drive, rq, &cdrom_read_intr);
944}
945
946
947#define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
948#define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
949#define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */
950
951static ide_startstop_t cdrom_seek_intr (ide_drive_t *drive)
952{
953 struct cdrom_info *info = drive->driver_data;
954 int stat;
955 static int retry = 10;
956
957 if (cdrom_decode_status(drive, 0, &stat))
958 return ide_stopped;
4fe67178 959
2bc4cf2d 960 info->cd_flags |= IDE_CD_FLAG_SEEKING;
1da177e4
LT
961
962 if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) {
963 if (--retry == 0) {
964 /*
965 * this condition is far too common, to bother
966 * users about it
967 */
968 /* printk("%s: disabled DSC seek overlap\n", drive->name);*/
969 drive->dsc_overlap = 0;
970 }
971 }
972 return ide_stopped;
973}
974
975static ide_startstop_t cdrom_start_seek_continuation (ide_drive_t *drive)
976{
977 struct request *rq = HWGROUP(drive)->rq;
978 sector_t frame = rq->sector;
979
980 sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS);
981
982 memset(rq->cmd, 0, sizeof(rq->cmd));
983 rq->cmd[0] = GPCMD_SEEK;
984 put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]);
985
986 rq->timeout = ATAPI_WAIT_PC;
987 return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr);
988}
989
990static ide_startstop_t cdrom_start_seek (ide_drive_t *drive, unsigned int block)
991{
992 struct cdrom_info *info = drive->driver_data;
993
994 info->dma = 0;
1da177e4
LT
995 info->start_seek = jiffies;
996 return cdrom_start_packet_command(drive, 0, cdrom_start_seek_continuation);
997}
998
999/* Fix up a possibly partially-processed request so that we can
1000 start it over entirely, or even put it back on the request queue. */
1001static void restore_request (struct request *rq)
1002{
1003 if (rq->buffer != bio_data(rq->bio)) {
1004 sector_t n = (rq->buffer - (char *) bio_data(rq->bio)) / SECTOR_SIZE;
1005
1006 rq->buffer = bio_data(rq->bio);
1007 rq->nr_sectors += n;
1008 rq->sector -= n;
1009 }
1010 rq->hard_cur_sectors = rq->current_nr_sectors = bio_cur_sectors(rq->bio);
1011 rq->hard_nr_sectors = rq->nr_sectors;
1012 rq->hard_sector = rq->sector;
1013 rq->q->prep_rq_fn(rq->q, rq);
1014}
1015
1016/*
1017 * Start a read request from the CD-ROM.
1018 */
1019static ide_startstop_t cdrom_start_read (ide_drive_t *drive, unsigned int block)
1020{
1021 struct cdrom_info *info = drive->driver_data;
1022 struct request *rq = HWGROUP(drive)->rq;
1023 unsigned short sectors_per_frame;
1024
1025 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1026
1027 /* We may be retrying this request after an error. Fix up
1028 any weirdness which might be present in the request packet. */
1029 restore_request(rq);
1030
1031 /* Satisfy whatever we can of this request from our cached sector. */
1032 if (cdrom_read_from_buffer(drive))
1033 return ide_stopped;
1034
1da177e4
LT
1035 /* Clear the local sector buffer. */
1036 info->nsectors_buffered = 0;
1037
1038 /* use dma, if possible. */
1039 info->dma = drive->using_dma;
1040 if ((rq->sector & (sectors_per_frame - 1)) ||
1041 (rq->nr_sectors & (sectors_per_frame - 1)))
1042 info->dma = 0;
1043
1da177e4
LT
1044 /* Start sending the read request to the drive. */
1045 return cdrom_start_packet_command(drive, 32768, cdrom_start_read_continuation);
1046}
1047
1048/****************************************************************************
1049 * Execute all other packet commands.
1050 */
1051
8ee69f5a
BZ
1052static void ide_cd_request_sense_fixup(struct request *rq)
1053{
1054 /*
1055 * Some of the trailing request sense fields are optional,
1056 * and some drives don't send them. Sigh.
1057 */
1058 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
1059 rq->data_len > 0 && rq->data_len <= 5)
1060 while (rq->data_len > 0) {
1061 *(u8 *)rq->data++ = 0;
1062 --rq->data_len;
1063 }
1064}
1065
17802998 1066int ide_cd_queue_pc(ide_drive_t *drive, struct request *rq)
1da177e4
LT
1067{
1068 struct request_sense sense;
1069 int retries = 10;
4aff5e23 1070 unsigned int flags = rq->cmd_flags;
1da177e4
LT
1071
1072 if (rq->sense == NULL)
1073 rq->sense = &sense;
1074
1075 /* Start of retry loop. */
1076 do {
1077 int error;
1078 unsigned long time = jiffies;
4aff5e23 1079 rq->cmd_flags = flags;
1da177e4
LT
1080
1081 error = ide_do_drive_cmd(drive, rq, ide_wait);
1082 time = jiffies - time;
1083
1084 /* FIXME: we should probably abort/retry or something
1085 * in case of failure */
4aff5e23 1086 if (rq->cmd_flags & REQ_FAILED) {
1da177e4
LT
1087 /* The request failed. Retry if it was due to a unit
1088 attention status
1089 (usually means media was changed). */
1090 struct request_sense *reqbuf = rq->sense;
1091
1092 if (reqbuf->sense_key == UNIT_ATTENTION)
1093 cdrom_saw_media_change(drive);
1094 else if (reqbuf->sense_key == NOT_READY &&
1095 reqbuf->asc == 4 && reqbuf->ascq != 4) {
1096 /* The drive is in the process of loading
1097 a disk. Retry, but wait a little to give
1098 the drive time to complete the load. */
1099 ssleep(2);
1100 } else {
1101 /* Otherwise, don't retry. */
1102 retries = 0;
1103 }
1104 --retries;
1105 }
1106
1107 /* End of retry loop. */
4aff5e23 1108 } while ((rq->cmd_flags & REQ_FAILED) && retries >= 0);
1da177e4
LT
1109
1110 /* Return an error if the command failed. */
4aff5e23 1111 return (rq->cmd_flags & REQ_FAILED) ? -EIO : 0;
1da177e4
LT
1112}
1113
1114/*
1115 * Write handling
1116 */
858119e1 1117static int cdrom_write_check_ireason(ide_drive_t *drive, int len, int ireason)
1da177e4
LT
1118{
1119 /* Two notes about IDE interrupt reason here - 0 means that
1120 * the drive wants to receive data from us, 2 means that
1121 * the drive is expecting to transfer data to us.
1122 */
1123 if (ireason == 0)
1124 return 0;
1125 else if (ireason == 2) {
5a5222d9
BZ
1126 ide_hwif_t *hwif = drive->hwif;
1127
1da177e4 1128 /* Whoops... The drive wants to send data. */
35379c07
BZ
1129 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
1130 drive->name, __FUNCTION__);
1da177e4 1131
5a5222d9 1132 ide_cd_pad_transfer(drive, hwif->atapi_input_bytes, len);
1da177e4
LT
1133 } else {
1134 /* Drive wants a command packet, or invalid ireason... */
35379c07
BZ
1135 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
1136 drive->name, __FUNCTION__, ireason);
1da177e4
LT
1137 }
1138
1139 cdrom_end_request(drive, 0);
1140 return 1;
1141}
1142
aaa04c28
KU
1143/*
1144 * Called from blk_end_request_callback() after the data of the request
1145 * is completed and before the request is completed.
1146 * By returning value '1', blk_end_request_callback() returns immediately
1147 * without completing the request.
1148 */
1149static int cdrom_newpc_intr_dummy_cb(struct request *rq)
1150{
1151 return 1;
1152}
1153
1da177e4
LT
1154/*
1155 * best way to deal with dma that is not sector aligned right now... note
1156 * that in this path we are not using ->data or ->buffer at all. this irs
ff1bfbc1 1157 * can replace cdrom_read_intr() and cdrom_write_intr() in the future.
1da177e4
LT
1158 */
1159static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
1160{
1161 struct cdrom_info *info = drive->driver_data;
1162 struct request *rq = HWGROUP(drive)->rq;
1da177e4 1163 xfer_func_t *xferfunc;
ff1bfbc1
BZ
1164 ide_expiry_t *expiry;
1165 int dma_error = 0, dma, stat, ireason, len, thislen, uptodate = 0;
1166 int write = (rq_data_dir(rq) == WRITE) ? 1 : 0;
1167 unsigned int timeout;
1168 u8 lowcyl, highcyl;
1da177e4
LT
1169
1170 /* Check for errors. */
1da177e4
LT
1171 dma = info->dma;
1172 if (dma) {
1173 info->dma = 0;
1174 dma_error = HWIF(drive)->ide_dma_end(drive);
eba15fba
BZ
1175 if (dma_error) {
1176 printk(KERN_ERR "%s: DMA %s error\n", drive->name,
ff1bfbc1 1177 write ? "write" : "read");
eba15fba
BZ
1178 ide_dma_off(drive);
1179 }
1da177e4
LT
1180 }
1181
1182 if (cdrom_decode_status(drive, 0, &stat))
1183 return ide_stopped;
1184
1185 /*
1186 * using dma, transfer is complete now
1187 */
1188 if (dma) {
eba15fba 1189 if (dma_error)
1da177e4 1190 return ide_error(drive, "dma error", stat);
ff1bfbc1 1191 goto end_request;
1da177e4
LT
1192 }
1193
1194 /*
1195 * ok we fall to pio :/
1196 */
1197 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
1198 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1199 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1200
1201 len = lowcyl + (256 * highcyl);
1202 thislen = rq->data_len;
1203 if (thislen > len)
1204 thislen = len;
1205
1206 /*
1207 * If DRQ is clear, the command has completed.
1208 */
aaa04c28 1209 if ((stat & DRQ_STAT) == 0) {
ff1bfbc1
BZ
1210 if (!blk_pc_request(rq)) {
1211 ide_cd_request_sense_fixup(rq);
1212 /* Complain if we still have data left to transfer. */
1213 uptodate = rq->data_len ? 0 : 1;
1214 }
1215 goto end_request;
aaa04c28 1216 }
1da177e4
LT
1217
1218 /*
1219 * check which way to transfer data
1220 */
ff1bfbc1 1221 if (blk_pc_request(rq) && rq_data_dir(rq) == WRITE) {
1da177e4
LT
1222 /*
1223 * write to drive
1224 */
1225 if (cdrom_write_check_ireason(drive, len, ireason))
1226 return ide_stopped;
ff1bfbc1 1227 } else if (blk_pc_request(rq)) {
1da177e4
LT
1228 /*
1229 * read from drive
1230 */
1231 if (cdrom_read_check_ireason(drive, len, ireason))
1232 return ide_stopped;
ff1bfbc1 1233 }
1da177e4 1234
ff1bfbc1
BZ
1235 if (ireason == 0) {
1236 write = 1;
1237 xferfunc = HWIF(drive)->atapi_output_bytes;
1238 } else if (ireason == 2 || (ireason == 1 && blk_pc_request(rq))) {
1239 write = 0;
1da177e4 1240 xferfunc = HWIF(drive)->atapi_input_bytes;
ff1bfbc1
BZ
1241 } else {
1242 printk(KERN_ERR "%s: %s: The drive "
1243 "appears confused (ireason = 0x%02x). "
1244 "Trying to recover by ending request.\n",
1245 drive->name, __FUNCTION__, ireason);
1246 goto end_request;
1da177e4
LT
1247 }
1248
1249 /*
1250 * transfer data
1251 */
1252 while (thislen > 0) {
1253 int blen = blen = rq->data_len;
1254 char *ptr = rq->data;
1255
1256 /*
1257 * bio backed?
1258 */
1259 if (rq->bio) {
1260 ptr = bio_data(rq->bio);
1261 blen = bio_iovec(rq->bio)->bv_len;
1262 }
1263
1264 if (!ptr) {
03f537d5
BZ
1265 printk(KERN_ERR "%s: confused, missing data\n",
1266 drive->name);
1267 blk_dump_rq_flags(rq, rq_data_dir(rq)
1268 ? "cdrom_newpc_intr, write"
1269 : "cdrom_newpc_intr, read");
1da177e4
LT
1270 break;
1271 }
1272
1273 if (blen > thislen)
1274 blen = thislen;
1275
1276 xferfunc(drive, ptr, blen);
1277
1278 thislen -= blen;
1279 len -= blen;
1280 rq->data_len -= blen;
1281
1282 if (rq->bio)
aaa04c28
KU
1283 /*
1284 * The request can't be completed until DRQ is cleared.
1285 * So complete the data, but don't complete the request
1286 * using the dummy function for the callback feature
1287 * of blk_end_request_callback().
1288 */
1289 blk_end_request_callback(rq, 0, blen,
1290 cdrom_newpc_intr_dummy_cb);
1da177e4
LT
1291 else
1292 rq->data += blen;
1293 }
1294
ff1bfbc1
BZ
1295 if (write && blk_sense_request(rq))
1296 rq->sense_len += thislen;
1297
1da177e4
LT
1298 /*
1299 * pad, if necessary
1300 */
5a5222d9
BZ
1301 if (len > 0)
1302 ide_cd_pad_transfer(drive, xferfunc, len);
1da177e4 1303
ff1bfbc1
BZ
1304 if (blk_pc_request(rq)) {
1305 timeout = rq->timeout;
1306 expiry = NULL;
1307 } else {
1308 timeout = ATAPI_WAIT_PC;
1309 expiry = cdrom_timer_expiry;
1310 }
1311
1312 ide_set_handler(drive, cdrom_newpc_intr, timeout, expiry);
1da177e4 1313 return ide_started;
ff1bfbc1
BZ
1314
1315end_request:
1316 if (blk_pc_request(rq)) {
1317 unsigned long flags;
1318
1319 spin_lock_irqsave(&ide_lock, flags);
1320 if (__blk_end_request(rq, 0, rq->data_len))
1321 BUG();
1322 HWGROUP(drive)->rq = NULL;
1323 spin_unlock_irqrestore(&ide_lock, flags);
1324 } else {
1325 if (!uptodate)
1326 rq->cmd_flags |= REQ_FAILED;
1327 cdrom_end_request(drive, uptodate);
1328 }
1329 return ide_stopped;
1da177e4
LT
1330}
1331
1332static ide_startstop_t cdrom_write_intr(ide_drive_t *drive)
1333{
1334 int stat, ireason, len, sectors_to_transfer, uptodate;
1335 struct cdrom_info *info = drive->driver_data;
1336 int dma_error = 0, dma = info->dma;
1337 u8 lowcyl = 0, highcyl = 0;
1338
1339 struct request *rq = HWGROUP(drive)->rq;
1340
1341 /* Check for errors. */
1342 if (dma) {
1343 info->dma = 0;
b481b238
BZ
1344 dma_error = HWIF(drive)->ide_dma_end(drive);
1345 if (dma_error) {
1346 printk(KERN_ERR "%s: DMA write error\n", drive->name);
7469aaf6 1347 ide_dma_off(drive);
1da177e4
LT
1348 }
1349 }
1350
1351 if (cdrom_decode_status(drive, 0, &stat))
1352 return ide_stopped;
1353
1354 /*
1355 * using dma, transfer is complete now
1356 */
1357 if (dma) {
1358 if (dma_error)
1359 return ide_error(drive, "dma error", stat);
1360
1361 ide_end_request(drive, 1, rq->nr_sectors);
1362 return ide_stopped;
1363 }
1364
1365 /* Read the interrupt reason and the transfer length. */
31a71191 1366 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
1da177e4
LT
1367 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1368 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1369
1370 len = lowcyl + (256 * highcyl);
1371
1372 /* If DRQ is clear, the command has completed. */
1373 if ((stat & DRQ_STAT) == 0) {
1374 /* If we're not done writing, complain.
1375 * Otherwise, complete the command normally.
1376 */
1377 uptodate = 1;
1378 if (rq->current_nr_sectors > 0) {
b481b238
BZ
1379 printk(KERN_ERR "%s: %s: data underrun (%d blocks)\n",
1380 drive->name, __FUNCTION__,
1381 rq->current_nr_sectors);
1da177e4
LT
1382 uptodate = 0;
1383 }
1384 cdrom_end_request(drive, uptodate);
1385 return ide_stopped;
1386 }
1387
1388 /* Check that the drive is expecting to do the same thing we are. */
1389 if (cdrom_write_check_ireason(drive, len, ireason))
1390 return ide_stopped;
1391
1392 sectors_to_transfer = len / SECTOR_SIZE;
1393
1394 /*
1395 * now loop and write out the data
1396 */
1397 while (sectors_to_transfer > 0) {
1398 int this_transfer;
1399
1400 if (!rq->current_nr_sectors) {
b481b238
BZ
1401 printk(KERN_ERR "%s: %s: confused, missing data\n",
1402 drive->name, __FUNCTION__);
1da177e4
LT
1403 break;
1404 }
1405
1406 /*
1407 * Figure out how many sectors we can transfer
1408 */
1409 this_transfer = min_t(int, sectors_to_transfer, rq->current_nr_sectors);
1410
1411 while (this_transfer > 0) {
1412 HWIF(drive)->atapi_output_bytes(drive, rq->buffer, SECTOR_SIZE);
1413 rq->buffer += SECTOR_SIZE;
1414 --rq->nr_sectors;
1415 --rq->current_nr_sectors;
1416 ++rq->sector;
1417 --this_transfer;
1418 --sectors_to_transfer;
1419 }
1420
1421 /*
1422 * current buffer complete, move on
1423 */
1424 if (rq->current_nr_sectors == 0 && rq->nr_sectors)
1425 cdrom_end_request(drive, 1);
1426 }
1427
1428 /* re-arm handler */
1429 ide_set_handler(drive, &cdrom_write_intr, ATAPI_WAIT_PC, NULL);
1430 return ide_started;
1431}
1432
1433static ide_startstop_t cdrom_start_write_cont(ide_drive_t *drive)
1434{
1435 struct request *rq = HWGROUP(drive)->rq;
1436
1437#if 0 /* the immediate bit */
1438 rq->cmd[1] = 1 << 3;
1439#endif
1440 rq->timeout = ATAPI_WAIT_PC;
1441
1442 return cdrom_transfer_packet_command(drive, rq, cdrom_write_intr);
1443}
1444
1445static ide_startstop_t cdrom_start_write(ide_drive_t *drive, struct request *rq)
1446{
1447 struct cdrom_info *info = drive->driver_data;
1448 struct gendisk *g = info->disk;
1449 unsigned short sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1450
1451 /*
1452 * writes *must* be hardware frame aligned
1453 */
1454 if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
1455 (rq->sector & (sectors_per_frame - 1))) {
1456 cdrom_end_request(drive, 0);
1457 return ide_stopped;
1458 }
1459
1460 /*
1461 * disk has become write protected
1462 */
1463 if (g->policy) {
1464 cdrom_end_request(drive, 0);
1465 return ide_stopped;
1466 }
1467
1da177e4
LT
1468 info->nsectors_buffered = 0;
1469
1470 /* use dma, if possible. we don't need to check more, since we
1471 * know that the transfer is always (at least!) frame aligned */
1472 info->dma = drive->using_dma ? 1 : 0;
1da177e4
LT
1473
1474 info->devinfo.media_written = 1;
1475
1476 /* Start sending the write request to the drive. */
1477 return cdrom_start_packet_command(drive, 32768, cdrom_start_write_cont);
1478}
1479
1480static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive)
1481{
1482 struct request *rq = HWGROUP(drive)->rq;
1483
1484 if (!rq->timeout)
1485 rq->timeout = ATAPI_WAIT_PC;
1486
1487 return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
1488}
1489
1490static ide_startstop_t cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
1491{
1492 struct cdrom_info *info = drive->driver_data;
1493
c9f56a80
BZ
1494 if (blk_pc_request(rq))
1495 rq->cmd_flags |= REQ_QUIET;
1496 else
1497 rq->cmd_flags &= ~REQ_FAILED;
1da177e4
LT
1498
1499 info->dma = 0;
1da177e4
LT
1500
1501 /*
1502 * sg request
1503 */
1504 if (rq->bio) {
1505 int mask = drive->queue->dma_alignment;
1506 unsigned long addr = (unsigned long) page_address(bio_page(rq->bio));
1507
1da177e4
LT
1508 info->dma = drive->using_dma;
1509
1510 /*
1511 * check if dma is safe
5d9e4ea5
LT
1512 *
1513 * NOTE! The "len" and "addr" checks should possibly have
1514 * separate masks.
1da177e4 1515 */
4e7c6816 1516 if ((rq->data_len & 15) || (addr & mask))
1da177e4
LT
1517 info->dma = 0;
1518 }
1519
1520 /* Start sending the command to the drive. */
1521 return cdrom_start_packet_command(drive, rq->data_len, cdrom_do_newpc_cont);
1522}
1523
1524/****************************************************************************
1525 * cdrom driver request routine.
1526 */
1527static ide_startstop_t
1528ide_do_rw_cdrom (ide_drive_t *drive, struct request *rq, sector_t block)
1529{
1530 ide_startstop_t action;
1531 struct cdrom_info *info = drive->driver_data;
1532
1533 if (blk_fs_request(rq)) {
2bc4cf2d 1534 if (info->cd_flags & IDE_CD_FLAG_SEEKING) {
1da177e4
LT
1535 unsigned long elapsed = jiffies - info->start_seek;
1536 int stat = HWIF(drive)->INB(IDE_STATUS_REG);
1537
1538 if ((stat & SEEK_STAT) != SEEK_STAT) {
1539 if (elapsed < IDECD_SEEK_TIMEOUT) {
1540 ide_stall_queue(drive, IDECD_SEEK_TIMER);
1541 return ide_stopped;
1542 }
1543 printk (KERN_ERR "%s: DSC timeout\n", drive->name);
1544 }
2bc4cf2d 1545 info->cd_flags &= ~IDE_CD_FLAG_SEEKING;
1da177e4
LT
1546 }
1547 if ((rq_data_dir(rq) == READ) && IDE_LARGE_SEEK(info->last_block, block, IDECD_SEEK_THRESHOLD) && drive->dsc_overlap) {
1548 action = cdrom_start_seek(drive, block);
1549 } else {
1550 if (rq_data_dir(rq) == READ)
1551 action = cdrom_start_read(drive, block);
1552 else
1553 action = cdrom_start_write(drive, rq);
1554 }
1555 info->last_block = block;
1556 return action;
c9f56a80 1557 } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
cea2885a 1558 rq->cmd_type == REQ_TYPE_ATA_PC) {
1da177e4 1559 return cdrom_do_block_pc(drive, rq);
4aff5e23 1560 } else if (blk_special_request(rq)) {
1da177e4
LT
1561 /*
1562 * right now this can only be a reset...
1563 */
1564 cdrom_end_request(drive, 1);
1565 return ide_stopped;
1566 }
1567
1568 blk_dump_rq_flags(rq, "ide-cd bad flags");
1569 cdrom_end_request(drive, 0);
1570 return ide_stopped;
1571}
1572
1573
1574
1575/****************************************************************************
1576 * Ioctl handling.
1577 *
1578 * Routines which queue packet commands take as a final argument a pointer
1579 * to a request_sense struct. If execution of the command results
1580 * in an error with a CHECK CONDITION status, this structure will be filled
1581 * with the results of the subsequent request sense command. The pointer
1582 * can also be NULL, in which case no sense information is returned.
1583 */
1584
1da177e4
LT
1585static
1586void msf_from_bcd (struct atapi_msf *msf)
1587{
9a6dc668
BZ
1588 msf->minute = BCD2BIN(msf->minute);
1589 msf->second = BCD2BIN(msf->second);
1590 msf->frame = BCD2BIN(msf->frame);
1da177e4
LT
1591}
1592
1da177e4
LT
1593static int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
1594{
1595 struct request req;
1596 struct cdrom_info *info = drive->driver_data;
1597 struct cdrom_device_info *cdi = &info->devinfo;
1598
139c829d 1599 ide_cd_init_rq(drive, &req);
1da177e4
LT
1600
1601 req.sense = sense;
1602 req.cmd[0] = GPCMD_TEST_UNIT_READY;
4aff5e23 1603 req.cmd_flags |= REQ_QUIET;
1da177e4 1604
cdf6000d
BZ
1605 /*
1606 * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to
1607 * switch CDs instead of supporting the LOAD_UNLOAD opcode.
1608 */
1da177e4 1609 req.cmd[7] = cdi->sanyo_slot % 3;
1da177e4 1610
139c829d 1611 return ide_cd_queue_pc(drive, &req);
1da177e4
LT
1612}
1613
1da177e4 1614/* Lock the door if LOCKFLAG is nonzero; unlock it otherwise. */
17802998
BZ
1615int ide_cd_lockdoor(ide_drive_t *drive, int lockflag,
1616 struct request_sense *sense)
1da177e4 1617{
4fe67178 1618 struct cdrom_info *cd = drive->driver_data;
1da177e4
LT
1619 struct request_sense my_sense;
1620 struct request req;
1621 int stat;
1622
1623 if (sense == NULL)
1624 sense = &my_sense;
1625
1626 /* If the drive cannot lock the door, just pretend. */
2bc4cf2d 1627 if (cd->cd_flags & IDE_CD_FLAG_NO_DOORLOCK) {
1da177e4
LT
1628 stat = 0;
1629 } else {
139c829d 1630 ide_cd_init_rq(drive, &req);
1da177e4
LT
1631 req.sense = sense;
1632 req.cmd[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
1633 req.cmd[4] = lockflag ? 1 : 0;
139c829d 1634 stat = ide_cd_queue_pc(drive, &req);
1da177e4
LT
1635 }
1636
1637 /* If we got an illegal field error, the drive
1638 probably cannot lock the door. */
1639 if (stat != 0 &&
1640 sense->sense_key == ILLEGAL_REQUEST &&
1641 (sense->asc == 0x24 || sense->asc == 0x20)) {
1642 printk (KERN_ERR "%s: door locking not supported\n",
1643 drive->name);
2bc4cf2d 1644 cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK;
1da177e4
LT
1645 stat = 0;
1646 }
1647
1648 /* no medium, that's alright. */
1649 if (stat != 0 && sense->sense_key == NOT_READY && sense->asc == 0x3a)
1650 stat = 0;
1651
2bc4cf2d
BZ
1652 if (stat == 0) {
1653 if (lockflag)
1654 cd->cd_flags |= IDE_CD_FLAG_DOOR_LOCKED;
1655 else
1656 cd->cd_flags &= ~IDE_CD_FLAG_DOOR_LOCKED;
1657 }
1da177e4
LT
1658
1659 return stat;
1660}
1661
1662
1663/* Eject the disk if EJECTFLAG is 0.
1664 If EJECTFLAG is 1, try to reload the disk. */
1665static int cdrom_eject(ide_drive_t *drive, int ejectflag,
1666 struct request_sense *sense)
1667{
3f1b86d8
BZ
1668 struct cdrom_info *cd = drive->driver_data;
1669 struct cdrom_device_info *cdi = &cd->devinfo;
1da177e4
LT
1670 struct request req;
1671 char loej = 0x02;
1672
2bc4cf2d 1673 if ((cd->cd_flags & IDE_CD_FLAG_NO_EJECT) && !ejectflag)
1da177e4 1674 return -EDRIVE_CANT_DO_THIS;
4fe67178 1675
1da177e4 1676 /* reload fails on some drives, if the tray is locked */
2bc4cf2d 1677 if ((cd->cd_flags & IDE_CD_FLAG_DOOR_LOCKED) && ejectflag)
1da177e4
LT
1678 return 0;
1679
139c829d 1680 ide_cd_init_rq(drive, &req);
1da177e4
LT
1681
1682 /* only tell drive to close tray if open, if it can do that */
3f1b86d8 1683 if (ejectflag && (cdi->mask & CDC_CLOSE_TRAY))
1da177e4
LT
1684 loej = 0;
1685
1686 req.sense = sense;
1687 req.cmd[0] = GPCMD_START_STOP_UNIT;
1688 req.cmd[4] = loej | (ejectflag != 0);
139c829d
BZ
1689
1690 return ide_cd_queue_pc(drive, &req);
1da177e4
LT
1691}
1692
1693static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
1694 unsigned long *sectors_per_frame,
1695 struct request_sense *sense)
1696{
1697 struct {
1698 __u32 lba;
1699 __u32 blocklen;
1700 } capbuf;
1701
1702 int stat;
1703 struct request req;
1704
139c829d 1705 ide_cd_init_rq(drive, &req);
1da177e4
LT
1706
1707 req.sense = sense;
1708 req.cmd[0] = GPCMD_READ_CDVD_CAPACITY;
1709 req.data = (char *)&capbuf;
1710 req.data_len = sizeof(capbuf);
4aff5e23 1711 req.cmd_flags |= REQ_QUIET;
1da177e4 1712
139c829d 1713 stat = ide_cd_queue_pc(drive, &req);
1da177e4
LT
1714 if (stat == 0) {
1715 *capacity = 1 + be32_to_cpu(capbuf.lba);
1716 *sectors_per_frame =
1717 be32_to_cpu(capbuf.blocklen) >> SECTOR_BITS;
1718 }
1719
1720 return stat;
1721}
1722
1723static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
1724 int format, char *buf, int buflen,
1725 struct request_sense *sense)
1726{
1727 struct request req;
1728
139c829d 1729 ide_cd_init_rq(drive, &req);
1da177e4
LT
1730
1731 req.sense = sense;
1732 req.data = buf;
1733 req.data_len = buflen;
4aff5e23 1734 req.cmd_flags |= REQ_QUIET;
1da177e4
LT
1735 req.cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1736 req.cmd[6] = trackno;
1737 req.cmd[7] = (buflen >> 8);
1738 req.cmd[8] = (buflen & 0xff);
1739 req.cmd[9] = (format << 6);
1740
1741 if (msf_flag)
1742 req.cmd[1] = 2;
1743
139c829d 1744 return ide_cd_queue_pc(drive, &req);
1da177e4
LT
1745}
1746
1da177e4 1747/* Try to read the entire TOC for the disk into our internal buffer. */
17802998 1748int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
1da177e4
LT
1749{
1750 int stat, ntracks, i;
1751 struct cdrom_info *info = drive->driver_data;
1752 struct cdrom_device_info *cdi = &info->devinfo;
1753 struct atapi_toc *toc = info->toc;
1754 struct {
1755 struct atapi_toc_header hdr;
1756 struct atapi_toc_entry ent;
1757 } ms_tmp;
1758 long last_written;
1759 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
1760
1761 if (toc == NULL) {
1762 /* Try to allocate space. */
2a91f3e5 1763 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
1da177e4
LT
1764 if (toc == NULL) {
1765 printk (KERN_ERR "%s: No cdrom TOC buffer!\n", drive->name);
1766 return -ENOMEM;
1767 }
2a91f3e5 1768 info->toc = toc;
1da177e4
LT
1769 }
1770
1771 /* Check to see if the existing data is still valid.
1772 If it is, just return. */
1773 (void) cdrom_check_status(drive, sense);
1774
2bc4cf2d 1775 if (info->cd_flags & IDE_CD_FLAG_TOC_VALID)
1da177e4
LT
1776 return 0;
1777
1778 /* Try to get the total cdrom capacity and sector size. */
1779 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
1780 sense);
1781 if (stat)
1782 toc->capacity = 0x1fffff;
1783
1784 set_capacity(info->disk, toc->capacity * sectors_per_frame);
dbe217af
AC
1785 /* Save a private copy of te TOC capacity for error handling */
1786 drive->probed_capacity = toc->capacity * sectors_per_frame;
1787
1da177e4
LT
1788 blk_queue_hardsect_size(drive->queue,
1789 sectors_per_frame << SECTOR_BITS);
1790
1791 /* First read just the header, so we know how long the TOC is. */
1792 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1793 sizeof(struct atapi_toc_header), sense);
2a91f3e5
JJ
1794 if (stat)
1795 return stat;
1da177e4 1796
2bc4cf2d 1797 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
9a6dc668
BZ
1798 toc->hdr.first_track = BCD2BIN(toc->hdr.first_track);
1799 toc->hdr.last_track = BCD2BIN(toc->hdr.last_track);
1da177e4 1800 }
1da177e4
LT
1801
1802 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1803 if (ntracks <= 0)
1804 return -EIO;
1805 if (ntracks > MAX_TRACKS)
1806 ntracks = MAX_TRACKS;
1807
1808 /* Now read the whole schmeer. */
1809 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1810 (char *)&toc->hdr,
1811 sizeof(struct atapi_toc_header) +
1812 (ntracks + 1) *
1813 sizeof(struct atapi_toc_entry), sense);
1814
1815 if (stat && toc->hdr.first_track > 1) {
1816 /* Cds with CDI tracks only don't have any TOC entries,
1817 despite of this the returned values are
1818 first_track == last_track = number of CDI tracks + 1,
1819 so that this case is indistinguishable from the same
1820 layout plus an additional audio track.
1821 If we get an error for the regular case, we assume
1822 a CDI without additional audio tracks. In this case
1823 the readable TOC is empty (CDI tracks are not included)
96de0e25 1824 and only holds the Leadout entry. Heiko Eißfeldt */
1da177e4
LT
1825 ntracks = 0;
1826 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1827 (char *)&toc->hdr,
1828 sizeof(struct atapi_toc_header) +
1829 (ntracks + 1) *
1830 sizeof(struct atapi_toc_entry),
1831 sense);
cdf6000d 1832 if (stat)
1da177e4 1833 return stat;
cdf6000d 1834
2bc4cf2d 1835 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
9a6dc668
BZ
1836 toc->hdr.first_track = (u8)BIN2BCD(CDROM_LEADOUT);
1837 toc->hdr.last_track = (u8)BIN2BCD(CDROM_LEADOUT);
cdf6000d 1838 } else {
1da177e4
LT
1839 toc->hdr.first_track = CDROM_LEADOUT;
1840 toc->hdr.last_track = CDROM_LEADOUT;
1841 }
1842 }
1843
1844 if (stat)
1845 return stat;
1846
1847 toc->hdr.toc_length = ntohs (toc->hdr.toc_length);
1848
2bc4cf2d 1849 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
9a6dc668
BZ
1850 toc->hdr.first_track = BCD2BIN(toc->hdr.first_track);
1851 toc->hdr.last_track = BCD2BIN(toc->hdr.last_track);
1da177e4 1852 }
1da177e4 1853
cdf6000d 1854 for (i = 0; i <= ntracks; i++) {
2bc4cf2d
BZ
1855 if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) {
1856 if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD)
9a6dc668 1857 toc->ent[i].track = BCD2BIN(toc->ent[i].track);
1da177e4
LT
1858 msf_from_bcd(&toc->ent[i].addr.msf);
1859 }
1da177e4
LT
1860 toc->ent[i].addr.lba = msf_to_lba (toc->ent[i].addr.msf.minute,
1861 toc->ent[i].addr.msf.second,
1862 toc->ent[i].addr.msf.frame);
1863 }
1864
1865 /* Read the multisession information. */
1866 if (toc->hdr.first_track != CDROM_LEADOUT) {
1867 /* Read the multisession information. */
1868 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1869 sizeof(ms_tmp), sense);
2a91f3e5
JJ
1870 if (stat)
1871 return stat;
1da177e4
LT
1872
1873 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1874 } else {
1875 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track = CDROM_LEADOUT;
1876 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1877 }
1878
2bc4cf2d 1879 if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) {
1da177e4
LT
1880 /* Re-read multisession information using MSF format */
1881 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1882 sizeof(ms_tmp), sense);
1883 if (stat)
1884 return stat;
1885
1886 msf_from_bcd (&ms_tmp.ent.addr.msf);
1887 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
1888 ms_tmp.ent.addr.msf.second,
1889 ms_tmp.ent.addr.msf.frame);
1890 }
1da177e4
LT
1891
1892 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1893
1894 /* Now try to get the total cdrom capacity. */
1895 stat = cdrom_get_last_written(cdi, &last_written);
1896 if (!stat && (last_written > toc->capacity)) {
1897 toc->capacity = last_written;
1898 set_capacity(info->disk, toc->capacity * sectors_per_frame);
dbe217af 1899 drive->probed_capacity = toc->capacity * sectors_per_frame;
1da177e4
LT
1900 }
1901
1902 /* Remember that we've read this stuff. */
2bc4cf2d 1903 info->cd_flags |= IDE_CD_FLAG_TOC_VALID;
1da177e4
LT
1904
1905 return 0;
1906}
1907
1da177e4
LT
1908/* the generic packet interface to cdrom.c */
1909static int ide_cdrom_packet(struct cdrom_device_info *cdi,
1910 struct packet_command *cgc)
1911{
1912 struct request req;
2a91f3e5 1913 ide_drive_t *drive = cdi->handle;
1da177e4
LT
1914
1915 if (cgc->timeout <= 0)
1916 cgc->timeout = ATAPI_WAIT_PC;
1917
1918 /* here we queue the commands from the uniform CD-ROM
1919 layer. the packet must be complete, as we do not
1920 touch it at all. */
139c829d 1921 ide_cd_init_rq(drive, &req);
1da177e4
LT
1922 memcpy(req.cmd, cgc->cmd, CDROM_PACKET_SIZE);
1923 if (cgc->sense)
1924 memset(cgc->sense, 0, sizeof(struct request_sense));
1925 req.data = cgc->buffer;
1926 req.data_len = cgc->buflen;
1927 req.timeout = cgc->timeout;
1928
1929 if (cgc->quiet)
4aff5e23 1930 req.cmd_flags |= REQ_QUIET;
1da177e4
LT
1931
1932 req.sense = cgc->sense;
139c829d 1933 cgc->stat = ide_cd_queue_pc(drive, &req);
1da177e4
LT
1934 if (!cgc->stat)
1935 cgc->buflen -= req.data_len;
1936 return cgc->stat;
1937}
1938
1da177e4
LT
1939static
1940int ide_cdrom_tray_move (struct cdrom_device_info *cdi, int position)
1941{
2a91f3e5 1942 ide_drive_t *drive = cdi->handle;
1da177e4
LT
1943 struct request_sense sense;
1944
1945 if (position) {
139c829d
BZ
1946 int stat = ide_cd_lockdoor(drive, 0, &sense);
1947
2a91f3e5
JJ
1948 if (stat)
1949 return stat;
1da177e4
LT
1950 }
1951
1952 return cdrom_eject(drive, !position, &sense);
1953}
1954
17802998 1955int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
9235e68b
EP
1956{
1957 struct cdrom_info *info = drive->driver_data;
1958 struct cdrom_device_info *cdi = &info->devinfo;
1959 struct packet_command cgc;
455d80a9 1960 int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
9235e68b 1961
e59724c7 1962 if ((info->cd_flags & IDE_CD_FLAG_FULL_CAPS_PAGE) == 0)
455d80a9 1963 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
9235e68b 1964
455d80a9 1965 init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
9235e68b
EP
1966 do { /* we seem to get stat=0x01,err=0x00 the first time (??) */
1967 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1968 if (!stat)
1969 break;
1970 } while (--attempts);
1971 return stat;
1972}
1973
17802998 1974void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
9235e68b 1975{
4fe67178 1976 struct cdrom_info *cd = drive->driver_data;
481c8c64
BZ
1977 u16 curspeed, maxspeed;
1978
455d80a9
BZ
1979 curspeed = *(u16 *)&buf[8 + 14];
1980 maxspeed = *(u16 *)&buf[8 + 8];
1981
e59724c7 1982 if (cd->cd_flags & IDE_CD_FLAG_LE_SPEED_FIELDS) {
455d80a9
BZ
1983 curspeed = le16_to_cpu(curspeed);
1984 maxspeed = le16_to_cpu(maxspeed);
9235e68b 1985 } else {
455d80a9
BZ
1986 curspeed = be16_to_cpu(curspeed);
1987 maxspeed = be16_to_cpu(maxspeed);
9235e68b 1988 }
481c8c64 1989
2bc4cf2d
BZ
1990 cd->current_speed = (curspeed + (176/2)) / 176;
1991 cd->max_speed = (maxspeed + (176/2)) / 176;
9235e68b
EP
1992}
1993
1da177e4
LT
1994/*
1995 * add logic to try GET_EVENT command first to check for media and tray
1996 * status. this should be supported by newer cd-r/w and all DVD etc
1997 * drives
1998 */
1999static
2000int ide_cdrom_drive_status (struct cdrom_device_info *cdi, int slot_nr)
2001{
2a91f3e5 2002 ide_drive_t *drive = cdi->handle;
1da177e4
LT
2003 struct media_event_desc med;
2004 struct request_sense sense;
2005 int stat;
2006
2007 if (slot_nr != CDSL_CURRENT)
2008 return -EINVAL;
2009
2010 stat = cdrom_check_status(drive, &sense);
2011 if (!stat || sense.sense_key == UNIT_ATTENTION)
2012 return CDS_DISC_OK;
2013
2014 if (!cdrom_get_media_event(cdi, &med)) {
2015 if (med.media_present)
2016 return CDS_DISC_OK;
2017 else if (med.door_open)
2018 return CDS_TRAY_OPEN;
2019 else
2020 return CDS_NO_DISC;
2021 }
2022
2023 if (sense.sense_key == NOT_READY && sense.asc == 0x04 && sense.ascq == 0x04)
2024 return CDS_DISC_OK;
2025
2026 /*
2027 * If not using Mt Fuji extended media tray reports,
2028 * just return TRAY_OPEN since ATAPI doesn't provide
2029 * any other way to detect this...
2030 */
2031 if (sense.sense_key == NOT_READY) {
dbe217af
AC
2032 if (sense.asc == 0x3a && sense.ascq == 1)
2033 return CDS_NO_DISC;
2034 else
2035 return CDS_TRAY_OPEN;
1da177e4 2036 }
1da177e4
LT
2037 return CDS_DRIVE_NOT_READY;
2038}
2039
1da177e4
LT
2040/****************************************************************************
2041 * Other driver requests (open, close, check media change).
2042 */
2043
2044static
2045int ide_cdrom_check_media_change_real (struct cdrom_device_info *cdi,
2046 int slot_nr)
2047{
2a91f3e5 2048 ide_drive_t *drive = cdi->handle;
0ba11211 2049 struct cdrom_info *cd = drive->driver_data;
1da177e4 2050 int retval;
0ba11211 2051
1da177e4
LT
2052 if (slot_nr == CDSL_CURRENT) {
2053 (void) cdrom_check_status(drive, NULL);
2bc4cf2d
BZ
2054 retval = (cd->cd_flags & IDE_CD_FLAG_MEDIA_CHANGED) ? 1 : 0;
2055 cd->cd_flags &= ~IDE_CD_FLAG_MEDIA_CHANGED;
1da177e4
LT
2056 return retval;
2057 } else {
2058 return -EINVAL;
2059 }
2060}
2061
2062
2063static
2064int ide_cdrom_open_real (struct cdrom_device_info *cdi, int purpose)
2065{
2066 return 0;
2067}
2068
2069/*
2070 * Close down the device. Invalidate all cached blocks.
2071 */
2072
2073static
2074void ide_cdrom_release_real (struct cdrom_device_info *cdi)
2075{
2076 ide_drive_t *drive = cdi->handle;
0ba11211 2077 struct cdrom_info *cd = drive->driver_data;
1da177e4
LT
2078
2079 if (!cdi->use_count)
2bc4cf2d 2080 cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID;
1da177e4
LT
2081}
2082
20e7f7ef
BZ
2083#define IDE_CD_CAPABILITIES \
2084 (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
2085 CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
2086 CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
2087 CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
2088 CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
1da177e4 2089
1da177e4
LT
2090static struct cdrom_device_ops ide_cdrom_dops = {
2091 .open = ide_cdrom_open_real,
2092 .release = ide_cdrom_release_real,
2093 .drive_status = ide_cdrom_drive_status,
2094 .media_changed = ide_cdrom_check_media_change_real,
2095 .tray_move = ide_cdrom_tray_move,
2096 .lock_door = ide_cdrom_lock_door,
2097 .select_speed = ide_cdrom_select_speed,
2098 .get_last_session = ide_cdrom_get_last_session,
2099 .get_mcn = ide_cdrom_get_mcn,
2100 .reset = ide_cdrom_reset,
2101 .audio_ioctl = ide_cdrom_audio_ioctl,
20e7f7ef 2102 .capability = IDE_CD_CAPABILITIES,
1da177e4
LT
2103 .generic_packet = ide_cdrom_packet,
2104};
2105
2106static int ide_cdrom_register (ide_drive_t *drive, int nslots)
2107{
2108 struct cdrom_info *info = drive->driver_data;
2109 struct cdrom_device_info *devinfo = &info->devinfo;
2110
2111 devinfo->ops = &ide_cdrom_dops;
2bc4cf2d 2112 devinfo->speed = info->current_speed;
1da177e4 2113 devinfo->capacity = nslots;
2a91f3e5 2114 devinfo->handle = drive;
1da177e4 2115 strcpy(devinfo->name, drive->name);
1da177e4 2116
2bc4cf2d 2117 if (info->cd_flags & IDE_CD_FLAG_NO_SPEED_SELECT)
3cbd814e
BZ
2118 devinfo->mask |= CDC_SELECT_SPEED;
2119
1da177e4
LT
2120 devinfo->disk = info->disk;
2121 return register_cdrom(devinfo);
2122}
2123
1da177e4
LT
2124static
2125int ide_cdrom_probe_capabilities (ide_drive_t *drive)
2126{
4fe67178
BZ
2127 struct cdrom_info *cd = drive->driver_data;
2128 struct cdrom_device_info *cdi = &cd->devinfo;
455d80a9
BZ
2129 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
2130 mechtype_t mechtype;
1da177e4
LT
2131 int nslots = 1;
2132
3f1b86d8
BZ
2133 cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
2134 CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
2135 CDC_MO_DRIVE | CDC_RAM);
2136
1da177e4 2137 if (drive->media == ide_optical) {
3f1b86d8 2138 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
1da177e4
LT
2139 printk(KERN_ERR "%s: ATAPI magneto-optical drive\n", drive->name);
2140 return nslots;
2141 }
2142
e59724c7 2143 if (cd->cd_flags & IDE_CD_FLAG_PRE_ATAPI12) {
2bc4cf2d 2144 cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT;
3f1b86d8 2145 cdi->mask &= ~CDC_PLAY_AUDIO;
1da177e4
LT
2146 return nslots;
2147 }
2148
2149 /*
2150 * we have to cheat a little here. the packet will eventually
2151 * be queued with ide_cdrom_packet(), which extracts the
2152 * drive from cdi->handle. Since this device hasn't been
2153 * registered with the Uniform layer yet, it can't do this.
2154 * Same goes for cdi->ops.
2155 */
2a91f3e5 2156 cdi->handle = drive;
1da177e4
LT
2157 cdi->ops = &ide_cdrom_dops;
2158
455d80a9 2159 if (ide_cdrom_get_capabilities(drive, buf))
1da177e4
LT
2160 return 0;
2161
455d80a9 2162 if ((buf[8 + 6] & 0x01) == 0)
2bc4cf2d 2163 cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK;
455d80a9 2164 if (buf[8 + 6] & 0x08)
2bc4cf2d 2165 cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT;
455d80a9 2166 if (buf[8 + 3] & 0x01)
3f1b86d8 2167 cdi->mask &= ~CDC_CD_R;
455d80a9 2168 if (buf[8 + 3] & 0x02)
3f1b86d8 2169 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
455d80a9 2170 if (buf[8 + 2] & 0x38)
3f1b86d8 2171 cdi->mask &= ~CDC_DVD;
455d80a9 2172 if (buf[8 + 3] & 0x20)
3f1b86d8 2173 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
455d80a9 2174 if (buf[8 + 3] & 0x10)
3f1b86d8 2175 cdi->mask &= ~CDC_DVD_R;
e59724c7 2176 if ((buf[8 + 4] & 0x01) || (cd->cd_flags & IDE_CD_FLAG_PLAY_AUDIO_OK))
3f1b86d8 2177 cdi->mask &= ~CDC_PLAY_AUDIO;
455d80a9
BZ
2178
2179 mechtype = buf[8 + 6] >> 5;
2180 if (mechtype == mechtype_caddy || mechtype == mechtype_popup)
3f1b86d8 2181 cdi->mask |= CDC_CLOSE_TRAY;
1da177e4 2182
1da177e4 2183 if (cdi->sanyo_slot > 0) {
3f1b86d8 2184 cdi->mask &= ~CDC_SELECT_DISC;
1da177e4 2185 nslots = 3;
cdf6000d
BZ
2186 } else if (mechtype == mechtype_individual_changer ||
2187 mechtype == mechtype_cartridge_changer) {
2609d06d
BZ
2188 nslots = cdrom_number_of_slots(cdi);
2189 if (nslots > 1)
3f1b86d8 2190 cdi->mask &= ~CDC_SELECT_DISC;
1da177e4
LT
2191 }
2192
455d80a9 2193 ide_cdrom_update_speed(drive, buf);
4fe67178 2194
1da177e4 2195 printk(KERN_INFO "%s: ATAPI", drive->name);
4fe67178
BZ
2196
2197 /* don't print speed if the drive reported 0 */
2bc4cf2d
BZ
2198 if (cd->max_speed)
2199 printk(KERN_CONT " %dX", cd->max_speed);
4fe67178 2200
3f1b86d8 2201 printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
1da177e4 2202
3f1b86d8
BZ
2203 if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
2204 printk(KERN_CONT " DVD%s%s",
2205 (cdi->mask & CDC_DVD_R) ? "" : "-R",
2206 (cdi->mask & CDC_DVD_RAM) ? "" : "-RAM");
1da177e4 2207
3f1b86d8
BZ
2208 if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
2209 printk(KERN_CONT " CD%s%s",
2210 (cdi->mask & CDC_CD_R) ? "" : "-R",
2211 (cdi->mask & CDC_CD_RW) ? "" : "/RW");
1da177e4 2212
3f1b86d8
BZ
2213 if ((cdi->mask & CDC_SELECT_DISC) == 0)
2214 printk(KERN_CONT " changer w/%d slots", nslots);
2215 else
2216 printk(KERN_CONT " drive");
1da177e4 2217
455d80a9 2218 printk(KERN_CONT ", %dkB Cache\n", be16_to_cpu(*(u16 *)&buf[8 + 12]));
1da177e4
LT
2219
2220 return nslots;
2221}
2222
7662d046 2223#ifdef CONFIG_IDE_PROC_FS
1da177e4
LT
2224static void ide_cdrom_add_settings(ide_drive_t *drive)
2225{
1497943e 2226 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->dsc_overlap, NULL);
1da177e4 2227}
7662d046
BZ
2228#else
2229static inline void ide_cdrom_add_settings(ide_drive_t *drive) { ; }
2230#endif
1da177e4
LT
2231
2232/*
2233 * standard prep_rq_fn that builds 10 byte cmds
2234 */
165125e1 2235static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
1da177e4
LT
2236{
2237 int hard_sect = queue_hardsect_size(q);
2238 long block = (long)rq->hard_sector / (hard_sect >> 9);
2239 unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
2240
2241 memset(rq->cmd, 0, sizeof(rq->cmd));
2242
2243 if (rq_data_dir(rq) == READ)
2244 rq->cmd[0] = GPCMD_READ_10;
2245 else
2246 rq->cmd[0] = GPCMD_WRITE_10;
2247
2248 /*
2249 * fill in lba
2250 */
2251 rq->cmd[2] = (block >> 24) & 0xff;
2252 rq->cmd[3] = (block >> 16) & 0xff;
2253 rq->cmd[4] = (block >> 8) & 0xff;
2254 rq->cmd[5] = block & 0xff;
2255
2256 /*
2257 * and transfer length
2258 */
2259 rq->cmd[7] = (blocks >> 8) & 0xff;
2260 rq->cmd[8] = blocks & 0xff;
2261 rq->cmd_len = 10;
2262 return BLKPREP_OK;
2263}
2264
2265/*
2266 * Most of the SCSI commands are supported directly by ATAPI devices.
2267 * This transform handles the few exceptions.
2268 */
2269static int ide_cdrom_prep_pc(struct request *rq)
2270{
2271 u8 *c = rq->cmd;
2272
2273 /*
2274 * Transform 6-byte read/write commands to the 10-byte version
2275 */
2276 if (c[0] == READ_6 || c[0] == WRITE_6) {
2277 c[8] = c[4];
2278 c[5] = c[3];
2279 c[4] = c[2];
2280 c[3] = c[1] & 0x1f;
2281 c[2] = 0;
2282 c[1] &= 0xe0;
2283 c[0] += (READ_10 - READ_6);
2284 rq->cmd_len = 10;
2285 return BLKPREP_OK;
2286 }
2287
2288 /*
2289 * it's silly to pretend we understand 6-byte sense commands, just
2290 * reject with ILLEGAL_REQUEST and the caller should take the
2291 * appropriate action
2292 */
2293 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
2294 rq->errors = ILLEGAL_REQUEST;
2295 return BLKPREP_KILL;
2296 }
2297
2298 return BLKPREP_OK;
2299}
2300
165125e1 2301static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
1da177e4 2302{
4aff5e23 2303 if (blk_fs_request(rq))
1da177e4 2304 return ide_cdrom_prep_fs(q, rq);
4aff5e23 2305 else if (blk_pc_request(rq))
1da177e4
LT
2306 return ide_cdrom_prep_pc(rq);
2307
2308 return 0;
2309}
2310
e59724c7
BZ
2311struct cd_list_entry {
2312 const char *id_model;
2313 const char *id_firmware;
2314 unsigned int cd_flags;
2315};
2316
2317static const struct cd_list_entry ide_cd_quirks_list[] = {
2318 /* Limit transfer size per interrupt. */
2319 { "SAMSUNG CD-ROM SCR-2430", NULL, IDE_CD_FLAG_LIMIT_NFRAMES },
2320 { "SAMSUNG CD-ROM SCR-2432", NULL, IDE_CD_FLAG_LIMIT_NFRAMES },
2321 /* SCR-3231 doesn't support the SET_CD_SPEED command. */
2322 { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_CD_FLAG_NO_SPEED_SELECT },
2323 /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
2324 { "NEC CD-ROM DRIVE:260", "1.01", IDE_CD_FLAG_TOCADDR_AS_BCD |
2325 IDE_CD_FLAG_PRE_ATAPI12, },
2326 /* Vertos 300, some versions of this drive like to talk BCD. */
2327 { "V003S0DS", NULL, IDE_CD_FLAG_VERTOS_300_SSD, },
2328 /* Vertos 600 ESD. */
2329 { "V006E0DS", NULL, IDE_CD_FLAG_VERTOS_600_ESD, },
2330 /*
2331 * Sanyo 3 CD changer uses a non-standard command for CD changing
2332 * (by default standard ATAPI support for CD changers is used).
2333 */
2334 { "CD-ROM CDR-C3 G", NULL, IDE_CD_FLAG_SANYO_3CD },
2335 { "CD-ROM CDR-C3G", NULL, IDE_CD_FLAG_SANYO_3CD },
2336 { "CD-ROM CDR_C36", NULL, IDE_CD_FLAG_SANYO_3CD },
2337 /* Stingray 8X CD-ROM. */
2338 { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_CD_FLAG_PRE_ATAPI12},
2339 /*
2340 * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
2341 * mode sense page capabilities size, but older drives break.
2342 */
2343 { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE },
2344 { "WPI CDS-32X", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE },
2345 /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
2346 { "", "241N", IDE_CD_FLAG_LE_SPEED_FIELDS },
2347 /*
2348 * Some drives used by Apple don't advertise audio play
2349 * but they do support reading TOC & audio datas.
2350 */
2351 { "MATSHITADVD-ROM SR-8187", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2352 { "MATSHITADVD-ROM SR-8186", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2353 { "MATSHITADVD-ROM SR-8176", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2354 { "MATSHITADVD-ROM SR-8174", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
2355 { NULL, NULL, 0 }
2356};
2357
2358static unsigned int ide_cd_flags(struct hd_driveid *id)
2359{
2360 const struct cd_list_entry *cle = ide_cd_quirks_list;
2361
2362 while (cle->id_model) {
2363 if (strcmp(cle->id_model, id->model) == 0 &&
2364 (cle->id_firmware == NULL ||
2365 strstr(id->fw_rev, cle->id_firmware)))
2366 return cle->cd_flags;
2367 cle++;
2368 }
2369
2370 return 0;
2371}
2372
1da177e4
LT
2373static
2374int ide_cdrom_setup (ide_drive_t *drive)
2375{
4fe67178
BZ
2376 struct cdrom_info *cd = drive->driver_data;
2377 struct cdrom_device_info *cdi = &cd->devinfo;
e59724c7 2378 struct hd_driveid *id = drive->id;
1da177e4
LT
2379 int nslots;
2380
2381 blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn);
2382 blk_queue_dma_alignment(drive->queue, 31);
2383 drive->queue->unplug_delay = (1 * HZ) / 1000;
2384 if (!drive->queue->unplug_delay)
2385 drive->queue->unplug_delay = 1;
2386
2387 drive->special.all = 0;
2388
e59724c7
BZ
2389 cd->cd_flags = IDE_CD_FLAG_MEDIA_CHANGED | IDE_CD_FLAG_NO_EJECT |
2390 ide_cd_flags(id);
1da177e4 2391
e59724c7 2392 if ((id->config & 0x0060) == 0x20)
2bc4cf2d 2393 cd->cd_flags |= IDE_CD_FLAG_DRQ_INTERRUPT;
e59724c7
BZ
2394
2395 if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_300_SSD) &&
2396 id->fw_rev[4] == '1' && id->fw_rev[6] <= '2')
2bc4cf2d
BZ
2397 cd->cd_flags |= (IDE_CD_FLAG_TOCTRACKS_AS_BCD |
2398 IDE_CD_FLAG_TOCADDR_AS_BCD);
e59724c7
BZ
2399 else if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_600_ESD) &&
2400 id->fw_rev[4] == '1' && id->fw_rev[6] <= '2')
2bc4cf2d 2401 cd->cd_flags |= IDE_CD_FLAG_TOCTRACKS_AS_BCD;
e59724c7
BZ
2402 else if (cd->cd_flags & IDE_CD_FLAG_SANYO_3CD)
2403 cdi->sanyo_slot = 3; /* 3 => use CD in slot 0 */
1da177e4 2404
1da177e4
LT
2405 nslots = ide_cdrom_probe_capabilities (drive);
2406
2407 /*
2408 * set correct block size
2409 */
2410 blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE);
2411
2412 if (drive->autotune == IDE_TUNE_DEFAULT ||
2413 drive->autotune == IDE_TUNE_AUTO)
2414 drive->dsc_overlap = (drive->next != drive);
1da177e4
LT
2415
2416 if (ide_cdrom_register(drive, nslots)) {
2417 printk (KERN_ERR "%s: ide_cdrom_setup failed to register device with the cdrom driver.\n", drive->name);
4fe67178 2418 cd->devinfo.handle = NULL;
1da177e4
LT
2419 return 1;
2420 }
2421 ide_cdrom_add_settings(drive);
2422 return 0;
2423}
2424
ecfd80e4 2425#ifdef CONFIG_IDE_PROC_FS
1da177e4
LT
2426static
2427sector_t ide_cdrom_capacity (ide_drive_t *drive)
2428{
2429 unsigned long capacity, sectors_per_frame;
2430
2431 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
2432 return 0;
2433
2434 return capacity * sectors_per_frame;
2435}
d97b3214 2436#endif
1da177e4 2437
4031bbe4 2438static void ide_cd_remove(ide_drive_t *drive)
1da177e4
LT
2439{
2440 struct cdrom_info *info = drive->driver_data;
2441
7662d046 2442 ide_proc_unregister_driver(drive, info->driver);
1da177e4
LT
2443
2444 del_gendisk(info->disk);
2445
2446 ide_cd_put(info);
1da177e4
LT
2447}
2448
2449static void ide_cd_release(struct kref *kref)
2450{
2451 struct cdrom_info *info = to_ide_cd(kref);
2452 struct cdrom_device_info *devinfo = &info->devinfo;
2453 ide_drive_t *drive = info->drive;
2454 struct gendisk *g = info->disk;
2455
6044ec88
JJ
2456 kfree(info->buffer);
2457 kfree(info->toc);
1da177e4
LT
2458 if (devinfo->handle == drive && unregister_cdrom(devinfo))
2459 printk(KERN_ERR "%s: %s failed to unregister device from the cdrom "
2460 "driver.\n", __FUNCTION__, drive->name);
2461 drive->dsc_overlap = 0;
2462 drive->driver_data = NULL;
2463 blk_queue_prep_rq(drive->queue, NULL);
2464 g->private_data = NULL;
2465 put_disk(g);
2466 kfree(info);
2467}
2468
4031bbe4 2469static int ide_cd_probe(ide_drive_t *);
1da177e4 2470
ecfd80e4 2471#ifdef CONFIG_IDE_PROC_FS
1da177e4
LT
2472static int proc_idecd_read_capacity
2473 (char *page, char **start, off_t off, int count, int *eof, void *data)
2474{
2a91f3e5 2475 ide_drive_t *drive = data;
1da177e4
LT
2476 int len;
2477
2478 len = sprintf(page,"%llu\n", (long long)ide_cdrom_capacity(drive));
2479 PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
2480}
2481
2482static ide_proc_entry_t idecd_proc[] = {
2483 { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
2484 { NULL, 0, NULL, NULL }
2485};
1da177e4
LT
2486#endif
2487
2488static ide_driver_t ide_cdrom_driver = {
8604affd 2489 .gen_driver = {
4ef3b8f4 2490 .owner = THIS_MODULE,
8604affd
BZ
2491 .name = "ide-cdrom",
2492 .bus = &ide_bus_type,
8604affd 2493 },
4031bbe4
RK
2494 .probe = ide_cd_probe,
2495 .remove = ide_cd_remove,
1da177e4
LT
2496 .version = IDECD_VERSION,
2497 .media = ide_cdrom,
1da177e4 2498 .supports_dsc_overlap = 1,
1da177e4
LT
2499 .do_request = ide_do_rw_cdrom,
2500 .end_request = ide_end_request,
2501 .error = __ide_error,
2502 .abort = __ide_abort,
7662d046 2503#ifdef CONFIG_IDE_PROC_FS
1da177e4 2504 .proc = idecd_proc,
7662d046 2505#endif
1da177e4
LT
2506};
2507
2508static int idecd_open(struct inode * inode, struct file * file)
2509{
2510 struct gendisk *disk = inode->i_bdev->bd_disk;
2511 struct cdrom_info *info;
1da177e4
LT
2512 int rc = -ENOMEM;
2513
2514 if (!(info = ide_cd_get(disk)))
2515 return -ENXIO;
2516
1da177e4 2517 if (!info->buffer)
c94964a4
BZ
2518 info->buffer = kmalloc(SECTOR_BUFFER_SIZE, GFP_KERNEL|__GFP_REPEAT);
2519
2520 if (info->buffer)
2521 rc = cdrom_open(&info->devinfo, inode, file);
1da177e4
LT
2522
2523 if (rc < 0)
2524 ide_cd_put(info);
2525
2526 return rc;
2527}
2528
2529static int idecd_release(struct inode * inode, struct file * file)
2530{
2531 struct gendisk *disk = inode->i_bdev->bd_disk;
2532 struct cdrom_info *info = ide_cd_g(disk);
1da177e4
LT
2533
2534 cdrom_release (&info->devinfo, file);
1da177e4
LT
2535
2536 ide_cd_put(info);
2537
2538 return 0;
2539}
2540
6a2900b6
CH
2541static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2542{
2543 struct packet_command cgc;
2544 char buffer[16];
2545 int stat;
2546 char spindown;
2547
2548 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
2549 return -EFAULT;
2550
2551 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2552
2553 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2554 if (stat)
2555 return stat;
2556
2557 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
2558 return cdrom_mode_select(cdi, &cgc);
2559}
2560
2561static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
2562{
2563 struct packet_command cgc;
2564 char buffer[16];
2565 int stat;
2566 char spindown;
2567
2568 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
2569
2570 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
2571 if (stat)
2572 return stat;
2573
2574 spindown = buffer[11] & 0x0f;
2575 if (copy_to_user((void __user *)arg, &spindown, sizeof (char)))
2576 return -EFAULT;
2577 return 0;
2578}
2579
1da177e4
LT
2580static int idecd_ioctl (struct inode *inode, struct file *file,
2581 unsigned int cmd, unsigned long arg)
2582{
2583 struct block_device *bdev = inode->i_bdev;
2584 struct cdrom_info *info = ide_cd_g(bdev->bd_disk);
2585 int err;
2586
6a2900b6
CH
2587 switch (cmd) {
2588 case CDROMSETSPINDOWN:
2589 return idecd_set_spindown(&info->devinfo, arg);
2590 case CDROMGETSPINDOWN:
2591 return idecd_get_spindown(&info->devinfo, arg);
2592 default:
2593 break;
2594 }
2595
2596 err = generic_ide_ioctl(info->drive, file, bdev, cmd, arg);
1da177e4
LT
2597 if (err == -EINVAL)
2598 err = cdrom_ioctl(file, &info->devinfo, inode, cmd, arg);
2599
2600 return err;
2601}
2602
2603static int idecd_media_changed(struct gendisk *disk)
2604{
2605 struct cdrom_info *info = ide_cd_g(disk);
2606 return cdrom_media_changed(&info->devinfo);
2607}
2608
2609static int idecd_revalidate_disk(struct gendisk *disk)
2610{
2611 struct cdrom_info *info = ide_cd_g(disk);
2612 struct request_sense sense;
139c829d
BZ
2613
2614 ide_cd_read_toc(info->drive, &sense);
2615
1da177e4
LT
2616 return 0;
2617}
2618
2619static struct block_device_operations idecd_ops = {
2620 .owner = THIS_MODULE,
2621 .open = idecd_open,
2622 .release = idecd_release,
2623 .ioctl = idecd_ioctl,
2624 .media_changed = idecd_media_changed,
2625 .revalidate_disk= idecd_revalidate_disk
2626};
2627
2628/* options */
2629static char *ignore = NULL;
2630
2631module_param(ignore, charp, 0400);
2632MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
2633
4031bbe4 2634static int ide_cd_probe(ide_drive_t *drive)
1da177e4
LT
2635{
2636 struct cdrom_info *info;
2637 struct gendisk *g;
2638 struct request_sense sense;
2639
2640 if (!strstr("ide-cdrom", drive->driver_req))
2641 goto failed;
2642 if (!drive->present)
2643 goto failed;
2644 if (drive->media != ide_cdrom && drive->media != ide_optical)
2645 goto failed;
2646 /* skip drives that we were told to ignore */
2647 if (ignore != NULL) {
2648 if (strstr(ignore, drive->name)) {
2649 printk(KERN_INFO "ide-cd: ignoring drive %s\n", drive->name);
2650 goto failed;
2651 }
2652 }
2653 if (drive->scsi) {
2654 printk(KERN_INFO "ide-cd: passing drive %s to ide-scsi emulation.\n", drive->name);
2655 goto failed;
2656 }
f5e3c2fa 2657 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
1da177e4
LT
2658 if (info == NULL) {
2659 printk(KERN_ERR "%s: Can't allocate a cdrom structure\n", drive->name);
2660 goto failed;
2661 }
2662
2663 g = alloc_disk(1 << PARTN_BITS);
2664 if (!g)
2665 goto out_free_cd;
2666
2667 ide_init_disk(g, drive);
2668
7662d046 2669 ide_proc_register_driver(drive, &ide_cdrom_driver);
8604affd 2670
1da177e4
LT
2671 kref_init(&info->kref);
2672
2673 info->drive = drive;
2674 info->driver = &ide_cdrom_driver;
2675 info->disk = g;
2676
2677 g->private_data = &info->driver;
2678
2679 drive->driver_data = info;
2680
1da177e4 2681 g->minors = 1;
1da177e4
LT
2682 g->driverfs_dev = &drive->gendev;
2683 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
2684 if (ide_cdrom_setup(drive)) {
7662d046 2685 ide_proc_unregister_driver(drive, &ide_cdrom_driver);
05017db3 2686 ide_cd_release(&info->kref);
1da177e4
LT
2687 goto failed;
2688 }
1da177e4 2689
139c829d 2690 ide_cd_read_toc(drive, &sense);
1da177e4
LT
2691 g->fops = &idecd_ops;
2692 g->flags |= GENHD_FL_REMOVABLE;
2693 add_disk(g);
2694 return 0;
2695
1da177e4
LT
2696out_free_cd:
2697 kfree(info);
2698failed:
8604affd 2699 return -ENODEV;
1da177e4
LT
2700}
2701
2702static void __exit ide_cdrom_exit(void)
2703{
8604affd 2704 driver_unregister(&ide_cdrom_driver.gen_driver);
1da177e4 2705}
17514e8a
BZ
2706
2707static int __init ide_cdrom_init(void)
1da177e4 2708{
8604affd 2709 return driver_register(&ide_cdrom_driver.gen_driver);
1da177e4
LT
2710}
2711
263756ec 2712MODULE_ALIAS("ide:*m-cdrom*");
972560fb 2713MODULE_ALIAS("ide-cd");
1da177e4
LT
2714module_init(ide_cdrom_init);
2715module_exit(ide_cdrom_exit);
2716MODULE_LICENSE("GPL");