blob: 75539fd0829c17b0081ab7d7aa1930a8e884abfe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/ide/ide-cd.c
3 *
4 * Copyright (C) 1994, 1995, 1996 scott snyder <snyder@fnald0.fnal.gov>
5 * Copyright (C) 1996-1998 Erik Andersen <andersee@debian.org>
6 * Copyright (C) 1998-2000 Jens Axboe <axboe@suse.de>
7 *
8 * May be copied or modified under the terms of the GNU General Public
9 * License. See linux/COPYING for more information.
10 *
11 * ATAPI CD-ROM driver. To be used with ide.c.
12 * See Documentation/cdrom/ide-cd for usage information.
13 *
14 * Suggestions are welcome. Patches that work are more welcome though. ;-)
15 * For those wishing to work on this driver, please be sure you download
16 * and comply with the latest Mt. Fuji (SFF8090 version 4) and ATAPI
17 * (SFF-8020i rev 2.6) standards. These documents can be obtained by
18 * anonymous ftp from:
19 * ftp://fission.dt.wdc.com/pub/standards/SFF_atapi/spec/SFF8020-r2.6/PS/8020r26.ps
20 * ftp://ftp.avc-pioneer.com/Mtfuji4/Spec/Fuji4r10.pdf
21 *
22 * Drives that deviate from these standards will be accommodated as much
23 * as possible via compile time or command-line options. Since I only have
24 * a few drives, you generally need to send me patches...
25 *
26 * ----------------------------------
27 * TO DO LIST:
28 * -Make it so that Pioneer CD DR-A24X and friends don't get screwed up on
29 * boot
30 *
31 * ----------------------------------
32 * 1.00 Oct 31, 1994 -- Initial version.
33 * 1.01 Nov 2, 1994 -- Fixed problem with starting request in
34 * cdrom_check_status.
35 * 1.03 Nov 25, 1994 -- leaving unmask_intr[] as a user-setting (as for disks)
36 * (from mlord) -- minor changes to cdrom_setup()
37 * -- renamed ide_dev_s to ide_drive_t, enable irq on command
38 * 2.00 Nov 27, 1994 -- Generalize packet command interface;
39 * add audio ioctls.
40 * 2.01 Dec 3, 1994 -- Rework packet command interface to handle devices
41 * which send an interrupt when ready for a command.
42 * 2.02 Dec 11, 1994 -- Cache the TOC in the driver.
43 * Don't use SCMD_PLAYAUDIO_TI; it's not included
44 * in the current version of ATAPI.
45 * Try to use LBA instead of track or MSF addressing
46 * when possible.
47 * Don't wait for READY_STAT.
48 * 2.03 Jan 10, 1995 -- Rewrite block read routines to handle block sizes
49 * other than 2k and to move multiple sectors in a
50 * single transaction.
51 * 2.04 Apr 21, 1995 -- Add work-around for Creative Labs CD220E drives.
52 * Thanks to Nick Saw <cwsaw@pts7.pts.mot.com> for
53 * help in figuring this out. Ditto for Acer and
54 * Aztech drives, which seem to have the same problem.
55 * 2.04b May 30, 1995 -- Fix to match changes in ide.c version 3.16 -ml
56 * 2.05 Jun 8, 1995 -- Don't attempt to retry after an illegal request
57 * or data protect error.
58 * Use HWIF and DEV_HWIF macros as in ide.c.
59 * Always try to do a request_sense after
60 * a failed command.
61 * Include an option to give textual descriptions
62 * of ATAPI errors.
63 * Fix a bug in handling the sector cache which
64 * showed up if the drive returned data in 512 byte
65 * blocks (like Pioneer drives). Thanks to
66 * Richard Hirst <srh@gpt.co.uk> for diagnosing this.
67 * Properly supply the page number field in the
68 * MODE_SELECT command.
69 * PLAYAUDIO12 is broken on the Aztech; work around it.
70 * 2.05x Aug 11, 1995 -- lots of data structure renaming/restructuring in ide.c
71 * (my apologies to Scott, but now ide-cd.c is independent)
72 * 3.00 Aug 22, 1995 -- Implement CDROMMULTISESSION ioctl.
73 * Implement CDROMREADAUDIO ioctl (UNTESTED).
74 * Use input_ide_data() and output_ide_data().
75 * Add door locking.
76 * Fix usage count leak in cdrom_open, which happened
77 * when a read-write mount was attempted.
78 * Try to load the disk on open.
79 * Implement CDROMEJECT_SW ioctl (off by default).
80 * Read total cdrom capacity during open.
81 * Rearrange logic in cdrom_decode_status. Issue
82 * request sense commands for failed packet commands
83 * from here instead of from cdrom_queue_packet_command.
84 * Fix a race condition in retrieving error information.
85 * Suppress printing normal unit attention errors and
86 * some drive not ready errors.
87 * Implement CDROMVOLREAD ioctl.
88 * Implement CDROMREADMODE1/2 ioctls.
89 * Fix race condition in setting up interrupt handlers
90 * when the `serialize' option is used.
91 * 3.01 Sep 2, 1995 -- Fix ordering of reenabling interrupts in
92 * cdrom_queue_request.
93 * Another try at using ide_[input,output]_data.
94 * 3.02 Sep 16, 1995 -- Stick total disk capacity in partition table as well.
95 * Make VERBOSE_IDE_CD_ERRORS dump failed command again.
96 * Dump out more information for ILLEGAL REQUEST errs.
97 * Fix handling of errors occurring before the
98 * packet command is transferred.
99 * Fix transfers with odd bytelengths.
100 * 3.03 Oct 27, 1995 -- Some Creative drives have an id of just `CD'.
101 * `DCI-2S10' drives are broken too.
102 * 3.04 Nov 20, 1995 -- So are Vertos drives.
103 * 3.05 Dec 1, 1995 -- Changes to go with overhaul of ide.c and ide-tape.c
104 * 3.06 Dec 16, 1995 -- Add support needed for partitions.
105 * More workarounds for Vertos bugs (based on patches
106 * from Holger Dietze <dietze@aix520.informatik.uni-leipzig.de>).
107 * Try to eliminate byteorder assumptions.
108 * Use atapi_cdrom_subchnl struct definition.
109 * Add STANDARD_ATAPI compilation option.
110 * 3.07 Jan 29, 1996 -- More twiddling for broken drives: Sony 55D,
111 * Vertos 300.
112 * Add NO_DOOR_LOCKING configuration option.
113 * Handle drive_cmd requests w/NULL args (for hdparm -t).
114 * Work around sporadic Sony55e audio play problem.
115 * 3.07a Feb 11, 1996 -- check drive->id for NULL before dereferencing, to fix
116 * problem with "hde=cdrom" with no drive present. -ml
117 * 3.08 Mar 6, 1996 -- More Vertos workarounds.
118 * 3.09 Apr 5, 1996 -- Add CDROMCLOSETRAY ioctl.
119 * Switch to using MSF addressing for audio commands.
120 * Reformat to match kernel tabbing style.
121 * Add CDROM_GET_UPC ioctl.
122 * 3.10 Apr 10, 1996 -- Fix compilation error with STANDARD_ATAPI.
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200123 * 3.11 Apr 29, 1996 -- Patch from Heiko Eißfeldt <heiko@colossus.escape.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * to remove redundant verify_area calls.
125 * 3.12 May 7, 1996 -- Rudimentary changer support. Based on patches
126 * from Gerhard Zuber <zuber@berlin.snafu.de>.
127 * Let open succeed even if there's no loaded disc.
128 * 3.13 May 19, 1996 -- Fixes for changer code.
129 * 3.14 May 29, 1996 -- Add work-around for Vertos 600.
130 * (From Hennus Bergman <hennus@sky.ow.nl>.)
131 * 3.15 July 2, 1996 -- Added support for Sanyo 3 CD changers
132 * from Ben Galliart <bgallia@luc.edu> with
133 * special help from Jeff Lightfoot
134 * <jeffml@pobox.com>
135 * 3.15a July 9, 1996 -- Improved Sanyo 3 CD changer identification
136 * 3.16 Jul 28, 1996 -- Fix from Gadi to reduce kernel stack usage for ioctl.
137 * 3.17 Sep 17, 1996 -- Tweak audio reads for some drives.
138 * Start changing CDROMLOADFROMSLOT to CDROM_SELECT_DISC.
139 * 3.18 Oct 31, 1996 -- Added module and DMA support.
140 *
141 *
142 * 4.00 Nov 5, 1996 -- New ide-cd maintainer,
143 * Erik B. Andersen <andersee@debian.org>
144 * -- Newer Creative drives don't always set the error
145 * register correctly. Make sure we see media changes
146 * regardless.
147 * -- Integrate with generic cdrom driver.
148 * -- CDROMGETSPINDOWN and CDROMSETSPINDOWN ioctls, based on
149 * a patch from Ciro Cattuto <>.
150 * -- Call set_device_ro.
151 * -- Implement CDROMMECHANISMSTATUS and CDROMSLOTTABLE
152 * ioctls, based on patch by Erik Andersen
153 * -- Add some probes of drive capability during setup.
154 *
155 * 4.01 Nov 11, 1996 -- Split into ide-cd.c and ide-cd.h
156 * -- Removed CDROMMECHANISMSTATUS and CDROMSLOTTABLE
157 * ioctls in favor of a generalized approach
158 * using the generic cdrom driver.
159 * -- Fully integrated with the 2.1.X kernel.
160 * -- Other stuff that I forgot (lots of changes)
161 *
162 * 4.02 Dec 01, 1996 -- Applied patch from Gadi Oxman <gadio@netvision.net.il>
163 * to fix the drive door locking problems.
164 *
165 * 4.03 Dec 04, 1996 -- Added DSC overlap support.
166 * 4.04 Dec 29, 1996 -- Added CDROMREADRAW ioclt based on patch
167 * by Ales Makarov (xmakarov@sun.felk.cvut.cz)
168 *
169 * 4.05 Nov 20, 1997 -- Modified to print more drive info on init
170 * Minor other changes
171 * Fix errors on CDROMSTOP (If you have a "Dolphin",
172 * you must define IHAVEADOLPHIN)
173 * Added identifier so new Sanyo CD-changer works
174 * Better detection if door locking isn't supported
175 *
176 * 4.06 Dec 17, 1997 -- fixed endless "tray open" messages -ml
177 * 4.07 Dec 17, 1997 -- fallback to set pc->stat on "tray open"
178 * 4.08 Dec 18, 1997 -- spew less noise when tray is empty
179 * -- fix speed display for ACER 24X, 18X
180 * 4.09 Jan 04, 1998 -- fix handling of the last block so we return
181 * an end of file instead of an I/O error (Gadi)
182 * 4.10 Jan 24, 1998 -- fixed a bug so now changers can change to a new
183 * slot when there is no disc in the current slot.
184 * -- Fixed a memory leak where info->changer_info was
185 * malloc'ed but never free'd when closing the device.
186 * -- Cleaned up the global namespace a bit by making more
187 * functions static that should already have been.
188 * 4.11 Mar 12, 1998 -- Added support for the CDROM_SELECT_SPEED ioctl
189 * based on a patch for 2.0.33 by Jelle Foks
190 * <jelle@scintilla.utwente.nl>, a patch for 2.0.33
191 * by Toni Giorgino <toni@pcape2.pi.infn.it>, the SCSI
192 * version, and my own efforts. -erik
193 * -- Fixed a stupid bug which egcs was kind enough to
194 * inform me of where "Illegal mode for this track"
195 * was never returned due to a comparison on data
196 * types of limited range.
197 * 4.12 Mar 29, 1998 -- Fixed bug in CDROM_SELECT_SPEED so write speed is
198 * now set ionly for CD-R and CD-RW drives. I had
199 * removed this support because it produced errors.
200 * It produced errors _only_ for non-writers. duh.
201 * 4.13 May 05, 1998 -- Suppress useless "in progress of becoming ready"
202 * messages, since this is not an error.
203 * -- Change error messages to be const
204 * -- Remove a "\t" which looks ugly in the syslogs
205 * 4.14 July 17, 1998 -- Change to pointing to .ps version of ATAPI spec
206 * since the .pdf version doesn't seem to work...
207 * -- Updated the TODO list to something more current.
208 *
209 * 4.15 Aug 25, 1998 -- Updated ide-cd.h to respect mechine endianess,
210 * patch thanks to "Eddie C. Dost" <ecd@skynet.be>
211 *
212 * 4.50 Oct 19, 1998 -- New maintainers!
213 * Jens Axboe <axboe@image.dk>
214 * Chris Zwilling <chris@cloudnet.com>
215 *
216 * 4.51 Dec 23, 1998 -- Jens Axboe <axboe@image.dk>
217 * - ide_cdrom_reset enabled since the ide subsystem
218 * handles resets fine now. <axboe@image.dk>
219 * - Transfer size fix for Samsung CD-ROMs, thanks to
220 * "Ville Hallik" <ville.hallik@mail.ee>.
221 * - other minor stuff.
222 *
223 * 4.52 Jan 19, 1999 -- Jens Axboe <axboe@image.dk>
224 * - Detect DVD-ROM/RAM drives
225 *
226 * 4.53 Feb 22, 1999 - Include other model Samsung and one Goldstar
227 * drive in transfer size limit.
228 * - Fix the I/O error when doing eject without a medium
229 * loaded on some drives.
230 * - CDROMREADMODE2 is now implemented through
231 * CDROMREADRAW, since many drives don't support
232 * MODE2 (even though ATAPI 2.6 says they must).
233 * - Added ignore parameter to ide-cd (as a module), eg
234 * insmod ide-cd ignore='hda hdb'
235 * Useful when using ide-cd in conjunction with
236 * ide-scsi. TODO: non-modular way of doing the
237 * same.
238 *
239 * 4.54 Aug 5, 1999 - Support for MMC2 class commands through the generic
240 * packet interface to cdrom.c.
241 * - Unified audio ioctl support, most of it.
242 * - cleaned up various deprecated verify_area().
243 * - Added ide_cdrom_packet() as the interface for
244 * the Uniform generic_packet().
245 * - bunch of other stuff, will fill in logs later.
246 * - report 1 slot for non-changers, like the other
247 * cd-rom drivers. don't report select disc for
248 * non-changers as well.
249 * - mask out audio playing, if the device can't do it.
250 *
251 * 4.55 Sep 1, 1999 - Eliminated the rest of the audio ioctls, except
252 * for CDROMREADTOC[ENTRY|HEADER]. Some of the drivers
253 * use this independently of the actual audio handling.
254 * They will disappear later when I get the time to
255 * do it cleanly.
256 * - Minimize the TOC reading - only do it when we
257 * know a media change has occurred.
258 * - Moved all the CDROMREADx ioctls to the Uniform layer.
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200259 * - Heiko Eißfeldt <heiko@colossus.escape.de> supplied
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 * some fixes for CDI.
261 * - CD-ROM leaving door locked fix from Andries
262 * Brouwer <Andries.Brouwer@cwi.nl>
263 * - Erik Andersen <andersen@xmission.com> unified
264 * commands across the various drivers and how
265 * sense errors are handled.
266 *
267 * 4.56 Sep 12, 1999 - Removed changer support - it is now in the
268 * Uniform layer.
269 * - Added partition based multisession handling.
270 * - Mode sense and mode select moved to the
271 * Uniform layer.
272 * - Fixed a problem with WPI CDS-32X drive - it
273 * failed the capabilities
274 *
275 * 4.57 Apr 7, 2000 - Fixed sense reporting.
276 * - Fixed possible oops in ide_cdrom_get_last_session()
277 * - Fix locking mania and make ide_cdrom_reset relock
278 * - Stop spewing errors to log when magicdev polls with
279 * TEST_UNIT_READY on some drives.
280 * - Various fixes from Tobias Ringstrom:
281 * tray if it was locked prior to the reset.
282 * - cdrom_read_capacity returns one frame too little.
283 * - Fix real capacity reporting.
284 *
285 * 4.58 May 1, 2000 - Clean up ACER50 stuff.
286 * - Fix small problem with ide_cdrom_capacity
287 *
288 * 4.59 Aug 11, 2000 - Fix changer problem in cdrom_read_toc, we weren't
289 * correctly sensing a disc change.
290 * - Rearranged some code
291 * - Use extended sense on drives that support it for
292 * correctly reporting tray status -- from
293 * Michael D Johnson <johnsom@orst.edu>
294 * 4.60 Dec 17, 2003 - Add mt rainier support
295 * - Bump timeout for packet commands, matches sr
296 * - Odd stuff
297 * 4.61 Jan 22, 2004 - support hardware sector sizes other than 2kB,
298 * Pascal Schmidt <der.eremit@email.de>
299 *
300 *************************************************************************/
301
302#define IDECD_VERSION "4.61"
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#include <linux/module.h>
305#include <linux/types.h>
306#include <linux/kernel.h>
307#include <linux/delay.h>
308#include <linux/timer.h>
309#include <linux/slab.h>
310#include <linux/interrupt.h>
311#include <linux/errno.h>
312#include <linux/cdrom.h>
313#include <linux/ide.h>
314#include <linux/completion.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800315#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317#include <scsi/scsi.h> /* For SCSI -> ATAPI command conversion */
318
319#include <asm/irq.h>
320#include <asm/io.h>
321#include <asm/byteorder.h>
322#include <asm/uaccess.h>
323#include <asm/unaligned.h>
324
325#include "ide-cd.h"
326
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800327static DEFINE_MUTEX(idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329#define to_ide_cd(obj) container_of(obj, struct cdrom_info, kref)
330
331#define ide_cd_g(disk) \
332 container_of((disk)->private_data, struct cdrom_info, driver)
333
334static struct cdrom_info *ide_cd_get(struct gendisk *disk)
335{
336 struct cdrom_info *cd = NULL;
337
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800338 mutex_lock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 cd = ide_cd_g(disk);
340 if (cd)
341 kref_get(&cd->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800342 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return cd;
344}
345
346static void ide_cd_release(struct kref *);
347
348static void ide_cd_put(struct cdrom_info *cd)
349{
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800350 mutex_lock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 kref_put(&cd->kref, ide_cd_release);
Arjan van de Vencf8b8972006-03-23 03:00:45 -0800352 mutex_unlock(&idecd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355/****************************************************************************
356 * Generic packet command support and error handling routines.
357 */
358
359/* Mark that we've seen a media change, and invalidate our internal
360 buffers. */
361static void cdrom_saw_media_change (ide_drive_t *drive)
362{
363 struct cdrom_info *info = drive->driver_data;
364
365 CDROM_STATE_FLAGS (drive)->media_changed = 1;
366 CDROM_STATE_FLAGS (drive)->toc_valid = 0;
367 info->nsectors_buffered = 0;
368}
369
370static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
371 struct request_sense *sense)
372{
373 int log = 0;
374
Jens Axboe4aff5e22006-08-10 08:44:47 +0200375 if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377
378 switch (sense->sense_key) {
379 case NO_SENSE: case RECOVERED_ERROR:
380 break;
381 case NOT_READY:
382 /*
383 * don't care about tray state messages for
384 * e.g. capacity commands or in-progress or
385 * becoming ready
386 */
387 if (sense->asc == 0x3a || sense->asc == 0x04)
388 break;
389 log = 1;
390 break;
391 case ILLEGAL_REQUEST:
392 /*
393 * don't log START_STOP unit with LoEj set, since
394 * we cannot reliably check if drive can auto-close
395 */
396 if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
Alan Coxdbe217a2006-06-25 05:47:44 -0700397 break;
398 log = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 break;
400 case UNIT_ATTENTION:
401 /*
402 * Make good and sure we've seen this potential media
403 * change. Some drives (i.e. Creative) fail to present
404 * the correct sense key in the error register.
405 */
406 cdrom_saw_media_change(drive);
407 break;
408 default:
409 log = 1;
410 break;
411 }
412 return log;
413}
414
415static
416void cdrom_analyze_sense_data(ide_drive_t *drive,
417 struct request *failed_command,
418 struct request_sense *sense)
419{
Alan Coxdbe217a2006-06-25 05:47:44 -0700420 unsigned long sector;
421 unsigned long bio_sectors;
422 unsigned long valid;
423 struct cdrom_info *info = drive->driver_data;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (!cdrom_log_sense(drive, failed_command, sense))
426 return;
427
428 /*
429 * If a read toc is executed for a CD-R or CD-RW medium where
430 * the first toc has not been recorded yet, it will fail with
431 * 05/24/00 (which is a confusing error)
432 */
433 if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
434 if (sense->sense_key == 0x05 && sense->asc == 0x24)
435 return;
436
Alan Coxdbe217a2006-06-25 05:47:44 -0700437 if (sense->error_code == 0x70) { /* Current Error */
438 switch(sense->sense_key) {
439 case MEDIUM_ERROR:
440 case VOLUME_OVERFLOW:
441 case ILLEGAL_REQUEST:
442 if (!sense->valid)
443 break;
444 if (failed_command == NULL ||
445 !blk_fs_request(failed_command))
446 break;
447 sector = (sense->information[0] << 24) |
448 (sense->information[1] << 16) |
449 (sense->information[2] << 8) |
450 (sense->information[3]);
451
452 bio_sectors = bio_sectors(failed_command->bio);
453 if (bio_sectors < 4)
454 bio_sectors = 4;
455 if (drive->queue->hardsect_size == 2048)
456 sector <<= 2; /* Device sector size is 2K */
457 sector &= ~(bio_sectors -1);
458 valid = (sector - failed_command->sector) << 9;
459
460 if (valid < 0)
461 valid = 0;
462 if (sector < get_capacity(info->disk) &&
463 drive->probed_capacity - sector < 4 * 75) {
464 set_capacity(info->disk, sector);
465 }
466 }
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#if VERBOSE_IDE_CD_ERRORS
469 {
470 int i;
Matt Mackall70d1d472005-07-12 13:58:09 -0700471 const char *s = "bad sense key!";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 char buf[80];
473
474 printk ("ATAPI device %s:\n", drive->name);
475 if (sense->error_code==0x70)
476 printk(" Error: ");
477 else if (sense->error_code==0x71)
478 printk(" Deferred Error: ");
479 else if (sense->error_code == 0x7f)
480 printk(" Vendor-specific Error: ");
481 else
482 printk(" Unknown Error Type: ");
483
Robert P. J. Day74c8f972007-07-09 23:17:57 +0200484 if (sense->sense_key < ARRAY_SIZE(sense_key_texts))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 s = sense_key_texts[sense->sense_key];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 printk("%s -- (Sense key=0x%02x)\n", s, sense->sense_key);
488
489 if (sense->asc == 0x40) {
490 sprintf(buf, "Diagnostic failure on component 0x%02x",
491 sense->ascq);
492 s = buf;
493 } else {
Robert P. J. Day74c8f972007-07-09 23:17:57 +0200494 int lo = 0, mid, hi = ARRAY_SIZE(sense_data_texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 unsigned long key = (sense->sense_key << 16);
496 key |= (sense->asc << 8);
497 if (!(sense->ascq >= 0x80 && sense->ascq <= 0xdd))
498 key |= sense->ascq;
499 s = NULL;
500
501 while (hi > lo) {
502 mid = (lo + hi) / 2;
503 if (sense_data_texts[mid].asc_ascq == key ||
504 sense_data_texts[mid].asc_ascq == (0xff0000|key)) {
505 s = sense_data_texts[mid].text;
506 break;
507 }
508 else if (sense_data_texts[mid].asc_ascq > key)
509 hi = mid;
510 else
511 lo = mid+1;
512 }
513 }
514
515 if (s == NULL) {
516 if (sense->asc > 0x80)
517 s = "(vendor-specific error)";
518 else
519 s = "(reserved error code)";
520 }
521
522 printk(KERN_ERR " %s -- (asc=0x%02x, ascq=0x%02x)\n",
523 s, sense->asc, sense->ascq);
524
525 if (failed_command != NULL) {
526
Robert P. J. Day74c8f972007-07-09 23:17:57 +0200527 int lo=0, mid, hi= ARRAY_SIZE(packet_command_texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 s = NULL;
529
530 while (hi > lo) {
531 mid = (lo + hi) / 2;
532 if (packet_command_texts[mid].packet_command ==
533 failed_command->cmd[0]) {
534 s = packet_command_texts[mid].text;
535 break;
536 }
537 if (packet_command_texts[mid].packet_command >
538 failed_command->cmd[0])
539 hi = mid;
540 else
541 lo = mid+1;
542 }
543
544 printk (KERN_ERR " The failed \"%s\" packet command was: \n \"", s);
545 for (i=0; i<sizeof (failed_command->cmd); i++)
546 printk ("%02x ", failed_command->cmd[i]);
547 printk ("\"\n");
548 }
549
550 /* The SKSV bit specifies validity of the sense_key_specific
551 * in the next two commands. It is bit 7 of the first byte.
552 * In the case of NOT_READY, if SKSV is set the drive can
553 * give us nice ETA readings.
554 */
555 if (sense->sense_key == NOT_READY && (sense->sks[0] & 0x80)) {
556 int progress = (sense->sks[1] << 8 | sense->sks[2]) * 100;
557 printk(KERN_ERR " Command is %02d%% complete\n", progress / 0xffff);
558
559 }
560
561 if (sense->sense_key == ILLEGAL_REQUEST &&
562 (sense->sks[0] & 0x80) != 0) {
563 printk(KERN_ERR " Error in %s byte %d",
564 (sense->sks[0] & 0x40) != 0 ?
565 "command packet" : "command data",
566 (sense->sks[1] << 8) + sense->sks[2]);
567
568 if ((sense->sks[0] & 0x40) != 0)
569 printk (" bit %d", sense->sks[0] & 0x07);
570
571 printk ("\n");
572 }
573 }
574
575#else /* not VERBOSE_IDE_CD_ERRORS */
576
577 /* Suppress printing unit attention and `in progress of becoming ready'
578 errors when we're not being verbose. */
579
580 if (sense->sense_key == UNIT_ATTENTION ||
581 (sense->sense_key == NOT_READY && (sense->asc == 4 ||
582 sense->asc == 0x3a)))
583 return;
584
585 printk(KERN_ERR "%s: error code: 0x%02x sense_key: 0x%02x asc: 0x%02x ascq: 0x%02x\n",
586 drive->name,
587 sense->error_code, sense->sense_key,
588 sense->asc, sense->ascq);
589#endif /* not VERBOSE_IDE_CD_ERRORS */
590}
591
592/*
593 * Initialize a ide-cd packet command request
594 */
595static void cdrom_prepare_request(ide_drive_t *drive, struct request *rq)
596{
597 struct cdrom_info *cd = drive->driver_data;
598
599 ide_init_drive_cmd(rq);
Jens Axboecea28852006-10-12 15:08:45 +0200600 rq->cmd_type = REQ_TYPE_ATA_PC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 rq->rq_disk = cd->disk;
602}
603
604static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense,
605 struct request *failed_command)
606{
607 struct cdrom_info *info = drive->driver_data;
608 struct request *rq = &info->request_sense_request;
609
610 if (sense == NULL)
611 sense = &info->sense_data;
612
613 /* stuff the sense request in front of our current request */
614 cdrom_prepare_request(drive, rq);
615
616 rq->data = sense;
617 rq->cmd[0] = GPCMD_REQUEST_SENSE;
618 rq->cmd[4] = rq->data_len = 18;
619
Jens Axboe4aff5e22006-08-10 08:44:47 +0200620 rq->cmd_type = REQ_TYPE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /* NOTE! Save the failed command in "rq->buffer" */
623 rq->buffer = (void *) failed_command;
624
625 (void) ide_do_drive_cmd(drive, rq, ide_preempt);
626}
627
628static void cdrom_end_request (ide_drive_t *drive, int uptodate)
629{
630 struct request *rq = HWGROUP(drive)->rq;
631 int nsectors = rq->hard_cur_sectors;
632
Jens Axboe4aff5e22006-08-10 08:44:47 +0200633 if (blk_sense_request(rq) && uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200635 * For REQ_TYPE_SENSE, "rq->buffer" points to the original
636 * failed request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 */
638 struct request *failed = (struct request *) rq->buffer;
639 struct cdrom_info *info = drive->driver_data;
640 void *sense = &info->sense_data;
641 unsigned long flags;
642
643 if (failed) {
644 if (failed->sense) {
645 sense = failed->sense;
646 failed->sense_len = rq->sense_len;
647 }
Alan Coxdbe217a2006-06-25 05:47:44 -0700648 cdrom_analyze_sense_data(drive, failed, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /*
650 * now end failed request
651 */
Alan Coxdbe217a2006-06-25 05:47:44 -0700652 if (blk_fs_request(failed)) {
653 if (ide_end_dequeued_request(drive, failed, 0,
654 failed->hard_nr_sectors))
655 BUG();
656 } else {
657 spin_lock_irqsave(&ide_lock, flags);
Kiyoshi Ueda5e36bb62008-01-28 10:34:20 +0100658 if (__blk_end_request(failed, -EIO,
659 failed->data_len))
660 BUG();
Alan Coxdbe217a2006-06-25 05:47:44 -0700661 spin_unlock_irqrestore(&ide_lock, flags);
662 }
663 } else
664 cdrom_analyze_sense_data(drive, NULL, sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
667 if (!rq->current_nr_sectors && blk_fs_request(rq))
668 uptodate = 1;
669 /* make sure it's fully ended */
670 if (blk_pc_request(rq))
671 nsectors = (rq->data_len + 511) >> 9;
672 if (!nsectors)
673 nsectors = 1;
674
675 ide_end_request(drive, uptodate, nsectors);
676}
677
Alan Coxdbe217a2006-06-25 05:47:44 -0700678static void ide_dump_status_no_sense(ide_drive_t *drive, const char *msg, u8 stat)
679{
680 if (stat & 0x80)
681 return;
682 ide_dump_status(drive, msg, stat);
683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685/* Returns 0 if the request should be continued.
686 Returns 1 if the request was ended. */
687static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret)
688{
689 struct request *rq = HWGROUP(drive)->rq;
690 int stat, err, sense_key;
691
692 /* Check for errors. */
693 stat = HWIF(drive)->INB(IDE_STATUS_REG);
694 if (stat_ret)
695 *stat_ret = stat;
696
697 if (OK_STAT(stat, good_stat, BAD_R_STAT))
698 return 0;
699
700 /* Get the IDE error register. */
701 err = HWIF(drive)->INB(IDE_ERROR_REG);
702 sense_key = err >> 4;
703
704 if (rq == NULL) {
705 printk("%s: missing rq in cdrom_decode_status\n", drive->name);
706 return 1;
707 }
708
Jens Axboe4aff5e22006-08-10 08:44:47 +0200709 if (blk_sense_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /* We got an error trying to get sense info
711 from the drive (probably while trying
712 to recover from a former error). Just give up. */
713
Jens Axboe4aff5e22006-08-10 08:44:47 +0200714 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 cdrom_end_request(drive, 0);
716 ide_error(drive, "request sense failure", stat);
717 return 1;
718
Jens Axboe8770c012006-10-12 17:24:52 +0200719 } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /* All other functions, except for READ. */
721 unsigned long flags;
722
723 /*
724 * if we have an error, pass back CHECK_CONDITION as the
725 * scsi status byte
726 */
Jens Axboeb7156732006-11-13 18:05:02 +0100727 if (blk_pc_request(rq) && !rq->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 rq->errors = SAM_STAT_CHECK_CONDITION;
729
730 /* Check for tray open. */
731 if (sense_key == NOT_READY) {
732 cdrom_saw_media_change (drive);
733 } else if (sense_key == UNIT_ATTENTION) {
734 /* Check for media change. */
735 cdrom_saw_media_change (drive);
736 /*printk("%s: media changed\n",drive->name);*/
737 return 0;
Stuart Hayes76ca1af2007-04-10 22:38:43 +0200738 } else if ((sense_key == ILLEGAL_REQUEST) &&
739 (rq->cmd[0] == GPCMD_START_STOP_UNIT)) {
740 /*
741 * Don't print error message for this condition--
742 * SFF8090i indicates that 5/24/00 is the correct
743 * response to a request to close the tray if the
744 * drive doesn't have that capability.
745 * cdrom_log_sense() knows this!
746 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200747 } else if (!(rq->cmd_flags & REQ_QUIET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* Otherwise, print an error. */
749 ide_dump_status(drive, "packet command error", stat);
750 }
751
Jens Axboe4aff5e22006-08-10 08:44:47 +0200752 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /*
755 * instead of playing games with moving completions around,
756 * remove failed request completely and end it when the
757 * request sense has completed
758 */
759 if (stat & ERR_STAT) {
760 spin_lock_irqsave(&ide_lock, flags);
761 blkdev_dequeue_request(rq);
762 HWGROUP(drive)->rq = NULL;
763 spin_unlock_irqrestore(&ide_lock, flags);
764
765 cdrom_queue_request_sense(drive, rq->sense, rq);
766 } else
767 cdrom_end_request(drive, 0);
768
769 } else if (blk_fs_request(rq)) {
770 int do_end_request = 0;
771
772 /* Handle errors from READ and WRITE requests. */
773
774 if (blk_noretry_request(rq))
775 do_end_request = 1;
776
777 if (sense_key == NOT_READY) {
778 /* Tray open. */
779 if (rq_data_dir(rq) == READ) {
780 cdrom_saw_media_change (drive);
781
782 /* Fail the request. */
783 printk ("%s: tray open\n", drive->name);
784 do_end_request = 1;
785 } else {
786 struct cdrom_info *info = drive->driver_data;
787
788 /* allow the drive 5 seconds to recover, some
789 * devices will return this error while flushing
790 * data from cache */
791 if (!rq->errors)
792 info->write_timeout = jiffies + ATAPI_WAIT_WRITE_BUSY;
793 rq->errors = 1;
794 if (time_after(jiffies, info->write_timeout))
795 do_end_request = 1;
796 else {
797 unsigned long flags;
798
799 /*
800 * take a breather relying on the
801 * unplug timer to kick us again
802 */
803 spin_lock_irqsave(&ide_lock, flags);
804 blk_plug_device(drive->queue);
805 spin_unlock_irqrestore(&ide_lock,flags);
806 return 1;
807 }
808 }
809 } else if (sense_key == UNIT_ATTENTION) {
810 /* Media change. */
811 cdrom_saw_media_change (drive);
812
813 /* Arrange to retry the request.
814 But be sure to give up if we've retried
815 too many times. */
816 if (++rq->errors > ERROR_MAX)
817 do_end_request = 1;
818 } else if (sense_key == ILLEGAL_REQUEST ||
819 sense_key == DATA_PROTECT) {
820 /* No point in retrying after an illegal
821 request or data protect error.*/
Alan Coxdbe217a2006-06-25 05:47:44 -0700822 ide_dump_status_no_sense (drive, "command error", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 do_end_request = 1;
824 } else if (sense_key == MEDIUM_ERROR) {
825 /* No point in re-trying a zillion times on a bad
826 * sector... If we got here the error is not correctable */
Alan Coxdbe217a2006-06-25 05:47:44 -0700827 ide_dump_status_no_sense (drive, "media error (bad sector)", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 do_end_request = 1;
829 } else if (sense_key == BLANK_CHECK) {
830 /* Disk appears blank ?? */
Alan Coxdbe217a2006-06-25 05:47:44 -0700831 ide_dump_status_no_sense (drive, "media error (blank)", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 do_end_request = 1;
833 } else if ((err & ~ABRT_ERR) != 0) {
834 /* Go to the default handler
835 for other errors. */
836 ide_error(drive, "cdrom_decode_status", stat);
837 return 1;
838 } else if ((++rq->errors > ERROR_MAX)) {
839 /* We've racked up too many retries. Abort. */
840 do_end_request = 1;
841 }
842
Alan Coxdbe217a2006-06-25 05:47:44 -0700843 /* End a request through request sense analysis when we have
844 sense data. We need this in order to perform end of media
845 processing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Alan Coxdbe217a2006-06-25 05:47:44 -0700847 if (do_end_request) {
848 if (stat & ERR_STAT) {
849 unsigned long flags;
850 spin_lock_irqsave(&ide_lock, flags);
851 blkdev_dequeue_request(rq);
852 HWGROUP(drive)->rq = NULL;
853 spin_unlock_irqrestore(&ide_lock, flags);
854
855 cdrom_queue_request_sense(drive, rq->sense, rq);
856 } else
857 cdrom_end_request(drive, 0);
858 } else {
859 /* If we got a CHECK_CONDITION status,
860 queue a request sense command. */
861 if (stat & ERR_STAT)
862 cdrom_queue_request_sense(drive, NULL, NULL);
863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 } else {
865 blk_dump_rq_flags(rq, "ide-cd: bad rq");
866 cdrom_end_request(drive, 0);
867 }
868
869 /* Retry, or handle the next request. */
870 return 1;
871}
872
873static int cdrom_timer_expiry(ide_drive_t *drive)
874{
875 struct request *rq = HWGROUP(drive)->rq;
876 unsigned long wait = 0;
877
878 /*
879 * Some commands are *slow* and normally take a long time to
880 * complete. Usually we can use the ATAPI "disconnect" to bypass
881 * this, but not all commands/drives support that. Let
882 * ide_timer_expiry keep polling us for these.
883 */
884 switch (rq->cmd[0]) {
885 case GPCMD_BLANK:
886 case GPCMD_FORMAT_UNIT:
887 case GPCMD_RESERVE_RZONE_TRACK:
888 case GPCMD_CLOSE_TRACK:
889 case GPCMD_FLUSH_CACHE:
890 wait = ATAPI_WAIT_PC;
891 break;
892 default:
Jens Axboe4aff5e22006-08-10 08:44:47 +0200893 if (!(rq->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 printk(KERN_INFO "ide-cd: cmd 0x%x timed out\n", rq->cmd[0]);
895 wait = 0;
896 break;
897 }
898 return wait;
899}
900
901/* Set up the device registers for transferring a packet command on DEV,
902 expecting to later transfer XFERLEN bytes. HANDLER is the routine
903 which actually transfers the command to the drive. If this is a
904 drq_interrupt device, this routine will arrange for HANDLER to be
905 called when the interrupt from the drive arrives. Otherwise, HANDLER
906 will be called immediately after the drive is prepared for the transfer. */
907
908static ide_startstop_t cdrom_start_packet_command(ide_drive_t *drive,
909 int xferlen,
910 ide_handler_t *handler)
911{
912 ide_startstop_t startstop;
913 struct cdrom_info *info = drive->driver_data;
914 ide_hwif_t *hwif = drive->hwif;
915
916 /* Wait for the controller to be idle. */
917 if (ide_wait_stat(&startstop, drive, 0, BUSY_STAT, WAIT_READY))
918 return startstop;
919
Bartlomiej Zolnierkiewicz3a6a3542008-01-25 22:17:13 +0100920 /* FIXME: for Virtual DMA we must check harder */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (info->dma)
922 info->dma = !hwif->dma_setup(drive);
923
924 /* Set up the controller registers. */
Bartlomiej Zolnierkiewicz2fc57382008-01-25 22:17:13 +0100925 ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL |
926 IDE_TFLAG_NO_SELECT_MASK, xferlen, info->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 if (CDROM_CONFIG_FLAGS (drive)->drq_interrupt) {
Albert Leef0dd8712007-02-17 02:40:21 +0100929 /* waiting for CDB interrupt, not DMA yet. */
930 if (info->dma)
931 drive->waiting_for_dma = 0;
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /* packet command */
934 ide_execute_command(drive, WIN_PACKETCMD, handler, ATAPI_WAIT_PC, cdrom_timer_expiry);
935 return ide_started;
936 } else {
937 unsigned long flags;
938
939 /* packet command */
940 spin_lock_irqsave(&ide_lock, flags);
941 hwif->OUTBSYNC(drive, WIN_PACKETCMD, IDE_COMMAND_REG);
942 ndelay(400);
943 spin_unlock_irqrestore(&ide_lock, flags);
944
945 return (*handler) (drive);
946 }
947}
948
949/* Send a packet command to DRIVE described by CMD_BUF and CMD_LEN.
950 The device registers must have already been prepared
951 by cdrom_start_packet_command.
952 HANDLER is the interrupt handler to call when the command completes
953 or there's data ready. */
954/*
955 * changed 5 parameters to 3 for dvd-ram
956 * struct packet_command *pc; now packet_command_t *pc;
957 */
958#define ATAPI_MIN_CDB_BYTES 12
959static ide_startstop_t cdrom_transfer_packet_command (ide_drive_t *drive,
960 struct request *rq,
961 ide_handler_t *handler)
962{
963 ide_hwif_t *hwif = drive->hwif;
964 int cmd_len;
965 struct cdrom_info *info = drive->driver_data;
966 ide_startstop_t startstop;
967
968 if (CDROM_CONFIG_FLAGS(drive)->drq_interrupt) {
969 /* Here we should have been called after receiving an interrupt
970 from the device. DRQ should how be set. */
971
972 /* Check for errors. */
973 if (cdrom_decode_status(drive, DRQ_STAT, NULL))
974 return ide_stopped;
Albert Leef0dd8712007-02-17 02:40:21 +0100975
976 /* Ok, next interrupt will be DMA interrupt. */
977 if (info->dma)
978 drive->waiting_for_dma = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 } else {
980 /* Otherwise, we must wait for DRQ to get set. */
981 if (ide_wait_stat(&startstop, drive, DRQ_STAT,
982 BUSY_STAT, WAIT_READY))
983 return startstop;
984 }
985
986 /* Arm the interrupt handler. */
987 ide_set_handler(drive, handler, rq->timeout, cdrom_timer_expiry);
988
989 /* ATAPI commands get padded out to 12 bytes minimum */
990 cmd_len = COMMAND_SIZE(rq->cmd[0]);
991 if (cmd_len < ATAPI_MIN_CDB_BYTES)
992 cmd_len = ATAPI_MIN_CDB_BYTES;
993
994 /* Send the command to the device. */
995 HWIF(drive)->atapi_output_bytes(drive, rq->cmd, cmd_len);
996
997 /* Start the DMA if need be */
998 if (info->dma)
999 hwif->dma_start(drive);
1000
1001 return ide_started;
1002}
1003
1004/****************************************************************************
1005 * Block read functions.
1006 */
1007
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001008typedef void (xfer_func_t)(ide_drive_t *, void *, u32);
1009
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001010static void ide_cd_pad_transfer(ide_drive_t *drive, xfer_func_t *xf, int len)
1011{
1012 while (len > 0) {
1013 int dum = 0;
1014 xf(drive, &dum, sizeof(dum));
1015 len -= sizeof(dum);
1016 }
1017}
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019/*
1020 * Buffer up to SECTORS_TO_TRANSFER sectors from the drive in our sector
1021 * buffer. Once the first sector is added, any subsequent sectors are
1022 * assumed to be continuous (until the buffer is cleared). For the first
1023 * sector added, SECTOR is its sector number. (SECTOR is then ignored until
1024 * the buffer is cleared.)
1025 */
1026static void cdrom_buffer_sectors (ide_drive_t *drive, unsigned long sector,
1027 int sectors_to_transfer)
1028{
1029 struct cdrom_info *info = drive->driver_data;
1030
1031 /* Number of sectors to read into the buffer. */
1032 int sectors_to_buffer = min_t(int, sectors_to_transfer,
1033 (SECTOR_BUFFER_SIZE >> SECTOR_BITS) -
1034 info->nsectors_buffered);
1035
1036 char *dest;
1037
1038 /* If we couldn't get a buffer, don't try to buffer anything... */
1039 if (info->buffer == NULL)
1040 sectors_to_buffer = 0;
1041
1042 /* If this is the first sector in the buffer, remember its number. */
1043 if (info->nsectors_buffered == 0)
1044 info->sector_buffered = sector;
1045
1046 /* Read the data into the buffer. */
1047 dest = info->buffer + info->nsectors_buffered * SECTOR_SIZE;
1048 while (sectors_to_buffer > 0) {
1049 HWIF(drive)->atapi_input_bytes(drive, dest, SECTOR_SIZE);
1050 --sectors_to_buffer;
1051 --sectors_to_transfer;
1052 ++info->nsectors_buffered;
1053 dest += SECTOR_SIZE;
1054 }
1055
1056 /* Throw away any remaining data. */
1057 while (sectors_to_transfer > 0) {
1058 static char dum[SECTOR_SIZE];
1059 HWIF(drive)->atapi_input_bytes(drive, dum, sizeof (dum));
1060 --sectors_to_transfer;
1061 }
1062}
1063
1064/*
1065 * Check the contents of the interrupt reason register from the cdrom
1066 * and attempt to recover if there are problems. Returns 0 if everything's
1067 * ok; nonzero if the request has been terminated.
1068 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001069static
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070int cdrom_read_check_ireason (ide_drive_t *drive, int len, int ireason)
1071{
1072 if (ireason == 2)
1073 return 0;
1074 else if (ireason == 0) {
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001075 ide_hwif_t *hwif = drive->hwif;
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /* Whoops... The drive is expecting to receive data from us! */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +01001078 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
1079 drive->name, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 /* Throw some data at the drive so it doesn't hang
1082 and quit this request. */
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001083 ide_cd_pad_transfer(drive, hwif->atapi_output_bytes, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 } else if (ireason == 1) {
1085 /* Some drives (ASUS) seem to tell us that status
1086 * info is available. just get it and ignore.
1087 */
1088 (void) HWIF(drive)->INB(IDE_STATUS_REG);
1089 return 0;
1090 } else {
1091 /* Drive wants a command packet, or invalid ireason... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +01001092 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
1093 drive->name, __FUNCTION__, ireason);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
1096 cdrom_end_request(drive, 0);
1097 return -1;
1098}
1099
1100/*
1101 * Interrupt routine. Called when a read request has completed.
1102 */
1103static ide_startstop_t cdrom_read_intr (ide_drive_t *drive)
1104{
1105 int stat;
1106 int ireason, len, sectors_to_transfer, nskip;
1107 struct cdrom_info *info = drive->driver_data;
1108 u8 lowcyl = 0, highcyl = 0;
1109 int dma = info->dma, dma_error = 0;
1110
1111 struct request *rq = HWGROUP(drive)->rq;
1112
1113 /*
1114 * handle dma case
1115 */
1116 if (dma) {
1117 info->dma = 0;
Bartlomiej Zolnierkiewicz52ef2ed2007-12-24 15:23:43 +01001118 dma_error = HWIF(drive)->ide_dma_end(drive);
1119 if (dma_error) {
1120 printk(KERN_ERR "%s: DMA read error\n", drive->name);
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001121 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz52ef2ed2007-12-24 15:23:43 +01001122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
1125 if (cdrom_decode_status(drive, 0, &stat))
1126 return ide_stopped;
1127
1128 if (dma) {
1129 if (!dma_error) {
1130 ide_end_request(drive, 1, rq->nr_sectors);
1131 return ide_stopped;
1132 } else
1133 return ide_error(drive, "dma error", stat);
1134 }
1135
1136 /* Read the interrupt reason and the transfer length. */
1137 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
1138 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1139 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1140
1141 len = lowcyl + (256 * highcyl);
1142
1143 /* If DRQ is clear, the command has completed. */
1144 if ((stat & DRQ_STAT) == 0) {
1145 /* If we're not done filling the current buffer, complain.
1146 Otherwise, complete the command normally. */
1147 if (rq->current_nr_sectors > 0) {
1148 printk (KERN_ERR "%s: cdrom_read_intr: data underrun (%d blocks)\n",
1149 drive->name, rq->current_nr_sectors);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001150 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 cdrom_end_request(drive, 0);
1152 } else
1153 cdrom_end_request(drive, 1);
1154 return ide_stopped;
1155 }
1156
1157 /* Check that the drive is expecting to do the same thing we are. */
1158 if (cdrom_read_check_ireason (drive, len, ireason))
1159 return ide_stopped;
1160
1161 /* Assume that the drive will always provide data in multiples
1162 of at least SECTOR_SIZE, as it gets hairy to keep track
1163 of the transfers otherwise. */
1164 if ((len % SECTOR_SIZE) != 0) {
1165 printk (KERN_ERR "%s: cdrom_read_intr: Bad transfer size %d\n",
1166 drive->name, len);
1167 if (CDROM_CONFIG_FLAGS(drive)->limit_nframes)
1168 printk (KERN_ERR " This drive is not supported by this version of the driver\n");
1169 else {
1170 printk (KERN_ERR " Trying to limit transfer sizes\n");
1171 CDROM_CONFIG_FLAGS(drive)->limit_nframes = 1;
1172 }
1173 cdrom_end_request(drive, 0);
1174 return ide_stopped;
1175 }
1176
1177 /* The number of sectors we need to read from the drive. */
1178 sectors_to_transfer = len / SECTOR_SIZE;
1179
1180 /* First, figure out if we need to bit-bucket
1181 any of the leading sectors. */
1182 nskip = min_t(int, rq->current_nr_sectors - bio_cur_sectors(rq->bio), sectors_to_transfer);
1183
1184 while (nskip > 0) {
1185 /* We need to throw away a sector. */
1186 static char dum[SECTOR_SIZE];
1187 HWIF(drive)->atapi_input_bytes(drive, dum, sizeof (dum));
1188
1189 --rq->current_nr_sectors;
1190 --nskip;
1191 --sectors_to_transfer;
1192 }
1193
1194 /* Now loop while we still have data to read from the drive. */
1195 while (sectors_to_transfer > 0) {
1196 int this_transfer;
1197
1198 /* If we've filled the present buffer but there's another
1199 chained buffer after it, move on. */
1200 if (rq->current_nr_sectors == 0 && rq->nr_sectors)
1201 cdrom_end_request(drive, 1);
1202
1203 /* If the buffers are full, cache the rest of the data in our
1204 internal buffer. */
1205 if (rq->current_nr_sectors == 0) {
1206 cdrom_buffer_sectors(drive, rq->sector, sectors_to_transfer);
1207 sectors_to_transfer = 0;
1208 } else {
1209 /* Transfer data to the buffers.
1210 Figure out how many sectors we can transfer
1211 to the current buffer. */
1212 this_transfer = min_t(int, sectors_to_transfer,
1213 rq->current_nr_sectors);
1214
1215 /* Read this_transfer sectors
1216 into the current buffer. */
1217 while (this_transfer > 0) {
1218 HWIF(drive)->atapi_input_bytes(drive, rq->buffer, SECTOR_SIZE);
1219 rq->buffer += SECTOR_SIZE;
1220 --rq->nr_sectors;
1221 --rq->current_nr_sectors;
1222 ++rq->sector;
1223 --this_transfer;
1224 --sectors_to_transfer;
1225 }
1226 }
1227 }
1228
1229 /* Done moving data! Wait for another interrupt. */
1230 ide_set_handler(drive, &cdrom_read_intr, ATAPI_WAIT_PC, NULL);
1231 return ide_started;
1232}
1233
1234/*
1235 * Try to satisfy some of the current read request from our cached data.
1236 * Returns nonzero if the request has been completed, zero otherwise.
1237 */
1238static int cdrom_read_from_buffer (ide_drive_t *drive)
1239{
1240 struct cdrom_info *info = drive->driver_data;
1241 struct request *rq = HWGROUP(drive)->rq;
1242 unsigned short sectors_per_frame;
1243
1244 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1245
1246 /* Can't do anything if there's no buffer. */
1247 if (info->buffer == NULL) return 0;
1248
1249 /* Loop while this request needs data and the next block is present
1250 in our cache. */
1251 while (rq->nr_sectors > 0 &&
1252 rq->sector >= info->sector_buffered &&
1253 rq->sector < info->sector_buffered + info->nsectors_buffered) {
1254 if (rq->current_nr_sectors == 0)
1255 cdrom_end_request(drive, 1);
1256
1257 memcpy (rq->buffer,
1258 info->buffer +
1259 (rq->sector - info->sector_buffered) * SECTOR_SIZE,
1260 SECTOR_SIZE);
1261 rq->buffer += SECTOR_SIZE;
1262 --rq->current_nr_sectors;
1263 --rq->nr_sectors;
1264 ++rq->sector;
1265 }
1266
1267 /* If we've satisfied the current request,
1268 terminate it successfully. */
1269 if (rq->nr_sectors == 0) {
1270 cdrom_end_request(drive, 1);
1271 return -1;
1272 }
1273
1274 /* Move on to the next buffer if needed. */
1275 if (rq->current_nr_sectors == 0)
1276 cdrom_end_request(drive, 1);
1277
1278 /* If this condition does not hold, then the kluge i use to
1279 represent the number of sectors to skip at the start of a transfer
1280 will fail. I think that this will never happen, but let's be
1281 paranoid and check. */
1282 if (rq->current_nr_sectors < bio_cur_sectors(rq->bio) &&
1283 (rq->sector & (sectors_per_frame - 1))) {
1284 printk(KERN_ERR "%s: cdrom_read_from_buffer: buffer botch (%ld)\n",
1285 drive->name, (long)rq->sector);
1286 cdrom_end_request(drive, 0);
1287 return -1;
1288 }
1289
1290 return 0;
1291}
1292
1293/*
1294 * Routine to send a read packet command to the drive.
1295 * This is usually called directly from cdrom_start_read.
1296 * However, for drq_interrupt devices, it is called from an interrupt
1297 * when the drive is ready to accept the command.
1298 */
1299static ide_startstop_t cdrom_start_read_continuation (ide_drive_t *drive)
1300{
1301 struct request *rq = HWGROUP(drive)->rq;
1302 unsigned short sectors_per_frame;
1303 int nskip;
1304
1305 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1306
1307 /* If the requested sector doesn't start on a cdrom block boundary,
1308 we must adjust the start of the transfer so that it does,
1309 and remember to skip the first few sectors.
1310 If the CURRENT_NR_SECTORS field is larger than the size
1311 of the buffer, it will mean that we're to skip a number
1312 of sectors equal to the amount by which CURRENT_NR_SECTORS
1313 is larger than the buffer size. */
1314 nskip = rq->sector & (sectors_per_frame - 1);
1315 if (nskip > 0) {
1316 /* Sanity check... */
1317 if (rq->current_nr_sectors != bio_cur_sectors(rq->bio) &&
1318 (rq->sector & (sectors_per_frame - 1))) {
1319 printk(KERN_ERR "%s: cdrom_start_read_continuation: buffer botch (%u)\n",
1320 drive->name, rq->current_nr_sectors);
1321 cdrom_end_request(drive, 0);
1322 return ide_stopped;
1323 }
1324 rq->current_nr_sectors += nskip;
1325 }
1326
1327 /* Set up the command */
1328 rq->timeout = ATAPI_WAIT_PC;
1329
1330 /* Send the command to the drive and return. */
1331 return cdrom_transfer_packet_command(drive, rq, &cdrom_read_intr);
1332}
1333
1334
1335#define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
1336#define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
1337#define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */
1338
1339static ide_startstop_t cdrom_seek_intr (ide_drive_t *drive)
1340{
1341 struct cdrom_info *info = drive->driver_data;
1342 int stat;
1343 static int retry = 10;
1344
1345 if (cdrom_decode_status(drive, 0, &stat))
1346 return ide_stopped;
1347 CDROM_CONFIG_FLAGS(drive)->seeking = 1;
1348
1349 if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) {
1350 if (--retry == 0) {
1351 /*
1352 * this condition is far too common, to bother
1353 * users about it
1354 */
1355 /* printk("%s: disabled DSC seek overlap\n", drive->name);*/
1356 drive->dsc_overlap = 0;
1357 }
1358 }
1359 return ide_stopped;
1360}
1361
1362static ide_startstop_t cdrom_start_seek_continuation (ide_drive_t *drive)
1363{
1364 struct request *rq = HWGROUP(drive)->rq;
1365 sector_t frame = rq->sector;
1366
1367 sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS);
1368
1369 memset(rq->cmd, 0, sizeof(rq->cmd));
1370 rq->cmd[0] = GPCMD_SEEK;
1371 put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]);
1372
1373 rq->timeout = ATAPI_WAIT_PC;
1374 return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr);
1375}
1376
1377static ide_startstop_t cdrom_start_seek (ide_drive_t *drive, unsigned int block)
1378{
1379 struct cdrom_info *info = drive->driver_data;
1380
1381 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 info->start_seek = jiffies;
1383 return cdrom_start_packet_command(drive, 0, cdrom_start_seek_continuation);
1384}
1385
1386/* Fix up a possibly partially-processed request so that we can
1387 start it over entirely, or even put it back on the request queue. */
1388static void restore_request (struct request *rq)
1389{
1390 if (rq->buffer != bio_data(rq->bio)) {
1391 sector_t n = (rq->buffer - (char *) bio_data(rq->bio)) / SECTOR_SIZE;
1392
1393 rq->buffer = bio_data(rq->bio);
1394 rq->nr_sectors += n;
1395 rq->sector -= n;
1396 }
1397 rq->hard_cur_sectors = rq->current_nr_sectors = bio_cur_sectors(rq->bio);
1398 rq->hard_nr_sectors = rq->nr_sectors;
1399 rq->hard_sector = rq->sector;
1400 rq->q->prep_rq_fn(rq->q, rq);
1401}
1402
1403/*
1404 * Start a read request from the CD-ROM.
1405 */
1406static ide_startstop_t cdrom_start_read (ide_drive_t *drive, unsigned int block)
1407{
1408 struct cdrom_info *info = drive->driver_data;
1409 struct request *rq = HWGROUP(drive)->rq;
1410 unsigned short sectors_per_frame;
1411
1412 sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1413
1414 /* We may be retrying this request after an error. Fix up
1415 any weirdness which might be present in the request packet. */
1416 restore_request(rq);
1417
1418 /* Satisfy whatever we can of this request from our cached sector. */
1419 if (cdrom_read_from_buffer(drive))
1420 return ide_stopped;
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /* Clear the local sector buffer. */
1423 info->nsectors_buffered = 0;
1424
1425 /* use dma, if possible. */
1426 info->dma = drive->using_dma;
1427 if ((rq->sector & (sectors_per_frame - 1)) ||
1428 (rq->nr_sectors & (sectors_per_frame - 1)))
1429 info->dma = 0;
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /* Start sending the read request to the drive. */
1432 return cdrom_start_packet_command(drive, 32768, cdrom_start_read_continuation);
1433}
1434
1435/****************************************************************************
1436 * Execute all other packet commands.
1437 */
1438
1439/* Interrupt routine for packet command completion. */
1440static ide_startstop_t cdrom_pc_intr (ide_drive_t *drive)
1441{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001443 xfer_func_t *xferfunc = NULL;
1444 int stat, ireason, len, thislen, write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 u8 lowcyl = 0, highcyl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 /* Check for errors. */
1448 if (cdrom_decode_status(drive, 0, &stat))
1449 return ide_stopped;
1450
1451 /* Read the interrupt reason and the transfer length. */
Bartlomiej Zolnierkiewicz8606ab02007-12-24 15:23:44 +01001452 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1454 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1455
1456 len = lowcyl + (256 * highcyl);
1457
1458 /* If DRQ is clear, the command has completed.
1459 Complain if we still have data left to transfer. */
1460 if ((stat & DRQ_STAT) == 0) {
1461 /* Some of the trailing request sense fields are optional, and
1462 some drives don't send them. Sigh. */
1463 if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
1464 rq->data_len > 0 &&
1465 rq->data_len <= 5) {
1466 while (rq->data_len > 0) {
1467 *(unsigned char *)rq->data++ = 0;
1468 --rq->data_len;
1469 }
1470 }
1471
1472 if (rq->data_len == 0)
1473 cdrom_end_request(drive, 1);
1474 else {
1475 /* Comment this out, because this always happens
1476 right after a reset occurs, and it is annoying to
1477 always print expected stuff. */
1478 /*
1479 printk ("%s: cdrom_pc_intr: data underrun %d\n",
1480 drive->name, pc->buflen);
1481 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001482 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 cdrom_end_request(drive, 0);
1484 }
1485 return ide_stopped;
1486 }
1487
1488 /* Figure out how much data to transfer. */
1489 thislen = rq->data_len;
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001490 if (thislen > len)
1491 thislen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Bartlomiej Zolnierkiewicz8606ab02007-12-24 15:23:44 +01001493 if (ireason == 0) {
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001494 write = 1;
1495 xferfunc = HWIF(drive)->atapi_output_bytes;
1496 } else if (ireason == 2) {
1497 write = 0;
1498 xferfunc = HWIF(drive)->atapi_input_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001501 if (xferfunc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (!rq->data) {
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001503 blk_dump_rq_flags(rq, write ? "cdrom_pc_intr, write"
1504 : "cdrom_pc_intr, read");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 goto confused;
1506 }
1507 /* Transfer the data. */
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001508 xferfunc(drive, rq->data, thislen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 /* Keep count of how much data we've moved. */
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001511 len -= thislen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 rq->data += thislen;
1513 rq->data_len -= thislen;
1514
Bartlomiej Zolnierkiewicz68661c52008-02-01 23:09:17 +01001515 if (write && blk_sense_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 rq->sense_len += thislen;
1517 } else {
1518confused:
1519 printk (KERN_ERR "%s: cdrom_pc_intr: The drive "
Rachita Kothiyal1ad55442006-06-23 02:02:56 -07001520 "appears confused (ireason = 0x%02x). "
1521 "Trying to recover by ending request.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 drive->name, ireason);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001523 rq->cmd_flags |= REQ_FAILED;
Rachita Kothiyal1ad55442006-06-23 02:02:56 -07001524 cdrom_end_request(drive, 0);
1525 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001528 /*
1529 * If we haven't moved enough data to satisfy the drive,
1530 * add some padding.
1531 */
1532 if (len > 0)
1533 ide_cd_pad_transfer(drive, xferfunc, len);
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 /* Now we wait for another interrupt. */
1536 ide_set_handler(drive, &cdrom_pc_intr, ATAPI_WAIT_PC, cdrom_timer_expiry);
1537 return ide_started;
1538}
1539
1540static ide_startstop_t cdrom_do_pc_continuation (ide_drive_t *drive)
1541{
1542 struct request *rq = HWGROUP(drive)->rq;
1543
1544 if (!rq->timeout)
1545 rq->timeout = ATAPI_WAIT_PC;
1546
1547 /* Send the command to the drive and return. */
1548 return cdrom_transfer_packet_command(drive, rq, &cdrom_pc_intr);
1549}
1550
1551
1552static ide_startstop_t cdrom_do_packet_command (ide_drive_t *drive)
1553{
1554 int len;
1555 struct request *rq = HWGROUP(drive)->rq;
1556 struct cdrom_info *info = drive->driver_data;
1557
1558 info->dma = 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001559 rq->cmd_flags &= ~REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 len = rq->data_len;
1561
1562 /* Start sending the command to the drive. */
1563 return cdrom_start_packet_command(drive, len, cdrom_do_pc_continuation);
1564}
1565
1566
Alan Coxdbe217a2006-06-25 05:47:44 -07001567static int cdrom_queue_packet_command(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 struct request_sense sense;
1570 int retries = 10;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001571 unsigned int flags = rq->cmd_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 if (rq->sense == NULL)
1574 rq->sense = &sense;
1575
1576 /* Start of retry loop. */
1577 do {
1578 int error;
1579 unsigned long time = jiffies;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001580 rq->cmd_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 error = ide_do_drive_cmd(drive, rq, ide_wait);
1583 time = jiffies - time;
1584
1585 /* FIXME: we should probably abort/retry or something
1586 * in case of failure */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001587 if (rq->cmd_flags & REQ_FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /* The request failed. Retry if it was due to a unit
1589 attention status
1590 (usually means media was changed). */
1591 struct request_sense *reqbuf = rq->sense;
1592
1593 if (reqbuf->sense_key == UNIT_ATTENTION)
1594 cdrom_saw_media_change(drive);
1595 else if (reqbuf->sense_key == NOT_READY &&
1596 reqbuf->asc == 4 && reqbuf->ascq != 4) {
1597 /* The drive is in the process of loading
1598 a disk. Retry, but wait a little to give
1599 the drive time to complete the load. */
1600 ssleep(2);
1601 } else {
1602 /* Otherwise, don't retry. */
1603 retries = 0;
1604 }
1605 --retries;
1606 }
1607
1608 /* End of retry loop. */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001609 } while ((rq->cmd_flags & REQ_FAILED) && retries >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 /* Return an error if the command failed. */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001612 return (rq->cmd_flags & REQ_FAILED) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
1615/*
1616 * Write handling
1617 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001618static int cdrom_write_check_ireason(ide_drive_t *drive, int len, int ireason)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
1620 /* Two notes about IDE interrupt reason here - 0 means that
1621 * the drive wants to receive data from us, 2 means that
1622 * the drive is expecting to transfer data to us.
1623 */
1624 if (ireason == 0)
1625 return 0;
1626 else if (ireason == 2) {
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001627 ide_hwif_t *hwif = drive->hwif;
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 /* Whoops... The drive wants to send data. */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +01001630 printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
1631 drive->name, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001633 ide_cd_pad_transfer(drive, hwif->atapi_input_bytes, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 } else {
1635 /* Drive wants a command packet, or invalid ireason... */
Bartlomiej Zolnierkiewicz35379c02007-12-24 15:23:43 +01001636 printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
1637 drive->name, __FUNCTION__, ireason);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
1640 cdrom_end_request(drive, 0);
1641 return 1;
1642}
1643
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001644/*
1645 * Called from blk_end_request_callback() after the data of the request
1646 * is completed and before the request is completed.
1647 * By returning value '1', blk_end_request_callback() returns immediately
1648 * without completing the request.
1649 */
1650static int cdrom_newpc_intr_dummy_cb(struct request *rq)
1651{
1652 return 1;
1653}
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655/*
1656 * best way to deal with dma that is not sector aligned right now... note
1657 * that in this path we are not using ->data or ->buffer at all. this irs
1658 * can replace cdrom_pc_intr, cdrom_read_intr, and cdrom_write_intr in the
1659 * future.
1660 */
1661static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
1662{
1663 struct cdrom_info *info = drive->driver_data;
1664 struct request *rq = HWGROUP(drive)->rq;
1665 int dma_error, dma, stat, ireason, len, thislen;
1666 u8 lowcyl, highcyl;
1667 xfer_func_t *xferfunc;
1668 unsigned long flags;
1669
1670 /* Check for errors. */
1671 dma_error = 0;
1672 dma = info->dma;
1673 if (dma) {
1674 info->dma = 0;
1675 dma_error = HWIF(drive)->ide_dma_end(drive);
1676 }
1677
1678 if (cdrom_decode_status(drive, 0, &stat))
1679 return ide_stopped;
1680
1681 /*
1682 * using dma, transfer is complete now
1683 */
1684 if (dma) {
1685 if (dma_error) {
1686 printk(KERN_ERR "ide-cd: dma error\n");
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001687 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return ide_error(drive, "dma error", stat);
1689 }
1690
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001691 spin_lock_irqsave(&ide_lock, flags);
1692 if (__blk_end_request(rq, 0, rq->data_len))
1693 BUG();
1694 HWGROUP(drive)->rq = NULL;
1695 spin_unlock_irqrestore(&ide_lock, flags);
1696
1697 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
1699
1700 /*
1701 * ok we fall to pio :/
1702 */
1703 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
1704 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1705 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1706
1707 len = lowcyl + (256 * highcyl);
1708 thislen = rq->data_len;
1709 if (thislen > len)
1710 thislen = len;
1711
1712 /*
1713 * If DRQ is clear, the command has completed.
1714 */
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001715 if ((stat & DRQ_STAT) == 0) {
1716 spin_lock_irqsave(&ide_lock, flags);
Jens Axboe4f4f6c252008-01-31 13:57:51 +01001717 if (__blk_end_request(rq, 0, rq->data_len))
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001718 BUG();
1719 HWGROUP(drive)->rq = NULL;
1720 spin_unlock_irqrestore(&ide_lock, flags);
1721
1722 return ide_stopped;
1723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 /*
1726 * check which way to transfer data
1727 */
1728 if (rq_data_dir(rq) == WRITE) {
1729 /*
1730 * write to drive
1731 */
1732 if (cdrom_write_check_ireason(drive, len, ireason))
1733 return ide_stopped;
1734
1735 xferfunc = HWIF(drive)->atapi_output_bytes;
1736 } else {
1737 /*
1738 * read from drive
1739 */
1740 if (cdrom_read_check_ireason(drive, len, ireason))
1741 return ide_stopped;
1742
1743 xferfunc = HWIF(drive)->atapi_input_bytes;
1744 }
1745
1746 /*
1747 * transfer data
1748 */
1749 while (thislen > 0) {
1750 int blen = blen = rq->data_len;
1751 char *ptr = rq->data;
1752
1753 /*
1754 * bio backed?
1755 */
1756 if (rq->bio) {
1757 ptr = bio_data(rq->bio);
1758 blen = bio_iovec(rq->bio)->bv_len;
1759 }
1760
1761 if (!ptr) {
1762 printk(KERN_ERR "%s: confused, missing data\n", drive->name);
1763 break;
1764 }
1765
1766 if (blen > thislen)
1767 blen = thislen;
1768
1769 xferfunc(drive, ptr, blen);
1770
1771 thislen -= blen;
1772 len -= blen;
1773 rq->data_len -= blen;
1774
1775 if (rq->bio)
Kiyoshi Uedaaaa04c22007-12-11 17:51:23 -05001776 /*
1777 * The request can't be completed until DRQ is cleared.
1778 * So complete the data, but don't complete the request
1779 * using the dummy function for the callback feature
1780 * of blk_end_request_callback().
1781 */
1782 blk_end_request_callback(rq, 0, blen,
1783 cdrom_newpc_intr_dummy_cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 else
1785 rq->data += blen;
1786 }
1787
1788 /*
1789 * pad, if necessary
1790 */
Bartlomiej Zolnierkiewicz5a5222d2008-02-01 23:09:17 +01001791 if (len > 0)
1792 ide_cd_pad_transfer(drive, xferfunc, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Eric Sesterhenn125e1872006-06-23 02:06:06 -07001794 BUG_ON(HWGROUP(drive)->handler != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 ide_set_handler(drive, cdrom_newpc_intr, rq->timeout, NULL);
1797 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
1800static ide_startstop_t cdrom_write_intr(ide_drive_t *drive)
1801{
1802 int stat, ireason, len, sectors_to_transfer, uptodate;
1803 struct cdrom_info *info = drive->driver_data;
1804 int dma_error = 0, dma = info->dma;
1805 u8 lowcyl = 0, highcyl = 0;
1806
1807 struct request *rq = HWGROUP(drive)->rq;
1808
1809 /* Check for errors. */
1810 if (dma) {
1811 info->dma = 0;
Bartlomiej Zolnierkiewiczb481b232007-12-24 15:23:43 +01001812 dma_error = HWIF(drive)->ide_dma_end(drive);
1813 if (dma_error) {
1814 printk(KERN_ERR "%s: DMA write error\n", drive->name);
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001815 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
1817 }
1818
1819 if (cdrom_decode_status(drive, 0, &stat))
1820 return ide_stopped;
1821
1822 /*
1823 * using dma, transfer is complete now
1824 */
1825 if (dma) {
1826 if (dma_error)
1827 return ide_error(drive, "dma error", stat);
1828
1829 ide_end_request(drive, 1, rq->nr_sectors);
1830 return ide_stopped;
1831 }
1832
1833 /* Read the interrupt reason and the transfer length. */
Bartlomiej Zolnierkiewicz31a71192007-12-24 15:23:43 +01001834 ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG);
1836 highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG);
1837
1838 len = lowcyl + (256 * highcyl);
1839
1840 /* If DRQ is clear, the command has completed. */
1841 if ((stat & DRQ_STAT) == 0) {
1842 /* If we're not done writing, complain.
1843 * Otherwise, complete the command normally.
1844 */
1845 uptodate = 1;
1846 if (rq->current_nr_sectors > 0) {
Bartlomiej Zolnierkiewiczb481b232007-12-24 15:23:43 +01001847 printk(KERN_ERR "%s: %s: data underrun (%d blocks)\n",
1848 drive->name, __FUNCTION__,
1849 rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 uptodate = 0;
1851 }
1852 cdrom_end_request(drive, uptodate);
1853 return ide_stopped;
1854 }
1855
1856 /* Check that the drive is expecting to do the same thing we are. */
1857 if (cdrom_write_check_ireason(drive, len, ireason))
1858 return ide_stopped;
1859
1860 sectors_to_transfer = len / SECTOR_SIZE;
1861
1862 /*
1863 * now loop and write out the data
1864 */
1865 while (sectors_to_transfer > 0) {
1866 int this_transfer;
1867
1868 if (!rq->current_nr_sectors) {
Bartlomiej Zolnierkiewiczb481b232007-12-24 15:23:43 +01001869 printk(KERN_ERR "%s: %s: confused, missing data\n",
1870 drive->name, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 break;
1872 }
1873
1874 /*
1875 * Figure out how many sectors we can transfer
1876 */
1877 this_transfer = min_t(int, sectors_to_transfer, rq->current_nr_sectors);
1878
1879 while (this_transfer > 0) {
1880 HWIF(drive)->atapi_output_bytes(drive, rq->buffer, SECTOR_SIZE);
1881 rq->buffer += SECTOR_SIZE;
1882 --rq->nr_sectors;
1883 --rq->current_nr_sectors;
1884 ++rq->sector;
1885 --this_transfer;
1886 --sectors_to_transfer;
1887 }
1888
1889 /*
1890 * current buffer complete, move on
1891 */
1892 if (rq->current_nr_sectors == 0 && rq->nr_sectors)
1893 cdrom_end_request(drive, 1);
1894 }
1895
1896 /* re-arm handler */
1897 ide_set_handler(drive, &cdrom_write_intr, ATAPI_WAIT_PC, NULL);
1898 return ide_started;
1899}
1900
1901static ide_startstop_t cdrom_start_write_cont(ide_drive_t *drive)
1902{
1903 struct request *rq = HWGROUP(drive)->rq;
1904
1905#if 0 /* the immediate bit */
1906 rq->cmd[1] = 1 << 3;
1907#endif
1908 rq->timeout = ATAPI_WAIT_PC;
1909
1910 return cdrom_transfer_packet_command(drive, rq, cdrom_write_intr);
1911}
1912
1913static ide_startstop_t cdrom_start_write(ide_drive_t *drive, struct request *rq)
1914{
1915 struct cdrom_info *info = drive->driver_data;
1916 struct gendisk *g = info->disk;
1917 unsigned short sectors_per_frame = queue_hardsect_size(drive->queue) >> SECTOR_BITS;
1918
1919 /*
1920 * writes *must* be hardware frame aligned
1921 */
1922 if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
1923 (rq->sector & (sectors_per_frame - 1))) {
1924 cdrom_end_request(drive, 0);
1925 return ide_stopped;
1926 }
1927
1928 /*
1929 * disk has become write protected
1930 */
1931 if (g->policy) {
1932 cdrom_end_request(drive, 0);
1933 return ide_stopped;
1934 }
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 info->nsectors_buffered = 0;
1937
1938 /* use dma, if possible. we don't need to check more, since we
1939 * know that the transfer is always (at least!) frame aligned */
1940 info->dma = drive->using_dma ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942 info->devinfo.media_written = 1;
1943
1944 /* Start sending the write request to the drive. */
1945 return cdrom_start_packet_command(drive, 32768, cdrom_start_write_cont);
1946}
1947
1948static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive)
1949{
1950 struct request *rq = HWGROUP(drive)->rq;
1951
1952 if (!rq->timeout)
1953 rq->timeout = ATAPI_WAIT_PC;
1954
1955 return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
1956}
1957
1958static ide_startstop_t cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
1959{
1960 struct cdrom_info *info = drive->driver_data;
1961
Jens Axboe4aff5e22006-08-10 08:44:47 +02001962 rq->cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 /*
1967 * sg request
1968 */
1969 if (rq->bio) {
1970 int mask = drive->queue->dma_alignment;
1971 unsigned long addr = (unsigned long) page_address(bio_page(rq->bio));
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 info->dma = drive->using_dma;
1974
1975 /*
1976 * check if dma is safe
Linus Torvalds5d9e4ea2005-05-27 07:36:17 -07001977 *
1978 * NOTE! The "len" and "addr" checks should possibly have
1979 * separate masks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 */
Jens Axboe4e7c6812005-05-31 17:47:36 +02001981 if ((rq->data_len & 15) || (addr & mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 info->dma = 0;
1983 }
1984
1985 /* Start sending the command to the drive. */
1986 return cdrom_start_packet_command(drive, rq->data_len, cdrom_do_newpc_cont);
1987}
1988
1989/****************************************************************************
1990 * cdrom driver request routine.
1991 */
1992static ide_startstop_t
1993ide_do_rw_cdrom (ide_drive_t *drive, struct request *rq, sector_t block)
1994{
1995 ide_startstop_t action;
1996 struct cdrom_info *info = drive->driver_data;
1997
1998 if (blk_fs_request(rq)) {
1999 if (CDROM_CONFIG_FLAGS(drive)->seeking) {
2000 unsigned long elapsed = jiffies - info->start_seek;
2001 int stat = HWIF(drive)->INB(IDE_STATUS_REG);
2002
2003 if ((stat & SEEK_STAT) != SEEK_STAT) {
2004 if (elapsed < IDECD_SEEK_TIMEOUT) {
2005 ide_stall_queue(drive, IDECD_SEEK_TIMER);
2006 return ide_stopped;
2007 }
2008 printk (KERN_ERR "%s: DSC timeout\n", drive->name);
2009 }
2010 CDROM_CONFIG_FLAGS(drive)->seeking = 0;
2011 }
2012 if ((rq_data_dir(rq) == READ) && IDE_LARGE_SEEK(info->last_block, block, IDECD_SEEK_THRESHOLD) && drive->dsc_overlap) {
2013 action = cdrom_start_seek(drive, block);
2014 } else {
2015 if (rq_data_dir(rq) == READ)
2016 action = cdrom_start_read(drive, block);
2017 else
2018 action = cdrom_start_write(drive, rq);
2019 }
2020 info->last_block = block;
2021 return action;
Jens Axboecea28852006-10-12 15:08:45 +02002022 } else if (rq->cmd_type == REQ_TYPE_SENSE ||
2023 rq->cmd_type == REQ_TYPE_ATA_PC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return cdrom_do_packet_command(drive);
Jens Axboe4aff5e22006-08-10 08:44:47 +02002025 } else if (blk_pc_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return cdrom_do_block_pc(drive, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02002027 } else if (blk_special_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 /*
2029 * right now this can only be a reset...
2030 */
2031 cdrom_end_request(drive, 1);
2032 return ide_stopped;
2033 }
2034
2035 blk_dump_rq_flags(rq, "ide-cd bad flags");
2036 cdrom_end_request(drive, 0);
2037 return ide_stopped;
2038}
2039
2040
2041
2042/****************************************************************************
2043 * Ioctl handling.
2044 *
2045 * Routines which queue packet commands take as a final argument a pointer
2046 * to a request_sense struct. If execution of the command results
2047 * in an error with a CHECK CONDITION status, this structure will be filled
2048 * with the results of the subsequent request sense command. The pointer
2049 * can also be NULL, in which case no sense information is returned.
2050 */
2051
2052#if ! STANDARD_ATAPI
2053static inline
2054int bin2bcd (int x)
2055{
2056 return (x%10) | ((x/10) << 4);
2057}
2058
2059
2060static inline
2061int bcd2bin (int x)
2062{
2063 return (x >> 4) * 10 + (x & 0x0f);
2064}
2065
2066static
2067void msf_from_bcd (struct atapi_msf *msf)
2068{
2069 msf->minute = bcd2bin (msf->minute);
2070 msf->second = bcd2bin (msf->second);
2071 msf->frame = bcd2bin (msf->frame);
2072}
2073
2074#endif /* not STANDARD_ATAPI */
2075
2076
2077static inline
2078void lba_to_msf (int lba, byte *m, byte *s, byte *f)
2079{
2080 lba += CD_MSF_OFFSET;
2081 lba &= 0xffffff; /* negative lbas use only 24 bits */
2082 *m = lba / (CD_SECS * CD_FRAMES);
2083 lba %= (CD_SECS * CD_FRAMES);
2084 *s = lba / CD_FRAMES;
2085 *f = lba % CD_FRAMES;
2086}
2087
2088
2089static inline
2090int msf_to_lba (byte m, byte s, byte f)
2091{
2092 return (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_MSF_OFFSET;
2093}
2094
2095static int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
2096{
2097 struct request req;
2098 struct cdrom_info *info = drive->driver_data;
2099 struct cdrom_device_info *cdi = &info->devinfo;
2100
2101 cdrom_prepare_request(drive, &req);
2102
2103 req.sense = sense;
2104 req.cmd[0] = GPCMD_TEST_UNIT_READY;
Jens Axboe4aff5e22006-08-10 08:44:47 +02002105 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107#if ! STANDARD_ATAPI
2108 /* the Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to
2109 switch CDs instead of supporting the LOAD_UNLOAD opcode */
2110
2111 req.cmd[7] = cdi->sanyo_slot % 3;
2112#endif /* not STANDARD_ATAPI */
2113
2114 return cdrom_queue_packet_command(drive, &req);
2115}
2116
2117
2118/* Lock the door if LOCKFLAG is nonzero; unlock it otherwise. */
2119static int
2120cdrom_lockdoor(ide_drive_t *drive, int lockflag, struct request_sense *sense)
2121{
2122 struct request_sense my_sense;
2123 struct request req;
2124 int stat;
2125
2126 if (sense == NULL)
2127 sense = &my_sense;
2128
2129 /* If the drive cannot lock the door, just pretend. */
2130 if (CDROM_CONFIG_FLAGS(drive)->no_doorlock) {
2131 stat = 0;
2132 } else {
2133 cdrom_prepare_request(drive, &req);
2134 req.sense = sense;
2135 req.cmd[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
2136 req.cmd[4] = lockflag ? 1 : 0;
2137 stat = cdrom_queue_packet_command(drive, &req);
2138 }
2139
2140 /* If we got an illegal field error, the drive
2141 probably cannot lock the door. */
2142 if (stat != 0 &&
2143 sense->sense_key == ILLEGAL_REQUEST &&
2144 (sense->asc == 0x24 || sense->asc == 0x20)) {
2145 printk (KERN_ERR "%s: door locking not supported\n",
2146 drive->name);
2147 CDROM_CONFIG_FLAGS(drive)->no_doorlock = 1;
2148 stat = 0;
2149 }
2150
2151 /* no medium, that's alright. */
2152 if (stat != 0 && sense->sense_key == NOT_READY && sense->asc == 0x3a)
2153 stat = 0;
2154
2155 if (stat == 0)
2156 CDROM_STATE_FLAGS(drive)->door_locked = lockflag;
2157
2158 return stat;
2159}
2160
2161
2162/* Eject the disk if EJECTFLAG is 0.
2163 If EJECTFLAG is 1, try to reload the disk. */
2164static int cdrom_eject(ide_drive_t *drive, int ejectflag,
2165 struct request_sense *sense)
2166{
2167 struct request req;
2168 char loej = 0x02;
2169
2170 if (CDROM_CONFIG_FLAGS(drive)->no_eject && !ejectflag)
2171 return -EDRIVE_CANT_DO_THIS;
2172
2173 /* reload fails on some drives, if the tray is locked */
2174 if (CDROM_STATE_FLAGS(drive)->door_locked && ejectflag)
2175 return 0;
2176
2177 cdrom_prepare_request(drive, &req);
2178
2179 /* only tell drive to close tray if open, if it can do that */
2180 if (ejectflag && !CDROM_CONFIG_FLAGS(drive)->close_tray)
2181 loej = 0;
2182
2183 req.sense = sense;
2184 req.cmd[0] = GPCMD_START_STOP_UNIT;
2185 req.cmd[4] = loej | (ejectflag != 0);
2186 return cdrom_queue_packet_command(drive, &req);
2187}
2188
2189static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
2190 unsigned long *sectors_per_frame,
2191 struct request_sense *sense)
2192{
2193 struct {
2194 __u32 lba;
2195 __u32 blocklen;
2196 } capbuf;
2197
2198 int stat;
2199 struct request req;
2200
2201 cdrom_prepare_request(drive, &req);
2202
2203 req.sense = sense;
2204 req.cmd[0] = GPCMD_READ_CDVD_CAPACITY;
2205 req.data = (char *)&capbuf;
2206 req.data_len = sizeof(capbuf);
Jens Axboe4aff5e22006-08-10 08:44:47 +02002207 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 stat = cdrom_queue_packet_command(drive, &req);
2210 if (stat == 0) {
2211 *capacity = 1 + be32_to_cpu(capbuf.lba);
2212 *sectors_per_frame =
2213 be32_to_cpu(capbuf.blocklen) >> SECTOR_BITS;
2214 }
2215
2216 return stat;
2217}
2218
2219static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
2220 int format, char *buf, int buflen,
2221 struct request_sense *sense)
2222{
2223 struct request req;
2224
2225 cdrom_prepare_request(drive, &req);
2226
2227 req.sense = sense;
2228 req.data = buf;
2229 req.data_len = buflen;
Jens Axboe4aff5e22006-08-10 08:44:47 +02002230 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 req.cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
2232 req.cmd[6] = trackno;
2233 req.cmd[7] = (buflen >> 8);
2234 req.cmd[8] = (buflen & 0xff);
2235 req.cmd[9] = (format << 6);
2236
2237 if (msf_flag)
2238 req.cmd[1] = 2;
2239
2240 return cdrom_queue_packet_command(drive, &req);
2241}
2242
2243
2244/* Try to read the entire TOC for the disk into our internal buffer. */
2245static int cdrom_read_toc(ide_drive_t *drive, struct request_sense *sense)
2246{
2247 int stat, ntracks, i;
2248 struct cdrom_info *info = drive->driver_data;
2249 struct cdrom_device_info *cdi = &info->devinfo;
2250 struct atapi_toc *toc = info->toc;
2251 struct {
2252 struct atapi_toc_header hdr;
2253 struct atapi_toc_entry ent;
2254 } ms_tmp;
2255 long last_written;
2256 unsigned long sectors_per_frame = SECTORS_PER_FRAME;
2257
2258 if (toc == NULL) {
2259 /* Try to allocate space. */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002260 toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 if (toc == NULL) {
2262 printk (KERN_ERR "%s: No cdrom TOC buffer!\n", drive->name);
2263 return -ENOMEM;
2264 }
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002265 info->toc = toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 }
2267
2268 /* Check to see if the existing data is still valid.
2269 If it is, just return. */
2270 (void) cdrom_check_status(drive, sense);
2271
2272 if (CDROM_STATE_FLAGS(drive)->toc_valid)
2273 return 0;
2274
2275 /* Try to get the total cdrom capacity and sector size. */
2276 stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
2277 sense);
2278 if (stat)
2279 toc->capacity = 0x1fffff;
2280
2281 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07002282 /* Save a private copy of te TOC capacity for error handling */
2283 drive->probed_capacity = toc->capacity * sectors_per_frame;
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 blk_queue_hardsect_size(drive->queue,
2286 sectors_per_frame << SECTOR_BITS);
2287
2288 /* First read just the header, so we know how long the TOC is. */
2289 stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
2290 sizeof(struct atapi_toc_header), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002291 if (stat)
2292 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
2294#if ! STANDARD_ATAPI
2295 if (CDROM_CONFIG_FLAGS(drive)->toctracks_as_bcd) {
2296 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
2297 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
2298 }
2299#endif /* not STANDARD_ATAPI */
2300
2301 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
2302 if (ntracks <= 0)
2303 return -EIO;
2304 if (ntracks > MAX_TRACKS)
2305 ntracks = MAX_TRACKS;
2306
2307 /* Now read the whole schmeer. */
2308 stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
2309 (char *)&toc->hdr,
2310 sizeof(struct atapi_toc_header) +
2311 (ntracks + 1) *
2312 sizeof(struct atapi_toc_entry), sense);
2313
2314 if (stat && toc->hdr.first_track > 1) {
2315 /* Cds with CDI tracks only don't have any TOC entries,
2316 despite of this the returned values are
2317 first_track == last_track = number of CDI tracks + 1,
2318 so that this case is indistinguishable from the same
2319 layout plus an additional audio track.
2320 If we get an error for the regular case, we assume
2321 a CDI without additional audio tracks. In this case
2322 the readable TOC is empty (CDI tracks are not included)
Jan Engelhardt96de0e22007-10-19 23:21:04 +02002323 and only holds the Leadout entry. Heiko Eißfeldt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 ntracks = 0;
2325 stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
2326 (char *)&toc->hdr,
2327 sizeof(struct atapi_toc_header) +
2328 (ntracks + 1) *
2329 sizeof(struct atapi_toc_entry),
2330 sense);
2331 if (stat) {
2332 return stat;
2333 }
2334#if ! STANDARD_ATAPI
2335 if (CDROM_CONFIG_FLAGS(drive)->toctracks_as_bcd) {
2336 toc->hdr.first_track = bin2bcd(CDROM_LEADOUT);
2337 toc->hdr.last_track = bin2bcd(CDROM_LEADOUT);
2338 } else
2339#endif /* not STANDARD_ATAPI */
2340 {
2341 toc->hdr.first_track = CDROM_LEADOUT;
2342 toc->hdr.last_track = CDROM_LEADOUT;
2343 }
2344 }
2345
2346 if (stat)
2347 return stat;
2348
2349 toc->hdr.toc_length = ntohs (toc->hdr.toc_length);
2350
2351#if ! STANDARD_ATAPI
2352 if (CDROM_CONFIG_FLAGS(drive)->toctracks_as_bcd) {
2353 toc->hdr.first_track = bcd2bin(toc->hdr.first_track);
2354 toc->hdr.last_track = bcd2bin(toc->hdr.last_track);
2355 }
2356#endif /* not STANDARD_ATAPI */
2357
2358 for (i=0; i<=ntracks; i++) {
2359#if ! STANDARD_ATAPI
2360 if (CDROM_CONFIG_FLAGS(drive)->tocaddr_as_bcd) {
2361 if (CDROM_CONFIG_FLAGS(drive)->toctracks_as_bcd)
2362 toc->ent[i].track = bcd2bin(toc->ent[i].track);
2363 msf_from_bcd(&toc->ent[i].addr.msf);
2364 }
2365#endif /* not STANDARD_ATAPI */
2366 toc->ent[i].addr.lba = msf_to_lba (toc->ent[i].addr.msf.minute,
2367 toc->ent[i].addr.msf.second,
2368 toc->ent[i].addr.msf.frame);
2369 }
2370
2371 /* Read the multisession information. */
2372 if (toc->hdr.first_track != CDROM_LEADOUT) {
2373 /* Read the multisession information. */
2374 stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
2375 sizeof(ms_tmp), sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002376 if (stat)
2377 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
2380 } else {
2381 ms_tmp.hdr.first_track = ms_tmp.hdr.last_track = CDROM_LEADOUT;
2382 toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
2383 }
2384
2385#if ! STANDARD_ATAPI
2386 if (CDROM_CONFIG_FLAGS(drive)->tocaddr_as_bcd) {
2387 /* Re-read multisession information using MSF format */
2388 stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
2389 sizeof(ms_tmp), sense);
2390 if (stat)
2391 return stat;
2392
2393 msf_from_bcd (&ms_tmp.ent.addr.msf);
2394 toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
2395 ms_tmp.ent.addr.msf.second,
2396 ms_tmp.ent.addr.msf.frame);
2397 }
2398#endif /* not STANDARD_ATAPI */
2399
2400 toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
2401
2402 /* Now try to get the total cdrom capacity. */
2403 stat = cdrom_get_last_written(cdi, &last_written);
2404 if (!stat && (last_written > toc->capacity)) {
2405 toc->capacity = last_written;
2406 set_capacity(info->disk, toc->capacity * sectors_per_frame);
Alan Coxdbe217a2006-06-25 05:47:44 -07002407 drive->probed_capacity = toc->capacity * sectors_per_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
2409
2410 /* Remember that we've read this stuff. */
2411 CDROM_STATE_FLAGS(drive)->toc_valid = 1;
2412
2413 return 0;
2414}
2415
2416
2417static int cdrom_read_subchannel(ide_drive_t *drive, int format, char *buf,
2418 int buflen, struct request_sense *sense)
2419{
2420 struct request req;
2421
2422 cdrom_prepare_request(drive, &req);
2423
2424 req.sense = sense;
2425 req.data = buf;
2426 req.data_len = buflen;
2427 req.cmd[0] = GPCMD_READ_SUBCHANNEL;
2428 req.cmd[1] = 2; /* MSF addressing */
2429 req.cmd[2] = 0x40; /* request subQ data */
2430 req.cmd[3] = format;
2431 req.cmd[7] = (buflen >> 8);
2432 req.cmd[8] = (buflen & 0xff);
2433 return cdrom_queue_packet_command(drive, &req);
2434}
2435
2436/* ATAPI cdrom drives are free to select the speed you request or any slower
2437 rate :-( Requesting too fast a speed will _not_ produce an error. */
2438static int cdrom_select_speed(ide_drive_t *drive, int speed,
2439 struct request_sense *sense)
2440{
2441 struct request req;
2442 cdrom_prepare_request(drive, &req);
2443
2444 req.sense = sense;
2445 if (speed == 0)
2446 speed = 0xffff; /* set to max */
2447 else
2448 speed *= 177; /* Nx to kbytes/s */
2449
2450 req.cmd[0] = GPCMD_SET_SPEED;
2451 /* Read Drive speed in kbytes/second MSB */
2452 req.cmd[2] = (speed >> 8) & 0xff;
2453 /* Read Drive speed in kbytes/second LSB */
2454 req.cmd[3] = speed & 0xff;
2455 if (CDROM_CONFIG_FLAGS(drive)->cd_r ||
2456 CDROM_CONFIG_FLAGS(drive)->cd_rw ||
2457 CDROM_CONFIG_FLAGS(drive)->dvd_r) {
2458 /* Write Drive speed in kbytes/second MSB */
2459 req.cmd[4] = (speed >> 8) & 0xff;
2460 /* Write Drive speed in kbytes/second LSB */
2461 req.cmd[5] = speed & 0xff;
2462 }
2463
2464 return cdrom_queue_packet_command(drive, &req);
2465}
2466
2467static int cdrom_play_audio(ide_drive_t *drive, int lba_start, int lba_end)
2468{
2469 struct request_sense sense;
2470 struct request req;
2471
2472 cdrom_prepare_request(drive, &req);
2473
2474 req.sense = &sense;
2475 req.cmd[0] = GPCMD_PLAY_AUDIO_MSF;
2476 lba_to_msf(lba_start, &req.cmd[3], &req.cmd[4], &req.cmd[5]);
2477 lba_to_msf(lba_end-1, &req.cmd[6], &req.cmd[7], &req.cmd[8]);
2478
2479 return cdrom_queue_packet_command(drive, &req);
2480}
2481
2482static int cdrom_get_toc_entry(ide_drive_t *drive, int track,
2483 struct atapi_toc_entry **ent)
2484{
2485 struct cdrom_info *info = drive->driver_data;
2486 struct atapi_toc *toc = info->toc;
2487 int ntracks;
2488
2489 /*
2490 * don't serve cached data, if the toc isn't valid
2491 */
2492 if (!CDROM_STATE_FLAGS(drive)->toc_valid)
2493 return -EINVAL;
2494
2495 /* Check validity of requested track number. */
2496 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
2497 if (toc->hdr.first_track == CDROM_LEADOUT) ntracks = 0;
2498 if (track == CDROM_LEADOUT)
2499 *ent = &toc->ent[ntracks];
2500 else if (track < toc->hdr.first_track ||
2501 track > toc->hdr.last_track)
2502 return -EINVAL;
2503 else
2504 *ent = &toc->ent[track - toc->hdr.first_track];
2505
2506 return 0;
2507}
2508
2509/* the generic packet interface to cdrom.c */
2510static int ide_cdrom_packet(struct cdrom_device_info *cdi,
2511 struct packet_command *cgc)
2512{
2513 struct request req;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002514 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 if (cgc->timeout <= 0)
2517 cgc->timeout = ATAPI_WAIT_PC;
2518
2519 /* here we queue the commands from the uniform CD-ROM
2520 layer. the packet must be complete, as we do not
2521 touch it at all. */
2522 cdrom_prepare_request(drive, &req);
2523 memcpy(req.cmd, cgc->cmd, CDROM_PACKET_SIZE);
2524 if (cgc->sense)
2525 memset(cgc->sense, 0, sizeof(struct request_sense));
2526 req.data = cgc->buffer;
2527 req.data_len = cgc->buflen;
2528 req.timeout = cgc->timeout;
2529
2530 if (cgc->quiet)
Jens Axboe4aff5e22006-08-10 08:44:47 +02002531 req.cmd_flags |= REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 req.sense = cgc->sense;
2534 cgc->stat = cdrom_queue_packet_command(drive, &req);
2535 if (!cgc->stat)
2536 cgc->buflen -= req.data_len;
2537 return cgc->stat;
2538}
2539
2540static
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541int ide_cdrom_audio_ioctl (struct cdrom_device_info *cdi,
2542 unsigned int cmd, void *arg)
2543
2544{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002545 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 struct cdrom_info *info = drive->driver_data;
2547 int stat;
2548
2549 switch (cmd) {
2550 /*
2551 * emulate PLAY_AUDIO_TI command with PLAY_AUDIO_10, since
2552 * atapi doesn't support it
2553 */
2554 case CDROMPLAYTRKIND: {
2555 unsigned long lba_start, lba_end;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002556 struct cdrom_ti *ti = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 struct atapi_toc_entry *first_toc, *last_toc;
2558
2559 stat = cdrom_get_toc_entry(drive, ti->cdti_trk0, &first_toc);
2560 if (stat)
2561 return stat;
2562
2563 stat = cdrom_get_toc_entry(drive, ti->cdti_trk1, &last_toc);
2564 if (stat)
2565 return stat;
2566
2567 if (ti->cdti_trk1 != CDROM_LEADOUT)
2568 ++last_toc;
2569 lba_start = first_toc->addr.lba;
2570 lba_end = last_toc->addr.lba;
2571
2572 if (lba_end <= lba_start)
2573 return -EINVAL;
2574
2575 return cdrom_play_audio(drive, lba_start, lba_end);
2576 }
2577
2578 case CDROMREADTOCHDR: {
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002579 struct cdrom_tochdr *tochdr = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 struct atapi_toc *toc;
2581
2582 /* Make sure our saved TOC is valid. */
2583 stat = cdrom_read_toc(drive, NULL);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002584 if (stat)
2585 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
2587 toc = info->toc;
2588 tochdr->cdth_trk0 = toc->hdr.first_track;
2589 tochdr->cdth_trk1 = toc->hdr.last_track;
2590
2591 return 0;
2592 }
2593
2594 case CDROMREADTOCENTRY: {
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002595 struct cdrom_tocentry *tocentry = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 struct atapi_toc_entry *toce;
2597
2598 stat = cdrom_get_toc_entry(drive, tocentry->cdte_track, &toce);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002599 if (stat)
2600 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 tocentry->cdte_ctrl = toce->control;
2603 tocentry->cdte_adr = toce->adr;
2604 if (tocentry->cdte_format == CDROM_MSF) {
2605 lba_to_msf (toce->addr.lba,
2606 &tocentry->cdte_addr.msf.minute,
2607 &tocentry->cdte_addr.msf.second,
2608 &tocentry->cdte_addr.msf.frame);
2609 } else
2610 tocentry->cdte_addr.lba = toce->addr.lba;
2611
2612 return 0;
2613 }
2614
2615 default:
2616 return -EINVAL;
2617 }
2618}
2619
2620static
2621int ide_cdrom_reset (struct cdrom_device_info *cdi)
2622{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002623 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 struct request_sense sense;
2625 struct request req;
2626 int ret;
2627
2628 cdrom_prepare_request(drive, &req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02002629 req.cmd_type = REQ_TYPE_SPECIAL;
2630 req.cmd_flags = REQ_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 ret = ide_do_drive_cmd(drive, &req, ide_wait);
2632
2633 /*
2634 * A reset will unlock the door. If it was previously locked,
2635 * lock it again.
2636 */
2637 if (CDROM_STATE_FLAGS(drive)->door_locked)
2638 (void) cdrom_lockdoor(drive, 1, &sense);
2639
2640 return ret;
2641}
2642
2643
2644static
2645int ide_cdrom_tray_move (struct cdrom_device_info *cdi, int position)
2646{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002647 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 struct request_sense sense;
2649
2650 if (position) {
2651 int stat = cdrom_lockdoor(drive, 0, &sense);
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002652 if (stat)
2653 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 }
2655
2656 return cdrom_eject(drive, !position, &sense);
2657}
2658
2659static
2660int ide_cdrom_lock_door (struct cdrom_device_info *cdi, int lock)
2661{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002662 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 return cdrom_lockdoor(drive, lock, NULL);
2664}
2665
2666static
Eric Piel9235e682005-06-23 00:10:29 -07002667int ide_cdrom_get_capabilities(ide_drive_t *drive, struct atapi_capabilities_page *cap)
2668{
2669 struct cdrom_info *info = drive->driver_data;
2670 struct cdrom_device_info *cdi = &info->devinfo;
2671 struct packet_command cgc;
2672 int stat, attempts = 3, size = sizeof(*cap);
2673
2674 /*
2675 * ACER50 (and others?) require the full spec length mode sense
2676 * page capabilities size, but older drives break.
2677 */
2678 if (!(!strcmp(drive->id->model, "ATAPI CD ROM DRIVE 50X MAX") ||
2679 !strcmp(drive->id->model, "WPI CDS-32X")))
2680 size -= sizeof(cap->pad);
2681
2682 init_cdrom_command(&cgc, cap, size, CGC_DATA_UNKNOWN);
2683 do { /* we seem to get stat=0x01,err=0x00 the first time (??) */
2684 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
2685 if (!stat)
2686 break;
2687 } while (--attempts);
2688 return stat;
2689}
2690
2691static
2692void ide_cdrom_update_speed (ide_drive_t *drive, struct atapi_capabilities_page *cap)
2693{
2694 /* The ACER/AOpen 24X cdrom has the speed fields byte-swapped */
2695 if (!drive->id->model[0] &&
2696 !strncmp(drive->id->fw_rev, "241N", 4)) {
2697 CDROM_STATE_FLAGS(drive)->current_speed =
Bartlomiej Zolnierkiewiczaa5dc8e2007-12-24 15:23:43 +01002698 (le16_to_cpu(cap->curspeed) + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07002699 CDROM_CONFIG_FLAGS(drive)->max_speed =
Bartlomiej Zolnierkiewiczaa5dc8e2007-12-24 15:23:43 +01002700 (le16_to_cpu(cap->maxspeed) + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07002701 } else {
2702 CDROM_STATE_FLAGS(drive)->current_speed =
Bartlomiej Zolnierkiewiczaa5dc8e2007-12-24 15:23:43 +01002703 (be16_to_cpu(cap->curspeed) + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07002704 CDROM_CONFIG_FLAGS(drive)->max_speed =
Bartlomiej Zolnierkiewiczaa5dc8e2007-12-24 15:23:43 +01002705 (be16_to_cpu(cap->maxspeed) + (176/2)) / 176;
Eric Piel9235e682005-06-23 00:10:29 -07002706 }
2707}
2708
2709static
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710int ide_cdrom_select_speed (struct cdrom_device_info *cdi, int speed)
2711{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002712 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 struct request_sense sense;
Eric Piel9235e682005-06-23 00:10:29 -07002714 struct atapi_capabilities_page cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 int stat;
2716
2717 if ((stat = cdrom_select_speed(drive, speed, &sense)) < 0)
2718 return stat;
2719
Eric Piel9235e682005-06-23 00:10:29 -07002720 if (!ide_cdrom_get_capabilities(drive, &cap)) {
2721 ide_cdrom_update_speed(drive, &cap);
2722 cdi->speed = CDROM_STATE_FLAGS(drive)->current_speed;
2723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 return 0;
2725}
2726
2727/*
2728 * add logic to try GET_EVENT command first to check for media and tray
2729 * status. this should be supported by newer cd-r/w and all DVD etc
2730 * drives
2731 */
2732static
2733int ide_cdrom_drive_status (struct cdrom_device_info *cdi, int slot_nr)
2734{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002735 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 struct media_event_desc med;
2737 struct request_sense sense;
2738 int stat;
2739
2740 if (slot_nr != CDSL_CURRENT)
2741 return -EINVAL;
2742
2743 stat = cdrom_check_status(drive, &sense);
2744 if (!stat || sense.sense_key == UNIT_ATTENTION)
2745 return CDS_DISC_OK;
2746
2747 if (!cdrom_get_media_event(cdi, &med)) {
2748 if (med.media_present)
2749 return CDS_DISC_OK;
2750 else if (med.door_open)
2751 return CDS_TRAY_OPEN;
2752 else
2753 return CDS_NO_DISC;
2754 }
2755
2756 if (sense.sense_key == NOT_READY && sense.asc == 0x04 && sense.ascq == 0x04)
2757 return CDS_DISC_OK;
2758
2759 /*
2760 * If not using Mt Fuji extended media tray reports,
2761 * just return TRAY_OPEN since ATAPI doesn't provide
2762 * any other way to detect this...
2763 */
2764 if (sense.sense_key == NOT_READY) {
Alan Coxdbe217a2006-06-25 05:47:44 -07002765 if (sense.asc == 0x3a && sense.ascq == 1)
2766 return CDS_NO_DISC;
2767 else
2768 return CDS_TRAY_OPEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 return CDS_DRIVE_NOT_READY;
2771}
2772
2773static
2774int ide_cdrom_get_last_session (struct cdrom_device_info *cdi,
2775 struct cdrom_multisession *ms_info)
2776{
2777 struct atapi_toc *toc;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002778 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 struct cdrom_info *info = drive->driver_data;
2780 struct request_sense sense;
2781 int ret;
2782
2783 if (!CDROM_STATE_FLAGS(drive)->toc_valid || info->toc == NULL)
2784 if ((ret = cdrom_read_toc(drive, &sense)))
2785 return ret;
2786
2787 toc = info->toc;
2788 ms_info->addr.lba = toc->last_session_lba;
2789 ms_info->xa_flag = toc->xa_flag;
2790
2791 return 0;
2792}
2793
2794static
2795int ide_cdrom_get_mcn (struct cdrom_device_info *cdi,
2796 struct cdrom_mcn *mcn_info)
2797{
2798 int stat;
2799 char mcnbuf[24];
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002800 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802/* get MCN */
2803 if ((stat = cdrom_read_subchannel(drive, 2, mcnbuf, sizeof (mcnbuf), NULL)))
2804 return stat;
2805
2806 memcpy (mcn_info->medium_catalog_number, mcnbuf+9,
2807 sizeof (mcn_info->medium_catalog_number)-1);
2808 mcn_info->medium_catalog_number[sizeof (mcn_info->medium_catalog_number)-1]
2809 = '\0';
2810
2811 return 0;
2812}
2813
2814
2815
2816/****************************************************************************
2817 * Other driver requests (open, close, check media change).
2818 */
2819
2820static
2821int ide_cdrom_check_media_change_real (struct cdrom_device_info *cdi,
2822 int slot_nr)
2823{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002824 ide_drive_t *drive = cdi->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 int retval;
2826
2827 if (slot_nr == CDSL_CURRENT) {
2828 (void) cdrom_check_status(drive, NULL);
2829 retval = CDROM_STATE_FLAGS(drive)->media_changed;
2830 CDROM_STATE_FLAGS(drive)->media_changed = 0;
2831 return retval;
2832 } else {
2833 return -EINVAL;
2834 }
2835}
2836
2837
2838static
2839int ide_cdrom_open_real (struct cdrom_device_info *cdi, int purpose)
2840{
2841 return 0;
2842}
2843
2844/*
2845 * Close down the device. Invalidate all cached blocks.
2846 */
2847
2848static
2849void ide_cdrom_release_real (struct cdrom_device_info *cdi)
2850{
2851 ide_drive_t *drive = cdi->handle;
2852
2853 if (!cdi->use_count)
2854 CDROM_STATE_FLAGS(drive)->toc_valid = 0;
2855}
2856
2857
2858
2859/****************************************************************************
2860 * Device initialization.
2861 */
2862static struct cdrom_device_ops ide_cdrom_dops = {
2863 .open = ide_cdrom_open_real,
2864 .release = ide_cdrom_release_real,
2865 .drive_status = ide_cdrom_drive_status,
2866 .media_changed = ide_cdrom_check_media_change_real,
2867 .tray_move = ide_cdrom_tray_move,
2868 .lock_door = ide_cdrom_lock_door,
2869 .select_speed = ide_cdrom_select_speed,
2870 .get_last_session = ide_cdrom_get_last_session,
2871 .get_mcn = ide_cdrom_get_mcn,
2872 .reset = ide_cdrom_reset,
2873 .audio_ioctl = ide_cdrom_audio_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 .capability = CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK |
2875 CDC_SELECT_SPEED | CDC_SELECT_DISC |
2876 CDC_MULTI_SESSION | CDC_MCN |
2877 CDC_MEDIA_CHANGED | CDC_PLAY_AUDIO | CDC_RESET |
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08002878 CDC_DRIVE_STATUS | CDC_CD_R |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 CDC_CD_RW | CDC_DVD | CDC_DVD_R| CDC_DVD_RAM |
2880 CDC_GENERIC_PACKET | CDC_MO_DRIVE | CDC_MRW |
2881 CDC_MRW_W | CDC_RAM,
2882 .generic_packet = ide_cdrom_packet,
2883};
2884
2885static int ide_cdrom_register (ide_drive_t *drive, int nslots)
2886{
2887 struct cdrom_info *info = drive->driver_data;
2888 struct cdrom_device_info *devinfo = &info->devinfo;
2889
2890 devinfo->ops = &ide_cdrom_dops;
2891 devinfo->mask = 0;
2892 devinfo->speed = CDROM_STATE_FLAGS(drive)->current_speed;
2893 devinfo->capacity = nslots;
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002894 devinfo->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 strcpy(devinfo->name, drive->name);
2896
2897 /* set capability mask to match the probe. */
2898 if (!CDROM_CONFIG_FLAGS(drive)->cd_r)
2899 devinfo->mask |= CDC_CD_R;
2900 if (!CDROM_CONFIG_FLAGS(drive)->cd_rw)
2901 devinfo->mask |= CDC_CD_RW;
2902 if (!CDROM_CONFIG_FLAGS(drive)->dvd)
2903 devinfo->mask |= CDC_DVD;
2904 if (!CDROM_CONFIG_FLAGS(drive)->dvd_r)
2905 devinfo->mask |= CDC_DVD_R;
2906 if (!CDROM_CONFIG_FLAGS(drive)->dvd_ram)
2907 devinfo->mask |= CDC_DVD_RAM;
2908 if (!CDROM_CONFIG_FLAGS(drive)->is_changer)
2909 devinfo->mask |= CDC_SELECT_DISC;
2910 if (!CDROM_CONFIG_FLAGS(drive)->audio_play)
2911 devinfo->mask |= CDC_PLAY_AUDIO;
2912 if (!CDROM_CONFIG_FLAGS(drive)->close_tray)
2913 devinfo->mask |= CDC_CLOSE_TRAY;
2914 if (!CDROM_CONFIG_FLAGS(drive)->mo_drive)
2915 devinfo->mask |= CDC_MO_DRIVE;
Andrey Borzenkovc0400dc2006-01-10 11:27:00 +01002916 if (!CDROM_CONFIG_FLAGS(drive)->ram)
2917 devinfo->mask |= CDC_RAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01002919 if (CDROM_CONFIG_FLAGS(drive)->no_speed_select)
2920 devinfo->mask |= CDC_SELECT_SPEED;
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 devinfo->disk = info->disk;
2923 return register_cdrom(devinfo);
2924}
2925
2926static
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927int ide_cdrom_probe_capabilities (ide_drive_t *drive)
2928{
2929 struct cdrom_info *info = drive->driver_data;
2930 struct cdrom_device_info *cdi = &info->devinfo;
2931 struct atapi_capabilities_page cap;
2932 int nslots = 1;
2933
2934 if (drive->media == ide_optical) {
2935 CDROM_CONFIG_FLAGS(drive)->mo_drive = 1;
2936 CDROM_CONFIG_FLAGS(drive)->ram = 1;
2937 printk(KERN_ERR "%s: ATAPI magneto-optical drive\n", drive->name);
2938 return nslots;
2939 }
2940
2941 if (CDROM_CONFIG_FLAGS(drive)->nec260 ||
2942 !strcmp(drive->id->model,"STINGRAY 8422 IDE 8X CD-ROM 7-27-95")) {
2943 CDROM_CONFIG_FLAGS(drive)->no_eject = 0;
2944 CDROM_CONFIG_FLAGS(drive)->audio_play = 1;
2945 return nslots;
2946 }
2947
2948 /*
2949 * we have to cheat a little here. the packet will eventually
2950 * be queued with ide_cdrom_packet(), which extracts the
2951 * drive from cdi->handle. Since this device hasn't been
2952 * registered with the Uniform layer yet, it can't do this.
2953 * Same goes for cdi->ops.
2954 */
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08002955 cdi->handle = drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 cdi->ops = &ide_cdrom_dops;
2957
2958 if (ide_cdrom_get_capabilities(drive, &cap))
2959 return 0;
2960
2961 if (cap.lock == 0)
2962 CDROM_CONFIG_FLAGS(drive)->no_doorlock = 1;
2963 if (cap.eject)
2964 CDROM_CONFIG_FLAGS(drive)->no_eject = 0;
2965 if (cap.cd_r_write)
2966 CDROM_CONFIG_FLAGS(drive)->cd_r = 1;
2967 if (cap.cd_rw_write) {
2968 CDROM_CONFIG_FLAGS(drive)->cd_rw = 1;
2969 CDROM_CONFIG_FLAGS(drive)->ram = 1;
2970 }
2971 if (cap.test_write)
2972 CDROM_CONFIG_FLAGS(drive)->test_write = 1;
2973 if (cap.dvd_ram_read || cap.dvd_r_read || cap.dvd_rom)
2974 CDROM_CONFIG_FLAGS(drive)->dvd = 1;
2975 if (cap.dvd_ram_write) {
2976 CDROM_CONFIG_FLAGS(drive)->dvd_ram = 1;
2977 CDROM_CONFIG_FLAGS(drive)->ram = 1;
2978 }
2979 if (cap.dvd_r_write)
2980 CDROM_CONFIG_FLAGS(drive)->dvd_r = 1;
2981 if (cap.audio_play)
2982 CDROM_CONFIG_FLAGS(drive)->audio_play = 1;
2983 if (cap.mechtype == mechtype_caddy || cap.mechtype == mechtype_popup)
2984 CDROM_CONFIG_FLAGS(drive)->close_tray = 0;
2985
2986 /* Some drives used by Apple don't advertise audio play
2987 * but they do support reading TOC & audio datas
2988 */
2989 if (strcmp(drive->id->model, "MATSHITADVD-ROM SR-8187") == 0 ||
2990 strcmp(drive->id->model, "MATSHITADVD-ROM SR-8186") == 0 ||
2991 strcmp(drive->id->model, "MATSHITADVD-ROM SR-8176") == 0 ||
2992 strcmp(drive->id->model, "MATSHITADVD-ROM SR-8174") == 0)
2993 CDROM_CONFIG_FLAGS(drive)->audio_play = 1;
2994
2995#if ! STANDARD_ATAPI
2996 if (cdi->sanyo_slot > 0) {
2997 CDROM_CONFIG_FLAGS(drive)->is_changer = 1;
2998 nslots = 3;
2999 }
3000
3001 else
3002#endif /* not STANDARD_ATAPI */
3003 if (cap.mechtype == mechtype_individual_changer ||
3004 cap.mechtype == mechtype_cartridge_changer) {
3005 if ((nslots = cdrom_number_of_slots(cdi)) > 1) {
3006 CDROM_CONFIG_FLAGS(drive)->is_changer = 1;
3007 CDROM_CONFIG_FLAGS(drive)->supp_disc_present = 1;
3008 }
3009 }
3010
Eric Piel9235e682005-06-23 00:10:29 -07003011 ide_cdrom_update_speed(drive, &cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 /* don't print speed if the drive reported 0.
3013 */
3014 printk(KERN_INFO "%s: ATAPI", drive->name);
3015 if (CDROM_CONFIG_FLAGS(drive)->max_speed)
3016 printk(" %dX", CDROM_CONFIG_FLAGS(drive)->max_speed);
3017 printk(" %s", CDROM_CONFIG_FLAGS(drive)->dvd ? "DVD-ROM" : "CD-ROM");
3018
3019 if (CDROM_CONFIG_FLAGS(drive)->dvd_r|CDROM_CONFIG_FLAGS(drive)->dvd_ram)
3020 printk(" DVD%s%s",
3021 (CDROM_CONFIG_FLAGS(drive)->dvd_r)? "-R" : "",
3022 (CDROM_CONFIG_FLAGS(drive)->dvd_ram)? "-RAM" : "");
3023
3024 if (CDROM_CONFIG_FLAGS(drive)->cd_r|CDROM_CONFIG_FLAGS(drive)->cd_rw)
3025 printk(" CD%s%s",
3026 (CDROM_CONFIG_FLAGS(drive)->cd_r)? "-R" : "",
3027 (CDROM_CONFIG_FLAGS(drive)->cd_rw)? "/RW" : "");
3028
3029 if (CDROM_CONFIG_FLAGS(drive)->is_changer)
3030 printk(" changer w/%d slots", nslots);
3031 else
3032 printk(" drive");
3033
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +01003034 printk(KERN_CONT ", %dkB Cache\n", be16_to_cpu(cap.buffer_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036 return nslots;
3037}
3038
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02003039#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040static void ide_cdrom_add_settings(ide_drive_t *drive)
3041{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02003042 ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->dsc_overlap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02003044#else
3045static inline void ide_cdrom_add_settings(ide_drive_t *drive) { ; }
3046#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
3048/*
3049 * standard prep_rq_fn that builds 10 byte cmds
3050 */
Jens Axboe165125e2007-07-24 09:28:11 +02003051static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052{
3053 int hard_sect = queue_hardsect_size(q);
3054 long block = (long)rq->hard_sector / (hard_sect >> 9);
3055 unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
3056
3057 memset(rq->cmd, 0, sizeof(rq->cmd));
3058
3059 if (rq_data_dir(rq) == READ)
3060 rq->cmd[0] = GPCMD_READ_10;
3061 else
3062 rq->cmd[0] = GPCMD_WRITE_10;
3063
3064 /*
3065 * fill in lba
3066 */
3067 rq->cmd[2] = (block >> 24) & 0xff;
3068 rq->cmd[3] = (block >> 16) & 0xff;
3069 rq->cmd[4] = (block >> 8) & 0xff;
3070 rq->cmd[5] = block & 0xff;
3071
3072 /*
3073 * and transfer length
3074 */
3075 rq->cmd[7] = (blocks >> 8) & 0xff;
3076 rq->cmd[8] = blocks & 0xff;
3077 rq->cmd_len = 10;
3078 return BLKPREP_OK;
3079}
3080
3081/*
3082 * Most of the SCSI commands are supported directly by ATAPI devices.
3083 * This transform handles the few exceptions.
3084 */
3085static int ide_cdrom_prep_pc(struct request *rq)
3086{
3087 u8 *c = rq->cmd;
3088
3089 /*
3090 * Transform 6-byte read/write commands to the 10-byte version
3091 */
3092 if (c[0] == READ_6 || c[0] == WRITE_6) {
3093 c[8] = c[4];
3094 c[5] = c[3];
3095 c[4] = c[2];
3096 c[3] = c[1] & 0x1f;
3097 c[2] = 0;
3098 c[1] &= 0xe0;
3099 c[0] += (READ_10 - READ_6);
3100 rq->cmd_len = 10;
3101 return BLKPREP_OK;
3102 }
3103
3104 /*
3105 * it's silly to pretend we understand 6-byte sense commands, just
3106 * reject with ILLEGAL_REQUEST and the caller should take the
3107 * appropriate action
3108 */
3109 if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
3110 rq->errors = ILLEGAL_REQUEST;
3111 return BLKPREP_KILL;
3112 }
3113
3114 return BLKPREP_OK;
3115}
3116
Jens Axboe165125e2007-07-24 09:28:11 +02003117static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118{
Jens Axboe4aff5e22006-08-10 08:44:47 +02003119 if (blk_fs_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 return ide_cdrom_prep_fs(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +02003121 else if (blk_pc_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 return ide_cdrom_prep_pc(rq);
3123
3124 return 0;
3125}
3126
3127static
3128int ide_cdrom_setup (ide_drive_t *drive)
3129{
3130 struct cdrom_info *info = drive->driver_data;
3131 struct cdrom_device_info *cdi = &info->devinfo;
3132 int nslots;
3133
3134 blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn);
3135 blk_queue_dma_alignment(drive->queue, 31);
3136 drive->queue->unplug_delay = (1 * HZ) / 1000;
3137 if (!drive->queue->unplug_delay)
3138 drive->queue->unplug_delay = 1;
3139
3140 drive->special.all = 0;
3141
3142 CDROM_STATE_FLAGS(drive)->media_changed = 1;
3143 CDROM_STATE_FLAGS(drive)->toc_valid = 0;
3144 CDROM_STATE_FLAGS(drive)->door_locked = 0;
3145
3146#if NO_DOOR_LOCKING
3147 CDROM_CONFIG_FLAGS(drive)->no_doorlock = 1;
3148#else
3149 CDROM_CONFIG_FLAGS(drive)->no_doorlock = 0;
3150#endif
3151
3152 CDROM_CONFIG_FLAGS(drive)->drq_interrupt = ((drive->id->config & 0x0060) == 0x20);
3153 CDROM_CONFIG_FLAGS(drive)->is_changer = 0;
3154 CDROM_CONFIG_FLAGS(drive)->cd_r = 0;
3155 CDROM_CONFIG_FLAGS(drive)->cd_rw = 0;
3156 CDROM_CONFIG_FLAGS(drive)->test_write = 0;
3157 CDROM_CONFIG_FLAGS(drive)->dvd = 0;
3158 CDROM_CONFIG_FLAGS(drive)->dvd_r = 0;
3159 CDROM_CONFIG_FLAGS(drive)->dvd_ram = 0;
3160 CDROM_CONFIG_FLAGS(drive)->no_eject = 1;
3161 CDROM_CONFIG_FLAGS(drive)->supp_disc_present = 0;
3162 CDROM_CONFIG_FLAGS(drive)->audio_play = 0;
3163 CDROM_CONFIG_FLAGS(drive)->close_tray = 1;
3164
3165 /* limit transfer size per interrupt. */
3166 CDROM_CONFIG_FLAGS(drive)->limit_nframes = 0;
3167 /* a testament to the nice quality of Samsung drives... */
3168 if (!strcmp(drive->id->model, "SAMSUNG CD-ROM SCR-2430"))
3169 CDROM_CONFIG_FLAGS(drive)->limit_nframes = 1;
3170 else if (!strcmp(drive->id->model, "SAMSUNG CD-ROM SCR-2432"))
3171 CDROM_CONFIG_FLAGS(drive)->limit_nframes = 1;
3172 /* the 3231 model does not support the SET_CD_SPEED command */
3173 else if (!strcmp(drive->id->model, "SAMSUNG CD-ROM SCR-3231"))
Bartlomiej Zolnierkiewicz3cbd8142007-12-24 15:23:43 +01003174 CDROM_CONFIG_FLAGS(drive)->no_speed_select = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
3176#if ! STANDARD_ATAPI
3177 /* by default Sanyo 3 CD changer support is turned off and
3178 ATAPI Rev 2.2+ standard support for CD changers is used */
3179 cdi->sanyo_slot = 0;
3180
3181 CDROM_CONFIG_FLAGS(drive)->nec260 = 0;
3182 CDROM_CONFIG_FLAGS(drive)->toctracks_as_bcd = 0;
3183 CDROM_CONFIG_FLAGS(drive)->tocaddr_as_bcd = 0;
3184 CDROM_CONFIG_FLAGS(drive)->playmsf_as_bcd = 0;
3185 CDROM_CONFIG_FLAGS(drive)->subchan_as_bcd = 0;
3186
3187 if (strcmp (drive->id->model, "V003S0DS") == 0 &&
3188 drive->id->fw_rev[4] == '1' &&
3189 drive->id->fw_rev[6] <= '2') {
3190 /* Vertos 300.
3191 Some versions of this drive like to talk BCD. */
3192 CDROM_CONFIG_FLAGS(drive)->toctracks_as_bcd = 1;
3193 CDROM_CONFIG_FLAGS(drive)->tocaddr_as_bcd = 1;
3194 CDROM_CONFIG_FLAGS(drive)->playmsf_as_bcd = 1;
3195 CDROM_CONFIG_FLAGS(drive)->subchan_as_bcd = 1;
3196 }
3197
3198 else if (strcmp (drive->id->model, "V006E0DS") == 0 &&
3199 drive->id->fw_rev[4] == '1' &&
3200 drive->id->fw_rev[6] <= '2') {
3201 /* Vertos 600 ESD. */
3202 CDROM_CONFIG_FLAGS(drive)->toctracks_as_bcd = 1;
3203 }
3204 else if (strcmp(drive->id->model, "NEC CD-ROM DRIVE:260") == 0 &&
3205 strncmp(drive->id->fw_rev, "1.01", 4) == 0) { /* FIXME */
3206 /* Old NEC260 (not R).
3207 This drive was released before the 1.2 version
3208 of the spec. */
3209 CDROM_CONFIG_FLAGS(drive)->tocaddr_as_bcd = 1;
3210 CDROM_CONFIG_FLAGS(drive)->playmsf_as_bcd = 1;
3211 CDROM_CONFIG_FLAGS(drive)->subchan_as_bcd = 1;
3212 CDROM_CONFIG_FLAGS(drive)->nec260 = 1;
3213 }
3214 else if (strcmp(drive->id->model, "WEARNES CDD-120") == 0 &&
3215 strncmp(drive->id->fw_rev, "A1.1", 4) == 0) { /* FIXME */
3216 /* Wearnes */
3217 CDROM_CONFIG_FLAGS(drive)->playmsf_as_bcd = 1;
3218 CDROM_CONFIG_FLAGS(drive)->subchan_as_bcd = 1;
3219 }
3220 /* Sanyo 3 CD changer uses a non-standard command
3221 for CD changing */
3222 else if ((strcmp(drive->id->model, "CD-ROM CDR-C3 G") == 0) ||
3223 (strcmp(drive->id->model, "CD-ROM CDR-C3G") == 0) ||
3224 (strcmp(drive->id->model, "CD-ROM CDR_C36") == 0)) {
3225 /* uses CD in slot 0 when value is set to 3 */
3226 cdi->sanyo_slot = 3;
3227 }
3228#endif /* not STANDARD_ATAPI */
3229
3230 info->toc = NULL;
3231 info->buffer = NULL;
3232 info->sector_buffered = 0;
3233 info->nsectors_buffered = 0;
3234 info->changer_info = NULL;
3235 info->last_block = 0;
3236 info->start_seek = 0;
3237
3238 nslots = ide_cdrom_probe_capabilities (drive);
3239
3240 /*
3241 * set correct block size
3242 */
3243 blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE);
3244
3245 if (drive->autotune == IDE_TUNE_DEFAULT ||
3246 drive->autotune == IDE_TUNE_AUTO)
3247 drive->dsc_overlap = (drive->next != drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
3249 if (ide_cdrom_register(drive, nslots)) {
3250 printk (KERN_ERR "%s: ide_cdrom_setup failed to register device with the cdrom driver.\n", drive->name);
3251 info->devinfo.handle = NULL;
3252 return 1;
3253 }
3254 ide_cdrom_add_settings(drive);
3255 return 0;
3256}
3257
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02003258#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259static
3260sector_t ide_cdrom_capacity (ide_drive_t *drive)
3261{
3262 unsigned long capacity, sectors_per_frame;
3263
3264 if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
3265 return 0;
3266
3267 return capacity * sectors_per_frame;
3268}
Amos Waterlandd97b32142005-10-30 15:02:10 -08003269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Russell King4031bbe2006-01-06 11:41:00 +00003271static void ide_cd_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
3273 struct cdrom_info *info = drive->driver_data;
3274
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02003275 ide_proc_unregister_driver(drive, info->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
3277 del_gendisk(info->disk);
3278
3279 ide_cd_put(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280}
3281
3282static void ide_cd_release(struct kref *kref)
3283{
3284 struct cdrom_info *info = to_ide_cd(kref);
3285 struct cdrom_device_info *devinfo = &info->devinfo;
3286 ide_drive_t *drive = info->drive;
3287 struct gendisk *g = info->disk;
3288
Jesper Juhl6044ec82005-11-07 01:01:32 -08003289 kfree(info->buffer);
3290 kfree(info->toc);
3291 kfree(info->changer_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 if (devinfo->handle == drive && unregister_cdrom(devinfo))
3293 printk(KERN_ERR "%s: %s failed to unregister device from the cdrom "
3294 "driver.\n", __FUNCTION__, drive->name);
3295 drive->dsc_overlap = 0;
3296 drive->driver_data = NULL;
3297 blk_queue_prep_rq(drive->queue, NULL);
3298 g->private_data = NULL;
3299 put_disk(g);
3300 kfree(info);
3301}
3302
Russell King4031bbe2006-01-06 11:41:00 +00003303static int ide_cd_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +02003305#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306static int proc_idecd_read_capacity
3307 (char *page, char **start, off_t off, int count, int *eof, void *data)
3308{
Jesper Juhl2a91f3e2005-10-30 15:02:45 -08003309 ide_drive_t *drive = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 int len;
3311
3312 len = sprintf(page,"%llu\n", (long long)ide_cdrom_capacity(drive));
3313 PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
3314}
3315
3316static ide_proc_entry_t idecd_proc[] = {
3317 { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
3318 { NULL, 0, NULL, NULL }
3319};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320#endif
3321
3322static ide_driver_t ide_cdrom_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02003323 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +01003324 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02003325 .name = "ide-cdrom",
3326 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02003327 },
Russell King4031bbe2006-01-06 11:41:00 +00003328 .probe = ide_cd_probe,
3329 .remove = ide_cd_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 .version = IDECD_VERSION,
3331 .media = ide_cdrom,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 .supports_dsc_overlap = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 .do_request = ide_do_rw_cdrom,
3334 .end_request = ide_end_request,
3335 .error = __ide_error,
3336 .abort = __ide_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02003337#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 .proc = idecd_proc,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02003339#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340};
3341
3342static int idecd_open(struct inode * inode, struct file * file)
3343{
3344 struct gendisk *disk = inode->i_bdev->bd_disk;
3345 struct cdrom_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 int rc = -ENOMEM;
3347
3348 if (!(info = ide_cd_get(disk)))
3349 return -ENXIO;
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 if (!info->buffer)
Bartlomiej Zolnierkiewiczc94964a2007-02-17 02:40:24 +01003352 info->buffer = kmalloc(SECTOR_BUFFER_SIZE, GFP_KERNEL|__GFP_REPEAT);
3353
3354 if (info->buffer)
3355 rc = cdrom_open(&info->devinfo, inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
3357 if (rc < 0)
3358 ide_cd_put(info);
3359
3360 return rc;
3361}
3362
3363static int idecd_release(struct inode * inode, struct file * file)
3364{
3365 struct gendisk *disk = inode->i_bdev->bd_disk;
3366 struct cdrom_info *info = ide_cd_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
3368 cdrom_release (&info->devinfo, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
3370 ide_cd_put(info);
3371
3372 return 0;
3373}
3374
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08003375static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
3376{
3377 struct packet_command cgc;
3378 char buffer[16];
3379 int stat;
3380 char spindown;
3381
3382 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
3383 return -EFAULT;
3384
3385 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
3386
3387 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
3388 if (stat)
3389 return stat;
3390
3391 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
3392 return cdrom_mode_select(cdi, &cgc);
3393}
3394
3395static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
3396{
3397 struct packet_command cgc;
3398 char buffer[16];
3399 int stat;
3400 char spindown;
3401
3402 init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
3403
3404 stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
3405 if (stat)
3406 return stat;
3407
3408 spindown = buffer[11] & 0x0f;
3409 if (copy_to_user((void __user *)arg, &spindown, sizeof (char)))
3410 return -EFAULT;
3411 return 0;
3412}
3413
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414static int idecd_ioctl (struct inode *inode, struct file *file,
3415 unsigned int cmd, unsigned long arg)
3416{
3417 struct block_device *bdev = inode->i_bdev;
3418 struct cdrom_info *info = ide_cd_g(bdev->bd_disk);
3419 int err;
3420
Christoph Hellwig6a2900b2006-03-23 03:00:15 -08003421 switch (cmd) {
3422 case CDROMSETSPINDOWN:
3423 return idecd_set_spindown(&info->devinfo, arg);
3424 case CDROMGETSPINDOWN:
3425 return idecd_get_spindown(&info->devinfo, arg);
3426 default:
3427 break;
3428 }
3429
3430 err = generic_ide_ioctl(info->drive, file, bdev, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 if (err == -EINVAL)
3432 err = cdrom_ioctl(file, &info->devinfo, inode, cmd, arg);
3433
3434 return err;
3435}
3436
3437static int idecd_media_changed(struct gendisk *disk)
3438{
3439 struct cdrom_info *info = ide_cd_g(disk);
3440 return cdrom_media_changed(&info->devinfo);
3441}
3442
3443static int idecd_revalidate_disk(struct gendisk *disk)
3444{
3445 struct cdrom_info *info = ide_cd_g(disk);
3446 struct request_sense sense;
3447 cdrom_read_toc(info->drive, &sense);
3448 return 0;
3449}
3450
3451static struct block_device_operations idecd_ops = {
3452 .owner = THIS_MODULE,
3453 .open = idecd_open,
3454 .release = idecd_release,
3455 .ioctl = idecd_ioctl,
3456 .media_changed = idecd_media_changed,
3457 .revalidate_disk= idecd_revalidate_disk
3458};
3459
3460/* options */
3461static char *ignore = NULL;
3462
3463module_param(ignore, charp, 0400);
3464MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
3465
Russell King4031bbe2006-01-06 11:41:00 +00003466static int ide_cd_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467{
3468 struct cdrom_info *info;
3469 struct gendisk *g;
3470 struct request_sense sense;
3471
3472 if (!strstr("ide-cdrom", drive->driver_req))
3473 goto failed;
3474 if (!drive->present)
3475 goto failed;
3476 if (drive->media != ide_cdrom && drive->media != ide_optical)
3477 goto failed;
3478 /* skip drives that we were told to ignore */
3479 if (ignore != NULL) {
3480 if (strstr(ignore, drive->name)) {
3481 printk(KERN_INFO "ide-cd: ignoring drive %s\n", drive->name);
3482 goto failed;
3483 }
3484 }
3485 if (drive->scsi) {
3486 printk(KERN_INFO "ide-cd: passing drive %s to ide-scsi emulation.\n", drive->name);
3487 goto failed;
3488 }
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08003489 info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 if (info == NULL) {
3491 printk(KERN_ERR "%s: Can't allocate a cdrom structure\n", drive->name);
3492 goto failed;
3493 }
3494
3495 g = alloc_disk(1 << PARTN_BITS);
3496 if (!g)
3497 goto out_free_cd;
3498
3499 ide_init_disk(g, drive);
3500
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02003501 ide_proc_register_driver(drive, &ide_cdrom_driver);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02003502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 kref_init(&info->kref);
3504
3505 info->drive = drive;
3506 info->driver = &ide_cdrom_driver;
3507 info->disk = g;
3508
3509 g->private_data = &info->driver;
3510
3511 drive->driver_data = info;
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 g->minors = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 g->driverfs_dev = &drive->gendev;
3515 g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
3516 if (ide_cdrom_setup(drive)) {
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02003517 ide_proc_unregister_driver(drive, &ide_cdrom_driver);
Bartlomiej Zolnierkiewicz05017db2007-12-24 15:23:43 +01003518 ide_cd_release(&info->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 goto failed;
3520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
3522 cdrom_read_toc(drive, &sense);
3523 g->fops = &idecd_ops;
3524 g->flags |= GENHD_FL_REMOVABLE;
3525 add_disk(g);
3526 return 0;
3527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528out_free_cd:
3529 kfree(info);
3530failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02003531 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532}
3533
3534static void __exit ide_cdrom_exit(void)
3535{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02003536 driver_unregister(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537}
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01003538
3539static int __init ide_cdrom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02003541 return driver_register(&ide_cdrom_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542}
3543
Kay Sievers263756e2005-12-12 18:03:44 +01003544MODULE_ALIAS("ide:*m-cdrom*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545module_init(ide_cdrom_init);
3546module_exit(ide_cdrom_exit);
3547MODULE_LICENSE("GPL");