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