ide: destroy DMA mappings after ending DMA (v2)
[safe/jmp/linux-2.6] / drivers / ide / ide-cd.c
1 /*
2  * ATAPI CD-ROM driver.
3  *
4  * Copyright (C) 1994-1996   Scott Snyder <snyder@fnald0.fnal.gov>
5  * Copyright (C) 1996-1998   Erik Andersen <andersee@debian.org>
6  * Copyright (C) 1998-2000   Jens Axboe <axboe@suse.de>
7  * Copyright (C) 2005, 2007-2009  Bartlomiej Zolnierkiewicz
8  *
9  * May be copied or modified under the terms of the GNU General Public
10  * License.  See linux/COPYING for more information.
11  *
12  * See Documentation/cdrom/ide-cd for usage information.
13  *
14  * Suggestions are welcome. Patches that work are more welcome though. ;-)
15  *
16  * Documentation:
17  *      Mt. Fuji (SFF8090 version 4) and ATAPI (SFF-8020i rev 2.6) standards.
18  *
19  * For historical changelog please see:
20  *      Documentation/ide/ChangeLog.ide-cd.1994-2004
21  */
22
23 #define DRV_NAME "ide-cd"
24 #define PFX DRV_NAME ": "
25
26 #define IDECD_VERSION "5.00"
27
28 #include <linux/module.h>
29 #include <linux/types.h>
30 #include <linux/kernel.h>
31 #include <linux/delay.h>
32 #include <linux/timer.h>
33 #include <linux/slab.h>
34 #include <linux/interrupt.h>
35 #include <linux/errno.h>
36 #include <linux/cdrom.h>
37 #include <linux/ide.h>
38 #include <linux/completion.h>
39 #include <linux/mutex.h>
40 #include <linux/bcd.h>
41
42 /* For SCSI -> ATAPI command conversion */
43 #include <scsi/scsi.h>
44
45 #include <linux/irq.h>
46 #include <linux/io.h>
47 #include <asm/byteorder.h>
48 #include <linux/uaccess.h>
49 #include <asm/unaligned.h>
50
51 #include "ide-cd.h"
52
53 static DEFINE_MUTEX(idecd_ref_mutex);
54
55 static void ide_cd_release(struct device *);
56
57 static struct cdrom_info *ide_cd_get(struct gendisk *disk)
58 {
59         struct cdrom_info *cd = NULL;
60
61         mutex_lock(&idecd_ref_mutex);
62         cd = ide_drv_g(disk, cdrom_info);
63         if (cd) {
64                 if (ide_device_get(cd->drive))
65                         cd = NULL;
66                 else
67                         get_device(&cd->dev);
68
69         }
70         mutex_unlock(&idecd_ref_mutex);
71         return cd;
72 }
73
74 static void ide_cd_put(struct cdrom_info *cd)
75 {
76         ide_drive_t *drive = cd->drive;
77
78         mutex_lock(&idecd_ref_mutex);
79         put_device(&cd->dev);
80         ide_device_put(drive);
81         mutex_unlock(&idecd_ref_mutex);
82 }
83
84 /*
85  * Generic packet command support and error handling routines.
86  */
87
88 /* Mark that we've seen a media change and invalidate our internal buffers. */
89 static void cdrom_saw_media_change(ide_drive_t *drive)
90 {
91         drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
92         drive->atapi_flags &= ~IDE_AFLAG_TOC_VALID;
93 }
94
95 static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
96                            struct request_sense *sense)
97 {
98         int log = 0;
99
100         ide_debug_log(IDE_DBG_SENSE, "sense_key: 0x%x", sense->sense_key);
101
102         if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
103                 return 0;
104
105         switch (sense->sense_key) {
106         case NO_SENSE:
107         case RECOVERED_ERROR:
108                 break;
109         case NOT_READY:
110                 /*
111                  * don't care about tray state messages for e.g. capacity
112                  * commands or in-progress or becoming ready
113                  */
114                 if (sense->asc == 0x3a || sense->asc == 0x04)
115                         break;
116                 log = 1;
117                 break;
118         case ILLEGAL_REQUEST:
119                 /*
120                  * don't log START_STOP unit with LoEj set, since we cannot
121                  * reliably check if drive can auto-close
122                  */
123                 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
124                         break;
125                 log = 1;
126                 break;
127         case UNIT_ATTENTION:
128                 /*
129                  * Make good and sure we've seen this potential media change.
130                  * Some drives (i.e. Creative) fail to present the correct sense
131                  * key in the error register.
132                  */
133                 cdrom_saw_media_change(drive);
134                 break;
135         default:
136                 log = 1;
137                 break;
138         }
139         return log;
140 }
141
142 static void cdrom_analyze_sense_data(ide_drive_t *drive,
143                               struct request *failed_command,
144                               struct request_sense *sense)
145 {
146         unsigned long sector;
147         unsigned long bio_sectors;
148         struct cdrom_info *info = drive->driver_data;
149
150         ide_debug_log(IDE_DBG_SENSE, "error_code: 0x%x, sense_key: 0x%x",
151                                      sense->error_code, sense->sense_key);
152
153         if (failed_command)
154                 ide_debug_log(IDE_DBG_SENSE, "failed cmd: 0x%x",
155                                              failed_command->cmd[0]);
156
157         if (!cdrom_log_sense(drive, failed_command, sense))
158                 return;
159
160         /*
161          * If a read toc is executed for a CD-R or CD-RW medium where the first
162          * toc has not been recorded yet, it will fail with 05/24/00 (which is a
163          * confusing error)
164          */
165         if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
166                 if (sense->sense_key == 0x05 && sense->asc == 0x24)
167                         return;
168
169         /* current error */
170         if (sense->error_code == 0x70) {
171                 switch (sense->sense_key) {
172                 case MEDIUM_ERROR:
173                 case VOLUME_OVERFLOW:
174                 case ILLEGAL_REQUEST:
175                         if (!sense->valid)
176                                 break;
177                         if (failed_command == NULL ||
178                                         !blk_fs_request(failed_command))
179                                 break;
180                         sector = (sense->information[0] << 24) |
181                                  (sense->information[1] << 16) |
182                                  (sense->information[2] <<  8) |
183                                  (sense->information[3]);
184
185                         if (drive->queue->hardsect_size == 2048)
186                                 /* device sector size is 2K */
187                                 sector <<= 2;
188
189                         bio_sectors = max(bio_sectors(failed_command->bio), 4U);
190                         sector &= ~(bio_sectors - 1);
191
192                         /*
193                          * The SCSI specification allows for the value
194                          * returned by READ CAPACITY to be up to 75 2K
195                          * sectors past the last readable block.
196                          * Therefore, if we hit a medium error within the
197                          * last 75 2K sectors, we decrease the saved size
198                          * value.
199                          */
200                         if (sector < get_capacity(info->disk) &&
201                             drive->probed_capacity - sector < 4 * 75)
202                                 set_capacity(info->disk, sector);
203                 }
204         }
205
206         ide_cd_log_error(drive->name, failed_command, sense);
207 }
208
209 static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense,
210                                       struct request *failed_command)
211 {
212         struct cdrom_info *info         = drive->driver_data;
213         struct request *rq              = &drive->request_sense_rq;
214
215         ide_debug_log(IDE_DBG_SENSE, "enter");
216
217         if (sense == NULL)
218                 sense = &info->sense_data;
219
220         /* stuff the sense request in front of our current request */
221         blk_rq_init(NULL, rq);
222         rq->cmd_type = REQ_TYPE_ATA_PC;
223         rq->rq_disk = info->disk;
224
225         rq->data = sense;
226         rq->cmd[0] = GPCMD_REQUEST_SENSE;
227         rq->cmd[4] = 18;
228         rq->data_len = 18;
229
230         rq->cmd_type = REQ_TYPE_SENSE;
231         rq->cmd_flags |= REQ_PREEMPT;
232
233         /* NOTE! Save the failed command in "rq->buffer" */
234         rq->buffer = (void *) failed_command;
235
236         if (failed_command)
237                 ide_debug_log(IDE_DBG_SENSE, "failed_cmd: 0x%x",
238                                              failed_command->cmd[0]);
239
240         drive->hwif->rq = NULL;
241
242         elv_add_request(drive->queue, rq, ELEVATOR_INSERT_FRONT, 0);
243 }
244
245 static void ide_cd_complete_failed_rq(ide_drive_t *drive, struct request *rq)
246 {
247         /*
248          * For REQ_TYPE_SENSE, "rq->buffer" points to the original
249          * failed request
250          */
251         struct request *failed = (struct request *)rq->buffer;
252         struct cdrom_info *info = drive->driver_data;
253         void *sense = &info->sense_data;
254
255         if (failed) {
256                 if (failed->sense) {
257                         sense = failed->sense;
258                         failed->sense_len = rq->sense_len;
259                 }
260                 cdrom_analyze_sense_data(drive, failed, sense);
261
262                 if (ide_end_rq(drive, failed, -EIO, blk_rq_bytes(failed)))
263                         BUG();
264         } else
265                 cdrom_analyze_sense_data(drive, NULL, sense);
266 }
267
268 /*
269  * Returns:
270  * 0: if the request should be continued.
271  * 1: if the request will be going through error recovery.
272  * 2: if the request should be ended.
273  */
274 static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret)
275 {
276         ide_hwif_t *hwif = drive->hwif;
277         struct request *rq = hwif->rq;
278         int stat, err, sense_key;
279
280         /* check for errors */
281         stat = hwif->tp_ops->read_status(hwif);
282
283         if (stat_ret)
284                 *stat_ret = stat;
285
286         if (OK_STAT(stat, good_stat, BAD_R_STAT))
287                 return 0;
288
289         /* get the IDE error register */
290         err = ide_read_error(drive);
291         sense_key = err >> 4;
292
293         ide_debug_log(IDE_DBG_RQ, "stat: 0x%x, good_stat: 0x%x, cmd[0]: 0x%x, "
294                                   "rq->cmd_type: 0x%x, err: 0x%x",
295                                   stat, good_stat, rq->cmd[0], rq->cmd_type,
296                                   err);
297
298         if (blk_sense_request(rq)) {
299                 /*
300                  * We got an error trying to get sense info from the drive
301                  * (probably while trying to recover from a former error).
302                  * Just give up.
303                  */
304                 rq->cmd_flags |= REQ_FAILED;
305                 return 2;
306         } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
307                 /* All other functions, except for READ. */
308
309                 /*
310                  * if we have an error, pass back CHECK_CONDITION as the
311                  * scsi status byte
312                  */
313                 if (blk_pc_request(rq) && !rq->errors)
314                         rq->errors = SAM_STAT_CHECK_CONDITION;
315
316                 /* check for tray open */
317                 if (sense_key == NOT_READY) {
318                         cdrom_saw_media_change(drive);
319                 } else if (sense_key == UNIT_ATTENTION) {
320                         /* check for media change */
321                         cdrom_saw_media_change(drive);
322                         return 0;
323                 } else if (sense_key == ILLEGAL_REQUEST &&
324                            rq->cmd[0] == GPCMD_START_STOP_UNIT) {
325                         /*
326                          * Don't print error message for this condition--
327                          * SFF8090i indicates that 5/24/00 is the correct
328                          * response to a request to close the tray if the
329                          * drive doesn't have that capability.
330                          * cdrom_log_sense() knows this!
331                          */
332                 } else if (!(rq->cmd_flags & REQ_QUIET)) {
333                         /* otherwise, print an error */
334                         ide_dump_status(drive, "packet command error", stat);
335                 }
336
337                 rq->cmd_flags |= REQ_FAILED;
338
339                 /*
340                  * instead of playing games with moving completions around,
341                  * remove failed request completely and end it when the
342                  * request sense has completed
343                  */
344                 goto end_request;
345
346         } else if (blk_fs_request(rq)) {
347                 int do_end_request = 0;
348
349                 /* handle errors from READ and WRITE requests */
350
351                 if (blk_noretry_request(rq))
352                         do_end_request = 1;
353
354                 if (sense_key == NOT_READY) {
355                         /* tray open */
356                         if (rq_data_dir(rq) == READ) {
357                                 cdrom_saw_media_change(drive);
358
359                                 /* fail the request */
360                                 printk(KERN_ERR PFX "%s: tray open\n",
361                                                 drive->name);
362                                 do_end_request = 1;
363                         } else {
364                                 struct cdrom_info *info = drive->driver_data;
365
366                                 /*
367                                  * Allow the drive 5 seconds to recover, some
368                                  * devices will return this error while flushing
369                                  * data from cache.
370                                  */
371                                 if (!rq->errors)
372                                         info->write_timeout = jiffies +
373                                                         ATAPI_WAIT_WRITE_BUSY;
374                                 rq->errors = 1;
375                                 if (time_after(jiffies, info->write_timeout))
376                                         do_end_request = 1;
377                                 else {
378                                         struct request_queue *q = drive->queue;
379                                         unsigned long flags;
380
381                                         /*
382                                          * take a breather relying on the unplug
383                                          * timer to kick us again
384                                          */
385                                         spin_lock_irqsave(q->queue_lock, flags);
386                                         blk_plug_device(q);
387                                         spin_unlock_irqrestore(q->queue_lock, flags);
388
389                                         return 1;
390                                 }
391                         }
392                 } else if (sense_key == UNIT_ATTENTION) {
393                         /* media change */
394                         cdrom_saw_media_change(drive);
395
396                         /*
397                          * Arrange to retry the request but be sure to give up
398                          * if we've retried too many times.
399                          */
400                         if (++rq->errors > ERROR_MAX)
401                                 do_end_request = 1;
402                 } else if (sense_key == ILLEGAL_REQUEST ||
403                            sense_key == DATA_PROTECT) {
404                         /*
405                          * No point in retrying after an illegal request or data
406                          * protect error.
407                          */
408                         ide_dump_status(drive, "command error", stat);
409                         do_end_request = 1;
410                 } else if (sense_key == MEDIUM_ERROR) {
411                         /*
412                          * No point in re-trying a zillion times on a bad
413                          * sector. If we got here the error is not correctable.
414                          */
415                         ide_dump_status(drive, "media error (bad sector)",
416                                         stat);
417                         do_end_request = 1;
418                 } else if (sense_key == BLANK_CHECK) {
419                         /* disk appears blank ?? */
420                         ide_dump_status(drive, "media error (blank)", stat);
421                         do_end_request = 1;
422                 } else if ((err & ~ATA_ABORTED) != 0) {
423                         /* go to the default handler for other errors */
424                         ide_error(drive, "cdrom_decode_status", stat);
425                         return 1;
426                 } else if ((++rq->errors > ERROR_MAX)) {
427                         /* we've racked up too many retries, abort */
428                         do_end_request = 1;
429                 }
430
431                 /*
432                  * End a request through request sense analysis when we have
433                  * sense data. We need this in order to perform end of media
434                  * processing.
435                  */
436                 if (do_end_request)
437                         goto end_request;
438
439                 /*
440                  * If we got a CHECK_CONDITION status, queue
441                  * a request sense command.
442                  */
443                 if (stat & ATA_ERR)
444                         cdrom_queue_request_sense(drive, NULL, NULL);
445                 return 1;
446         } else {
447                 blk_dump_rq_flags(rq, PFX "bad rq");
448                 return 2;
449         }
450
451 end_request:
452         if (stat & ATA_ERR) {
453                 struct request_queue *q = drive->queue;
454                 unsigned long flags;
455
456                 spin_lock_irqsave(q->queue_lock, flags);
457                 blkdev_dequeue_request(rq);
458                 spin_unlock_irqrestore(q->queue_lock, flags);
459
460                 hwif->rq = NULL;
461
462                 cdrom_queue_request_sense(drive, rq->sense, rq);
463                 return 1;
464         } else
465                 return 2;
466 }
467
468 /*
469  * Check the contents of the interrupt reason register from the cdrom
470  * and attempt to recover if there are problems.  Returns  0 if everything's
471  * ok; nonzero if the request has been terminated.
472  */
473 static int ide_cd_check_ireason(ide_drive_t *drive, struct request *rq,
474                                 int len, int ireason, int rw)
475 {
476         ide_hwif_t *hwif = drive->hwif;
477
478         ide_debug_log(IDE_DBG_FUNC, "ireason: 0x%x, rw: 0x%x", ireason, rw);
479
480         /*
481          * ireason == 0: the drive wants to receive data from us
482          * ireason == 2: the drive is expecting to transfer data to us
483          */
484         if (ireason == (!rw << 1))
485                 return 0;
486         else if (ireason == (rw << 1)) {
487
488                 /* whoops... */
489                 printk(KERN_ERR PFX "%s: %s: wrong transfer direction!\n",
490                                 drive->name, __func__);
491
492                 ide_pad_transfer(drive, rw, len);
493         } else  if (rw == 0 && ireason == 1) {
494                 /*
495                  * Some drives (ASUS) seem to tell us that status info is
496                  * available.  Just get it and ignore.
497                  */
498                 (void)hwif->tp_ops->read_status(hwif);
499                 return 0;
500         } else {
501                 /* drive wants a command packet, or invalid ireason... */
502                 printk(KERN_ERR PFX "%s: %s: bad interrupt reason 0x%02x\n",
503                                 drive->name, __func__, ireason);
504         }
505
506         if (rq->cmd_type == REQ_TYPE_ATA_PC)
507                 rq->cmd_flags |= REQ_FAILED;
508
509         return -1;
510 }
511
512 static void ide_cd_request_sense_fixup(ide_drive_t *drive, struct ide_cmd *cmd)
513 {
514         struct request *rq = cmd->rq;
515
516         ide_debug_log(IDE_DBG_FUNC, "rq->cmd[0]: 0x%x", rq->cmd[0]);
517
518         /*
519          * Some of the trailing request sense fields are optional,
520          * and some drives don't send them.  Sigh.
521          */
522         if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
523             cmd->nleft > 0 && cmd->nleft <= 5) {
524                 unsigned int ofs = cmd->nbytes - cmd->nleft;
525
526                 while (cmd->nleft > 0) {
527                         *((u8 *)rq->data + ofs++) = 0;
528                         cmd->nleft--;
529                 }
530         }
531 }
532
533 int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
534                     int write, void *buffer, unsigned *bufflen,
535                     struct request_sense *sense, int timeout,
536                     unsigned int cmd_flags)
537 {
538         struct cdrom_info *info = drive->driver_data;
539         struct request_sense local_sense;
540         int retries = 10;
541         unsigned int flags = 0;
542
543         if (!sense)
544                 sense = &local_sense;
545
546         ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x, timeout: %d, "
547                                   "cmd_flags: 0x%x",
548                                   cmd[0], write, timeout, cmd_flags);
549
550         /* start of retry loop */
551         do {
552                 struct request *rq;
553                 int error;
554
555                 rq = blk_get_request(drive->queue, write, __GFP_WAIT);
556
557                 memcpy(rq->cmd, cmd, BLK_MAX_CDB);
558                 rq->cmd_type = REQ_TYPE_ATA_PC;
559                 rq->sense = sense;
560                 rq->cmd_flags |= cmd_flags;
561                 rq->timeout = timeout;
562                 if (buffer) {
563                         rq->data = buffer;
564                         rq->data_len = *bufflen;
565                 }
566
567                 error = blk_execute_rq(drive->queue, info->disk, rq, 0);
568
569                 if (buffer)
570                         *bufflen = rq->data_len;
571
572                 flags = rq->cmd_flags;
573                 blk_put_request(rq);
574
575                 /*
576                  * FIXME: we should probably abort/retry or something in case of
577                  * failure.
578                  */
579                 if (flags & REQ_FAILED) {
580                         /*
581                          * The request failed.  Retry if it was due to a unit
582                          * attention status (usually means media was changed).
583                          */
584                         struct request_sense *reqbuf = sense;
585
586                         if (reqbuf->sense_key == UNIT_ATTENTION)
587                                 cdrom_saw_media_change(drive);
588                         else if (reqbuf->sense_key == NOT_READY &&
589                                  reqbuf->asc == 4 && reqbuf->ascq != 4) {
590                                 /*
591                                  * The drive is in the process of loading
592                                  * a disk.  Retry, but wait a little to give
593                                  * the drive time to complete the load.
594                                  */
595                                 ssleep(2);
596                         } else {
597                                 /* otherwise, don't retry */
598                                 retries = 0;
599                         }
600                         --retries;
601                 }
602
603                 /* end of retry loop */
604         } while ((flags & REQ_FAILED) && retries >= 0);
605
606         /* return an error if the command failed */
607         return (flags & REQ_FAILED) ? -EIO : 0;
608 }
609
610 static void ide_cd_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
611 {
612         unsigned int nr_bytes = cmd->nbytes - cmd->nleft;
613
614         if (cmd->tf_flags & IDE_TFLAG_WRITE)
615                 nr_bytes -= cmd->last_xfer_len;
616
617         if (nr_bytes > 0)
618                 ide_complete_rq(drive, 0, nr_bytes);
619 }
620
621 static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
622 {
623         ide_hwif_t *hwif = drive->hwif;
624         struct ide_cmd *cmd = &hwif->cmd;
625         struct request *rq = hwif->rq;
626         ide_expiry_t *expiry = NULL;
627         int dma_error = 0, dma, stat, thislen, uptodate = 0;
628         int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc, nsectors;
629         int sense = blk_sense_request(rq);
630         unsigned int timeout;
631         u16 len;
632         u8 ireason;
633
634         ide_debug_log(IDE_DBG_PC, "cmd[0]: 0x%x, write: 0x%x",
635                                   rq->cmd[0], write);
636
637         /* check for errors */
638         dma = drive->dma;
639         if (dma) {
640                 drive->dma = 0;
641                 dma_error = hwif->dma_ops->dma_end(drive);
642                 ide_destroy_dmatable(drive);
643                 if (dma_error) {
644                         printk(KERN_ERR PFX "%s: DMA %s error\n", drive->name,
645                                         write ? "write" : "read");
646                         ide_dma_off(drive);
647                 }
648         }
649
650         rc = cdrom_decode_status(drive, 0, &stat);
651         if (rc) {
652                 if (rc == 2)
653                         goto out_end;
654                 return ide_stopped;
655         }
656
657         /* using dma, transfer is complete now */
658         if (dma) {
659                 if (dma_error)
660                         return ide_error(drive, "dma error", stat);
661                 uptodate = 1;
662                 goto out_end;
663         }
664
665         ide_read_bcount_and_ireason(drive, &len, &ireason);
666
667         thislen = blk_fs_request(rq) ? len : cmd->nleft;
668         if (thislen > len)
669                 thislen = len;
670
671         ide_debug_log(IDE_DBG_PC, "DRQ: stat: 0x%x, thislen: %d",
672                                   stat, thislen);
673
674         /* If DRQ is clear, the command has completed. */
675         if ((stat & ATA_DRQ) == 0) {
676                 if (blk_fs_request(rq)) {
677                         /*
678                          * If we're not done reading/writing, complain.
679                          * Otherwise, complete the command normally.
680                          */
681                         uptodate = 1;
682                         if (cmd->nleft > 0) {
683                                 printk(KERN_ERR PFX "%s: %s: data underrun "
684                                         "(%u bytes)\n", drive->name, __func__,
685                                         cmd->nleft);
686                                 if (!write)
687                                         rq->cmd_flags |= REQ_FAILED;
688                                 uptodate = 0;
689                         }
690                 } else if (!blk_pc_request(rq)) {
691                         ide_cd_request_sense_fixup(drive, cmd);
692                         /* complain if we still have data left to transfer */
693                         uptodate = cmd->nleft ? 0 : 1;
694                         if (uptodate == 0)
695                                 rq->cmd_flags |= REQ_FAILED;
696                 }
697                 goto out_end;
698         }
699
700         /* check which way to transfer data */
701         rc = ide_cd_check_ireason(drive, rq, len, ireason, write);
702         if (rc)
703                 goto out_end;
704
705         cmd->last_xfer_len = 0;
706
707         ide_debug_log(IDE_DBG_PC, "data transfer, rq->cmd_type: 0x%x, "
708                                   "ireason: 0x%x",
709                                   rq->cmd_type, ireason);
710
711         /* transfer data */
712         while (thislen > 0) {
713                 int blen = min_t(int, thislen, cmd->nleft);
714
715                 if (cmd->nleft == 0)
716                         break;
717
718                 ide_pio_bytes(drive, cmd, write, blen);
719                 cmd->last_xfer_len += blen;
720
721                 thislen -= blen;
722                 len -= blen;
723
724                 if (sense && write == 0)
725                         rq->sense_len += blen;
726         }
727
728         /* pad, if necessary */
729         if (len > 0) {
730                 if (blk_fs_request(rq) == 0 || write == 0)
731                         ide_pad_transfer(drive, write, len);
732                 else {
733                         printk(KERN_ERR PFX "%s: confused, missing data\n",
734                                 drive->name);
735                         blk_dump_rq_flags(rq, "cdrom_newpc_intr");
736                 }
737         }
738
739         if (blk_pc_request(rq)) {
740                 timeout = rq->timeout;
741         } else {
742                 timeout = ATAPI_WAIT_PC;
743                 if (!blk_fs_request(rq))
744                         expiry = ide_cd_expiry;
745         }
746
747         hwif->expiry = expiry;
748         ide_set_handler(drive, cdrom_newpc_intr, timeout);
749         return ide_started;
750
751 out_end:
752         if (blk_pc_request(rq) && rc == 0) {
753                 unsigned int dlen = rq->data_len;
754
755                 rq->data_len = 0;
756
757                 if (blk_end_request(rq, 0, dlen))
758                         BUG();
759
760                 hwif->rq = NULL;
761         } else {
762                 if (sense && uptodate)
763                         ide_cd_complete_failed_rq(drive, rq);
764
765                 if (blk_fs_request(rq)) {
766                         if (cmd->nleft == 0)
767                                 uptodate = 1;
768                 } else {
769                         if (uptodate <= 0 && rq->errors == 0)
770                                 rq->errors = -EIO;
771                 }
772
773                 if (uptodate == 0)
774                         ide_cd_error_cmd(drive, cmd);
775
776                 /* make sure it's fully ended */
777                 if (blk_pc_request(rq))
778                         nsectors = (rq->data_len + 511) >> 9;
779                 else
780                         nsectors = rq->hard_nr_sectors;
781
782                 if (nsectors == 0)
783                         nsectors = 1;
784
785                 if (blk_fs_request(rq) == 0) {
786                         rq->data_len -= (cmd->nbytes - cmd->nleft);
787                         if (uptodate == 0 && (cmd->tf_flags & IDE_TFLAG_WRITE))
788                                 rq->data_len += cmd->last_xfer_len;
789                 }
790
791                 ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
792
793                 if (sense && rc == 2)
794                         ide_error(drive, "request sense failure", stat);
795         }
796         return ide_stopped;
797 }
798
799 static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
800 {
801         struct cdrom_info *cd = drive->driver_data;
802         struct request_queue *q = drive->queue;
803         int write = rq_data_dir(rq) == WRITE;
804         unsigned short sectors_per_frame =
805                 queue_hardsect_size(q) >> SECTOR_BITS;
806
807         ide_debug_log(IDE_DBG_RQ, "rq->cmd[0]: 0x%x, rq->cmd_flags: 0x%x, "
808                                   "secs_per_frame: %u",
809                                   rq->cmd[0], rq->cmd_flags, sectors_per_frame);
810
811         if (write) {
812                 /* disk has become write protected */
813                 if (get_disk_ro(cd->disk))
814                         return ide_stopped;
815         } else {
816                 /*
817                  * We may be retrying this request after an error.  Fix up any
818                  * weirdness which might be present in the request packet.
819                  */
820                 q->prep_rq_fn(q, rq);
821         }
822
823         /* fs requests *must* be hardware frame aligned */
824         if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
825             (rq->sector & (sectors_per_frame - 1)))
826                 return ide_stopped;
827
828         /* use DMA, if possible */
829         drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
830
831         if (write)
832                 cd->devinfo.media_written = 1;
833
834         rq->timeout = ATAPI_WAIT_PC;
835
836         return ide_started;
837 }
838
839 static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
840 {
841
842         ide_debug_log(IDE_DBG_PC, "rq->cmd[0]: 0x%x, rq->cmd_type: 0x%x",
843                                   rq->cmd[0], rq->cmd_type);
844
845         if (blk_pc_request(rq))
846                 rq->cmd_flags |= REQ_QUIET;
847         else
848                 rq->cmd_flags &= ~REQ_FAILED;
849
850         drive->dma = 0;
851
852         /* sg request */
853         if (rq->bio || ((rq->cmd_type == REQ_TYPE_ATA_PC) && rq->data_len)) {
854                 struct request_queue *q = drive->queue;
855                 unsigned int alignment;
856                 char *buf;
857
858                 if (rq->bio)
859                         buf = bio_data(rq->bio);
860                 else
861                         buf = rq->data;
862
863                 drive->dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
864
865                 /*
866                  * check if dma is safe
867                  *
868                  * NOTE! The "len" and "addr" checks should possibly have
869                  * separate masks.
870                  */
871                 alignment = queue_dma_alignment(q) | q->dma_pad_mask;
872                 if ((unsigned long)buf & alignment
873                     || rq->data_len & q->dma_pad_mask
874                     || object_is_on_stack(buf))
875                         drive->dma = 0;
876         }
877 }
878
879 static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
880                                         sector_t block)
881 {
882         struct ide_cmd cmd;
883         int uptodate = 0, nsectors;
884
885         ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
886                                   rq->cmd[0], (unsigned long long)block);
887
888         if (drive->debug_mask & IDE_DBG_RQ)
889                 blk_dump_rq_flags(rq, "ide_cd_do_request");
890
891         if (blk_fs_request(rq)) {
892                 if (cdrom_start_rw(drive, rq) == ide_stopped)
893                         goto out_end;
894         } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
895                    rq->cmd_type == REQ_TYPE_ATA_PC) {
896                 if (!rq->timeout)
897                         rq->timeout = ATAPI_WAIT_PC;
898
899                 cdrom_do_block_pc(drive, rq);
900         } else if (blk_special_request(rq)) {
901                 /* right now this can only be a reset... */
902                 uptodate = 1;
903                 goto out_end;
904         } else {
905                 blk_dump_rq_flags(rq, DRV_NAME " bad flags");
906                 if (rq->errors == 0)
907                         rq->errors = -EIO;
908                 goto out_end;
909         }
910
911         memset(&cmd, 0, sizeof(cmd));
912
913         if (rq_data_dir(rq))
914                 cmd.tf_flags |= IDE_TFLAG_WRITE;
915
916         cmd.rq = rq;
917
918         if (blk_fs_request(rq) || rq->data_len) {
919                 ide_init_sg_cmd(&cmd, blk_fs_request(rq) ? (rq->nr_sectors << 9)
920                                                          : rq->data_len);
921                 ide_map_sg(drive, &cmd);
922         }
923
924         return ide_issue_pc(drive, &cmd);
925 out_end:
926         nsectors = rq->hard_nr_sectors;
927
928         if (nsectors == 0)
929                 nsectors = 1;
930
931         ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9);
932
933         return ide_stopped;
934 }
935
936 /*
937  * Ioctl handling.
938  *
939  * Routines which queue packet commands take as a final argument a pointer to a
940  * request_sense struct. If execution of the command results in an error with a
941  * CHECK CONDITION status, this structure will be filled with the results of the
942  * subsequent request sense command. The pointer can also be NULL, in which case
943  * no sense information is returned.
944  */
945 static void msf_from_bcd(struct atapi_msf *msf)
946 {
947         msf->minute = bcd2bin(msf->minute);
948         msf->second = bcd2bin(msf->second);
949         msf->frame  = bcd2bin(msf->frame);
950 }
951
952 int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
953 {
954         struct cdrom_info *info = drive->driver_data;
955         struct cdrom_device_info *cdi = &info->devinfo;
956         unsigned char cmd[BLK_MAX_CDB];
957
958         ide_debug_log(IDE_DBG_FUNC, "enter");
959
960         memset(cmd, 0, BLK_MAX_CDB);
961         cmd[0] = GPCMD_TEST_UNIT_READY;
962
963         /*
964          * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
965          * instead of supporting the LOAD_UNLOAD opcode.
966          */
967         cmd[7] = cdi->sanyo_slot % 3;
968
969         return ide_cd_queue_pc(drive, cmd, 0, NULL, NULL, sense, 0, REQ_QUIET);
970 }
971
972 static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
973                                unsigned long *sectors_per_frame,
974                                struct request_sense *sense)
975 {
976         struct {
977                 __be32 lba;
978                 __be32 blocklen;
979         } capbuf;
980
981         int stat;
982         unsigned char cmd[BLK_MAX_CDB];
983         unsigned len = sizeof(capbuf);
984         u32 blocklen;
985
986         ide_debug_log(IDE_DBG_FUNC, "enter");
987
988         memset(cmd, 0, BLK_MAX_CDB);
989         cmd[0] = GPCMD_READ_CDVD_CAPACITY;
990
991         stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
992                                REQ_QUIET);
993         if (stat)
994                 return stat;
995
996         /*
997          * Sanity check the given block size
998          */
999         blocklen = be32_to_cpu(capbuf.blocklen);
1000         switch (blocklen) {
1001         case 512:
1002         case 1024:
1003         case 2048:
1004         case 4096:
1005                 break;
1006         default:
1007                 printk(KERN_ERR PFX "%s: weird block size %u\n",
1008                                 drive->name, blocklen);
1009                 printk(KERN_ERR PFX "%s: default to 2kb block size\n",
1010                                 drive->name);
1011                 blocklen = 2048;
1012                 break;
1013         }
1014
1015         *capacity = 1 + be32_to_cpu(capbuf.lba);
1016         *sectors_per_frame = blocklen >> SECTOR_BITS;
1017
1018         ide_debug_log(IDE_DBG_PROBE, "cap: %lu, sectors_per_frame: %lu",
1019                                      *capacity, *sectors_per_frame);
1020
1021         return 0;
1022 }
1023
1024 static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
1025                                 int format, char *buf, int buflen,
1026                                 struct request_sense *sense)
1027 {
1028         unsigned char cmd[BLK_MAX_CDB];
1029
1030         ide_debug_log(IDE_DBG_FUNC, "enter");
1031
1032         memset(cmd, 0, BLK_MAX_CDB);
1033
1034         cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1035         cmd[6] = trackno;
1036         cmd[7] = (buflen >> 8);
1037         cmd[8] = (buflen & 0xff);
1038         cmd[9] = (format << 6);
1039
1040         if (msf_flag)
1041                 cmd[1] = 2;
1042
1043         return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
1044 }
1045
1046 /* Try to read the entire TOC for the disk into our internal buffer. */
1047 int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
1048 {
1049         int stat, ntracks, i;
1050         struct cdrom_info *info = drive->driver_data;
1051         struct cdrom_device_info *cdi = &info->devinfo;
1052         struct atapi_toc *toc = info->toc;
1053         struct {
1054                 struct atapi_toc_header hdr;
1055                 struct atapi_toc_entry  ent;
1056         } ms_tmp;
1057         long last_written;
1058         unsigned long sectors_per_frame = SECTORS_PER_FRAME;
1059
1060         ide_debug_log(IDE_DBG_FUNC, "enter");
1061
1062         if (toc == NULL) {
1063                 /* try to allocate space */
1064                 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
1065                 if (toc == NULL) {
1066                         printk(KERN_ERR PFX "%s: No cdrom TOC buffer!\n",
1067                                         drive->name);
1068                         return -ENOMEM;
1069                 }
1070                 info->toc = toc;
1071         }
1072
1073         /*
1074          * Check to see if the existing data is still valid. If it is,
1075          * just return.
1076          */
1077         (void) cdrom_check_status(drive, sense);
1078
1079         if (drive->atapi_flags & IDE_AFLAG_TOC_VALID)
1080                 return 0;
1081
1082         /* try to get the total cdrom capacity and sector size */
1083         stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
1084                                    sense);
1085         if (stat)
1086                 toc->capacity = 0x1fffff;
1087
1088         set_capacity(info->disk, toc->capacity * sectors_per_frame);
1089         /* save a private copy of the TOC capacity for error handling */
1090         drive->probed_capacity = toc->capacity * sectors_per_frame;
1091
1092         blk_queue_hardsect_size(drive->queue,
1093                                 sectors_per_frame << SECTOR_BITS);
1094
1095         /* first read just the header, so we know how long the TOC is */
1096         stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
1097                                     sizeof(struct atapi_toc_header), sense);
1098         if (stat)
1099                 return stat;
1100
1101         if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1102                 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1103                 toc->hdr.last_track  = bcd2bin(toc->hdr.last_track);
1104         }
1105
1106         ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
1107         if (ntracks <= 0)
1108                 return -EIO;
1109         if (ntracks > MAX_TRACKS)
1110                 ntracks = MAX_TRACKS;
1111
1112         /* now read the whole schmeer */
1113         stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
1114                                   (char *)&toc->hdr,
1115                                    sizeof(struct atapi_toc_header) +
1116                                    (ntracks + 1) *
1117                                    sizeof(struct atapi_toc_entry), sense);
1118
1119         if (stat && toc->hdr.first_track > 1) {
1120                 /*
1121                  * Cds with CDI tracks only don't have any TOC entries, despite
1122                  * of this the returned values are
1123                  * first_track == last_track = number of CDI tracks + 1,
1124                  * so that this case is indistinguishable from the same layout
1125                  * plus an additional audio track. If we get an error for the
1126                  * regular case, we assume a CDI without additional audio
1127                  * tracks. In this case the readable TOC is empty (CDI tracks
1128                  * are not included) and only holds the Leadout entry.
1129                  *
1130                  * Heiko Eißfeldt.
1131                  */
1132                 ntracks = 0;
1133                 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
1134                                            (char *)&toc->hdr,
1135                                            sizeof(struct atapi_toc_header) +
1136                                            (ntracks + 1) *
1137                                            sizeof(struct atapi_toc_entry),
1138                                            sense);
1139                 if (stat)
1140                         return stat;
1141
1142                 if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1143                         toc->hdr.first_track = (u8)bin2bcd(CDROM_LEADOUT);
1144                         toc->hdr.last_track = (u8)bin2bcd(CDROM_LEADOUT);
1145                 } else {
1146                         toc->hdr.first_track = CDROM_LEADOUT;
1147                         toc->hdr.last_track = CDROM_LEADOUT;
1148                 }
1149         }
1150
1151         if (stat)
1152                 return stat;
1153
1154         toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
1155
1156         if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD) {
1157                 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
1158                 toc->hdr.last_track  = bcd2bin(toc->hdr.last_track);
1159         }
1160
1161         for (i = 0; i <= ntracks; i++) {
1162                 if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1163                         if (drive->atapi_flags & IDE_AFLAG_TOCTRACKS_AS_BCD)
1164                                 toc->ent[i].track = bcd2bin(toc->ent[i].track);
1165                         msf_from_bcd(&toc->ent[i].addr.msf);
1166                 }
1167                 toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
1168                                                   toc->ent[i].addr.msf.second,
1169                                                   toc->ent[i].addr.msf.frame);
1170         }
1171
1172         if (toc->hdr.first_track != CDROM_LEADOUT) {
1173                 /* read the multisession information */
1174                 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
1175                                            sizeof(ms_tmp), sense);
1176                 if (stat)
1177                         return stat;
1178
1179                 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
1180         } else {
1181                 ms_tmp.hdr.last_track = CDROM_LEADOUT;
1182                 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
1183                 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
1184         }
1185
1186         if (drive->atapi_flags & IDE_AFLAG_TOCADDR_AS_BCD) {
1187                 /* re-read multisession information using MSF format */
1188                 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
1189                                            sizeof(ms_tmp), sense);
1190                 if (stat)
1191                         return stat;
1192
1193                 msf_from_bcd(&ms_tmp.ent.addr.msf);
1194                 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
1195                                                    ms_tmp.ent.addr.msf.second,
1196                                                    ms_tmp.ent.addr.msf.frame);
1197         }
1198
1199         toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
1200
1201         /* now try to get the total cdrom capacity */
1202         stat = cdrom_get_last_written(cdi, &last_written);
1203         if (!stat && (last_written > toc->capacity)) {
1204                 toc->capacity = last_written;
1205                 set_capacity(info->disk, toc->capacity * sectors_per_frame);
1206                 drive->probed_capacity = toc->capacity * sectors_per_frame;
1207         }
1208
1209         /* Remember that we've read this stuff. */
1210         drive->atapi_flags |= IDE_AFLAG_TOC_VALID;
1211
1212         return 0;
1213 }
1214
1215 int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
1216 {
1217         struct cdrom_info *info = drive->driver_data;
1218         struct cdrom_device_info *cdi = &info->devinfo;
1219         struct packet_command cgc;
1220         int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
1221
1222         ide_debug_log(IDE_DBG_FUNC, "enter");
1223
1224         if ((drive->atapi_flags & IDE_AFLAG_FULL_CAPS_PAGE) == 0)
1225                 size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
1226
1227         init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
1228         do {
1229                 /* we seem to get stat=0x01,err=0x00 the first time (??) */
1230                 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1231                 if (!stat)
1232                         break;
1233         } while (--attempts);
1234         return stat;
1235 }
1236
1237 void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
1238 {
1239         struct cdrom_info *cd = drive->driver_data;
1240         u16 curspeed, maxspeed;
1241
1242         ide_debug_log(IDE_DBG_FUNC, "enter");
1243
1244         if (drive->atapi_flags & IDE_AFLAG_LE_SPEED_FIELDS) {
1245                 curspeed = le16_to_cpup((__le16 *)&buf[8 + 14]);
1246                 maxspeed = le16_to_cpup((__le16 *)&buf[8 + 8]);
1247         } else {
1248                 curspeed = be16_to_cpup((__be16 *)&buf[8 + 14]);
1249                 maxspeed = be16_to_cpup((__be16 *)&buf[8 + 8]);
1250         }
1251
1252         ide_debug_log(IDE_DBG_PROBE, "curspeed: %u, maxspeed: %u",
1253                                      curspeed, maxspeed);
1254
1255         cd->current_speed = (curspeed + (176/2)) / 176;
1256         cd->max_speed = (maxspeed + (176/2)) / 176;
1257 }
1258
1259 #define IDE_CD_CAPABILITIES \
1260         (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
1261          CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
1262          CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
1263          CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
1264          CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
1265
1266 static struct cdrom_device_ops ide_cdrom_dops = {
1267         .open                   = ide_cdrom_open_real,
1268         .release                = ide_cdrom_release_real,
1269         .drive_status           = ide_cdrom_drive_status,
1270         .media_changed          = ide_cdrom_check_media_change_real,
1271         .tray_move              = ide_cdrom_tray_move,
1272         .lock_door              = ide_cdrom_lock_door,
1273         .select_speed           = ide_cdrom_select_speed,
1274         .get_last_session       = ide_cdrom_get_last_session,
1275         .get_mcn                = ide_cdrom_get_mcn,
1276         .reset                  = ide_cdrom_reset,
1277         .audio_ioctl            = ide_cdrom_audio_ioctl,
1278         .capability             = IDE_CD_CAPABILITIES,
1279         .generic_packet         = ide_cdrom_packet,
1280 };
1281
1282 static int ide_cdrom_register(ide_drive_t *drive, int nslots)
1283 {
1284         struct cdrom_info *info = drive->driver_data;
1285         struct cdrom_device_info *devinfo = &info->devinfo;
1286
1287         ide_debug_log(IDE_DBG_PROBE, "nslots: %d", nslots);
1288
1289         devinfo->ops = &ide_cdrom_dops;
1290         devinfo->speed = info->current_speed;
1291         devinfo->capacity = nslots;
1292         devinfo->handle = drive;
1293         strcpy(devinfo->name, drive->name);
1294
1295         if (drive->atapi_flags & IDE_AFLAG_NO_SPEED_SELECT)
1296                 devinfo->mask |= CDC_SELECT_SPEED;
1297
1298         devinfo->disk = info->disk;
1299         return register_cdrom(devinfo);
1300 }
1301
1302 static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
1303 {
1304         struct cdrom_info *cd = drive->driver_data;
1305         struct cdrom_device_info *cdi = &cd->devinfo;
1306         u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
1307         mechtype_t mechtype;
1308         int nslots = 1;
1309
1310         ide_debug_log(IDE_DBG_PROBE, "media: 0x%x, atapi_flags: 0x%lx",
1311                                      drive->media, drive->atapi_flags);
1312
1313         cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
1314                      CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
1315                      CDC_MO_DRIVE | CDC_RAM);
1316
1317         if (drive->media == ide_optical) {
1318                 cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
1319                 printk(KERN_ERR PFX "%s: ATAPI magneto-optical drive\n",
1320                                 drive->name);
1321                 return nslots;
1322         }
1323
1324         if (drive->atapi_flags & IDE_AFLAG_PRE_ATAPI12) {
1325                 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
1326                 cdi->mask &= ~CDC_PLAY_AUDIO;
1327                 return nslots;
1328         }
1329
1330         /*
1331          * We have to cheat a little here. the packet will eventually be queued
1332          * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
1333          * Since this device hasn't been registered with the Uniform layer yet,
1334          * it can't do this. Same goes for cdi->ops.
1335          */
1336         cdi->handle = drive;
1337         cdi->ops = &ide_cdrom_dops;
1338
1339         if (ide_cdrom_get_capabilities(drive, buf))
1340                 return 0;
1341
1342         if ((buf[8 + 6] & 0x01) == 0)
1343                 drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
1344         if (buf[8 + 6] & 0x08)
1345                 drive->atapi_flags &= ~IDE_AFLAG_NO_EJECT;
1346         if (buf[8 + 3] & 0x01)
1347                 cdi->mask &= ~CDC_CD_R;
1348         if (buf[8 + 3] & 0x02)
1349                 cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
1350         if (buf[8 + 2] & 0x38)
1351                 cdi->mask &= ~CDC_DVD;
1352         if (buf[8 + 3] & 0x20)
1353                 cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
1354         if (buf[8 + 3] & 0x10)
1355                 cdi->mask &= ~CDC_DVD_R;
1356         if ((buf[8 + 4] & 0x01) || (drive->atapi_flags & IDE_AFLAG_PLAY_AUDIO_OK))
1357                 cdi->mask &= ~CDC_PLAY_AUDIO;
1358
1359         mechtype = buf[8 + 6] >> 5;
1360         if (mechtype == mechtype_caddy ||
1361             mechtype == mechtype_popup ||
1362             (drive->atapi_flags & IDE_AFLAG_NO_AUTOCLOSE))
1363                 cdi->mask |= CDC_CLOSE_TRAY;
1364
1365         if (cdi->sanyo_slot > 0) {
1366                 cdi->mask &= ~CDC_SELECT_DISC;
1367                 nslots = 3;
1368         } else if (mechtype == mechtype_individual_changer ||
1369                    mechtype == mechtype_cartridge_changer) {
1370                 nslots = cdrom_number_of_slots(cdi);
1371                 if (nslots > 1)
1372                         cdi->mask &= ~CDC_SELECT_DISC;
1373         }
1374
1375         ide_cdrom_update_speed(drive, buf);
1376
1377         printk(KERN_INFO PFX "%s: ATAPI", drive->name);
1378
1379         /* don't print speed if the drive reported 0 */
1380         if (cd->max_speed)
1381                 printk(KERN_CONT " %dX", cd->max_speed);
1382
1383         printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
1384
1385         if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
1386                 printk(KERN_CONT " DVD%s%s",
1387                                  (cdi->mask & CDC_DVD_R) ? "" : "-R",
1388                                  (cdi->mask & CDC_DVD_RAM) ? "" : "/RAM");
1389
1390         if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
1391                 printk(KERN_CONT " CD%s%s",
1392                                  (cdi->mask & CDC_CD_R) ? "" : "-R",
1393                                  (cdi->mask & CDC_CD_RW) ? "" : "/RW");
1394
1395         if ((cdi->mask & CDC_SELECT_DISC) == 0)
1396                 printk(KERN_CONT " changer w/%d slots", nslots);
1397         else
1398                 printk(KERN_CONT " drive");
1399
1400         printk(KERN_CONT ", %dkB Cache\n",
1401                          be16_to_cpup((__be16 *)&buf[8 + 12]));
1402
1403         return nslots;
1404 }
1405
1406 /* standard prep_rq_fn that builds 10 byte cmds */
1407 static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
1408 {
1409         int hard_sect = queue_hardsect_size(q);
1410         long block = (long)rq->hard_sector / (hard_sect >> 9);
1411         unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
1412
1413         memset(rq->cmd, 0, BLK_MAX_CDB);
1414
1415         if (rq_data_dir(rq) == READ)
1416                 rq->cmd[0] = GPCMD_READ_10;
1417         else
1418                 rq->cmd[0] = GPCMD_WRITE_10;
1419
1420         /*
1421          * fill in lba
1422          */
1423         rq->cmd[2] = (block >> 24) & 0xff;
1424         rq->cmd[3] = (block >> 16) & 0xff;
1425         rq->cmd[4] = (block >>  8) & 0xff;
1426         rq->cmd[5] = block & 0xff;
1427
1428         /*
1429          * and transfer length
1430          */
1431         rq->cmd[7] = (blocks >> 8) & 0xff;
1432         rq->cmd[8] = blocks & 0xff;
1433         rq->cmd_len = 10;
1434         return BLKPREP_OK;
1435 }
1436
1437 /*
1438  * Most of the SCSI commands are supported directly by ATAPI devices.
1439  * This transform handles the few exceptions.
1440  */
1441 static int ide_cdrom_prep_pc(struct request *rq)
1442 {
1443         u8 *c = rq->cmd;
1444
1445         /* transform 6-byte read/write commands to the 10-byte version */
1446         if (c[0] == READ_6 || c[0] == WRITE_6) {
1447                 c[8] = c[4];
1448                 c[5] = c[3];
1449                 c[4] = c[2];
1450                 c[3] = c[1] & 0x1f;
1451                 c[2] = 0;
1452                 c[1] &= 0xe0;
1453                 c[0] += (READ_10 - READ_6);
1454                 rq->cmd_len = 10;
1455                 return BLKPREP_OK;
1456         }
1457
1458         /*
1459          * it's silly to pretend we understand 6-byte sense commands, just
1460          * reject with ILLEGAL_REQUEST and the caller should take the
1461          * appropriate action
1462          */
1463         if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
1464                 rq->errors = ILLEGAL_REQUEST;
1465                 return BLKPREP_KILL;
1466         }
1467
1468         return BLKPREP_OK;
1469 }
1470
1471 static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
1472 {
1473         if (blk_fs_request(rq))
1474                 return ide_cdrom_prep_fs(q, rq);
1475         else if (blk_pc_request(rq))
1476                 return ide_cdrom_prep_pc(rq);
1477
1478         return 0;
1479 }
1480
1481 struct cd_list_entry {
1482         const char      *id_model;
1483         const char      *id_firmware;
1484         unsigned int    cd_flags;
1485 };
1486
1487 #ifdef CONFIG_IDE_PROC_FS
1488 static sector_t ide_cdrom_capacity(ide_drive_t *drive)
1489 {
1490         unsigned long capacity, sectors_per_frame;
1491
1492         if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
1493                 return 0;
1494
1495         return capacity * sectors_per_frame;
1496 }
1497
1498 static int proc_idecd_read_capacity(char *page, char **start, off_t off,
1499                                         int count, int *eof, void *data)
1500 {
1501         ide_drive_t *drive = data;
1502         int len;
1503
1504         len = sprintf(page, "%llu\n", (long long)ide_cdrom_capacity(drive));
1505         PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1506 }
1507
1508 static ide_proc_entry_t idecd_proc[] = {
1509         { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
1510         { NULL, 0, NULL, NULL }
1511 };
1512
1513 static ide_proc_entry_t *ide_cd_proc_entries(ide_drive_t *drive)
1514 {
1515         return idecd_proc;
1516 }
1517
1518 static const struct ide_proc_devset *ide_cd_proc_devsets(ide_drive_t *drive)
1519 {
1520         return NULL;
1521 }
1522 #endif
1523
1524 static const struct cd_list_entry ide_cd_quirks_list[] = {
1525         /* SCR-3231 doesn't support the SET_CD_SPEED command. */
1526         { "SAMSUNG CD-ROM SCR-3231", NULL,   IDE_AFLAG_NO_SPEED_SELECT       },
1527         /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
1528         { "NEC CD-ROM DRIVE:260",    "1.01", IDE_AFLAG_TOCADDR_AS_BCD |
1529                                              IDE_AFLAG_PRE_ATAPI12,          },
1530         /* Vertos 300, some versions of this drive like to talk BCD. */
1531         { "V003S0DS",                NULL,   IDE_AFLAG_VERTOS_300_SSD,       },
1532         /* Vertos 600 ESD. */
1533         { "V006E0DS",                NULL,   IDE_AFLAG_VERTOS_600_ESD,       },
1534         /*
1535          * Sanyo 3 CD changer uses a non-standard command for CD changing
1536          * (by default standard ATAPI support for CD changers is used).
1537          */
1538         { "CD-ROM CDR-C3 G",         NULL,   IDE_AFLAG_SANYO_3CD             },
1539         { "CD-ROM CDR-C3G",          NULL,   IDE_AFLAG_SANYO_3CD             },
1540         { "CD-ROM CDR_C36",          NULL,   IDE_AFLAG_SANYO_3CD             },
1541         /* Stingray 8X CD-ROM. */
1542         { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_AFLAG_PRE_ATAPI12 },
1543         /*
1544          * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
1545          * mode sense page capabilities size, but older drives break.
1546          */
1547         { "ATAPI CD ROM DRIVE 50X MAX", NULL,   IDE_AFLAG_FULL_CAPS_PAGE     },
1548         { "WPI CDS-32X",                NULL,   IDE_AFLAG_FULL_CAPS_PAGE     },
1549         /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
1550         { "",                        "241N", IDE_AFLAG_LE_SPEED_FIELDS       },
1551         /*
1552          * Some drives used by Apple don't advertise audio play
1553          * but they do support reading TOC & audio datas.
1554          */
1555         { "MATSHITADVD-ROM SR-8187", NULL,   IDE_AFLAG_PLAY_AUDIO_OK         },
1556         { "MATSHITADVD-ROM SR-8186", NULL,   IDE_AFLAG_PLAY_AUDIO_OK         },
1557         { "MATSHITADVD-ROM SR-8176", NULL,   IDE_AFLAG_PLAY_AUDIO_OK         },
1558         { "MATSHITADVD-ROM SR-8174", NULL,   IDE_AFLAG_PLAY_AUDIO_OK         },
1559         { "Optiarc DVD RW AD-5200A", NULL,   IDE_AFLAG_PLAY_AUDIO_OK         },
1560         { "Optiarc DVD RW AD-7200A", NULL,   IDE_AFLAG_PLAY_AUDIO_OK         },
1561         { "Optiarc DVD RW AD-7543A", NULL,   IDE_AFLAG_NO_AUTOCLOSE          },
1562         { "TEAC CD-ROM CD-224E",     NULL,   IDE_AFLAG_NO_AUTOCLOSE          },
1563         { NULL, NULL, 0 }
1564 };
1565
1566 static unsigned int ide_cd_flags(u16 *id)
1567 {
1568         const struct cd_list_entry *cle = ide_cd_quirks_list;
1569
1570         while (cle->id_model) {
1571                 if (strcmp(cle->id_model, (char *)&id[ATA_ID_PROD]) == 0 &&
1572                     (cle->id_firmware == NULL ||
1573                      strstr((char *)&id[ATA_ID_FW_REV], cle->id_firmware)))
1574                         return cle->cd_flags;
1575                 cle++;
1576         }
1577
1578         return 0;
1579 }
1580
1581 static int ide_cdrom_setup(ide_drive_t *drive)
1582 {
1583         struct cdrom_info *cd = drive->driver_data;
1584         struct cdrom_device_info *cdi = &cd->devinfo;
1585         struct request_queue *q = drive->queue;
1586         u16 *id = drive->id;
1587         char *fw_rev = (char *)&id[ATA_ID_FW_REV];
1588         int nslots;
1589
1590         ide_debug_log(IDE_DBG_PROBE, "enter");
1591
1592         blk_queue_prep_rq(q, ide_cdrom_prep_fn);
1593         blk_queue_dma_alignment(q, 31);
1594         blk_queue_update_dma_pad(q, 15);
1595
1596         q->unplug_delay = max((1 * HZ) / 1000, 1);
1597
1598         drive->dev_flags |= IDE_DFLAG_MEDIA_CHANGED;
1599         drive->atapi_flags = IDE_AFLAG_NO_EJECT | ide_cd_flags(id);
1600
1601         if ((drive->atapi_flags & IDE_AFLAG_VERTOS_300_SSD) &&
1602             fw_rev[4] == '1' && fw_rev[6] <= '2')
1603                 drive->atapi_flags |= (IDE_AFLAG_TOCTRACKS_AS_BCD |
1604                                      IDE_AFLAG_TOCADDR_AS_BCD);
1605         else if ((drive->atapi_flags & IDE_AFLAG_VERTOS_600_ESD) &&
1606                  fw_rev[4] == '1' && fw_rev[6] <= '2')
1607                 drive->atapi_flags |= IDE_AFLAG_TOCTRACKS_AS_BCD;
1608         else if (drive->atapi_flags & IDE_AFLAG_SANYO_3CD)
1609                 /* 3 => use CD in slot 0 */
1610                 cdi->sanyo_slot = 3;
1611
1612         nslots = ide_cdrom_probe_capabilities(drive);
1613
1614         blk_queue_hardsect_size(q, CD_FRAMESIZE);
1615
1616         if (ide_cdrom_register(drive, nslots)) {
1617                 printk(KERN_ERR PFX "%s: %s failed to register device with the"
1618                                 " cdrom driver.\n", drive->name, __func__);
1619                 cd->devinfo.handle = NULL;
1620                 return 1;
1621         }
1622
1623         ide_proc_register_driver(drive, cd->driver);
1624         return 0;
1625 }
1626
1627 static void ide_cd_remove(ide_drive_t *drive)
1628 {
1629         struct cdrom_info *info = drive->driver_data;
1630
1631         ide_debug_log(IDE_DBG_FUNC, "enter");
1632
1633         ide_proc_unregister_driver(drive, info->driver);
1634         device_del(&info->dev);
1635         del_gendisk(info->disk);
1636
1637         mutex_lock(&idecd_ref_mutex);
1638         put_device(&info->dev);
1639         mutex_unlock(&idecd_ref_mutex);
1640 }
1641
1642 static void ide_cd_release(struct device *dev)
1643 {
1644         struct cdrom_info *info = to_ide_drv(dev, cdrom_info);
1645         struct cdrom_device_info *devinfo = &info->devinfo;
1646         ide_drive_t *drive = info->drive;
1647         struct gendisk *g = info->disk;
1648
1649         ide_debug_log(IDE_DBG_FUNC, "enter");
1650
1651         kfree(info->toc);
1652         if (devinfo->handle == drive)
1653                 unregister_cdrom(devinfo);
1654         drive->driver_data = NULL;
1655         blk_queue_prep_rq(drive->queue, NULL);
1656         g->private_data = NULL;
1657         put_disk(g);
1658         kfree(info);
1659 }
1660
1661 static int ide_cd_probe(ide_drive_t *);
1662
1663 static struct ide_driver ide_cdrom_driver = {
1664         .gen_driver = {
1665                 .owner          = THIS_MODULE,
1666                 .name           = "ide-cdrom",
1667                 .bus            = &ide_bus_type,
1668         },
1669         .probe                  = ide_cd_probe,
1670         .remove                 = ide_cd_remove,
1671         .version                = IDECD_VERSION,
1672         .do_request             = ide_cd_do_request,
1673 #ifdef CONFIG_IDE_PROC_FS
1674         .proc_entries           = ide_cd_proc_entries,
1675         .proc_devsets           = ide_cd_proc_devsets,
1676 #endif
1677 };
1678
1679 static int idecd_open(struct block_device *bdev, fmode_t mode)
1680 {
1681         struct cdrom_info *info = ide_cd_get(bdev->bd_disk);
1682         int rc = -ENOMEM;
1683
1684         if (!info)
1685                 return -ENXIO;
1686
1687         rc = cdrom_open(&info->devinfo, bdev, mode);
1688
1689         if (rc < 0)
1690                 ide_cd_put(info);
1691
1692         return rc;
1693 }
1694
1695 static int idecd_release(struct gendisk *disk, fmode_t mode)
1696 {
1697         struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1698
1699         cdrom_release(&info->devinfo, mode);
1700
1701         ide_cd_put(info);
1702
1703         return 0;
1704 }
1705
1706 static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1707 {
1708         struct packet_command cgc;
1709         char buffer[16];
1710         int stat;
1711         char spindown;
1712
1713         if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
1714                 return -EFAULT;
1715
1716         init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1717
1718         stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1719         if (stat)
1720                 return stat;
1721
1722         buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
1723         return cdrom_mode_select(cdi, &cgc);
1724 }
1725
1726 static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
1727 {
1728         struct packet_command cgc;
1729         char buffer[16];
1730         int stat;
1731         char spindown;
1732
1733         init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
1734
1735         stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
1736         if (stat)
1737                 return stat;
1738
1739         spindown = buffer[11] & 0x0f;
1740         if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
1741                 return -EFAULT;
1742         return 0;
1743 }
1744
1745 static int idecd_ioctl(struct block_device *bdev, fmode_t mode,
1746                         unsigned int cmd, unsigned long arg)
1747 {
1748         struct cdrom_info *info = ide_drv_g(bdev->bd_disk, cdrom_info);
1749         int err;
1750
1751         switch (cmd) {
1752         case CDROMSETSPINDOWN:
1753                 return idecd_set_spindown(&info->devinfo, arg);
1754         case CDROMGETSPINDOWN:
1755                 return idecd_get_spindown(&info->devinfo, arg);
1756         default:
1757                 break;
1758         }
1759
1760         err = generic_ide_ioctl(info->drive, bdev, cmd, arg);
1761         if (err == -EINVAL)
1762                 err = cdrom_ioctl(&info->devinfo, bdev, mode, cmd, arg);
1763
1764         return err;
1765 }
1766
1767 static int idecd_media_changed(struct gendisk *disk)
1768 {
1769         struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1770         return cdrom_media_changed(&info->devinfo);
1771 }
1772
1773 static int idecd_revalidate_disk(struct gendisk *disk)
1774 {
1775         struct cdrom_info *info = ide_drv_g(disk, cdrom_info);
1776         struct request_sense sense;
1777
1778         ide_cd_read_toc(info->drive, &sense);
1779
1780         return  0;
1781 }
1782
1783 static struct block_device_operations idecd_ops = {
1784         .owner                  = THIS_MODULE,
1785         .open                   = idecd_open,
1786         .release                = idecd_release,
1787         .locked_ioctl           = idecd_ioctl,
1788         .media_changed          = idecd_media_changed,
1789         .revalidate_disk        = idecd_revalidate_disk
1790 };
1791
1792 /* module options */
1793 static unsigned long debug_mask;
1794 module_param(debug_mask, ulong, 0644);
1795
1796 MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
1797
1798 static int ide_cd_probe(ide_drive_t *drive)
1799 {
1800         struct cdrom_info *info;
1801         struct gendisk *g;
1802         struct request_sense sense;
1803
1804         ide_debug_log(IDE_DBG_PROBE, "driver_req: %s, media: 0x%x",
1805                                      drive->driver_req, drive->media);
1806
1807         if (!strstr("ide-cdrom", drive->driver_req))
1808                 goto failed;
1809
1810         if (drive->media != ide_cdrom && drive->media != ide_optical)
1811                 goto failed;
1812
1813         drive->debug_mask = debug_mask;
1814         drive->irq_handler = cdrom_newpc_intr;
1815
1816         info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
1817         if (info == NULL) {
1818                 printk(KERN_ERR PFX "%s: Can't allocate a cdrom structure\n",
1819                                 drive->name);
1820                 goto failed;
1821         }
1822
1823         g = alloc_disk(1 << PARTN_BITS);
1824         if (!g)
1825                 goto out_free_cd;
1826
1827         ide_init_disk(g, drive);
1828
1829         info->dev.parent = &drive->gendev;
1830         info->dev.release = ide_cd_release;
1831         dev_set_name(&info->dev, dev_name(&drive->gendev));
1832
1833         if (device_register(&info->dev))
1834                 goto out_free_disk;
1835
1836         info->drive = drive;
1837         info->driver = &ide_cdrom_driver;
1838         info->disk = g;
1839
1840         g->private_data = &info->driver;
1841
1842         drive->driver_data = info;
1843
1844         g->minors = 1;
1845         g->driverfs_dev = &drive->gendev;
1846         g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
1847         if (ide_cdrom_setup(drive)) {
1848                 put_device(&info->dev);
1849                 goto failed;
1850         }
1851
1852         ide_cd_read_toc(drive, &sense);
1853         g->fops = &idecd_ops;
1854         g->flags |= GENHD_FL_REMOVABLE;
1855         add_disk(g);
1856         return 0;
1857
1858 out_free_disk:
1859         put_disk(g);
1860 out_free_cd:
1861         kfree(info);
1862 failed:
1863         return -ENODEV;
1864 }
1865
1866 static void __exit ide_cdrom_exit(void)
1867 {
1868         driver_unregister(&ide_cdrom_driver.gen_driver);
1869 }
1870
1871 static int __init ide_cdrom_init(void)
1872 {
1873         printk(KERN_INFO DRV_NAME " driver " IDECD_VERSION "\n");
1874         return driver_register(&ide_cdrom_driver.gen_driver);
1875 }
1876
1877 MODULE_ALIAS("ide:*m-cdrom*");
1878 MODULE_ALIAS("ide-cd");
1879 module_init(ide_cdrom_init);
1880 module_exit(ide_cdrom_exit);
1881 MODULE_LICENSE("GPL");