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