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